@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap');

:root {
    --bg: #19B9C9;
    --cl: #1A1E1E;
    --ff: #fff;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    outline: 0;
    border: none;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: "Alexandria", sans-serif;
}

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--cl);
}

::-webkit-scrollbar-thumb {
    background: var(--bg);
    border-radius: 20px;
}

img,
video {
    width: 100%;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

body {
    overflow-x: hidden;
    max-width: 1280px;
    margin: auto;
}

.section {
    max-width: 1055px;
    width: 90%;
    margin: auto;
}

.slick-next,
.slick-prev,
.slick-next:before,
.slick-prev:before {
    color: var(--ff) !important;
    opacity: 1 !important;

    &:hover {
        opacity: 0.7 !important;
    }
}

.button {
    background: #19B9C9;
    width: fit-content;
    color: var(--ff);
    padding: 15px 40px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 10px;
    font-weight: 458;
    line-height: 12.19px;
    text-align: center;

    @media (max-width:768px) {
        padding: 10px 30px;
    }


    &:hover {
        opacity: 0.7;
    }

    &:disabled {
        background: #f00;
        opacity: 0.7;
    }
}

/* /////////////404////////////// */
.section_404 {
    padding: 57px 0;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;

    .error {
        font-size: 100px;
        color: #111;
        text-shadow:
            1px 1px 1px var(--bg),
            2px 2px 1px var(--bg),
            3px 3px 1px var(--bg),
            4px 4px 1px var(--bg),
            5px 5px 1px var(--bg),
            6px 6px 1px var(--bg),
            7px 7px 1px var(--bg),
            8px 8px 1px var(--bg),
            25px 25px 8px rgba(0, 0, 0, 0.2);
    }

    .page {
        margin: 2rem 0;
        font-weight: bold;
        color: var(--cl);
        display: flex;
        flex-direction: column;
        gap: 10px;
        font-size: 25px;
    }

    .back-home {
        display: inline-block;
        border: 2px solid var(--bg);
        color: var(--ff);
        text-transform: uppercase;
        font-weight: 600;
        padding: 0.75rem 1rem 0.6rem;
        transition: all 0.2s linear;
        box-shadow: 0 15px 15px -11px rgba(0, 0, 0, 0.4);
        background: var(--cl);
        border-radius: 6px;

        &:hover {
            opacity: 0.7;
        }
    }

}

/* /////////////404////////////// */
/* //////nav//////// */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 78px;
    direction: ltr;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    transition: all 0.4s ease-in-out;

    @media (max-width:768px) {
        margin-top: 0;
        padding: 20px;
    }

    img.logo {
        width: 109px;

        @media (max-width:768px) {
            width: 70px;
        }
    }

    input#menu {
        position: fixed;
        left: -100%;
    }

    input#menu:checked~ul {
        right: -25px;
    }

    .menu,
    .close {
        display: none;
        width: 25px;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;

        span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--ff);
        }

        @media (max-width:768px) {
            display: flex;
        }
    }


    .close {
        position: relative;
        top: -30px;

        span:nth-child(1) {
            transform: rotate(45deg);
            position: absolute;
        }

        span:nth-child(2) {
            transform: rotate(-45deg);
            position: absolute;
        }
    }

    ul {
        display: flex;
        gap: 30px;

        @media (max-width:768px) {
            flex-direction: column;
            position: fixed;
            top: 0;
            right: -100%;
            background: var(--cl);
            width: 250px;
            height: 100vh;
            padding: 50px 10px 10px 10px;
            border-left: 5px solid var(--bg);
            overflow: hidden;
            overflow-y: auto;
            transition: all 0.5s ease-in-out;
        }

        li.lang {
            button {
                background: var(--bg);
                padding: 5px;
                border-radius: 5px;
                color: var(--ff);
                text-transform: uppercase;
                font-size: 12px;
                font-weight: 700;
                line-height: 14.63px;
                transition: all 0.5s ease-in-out;
                cursor: pointer;

                &:hover {
                    opacity: 0.7;
                }
            }
        }

        a {
            color: var(--ff);
            text-transform: uppercase;
            position: relative;
            font-size: 12px;
            font-weight: 700;
            line-height: 14.63px;
            transition: all 0.5s ease-in-out;

            &:hover {
                opacity: 0.7;
            }

        }

        a.active {
            color: var(--bg);

            &::after {
                content: "";
                position: absolute;
                top: -50%;
                left: 50%;
                transform: translateX(-50%);
                width: 0;
                height: 0;
                border-left: 3px solid transparent;
                border-right: 3px solid transparent;
                border-top: 6px solid var(--bg);

            }
        }
    }
}

@media (max-width:768px) {
    .nav.section.scroll {
        width: 100%;
    }

    .nav a.active::after {
        top: 50% !important;
        left: -5px !important;
        transform: translate(-50%, -50%) rotate(-90deg) !important;
    }
}

.nav.scroll {
    margin-top: 0;
    background: var(--cl);
    padding: 20px 10%;
    max-width: 1280px;
    width: 100%;
}

.nav.pathname {
    position: sticky !important;
    margin-top: 0 !important;
    left: 0 !important;
    transform: none !important;
    background: var(--cl);
    padding: 20px 10%;
    max-width: 1280px;
    width: 100%;
}

/* //////nav//////// */


/* //////header//////// */
.header {
    width: 100%;
    height: 100vh;
    max-height: 710px;
    position: relative;
    overflow: hidden;
    direction: ltr;


    .text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        gap: 16px;
        color: var(--ff);
        z-index: 2;

        .top {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--bg);

            .left {
                font-size: 90px;
                font-weight: 700;
                line-height: 109.71px;

                @media (max-width:768px) {
                    font-size: 60px;
                    line-height: 80px;
                }
            }

            .right {
                font-size: 40px;
                font-weight: 700;
                line-height: 48.76px;

                @media (max-width:768px) {
                    font-size: 30px;
                    line-height: 35px;
                }
            }
        }

        .bottom {
            max-width: 465px;

            p {
                font-size: 15px;
                font-weight: 300;
                line-height: 27px;
                text-align: justified;

                @media (max-width:768px) {
                    font-size: 11px;
                    line-height: 15px;
                }
            }
        }
    }


    .slider {
        height: 100%;
        max-height: 710px;

        .slick-list {
            height: 100%;
        }

        .slick-track {
            height: 100%;
        }

        .div_slider {
            height: 100%;
            max-height: 710px;
            position: relative;

            &::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 1;
                background: #1a1e1e59;
            }

            img {
                height: 100%;
                max-height: 710px;
                object-fit: cover;
            }
        }

    }


    .custom-arrows {
        position: absolute;
        right: 130px;
        bottom: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;

        @media (max-width:768px) {
            right: 20px;
            bottom: 20px;
        }

        .slick-dots,
        .slick-next,
        .slick-prev {
            position: initial;
            line-height: 0;
            display: flex;
            align-items: center;
            gap: 20px;
            transform: none;
        }

        .slick-prev:before {
            content: '⯇' !important;
        }

        .slick-next:before {
            content: '⯈' !important;
        }

        .slick-dots li button {
            display: inline-block;
            width: 7.79px;
            height: 7.79px;
            background: var(--ff);
            border-radius: 50%;
            padding: 0;
        }

        .slick-dots li {
            margin: 0;
            width: fit-content;
            height: fit-content;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slick-active button {
            width: 11px !important;
            height: 11px !important;
            background: var(--bg) !important;

        }

        .slick-dots li button:before {
            display: none;
        }

    }


}

/* //////services//////// */
.services {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 57px auto;

    .img_services {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;

        &::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            width: 100%;
            height: 100%;
            background: #1A1E1EE5;
        }

        img {
            height: 100%;
            object-fit: cover;
        }
    }

    .div_services {
        padding: 60px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;

        .top {
            display: flex;
            flex-direction: column;
            gap: 13px;
            max-width: 807px;
            color: var(--ff);

            h2 {
                font-size: 40px;
                font-weight: 700;
                line-height: 48.76px;
                color: var(--bg);
                text-transform: uppercase;
            }

            p {
                font-size: 15px;
                font-weight: 300;
                line-height: 27px;
                text-align: justify;
            }
        }

        .bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            color: var(--ff);

            @media (max-width:768px) {
                justify-content: center;
            }

            .items {
                max-width: 280px;
                border: 1px solid var(--bg);
                padding: 11px 14px;
                display: flex;
                flex-direction: column;
                min-width: 280px;
                text-align: left;
                gap: 17px;

                .item {
                    display: flex;
                    flex-direction: column;
                    gap: 17px;

                    img {
                        width: 82px;
                    }

                }
            }
        }
    }
}

/* //////services//////// */


/* //////contact//////// */
.contact {
    padding: 40px 0;

    .section {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .top {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 704px;

        h2 {
            font-size: 40px;
            font-weight: 700;
            line-height: 48.76px;
            color: var(--bg);
            text-transform: uppercase;
        }

        p {
            font-size: 15px;
            font-weight: 300;
            line-height: 27px;
            text-align: justify;
        }
    }

    .bottom {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        min-height: 488px;
        height: 100%;

        .left {
            width: 100%;
            max-width: 271px;
            height: 488px;

            @media (max-width:768px) {
                max-width: 100%;
                height: 200px;
            }

            img {
                height: 100%;
                object-fit: cover;
            }
        }

        form.form_right {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 24px;
            width: 100%;
            max-width: 700px;

            .full_name {
                display: flex;
                justify-content: space-between;
                gap: 36px;
                flex-wrap: wrap;

                label {
                    flex: 1;
                    min-width: 280px;
                }
            }

            .button {
                width: 100%;
                font-size: 20px;
                font-weight: 500;
                line-height: 30px;
            }
        }

        label {
            display: flex;
            flex-direction: column;
            gap: 10px;
            font-size: 16px;
            font-weight: 500;
            line-height: 24px;
            text-transform: capitalize;
            width: 100%;
        }

        input,
        textarea {
            padding: 12px 16px 12px 16px;
            border: 1px solid #E0E0E0;
            border-radius: 8px;
            box-shadow: 0px 1px 2px 0px #0000000D;
        }

        textarea {
            resize: none;
            height: 162px;
        }
    }
}

/* //////contact//////// */
/* //////footer//////// */
footer {
    background: #454545;

    .section {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        padding: 40px 0;
        justify-content: space-between;
        align-items: center;

        .continent {
            flex: 1;
            min-width: 178px;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 35px;

            @media (max-width:768px) {
                align-items: center;
            }

            &>img {
                max-width: 178px;
            }

            .social_media {
                display: flex;
                gap: 16px;

                a {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 24px;
                }
            }
        }

        .all_continent {
            flex: 1;
            width: 100%;
            min-width: 280px;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;

            .continent {
                flex: 1;
                min-width: 178px;
                width: 100%;
                display: flex;
                flex-direction: column;
                gap: 24px;
                align-items: center;
                color: var(--ff);

                .a_all_continent {
                    width: 100%;
                    display: flex;
                    justify-content: space-between;
                    gap: 20px;
                    flex-wrap: wrap;

                    @media (max-width:768px) {
                        justify-content: center;
                    }
                }

                h2 {
                    font-size: 16px;
                    font-weight: 500;
                    line-height: 24px;
                    color: var(--bg);
                }

                label {
                    display: flex;
                    flex-direction: column;
                    font-size: 12px;

                    a {
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 24px;
                        color: var(--ff);
                    }
                }

            }
        }
    }
}

/* //////footer//////// */

/* //////copyright//////// */
.copyright {
    background: var(--bg);
    text-align: center;
    padding: 10px 0;
    color: var(--ff);

    @media (max-width:768px) {
        font-size: 11px;
    }

    a {
        color: var(--cl);

        &:hover {
            opacity: 0.7;
        }
    }
}

/* //////copyright//////// */