* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    /*height: 100%;*/
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: var(--main);
}

a {
    text-decoration: none;
    color: initial;
}


.img-mobile{
    display: none;
}
        .img-desk {
            display: flex; max-height:120px;
        }

.ahover:hover {
    color: var(--gold);
}

.text-center{
    text-align: center;
}


.roboto-slab{
    font-family: "Roboto Slab", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}


.letter-space-1{
    letter-spacing: 0.5px;
    line-height: 1;
}

.fw-bold{
    font-weight: bold;
}

.fz-65{
    font-size: 65px;
}

.fz-50{
    font-size: 50px;
}

.fz-18{
    font-size: 18px;
}

.fz-16{
    font-size: 16px;
}

.fz-14{
    font-size: 14px;
}

.fz-12{
    font-size: 12px;
}


p,
h2,
h3,
h4,
h5,
h1,
h6 {
    margin: 0px !important;
}

:root {
    --white: #FFFFFF;
    --main: #dcd9ca;
    --title: #092531;
    --gold: #9d6c04;
    --grey: #bfbeb2;
}

.color-title{
    color: var(--title);
}

.color-gold{
    color: var(--gold);
}

.bg-grey{
    background-color: var(--grey);
}

header{
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 20px;
    width: 100%;
    margin: auto;
    position: fixed;
    background-color: var(--main);
    top: 0px;
    z-index: 10;
    box-shadow: 0px 0px 11px 0px #0000003b;

   

    ul {
        display: flex;
        justify-content: space-evenly;
        list-style-type: none;
        margin: 40px 0px 0px;
        padding: 0;
        width: calc((100% - 120px)/2);
    }

    li{
        cursor: pointer;
        font-family: "Roboto Slab", serif;
        font-optical-sizing: auto;
        font-style: normal;
        font-size: 20px;
    }

    img{
        width: 55px;
        margin-bottom: 10px;
    }
}

 .container-mob{
        display: flex;
        justify-content: center;
        align-content: center;
        gap: 20px;
        width: 100%;
    }

.main-section{
    width: 100%;
    max-width: 1300px;
    display: flex;
    margin: auto;
}

.flex{
    display: flex;
}

.items-center{
    align-items: center;
}

.items-start{
    align-items: flex-start;
}

.justify-center{
    justify-content: center;
}

.justify-evenly{
    justify-content: space-evenly;
}

.justify-between{
    justify-content: space-between;
}

.flex-column{
    flex-direction: column;
}

.flex-wrap{
    flex-wrap: wrap;
}

.img-main{
    width: 350px;
}

.img-about{
    width: 400px;
    height: auto;
}

.gap-60{
    gap: 60px;
}

.gap-40{
    gap: 40px;
}

.gap-20{
    gap: 20px;
}

.mb-10{
    margin-bottom: 10px !important;
}

.mt-90{
    margin-top: 180px;
}

.mt-70{
    margin-top: 70px;
}

.mt-40{
    margin-top: 40px;
}

.mt-20{
    margin-top: 20px;
}

.pv-10{
    padding: 0px 10px;
}

.pv-10-g{
    padding: 0px 10px;
}

.pd-20{
    padding: 20px;
}

.w-100{
    width: 100%;
}

.w-40{
    width: 40%;
}

.w-32{
    width: 32.5%;
}

.titulo-bh{
    position: relative;
    width: 100%;
    text-align: center;
    font-family: "Roboto Slab", serif;
    font-optical-sizing: auto;
    font-style: normal;
    z-index: 1;
}

.titulo-bh::before, .titulo-bh-t::before, titulo-bh-v::before, titulo-bh-g::before, titulo-bh-c::before {
    content: " ";
    position: absolute;
    top: -20px;
    left: calc(50% - 514px) ;
    color: rgba(0, 0, 0, 0.1);
    z-index: 0;
    font-size: 5.6rem;
}

.titulo-bh-t::before{
    content: " ";
    left: calc(50% - 320px) ;
}

.titulo-bh-v::before{
    content: " ";
    left: calc(50% - 169px) ;
}

.titulo-bh-g::before{
    content: " ";
    left: calc(50% - 197px) ;
}

.titulo-bh-c::before{
    content: " ";
    left: calc(50% - 245px) ;
}

.owl-dot span{
    background-color: var(--title) !important;
}

.owl-dot.active span {
    background-color: var(--gold) !important;
}

.owl-carousel .owl-item img{
    height: 500px;
    object-fit: cover;
}

input[type="submit"]{
    border: 0px;
    background-color: var(--title);
    color: var(--white);
    width: 150px;
    height: 30px;
}



@media screen and (max-width: 1050px){
    .titulo-bh-ac::before{
        font-size: 5rem;
        left: calc(50% - 459px) ;
        top: -10px;
    }
}

@media screen and (max-width: 940px) {
    .main-section{
        flex-wrap: wrap;
        justify-content: center;
    }

    .pv-10{
        padding: 0px 5%;
    }

    .titulo-bh-ac::before {
        left: calc(50% - 350px) ;
        top: -20px;
    }

    .flex{
        flex-wrap: wrap;
    }

    .img-about{
        width: 100%;
        height: auto;
    }

    .bg-grey{
        width: 100%;
        margin: 15px 5%;
    }

    .w-32{
        width: 100%;
    }

    iframe{
        width: 49% !important;
    }

    .mainframe{
        width: 100% !important;
    }

    header{

        ul{
            justify-content: space-between;
        }
        li {
            font-size: 16px !important;
        }

        img {
            width: 40px;
        }
    }


}

@media screen and (max-width: 700px) {

    header{
        ul{
            justify-content: space-between;
        }
        li {
            font-size: 14px !important;
        }

        img {
            width: 40px;
        }
    }

    .titulo-bh{
        font-size: 2.4rem !important;
    }

    .titulo-bh::before{
        left: calc(50% - 172px) !important;
        font-size: 3rem !important;
        top: -12px !important;
    }

    .titulo-bh-v{
        font-size: 2.4rem !important;
    }

    .titulo-bh-v::before{
        left: calc(50% - 91px) !important;
        font-size: 3rem !important;
        top: -5px !important;
    }

    .titulo-bh-t{
        font-size: 2.4rem !important;
    }

    .titulo-bh-t::before{
        content: " ";
        left: calc(50% - 172px) ;
        font-size: 3rem !important;
        top: -5px;
    }

    .titulo-bh-g{
        font-size: 2.4rem !important;
    }

    .titulo-bh-g::before{
        content: " ";
        left: calc(50% - 106px) !important;
        font-size: 3rem !important;
        top: -5px !important;
    }

    .titulo-bh-c{
        font-size: 2.4rem !important;
    }

    .titulo-bh-c::before{
        content: " ";
        left: calc(50% - 132px) !important;
        font-size: 3rem !important;
        top: -5px !important;
    }
}

@media screen and (max-width: 600px) {

    header{
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
        padding: 15px 10px;

       

        ul{
            width: auto;
            margin: 0px 0px 0px;
        }
        li {
            font-size: 12px !important;
            margin: 0px 10px;
        }

        .img-desk {
            display: none;
        }

        .img-mobile{
            display: flex;
        }
    }
     .container-mob{
            display: flex;
            flex-wrap: wrap;
            width: calc(100% - 60px);
        }


}

@media screen and (max-width: 500px) {
    .titulo-bh-ac::before {
        left: calc(50% - 240px) ;
        top: -20px;
    }

    iframe{
        width: 100% !important;
    }

}