@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&family=Gasoek+One&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Elms Sans", sans-serif;
}

/* navbar */

.nav {
    width: 100%;
    height: 80px;
}

.navwrap,
.hero {
    position: relative;
    z-index: 2;
}


.navwrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(0, 0, 0, .88);
    backdrop-filter: blur(12px);
    z-index: 9999;
}

.main-nav {
    width: min(1400px, 92%);
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: clamp(140px, 15vw, 190px);
}

.logo img {
    width: 100%;
    display: block;
}

.sections {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pages {
    height: 80px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .35s;
}

/* Hover effect for all navbar items except Donation */

.pages:not(.donation):hover {
    background: #d83529;
}

.pages:not(.donation):hover span {
    color: #fff;
}

.pages span {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.pages.active {
    background: #d83529;
}

.pages.active span {
    color: #fff;
}

.donation button {
    border: none;
    background: #e53935;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
    transition: .35s;
}

.donation button:hover {
    background: #ff5a4f;
    transform: translateY(-2px);
}


.menu-btn {
    display: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

@media(max-width:992px) {

    .menu-btn {
        display: block;
    }

    .sections {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: #111;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        transition: .4s;
        padding-top: 20px;
    }

    .sections.active {
        right: 0;
    }

    .pages {
        height: 60px;
        justify-content: flex-start;
        padding-left: 30px;
    }

    .donation {
        padding: 20px 30px;
    }

    .donation button {
        width: 100%;
    }

}


@media(max-width:480px) {

    .sections {
        width: 100%;
    }

    .logo {
        width: 140px;
    }

    .herowrap h3 {
        line-height: 1.1;
    }

    .sub p {
        padding: 18px;
    }

}

















/*=========================================
            BLOG HERO
=========================================*/

.blog-hero {

    width: 100%;
    height: 100vh;

    background: url("../images/blog-banner.jpg") center center/cover no-repeat;

    position: relative;

    display: flex;
    overflow: hidden;
    align-items: center;

}

.hero-video {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;

}


.hero-overlay {

    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            rgba(0, 0, 0, .72) 15%,
            rgba(0, 0, 0, .45) 55%,
            rgba(0, 0, 0, .15) 100%);

}

.hero-content {

    width: 80%;
    max-width: 1400px;

    margin: auto;

    position: relative;
    z-index: 2;

    color: #fff;

}

.hero-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(10px);

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 2px;

    margin-bottom: 28px;

}

.hero-content h1 {

    font-size: 70px;

    line-height: 1.1;

    font-weight: 700;

    margin-bottom: 28px;

}

.hero-content p {

    width: 45%;

    font-size: 18px;

    line-height: 1.9;

    color: #ececec;

    margin-bottom: 40px;

}

.hero-buttons {

    display: flex;

    gap: 18px;

}

.primary-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 16px 34px;

    border-radius: 50px;

    background: #2563eb;

    color: #fff;

    text-decoration: none;

    transition: .35s;

}

.primary-btn:hover {

    transform: translateY(-5px);

    background: #1d4ed8;

}

.secondary-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 16px 34px;

    border-radius: 50px;

    border: 1px solid rgba(255, 255, 255, .5);

    color: #fff;

    text-decoration: none;

    transition: .35s;

}

.secondary-btn:hover {

    background: #fff;

    color: #111;

}

/*=========================================
        SCROLL ARROW
=========================================*/

/* .scroll-indicator {

    position: absolute;

    left: 50%;
    bottom: 35px;

    transform: translateX(-50%);

    z-index: 5;

    cursor: pointer;

    animation: floatArrow 2s ease-in-out infinite;

}

.scroll-indicator i {

    font-size: 30px;

    color: #fff;

    transition: .3s;

}

.scroll-indicator:hover i {

    transform: translateY(4px);

    color: #60a5fa;

} */

@keyframes floatArrow {

    0% {

        transform: translateX(-50%) translateY(0);

        opacity: .7;

    }

    50% {

        transform: translateX(-50%) translateY(12px);

        opacity: 1;

    }

    100% {

        transform: translateX(-50%) translateY(0);

        opacity: .7;

    }

}

/*=========================================
            LAPTOP
=========================================*/

@media(max-width:1200px) {

    .hero-content {

        width: 85%;

    }

    .hero-content h1 {

        font-size: 58px;

    }

    .hero-content p {

        width: 60%;

        font-size: 17px;

    }

}


/*=========================================
            TABLET
=========================================*/

@media(max-width:992px) {

    .blog-hero {

        height: 90vh;

    }

    .hero-content {

        width: 88%;

    }

    .hero-content h1 {

        font-size: 48px;

    }

    .hero-content p {

        width: 80%;

        font-size: 16px;

    }

}


/*=========================================
            MOBILE
=========================================*/

@media(max-width:768px) {

    .blog-hero {

        height: 85vh;

        text-align: center;

    }

    .hero-content {

        width: 90%;

    }

    .hero-content h1 {

        font-size: 38px;

    }

    .hero-content p {

        width: 100%;

        font-size: 15px;

    }

    .hero-buttons {

        justify-content: center;

        flex-wrap: wrap;

    }

}


/*=========================================
            SMALL PHONE
=========================================*/

@media(max-width:480px) {

    .hero-tag {

        font-size: 12px;

        padding: 8px 18px;

    }

    .hero-content h1 {

        font-size: 32px;

    }

    .hero-content p {

        font-size: 14px;

        line-height: 1.8;

    }

    .primary-btn,
    .secondary-btn {

        width: 100%;

        padding: 14px;

        font-size: 15px;

    }

    .hero-buttons {

        gap: 12px;

    }

}


/*=========================================
            VERY SMALL
=========================================*/

@media(max-width:360px) {

    .hero-content h1 {

        font-size: 28px;

    }

    .hero-content p {

        font-size: 13px;

    }

}








/* section-1 */
/*=========================================
        FEATURED STORY
=========================================*/

.featured-story {

    padding: 100px 0;

    background: #fff;

}

.featured-story .container {

    width: 80%;
    max-width: 1400px;
    margin: auto;

}

.story-wrapper {

    display: grid;
    grid-template-columns: 48% 52%;

    align-items: center;

    gap: 14vh;

}

.story-image {

    position: relative;

}

.story-image img {

    width: 90%;
    margin: auto;
    height: 560px;

    object-fit: cover;

    border-radius: 26px;

    transition: .5s;

}

.story-image:hover img {

    transform: scale(1.03);

}

/* .story-badge {

    position: absolute;

    top: 25px;
    left: 25px;

    background: #2563eb;

    color: #fff;

    padding: 12px 24px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;

} */

.story-content span {

    color: #2563eb;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}

.story-content h2 {

    font-size: 30px;

    margin: 18px 0 25px;

    color: #102A43;

    line-height: 1.2;

}

.story-content p {

    color: #667085;

    line-height: 1.9;

    margin-bottom: 35px;

    font-size: 1.8vh;

}

.story-highlights {

    display: flex;

    flex-direction: column;

    gap: 22px;

    margin-bottom: 0px;

}

.highlight {

    display: flex;

    gap: 18px;

    align-items: flex-start;

}

.highlight i {

    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: #eef4ff;

    color: #2563eb;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 22px;

    flex-shrink: 0;

}

.highlight h4 {

    font-size: 18px;

    color: #102A43;

    margin-bottom: 8px;

}

.highlight p {

    color: #667085;

    line-height: 1.7;

}

.story-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;

    padding: 10px 32px;

    border-radius: 50px;

    background: #2563eb;

    color: #fff;

    transition: .35s;

}

.story-btn:hover {

    background: #102A43;

    transform: translateY(-4px);

}

/*=========================================
        TABLET
=========================================*/

@media(max-width:992px) {

    .story-wrapper {

        grid-template-columns: 1fr;

        gap: 45px;

    }

    .story-image img {

        height: 450px;

    }

    .story-content h2 {

        font-size: 38px;

    }

}

/*=========================================
        MOBILE
=========================================*/

@media(max-width:768px) {

    .featured-story {

        padding: 70px 0;

    }

    .featured-story .container {

        width: 90%;

    }

    .story-image img {

        height: 320px;

    }

    .story-content {

        text-align: center;

    }

    .story-content h2 {

        font-size: 32px;

    }

    .highlight {

        text-align: left;

    }

    .story-btn {

        margin: auto;

    }

}

/*=========================================
        SMALL PHONE
=========================================*/

@media(max-width:480px) {

    .story-content h2 {

        font-size: 28px;

    }

    .highlight {

        gap: 14px;

    }

    .highlight i {

        width: 48px;

        height: 48px;

        font-size: 18px;

    }

    .highlight h4 {

        font-size: 19px;

    }

    .highlight p {

        font-size: 14px;

    }

    .story-btn {

        width: 100%;

        justify-content: center;

    }

}




/* section-2 */

/*=========================================
            SERVICES SECTION
=========================================*/

.services-section {

    width: 100%;
    padding: 100px 0;

    background:
        radial-gradient(circle at top left, #24408f 0%, transparent 35%),
        radial-gradient(circle at bottom right, #1d4ed8 0%, transparent 30%),
        linear-gradient(135deg, #081320 0%, #10243c 45%, #081320 100%);

    position: relative;
    overflow: hidden;

}

.services-section .container {

    width: 80%;
    max-width: 1400px;
    margin: auto;

}

/*=========================================
            HEADING
=========================================*/

.services-section .section-heading {

    text-align: center;
    margin-bottom: 70px;

}

.services-section .section-heading span {

    display: inline-block;

    color: #6594f9;

    letter-spacing: 2px;

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;

    margin-bottom: 15px;

}

.services-section .section-heading h2 {

    font-size: 44px;

    color: #f4f6f8;

    margin-bottom: 18px;

}

.services-section .section-heading p {

    width: 55%;
    margin: auto;

    color: #c9d7f6;

    line-height: 1.8;

    font-size: 16px;

}

/*=========================================
            GRID
=========================================*/

.services-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

}

/*=========================================
            CARD
=========================================*/

.blog_member
{
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 20px;
}

.service-card {

    position: relative;

    /* background: rgba(255, 255, 255, .08); */

    /* backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px); */

    /* border: 1px solid rgba(255, 255, 255, .15); */

    border-radius: 26px;

    padding: 38px;

    overflow: hidden;

    /* transition: .45s ease; */

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .25);


    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, .12);

    transition: .45s ease;

}

.service-card:hover {

    transform: translateY(-14px) scale(1.02);

    background: rgba(255, 255, 255, .16);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    border: 1px solid rgba(255, 255, 255, .35);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .35),
        0 0 30px rgba(59, 130, 246, .25),
        inset 0 1px 1px rgba(255, 255, 255, .25);

    cursor: pointer;

}

.service-card::after {

    content: "";

    position: absolute;

    top: -120%;
    left: -60%;

    width: 50%;
    height: 300%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .25),
            transparent);

    transform: rotate(25deg);

    transition: .8s;

    pointer-events: none;

}

.service-card:hover::after {

    left: 140%;

}

.service-card::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 0;

    background: linear-gradient(to bottom,
            #60a5fa,
            #38bdf8,
            #06b6d4);

    transition: .45s;

}

.service-card:hover::before {

    height: 100%;

}

.service-card:hover {

    transform:
        translateY(-14px) scale(1.02);

    border-color: rgba(96, 165, 250, .5);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .35);

}

.service-card:hover::before {

    height: 100%;

}

/*=========================================
            ICON
=========================================*/

.service-icon {

    width: 72px;
    height: 72px;

    border-radius: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    background:
        linear-gradient(135deg,
            #0877ed,
            rgb(255, 188, 19),
            #f83892);

    color: #fff;

    font-size: 30px;

    transition: .5s;

}

.service-card:hover .service-icon {

    transform:
        rotate(-12deg) translateY(-5px) scale(1.08);

}

/*=========================================
            TEXT
=========================================*/

.service-card h3 {

    color: #fff;
    padding: 2vh 0;

}

.service-card p {

    color: #d1d5db;
    padding-bottom: 2.9vh;

}

.service-card ul li {

    color: #f3f4f6;

}

/* .service-card ul {

    padding: 0;
    margin: 0;

    list-style: none;

} */

.service-card ul li {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;

    /* color: #344054; */

    font-size: 15px;

}

.service-card ul li::before {

    content: "✓";

    width: 24px;
    height: 24px;

    border-radius: 50%;

    background: rgba(37, 99, 235, .18);

    color: #7dd3fc;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 13px;

}

/*=========================================
            HOVER
=========================================*/

.service-card:hover h3 {

    color: #ee9c0e;

}

.service-card:hover ul li {

    transform: translateX(5px);

    transition: .3s;

    color: rgb(16, 239, 176);

}

.service-card>* {

    transition: .4s;

}

.service-card:hover h3 {

    transform: translateX(8px);

}

.service-card:hover p {

    transform: translateX(8px);

}

.service-card:hover ul {

    transform: translateX(10px);

}

/*=========================================
            LAPTOP
=========================================*/

@media(max-width:1200px) {

    .services-section .container {

        width: 85%;

    }

    .services-section .section-heading h2 {

        font-size: 40px;
        color: white;

    }

}

/*=========================================
            TABLET
=========================================*/

@media(max-width:992px) {

    .services-grid {

        grid-template-columns: 1fr;

    }

    .services-section .container {

        width: 88%;

    }

    .services-section .section-heading p {

        width: 80%;

    }

    .service-card {

        padding: 32px;

    }

}

/*=========================================
            MOBILE
=========================================*/

@media(max-width:768px) {

    .services-section {

        padding: 70px 0;

    }

    .services-section .container {

        width: 90%;

    }

    .services-section .section-heading {

        margin-bottom: 45px;

    }

    .services-section .section-heading h2 {

        font-size: 32px;

    }

    .services-section .section-heading p {

        width: 100%;

        font-size: 15px;

    }

    .service-card {

        padding: 28px;

    }

    .service-icon {

        width: 60px;
        height: 60px;

        font-size: 24px;

    }

    .service-card h3 {

        font-size: 24px;

    }

}

/*=========================================
            SMALL PHONE
=========================================*/

@media(max-width:480px) {

    .services-section {

        padding: 60px 0;

    }

    .services-section .container {

        width: 92%;

    }

    .services-section .section-heading h2 {

        font-size: 28px;

    }

    .services-section .section-heading span {

        font-size: 12px;

    }

    .service-card {

        padding: 22px;

        border-radius: 20px;

    }

    .service-icon {

        width: 54px;
        height: 54px;

        font-size: 22px;

        margin-bottom: 18px;

    }

    .service-card h3 {

        font-size: 22px;

    }

    .service-card p {

        font-size: 14px;

    }

    .service-card ul li {

        font-size: 14px;

        gap: 10px;

    }

}

/*=========================================
            VERY SMALL
=========================================*/

@media(max-width:360px) {

    .services-section .section-heading h2 {

        font-size: 24px;

    }

    .service-card {

        padding: 18px;

    }

    .service-card h3 {

        font-size: 20px;

    }

    .service-card p {

        font-size: 13px;

    }

    .service-card ul li {

        font-size: 13px;

    }

}


/* full stories */

.full_stories{
    background: linear-gradient(to left,blue,black,blue); 
    border-top-left-radius: 8%;
    border-bottom-right-radius: 8%;
}

.full_stories_info{
    background: linear-gradient(to left,black,blue,black);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-bottom-right-radius: 7%;
    border-top-left-radius: 7%;
}



/* section-3 */

/*=================================================
            LANDMARKS / JOURNEY SLIDER
==================================================*/

.journey-section {
    width: 100%;
    padding: 50px 0;
    background: linear-gradient(180deg, #e2efff00, #d1e1f500, #d2e6fe00);
    overflow: hidden;
}

.journey-section .container {
    width: 80%;
    margin: auto;
}

/*============================*/

.section-title {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 70px;
}

.section-title span {
    color: #1063c7;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}

.section-title h2 {
    background: linear-gradient(to right,
            rgba(163, 194, 248, 0.967) 0%,
            rgb(249, 164, 200) 50%,
            rgb(242, 156, 57) 100%);

    background-size: 200% auto;

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    font-size: 3rem;
    font-weight: bold;
    display: inline-block;

    filter:
        drop-shadow(1px 0px 0px #032d51cc) drop-shadow(-0.5px 0px 0px #7e4d0479) drop-shadow(0px 1px 0px #114989b9) drop-shadow(0px -1px 0px #532840b4);

    animation: glassShine 6s linear infinite;
}

/* Step 4: Define the movement keyframes */
@keyframes glassShine {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.section-title p {
    color: #505050;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

/*============================*/

.slider-wrapper {

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

}

/*============================*/

.journey-card {

    width: 320px;

    min-width: 320px;

    border-radius: 28px;

    overflow: hidden;

    background: rgb(5, 18, 120);

    backdrop-filter: blur(14px);

    border: 3px solid rgb(59, 3, 3);

    transition: .55s ease;

    cursor: pointer;

    margin: 2vh 0;

    /* transform: scale(.82); */

    /* opacity: .45; */

    /* filter: blur(1.5px); */

    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.358);

}

.journey-top {

    display: flex;

    /* align-items: flex-start; */
    justify-content: space-between;

    margin-bottom: 35px;

}

.journey-heading h3 {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(3, 1, 55);
    font-size: 4vh;
}

.journey-nav {

    display: flex;

    gap: 15px;

    margin: 0;

}

.journey-prev,
.journey-next {

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(135deg, #111827, #1f2937);

    color: #fff;

    border: 1px solid rgba(255, 255, 255, .08);

    transition: .35s;

    cursor: pointer;

    box-shadow: 0 10px 20px rgba(2, 52, 128, 0.334);

}


.journey-prev i,
.journey-next i {
    color: black;
}

.journey-prev:hover i,
.journey-next:hover i {
    color: rgb(255, 255, 255);
}

.journey-prev:hover,
.journey-next:hover {

    background: linear-gradient(135deg, #f7b558, #f46fb2);

    transform: translateY(-4px) scale(1.05);

}

/*============================*/

.journey-card img {

    width: 100%;
    height: 260px;

    object-fit: cover;

    transition: .6s;

}

.journey-card.active img {

    transform: scale(1.08);

}

/*============================*/

.journey-content {

    padding: 30px;

    background-color: rgb(4, 37, 115);

}

.journey-content span {

    display: inline-block;

    background: #2563eb;

    color: #fff;

    padding: 8px 16px;

    border-radius: 30px;

    font-size: 13px;

    margin-bottom: 18px;

}

.journey-content h3 {

    color: #fff;

    font-size: 20px;

    margin-bottom: 15px;

}

.journey-content p {

    color: #d1d5db;

    line-height: 1.8;

}

/*============================*/


.slider-btn:hover {

    background: #2563eb;

    transform: scale(1.08);

}

.journeySwiper {

    width: 100%;
    overflow: visible;
    padding: 70px 0;

}

.swiper-wrapper {

    align-items: center;

}

.swiper-slide {

    display: flex;
    justify-content: center;

    transition: .5s;

    padding: 3vh 0;

}

/* Default */

.swiper-slide .journey-card {

    width: 300px;
    height: auto;

    transform: scale(.82);

    opacity: .55;

    filter: grayscale(.2);

    transition: .45s ease;

}

/* Previous */

.swiper-slide-prev .journey-card,

.swiper-slide-next .journey-card {

    transform: scale(.9);

    opacity: .8;

    filter: none;

}

/* Active */

.swiper-slide-active .journey-card {

    transform: scale(1.08);

    opacity: 1;

    filter: none;

    z-index: 20;

}

/* Navigation */

.journey-nav {

    display: flex;

    justify-content: center;

    gap: 25px;

    margin-top: 45px;

}

.journey-prev,

.journey-next {

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(20px);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    color: white;

    font-size: 20px;

    transition: .35s;

    border: 1px solid rgba(255, 255, 255, .18);

}

/* .journey-prev:hover,

.journey-next:hover {

    background: #2563eb;

    transform: translateY(-4px);

} */

@media(max-width:992px) {

    .swiper-slide .journey-card {

        width: 300px;

    }

}

@media(max-width:768px) {

    .swiper-slide .journey-card {

        width: 280px;

    }

}

/*============================*/

.journey-card::after {

    content: "";

    position: absolute;

    top: -140%;
    left: -70%;

    width: 50%;
    height: 320%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .35),
            transparent);

    transform: rotate(25deg);

    transition: .9s;

}

.journey-card:hover::after {

    left: 150%;

}

/*============================*/

.journey-card:hover {

    border-color: #60a5fa;

}

/*=================================================
                1200px
==================================================*/

@media(max-width:1200px) {

    .journey-card {

        width: 280px;
        min-width: 280px;

    }

}

/*=================================================
                992px
==================================================*/

@media(max-width:992px) {

    .journey-section .container {

        width: 90%;

    }

    .section-title h2 {

        font-size: 42px;

    }

    .journey-card {

        width: 250px;
        min-width: 250px;

    }

    .journey-card img {

        height: 220px;

    }

    .journey-content {

        padding: 24px;

    }

    .journey-content h3 {

        font-size: 24px;

    }

}

/*=================================================
                768px
==================================================*/

@media(max-width:768px) {

    .slider-btn {

        width: 50px;
        height: 50px;

        font-size: 18px;

    }

    .journey-slider {

        gap: 15px;

    }

    .journey-card {

        width: 220px;
        min-width: 220px;

    }

    .journey-card.active {

        transform: scale(1);

    }

    .journey-content h3 {

        font-size: 21px;

    }

    .journey-content p {

        font-size: 14px;

    }

}

/*=================================================
                480px
==================================================*/

/* ==========================================
      SMALL MOBILE RESPONSIVE FIX
      320px - 480px
========================================== */

@media (max-width:480px) {

    .journey-section {
        padding: 50px 0;
        overflow: hidden;
    }


    .journey-section .container {
        width: 94%;
    }


    /* Section heading */

    .section-title {
        margin-bottom: 35px;
        padding: 0 10px;
    }


    .section-title span {
        font-size: 11px;
        letter-spacing: 2px;
    }


    .section-title h2 {

        font-size: 28px;
        line-height: 1.2;

    }


    .section-title p {

        font-size: 13px;
        line-height: 1.6;

    }


    /* Top heading + arrows */

    .journey-top {

        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;

    }


    .journey-heading h3 {

        font-size: 26px;
        text-align: center;

    }


    .journey-nav {

        margin-top: 0;
        gap: 12px;

    }


    .journey-prev,
    .journey-next {

        width: 42px;
        height: 42px;
        font-size: 14px;

    }


    /* Swiper */

    .journeySwiper {

        padding: 40px 0;
        overflow: visible;

    }


    .swiper-slide {

        padding: 20px 0;

    }


    /* Cards */

    .swiper-slide .journey-card,
    .journey-card {

        width: 260px;
        min-width: 260px;

        border-radius: 20px;

    }


    /* Remove big scaling on mobile */

    .swiper-slide .journey-card {

        transform: scale(.9);

        opacity: .7;

    }


    .swiper-slide-active .journey-card {

        transform: scale(1);

        opacity: 1;

    }



    .journey-card img {

        height: 200px;

    }


    .journey-content {

        padding: 20px;

    }


    .journey-content span {

        font-size: 12px;
        padding: 6px 12px;

    }


    .journey-content h3 {

        font-size: 18px;
        margin-bottom: 10px;

    }


    .journey-content p {

        font-size: 13px;
        line-height: 1.6;

    }


}



/* ==========================================
      EXTRA SMALL PHONES
      320px - 360px
========================================== */

@media(max-width:360px){


    .journey-section .container {

        width:96%;

    }


    .section-title h2 {

        font-size:24px;

    }


    .journey-heading h3 {

        font-size:22px;

    }


    .swiper-slide .journey-card,
    .journey-card {

        width:230px;
        min-width:230px;

    }


    .journey-card img {

        height:170px;

    }


    .journey-content {

        padding:16px;

    }


    .journey-content h3 {

        font-size:16px;

    }


    .journey-content p {

        font-size:12px;

    }


}























/* section-4 */

/* ===========================
   VIDEO PARALLAX
=========================== */

.video-parallax {

    position: relative;
    min-height: 100vh;
    position: relative;
    /* 3 cards */

}

.video-wrapper {

    position: sticky;

    top: 0;

    width: 100%;
    height: 100vh;

    overflow: hidden;
    z-index: 1;

}

.bg-video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

}

.video-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .45);

}

.scroll-content {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;
    z-index: 3;

}

.content-block {

    height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

}

.main-content-box{
    width: 100%;
    height: 40vh;
    background-size: cover;



}

.content-box {

    width: 100%;
    height: 40vh;
    margin: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vh;
    background: rgba(250, 236, 192, 0.273);
    
    /* width: min(850px, 90%); */
    padding: 60px;

    /* border-radius: 25px; */

    color: white;

    text-align: center;
}

/* Next section */

.next-section {

    position: relative;

    background: #fff;

    z-index: 5;

    min-height: 100vh;

}













/* galley */

/*=========================================
            GALLERY HERO
=========================================*/
/* 
.gallery-hero {
    padding: 120px 0 70px;
    text-align: center;
}

.gallery-hero .container {
    max-width: 900px;
    margin: auto;
}

.gallery-subtitle {
    display: inline-block;
    color: #d12d7c;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.gallery-hero h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.15;
    color: #111;
    margin-bottom: 20px;
}

.gallery-hero p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    max-width: 700px;
    margin: auto;
} */


/*=========================================
            GALLERY SECTION
=========================================*/
/* 
.gallery-section {
    padding: 40px 0 100px;
}

.gallery-grid {

    width: 90%;
    margin: auto;
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    grid-auto-rows: 250px;

    gap: 22px;

} */


/*=========================================
            GALLERY CARD
=========================================*/

.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 22px;

    cursor: pointer;

    background: #eee;

}

.gallery-item img {

    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition: .7s ease;

}


/*=========================================
            DIFFERENT SIZES
=========================================*/

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}


/*=========================================
            OVERLAY
=========================================*/

.gallery-overlay {

    position: absolute;

    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 30px;

    background: linear-gradient(transparent,
            rgba(0, 0, 0, .75));

    opacity: 0;

    transition: .45s;

}

.gallery-overlay span {

    color: #fff;

    font-size: 24px;

    font-weight: 600;

    transform: translateY(20px);

    transition: .45s;

}


/*=========================================
            HOVER
=========================================*/

.gallery-item:hover img {

    transform: scale(1.08);

}

.gallery-item:hover .gallery-overlay {

    opacity: 1;

}

.gallery-item:hover .gallery-overlay span {

    transform: translateY(0);

}


/*=========================================
            TABLET
=========================================*/

@media(max-width:992px) {

    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .gallery-item.large,
    .gallery-item.wide {

        grid-column: span 2;

    }

    .gallery-item.tall {

        grid-row: span 2;

    }

    .gallery-hero h1 {

        font-size: 46px;

    }

}


/*=========================================
            MOBILE
=========================================*/

@media(max-width:576px) {

    .gallery-hero {

        padding: 90px 20px 50px;

    }

    .gallery-hero h1 {

        font-size: 34px;

    }

    .gallery-hero p {

        font-size: 15px;

    }

    .gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 240px;

        gap: 18px;

    }

    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {

        grid-column: span 1;
        grid-row: span 1;

    }

    .gallery-overlay {

        opacity: 1;

        background: linear-gradient(transparent,
                rgba(0, 0, 0, .55));

    }

    .gallery-overlay span {

        transform: none;

        font-size: 20px;

    }

}


/* media query */

@media (max-width:1400px) {

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 260px;
        gap: 18px;
    }

    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

}

@media (max-width:1200px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
        gap: 16px;
    }

    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

}

@media (max-width:991px) {

    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

        grid-auto-rows: 220px;

        gap: 14px;

    }

    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {

        grid-column: span 1;
        grid-row: span 1;

    }

}

@media (max-width:767px) {

    .gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 250px;

        gap: 16px;

    }

    .gallery-item,
    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {

        grid-column: span 1;
        grid-row: span 1;

        height: 250px;

    }

}

@media (max-width:360px) {

    .gallery-grid {

        gap: 12px;

    }

    .gallery-item,
    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {

        height: 210px;

    }

}