/* ==========================================================
   IMPORT FONT
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================
   GLOBAL
========================================================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background: #021247;
    overflow-x: hidden;
}

/* ==========================================================
   HERO SECTION
========================================================== */

.speakers-hero {
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    overflow: hidden;
    background: #021247;
}

/* ==========================================================
   BACKGROUND IMAGE
========================================================== */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            rgba(1, 10, 45, 0.88),
            rgba(1, 10, 45, 0.88)
        ),
        url('../images/bg.jpg');

    background-size: cover;
    background-position: center;
}

.hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            135deg,
            rgba(255,255,255,.03),
            rgba(255,255,255,.03) 12px,
            transparent 12px,
            transparent 24px
        );
}

/* ==========================================================
   SWIPER
========================================================== */

.speakerSwiper {
    position: relative;
    z-index: 5;
    overflow: visible;
}

.speakerSwiper .swiper-slide {
    opacity: .35;
    transform: scale(.82);
    transition: all .5s ease;
}

.speakerSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================
   CARD
========================================================== */

.speaker-slide-card {
    position: relative;
    display: flex;
    align-items: center;

    min-height: 650px;
    border-radius: 35px;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #00176c 0%,
            #000d45 100%
        );

    box-shadow:
        0 30px 80px rgba(0,0,0,.45);

    padding: 80px;
}

/* Decorative Shape */

.speaker-slide-card::before {
    content: "";

    position: absolute;
    right: -180px;
    top: -150px;

    width: 650px;
    height: 900px;

    background:
        linear-gradient(
            to bottom,
            rgba(45,94,255,.75),
            transparent
        );

    transform: rotate(20deg);
}

/* ==========================================================
   CONTENT
========================================================== */

.speaker-left {
    width: 48%;
    position: relative;
    z-index: 2;
}

.speaker-tag {
    display: inline-block;
    color: rgba(255,255,255,.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    font-weight: 600;
}

.speaker-tag::after {
    content: "";
    display: inline-block;
    width: 140px;
    height: 2px;
    background: rgba(255,255,255,.4);
    margin-left: 20px;
    vertical-align: middle;
}

.speaker-title {
    color: #fff;
    font-size: 4.3rem;
    line-height: 1.05;
    font-weight: 800;
    margin: 45px 0;
}

.speaker-job {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.speaker-org {
    color: rgba(255,255,255,.65);
    font-size: 1.15rem;
    line-height: 1.7;
}

/* ==========================================================
   IMAGE
========================================================== */

.speaker-right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    height: 100%;
    z-index: 2;
}

.speaker-image,
.speaker-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;

    filter:
        grayscale(100%)
        contrast(1.1);
}

/* ==========================================================
   QUOTE SYMBOL
========================================================== */

.speaker-slide-card::after {
    content: "❞";
    position: absolute;
    top: 140px;
    left: 45%;

    font-size: 12rem;
    color: rgba(40, 82, 255, .55);

    font-weight: 700;
    line-height: 1;
}

/* ==========================================================
   ARROWS
========================================================== */

.swiper-button-prev,
.swiper-button-next {
    width: 85px !important;
    height: 85px !important;
    border-radius: 50%;

    background:
        rgba(255,255,255,.06);

    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.15);

    transition: all .35s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #e61f5b;
    transform: scale(1.08);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    color: #fff;
    font-size: 24px !important;
}

/* ==========================================================
   PAGINATION
========================================================== */

.swiper-pagination {
    margin-top: 50px;
    position: relative !important;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #fff;
    opacity: .4;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ff2d72;
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1200px) {

    .speaker-slide-card {
        min-height: 550px;
        padding: 60px;
    }

    .speaker-title {
        font-size: 3rem;
    }

    .speaker-job {
        font-size: 1.4rem;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 991px) {

    .speakers-hero {
        padding: 70px 20px;
    }

    .speaker-slide-card {
        flex-direction: column;
        min-height: auto;
        padding: 50px 30px;
    }

    .speaker-left {
        width: 100%;
    }

    .speaker-right {
        position: relative;
        width: 100%;
        height: 350px;
        margin-top: 40px;
    }

    .speaker-title {
        font-size: 2.4rem;
        margin: 35px 0;
    }

    .speaker-job {
        font-size: 1.2rem;
    }

    .speaker-org {
        font-size: 1rem;
    }

    .speaker-slide-card::after {
        display: none;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 60px !important;
        height: 60px !important;
    }
}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 576px) {

    .speaker-slide-card {
        padding: 35px 25px;
        border-radius: 25px;
    }

    .speaker-title {
        font-size: 2rem;
    }

    .speaker-tag::after {
        width: 60px;
    }

    .speaker-right {
        height: 280px;
    }
}