body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden !important;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

section {
    overflow: hidden !important;
}

.logo-wrapper {
    position: relative;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    padding: 25px 0;

    & .navigation {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);


        & li {
            margin: 0 10px;
        }

        & .drop-menu {
            border-radius: 15px;
            padding: 10px 20px;
            background-image: linear-gradient(100deg, #AC4372 10%, #8E7DC0 70%, #A5C3B7 100%);
            border: 1px solid #fff;
            opacity: 1;
            visibility: visible;
            position: absolute;
            width: 100%;
            top: 100%;

            /* &::before {
                content: "";
                position: absolute;
                width: 100%;
                height: 100%;
                top: 1px;
                left: 50%;
                transform: translateX(-50%);
                background-color: #FEFFD7;
                border-radius: 10%;
                box-shadow: 0px 0px 8px 2px #fff041;
                z-index: -1;
                opacity: 0;
                transition: all .35s ease;
            } */

            & li {
                padding: 10px 0;
                border-bottom: 1px solid #fff;

                & a {
                    color: #fff;
                    transition: all .35s ease;
                }

                &:hover {
                    & a {
                        font-weight: 600;
                    }
                }

                &:last-child {
                    border: none;
                }
            }
        }
    }

    & .logo {
        width: 140px;
        margin: auto;

        & img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}

.banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 180px 0 0px;
    position: relative;
    height: 1050px;
    display: flex;
    align-items: center;
    text-align: center;

    & .banner-content {
        & h3 {
            font-size: 2.25rem;
            margin-bottom: 10px;
            font-weight: 500;
            color: #fff;
            font-family: "Raleway", sans-serif;
            letter-spacing: 3px;
        }

        & h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #fff;
            font-family: "Raleway", sans-serif;
            font-weight: 100;
            letter-spacing: 1px;
        }

        & p {
            font-size: 1.7rem;
            margin: 0;
            color: #fff;
            font-weight: 400;
            font-family: "Raleway", sans-serif;
        }
    }
}

.bg-image {
    &.sty1 {
        /* position: absolute;
        right: 0;
        bottom: 0;
        width: 100%; */
        width: 40%;
        margin: auto;
        /* & img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            max-width: 100%;
        } */
    }
}

.gradient-btn {
    background-image: linear-gradient(50deg, #AC4372 30%, #8E7DC0 70%, #A5C3B7 100%);
    padding: 8px 30px 8px 50px;
    color: #fff;
    border-radius: 30px;
    font-size: 1rem;
    position: relative;
    border: 1px solid #F0BC9F;
    display: inline-block;
    transition: all .35s ease;

    &::before {
        content: "";
        position: absolute;
        width: 50%;
        height: 20px;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #FEFFD7;
        border-radius: 50%;
        box-shadow: 0px 0px 9px 4px #fff041;
        z-index: -1;
        opacity: 0;
        transition: all .35s ease;
    }

    & .short {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 13px;
    }
}


.dropdown:hover {
    & .gradient-btn {
        background-image: linear-gradient(100deg, #AC4372 10%, #8E7DC0 70%, #A5C3B7 100%);
        border-width: 1px;

        &::before {
            top: -3px;
            opacity: 1;
        }
    }

    & .drop-menu {
        /* opacity: 1;
        visibility: visible;
        display: block; */

        &::before {
            opacity: 1;
            visibility: visible;
        }
    }
}

.stripe {
    padding: 50px 0;
}

.stripe-1 {
    padding: 130px 0;
}

.top-heading {
    &.sty1 {
        text-align: center;
        padding-bottom: 50px;

        & h3 {
            font-size: 4rem;
            font-weight: 500;
            color: #000;
        }
    }
}

.image-center {
    & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.list-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 3.5rem;

    &.reverse {
        .list-wrap {
            &.sty1 {
                flex-direction: row-reverse;

                & .list-icon {
                    margin-left: 0;
                    margin-right: 20px;
                }

                & .list-content {
                    text-align: left;
                }
            }
        }
    }
}

.list-wrap {
    &.sty1 {
        display: flex;
        align-items: center;

        & .list-content {
            flex: 1;
            text-align: right;

            h4 {
                font-size: 1.4rem;
                font-family: "Raleway", sans-serif;
                font-weight: 700;
            }

            p {
                font-size: 1.2rem;
                margin: 0;
            }
        }

        & .list-icon {
            flex: 0 0 70px;
            max-width: 70px;
            margin-left: 20px;

            & img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }
    }
}

.bgc-blue {
    background-color: #EDF1F2;
}

.cl-darkRed {
    color: #843549;
}

.shape {
    position: absolute;
}

.position-1 {
    top: 10px;
    right: 10px;
    width: 20%;
    z-index: 0;
}

.fflex {
    display: flex;
    align-items: center;
}

.mid-banner {
    position: relative;
    text-align: center;

    & .section-content {
        & h3 {
            font-size: 3rem;
            line-height: 1.2;
        }

        & h4 {
            font-size: 1.25rem;
            line-height: 1.6;
            font-weight: 300;
        }

        & ul li {
            font-size: 1.25rem;
            line-height: 1.8;
            font-weight: 300;
        }

        & p {
            font-size: 1.4rem;
            line-height: 1.4;
            margin-top: 30px;
        }
    }

    & .section-img {
        position: relative;
        max-width: 40%;
        margin: auto;
    }

    &.arabic {
        & .list-style {
            &.sty2 {

                & li {
                    padding-left: 0;
                    padding-right: 25px;
                    position: relative;

                    & ::before {
                        content: "";
                        position: absolute;
                        width: 10px;
                        height: 10px;
                        background-color: #843549;
                        top: 50%;
                        transform: translateY(-50%);
                        right: 0;
                        left: inherit;
                        border-radius: 50%;
                    }
                }
            }
        }
    }
}

.app-detail-sec {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.list-style {
    &.sty1 {
        display: flex;
        align-items: center;
        flex-wrap: wrap;

        & li {
            flex: 0 0 calc(20% - 20px);
            max-width: calc(20% - 20px);
            margin: 0 10px;
        }
    }
}

.bottom-img {
    margin-top: 140px;
}

.footer {
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 75px;

    & .section-content {
        text-align: center;

        & .bg-text {
            display: inline-block;
            border: 2px solid #ba9584;
            border-radius: 15px;
            padding: 20px 100px;
            position: relative;

            & .shape {
                position: absolute;
                top: -25px;
                left: 50%;
                transform: translateX(-50%);
                z-index: 1;
            }

            & h4 {
                font-size: 4rem;
                color: #fff;
                line-height: 1;
                margin: 0;
            }
        }

        & p {
            font-size: 2.6rem;
            color: #fff;
            font-weight: 400;
            max-width: 70%;
            margin: auto;
            padding: 40px 0 40px;
        }

        & h5 {
            font-size: 2.4rem;
            color: #EBE3C2;
            font-weight: 500;
            margin-bottom: 12px;
        }

        & h6 {
            font-size: 1.5rem;
            color: #fff;
            font-weight: 400;
        }

        & .btn-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            padding-bottom: 40px;

            & a {
                width: 20%;
                margin: 0 8px;
                transition: all .35s ease;

                &:hover {
                    transform: scale(1.05);
                }
            }
        }
    }
}

.ru-page {
    .banner {
        padding: 200px 0 0px;
        height: auto;

        & .banner-content {
            padding-bottom: 70px;
        }
    }

    .footer {
        & .section-content {
            & .bg-text {
                & .shape {
                    top: -37px;
                }
            }
        }
    }
}

.ar-page {
    .banner {
        & .banner-content {
            & h3 {
                letter-spacing: 0px;
            }
        }
    }
}

@media (min-width: 1920px) {
    .banner {
        & .banner-content {
            & h2 {
                font-size: 3rem;
            }

            & h3 {
                font-size: 3rem;
            }
        }
    }
}

@media (max-width: 1600px) {

    header {
        & .logo {
            width: 100px;
        }
    }

    .banner {
        & .banner-content {
            & p {
                font-size: 1.2rem;
            }

            & h2 {
                font-size: 2rem;
            }
        }
    }

    /* .bg-image {
        &.sty1 {
            width: 80%;
        }
    } */

    .mid-banner {
        & .section-content {
            & p {
                font-size: 1.2rem;
            }

            & h3 {
                font-size: 2.5rem;
            }
        }
    }
}

@media (max-width: 1199px) {
    .banner {
        height: 750px;
    }

    .mid-banner {
        & .section-content {
            & h3 {
                font-size: 2.8rem;
            }

            & p {
                font-size: 1.5rem;
                margin-top: 20px;
            }
        }
    }

    .ru-page {
        .footer {
            & .section-content {
                & .bg-text {
                    & .shape {
                        top: -32px;
                    }
                }
            }
        }
    }
}

@media(max-width: 991px) {
    .stripe-1 {
        padding: 80px 0;
    }

    .banner {
        height: auto;
        padding: 150px 0 0px;
    }

    .bg-image {
        &.sty1 {
            width: 350px;
            position: relative;
            margin: auto;
        }
    }

    .image-center {
        width: 70%;
        margin: auto;
    }

    .top-heading {
        &.sty1 {
            & h3 {
                font-size: 2.5rem;
            }
        }
    }

    .list-wrapper {
        &.reverse {
            & .list-wrap {
                &.sty1 {
                    flex-direction: column-reverse;

                    & .list-content {
                        text-align: center;
                    }
                }
            }
        }
    }

    .list-wrap {
        &.sty1 {
            flex-direction: column-reverse;

            & .list-content {
                text-align: center;
                margin: 20px 0 30px;
            }
        }
    }

    .bottom-img {
        margin-top: 50px;
    }

    .mid-banner {
        & .section-img {
            width: 70%;
            margin: auto;
            max-width: 100%;
        }

        & .section-content {
            & h3 {
                font-size: 2.2rem;
            }

            & p {
                font-size: 1.2rem;
            }
        }
    }

    .footer {
        & .section-content {
            & .bg-text {
                padding: 15px 40px;

                & h4 {
                    font-size: 2.1rem;
                }

                & .shape {
                    top: -15px !important;
                }
            }

            & p {
                font-size: 1.5rem;
                max-width: 85%;
                padding: 20px 0 20px;
                line-height: 1.2;
            }

            & h5 {
                font-size: 1.6rem;
            }

            & .btn-wrap {
                & a {
                    width: 30%;
                }

                & h6 {
                    font-size: 0.9rem;
                }
            }
        }
    }

    .ru-page {
        .footer {
            & .section-content {
                & .bg-text {
                    & .shape {
                        top: -20px;
                    }
                }
            }
        }
    }
}

@media(max-width: 767px) {
    
    .image-center {
        width: 100%;
    }
    .mid-banner {
        & .section-img {
            width: 100%;
        }
    }
}

@media(max-width: 575px) {
    header {
        & .logo {
            width: 100px;
            margin-right: auto;
            margin-left: inherit;
        }
    }

    .mid-banner {
        & .section-content {
            & h3 {
                font-size: 1.9rem;
            }

            & p {
                font-size: 0.95rem;
            }
        }
    }

    .ru-page {
        .footer {
            & .section-content {
                & .bg-text {
                    & .shape {
                        top: -15px;
                    }
                }
            }
        }
    }
}

.global-sec {
    & h3 {
        margin-bottom: 20px;
    }

    & p {
        font-size: 1.2rem;
    }
}

.list-style {
    &.sty2 {
        & li {
            position: relative;
            padding-left: 25px;

            & ::before {
                content: "";
                position: absolute;
                width: 10px;
                height: 10px;
                background-color: #843549;
                top: 50%;
                transform: translateY(-50%);
                left: 0;
                border-radius: 50%;
            }
        }
    }
}