@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:wght@400;500;600;700&display=swap');
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
   scroll-behavior: smooth;
}

.keyword-text {
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
   color: #6C737F;
}

@media (max-width: 600px) {
    .keyword-text {
        font-size: 16px;
    }
}

.navbar-container-fixed {
    background-color: #fff;
    width: 100%;
    max-height: 82px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}


.header {
    background-color: #000;
    width: 100%;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-menu {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left:10%;
    padding-right:10%;
    height: 42px;
    background: #D3EAF2;

}

@media (max-width: 1120px) {
    .header-menu {
        display: none;
    }
}

.header-menu .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-menu .container ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 65px;
}

.header-menu .container ul li a {
    color: #145B72;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    gap: 8px;
    transition: all 0.3s ease;

}

.header-menu .container ul li a:hover {
    color: #000;

    img {
        filter: brightness(0) invert(0.3);
    }
}

.navbar-container {
    width: 100%;
    padding-top: 9px;
    padding-bottom: 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10%;
    padding-right: 10%; 
    border-bottom: 1px solid #E2E2E2;

}

@media (max-width: 1380px) {
    .navbar-container {
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (max-width: 1200px) {
    .navbar-container {
        padding-left: 2%;
        padding-right: 2%;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.navbar {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;   
}

.navbar .logo {
    width: 139px;
    height: 55px;
    object-fit: scale-down;
}

.navbar .menu-items {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 54px;
    position: relative;
}

@media (max-width: 1512px) {
    .navbar .menu-items {
        gap: 30px;
    }
}

@media (max-width: 1120px) {
    .navbar .menu-items {
        display: none;
    }
}

.navbar .menu-items li {
    position: relative;


    &:hover {
        .sub-menu {
            visibility: visible;
        }
    }
    
}



.navbar .menu-items li a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    color: #6C737F;
    transition: all 0.3s ease;
    position: relative;
}

.navbar .menu-items li a:hover {
    color: #145B72;
}

.btn-contact-container {
    display: flex;
    align-items: center;
    justify-content: center;
}



.btn-contact {
    border: 1px solid #2143BE;
    color: #2143BE;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    cursor: pointer;
    text-decoration: none;
    background: none;
    outline: none;
    box-sizing: border-box;
    border-radius: 600px;
    padding: 0px 30px;
}

.btn-contact:hover {
    background: #2143BE;
    color: #fff;
}

@media (max-width: 1120px) {
    .btn-contact {
        display: none;
    }
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    margin-right: 20px;


    .hamburger-menu-line {
        display: block;
        width: 100%;
        height: 2px;
        background: #2143BE;
        margin-bottom: 5px;
        transition: all 0.3s ease;
    }
}

.hamburger-menu.active {
    position: fixed;
    top: 27px;
    right: 15px;
    z-index: 1000;
   
    .hamburger-menu-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 8px);

    }

    .hamburger-menu-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(2px, -5px);
    }
}

@media (max-width: 1120px) {
    .hamburger-menu {
        display: block;
    }
}

.mobile-menu-overlay {
    display: none;
}

.mobile-menu-overlay.active {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: #fff;
}

.mobile-menu-overlay .mobile-menu-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    height: 100%;
}

.mobile-menu-overlay .mobile-menu-container ul {
    display: flex;
    flex-direction: column;
    padding-top: 100px;
   
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 28px;
}

.mobile-menu-overlay .mobile-menu-container ul li a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    color: #6C737F;
    transition: all 0.3s ease;
    color: #0A152A;
}

.mobile-menu-overlay .btn-contact-mobile {
    display: flex;
    margin-top: 61px;
    margin-bottom: 89px;
    padding: 23px 65px;
}

.mobile-menu-overlay .bottom-menu-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #E9F5F8;
    height: 100%;
}

.mobile-menu-overlay .bottom-menu-container ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    width: 100%;
    height: 100%;
    gap: 32px;
    padding-top: 64px;
}

.mobile-menu-overlay .bottom-menu-container ul li a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    color: #0A152A;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #145B72;

}


.footer-container {
    width: 100%;
    margin-top: 113px;
    border-top: 1px solid #E2E2E2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-container .footer-content-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1218px;
}

@media (max-width: 1220px) {
    .footer-container .footer-content-container {
        padding-left: 5%;
        padding-right: 5%;
    }
}

.footer-container .footer-content-container .first-row-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E2E2E2;
    padding-top: 40px;
    padding-bottom: 46px;
}

@media (max-width: 999px) {
    .footer-container .footer-content-container .first-row-footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.footer-container .footer-content-container .first-row-footer .logo {
    width: 139px;
    height: 55px;
    object-fit: scale-down;
}

.footer-container .footer-content-container .first-row-footer .networks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    list-style: none;
}

@media (max-width: 999px) {
    .footer-container .footer-content-container .first-row-footer .networks {
        margin-top: 58px;
        gap: 10px;
        flex-direction: column;
    }
}

.footer-container .footer-content-container .first-row-footer .networks li {

    .network-item-link {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-decoration: none;
        color: #000;
        transition: all 0.3s ease;
        -webkit-text-decoration: none;
        -moz-text-decoration: none;
        -ms-text-decoration: none;
        -o-text-decoration: none;
    }

    .network-item-link:hover {
        color: #2143BE;
    }


    img {
        width: 22px;
        height: 22px;
    }

    .user-name {
        font-size: 18px;
        font-weight: 400;
        color: #000;
        transition: all 0.3s ease;
    }

    .user-name:hover {
        color: #2143BE;
    }
}

.second-row-footer {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 60px;
}

@media (max-width: 999px) {
    .second-row-footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.second-row-footer .menu-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    list-style: none;
    row-gap: 30px;
}

@media (max-width: 999px) {
    .second-row-footer .menu-footer {
        align-items: center;
        justify-content: center;
    }

    .second-row-footer .menu-footer:nth-child(2) {
        margin-top: 87px;
    }
}

.second-row-footer .menu-footer .menu-footer-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    list-style: none;
    row-gap: 30px;

    .menu-footer-item-link {
        font-size: 16px;
        font-weight: 400;
        font-family: 'Poppins', sans-serif;
        text-decoration: none;
        color: #000;
        transition: all 0.3s ease;
        -webkit-text-decoration: none;
        -moz-text-decoration: none;
        -ms-text-decoration: none;
        -o-text-decoration: none;
    }

    .menu-footer-item-link:hover {
        color: #2143BE;
    }
}

.address-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    list-style: none;
    row-gap: 30px;
}

@media (max-width: 999px) {
    .address-container {
        align-items: center;
        justify-content: center;
        margin-top: 68px;
    }
}

.address-container .address-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    list-style: none;
    row-gap: 30px;

    @media (max-width: 999px) {
        align-items: center;
        justify-content: center;
    }


    .address-item {

        .address-item-link {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 10px;
            color: #000;
            text-decoration: none;
            transition: all 0.3s ease;
            -webkit-text-decoration: none;
            -moz-text-decoration: none;
            -ms-text-decoration: none;
            -o-text-decoration: none;
        }

        @media (max-width: 999px) {
            .address-item-link {
                text-align: center;
            }
        }

        .address-item-link:hover {
            color: #2143BE;

            .address-item-title, .address-item-text, .address-item-value {
                color: #2143BE;
            }
        }

        .address-item-title {
            font-size: 16px;
            font-weight: 700;
            line-height: 24px;
            font-family: 'Inter', sans-serif;
            color: #000;
            transition: all 0.3s ease;
        }

        @media (max-width: 999px) {
            .address-item-title {
                text-align: center;
            }
        }

        .address-item-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            transition: all 0.3s ease;

            .address-item-value {
                font-size: 16px;
                font-weight: 400;
                font-family: 'Poppins', sans-serif;
                color: #000;
                max-width: 279px;
                margin-top: 11px;
                transition: all 0.3s ease;
            }
        }

        @media (max-width: 999px) {
            .address-item-text {
                width: 100%;
                align-items: center;
            }
            
            .address-item-value {
                text-align: center;
            }

            
        }
    }
}

.footer-container .btn-contact-footer {
    align-self: flex-start;
    margin-top: 0;
}

@media (max-width: 999px) {
    .footer-container .btn-contact-footer {
       display: none;
    }
}

.footer-bottom-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 17px;
    padding-bottom: 17px;
    background: #D3EAF2;
    margin-top: 115px;

    @media (max-width: 1220px) {
        padding-left: 5%;
        padding-right: 5%;
    }


    .footer-bottom-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        max-width: 1218px;
        width: 100%;
    }

    .footer-bottom-text {
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        font-family: 'Inter', sans-serif;
        color: #0A152A;
    }

    @media (max-width: 999px) {
        .footer-bottom-content {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-rows: 1fr 1fr 1fr;
            align-items: center;
            justify-content: center;
        }

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

       
    }

    .footer-bottom-link {
        font-size: 16px;
        font-weight: 400;
        font-family: 'Inter', sans-serif;
        color: #000;
        text-decoration: none;
        transition: all 0.3s ease;
        -webkit-text-decoration: none;
        -moz-text-decoration: none;
        -ms-text-decoration: none;
        -o-text-decoration: none;
    }

    @media (max-width: 999px) {
        .footer-bottom-link:nth-child(2) {
            grid-column: 1;
            grid-row: 1;
            text-align: center;
        }
    }

    .footer-bottom-link:hover {
        color: #2143BE;
    }
}


.tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}


.ciclos-header-title span,  .why-study-here-title span {
    display: block; 
  content: " "; 
  margin-top: -200px; 
  height: 200px; 
  visibility: hidden; 
  pointer-events: none;
}

 .biligual-program-title span {
    display: block; 
  content: " "; 
  margin-top: -280px; 
  height: 280px; 
  visibility: hidden; 
  pointer-events: none;
}

 .curriculum-mobile-title span {
    display: block; 
  content: " "; 
  margin-top: -380px; 
  height: 380px; 
  visibility: hidden; 
  pointer-events: none;
}

.menu-item-304 {
    position: relative;
    
    &:hover {
         .sub-menu {
            display: flex;
        }
    }

}

.menu-item .sub-menu {
        display: none;
        flex-direction: column;
        align-items: center ;
        justify-content: center;
        list-style: none;
        row-gap: 10px;
        width: 100%;
        min-width: 200px;
        background-color: #fff;
        padding: 20px;
        z-index: 1000;
        position: absolute;
        left: -70%;
        box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin-top: 10px;


        li {
            width: 100%;
            a {
                width: 100%;
            }
        }

    &::before {
        content: "";
        position: absolute;
        top: 0;
        width: 20px;
        height: 20px;
        background-color: #fff;
        transform: rotate(130deg);
        left: 45%;
        border-radius: 4px;
        margin-top: -12px;
        z-index: 10;
        border-style: solid;
        border-width: 0 0 1px 1px;
        border-color: rgba(0, 0, 0, 0.2);
    }

       
}

        @media (max-width: 1120px) {
            .menu-item .sub-menu {
                position: relative;
                box-shadow: none;
                width: 100%;
                min-width: 100%;
                border-radius: 0;
                visibility: visible;
                position: relative;
                padding:0;
                padding-top: 10px !important;
                left: 0;

                &::before {
                    display: none;
                }
            }


            .menu-item-304 {
                text-align: center !important;
                width: 100% !important;
            }
        }


.arrow-container {
  display: inline-block;
  margin-left: 5px;
  position: relative;
  width: 12px;
  height: 12px;
  transform: rotate(180deg);

       
}
 @media (max-width: 1120px) {
    .arrow-container {
            display: none;
        }
    }
.arrow-down-line1, .arrow-down-line2 {
  position: absolute;
  background-color: currentColor;
  height: 2px;
  width: 8px;
  display: block;
}

.arrow-down-line1 {
  transform: rotate(45deg);
  right: 0;
  top: 5px;
}

.arrow-down-line2 {
  transform: rotate(-45deg);
  left: 0;
  top: 5px;
}

.section-privacy-policy-container {
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-privacy-policy-content {
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 5%;
    padding-right: 5%;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: 'Inter', sans-serif;
    color: #000;
}