/* Hero Section */
.hero {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(105.22deg, rgba(255, 255, 255, 0) 27.24%, rgba(200, 13, 20, 0.1) 100%), #F9F0F1;
    z-index: 0;

}

.hero::before {
    content: "";
    position: absolute;
    background-image: url(../img/hero-bg.png);
    background-position: bottom;
    bottom: 0;
    z-index: -1;
    background-repeat: repeat-x;
    opacity: .1;
    width: 100%;
    height: 170px;
}

.hero::after {
    content: "";
    position: absolute;
    background-image: url(../img/paper-aero.png);
    background-position: center;
    z-index: -1;
    background-repeat: no-repeat;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    width: 99px;
    height: 69px;
}

.hero-content {
    max-width: 495px;
}

.banner-date p,
.heading-span p {
    display: inline-block;
    background: linear-gradient(to bottom, #FFDFE0, #FFFFFF);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
    border: 1px solid #E7B7B9;
    display: inline-flex;
    align-items: center;

}

.banner-date p>img {
    margin-right: 5px;
}

.banner-date span {
    font-size: 13px;
    color: #4B4848;
    margin-bottom: 15px;
    display: inline-block;
    border-left: 1px solid #E0D8D9;
    padding-left: 10px;
}

.banner-date i {
    margin-right: 5px;
}

.hero h1 {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: clamp(40px, 3vw, 48px);
    line-height: 58px;
    color: black;
    letter-spacing: -0.05em;
    margin: 27px 0 43px;
}

.hero .buttons {
    gap: 22px;
}

.banner-content .buttons {
    margin-top: 51px;
}

.hero-content>p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}



/* Image */
.hero-image {
    width: 569px;
    height: auto;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-right {
    position: relative;
}

.hero-tags {
    background: #0f172a;
    padding: 21px 34px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
    margin-top: -6px;
}

.hero-tags p {
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;

}

.hero-tags p>img {
    margin-right: 10px;
}

.hero-tags p:not(:last-child) {
    border-right: 1px solid #505C60;
    padding-right: 42px;
}

/* impact-section */
.impact-section.heading-section h2 {
    margin-bottom: 40px;
}

.floating-card {
    gap: 32px;
    background-color: #F4F8FF;
    padding: 26px 58px 26px 26px;
    width: fit-content;
    margin-bottom: clamp(25px, 3vw, 56px) !important;
    align-items: center;
    border: 1px solid #DCDFE5;
    border-radius: 15px;
}

.floating-card p {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.03em;
    color: black;
    width: 257px;
}

.floating-card .card-img {
    width: 302px;
    height: 138px;
    margin: 0 auto;
}

.floating-card .card-img img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.heading-section {
    max-width: 448px;
}

.heading-section h2 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: clamp(27px, 3vw, 36px);
    line-height: 43px;
    color: black;
    margin: 10px 0 clamp(18px, 3vw, 28px);
    letter-spacing: -0.04em;

}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(421px, 1fr));
    column-gap: 30px;
    row-gap: 32px;
}

.card {
    border: 1px solid #F7E0E1;
    background-color: #FFF7F7;
    padding: 42px;
    border-radius: 15px;

}

.card .card-img {
    width: 58px;
    height: 47px;
    /* background-color: #FFDFE0;
    border-radius: 12px; */
}

.card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.card h3 {
    margin: 27px 0 24px;
}

.counter-box {
    background: linear-gradient(27deg, #8E1200 0%, #0E0000 75%, #713025 100%), #F9F0F1;
    margin-top: 40px;
    padding: clamp(35px, 3vw, 73px) 0;
    border-radius: 15px;
    position: relative;
    z-index: 0;

}

.counter-box img {
    height: 44px;
}

.counter-box .container {
    max-width: 980px;
}

.counter-box p {
    font-weight: 700;
    font-size: 36px;
    line-height: 24px;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 12px;

}

.counter-box span {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.01em;
    color: #E3CECC;
}

.counter-box>.flex {
    gap: 18px;
}

.counter-box>.container.flex.flex-between>div {
    gap: 20px;
}

.counter-box::after,
.agenda-at-glance::after {
    content: "";
    position: absolute;
    background-image: url(../img/counter-bg.png);
    background-position: bottom;
    top: -6px;
    z-index: -1;
    background-repeat: repeat;
    width: 100%;
    height: 100%;
}

.demographic-section {
    background-color: #FFEFEF;
}

.heading-section .btn {
    margin-top: 40px;
}

/* impact-section */
/* demographic section */
.demographic-section .heading-section h2 {
    max-width: 347px;
    margin-bottom: 28px;
}

.white-cards>.card {
    background-color: white;
    width: 284px;
    height: fit-content;
}

.demographic-section .text-content img {
    margin-top: 25px;
}

.white-cards {
    display: flex;
    gap: 20px;
}

.white-cards>.card:nth-child(even) {
    margin-top: 47px;
}

.white-cards .text-content h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: var(--primary);

}

.white-cards .text-content h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: black;
}

.white-cards .text-content p {
    font-size: 15px;
}

/* young entrepreneurs */
.young-entrepreneurs,
.transformation-section {
    background-color: #FFF8F8;
}

.young-entrepreneurs .cards {
    flex-direction: column;
    row-gap: 24px;
}

.young-entrepreneurs .cards>.card {
    background-color: #F2ECEC;
    max-width: 615px;
    width: 100%;
    border: 1px solid #DAD4D4;
    padding: 24px;
}

.young-entrepreneurs .cards>.card h4 {
    margin: 25px 0 20px;
}

.young-entrepreneurs .img-container {
    position: relative;
    gap: 40px;
    margin-top: 88px;

}

.young-entrepreneurs .img-container>.img-wrapper:first-child {
    width: 311px;
    height: 238px;
}

.young-entrepreneurs .img-container>.img-wrapper:nth-child(2) {
    width: 136px;
    height: 139px;
    margin-top: -33px;
}

.young-entrepreneurs .img-container>.img-wrapper:nth-child(3) {
    width: 274px;
    height: 224px;
    position: absolute;
    right: 0;
    bottom: -174px;
}

.young-entrepreneurs .img-container>.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.young-entrepreneurs .cards {
    margin-top: 120px;
}


/* young entrepreneurs */
/* transformation-section */
.transformation-section>.container {
    max-width: 1450px;
}

.transformation-section .heading-section h2 {
    max-width: 493px;
    padding-bottom: 28px;
    border-bottom: 1px solid #E5DFDF;
}

.transformation-section .heading-section {
    max-width: 653px;
}

.transformation-wrapper>div {
    width: 50%;
}

.transformation-wrapper video {
    width: 100%;
}

.transformation-section ol li {
    padding: 35px 0;
    list-style-position: inside;
    border-bottom: 1px solid #E5DFDF;
    font-size: 20px;
    width: 653px;
}

.transformation-section ol li>p {
    width: 567px;
}

.transformation-section ol li>p {
    font-size: 15px;
}

.transformation-section .video-container {
    background-color: #333232;
    padding: 0px 45px;
    border-radius: 15px;
    margin-top: 166px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.transformation-wrapper {
    gap: 30px;
}

.video-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.video-wrapper img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.video-container {
    position: relative;
    z-index: 0;
}


.control-btn {
    position: absolute;
    bottom: 7px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    gap: 20px;
}

/* Common button style */
.play-btn,
.sound-btn {
    /* background: rgba(0, 0, 0, 0.6); */
    background: none;
    border: none;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
}

/* Icon size */
.play-btn img,
.sound-btn img {
    width: 32px;
    height: 32px;
}

/* Hover effect */
.play-btn:hover,
.sound-btn:hover {
    background: rgba(110, 110, 110, 0.8);
}

/* transformation-section */
/* agenda-at-glance */
.agenda-at-glance {
    background-color: #4B0407;
    position: relative;
    z-index: 0;
}

.agenda-at-glance .container .agenda-hero {
    margin-left: calc(50% - 50VW);
}

.agenda-img {
    border-radius: 15px;
    object-fit: cover;
}


.agenda-img {
    width: 100%;
    height: 100%;
}

.agenda-at-glance h2 {
    color: white;
}

.agenda-at-glance .heading-section {
    max-width: 493px;
}

.agenda-at-glance .container>.flex {
    gap: 80px;
}

.agenda-at-glance .container {
    position: relative;
}

.agenda-at-glance .content {
    position: absolute;
    bottom: 50px;
}

/* Each row */
.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: clamp(20px, 3vw, 40px) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Left side */
.left {
    padding-right: 40px;
}

.row span {
    display: inline-block;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 5px;
    background: #FFDFE010;
    margin-bottom: 10px;
    color: #DFD1D2;
    border: 1px solid #ffffff20;
}

.row p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.left h2 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
}

/* Right side */
.right {
    padding-left: 40px;
    /* border-left: 1px solid rgba(255, 255, 255, 0.15); */
}

.right h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
    color: white;
}

.right ul {
    list-style: none;
}

.right li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}




.agenda-hero {
    position: relative;
    width: 100%;
    /* height: 500px;  */
    overflow: hidden;
    border-radius: 8px;
}


.agenda-hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}


.agenda-hero .overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.1)); */
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 68.27%);
    border-radius: 8px;
}

.agenda-at-glance .schedule {
    width: 100%;
}

.agenda-hero .content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;

}

/* speakers section */
.speakers-section .secure-spot {
    background-color: #E5E5E5;
    border-radius: 15px;
    padding: 20px 27px;
}

.speakers-section .four-grid {
    gap: 30px;
}

.speakers-section .card h2 {

    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;


}

.speakers-section .card {
    border: 1px solid #DBDBDB;
    background-color: #F3F3F3;
    padding: 24px;
    border-radius: 15px;
}

.speakers-section .card p {
    color: #555;
    font-size: 15px;
}

.speakers-section .card .card-img {
    width: 241px;
    height: 233px;

}

.speakers-section .card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;

}

.speakers-section .intro {
    margin-top: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DBDBDB;
}

.speakers-section .social-media {
    margin-top: 18px;
}

.speakers-section .social-media a {
    display: inline-flex;
    gap: 20px;
}

.speakers-section .social-media a i {
    font-size: 20px;
}

/* speaker section */
/* partners */
.partners-section .heading-section {
    max-width: 520px;
}

.partners-section .box {
    background-color: #F9F8F8;
    padding: 27px 16px;
    border: 1px solid #E5E4E4;
    border-radius: 11px;
}

.partners-section .box>div {
    min-width: 94px;
    min-height: 56px;
    margin: 0 auto;
    width: 100%;
    height: auto;
}

.partners-section .box>div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.partners-section .six-grid {
    gap: 16px;
    margin: 50px 0;
}

.join-today-box {
    background: linear-gradient(27deg, #8E1200 0%, #0E0000 75%, #713025 100%), #F9F0F1;
}

.join-today-box .buttons {
    margin: clamp(25px, 3vw, 50px) 0 0;
    gap: 30px;
}

.join-today-box {
    position: relative;
    z-index: 0;
    border-radius: 25px;
    padding: clamp(40px, 5vw, 100px) 10px;

}

.join-today-box::after {
    content: "";
    position: absolute;
    background-image: url(../img/hive-bg.png);
    background-position: bottom;
    top: 0px;
    left: 0;
    z-index: -1;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    opacity: .2;
}

.join-today-box h2,
.join-today-box p {
    color: white;
}

/* Responsive */
@media (max-width:1180px) {

    .young-entrepreneurs>div>.flex,
    .demographic-section>.flex,
    .transformation-section>div>.flex {
        flex-direction: column;
        row-gap: 30px;
    }

    .heading-section,
    .demographic-section .heading-section h2,
    .transformation-section .heading-section h2,
    .transformation-section .heading-section,
    .agenda-at-glance .heading-section {

        max-width: 100%;
    }

    .transformation-section ol li>p,
    .transformation-section ol li,
    .transformation-wrapper>div {
        width: 100%;
    }

    .white-cards>.card:nth-child(even) {
        margin-top: 0;
    }

    /* .control-btn {
        bottom: 0px;
    } */

    .transformation-section .video-container {
        margin-top: 20px;
    }

    .young-entrepreneurs .img-container>.img-wrapper:nth-child(3) {
        position: unset;
    }

    .young-entrepreneurs .img-container>.img-wrapper:first-child,
    .young-entrepreneurs .img-container>.img-wrapper:nth-child(2),
    .young-entrepreneurs .img-container>.img-wrapper:nth-child(3) {
        width: 100%;
        height: 100%;
    }

    .young-entrepreneurs .img-container>.img-wrapper:nth-child(2) {
        margin-top: 0;
    }

    .young-entrepreneurs .cards {
        margin-top: 40px;
    }

    .young-entrepreneurs .img-container {
        position: relative;
        gap: 20px;
        margin-top: 40px;
    }

    .agenda-at-glance .container>.flex {
        flex-wrap: wrap;
    }

    .transformation-section .video-container {
        padding: 63px 45px;
    }

    .agenda-at-glance .container .agenda-hero {
        margin: 0;
        padding: 0;
    }

    .agenda-at-glance {
        padding: clamp(40px, 5vw, 90px) 0;
    }

}

@media (max-width:1080px) {
    .hero>.container {
        flex-direction: column;
        row-gap: 50px;

    }

    .hero::after {
        display: none;
    }


    .agenda-hero img {

        border-radius: 8px;
    }

    .agenda-at-glance .content {
        position: unset;
        margin: 30px 0 0;
    }

    .agenda-at-glance .container>.flex {
        gap: 20px;
    }

    .hero-image {
        width: 100%;
    }

    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 980px) {
    .counter-box>.flex {
        flex-wrap: wrap;
        row-gap: 30px;
        justify-content: space-around;
    }

    .cards {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }


}

@media (max-width: 880px) {
    .speakers-section .secure-spot {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 768px) {

    /* .row {
        grid-template-columns: 1fr;
    } */
    .agenda-at-glance .container>.flex {
        gap: 25px;
    }

    .agenda-at-glance .content {
        position: unset;
    }

    .floating-card {
        gap: 20px;
        padding: 26px 26px 26px 26px;
    }

    .right {
        border-left: none;
        padding-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 680px) {
    .floating-card {

        flex-wrap: wrap;
    }

    .white-cards>.card {
        width: 100%;
    }

    footer .quick-links {
        flex-wrap: wrap;
    }

    .floating-card p {
        width: 100%;
    }

    .four-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
        gap: 15px;
    }

    header .schedule-btn>a.btn {
        display: none;
    }

    .off-canvas .schedule-btn>a.btn {
        display: block;
        padding-left: 10px;
    }
}


@media (max-width: 520px) {
    .hero-tags {
        flex-wrap: wrap;
        /* padding: 16px 20px; */
    }

    .hero-tags p:not(:last-child) {

        padding-right: 21px;
    }

    .white-cards,
    .young-entrepreneurs .img-container {
        flex-wrap: wrap;
    }

    .cards,
    .four-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {
    .row {
        grid-template-columns: 1fr;
    }
}