@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800&display=swap');

body {
    margin: 0;
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    display: grid;
    justify-items: center;
    overflow-x: hidden !important;
}

/* Header */
header {
    /* max-width: 1500px; */
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 8px 10px -4px rgba(0, 0, 0, 0.35);
    user-select: none;
    padding: 10px 30px;
    position: fixed;
    top: 0;
    z-index: 100 !important;
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .navbar .menus a {
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    font-weight: 600;
    color: #1B1616;
}

header .navbar .menus a:first-child {
    margin: 0 15px 0 0;
}

header .navbar .menus a:last-child {
    margin: 0 0 0 15px;
}

header .navbar .menus a:hover {
    color: #318C89;
}

header .navbar .menus a#page-selected {
    color: #318C89;
}

header .navbar .logo img {
    width: 66px !important;
    height: auto;
}

.languages {
    position: relative;
}

.languages a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.languages a span:first-child {
    margin: 0px 10px 0 10px;
}

.languages a span:last-child {
    margin: 0px 10px 0 10px;
}


.languages a span img {
    transition: all 0.2s ease-in;
}

.languages .all-language {
    display: none;
}

.drop .all-language {
    display: block;
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    border-radius: 5px;
    opacity: 1;
}

@keyframes drop {
    0% {
        top: 20px;
        opacity: 0.3;
    }

    50% {
        top: 45px;
        opacity: 0.7;
    }

    100% {
        top: 75px;
        opacity: 1;
    }
}

@keyframes backdrop {
    0% {
        top: 75px;
        opacity: 0.7;
    }

    50% {
        top: 45px;
        opacity: 0.3;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

.drop a span:last-child>img {
    transform: rotate(180deg);
}

.drop .all-language a {
    padding: 12px 22px;
    text-decoration: none;
    color: #1B1616;
}

.drop .all-language a:hover {
    color: #318C89;
    background-color: rgba(27, 22, 22, 0.05);
}

.mobile-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-navbar #icon-language {
    display: grid;
    place-items: center;
    padding: 3px 2px 3px 3px;
    background-color: rgba(27, 22, 22, 0.1);
    border-radius: 50%;
}

.mobile-navbar .languages a img {
    width: 33px;
    height: 33px;
}

.mobile-navbar .drop .all-language {
    left: 60%;
}

.mobile-navbar .logo img {
    width: 70px !important;
    height: 55px !important;
}

.menu-icon {
    background-color: rgba(27, 22, 22, 0.1);
    width: 36px;
    height: 34px;
    border-radius: 5px;
    padding: 5px 3px;
    position: relative;
    cursor: pointer;
}

.menu-icon .line {
    background-color: #1B1616;
    width: 26px;
    height: 3px;
    border-radius: 5px;
    position: absolute;
    top: 5px;
    right: 5px;
    transform-origin: right;
    transform: rotate(0deg);
    transition: transform 0.3s linear;
}

.menu-icon .line-2 {
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
}

.menu-icon .line-3 {
    top: auto;
    bottom: 5px;
    width: 26px;
}

.menu-open .line {
    width: 33px;
}

.menu-open .line-1 {
    transform: rotate(-40deg);
}

.menu-open .line-2 {
    visibility: hidden;
}

.menu-open .line-3 {
    transform: rotate(40deg);
}

.mobile-menu {
    width: 100%;
    transform: translateY(-550px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 73px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    border-radius: 0 0 20px 20px;
    z-index: 99 !important;
    transition: transform 0.4s ease;
}

.mobile-menu a {
    text-decoration: none;
    color: #1B1616;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0;
}

.mobile-menu a:hover {
    color: #318C89;
}

.mobile-menu #page-selected {
    color: #318C89;
}

.open {
    transform: translateY(0);
}

@media (min-width: 768px) {
    header .navbar {
        display: flex;
    }

    header .mobile-navbar {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    header .navbar .menus a {
        margin: 0 10px;
    }

    header .navbar .menus a:first-child {
        margin: 0 10px 0 0;
    }

    header .navbar .menus a:last-child {
        margin: 0 0 0 10px;
    }
}

@media (max-width: 768px) {
    header .navbar {
        display: none;
    }

    header .mobile-navbar {
        display: flex;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    header .navbar .menus a {
        margin: 0 8px;
    }

    header .navbar .menus a:first-child {
        margin: 0 8px 0 0;
    }

    header .navbar .menus a:last-child {
        margin: 0 0 0 8px;
    }
}

/* GALLERY */

.gallery {
    /* max-width: 1500px; */
    width: 100%;
    margin-top: 120px;
    overflow: hidden !important;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50vh;
    background-color: #318C89;
    z-index: -1;
    background: linear-gradient(-3deg, #FFFFFF, #EEFFFE, rgba(49, 140, 137, 0.65));
}

.gallery h2 {
    display: block;
    color: #010202;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 40px;
}

.gallery-row {
    width: 100%;
    /* height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px; */
    columns: 2;
    column-gap: 20px;
    overflow: hidden;
}


.gallery-image {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    break-inside: avoid;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.gallery-image.small {
    height: 220px;
}

.gallery-image.large {
    height: 440px;
}

.gallery-image img {
    width: 100%;
    border-radius: 16px;
}

.gallery-image img.vertical {
    width: 100%;
    object-fit: cover;
}

.gallery-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-height: 150px;
    color: #FFFFFF;
    background-color: #1b1616c4;
    padding: 10px 15px;
    border-radius: 5px;
    line-height: 27px;
    font-size: 1rem;
    font-weight: 400;
    z-index: 30;
    overflow: auto;
}

.gallery-text::-webkit-scrollbar {
    width: 15px;
    background-color: #1b1616;
}

.gallery-text::-webkit-scrollbar-thumb {
    background-color: #FFFFFF;
}

/*
.gallery-image .caption p::sc .gallery .show-more {
    display: flex;
    justify-content: center;
    margin-top: 30px;
} */

.gallery a {
    text-decoration: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {
    /* .gallery-image {
        width: 31.5%;
        border-radius: 16px;
    } */
}

@media (min-width: 992px) and (max-width: 1200px) {
    .gallery-row {
        columns: 1;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .gallery-row {
        columns: 1;
    }

    .gallery-text {
        font-size: 0.9rem;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .gallery-row {
        columns: 1;
    }

    .gallery a {
        padding: 8px 16px;
        font-size: 17px;
    }

    .gallery h2 {
        font-size: 1.5rem;
    }

    .gallery-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .gallery {
        padding: 0 20px;
    }

    .gallery-row {
        columns: 1;
    }

    .gallery h2 {
        font-size: 1.4rem;
        margin: 0 0 20px;
    }

    .gallery-text {
        font-size: 0.8rem;
    }

    .gallery-image.small {
        height: 200px;
    }

    .gallery-image.large {
        height: 400px;
    }
}

/*  FOOTER */
footer {
    margin-top: 80px;
    /* max-width: 1500px; */
    width: 100%;
    overflow-x: hidden;
}

footer hr {
    width: 100%;
    height: 3px;
    border: 0;
    outline: 0;
    background-color: #E5E5E5;
}

.footer-control {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 45px 0;
}

.foooter-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.foooter-logo img {
    width: 50px !important;
    height: 50px !important;
}

.footer-control .links {
    transform: translateX(-190px);
    display: flex;
    gap: 30px;
}

.footer-control .links a {
    font-size: 20px;
    font-weight: 400;
    color: #777D87;
    text-decoration: none;
}

.footer-control .links a:hover {
    color: #010202;
}

.social-media {
    display: flex;
    gap: 30px;
}

.social-media .facebook,
.social-media .twitter,
.social-media .instagram {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    transition: 0.1s ease;
}

.social-media .facebook:hover,
.social-media .twitter:hover,
.social-media .instagram:hover {
    transform: scale(1.1);
}

.social-media .facebook img,
.social-media .twitter img,
.social-media .instagram img {
    cursor: pointer;
    width: 30px;
    height: 30px;
}

@media (max-width: 1400px) {
    .footer-control .links {
        transform: translateX(-120px);
    }

}

@media (min-width: 992px) and (max-width: 1200px) {
    .footer-control .links {
        transform: translateX(-30px);
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .footer-control {
        flex-direction: column;
    }

    .foooter-logo img {
        width: 80px !important;
        height: 80px !important;
    }

    .footer-control .links {
        margin: 50px 0;
        transform: translateX(0);
        flex-direction: column;
    }

    .footer-control .links a {
        font-size: 30px;
        text-align: center;
    }

    .footer-control .social-media a {
        margin: 0 20px;
    }

    .footer-control .social-media a img {
        width: 80px;
    }
}

@media (max-width: 768px) {

    footer {
        margin-top: 40px;
    }

    .footer-control {
        flex-direction: column;
    }

    .foooter-logo img {
        width: 70px !important;
        height: 70px !important;
    }

    .footer-control .links {
        margin: 50px 0;
        transform: translateX(0);
        flex-direction: column;
    }

    .footer-control .links a {
        font-size: 1.3rem;
        text-align: center;
    }

    .footer-control .social-media a {
        margin: 0 20px;
    }

    .footer-control .social-media a img {
        width: 80px;
    }
}

@media (max-width: 576px) {
    footer {
        margin-top: 30px;
    }

    .footer-control .links a {
        font-size: 1rem;
    }
}

@media (max-width: 450px) {
    .footer-control .links a {
        text-align: center;
    }

    .footer-control .social-media a {
        margin: 0 10px;
    }

    .footer-control .social-media a img {
        width: 30px;
    }
}

@media (max-width: 400px) {
    .footer-control .links {
        gap: 15px;
    }

}