body{
    font-family: 'Lato', sans-serif;
    background: #000000;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #202020, #000000);  /* Chrome 10-25, Safari 5.1-6 */
    background: radial-gradient(ellipse at bottom, #0d1d31 0%, #0c0d13 100%);
    background-repeat: no-repeat;
}
/*  Welcome Page  */

.welcome-page h1{
    color: rgb(255, 255, 255);
    font-size: 120px;

}
.welcome-page p{
    color: rgb(190, 190, 190);
    font-size: 30px;
}
.welcome-page .text-center{
    margin-bottom: 500px;
}

    /*  Navigation Bar  */
    .navbar-nav a.nav-link {
        font-size: 25px;
    }


/*  Working Areas  */
.working-areas h1{
    color:  rgb(255, 255, 255);
    font-size: 50px;
    font-weight: bold;
}
.working-areas p{
    color: rgb(180, 180, 180);
    font-size: 30px;
}
.working-areas .card h1{
    color:  rgb(255, 255, 255);
    font-size: 35px;
    font-weight: bold;
}
.working-areas .card p{
    color: rgb(180, 180, 180);
    font-size: 20px;
}


.section-padding {
	padding: 100px 0;
}
.missions .carousel-item {
	height: 100vh;
	min-height: 300px;
}
.missions .carousel-caption {
	bottom: 220px;
	z-index: 2;
}
.missions .carousel-caption h5 {
	font-size: 45px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 25px;
}
.missions .carousel-caption p {
	width: 60%;
	margin: auto;
	font-size: 18px;
	line-height: 1.9;
}
.missions .carousel-inner:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1;
}
/*  About Us  */    
.about-us{
    margin-top: 10%;
    padding-left: 10%;
    padding-right: 10%;
}
.about-text{
    font-size: 23px;
}
.about-us h1{
    color: rgb(207, 207, 207);
    font-size: 45px;
}
.about-us p{
    color: rgb(155, 155, 155);
    font-size: 30px;
}
.about-us-containers{
    height: 430px;
    margin-bottom: 30px;
}
.about-us-custom-button{
    display: inline-block;
    margin-top: 20px;
    width: 100%;
    padding: 20px 40px;
    background-color: #25D366; 
    color: rgb(24, 24, 24); 
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 50px; 
    font-size: 26px; 
    transition: background-color 0.5s, color 0.5s;
}
.about-us-custom-button .fa-whatsapp{
    color: black;
    transition: background-color 0.5s, color 0.5s;
}
.about-us-custom-button:hover{
    background-color: #075E54; 
    color: #ffffff; 
}
.about-us-custom-button:hover .fa-whatsapp{
    color: white;
}


.about-us-custom-button i{
    font-size: 32px;
    padding-right: 20px;
}

.employes h1{
    padding-top: 20px;
    font-size: 30px;
    color: rgb(189, 189, 189);
}
.employes h3{
    color: rgb(141, 141, 141);
}
.employes .column{
    height: 550px;
}
.employes img{
    height: 110%;
    width: 300%;
}
.office-images{
    margin-top: 10%;
    padding-left: 10%;
    padding-right: 10%;
}
.office-images .card h1{
    color:  rgb(255, 255, 255);
    font-size: 40px;
    font-weight: bold;
}
.office-images .card p{
    color: rgb(180, 180, 180);
    font-size: 20px;
}
.office-images img{
    max-height: 600px;
    border-radius: 12px;
}
.office-images .google-maps{
    width: 100%;
    height: 420px;
}
.office-images .carousel-control-next-icon, .office-images .carousel-control-prev-icon{
    filter: invert(100%);
}

.forms form{
    background-color: #00091a;
}
.forms .text h1{
    font-size: 70px;
    color: rgb(197, 197, 197);
    font-weight: bold;
    
}
.forms .text p{
    font-size: 30px;
    color: rgb(197, 197, 197);
}
.forms form .forms-header h1{
    color: white;
    font-weight: bold;
    font-size: 60px;
}
.forms form .btn{
    border-radius: 10px; 
    padding: 15px; 
    background: linear-gradient(to right, #0d1d31, #0b1235); 
    width: 75%; 
    height: 150%; 
    font-size: 20px;
    position: relative;
    overflow: hidden;
}
.forms form .btn .enviar{
    position: relative;
    z-index: 2;
}
.fa-whatsapp{
    color: #25d366;
    font-size: 70px;
}
.fa-facebook{
    color: #316ff6;
    font-size: 70px;
}

.fa-instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 70px;
}
.footer-logo{
    width: 40%;
    height: auto;
}
footer .social-media-text h1{
    color: rgb(202, 202, 202);
    font-size: 40px;
    font-weight: bold;
}
footer .atendimento-contato h1{
    color: white;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
}
footer .days-of-week-text p{
    font-size: 15px;
}






/*  Animation  */    
.hidden{
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1s;
}
.show{
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}
.square:nth-child(2){
    transition-delay: 300ms;
}
.square:nth-child(3){
    transition-delay: 700ms;
}
.square:nth-child(4){
    transition-delay: 1100ms;
}













@media (max-width: 335px){
    .logo img{
        width: 80px; /* Adjust the width as needed */
        height: auto; /* Maintain aspect ratio */
    }
    .welcome-page h1{
        margin-top: 20px;
        font-size: 30px;
    }
    .welcome-page p{
        font-size: 15px;
    }
    .sidebar{
        background-color: rgba(94, 94, 94, 0.15);
        backdrop-filter: blur(10px);
    }
    .welcome-page .text-center{
        margin-bottom: 200px;
    }

    .working-areas h1{
        font-size: 25px;
    }
    .working-areas p{
        margin-top: 20px;
        font-size: 10px;
    }



    .missions .carousel-caption {
		bottom: 30px;
	}
	.missions .carousel-caption p {
		width: 100%;
	}



    .about-us{
        margin-top: 10%;
        padding-left: 5%;
        padding-right: 5%;
    }
    .about-us h1{
        color: rgb(207, 207, 207);
        font-size: 25px;
    }
    .about-us p{
        color: rgb(155, 155, 155);
        font-size: 15px;
    }
    .about-us-containers{
        height: 200px;
        margin-bottom: 30px;
    }
    .about-us-custom-button{
        margin-top: 0px;
        height: 50px;
        width: 100%;
        padding: 5px 20px;
        font-size: 13px; 
    }
    .about-us-custom-button i{
        font-size: 20px;
        padding-right: 10px;
        padding-top: 8px;
    }
    .about-text{
        font-size: 10px;
    }


    .employes{
        margin-top: 110px;
        padding: 0px 25px;
    }
    .employes h1{
        padding-top: 10px;
        font-size: 20px;
        color: rgb(189, 189, 189);
    }
    .employes h3{
        color: rgb(141, 141, 141);
        font-size: 15px;
    }
    .employes .column{
        height: 300px;
    }
    
    
    .office-images{
        margin-top: 110px;
    }
    .office-images .card h1{
        color:  rgb(255, 255, 255);
        font-size: 20px;
        font-weight: bold;
    }
    .office-images .card p{
        color: rgb(180, 180, 180);
        font-size: 12px;
    
    }
    .office-images img{
        max-height: 130px; 
        border-radius: 12px;
    }

    footer .text-left h1{
        color: rgb(202, 202, 202);
        font-size: 20px;
    }
    .fa-whatsapp, .fa-facebook, .fa-instagram{
        font-size: 32px;
    }

    
}

@media (max-width: 495px) and (min-width: 336px){
    .logo img{
        width: 150px; /* Adjust the width as needed */
        height: auto; /* Maintain aspect ratio */
    }
    .navbar-toggler-icon{
        width: 40px;
    }
    .welcome-page{
        background: radial-gradient(ellipse at bottom, #0d1d31 0%, #0c0d13 100%);
    }
    .welcome-page h1{
        margin-top: 90px;
        font-size: 35px;
    }
    .welcome-page p{
        font-size: 20px;
    }
    .sidebar{
        background-color: rgba(94, 94, 94, 0.15);
        backdrop-filter: blur(10px);
    }
    .welcome-page .text-center{
        margin-bottom: 250px;
    }

    .about-text{
        font-size: 15px;
    }




    .working-areas h1{
        font-size: 35px;
    }
    .working-areas p{
        margin-top: 10px;
        font-size: 12px;
    }



    .missions .carousel-caption {
		bottom: 30px;
	}
	.missions .carousel-caption p {
		width: 100%;
	}



    .about-us{
        margin-top: 10%;
        padding: 10px 40px ;
    }
    .about-us h1{
        color: rgb(207, 207, 207);
        font-size: 25px;
    }
    .about-us p{
        color: rgb(155, 155, 155);
        font-size: 15px;
    }
    .about-us-containers{
        height: 200px;
        margin-bottom: 30px;
    }
    .about-us-custom-button{
        margin-top: 0px;
        height: 55px;
        width: 100%;
        padding: 10px 20px;
        font-size: 18px; 
    }
    .about-us-custom-button i{
        font-size: 22px;
        padding-right: 10px;
        padding-top: 8px;
    }


    .employes{
        margin-top: 100px;
        padding: 0px 50px;
    }
    .employes h1{
        padding-top: 10px;
        font-size: 25px;
        color: rgb(189, 189, 189);
    }
    .employes h3{
        color: rgb(141, 141, 141);
        font-size: 20px;
    }
    .employes .column{
        height: 300px;
    }

    .office-images{
        margin-top: 100px;
    }
    .office-images .card h1{
        color:  rgb(255, 255, 255);
        font-size: 25px;
        font-weight: bold;
    }
    .office-images .card p{
        color: rgb(180, 180, 180);
        font-size: 15px;
    }
    .office-images img{
        max-height: 160px; 
        border-radius: 12px;
    }
    .office-images .google-maps{
        width: 100%;
        height: 150px;
    }


    footer .text-left h1{
        color: rgb(202, 202, 202);
        font-size: 20px;
    }
    footer .text-left h1{
        color: rgb(202, 202, 202);
        font-size: 20px;
    }
    .fa-whatsapp, .fa-facebook, .fa-instagram{
        font-size: 30px;
    }
    


}

@media (max-width: 615px) and (min-width: 496px){
    .logo img{
        width: 120px; /* Adjust the width as needed */
        height: auto; /* Maintain aspect ratio */
    }
    .navbar-toggler-icon{
        width: 30px;
    }
    .welcome-page h1{
        margin-top: 0px;
        font-size: 65px;
    }
    .welcome-page p{
        font-size: 20px;
    }
    .welcome-page .text-center{
        margin-bottom: 200px;
    }
    .sidebar{
        background-color: rgba(94, 94, 94, 0.15);
        backdrop-filter: blur(10px);
    }




    .working-areas h1{
        font-size: 45px;
    }
    .working-areas p{
        margin-top: 10px;
        font-size: 12px;
    }




    .missions .carousel-caption {
		bottom: 200px;
	}
	.missions .carousel-caption p {
		width: 100%;
	}



    .about-us{
        margin-top: 10%;
        padding: 10px 80px ;
    }
    .about-us h1{
        color: rgb(207, 207, 207);
        font-size: 25px;
    }
    .about-us p{
        color: rgb(155, 155, 155);
        font-size: 18px;
    }
    .about-text{
        font-size: 17px;
    }
    .about-us-containers{
        height: 300px;
        margin-bottom: 30px;
    }
    .about-us-custom-button{
        margin-top: 0px;
        height: 55px;
        width: 100%;
        padding: 10px 20px;
        font-size: 18px; 
    }
    .about-us-custom-button i{
        font-size: 22px;
        padding-right: 10px;
        padding-top: 8px;
    }


    .employes{
        margin-top: 0px;
        padding: 0px 70px;
    }
    .employes h1{
        padding-top: 10px;
        font-size: 20px;
        color: rgb(189, 189, 189);
    }
    .employes h3{
        color: rgb(141, 141, 141);
        font-size: 17px;
    }
    .employes .column{
        height: 300px;
    }

    .office-images{
        margin-top: 0px;
    }
    .office-images .card h1{
        color:  rgb(255, 255, 255);
        font-size: 30px;
        font-weight: bold;
    }
    .office-images .card p{
        color: rgb(180, 180, 180);
        font-size: 17px;
    }
    .office-images img{
        max-height: 260px; 
        border-radius: 12px;
    }
    .office-images .google-maps{
        width: 100%;
        height: 200px;
    }
    footer .text-left h1{
        color: rgb(202, 202, 202);
        font-size: 20px;
    }
    .fa-whatsapp, .fa-facebook, .fa-instagram{
        font-size: 42px;
    }


}

@media (max-width: 775px) and (min-width: 616px){
    .logo img{
        width: 130px; /* Adjust the width as needed */
        height: auto; /* Maintain aspect ratio */
    }
    .navbar-toggler-icon{
        width: 40px;
    }
    .welcome-page h1{
        margin-top: 0px;
        font-size: 65px;
    }
    .welcome-page p{
        font-size: 20px;
    }
    .welcome-page .text-left{
        margin-bottom: 300px;
    }
    .sidebar{
        background-color: rgba(94, 94, 94, 0.15);
        backdrop-filter: blur(10px);
    }



    .working-areas h1{
        font-size: 35px;
    }
    .working-areas p{
        margin-top: 10px;
        font-size: 12px;
    }




    .missions .carousel-caption {
		bottom: 170px;
	}
	.missions .carousel-caption p {
		width: 100%;
	}

    .about-text{
        font-size: 19px;
    }



    .about-us{
        margin-top: 10%;
        padding: 10px 90px ;
    }
    .about-us h1{
        color: rgb(207, 207, 207);
        font-size: 30px;
    }
    .about-us p{
        color: rgb(155, 155, 155);
        font-size: 19px;
    }
    .about-us-containers{
        height: fit-content;
        margin-bottom: 30px;
    }
    .about-us-custom-button{
        margin-top: 0px;
        height: 55px;
        width: 100%;
        padding: 10px 20px;
        font-size: 18px; 
    }
    .about-us-custom-button i{
        font-size: 22px;
        padding-right: 10px;
        padding-top: 8px;
    }


    .employes{
        margin-top: 0px;
        padding: 0px 70px;
    }
    .employes h1{
        padding-top: 10px;
        font-size: 20px;
        color: rgb(189, 189, 189);
    }
    .employes h3{
        color: rgb(141, 141, 141);
        font-size: 17px;
    }
    .employes .column{
        height: 300px;
    }

    .office-images{
        margin-top: 0px;
        padding: 0px 25px;
    }
    .office-images .card h1{
        color:  rgb(255, 255, 255);
        font-size: 35px;
        font-weight: bold;
    }
    .office-images .card p{
        color: rgb(180, 180, 180);
        font-size: 18px;
    }
    .office-images img{
        max-height: 280px; 
        border-radius: 12px;
    }
    .office-images .google-maps{
        width: 100%;
        height: 200px;
    }
    footer .text-left h1{
        color: rgb(202, 202, 202);
        font-size: 30px;
    }
    .fa-whatsapp, .fa-facebook, .fa-instagram{
        font-size: 50px;
    }


}
@media (max-width: 991px) and (min-width: 816px){
    .logo img{
        width: 130px; /* Adjust the width as needed */
        height: auto; /* Maintain aspect ratio */
    }
    .navbar-toggler-icon{
        width: 40px;
    }
    .welcome-page h1{
        margin-top: 0px;
        font-size: 65px;
    }
    .welcome-page p{
        font-size: 20px;
    }
    .sidebar{
        background-color: rgba(94, 94, 94, 0.15);
        backdrop-filter: blur(10px);
    }




    .working-areas h1{
        font-size: 35px;
    }
    .working-areas p{
        margin-top: 10px;
        font-size: 12px;
    }

    .about-text{
        font-size: 20px;
    }



    .missions .carousel-caption {
		bottom: 170px;
	}
	.missions .carousel-caption p {
		width: 100%;
	}



    .about-us{
        margin-top: 10%;
        padding: 10px 90px ;
    }
    .about-us h1{
        color: rgb(207, 207, 207);
        font-size: 30px;
    }
    .about-us p{
        color: rgb(155, 155, 155);
        font-size: 19px;
    }
    .about-us-containers{
        height: fit-content;
        margin-bottom: 30px;
    }
    .about-us-custom-button{
        margin-top: 0px;
        height: 55px;
        width: 100%;
        padding: 10px 20px;
        font-size: 18px; 
    }
    .about-us-custom-button i{
        font-size: 22px;
        padding-right: 10px;
        padding-top: 8px;
    }


    .employes{
        margin-top: 0px;
        padding: 0px 70px;
    }
    .employes h1{
        padding-top: 10px;
        font-size: 20px;
        color: rgb(189, 189, 189);
    }
    .employes h3{
        color: rgb(141, 141, 141);
        font-size: 17px;
    }
    .employes .column{
        height: 300px;
    }




}

@media (max-width: 1039px) and (min-width: 772px){
    .logo img{
        width: 180px; /* Adjust the width as needed */
        height: auto; /* Maintain aspect ratio */
    }
    .welcome-page h1{
        margin-top: 0px;
        font-size: 85px;
    }
    .welcome-page p{
        font-size: 25px;
    }
    .welcome-page .text-center{
        margin-bottom: 250px;
    }
    .sidebar{
        background-color: rgba(94, 94, 94, 0.15);
        backdrop-filter: blur(10px);
    }
    .navbar-toggler-icon{
        width: 40px;
    }



    .working-areas h1{
        font-size: 55px;
    }
    .working-areas p{
        margin-top: 10px;
        font-size: 14px;
    }





    .missions .carousel-caption {
		bottom: 170px;
	}
	.missions .carousel-caption p {
		width: 100%;
	}



    .about-us{
        margin-top: 10%;
        padding: 10px 160px ;
    }
    .about-us h1{
        color: rgb(207, 207, 207);
        font-size: 30px;
    }
    .about-us p{
        color: rgb(155, 155, 155);
        font-size: 19px;
    }
    .about-us-containers{
        height: fit-content;
        margin-bottom: 30px;
    }
    .about-us-custom-button{
        margin-top: 0px;
        height: 55px;
        width: 100%;
        padding: 10px 20px;
        font-size: 18px; 
    }
    .about-us-custom-button i{
        font-size: 22px;
        padding-right: 10px;
        padding-top: 8px;
    }


    .employes{
        margin-top: 0px;
        padding: 0px 150px;
    }
    .employes h1{
        padding-top: 10px;
        font-size: 20px;
        color: rgb(189, 189, 189);
    }
    .employes h3{
        color: rgb(141, 141, 141);
        font-size: 17px;
    }
    .employes .column{
        height: 300px;
    }

    .office-images{
        margin-top: 0px;
        padding: 0px 50px;
    }
    .office-images .card h1{
        color:  rgb(255, 255, 255);
        font-size: 30px;
        font-weight: bold;
    }
    .office-images .card p{
        color: rgb(180, 180, 180);
        font-size: 18px;
    }
    .office-images img{
        max-height: 300px; 
        border-radius: 12px;
    }
    .office-images .google-maps{
        width: 100%;
        height: 115px;
    }
    .fa-whatsapp, .fa-facebook, .fa-instagram{
        font-size: 30px;
    }
    footer .social-media-text h1{
        color: rgb(202, 202, 202);
        font-size: 20px;
    }

    footer .atendimento-contato h1{
        font-size: 15px;
    }



}
@media (max-width: 1200px){
    .forms .area .container-fluid .text-left{
        display: none;
    }
    .forms .area .container-fluid .forms-card{
        height: 100%;
    }
    .sidebar{
        background-color: rgba(94, 94, 94, 0.15);
        backdrop-filter: blur(10px);
    }
}

@media (max-width: 1400px) and (min-width: 1040px){
    .logo img{
        width: 180px; /* Adjust the width as needed */
        height: auto; /* Maintain aspect ratio */
    }
    .welcome-page h1{
        margin-top: 0px;
        font-size: 85px;
    }
    .welcome-page p{
        font-size: 25px;
    }
    .welcome-page .text-center{
        margin-bottom: 250px;
    }




    .working-areas h1{
        font-size: 55px;
    }
    .working-areas p{
        margin-top: 10px;
        font-size: 14px;
    }




    .missions .carousel-caption {
		bottom: 170px;
	}
	.missions .carousel-caption p {
		width: 100%;
	}



    .about-us{
        margin-top: 10%;
        padding: 10px 160px ;
    }
    .about-us h1{
        color: rgb(207, 207, 207);
        font-size: 30px;
    }
    .about-us p{
        color: rgb(155, 155, 155);
        font-size: 19px;
    }
    .about-us-containers{
        height: fit-content;
        margin-bottom: 30px;
    }
    .about-us-custom-button{
        margin-top: 0px;
        height: 55px;
        width: 100%;
        padding: 10px 20px;
        font-size: 18px; 
    }
    .about-us-custom-button i{
        font-size: 22px;
        padding-right: 10px;
        padding-top: 8px;
    }


    .employes{
        margin-top: 0px;
        padding: 0px 150px;
    }
    .employes h1{
        padding-top: 10px;
        font-size: 20px;
        color: rgb(189, 189, 189);
    }
    .employes h3{
        color: rgb(141, 141, 141);
        font-size: 17px;
    }
    .employes .column{
        height: 300px;
    }
    .office-images{
        margin-top: 0px;
        padding: 0px 100px;
    }
    .office-images .card h1{
        color:  rgb(255, 255, 255);
        font-size: 40px;
        font-weight: bold;
    }
    .office-images .card p{
        color: rgb(180, 180, 180);
        font-size: 20px;
    }
    .office-images img{
        max-height: 390px; 
        border-radius: 12px;
    }
    .office-images .google-maps{
        width: 100%;
        height: 182px;
    }

    .fa-whatsapp, .fa-facebook, .fa-instagram{
        font-size: 50px;
    }
    footer .social-media-text h1{
        color: rgb(202, 202, 202);
        font-size: 30px;
    }

    footer .atendimento-contato h1{
        font-size: 20px;
    }



}

@media (max-width: 991px){
    .forms .text{
        display: none;
        height: 0px;
        width: 0px;
    }
    .forms .text .text-left{
        display: none;
    }
}


@media (max-width: 1600px) and (min-width: 1401px){
    .welcome-page .text-center{
        margin-bottom: 400px;
    }

    .employes{
        margin-top: 100px;
        padding: 0px 110px;
    }
    .employes h1{
        padding-top: 10px;
        font-size: 20px;
        color: rgb(189, 189, 189);
    }
    .employes h3{
        color: rgb(141, 141, 141);
        font-size: 17px;
    }
    .employes .column{
        height: 450px;
    }
    .office-images{
        margin-top: 100px;
        padding: 0px 110px;
    }
    .office-images img{
        max-height: 500px; 
        border-radius: 12px;
    }
    .office-images .google-maps{
        width: 100%;
        height: 320px;
    }



}