@font-face {
    font-family: "Montserrat-Medium";
    src: url("../font/Montserrat-Medium.woff2");
}

@font-face {
    font-family: "Montserrat-SemiBold";
    src: url("../font/Montserrat-SemiBold.woff2");
}

@font-face {
    font-family: "Montserrat-Black";
    src: url("../font/Montserrat-Black.woff2");
}

* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat-SemiBold";
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

:root {
    --blue: #3378bb;
    --dark-blue: #28306A;
    --yellow: #FFED00;
    --gray: #616160;
}

a {
    text-decoration: none;
    font-size: 1vw;

}

body {
    background: white;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
    -drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

section {
    width: 100%;
    padding: 10%;
    background-color: white;
}

h1,
h2 {
    font-size: 2vw;
    color: var(--dark-blue);
    font-family: "Montserrat-Black";
    line-height: 1;
}

p {
    color: var(--gray);
    font-size: 1vw;
    font-family: "Montserrat-Medium";
}

h3 {
    font-size: 2vw;
    color: var(--gray);
    font-weight: 600;
    line-height: 1;
}

i {
    font-size: 3vw;
    cursor: pointer;
}

footer i,
header i {
    font-size: 1vw;
}

header {
    position: relative;
    z-index: 2;
}


@media (max-width: 996px) {

    h1,
    h2 {
        font-size: 8vw;
    }

    p,
    ol,
    ul {
        font-size: 4vw;
    }

    i {
        font-size: 6vw;
    }

    footer i,
    header i {
        font-size: 6vw;
    }

    a {
        font-size: 4vw;
    }
}

.contact-line .language {
    display: flex;
    gap: 10px;
}

.contact-line .language span {
    color: white;
    font-size: 1.5vw;
}

.mobile-header {
    display: none;
}

.desktop-header {
    display: flex;
    position: relative;
    flex-direction: column;
}

.desktop-header .contact-line {
    background-color: var(--blue);
    display: flex;
    justify-content: space-around;
    padding: 0.5vw;
}

.desktop-header .contact-line a {
    color: white;
    display: flex;
    gap: 0.5vw;
    justify-content: center;
    align-items: center;
}

.desktop-header .contact-line a:hover {
    color: var(--dark-blue);
}

.desktop-header .contact-line .social_icons {
    display: flex;
    gap: 1vw;
    justify-content: center;
    align-items: center;
}

.desktop-header .contact-line .social_icons i {
    font-size: 1.2vw;
}

.desktop-header .second-line-header {
    display: flex;
    padding: 1vw;
    width: 100%;
    align-items: center;
    justify-content: space-around;
    background: white;
}

.desktop-header .second-line-header .buttons-header {
    border: 0.2vw solid var(--blue);
    border-radius: 1vw;
    cursor: pointer;
    display: grid;
}

.desktop-header .second-line-header .buttons-header::after {
    background-color: white;
}

.desktop-header .second-line-header .logo-header img {
    width: 10vw;
}

.desktop-header .second-line-header .header-nav .menu_items {
    display: flex;
    list-style: none;
    gap: 2vw;
    justify-content: center;
    align-items: center;
}

.desktop-header .second-line-header .header-nav .menu_items .item_active {
    position: relative;
}

.desktop-header .second-line-header .header-nav .menu_items .item_active a {
    color: var(--blue);
}

.desktop-header .second-line-header .header-nav .menu_items .menu_item {
    position: relative;
}

.desktop-header .second-line-header .header-nav .menu_items .menu_item:hover a {
    color: var(--blue);
}

.desktop-header .second-line-header .header-nav .menu_items .item_active::before {
    content: "";
    background-color: var(--blue);
    height: 0.2vw;
    border-radius: 1vw;
    position: absolute;
    width: 50%;
    left: 0;
    transition: all 0.4s;
    bottom: -0.5vw;
}

.desktop-header .second-line-header .header-nav ul a {
    color: var(--gray);
    font-family: "Montserrat-semiBold";
    margin-right: 1.5vw;
}

.desktop-header .second-line-header .header-nav .dropdown_list {
    position: relative;
}

.desktop-header .second-line-header .header-nav .dropdown_link {
    position: relative;
}

.desktop-header .second-line-header .header-nav .dropdown_list:hover .dropdown_content {
    display: flex;
}

.desktop-header .second-line-header .header-nav .dropdown_list:hover .dropdown_arrow {
    transform: rotate(-180deg);
}

.desktop-header .second-line-header .header-nav .dropdown_arrow {
    transition: 0.4s all;
}

.desktop-header .second-line-header .header-nav .dropdown_content {
    display: none;
    z-index: 99;
    position: absolute;
    top: 1.2vw;
    transition: 0.4s all;
    flex-direction: column;
    box-shadow: 3px 3px 3px 4px #00000040;
    list-style: none;
    width: 14vw;
    left: 0;
    background-color: white;
}

.desktop-header .second-line-header .header-nav .dropdown_content a {
    padding: 1vw;
    width: 100%;
    transition: 0.4s all;
}

.desktop-header .second-line-header .header-nav .dropdown_content a:hover {
    background-color: #b0b2b0;
}

.desktop-header .second-line-header .header-nav button {
    border: none;
    display: flex;
    gap: 0.5vw;
    justify-content: center;
    align-items: center;
    padding: 0;
    background-color: transparent;
}


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

    .mobile-header {
        display: flex;
        padding: 3vw;
        position: relative;
        width: 100%;
        background-color: white;
        z-index: 99;
        justify-content: center;
        align-items: center;
    }

    .mobile-header .back_drop {
        position: absolute;
        top: 0;
        left: 0;
        display: none;
        width: 100%;
        opacity: 0.4;
        height: 100vh;
        background-color: black;
    }


    .mobile-header .menu_btn {
        position: absolute;
        left: 10%;
        border: none;
        background-color: transparent;
        padding: 0;
        top: 50%;
        display: flex;
        flex-direction: column;
        gap: 1vw;
        cursor: pointer;
    }

    .mobile-header .menu_btn hr {
        width: 6vw;
        border-radius: 1vw;
        height: 0.7vw;
        background-color: var(--dark-blue);
        border: none;
    }

    .mobile-header .logo_ctn img {
        width: 40vw;
    }

    .mobile-header .side_menu {
        align-items: center;
        text-align: center;
        position: fixed;
        display: flex;
        z-index: 99;
        flex-direction: column;
        left: -150%;
        transition: 0.4s all;
        gap: 10vw;
        height: 100%;
        padding: 6vw;
        width: 70%;
        top: 0;
        background-color: white;
    }

    .mobile-header .side_menu a {
        color: var(--dark-blue);
    }

    .btn-close-side-menu {
        margin-left: -90%;
    }

    .mobile-header .close_side_menu {
        display: flex;
        justify-content: flex-start;
        align-items: start !important;
        background-color: transparent;
        border: none;
        padding: 0;
    }

    .mobile-header .close_btn {
        color: var(--dark-blue);
    }

    .mobile-header .side_menu .menu_items {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 3vw;
    }

    .mobile-header .side_menu .menu_items .dropdown_link {
        position: relative;
        display: flex;
        gap: 5vw;
        border: none;
        font-weight: 500;
        background-color: transparent;
        justify-content: flex-start;
        align-items: center;
        padding: 0;
    }

    .mobile-header .side_menu .menu_items .dropdown_arrow {
        font-size: 4vw;
        color: var(--blue);
    }

    .mobile-header .side_menu .service_items {
        position: fixed;
        display: flex;
        flex-direction: column;
        left: -150%;
        gap: 5vw;
        height: 100%;
        padding: 6vw;
        width: 70%;
        top: 0;
        transition: 0.4s all;
        background-color: white;
    }

    footer a {
        font-size: 3vw;
    }

    .mobile-header .side_menu .service_items .back_btn {
        border: none;
        width: fit-content;
        background-color: transparent;
        padding: 0;
        display: flex;
        justify-content: flex-start;
    }

    .mobile-header .side_menu .service_items .back_arrow {
        color: var(--blue);
        cursor: pointer;
    }

    .mobile-header .side_menu .service_items .back_arrow:target .service_items {
        left: -150%;
    }

    .mobile-header .side_menu .service_items a {
        color: black;
        font-weight: 500;
    }

    .mobile-header .side_menu .logo-header img {
        width: 40vw;
    }

    .mobile-header .side_menu .service_items ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 3vw;
    }

    .mobile-header .side_menu .links_side_menu {
        display: flex;
        flex-direction: column;
        gap: 3vw;
    }

    .mobile-header .side_menu .links_side_menu a {
        display: flex;
        align-items: center;
        gap: 2vw;
    }

    .mobile-header .side_menu .social_icons {
        display: flex;
        gap: 3vw;
        height: 100%;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .mobile-header .side_menu .social_icons i {
        font-size: 7vw;
    }
}

footer {
    display: flex;
    flex-direction: column;
}

footer a {
    color: white;
}

footer a:hover {
    color: var(--blue);
    transition: .25s;
}

.copyrights a {
    color: var(--gray);
}

.footer_ctn {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    background-color: var(--dark-blue);
    padding: 4vw 0vw;
    margin-top: -0.4vw;
}

.footer_ctn h2 {
    color: white;
    font-size: 2vw;
}

.footer_ctn .first_column {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.footer_ctn .logo_ctn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_ctn .logo_ctn img {
    width: 15vw;
}

.footer_ctn .social_icons_ctn {
    align-self: center;
    display: flex;
    gap: 1vw;
}

.footer_ctn .social_icons_ctn i {
    font-size: 1.5vw;
}

.footer_ctn .first_column .terms_conditions_ctn {
    display: flex;
    align-items: center;
    gap: 1vw;
    flex-direction: column;
}

.terms_conditions_ctn {
    background-color: var(--dark-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2%;
    gap: 1vw;
}

.terms_conditions_ctn p {
    color: white;
}

.footer_ctn .second_column {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.footer_ctn .second_column a {
    display: flex;
    gap: 0.5vw;
    align-items: center;
}


.footer_ctn .second_column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.footer_ctn .third_column {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.footer_ctn .third_column p{
    color: white;
}

.footer_ctn .third_column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.footer_ctn .four_column {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.footer_ctn .four_column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.footer_ctn .four_column ul p {
    color: rgb(0 0 0 / 44%);
}

.footer_ctn .five_column {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.footer_ctn .five_column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.copyrights {
    display: flex;
    padding: 0.5vw;
    justify-content: center;
    align-items: center;
    background: var(--blue);
    gap: 1vw;
}

.copyrights a {
    font-weight: 600;
    color: white;
}

.copyrights a:hover {
    color: var(--dark-blue);
}

.copyrights p {
    font-weight: 600;
    color: white;
}

@media (max-width: 996px) {

    footer a {
        font-size: 4vw;
    }

    .footer_ctn {
        grid-template-columns: 100%;
        justify-items: center;
        align-items: center;
        gap: 10vw;
    }

    footer .img-icon {
        width: 8vw;
    }

    .footer_ctn h2 {
        font-size: 5vw;
    }

    .footer_ctn .logo_ctn img {
        width: 40vw;
    }

    .footer_ctn .social_icons_ctn {
        gap: 5vw;
    }

    .footer_ctn .social_icons_ctn i {
        font-size: 6vw;
    }

    .footer_ctn .first_column {
        gap: 5vw;
    }

    .footer_ctn .first_column .terms_conditions_ctn a {
        font-size: 4vw;
    }

    .footer_ctn .second_column {
        align-items: center;
        gap: 5vw;
    }

    .footer_ctn .second_column ul {
        gap: 5vw;
    }

    .footer_ctn .second_column a {
        justify-content: center;
        gap: 5vw;
        align-items: center;
    }

    .footer_ctn .second_column i {
        font-size: 4vw;
    }

    .footer_ctn .third_column i {
        font-size: 4vw;
    }

    .footer_ctn .third_column {
        align-items: center;
        gap: 3vw;
    }

    .footer_ctn .third_column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2vw;
    }

    .footer_ctn .four_column {
        gap: 3vw;
    }

    .footer_ctn .four_column ul {
        gap: 2vw;
        align-items: center;
    }

    .footer_ctn .five_column {
        gap: 3vw;
    }

    .footer_ctn .five_column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2vw;
    }

    .copyrights {
        padding: 2vw;
        display: flex;
        gap: 3vw;
        flex-direction: column;
    }

    .copyrights p {
        display: none;
    }

    .copyrights a{
        font-size: 3vw;
    }
}


/*------Main-Section---------*/

.main_section .main_box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.main_section .title_box {
    position: relative;
    height: 20vw;
    display: flex;
    align-items: center;
}

.main_section h1 {
    color: white;
    font-size: 3vw;
    font-family: "Montserrat-Black";
}

.main_section a {
    bottom: 0;
    left: 50%;
    transform: translateY(50%);
}


.main_section {
    position: relative;
    background: black;
}

.main_section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .7;
}

header .navbar_active,
header .bar_box a:hover {
    color: var(--blue) !important;
}

.border-r {
    border-right: .2vw solid var(--gray);
}

.gallery {
    padding: 0;
    padding-bottom: 10%;
}

.gallery .main_gallery {
    display: grid;
    grid-template-columns: 50% 50%;
}

.main_gallery .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main_gallery .content h2 span {
    font-size: 5vw;
    color: var(--blue);
    font-family: "Montserrat-Black";
}

.main_gallery .content .btns-slider {
    margin-top: 10%;
    display: flex;
    gap: 1vw;
}

#next,
#prev {
    font-size: 2vw;
    color: var(--dark-blue);
    cursor: pointer;
}

.main_gallery .slider_gallery .slider .item {
    padding-right: .2%;
}

.slick-dots {
    text-align: center;
    font-size: 2vw;
    color: var(--dark-blue);
    cursor: pointer;
}

.slick-dots>li {
    display: inline-block;
    margin: 12px;
}

.slick-dots>.slick-active {
    color: var(--blue);
    font-size: 3vw;
    font-weight: bold;
}

.slick-slide img {
    display: flex;
    width: 100%;
    height: 20vw;
    object-fit: cover;
}

@media (max-width: 996px) {

    .main_section {
        height: 100vw;
        display: flex;
    }

    .container {
        grid-template-columns: 100%;
    }

    .gallery .main_gallery {
        grid-template-columns: 100%;
        gap: 10%;
    }

    .main_gallery .slider_gallery .slider .item {
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .slick-slide img {
        width: 60vw;
        height: 70vw;
    }

    #next,
    #prev {
        font-size: 8vw;
    }

    .slick-dots {
        font-size: 10vw;
    }

    .slick-dots>.slick-active {
        font-size: 12vw;
    }

    .main_info .title h2 {
        font-size: 4.5vw;
    }

    .main_gallery .content h2 span {
        font-size: 6vw;
    }
}

.btn {
    padding: 0.8em 1.8em;
    border: .2vw solid var(--blue);
    position: relative;
    overflow: hidden;
    text-align: center;
    text-transform: uppercase;
    transition: .25s;
    z-index: 1;
    font-family: inherit;
    border-radius: 1vw;
    width: 15vw;
    cursor: pointer;
    color: var(--dark-blue);
    font-family: "Montserrat-Black";
}

.btn::after {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--dark-blue);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 800ms ease-in-out;
    z-index: -1;
    width: 10%;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    border-top-right-radius: .5vw;
    border-bottom-right-radius: .5vw;
}

.btn::before {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 800ms ease-in-out;
    z-index: -1;
    width: 10%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-top-left-radius: .5vw;
    border-bottom-left-radius: .5vw;
}


.btn:hover::before {
    width: 100%;
}

.btn:hover::after {
    width: 100%;
}

.btn:hover {
    color: white !important;
}

.lear_more {
    width: 12vw;
}

.modal-grid {
    display: grid;
    grid-template-columns: 20% 60% 20%;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
}

.btn-modal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn-modal img {
    width: 3vw;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}


.modal-img{
    user-select: none;
}


.modal-content {
    margin: auto;
    display: flex;
    max-width: 100%;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    height: 40vw;
}


.close {
    color: var(--blue);
    float: right;
    font-size: 5vw;
    font-weight: bold;
    padding: 0 5%;
    cursor: pointer;
    position: absolute;
    right: 0;
}

.item:hover {
    filter: brightness(0.5);
    cursor: pointer;
}

.img-icon {
    width: 2vw;
    margin-left: -15%;
}

footer .img-icon{
    width: 3vw;
    margin-top: -25%;
    margin-left: -15%;
}

.st0 {
    fill: #ffffff;
}

.st0:hover {
    fill: var(--dark-blue);
}

.mobile-header .img-icon {
    width: 12vw;
    margin-top: -16%;
}

.mobile-header .st0 {
    fill: var(--dark-blue);
}

footer .st0:hover {
    fill: var(--blue);
}

@media (max-width: 996px) {

    .content-gallery img {
        width: 80vw;
    }

    .modal-grid {
        margin-top: 20%;
    }

    .modal-content {
        height: auto;
        margin-top: 20%;
    }

    .slick-dots {
        margin-bottom: 10%;
    }

    .btn {
        width: 60vw;
    }

    .close {
        font-size: 15vw;
    }

    footer .img-icon {
        width: 10vw;
    }
}