/*
Theme Name: Papazao
Author: Papazao
Version: 1.0
*/

/* Base styles and responsive typography */
html {
    font-size: calc(7.35px + .45vw);
    box-sizing: border-box;
    height: 100%;
}
a {
    cursor: pointer;
}
*, *:before, *:after {
    box-sizing: inherit;
}
button {
    cursor: pointer;
}
img {
    max-width: 100%;
}
body {
    font-family: "Lalezar", system-ui;
    font-weight: 400;
    font-style: normal;
    color:#000;
    margin:0;
    font-size: 1rem;
    height: 100%;
    line-height: 1.7em;
}
/* Responsive typography */
h1 {
    font-size:5rem;
}
h2 {
    font-size:3.125rem;
}
h3 {
    font-size:2.5rem;
}
h4 {
    font-size:1.875rem;
}
h5 {
    font-size:1.25rem;
}


/* Container */
.container {
    width: 90%;
    max-width: 1920px;
    margin: 0 auto;
}
.p-b-20 {
    padding-bottom: 1.25rem;
}
.p-b-30 {
    padding-bottom: 1.875rem;
}
.p-b-40 {
    padding-bottom: 2.5rem;
}
.p-b-50 {
    padding-bottom: 3.125rem;
}
.p-b-60 {
    padding-bottom: 3.75rem;
}
.p-b-80 {
    padding-bottom:5rem;
}
.m-b-20 {
    margin-bottom: 1.25rem;
}
.m-b-30 {
    margin-bottom: 1.875rem;
}
.m-b-40 {
    margin-bottom: 2.5rem;
}
.m-b-50 {
    margin-bottom: 3.125rem;
}
.m-b-60 {
    margin-bottom: 3.75rem;
}
.m-b-80 {
    margin-bottom:5rem;
}
.main-body-wrapper {
    height: 100%;
}
/* Header */
.main-header > .container{
    display: flex;
    align-items: center;
    justify-content: center;
}
header {
    background: #fff;
    padding: .5rem 0;
    width: 60%;
    max-width: 1200px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: fixed;    
    top: 6%;
    z-index: 99;
    border-radius: 3rem ;
}
.main-menu-wrap ul {
    display: flex;
    align-items: center;
    justify-content:center;
    padding:0;
    list-style: none;
}
.main-menu-wrap ul > li  {
    /* flex:0 0 15%; */
    padding-right: 1rem;
}
.main-menu-wrap ul > li  a {
    text-decoration: none;
}
.main-menu-wrap ul > li > a {
    color:#000;
    padding:0;
    display: block;
    width: 100%;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight:600;
    white-space: nowrap; /* Prevent text wrapping */
}

.contact-col {
    flex: 0 0 15%;
    width: 15%;
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

.navbar-toggle {
    display: none;
    position:relative;background-color:transparent; padding:9px 10px;margin-top:8px;margin-bottom:8px;border:1px solid transparent;border-radius:4px
}
 .navbar-toggle:focus{outline:0}
 .navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px;background-color:#fff}
 .navbar-toggle .icon-bar+.icon-bar{margin-top:4px}
.logo-wrapper {
    flex:0 0 15%;
    width:15%;
    margin-top: -5%;
    margin-bottom: -5%;
}
.logo-wrapper img {
    display: block;
width: 100%;
}
.section {
    padding:6rem 0
}
/* footer */
@media screen and (max-width: 991px){
    h1 {
        font-size:2.5rem;
    }
    h2 {
        font-size:2.1rem;
    }
    h3 {
        font-size:1.7rem;
    }
    h4 {
        font-size:1.3rem;
    }
    h5 {
        font-size:1em;
    }
    html {
        font-size: calc(9px + .55vw);
    } 
    .main-menu-wrap {
        display:none;
    }
    header {
        backdrop-filter: none;
    }

    .logo-wrapper {
        width: 30%;
        flex:0 0 30%;
    }
    .main-menu-wrap {
        /*position: fixed;*/
        /*height: 100vh;*/
        /*width: 100%;*/
        /*left: 0;*/
        /*z-index: 999;*/
        /*bottom: 0;*/
        /*backdrop-filter: blur(10px);*/
        /*transform: translateX(-100rem);*/
        /*transition: all ease .5s;*/
    }
    .menu-open.main-menu-wrap {
        visibility: visible;
        transform: translateX(0);
        opacity: 1;
        }
    .main-menu-wrap ul {
        flex-direction: column;
        height: 100%;
        align-items: center;
        justify-content: center;
    }
    .main-menu-wrap ul > li  {
        padding-bottom: 5%;
    }
    .main-menu-wrap ul > li > a {
        font-size: 1.5rem;
        line-height: 1.5em;
        color:#000;
    }
   
}
@media screen and (max-width: 767px){
 

}
@media screen and (max-width: 530px){
    html {
        font-size: calc(10px + .85vw);
    }
}
