﻿@import url(/assets/css/base-style.css);
@import url(/assets/css/header.css);
@import url(/assets/css/footer.css);

/* =========================== Hero Section =========================== */

.content-body {
    padding-top: 0;
    margin-top: 0;
}

.hero-wrapper {
}

    .hero-wrapper .hero-main {
        background: url(/assets/images/home-hero.svg);
        background-position-x: center;
        background-position-y: center;
        background-repeat: no-repeat;
        background-size: cover;
        color: var(--text-white) !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: 100%;
        min-height: 450px;
        text-align: center;
        border-bottom-left-radius: 10rem;
        border-bottom-right-radius: 10rem;
        padding-bottom: 2rem;
    }

        .hero-wrapper .hero-main h1 {
            color: var(--primary-color);
            font-size: 5em;
            font-weight: 900;
            margin-bottom: 2rem;
        }

        .hero-wrapper .hero-main h2 {
            color: var(--primary-color);
            font-size: 2em;
            font-weight: 700;
        }

        .hero-wrapper .hero-main span {
            color: var(--text-color);
            font-size: 16px;
            font-weight: 500;
        }

    .hero-wrapper .hero-cards-wrapper {
        /*display: grid;*/
        /*grid-template-columns: repeat(3, 1fr);*/
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        margin-top: -100px;
    }

        .hero-wrapper .hero-cards-wrapper .hero-card {
            background-color: var(--bg-white);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 12px;
            width: 200px;
            height: 200px;
            border-radius: var(--border-radius-on-card);
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        }

            .hero-wrapper .hero-cards-wrapper .hero-card h2 {
                font-family: var(--font-family);
                font-size: 22px;
                font-weight: 800;
            }

            .hero-wrapper .hero-cards-wrapper .hero-card i:before {
                font-size: 70px !important;
            }

/* =========================== Ads Sliders =========================== */

.ads-slider-wrapper {
    margin-bottom: 2rem;
}


    .ads-slider-wrapper .show-all-data {
        position: relative;
        top: -10px;
    }

    .ads-slider-wrapper .section-header .title {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .ads-slider-wrapper .section-header h2 {
        font-size: 2em;
        font-weight: 900;
    }

        .ads-slider-wrapper .section-header h2 i {
            background: -webkit-linear-gradient(rgba(224, 50, 75, 1) 0%, rgba(224, 50, 75, 1) 20%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transform: rotate(-45deg);
            position: relative;
            top: 5px;
        }

            .ads-slider-wrapper .section-header h2 i::before {
                font-size: 3rem !important;
            }

    .ads-slider-wrapper .section-header h3 {
        font-size: 1em;
        color: var(--text-gray-color);
        font-weight: 500;
    }

.ads-slider-wrapper {
    margin-top: 1rem;
    padding: 0;
    position: relative;
}

    .ads-slider-wrapper .swiper {
        width: calc(100% - 150px);
        overflow: hidden;
        padding-left: 25px;
        padding-right: 0;
    }

    .ads-slider-wrapper .swiper-wrapper {
        padding: 0.7rem;
    }

    .ads-slider-wrapper .swiper-button-next,
    .ads-slider-wrapper .swiper-button-prev {
        background: var(--primary-color);
        color: var(--text-white) !important;
        align-items: center;
        padding: 25px;
        border-radius: var(--border-radius-navigations);
        top: 60%;
        transform: translateY(-50%);
        z-index: 10;
    }

        .ads-slider-wrapper .swiper-button-next::after,
        .ads-slider-wrapper .swiper-button-prev::after {
            font-size: 25px !important;
            font-weight: 700;
        }

/* =========================== Join Us =========================== */

.join-us-wrapper {
    background-color: var(--bg-white);
    background-size: 5px 5px;
    background-image: repeating-linear-gradient(45deg, #f6f6f6 0, #f6f6f6 0.5px, #ffffff 0, #ffffff 50%);
    margin-bottom: 2rem;
}

    .join-us-wrapper .desc-wrapper {
        padding: 5rem;
    }

        .join-us-wrapper .desc-wrapper .desc-inner {
            padding: 2rem;
        }

.ribbon {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.ribbon {
    --r: 0.8em;
    /* control the cutout */
    border-block: .5em solid #0000;
    padding-inline: calc(var(--r) + .25em) 1.5em;
    line-height: 1.8;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, var(--r) calc(100% - .25em), 0 50%, var(--r) .25em);
    background: radial-gradient(.2em 50% at right, #000a, #0000) border-box, var(--primary-color) padding-box;
    /* the color  */
    display: inline-block;
    width: fit-content;
}

/* =========================== Animations =========================== */

@keyframes blink-animation {
    50% {
        opacity: 0.0;
    }
}

/* =========================== Responsive =========================== */

@media (max-width: 575.98px) {

    .hero-wrapper .hero-cards-wrapper {
        gap: 20px !important;
    }

    .ads-slider-wrapper {
        margin-top: 2rem;
        margin-bottom: 1rem
    }

        .ads-slider-wrapper .section-header {
            margin-bottom: 0;
        }

        .ads-slider-wrapper .swiper {
            width: 100%;
            min-height: 250px;
        }


    .join-us-wrapper .container .row {
        flex-direction: column-reverse;
    }

    .join-us-wrapper h2, .join-us-wrapper h2 .ribbon {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-wrapper .hero-main {
        justify-content: flex-start;
        min-height: 250px;
        max-height: 250px;
        border-bottom-left-radius: 3rem;
        border-bottom-right-radius: 3rem;
        padding: 1rem 0.5rem 0 0.5rem;
        margin-bottom: 0;
    }

        .hero-wrapper .hero-main h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero-wrapper .hero-main h2 {
            font-size: 1.3rem;
        }

        .hero-wrapper .hero-main span {
            font-size: 13px;
        }

    .hero-wrapper .hero-cards-wrapper {
        justify-content: center;
        gap: 40px;
        margin-top: -62.5px;
    }

        .hero-wrapper .hero-cards-wrapper .hero-card {
            width: 125px;
            height: 125px;
        }

            .hero-wrapper .hero-cards-wrapper .hero-card i:before {
                font-size: 43px !important;
            }

            .hero-wrapper .hero-cards-wrapper .hero-card h2 {
                font-size: 15px;
            }
}

@media (min-width: 768px) and (max-width: 991.98px) {
}

@media (max-width: 991.98px) {
    .hero-wrapper .hero-cards-wrapper {
        justify-content: center;
        gap: 40px;
        margin-top: -75px;
    }

        .hero-wrapper .hero-cards-wrapper .hero-card {
            width: 150px;
            height: 150px;
        }

            .hero-wrapper .hero-cards-wrapper .hero-card i:before {
                font-size: 45px !important;
            }

            .hero-wrapper .hero-cards-wrapper .hero-card h2 {
                font-size: 15px;
            }

    .join-us-wrapper .desc-wrapper {
        padding: 0;
        padding-bottom: 1rem;
    }

        .join-us-wrapper .desc-wrapper .desc-inner {
            padding: 1rem 0;
        }
}

@media (max-width: 1199.98px) {
    .hero-wrapper .swiper {
        padding: 0;
    }
}

@media (max-width: 1399.98px) {
}
