:root {
    --primary-color: #2E2D93;
    --primary-transparent: #2f2d93d7;
    --secondary-color: #189DCA;
    --terciary-color: #4DB3A1;
    --terciary-light: #4db3a047;
    --dark-primary-color: #191851;
    --dark-secondary-color: #215d71;
    --general-text-color: #212636;
    --gray-text-color: #505050;
    --gradient-primary-to-terciary-bottom: linear-gradient(to bottom, #2e2d93, #005ab2, #007cb5, #0099ab, #4db3a1);
    --gradient-dark-primary-to-secondary-right:linear-gradient(to right, #191851, #133873, #005994, #007ab0, #189dca);
    --gradient-dark-primary-to-secondary-bottom:linear-gradient(to bottom, #191851, #133873, #005994, #007ab0, #189dca);
    --gradient-dark-primary-to-secondary-top:linear-gradient(to top, #191851, #133873, #005994, #007ab0, #189dca);
    --gradient-primary-secondary-terciary-diagonal-right:linear-gradient(to right top, #2e2d93, #1346a4, #005bb2, #0070bc, #0084c4, #008fc6, #009ac5, #00a4c3, #07a9bc, #21adb4, #38b0aa, #4db3a1);
    --gradient-primary-secondary-terciary-diagonal-left:linear-gradient(to left top, #2e2d93, #1346a4, #005bb2, #0070bc, #0084c4, #008fc6, #009ac5, #00a4c3, #07a9bc, #21adb4, #38b0aa, #4db3a1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat, Helvetica, Arial;
}

body {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    position: relative;
    overflow: auto;
    min-height: 100vh;
    justify-content: space-between;
}

body.loading {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: var(--general-text-color);
}

input[type=text],input[type=email], input[type=tel] {
    height: 38px;
    border-radius: 50px;
    border: 1px solid var(--gray-text-color);
    padding-left: 10px;
    color: var(--gray-text-color);
}
input[type=checkbox]{
    width: 18px;
    height: 18px;
}
/* PAGE LOADER */
.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #004589 transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent #189DCA #2E2D93;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

#page-loader {
    height: 100vh;
    width: 100%;
    background-color: white;
    opacity: 1;
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

#page-loader.closed {
    scale: 0;
    opacity: 0;
}


.auroaduanas-logo {
    height: 80px;
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.auroaduanas-navbar {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: white;
    color: white;
    font-size: 16px;
}

.navbar-items {
    display: flex;
    gap: 20px;
    height: 100%;
    align-items: center;
}

.navbar-items .menu-item {
    text-decoration: none;
    color: var(--general-text-color);
    height: 100%;
    display: block;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.navbar-items .menu-item:hover {
    color: var(--secondary-color);
}
.navbar-items .menu-item.active{
    background-color: var(--terciary-light);
    padding: 10px;
    border-radius: 16px;
    color: var(--dark-primary-color);
    font-weight: bold;
}

.auroaduanas-navbar .searcher-btn {
    background-color: transparent;
    border: none;
    font-size: 20px;
    color: var(--general-text-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.auroaduanas-navbar .searcher-btn:hover {
    color: var(--secondary-color);
}

footer {
    background: #F2F2F2;
    color: var(--gray-text-color);
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
}

footer h5 {
    color: #004589;
    font-weight: 600;
}

footer i {
    color: #004589;
    font-size: 20px;
}

footer .footer-first-section {
    display: flex;
    justify-content: space-around;
}

.footer-logo {
    height: 60px;
    width: 250px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.footer-informacion>div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.2s ease;
}

.footer-informacion>div a:hover {
    transition: all 0.3s ease;
    scale: 1.03;
    color: #004589;
}

.contacto-footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.contacto-footer-content div {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.contacto-footer-content div span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-second-section {
    display: flex;
    justify-content: center;
    margin: 60px 0px 0px 0px;
}

.carousel-item {
    height: 600px;
    background-color: gray;
}

.carousel-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    gap: 20px;
}

.carousel-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.3;
    background-color: black;
}

.carousel-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 20px;
}

.certificaciones {
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    gap: 20px;
    height: 250px;
}

.certificaciones h2 {
    font-weight: bold;
}

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

.certificaciones-container .certificado {
    background-color: white;
    height: 100%;
    width: 100%;
    max-width: 150px;
    max-height: 150px;
}

.certificaciones-container .separator {
    height: 80%;
    width: 2px;
    background-color: white;
    border-radius: 9px;
}

.servicios {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

.servicios-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.servicios-header h2 {
    font-weight: bold;
    margin: 0;
}

.servicios-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.servicios-container .servicio-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    height: 300px;
    justify-content: space-between;
    border-radius: 9px;
    overflow: hidden;
    padding-bottom: 10px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.servicio-card .servicio-img {
    width: 100%;
    height: 50%;
    background-color: grey;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.servicio-card .servicio-ref {
    text-decoration: none;
    color: var(--general-text-color);
    font-size: 16px;
    font-weight: bold;
}

.servicio-card .separator {
    width: 10%;
    height: 2px;
    background-color: var(--primary-color);
}

.somos-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 10px 40px 60px 40px;
    background: linear-gradient(153deg, hsla(210, 100%, 27%, 1) 0%, hsla(210, 100%, 27%, 1) 49%, hsla(169, 40%, 50%, 1) 100%);
    color: white;
    border-radius: 0px 100px 0px 0px;
}

.somos-container .somos-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.somos-container .somos-header h2 {
    font-weight: bold;
    margin: 0px;
}

.somos-container .somos-cards {
    display: flex;
    gap: 30px;
}

.somos-card {
    background-color: white;
    color: var(--general-text-color);
    width: 265px;
    height: 250px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    padding: 10px;
    border-radius: 9px;
    box-shadow: rgba(0, 145, 255, 0.445) 0px 1px 2px 0px, rgba(0, 145, 255, 0.39) 0px 1px 3px 1px;
    margin-top: 20px;
}

.somos-card i {
    font-size: 30px;
}

.mini-contact-container {
    position: relative;
    height: 500px;
}

.mini-contact-section-1 {
    background-position: 0px -80px;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 10px 40px 20px 40px;
    border-radius: 100px 0px 0px 0px;
    padding: 20px 20px 20px 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mini-contact-section-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-transparent)
}

.mini-contact-section-1 .mini-contact {
    display: flex;
    height: 100%;
    z-index: 1;
    position: relative;
}

.mini-contact .mini-contact-desc {
    display: flex;
    flex-direction: column;
    z-index: 1;
    color: white;
    justify-content: center;
    width: 70%;
}

.mini-contact-desc h4 {
    font-weight: bold;
    margin-bottom: 30px;
}

.mini-contact-desc div {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mini-contact-desc div span {
    display: flex;
    align-items: center;
    font-size: 20px;
}

.mini-contact-desc p {
    margin: 0;
}

.mini-contact-desc i {
    margin-right: 20px;
    font-size: 30px;
}

.mini-contact .mini-contact-img {
    height: 200px;
    width: 70%;
}

.mini-contact-section-2 {
    background-color: white;
    border-radius: 16px;
    padding: 20px;
    width: 40%;
    z-index: 1;
}

.mini-contact-form-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mini-contact-form-header h4 {
    font-weight: bold;
}

#mini-contact-form {
    display: flex;
    flex-direction: column;
}

#mini-contact-form div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 25px;
}

#mini-contact-form label {
    display: flex;
    align-items: center;
}

#mini-contact-form i {
    margin-right: 5px;
    font-size: 18px;
    color: var(--dark-secondary-color);
}
.main-contact{
    position: relative;
    height: 900px;
    align-items: center;
    display: flex;
    flex-direction: column;
    background-image: var(--gradient-primary-to-terciary-bottom);
}
.oficina-map{
    width: 100%;
    height: 350px;
    padding: 20px 40px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.oficina-map iframe{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.contact-form-container{
    display: flex;
    padding: 20px;
    justify-content: center;
    display: flex;
    padding: 20px;
    justify-content: space-between;
    background: white;
    width: 80%;
    top: -15%;
    position: relative;
    border-radius: 18px;
    align-items: center;
}
#contact-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 45%;
}
#contact-form>.contact-form-header{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#contact-form div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#contact-form div i{
    font-size: 20px;
    color: var(--primary-color);
}
#contact-form div label{
    display: flex;
    align-items: center;
    gap: 5px;
}
#contact-form .send-copy-container{
    display: flex;
    flex-direction: row;
    margin-top: 10px;
}
.contact-form-container .separator{
    width: 2px;
    height: 60%;
    background-color: var(--dark-primary-color);
    border-radius: 50px;
}
.office-info-container{
    width: 45%;
    height: 100%;
}
.office-info{
    display: flex;
    align-items: center;
    gap: 15px;
}
.office-info-container{
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}
.office-info .badge{
    background-color: var(--primary-transparent);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
.about-us-container{
    display: flex;
    padding: 40px 100px;
    flex-direction: column;
}
.about-us-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.about-us-cards-container{
    display: grid;
    grid-template-columns: auto repeat(2, 1fr);
    grid-template-rows: repeat(2,auto);
    row-gap: 20px;
    column-gap: 20px;
    margin-bottom: 50px;
}
.about-us-cards-container .about-us-team-card{
    height: 450px;
    width: 400px;
    background-image: url(/assets/imgs/about-us-team.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    grid-row-start: 1;
    grid-row-end: 3;
    border-radius: 12px;
}
.about-us-cards-container .about-us-mision{
    background: var(--gradient-dark-primary-to-secondary-bottom);
    border-radius: 12px;
    padding: 10px;
    color: white;
}
.about-us-cards-container .about-us-vision{
    background: var(--gradient-dark-primary-to-secondary-bottom);
    color: white;
    border-radius: 12px;
    padding: 10px;
}
.about-us-cards-container .about-us-valores{
    background: var(--gradient-dark-primary-to-secondary-bottom);
    grid-column-start: 2;
    grid-column-end: 4;
    border-radius: 12px;
    padding: 10px;
    color: white;
}
.servicios-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}
.servicios-section .servicios-section-header{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.servicios-tab-panel{
    display: flex;
    justify-content: space-between;
    margin: 30px 0px;
    width: 100%;
}
.servicios-tab-panel .btn-tab-container{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 30%;
}
.servicios-tab-panel .tab-content{
    display: flex;
    align-items: flex-start;
    width: 65%;
    padding: 15px;
}
.oficinas-section{
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
}
.oficinas-section .oficinas-section-header{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.h-underline-primary {
    height: 2px;
    width: 30%;
    background-color: var(--primary-color);
    border-radius: 50px;
    margin-bottom: 10px;
}

.h-underline-secondary {
    height: 2px;
    width: 30%;
    background-color: white;
    border-radius: 50px;
    margin-bottom: 10px;
}

.btn-primary {
    font-size: 15px;
    border-radius: 50px;
    border: none;
    background-color: #004589;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 38px;
    padding: 0px 20px;
    transition: all 0.1s ease;
    justify-content: center;
}

.btn-primary a {
    color: white;
}

.btn-primary:hover {
    background-color: var(--dark-primary-color);
    scale: 1.020;
}

.btn-primary.lg {
    font-size: 16px;
    height: 45px;
}
.btn-primary.active{
    background-color: white;
    color: var(--dark-primary-color);
    border: 1px solid var(--dark-primary-color);
    font-weight: bold;
    scale: 1.020;
}

.btn-secondary {
    font-size: 15px;
    border-radius: 50px;
    border: none;
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 38px;
    padding: 0px 20px;
    transition: all 0.1s ease;
    margin-top: 30px;
}

.btn-secondary a {
    color: white;
}

.btn-secondary:hover {
    background-color: var(--dark-secondary-color);
    scale: 1.020;
}

.btn-secondary i {
    font-size: 20px;
}

.btn-secondary:hover i {
    translate: 4px;
}