@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,   ;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}
body{
    background-color: #fafafa;
    overflow-x: hidden;
}
p{
    line-height: 1.5;
}
header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}
header .left{
    width: 17%;
    /*background-color: #edcd1f;*/
    background-color: #fff;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
header .left img{
    width: 70px;
    height: 70px;
    object-fit: cover;
    object-position: center center;
    margin-right: 15px;
}
header .left h3{
    display: flex;
    flex-direction: column;
    height: 49px;
    align-items: flex-start;
    justify-content: center;
    font-size: 27px;
    line-height: 25px;
    text-transform: uppercase;
}
header .left h3 strong{
    font-weight: 600;
    color: #edcd1f;
}
header .left h3 span{
    font-weight: 200;
    padding-top: 5px;
    color: #edcd1f;
    font-size: 22px;
    letter-spacing: 4px;
    
}
header .right{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: #1e2d3b;
    height: 100%;
}
header .right ul{
    display: block;

}
header .right ul li{
    display: inline-block;
    list-style: none;
    margin-right: 25px;
}
header .right ul li a{
    padding: 10px;
    color: #FFFFFF;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .2s ease-in;
    font-weight: lighter;
}
header .right ul li a:hover, header .right ul li .active{
    color: #edcd1f;
}

/* #END HEADER ##########################################################################################*/
/* #START MAIN ##########################################################################################*/
main{
    min-height: 100vh;
}
.main-header{
    position: relative;
    height: 138vh;
    width: 100%;
    margin-bottom: 20px;
}
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: -1;
    opacity: 1;
    overflow: hidden;
}
.bg-video__content {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

main .header{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    height: 60vh;
    width: 82%;
    margin: 0 9%;
    margin-top: 60px;
}
main .header h5{    
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    letter-spacing: 1px;
}
main .header h1{
    font-size: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-bottom: 19px;
    line-height: 1.273;
    color: #fff;
}
main .header p{
    color: #fff;
    line-height: 1.8;
}
main .header a{
    color: #fff;
    display: flex;
    align-items: center;
}
.banner_btn{
    display: flex;
    align-items: center;
    text-decoration: none;
}
.banner_btn .learn-more{
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    height: 50px;
    display: flex;
    align-items: center;
}
main .header .btn_1{
    text-decoration: none;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: linear-gradient(45deg, #9e802e 0%, #fdb72c 100%); 
    display: inline-block;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;  
}
main .header .btn_1 span{
    text-align: center;
}
.services{
    position: absolute;
    display: flex;
    margin: 0 9%;
    top: 52.5%;
    left: 0;
    width: 82%;
    justify-content: space-between;
}
.service{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 31.6%;
    max-width: 31.6%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 40px 20px;
    -webkit-box-shadow: 0px 42px 29px -31px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 42px 29px -31px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 42px 29px -31px rgba(0, 0, 0, 0.05);
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    text-align: center;
}
.service i{
    font-size: 60px;
    color: #fff;
    line-height: 1.3;
    position: relative;
    margin-bottom: 20px;
}
.service h3{
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.9);
}
.service p{
    font-size: 16px;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #999999;
}
.service a{
    background: linear-gradient(45deg, #9e802e 0%, #fdb72c 100%);
    border: 1px solid #fdb72c !important;
    color: #fff !important;
    text-decoration: none;
}
/* #END MAIN HEADER #####################################################################################*/
/* ######################################################################################################*/
/* #SECTION 1 SERVIÇOS ##################################################################################*/
main .section-1{
    min-height: 100vh;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    width: 80%;
    margin-left: 10%;
    font-family: 'Karla', sans-serif;
}

main section h1 span{
    font-size: 60px;
    color: #1e2d3b;
    text-transform: uppercase;
}
main section h1 hr{
    width: 40%;
    height: 10px;
    background: #edcd1f;
    border: none;
}
main .section-1 .servicos{
    margin-top: 80px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
main .section-1 .panel{
    height: 480px;
    width: 300px;
    background-color: #f7f7f7;
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

}
main .section-1 .panel img{
    height: 42%;
}
main .section-1 .panel div{
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
main .section-1 .panel div h4{
    color: #3d5975;
    font-size: 24px;
}
main .section-1 .panel div span{
    line-height: 1.5;
    padding-top: 10px;
}
/* ######################################################################################################*/
/* #SECTION 2 QUEM SOMOS ##################################################################################*/
main .section-2{
    min-height: 100vh;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}
main .section-2 .top{
    /*background-color: #f7f7f7;*/
    display: flex;
    flex-direction: row;
}
main .section-2 .about{
    width: 50%;
    padding-left: 5%;
}
main .section-2 .about h1{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 10% 10%;
}
main .section-2 .about span{
    font-size: 55px;
    color: #1e2d3b;
    text-transform: uppercase;
}
main .section-2 .about h1 hr{
    width: 25%;
    height: 10px;
    background: #edcd1f;
    border: none;
}
main .section-2 .about p{
    padding: 0 10% 10% 18%;
    line-height: 1.7;
    font-size: 16px;
}
main .section-2 img{
    flex: 1;
    height: auto;
    overflow: hidden;
    object-fit: cover;
}
main .section-2 .bottom{
    background-color: #edcd1f;
    height: 200px;
    padding: 2% 18%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
main .section-2 .bottom div{
    display: flex;
    flex-direction: column;
    color: #3d5975;
    text-align: center;
    padding: 10px;
    height: 60px;
    width: 25%;
}
main .section-2 .bottom div:not(:last-child){
    border-right: 2px solid #FFFFFF;
    padding-right: 30px;
    
}
main .section-2 .bottom div h2, main .section-2 .bottom div h4{
    font-size: 60px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 650;
    margin-top: -60px;
}
main .section-2 .bottom div h4{
    font-size: 25px;
    font-weight: 500;
    margin-top: 0px;
}

.btnMenu{
    display: none;
    position: absolute;
    right: 20px;
    top: 40%;
    font-size: 30px;
    outline: none;
    background-color: transparent;
    border: none;
}
.btnMenu i{
    transition: all .2s ease-out;
}
#collapsedMenu{
    display: none;
    width: 100%;
    height: auto;
    background-color: #1e2d3b;
    position: absolute;
    top: 80px;
    left: 0;
}
#collapsedMenu ul {
    list-style: none;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#collapsedMenu li {
    margin-bottom: 15px;
}

#collapsedMenu a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

#collapsedMenu a:hover {
    color: #fdb72c;
}

/* Add additional styles for dropdown if needed */
#collapsedMenu .dropdown-content {
    display: none;
    /* Additional styles for dropdown menu */
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

.MenuVisible {
    display: block !important;
    animation: slideInFromTop 0.5s ease-in-out;
}

/* #region MEDIA QUERY*/
@media only screen and (max-width: 1200px) {
    .MenuVisible {
        display: none;
        animation: slideInFromTop 0.5s ease-in-out;
    }
}

@media only screen and (max-width: 992px) {
    
    main .header {
        width: 90%;
        margin: 0 5%;
    }

    /* Add more adjustments as needed */
}

@media only screen and (max-width: 768px) {
    header{
        background-color: #fff;
        margin: 0;
    }
    .btnMenu{
        display: block;
    }
    header .left {
        width: 96%;
        justify-content: flex-start;
        padding: 0 0 0 20px;
    }
    header .right{
        display: none;
    }

    main .header h1 {
        font-size: 40px;
    }

    main .services {
        width: 100%;
        flex-direction: column;
        margin: 0;
    }
    .service{
        width: 100%;
        max-width: 100%;
    }
    .services p{
        font-size: 15px;
        line-height: 1.4;
    }
    .cover{
        padding: 20px;
    }
    
}