.hero-banner-wrapper {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero-banner-wrapper .landing-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner-wrapper .animation-circle-wrapper {
    width: fit-content;
    margin: auto;
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;

}

.animation-circle {
    width: 180px;
    height: 180px;
    margin: auto;
}

.animation-circle img {
    width: 100%;
    height: 100%;
}

.clockwiseSpin {
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: clockwiseSpin;
    animation-timing-function: linear;
    cursor: pointer;
}


@keyframes clockwiseSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.second-fold-main-wrapper {
    padding: 120px 0 200px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.custom-container {
    width: calc(100vw - 240px);
    margin: auto;
}

.intro-main-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.intro-main-wrapper .left-wrapper {
    width: 50%;
    padding-right: 80px;
    padding-top: 52px;
}

.app-lang-ar .intro-main-wrapper .left-wrapper {
    width: 50%;
    padding-right: unset;
    padding-top: 52px;
    padding-left: 150px;
}

.intro-main-wrapper .left-wrapper .section-logo {
    width: 350px;
    height: auto;
    margin-bottom: 30px;
}

.app-lang-ar .intro-main-wrapper .left-wrapper .section-logo {
    width: 250px;
    height: auto;
    margin-bottom: 0;
}

.intro-main-wrapper .left-wrapper .section-logo img {
    width: 100%;
    height: 100%;
}


.intro-main-wrapper .left-wrapper .section-text {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 40px;
}


.intro-main-wrapper .left-wrapper .site-heading {
    margin: 0px 0 30px 0;
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
    color: #163D48;
}

.app-lang-ar  .intro-main-wrapper .left-wrapper .site-heading {
    text-align: right;
}

.app-lang-ar .intro-main-wrapper .left-wrapper .section-text {
    text-align: right;
}

.intro-main-wrapper .right-wrapper {
    display: flex;
    width: 50%;
    position: relative;
}

.intro-main-wrapper .right-wrapper .lg-video-wrapper {
    width: 27vw;
    height: 70vh;
    border-radius: 20px;
    margin-left: auto;
}

.app-lang-ar .intro-main-wrapper .right-wrapper .lg-video-wrapper {
    margin-left: unset;
    margin-right: auto;
}


.intro-main-wrapper .right-wrapper .lg-video-wrapper video {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.intro-main-wrapper .right-wrapper .sm-video-wrapper {
    width: 19vw;
    height: 30vh;
    border: 11px solid #EBFAFE;
    border-radius: 20px;
    position: absolute;
    right: 55%;
    transform: translateY(200px);
}


.app-lang-ar .sm-video-wrapper {
    right: unset !important;
    left: 50%;
}

.intro-main-wrapper .right-wrapper .sm-video-wrapper video {
    width: 100%;
    height: 100%;
    border-radius: 9px;
    object-fit: cover;

}

.second-fold-btn {
    width: 250px;
    height: 54px;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #38bce4;
    border: 1.6px solid #163d48;
    box-shadow: 4px 4px 0 0 #163D48;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}

.second-fold-btn:hover {
    color: #163D48;
    transition: all .3s ease;
}

.section-animation-img {
    position: absolute;
    bottom: 100px;
    width: 350px;
    left: -127px;
    right: 0;
    margin: auto;
}

.app-lang-ar .section-animation-img {
    position: absolute;
  bottom: 145px;
  width: 350px;
  left: 0;
  right: -200px;
  margin: auto;
}

.section-animation-img img {
    width: 100%;
    height: auto;
}

.post-fold-main-wrapper {
    padding: 100px 0 150px 0;
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


.post-fold-main-wrapper .custom-container {
    display: flex;
    align-items: flex-start;
    gap: 100px;
}

.post-fold-main-wrapper .left-srcoll-wrapper {
    width: 50%;
    transform: translateY(100px);
}

.app-lang-ar .post-fold-main-wrapper .right-sticky-wrapper {
    text-align: right;
}

.post-fold-main-wrapper .right-sticky-wrapper {
    width: 50%;
    position: sticky;
    top: 0;
    padding: 33vh 0;
     transform: translateY(100px);
}


.post-fold-main-wrapper .post-wrapper {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    aspect-ratio: 7/4;
    overflow: hidden;
    transition: all .3s ease;
    border-radius: 10px;
    position: relative;
    transition: all .3s ease;
}

.post-fold-main-wrapper .post-wrapper:hover img {
    transition: all .3s ease;
    transform: scale(1.2);
}

.post-fold-main-wrapper .post-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: all .3s ease;
    object-position: center;
    object-fit: cover;
}


.post-fold-main-wrapper .sticky-title {
    color: #49D050;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 5px;
}

.post-fold-main-wrapper .subtitle {
    color: #163D48;
    font-size: 60px;
    font-weight: 700;
    margin: 15px 0 20px 0;
    line-height: 47px;
}

.post-fold-main-wrapper .content {
    margin-bottom: 20px;
    color: #163D48;
    font-size: 18px;
    font-weight: 400;
}

.adv-btn {
    min-width: 250px;
    width: fit-content;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #49D050;
    color: #fff;
    border: 2px solid #163d48;
    border-radius: 8px;
    font-size: 18px;
    padding: 13px 20px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 4px 4px 0 0 #163D48;
    text-transform: uppercase;
    white-space: nowrap;

}

.adv-btn:hover {
    text-decoration: none;
    color: #163d48;
}

.post-fold-main-wrapper .post-wrapper .overlay-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    border-radius: 10px;
    background-color: rgba(48, 48, 48, 0.43);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
}

.post-fold-main-wrapper .post-wrapper .overlay-container .overlay-text {
    font-size: 32px;
    font-weight: 400;
}

@media (max-width: 1440px) {
    .second-fold-main-wrapper {
        padding: 80px 0 200px 0;
    }

    .intro-main-wrapper .left-wrapper .section-logo {
        width: 280px;
    }

    .intro-main-wrapper .left-wrapper .section-text {
        font-size: 14px;
    }

    .landing-birthday-fold-wrapper {
        height: calc(100vh + 100px);
        width: 100%;
        background-size: cover !important;
    }

}

@media (max-width: 1366px) {
    .section-animation-img {
        bottom: 50px;
        width: 300px;
    }

    .custom-container {
        width: calc(100vw - 120px);
    }
}


@media (max-width: 1280px) {
    .intro-main-wrapper .left-wrapper .section-logo {
        width: 300px;
    }

    .custom-container {
        width: calc(100vw - 60px);
    }
}

@media (max-width: 1024px) {
    .section-animation-img {
        bottom: 0;
        width: 300px;
        left: 0;
    }
}

@media (max-width: 991px) {
    .custom-container {
        width: calc(100vw - 60px);
    }

    .second-fold-main-wrapper {
        height: unset;
        padding-bottom: 200px;
        background-size: inherit;
        background-position: top left;
    }

    .app-lang-ar .second-fold-main-wrapper {
        padding-top: 50px;
    }

    .app-lang-ar .intro-main-wrapper .left-wrapper .section-logo {
        width: 200px;
    }

    .app-lang-ar .intro-main-wrapper .left-wrapper .section-text {
        text-align: center;
    }

    .app-lang-ar .section-animation-img {
        bottom: 40px;
        width: 250px;
        right: 0;
    }

    .adv-btn {
        width: 200px;
    }

    .intro-main-wrapper {
        flex-direction: column;
    }

    .intro-main-wrapper .left-wrapper {
        width: 100%;
        padding-right: 0;
        padding-top: 0;
    }

    .app-lang-ar .intro-main-wrapper .left-wrapper {
        width: 100%;
        margin-bottom: 30px;
        padding: 0 0 0 0;
    }

    .intro-main-wrapper .left-wrapper .section-logo {
        width: 300px;
        margin: 0 auto 10px auto;
    }

    .intro-main-wrapper .left-wrapper .section-text {
        text-align: center;
    }

    .intro-main-wrapper .right-wrapper {
        width: 100%;
        margin: 30px auto;
    }

    .intro-main-wrapper .right-wrapper .lg-video-wrapper {
        width: 50vw;
        height: 50vh;
    }



    .intro-main-wrapper .right-wrapper .sm-video-wrapper {
        width: 47vw;
        border: 11px solid #EBFAFE;
        border-radius: 20px;
        position: absolute;
        right: 50%;
    }

    .section-animation-img {
        bottom: 40px;
    }

    .second-fold-btn {
        margin: auto;
    }

    .post-fold-main-wrapper .custom-container {
        gap: 0;
        flex-direction: column-reverse;
        
    }

    .post-fold-main-wrapper .left-srcoll-wrapper {
        width: 100%;
    }

    .post-fold-main-wrapper .right-sticky-wrapper {
        width: 100%;
        position: unset;
        top: 0;
        padding: 0;
        margin-bottom: 30px;
    }

    .post-fold-main-wrapper .subtitle {
        font-size: 50px;
    }

    .intro-main-wrapper .left-wrapper .site-heading {
        font-size: 50px;
        text-align: center !important;
    }
    .app-lang-ar  .intro-main-wrapper .left-wrapper .site-heading {
        text-align: center !important;
    }

    .post-fold-main-wrapper .sticky-title {
        font-size: 25px;
    }

    .intro-main-wrapper .right-wrapper .lg-video-wrapper video {
        border-radius: 13px !important;
    }


}

@media (max-width: 767px) {

    .post-fold-main-wrapper .post-wrapper {
        margin-bottom: 20px;
    }

    .hero-banner-wrapper {
        height: calc(100vh - 50px);
    }

    .animation-circle {
        width: 150px;
        height: 150px;
        margin: auto;
    }

    .adv-btn {
        width: 100%;
        font-size: 16px;
    }

    .post-fold-main-wrapper .right-sticky-wrapper {
        margin-top: 20px;
    }

    .second-fold-btn  {
        width: 100%;
    }
    .hero-banner-wrapper .animation-circle-wrapper {
        bottom: -75px;

    }

    .post-fold-main-wrapper .post-wrapper .overlay-container .overlay-text {
        font-size: 24px;
        font-weight: 700;
    }

    .post-fold-main-wrapper .content {
        font-size: 14px;
    }

    .custom-container {
        width: calc(100vw - 30px);
    }

    .intro-main-wrapper .left-wrapper .section-logo {
        width: 200px;
    }

    .intro-main-wrapper .right-wrapper {
        margin: 30px auto;
        width: 100%;
    }

    .intro-main-wrapper .right-wrapper .lg-video-wrapper {
        width: 60vw;
        height: 50vh;
    }

    .intro-main-wrapper .right-wrapper .sm-video-wrapper {
        width: 45vw;
        height: 150px;
        right: 50%;
        border: 5px solid #EBFAFE;
    }

    .intro-main-wrapper .right-wrapper .sm-video-wrapper video {
        border-radius: 15px;
    }

    .post-fold-main-wrapper {
        padding: 25px 0;

    }

    .post-fold-main-wrapper .right-sticky-wrapper .sticky-title {
        font-size: 20px;
    }

    .post-fold-main-wrapper .right-sticky-wrapper .subtitle {
        color: #163D48;
        font-size: 40px;
        font-weight: 700;
        margin: 10px 0 15px 0;

    }

    .intro-main-wrapper .left-wrapper .site-heading {
        font-size: 40px;
       
    }
}

/* third fold css */

.category-salient-wrapper {
    padding-bottom: 0px;
}

.category-salient-wrapper .category-main-wrapper .category-card-wrapper {
    width: calc(100vw - 200px) !important;
    padding-top: 0;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    margin: auto;
}

.category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card {
    min-width: 25%;
    padding: 20px;
    transition: all .3s ease-in;
    background: #FFF;
}

.category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card .card-description-text {
    font-size: 13px;
    font-weight: 400;
    line-height: 26px;
    color: #134654;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card .card-description-wrapper .link {
    display: inline;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    line-height: 26px;
    text-decoration: underline;
}

.category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card .before-hover {
    width: 100%;
}



.category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card .card-image-video-wrapper {
    width: 100%;
    min-height: 382px;
    margin-bottom: 15px;
    position: relative;
    aspect-ratio: 11/14.5;
}

.category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card .card-img {
    width: 100%;
    height: 100%;
    border-radius: 12px !important;
    transition: all .3s ease-in !important;
    position: absolute;
    top: 0;
    left: 0;
}

.category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card .card-img img {
    width: 100%;
    height: 100%;
    border-radius: 12px !important;
    transition: all .3s ease-in !important;
    object-fit: cover !important;
}

.category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card .category-video-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 12px !important;
    transition: all .3s ease-in !important;
    position: absolute;
    top: 0;
    left: 0;
}

.category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card .category-video-wrapper .category-video {
    width: 100%;
    height: 100%;
    border-radius: 12px !important;
    transition: all .3s ease-in !important;
    object-fit: cover !important;
}

.category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card .card-img .static {
    opacity: 1;
}

.category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card .category-video-wrapper .category-video.dyanamic {
    opacity: 0 !important;
}


.category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card:hover .card-img .static {
    opacity: 0;
}

.category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card:hover .category-video-wrapper .category-video.dyanamic {
    opacity: 1 !important;
}

.category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card .before-hover .card-title {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card .before-hover .card-title span {
    color: #49994D;
    font-family: 'Open Sans';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 35.2px;
    width: fit-content;
    margin-bottom: 0px;
    background: #fff;
    padding-left: 0px;
    z-index: 9;
    display: block;
    white-space: nowrap;
}

.category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card .before-hover .card-title::after {
    position: unset;
    content: '';
    background-image: url("../images/category-illustraion.svg");
    width: 100%;
    height: 2px;
    top: 57%;
    right: unset;
    transform: translateY(-50%);
    background-repeat: repeat;
    z-index: 9;
    left: 0;
}

.category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card .before-hover .category-name {
    width: 100%;
    color: #163D48;
    font-family: 'Open Sans';
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 27.6px;
    margin-bottom: 15px;
}



@media (max-width: 1440px) {
    .category-salient-wrapper .category-main-wrapper .category-card-wrapper {
        width: calc(100vw - 200px) !important;
    }
}

@media (max-width: 1366px) {
    .category-salient-wrapper .category-main-wrapper .category-card-wrapper {
        width: calc(100vw - 82px) !important;
    }

}

@media (max-width: 1280px) {
    .category-salient-wrapper .category-main-wrapper .category-card-wrapper {
        width: calc(100vw - 20px) !important;
    }

}


@media (max-width: 1024px) {
    .category-salient-wrapper .category-main-wrapper .category-card-wrapper {
        width: calc(100vw - 30px) !important;
        flex-wrap: wrap;
    }

    .category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card {
        max-width: 50%;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {

    .category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card {
        max-width: 100%;
    }

    .category-salient-wrapper {
        padding-bottom: 0px;
    }
}

@media screen and (max-width: 576px) {
    .category-salient-wrapper .category-main-wrapper .category-card-wrapper {
        flex-wrap: wrap;
        width: 100%;
       
    }

    .category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card {
        width: 100%;
        padding: 20px 0;
    }

    .category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card .before-hover .category-name {
        font-size: 22px;
    }

    .intro-main-wrapper .left-wrapper .site-heading {
        font-size: 30px;
       
    }
}

/** birthday section ***/
.landing-birthday-fold-wrapper {
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding: 0px 20px 0 20px;
    background-position: bottom center;

}

.landing-birthday-fold-wrapper .fold-title {
    margin-bottom: 15px;
    color: #38BCE4;
    text-align: center;
    font-family: 'Open Sans' !important;
    font-size: 33px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 120%;
}

.landing-birthday-fold-wrapper .fold-sub-title {
    color: #163D48;
    font-family: 'Open Sans';
    font-size: 65px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -1.98px;
    text-align: center;
}

.fold-description {
    max-width: 500px;
    margin: 20px auto 35px auto;
    color: #163D48;
    text-align: center;
    font-family: Open Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;

}

.birth-day-btn {
    width: 200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    border: 2px solid #163D48;
    background: #38BCE4;
    box-shadow: 4px 4px 0px 0px #163D48;
    transition: all .3s ease;
    color: #FFF !important;
    text-align: center;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none !important;
}

.birth-day-btn:hover {
    color: #163D48 !important;
}

.button-custom-shadow a:hover {
    color: #163D48 !important;
}

.app-lang-ar .landing-birthday-fold-wrapper .fold-sub-title {
    font-size: 45px;
}

.app-lang-ar .landing-birthday-fold-wrapper .fold-title {
    font-size: 25px !important;
}



@media (max-width: 1024px) {
    .landing-birthday-fold-wrapper .fold-sub-title {
        font-size: 45px !important;
    }

    .landing-birthday-fold-wrapper {
        height: 80vh;
    }

    .post-fold-main-wrapper .left-srcoll-wrapper {
        
        transform: translateY(0px);
    }
    
    
    .post-fold-main-wrapper .right-sticky-wrapper {
         transform: translateY(0px);
    }
}

@media (max-width: 991px) {
    .app-lang-en .landing-birthday-fold-wrapper {
        height: 90vh;
    }

    .app-lang-ar .landing-birthday-fold-wrapper {
        height: 90vh;
    }

    .intro-main-wrapper .left-wrapper .section-text {
        margin-bottom: 20px;
    }

    .intro-main-wrapper .left-wrapper {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {

    .category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card .before-hover .card-title {
        margin-bottom: 2px;
    }

    .fold-description {
        margin: 15px auto 25px auto;
    }

    .birth-day-btn {
        width: 100%;
    }
    .app-lang-en .landing-birthday-fold-wrapper {
        height: 500px;
        width: 100%;
        background-position: center;
        background-size: cover !important;
    }

    .app-lang-ar   .category-salient-wrapper .category-main-wrapper .category-card-wrapper .category-card {
        width: 100%;
        padding: 20px 0;
        margin-bottom: 10px;
        padding-bottom: 0;
    }

    .app-lang-ar .landing-birthday-fold-wrapper {
         height: 500px;
        width: 100%;
        background-position: center;
        background-size: cover !important;
    }

    .app-lang-ar .intro-main-wrapper .right-wrapper {
        margin-bottom: 0;
    }

    .app-lang-ar .landing-birthday-fold-wrapper .fold-title {
        font-size: 20px !important;
    }

    .landing-birthday-fold-wrapper .fold-sub-title {
        font-size: 27px !important;
        line-height: 34px;
        margin-top: 10px;
    }

}

@media screen and (max-width: 576px) {
    .landing-birthday-fold-wrapper {
        background-size: contain;
    }

    .landing-birthday-fold-wrapper .fold-title {
        font-size: 16px !important;
    }

    .landing-birthday-fold-wrapper .fold-sub-title {
        font-size: 26px !important;
    }

    .landing-birthday-fold-wrapper .fold-description {
        font-size: 14px !important;
    }



    .home-birthday {
        padding: 0 20px !important;
    }
}


/* @media(min-width: 1441px) {
.section-animation-img {
width: 400px;
}
} */