.get__inspired {
    padding-bottom: 40px;
    width: 100%
}

.get__inspired .get__inspired-header {
    justify-content: space-between;
    margin: 0 auto 40px;
    max-width: 1280px;
    padding: 0 16px;
    width: 100%
}

@media screen and (max-width: 600px) {
    .get__inspired .get__inspired-header {
        margin-bottom:10px;
        padding: 0 16px
    }
}

.get__inspired .get__inspired-header h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 45px
}

@media screen and (max-width: 600px) {
    .get__inspired .get__inspired-header h2 {
        font-size:20px;
        line-height: 45px
    }
}

@media screen and (max-width: 300px) {
    .get__inspired .get__inspired-header h2 {
        font-size:14px;
        line-height: 45px
    }
}

.get__inspired .get__inspired-header .recomended-button {
    z-index: 1
}

@media screen and (max-width: 800px) {
    .get__inspired .get__inspired-header .recomended-button {
        position:absolute;
        right: 0;
        top: 12px
    }
}

.get__inspired .get__inspired-header .recomended-button .button-two {
    margin-left: 10px
}

@media screen and (max-width: 300px) {
    .get__inspired .get__inspired-header .recomended-button .button-two {
        margin-left:6px;
        margin-right: 10px
    }
}

.get__inspired .get__inspired-container {
    -ms-overflow-style: none;
    display: flex;
    gap: 20px;
    margin: 0 auto;
    max-width: 1280px;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 30px 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    width: 100%
}

.get__inspired .get__inspired-container::-webkit-scrollbar {
    display: none
}

.get__inspired .get__inspired-container .card {
    background-color: #000;
    border-radius: 10px;
    cursor: pointer;
    height: 507px;
    min-height: 507px;
    min-width: 345px;
    position: relative;
    transition: all .5s ease-in-out;
  overflow:hidden;
}

@media screen and (max-width: 500px) {
    .get__inspired .get__inspired-container .card {
        height:253px;
        min-height: 253px;
        min-width: 160px
    }
}

.get__inspired .get__inspired-container .card .subtitle {
    animation: fadeIn 1.5s ease-in-out;
    color: #fff;
    display: none;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 23px;
    margin: 0;
}

.get__inspired .get__inspired-container .card:hover {
    min-width: 500px
}

@media screen and (max-width: 500px) {
    .get__inspired .get__inspired-container .card:hover {
        min-width:160px
    }
}

.get__inspired .get__inspired-container .card:hover .subtitle {
    display: block;
    /* font-size: 10px; */
}

@media screen and (max-width: 500px) {
    .get__inspired .get__inspired-container .card:hover .subtitle {
        display: block;
        font-size: 12px;
        line-height: normal;
    }
}

.get__inspired .get__inspired-container .card:hover img {
    opacity: .5
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.get__inspired .get__inspired-container .card .title-container {
    bottom: 20px;
    display: flex;
    flex-direction: column;
    left: 20px;
    position: absolute;
    transition: all .5s ease-in-out;
    z-index: 100;
    height: 80px;
}

@media screen and (max-width: 500px) {
    .get__inspired .get__inspired-container .card .title-container {
        bottom:10px;
        left: 10px;
        padding: 0 5px;
        
    }
}

.get__inspired .get__inspired-container .card .title-container span {
    color: #fff;
   
    font-size: 2rem;
    font-weight: 600;
    /* line-height: 112px; */
}

@media screen and (max-width: 500px) {
    .get__inspired .get__inspired-container .card .title-container span {
        font-size: .8rem;
        font-weight: 600;
        line-height: 18px;
    }
}

.get__inspired .get__inspired-container .card img {
    border-radius: 10px;
    height: 100%;
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
    opacity: .8;
    transition: all .3s ease-in-out
}

@media screen and (max-width: 500px) {
    .get__inspired .get__inspired-container .card img {
        height:253px
    }
}

.get__inspired .get__inspired-button {
    align-items: center;
    display: flex;
    justify-content: center
}

.get__inspired .get__inspired-button button {
    background-color: var(--bg-white);
    border: 2px solid var(--brd-clr-grey-400);
    color: var(--text-clr-grey-900);
    cursor: pointer;
    height: 48px;
    width: 157px
}

@media screen and (max-width: 500px) {
    .get__inspired .get__inspired-button button {
        height:40px;
        width: 134px
    }
}

.home__scroll__header__container .scroll__header {
    align-items: center;
    display: flex;
    /* justify-content: space-between */
    justify-content: flex-end;
}

@media screen and (max-width: 1280px) {
    .home__scroll__header__container .scroll__header {
        padding:0
    }
}

.home__scroll__header__container .scroll__header .scroll__title {
    margin-left: 5px
}

.home__scroll__header__container .scroll__header .scroll__title h1 {
    font-size: 32px;
    font-weight: 500;
    line-height: 38px
}

@media screen and (max-width: 700px) {
    .home__scroll__header__container .scroll__header .scroll__title h1 {
        font-size:24px;
        line-height: 28px
    }
}

@media screen and (max-width: 300px) {
    .home__scroll__header__container .scroll__header .scroll__title h1 {
        font-size:14px;
        line-height: 45px
    }
}

.home__scroll__header__container .scroll__header .scroll__button {
    z-index: 1
}

.home__scroll__header__container .scroll__header .scroll__button .button__one .left__arrow {
    cursor: pointer;
    transform: rotate(180deg);
    transition: all .3s ease-in-out
}


.home__scroll__header__container .scroll__header .scroll__button .button__one .active:hover {
    transform: rotate(180deg) scaleX(1.2)
}



.home__scroll__header__container .scroll__header .scroll__button .button__two {
    margin-left: 10px
}

.home__scroll__header__container .scroll__header .scroll__button .button__two .right__arrow {
    cursor: pointer;
    transition: all .3s ease-in-out
}



.home__scroll__header__container .scroll__header .scroll__button .button__two .active:hover,.home__scroll__header__container .scroll__header .scroll__button .button__one .active:hover {
    transform: scaleX(1.2)
}



@media screen and (max-width: 300px) {
    .home__scroll__header__container .scroll__header .scroll__button .button__two {
        margin-left:6px;
        margin-right: 10px
    }
}

.ta-banner__container {
    align-items: center;
    background-color: #f5f8fe;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
    width: 100%
}

@media screen and (max-width: 720px) {
    .ta-banner__container {
        flex-flow:row;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 1rem;
        padding: 0 10px
    }
}

.ta-banner__wrapper {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1260px;
    padding: 1rem 0;
    width: 100%
}

@media screen and (max-width: 720px) {
    .ta-banner__wrapper {
        flex-flow:row;
        flex-wrap: wrap;
        gap: 10px;
        padding: 1rem 10px
    }
}

.ta-banner__heading {
    color: var(--clr-primary);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    width: max-content
}

@media screen and (max-width: 720px) {
    .ta-banner__heading {
        font-size:12px
    }
}

.ta-banner__coupon-code {
    color: var(--text-clr-grey-900);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    width: max-content
}

@media screen and (max-width: 720px) {
    .ta-banner__coupon-code {
        font-size:14px
    }
}

.ta-banner__info {
    color: var(--text-clr-grey-600);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    width: max-content
}

@media screen and (max-width: 720px) {
    .ta-banner__info {
        font-size:10px
    }
}

.mybooking-empty {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 38px;
    justify-content: center;
    padding: 70px 0
}

@media screen and (max-width: 1140px) {
    .mybooking-empty {
        gap:33px;
        padding: 139px 0
    }
}

.mybooking-empty .empty-title {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 14px
}

@media screen and (max-width: 1140px) {
    .mybooking-empty .empty-title {
        gap:10px
    }
}

.mybooking-empty .empty-title h3 {
    color: var(--clr-black);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px
}

.mybooking-empty .empty-title p {
    color: var(--bg-clr-grey-600);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px
}

.mybooking-empty .btn__explore-homes {
    background-color: var(--bg-primary);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    outline: none;
    padding: 13px 45px
}

.show_all__card {
    align-items: center;
    display: flex;
    justify-content: center
}

.show_all__card a {
    all: unset;
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%
}

.show_all__card a p {
    border-radius: 10px;
    color: var(--clr-primary)
}

.show_all__card a p:hover {
    text-decoration: underline
}

.weekend-menu {
    margin: 0 auto;
    max-width: 1260px;
    padding: 20px 0;
    width: 100%
}

@media screen and (max-width: 1300px) {
    .weekend-menu {
        padding:20px 30px;
        width: 100%
    }
}

@media screen and (max-width: 760px) {
    .weekend-menu {
        padding:0 16px
    }
}

.weekend-menu .weekend-menu-container {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.weekend-menu .weekend-menu-container .weekend-header {
    align-items: center;
    display: flex;
    justify-content: space-between
}

@media screen and (max-width: 1280px) {
    .weekend-menu .weekend-menu-container .weekend-header {
        padding:0
    }
}

.weekend-menu .weekend-menu-container .weekend-header .weekend-title {
    margin-left: 5px
}

.weekend-menu .weekend-menu-container .weekend-header .weekend-title h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 45px
}

@media screen and (max-width: 700px) {
    .weekend-menu .weekend-menu-container .weekend-header .weekend-title h2 {
        font-size:20px;
        line-height: 45px
    }
}

@media screen and (max-width: 300px) {
    .weekend-menu .weekend-menu-container .weekend-header .weekend-title h2 {
        font-size:14px;
        line-height: 45px
    }
}

.weekend-menu .weekend-menu-container .weekend-header .weekend-button {
    z-index: 1
}

.weekend-menu .weekend-menu-container .weekend-header .weekend-button .button-one .left__arrow {
    cursor: pointer;
    transform: rotate(180deg);
    transition: all .3s ease-in-out
}

.weekend-menu .weekend-menu-container .weekend-header .weekend-button .button-one .active {
    opacity: 1
}

.weekend-menu .weekend-menu-container .weekend-header .weekend-button .button-one .active:hover {
    transform: rotate(180deg) scaleX(1.2)
}

.weekend-menu .weekend-menu-container .weekend-header .weekend-button .button-one .not__active {
    opacity: .3
}

.weekend-menu .weekend-menu-container .weekend-header .weekend-button .button-two {
    margin-left: 10px
}

.weekend-menu .weekend-menu-container .weekend-header .weekend-button .button-two .right__arrow {
    cursor: pointer;
    transition: all .3s ease-in-out
}

.weekend-menu .weekend-menu-container .weekend-header .weekend-button .button-two .active {
    opacity: 1
}

.weekend-menu .weekend-menu-container .weekend-header .weekend-button .button-two .active:hover {
    transform: scaleX(1.2)
}

.weekend-menu .weekend-menu-container .weekend-header .weekend-button .button-two .not__active {
    opacity: .3
}

@media screen and (max-width: 300px) {
    .weekend-menu .weekend-menu-container .weekend-header .weekend-button .button-two {
        margin-left:6px;
        margin-right: 10px
    }
}

.weekend-menu .weekend-menu-container .weekend-header-title {
    align-items: center;
    border-bottom: 1px solid #ddd;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    list-style: none;
    margin-bottom: 20px;
    max-width: max-content;
    overflow-x: scroll;
    scroll-behavior: smooth;
    width: 100%
}

@media screen and (max-width: 768px) {
    .weekend-menu .weekend-menu-container .weekend-header-title {
        margin-bottom:10px
    }
}

.weekend-menu .weekend-menu-container .weekend-header-title::-webkit-scrollbar {
    -webkit-appearance: none;
    background: #0000;
    height: 0;
    width: 0
}

.weekend-menu .weekend-menu-container .weekend-header-title span {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 40px;
    padding: .2rem .8rem
}

.weekend-menu .weekend-menu-container .weekend-header-title span p {
    color: var(--bg-clr-grey-600);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    white-space: nowrap
}

@media screen and (max-width: 700px) {
    .weekend-menu .weekend-menu-container .weekend-header-title span p {
        font-size:12px;
        line-height: 18px
    }
}

@media screen and (max-width: 300px) {
    .weekend-menu .weekend-menu-container .weekend-header-title span p {
        font-size:10px;
        line-height: 16px
    }
}

.weekend-menu .weekend-menu-container .weekend-header-title .active {
    border-bottom: 3px solid #2368a2
}

.weekend-menu .weekend-menu-container .weekend-header-title .active .active-tab {
    color: var(--clr-primary)
}

.weekend-menu .weekend-menu-container .main_container-listing {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    max-width: 1255px;
    overflow-x: scroll;
    padding: 0 0 20px 10px;
    scroll-behavior: smooth;
    width: 100%
}

@media screen and (max-width: 768px) {
    .weekend-menu .weekend-menu-container .main_container-listing {
        margin-bottom:0
    }
}

.weekend-menu .weekend-menu-container .main_container-listing .featured__card {
    width: 405px
}

.weekend-menu .weekend-menu-container .main_container-listing::-webkit-scrollbar {
    -webkit-appearance: none;
    background: #0000;
    height: 0;
    width: 0
}

.home__wrapper {
    height: 100vh
}

.home__wrapper .home-banner-wrapper {
    background: url(https://ik.imagekit.io/5tgxhsqev/saffronstays-media/docs/1752672540572654283);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: relative;
    z-index: 1000
}

@media screen and (max-width: 800px) {
    .home__wrapper .home-banner-wrapper {
        background-position:50%;
        background-repeat: no-repeat;
        background-size: cover
    }
}

.home__wrapper .home-banner-wrapper .home-banner-gradient {
    background: linear-gradient(180deg,#00000040 78.1%,#3f3d3d00);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.home__wrapper .home-banner-wrapper .home-banner-content {
    display: flex;
    flex-direction: column;
    height: 100%
}

.home__wrapper .home-banner-wrapper .home-banner-content .home-banner-details {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    justify-content: center;
    transition: transform .3s ease
}

.home__wrapper .home-banner-wrapper .home-banner-content .home-banner-details.focused {
    transform: translateY(-15px)
}

.home__wrapper .home-banner-wrapper .home-banner-content .home-banner-details .home-banner-heading {
    color: #fff;
    
   
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-top: 100px;
    text-shadow: 1px 1px 0 #00000059;
    transition: font-size .3s ease-in-out;
    z-index: 1
}

.home__wrapper .home-banner-wrapper .home-banner-content .home-banner-details .home-banner-heading.home-banner-heading-focused {
    font-size: 48px
}

@media screen and (max-width: 768px) {
    .home__wrapper .home-banner-wrapper .home-banner-content .home-banner-details .home-banner-heading {
        color:#fff;
        
       
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        text-shadow: 1px 1px 0 #00000059
    }
}

.home__wrapper .home__banner-img-container {
    background-image: linear-gradient(135deg,#0009,#0000 97%);
    border-radius: 0 0 10px 10px;
    height: 472px;
    margin: 0 auto;
    max-width: 1480px;
    overflow-x: hidden;
    width: 100%
}

@media screen and (max-width: 1480px) {
    .home__wrapper .home__banner-img-container {
        border-radius:0
    }
}

@media screen and (max-width: 780px) {
    .home__wrapper .home__banner-img-container {
        height:485px
    }
}

.home__wrapper .home__banner-img-container .home__banner-img {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 572px;
    position: relative;
    width: 100%
}

.home__wrapper .home__page__spaceing {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.home__near__you__container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px auto 0;
    max-width: 1280px;
    padding: 0 16px;
    width: 100%
}

.home__near__you__container .near__you__header {
    align-items: flex-start;
    display: flex;
    justify-content: space-between
}

.home__near__you__container .near__you__header .title {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.home__near__you__container .near__you__header .title h1 {
   
    font-size: 32px;
    font-weight: 500;
    line-height: 38px
}

@media screen and (max-width: 500px) {
    .home__near__you__container .near__you__header .title h1 {
        font-size:24px;
        font-weight: 500;
        line-height: 29px
    }
}

.home__near__you__container .near__you__header .title span {
    color: #666;
    font-size: 12px
}

.home__near__you__container .near__you__header .title .detect-location-btn {
    background: none;
    border: none;
    text-decoration: underline
}

.home__near__you__container .near__you__header .title p {
    color: #555;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

@media screen and (max-width: 500px) {
    .home__near__you__container .near__you__header .title p {
        font-size:12px;
        font-weight: 500;
        line-height: 18px
    }
}

.home__near__you__container .near__you__header .arrow {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 10px;
    justify-content: center
}

@media screen and (max-width: 500px) {
    .home__near__you__container .near__you__header .arrow svg {
        height:12px;
        width: 24px
    }
}

.home__near__you__container .near__you__header .arrow p {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .01em;
    line-height: 24px
}

@media screen and (max-width: 500px) {
    .home__near__you__container .near__you__header .arrow p {
        font-size:14px;
        font-weight: 500;
        letter-spacing: .01em;
        line-height: 21px
    }
}

.home__near__you__container .near__you__card__container {
    -ms-overflow-style: none;
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    padding: 0 5px;
    scrollbar-width: none;
    z-index: 0
}

.home__near__you__container .near__you__card__container::-webkit-scrollbar {
    display: none
}

.home__budget__container {
    background: #f2f2f2;
    width: 100%
}

.home__budget__container .home__budget {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 0 auto;
    max-width: 1270px;
    padding: 60px 16px;
    width: 100%
}

@media screen and (max-width: 500px) {
    .home__budget__container .home__budget {
        gap:16px;
        padding: 28px 16px
    }
}

.home__budget__container .home__budget__top h1 {
    color: #333;
    font-size: 32px;
    font-weight: 500;
    line-height: 38px
}

@media screen and (max-width: 500px) {
    .home__budget__container .home__budget__top h1 {
        font-size:20px;
        font-weight: 500;
        line-height: 24px
    }
}

.home__budget__container .home__budget__btm {
    grid-column-gap: 20px;
    display: grid;
    grid-template-columns: repeat(4,1fr)
}

@media screen and (max-width: 800px) {
    .home__budget__container .home__budget__btm {
        grid-row-gap:20px;
        grid-template-columns: repeat(2,1fr);
        grid-template-rows: repeat(2,1fr)
    }
}

.home__budget__container .home__budget__btm .home__budget__card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 32px;
    text-decoration: none
}

.home__budget__container .home__budget__btm .home__budget__card:hover {
    box-shadow: 0 8px 16px 0 rgba(51,51,51,.039)
}

@media screen and (max-width: 500px) {
    .home__budget__container .home__budget__btm .home__budget__card {
        padding:10px 12px
    }
}

.home__budget__container .home__budget__btm .home__budget__card h3 {
    color: #333;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px
}

@media screen and (max-width: 500px) {
    .home__budget__container .home__budget__btm .home__budget__card h3 {
        font-size:16px;
        font-weight: 500;
        line-height: 24px
    }
}

.home__budget__container .home__budget__btm .home__budget__card p {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

@media screen and (max-width: 500px) {
    .home__budget__container .home__budget__btm .home__budget__card p {
        font-size:10px;
        font-weight: 400;
        line-height: 15px
    }
}

.home__budget__container .home__budget__btm .home__budget__card .orange {
    color: #d9a624
}

.home__budget__container .home__budget__btm .home__budget__card .white {
    color: #fff
}

.home__gift__card__container {
    background: #fafafa;
    padding-bottom: 78px;
    width: 100%
}

@media screen and (max-width: 1000px) {
    .home__gift__card__container {
        padding:50px 16px
    }
}

.home__gift__card__container .home__gift__card {
    align-items: center;
    display: flex;
    gap: 60px;
    margin: 0 auto;
    max-width: 990px;
    width: 100%
}

@media screen and (max-width: 1000px) {
    .home__gift__card__container .home__gift__card {
        flex-direction:column;
        gap: 30px
    }
}

.home__gift__card__container .home__gift__card .home__gift__card__left {
    width: 100%
}

.home__gift__card__container .home__gift__card .home__gift__card__left .card {
    align-items: center;
    background: #0f0f0f;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    padding: 64px 144px;
    width: 439px
}

@media screen and (max-width: 1000px) {
    .home__gift__card__container .home__gift__card .home__gift__card__left .card {
        width:100%
    }
}

.home__gift__card__container .home__gift__card .home__gift__card__left .card span h1 {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: .0999544635px;
    line-height: 24px;
    text-align: center
}

.home__gift__card__container .home__gift__card .home__gift__card__left .card span h1 strong {
    -webkit-text-fill-color: #0000;
    text-fill-color: #0000;
    background: linear-gradient(146.07deg,#bd9a64 15%,#fbde98 48.75%,#bd9a64 87%);
    -webkit-background-clip: text;
    background-clip: text;
    text-align: center
}

.home__gift__card__container .home__gift__card .home__gift__card__right {
    display: flex;
    flex-direction: column;
    gap: 20px
}

@media screen and (max-width: 1000px) {
    .home__gift__card__container .home__gift__card .home__gift__card__right {
        align-items:center;
        justify-content: center
    }
}

.home__gift__card__container .home__gift__card .home__gift__card__right h1 {
    color: #333;
    font-size: 40px;
    font-weight: 500;
    line-height: 48px
}

@media screen and (max-width: 1000px) {
    .home__gift__card__container .home__gift__card .home__gift__card__right h1 {
        text-align:center
    }
}

.home__gift__card__container .home__gift__card .home__gift__card__right p {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

@media screen and (max-width: 1000px) {
    .home__gift__card__container .home__gift__card .home__gift__card__right p {
        text-align:center
    }
}

.home__gift__card__container .buy__gift {
    all: unset;
    align-items: center;
    border: 1px solid #333;
    border-radius: 35px;
    color: #333;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    justify-content: center;
    line-height: 21px;
    padding: 12px 28px;
    width: max-content
}

.home-new-search-wrapper {
    cursor: pointer;
    height: auto;
    transition: transform .3s ease;
    width: 100%
}

.home-new-search-wrapper.focused {
    transform: translateY(0)
}

.home-new-search-wrapper .home-new-search-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%
}

.home-new-search-wrapper .home-new-search-content .home-new-search-input {
    align-items: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: #f5f5f51f;
    border: 1px solid #e2e2e299;
    border-radius: 35px;
    cursor: pointer;
    display: flex;
    gap: 1rem;
    height: 60px;
    padding: 23px 30px;
    transition: .3s ease;
    width: 475px
}

@media screen and (max-width: 800px) {
    .home-new-search-wrapper .home-new-search-content .home-new-search-input {
        width:90vw
    }
}

.home-new-search-wrapper .home-new-search-content .home-new-search-input.focused {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: #f5f5f5;
    border: 1px solid #e2e2e299;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px
}

.home-new-search-wrapper .home-new-search-content .home-new-search-input input {
    background: #0000;
    border: none;
    color: #fff;
    cursor: pointer;
   
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    outline: none;
    width: 100%
}

@media screen and (max-width: 800px) {
    .home-new-search-wrapper .home-new-search-content .home-new-search-input input {
        pointer-events:none
    }
}

.home-new-search-wrapper .home-new-search-content .home-new-search-input input.focused,.home-new-search-wrapper .home-new-search-content .home-new-search-input input.focused::placeholder {
    color: #000
}

.home-new-search-wrapper .home-new-search-content .home-new-search-input input::placeholder {
    color: #fff;
   
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    opacity: .6
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: #f5f5f5;
    border: 1px solid #e2e2e299;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    height: auto;
    padding: 12px 30px
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper h4 {
    color: #000;
   
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: .2px;
    line-height: 150%
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper .home-search-recent-content {
    display: flex;
    flex-direction: column;
    height: auto;
    max-height: 160px;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-top: 12px
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper .home-search-recent-content::-webkit-scrollbar {
    width: 3px
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper .home-search-recent-content::-webkit-scrollbar-thumb {
    background-color: #888
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper .home-search-recent-content::-webkit-scrollbar-thumb:hover {
    background-color: #555
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper .home-search-recent-content::-webkit-scrollbar-track {
    background-color: #f1f1f1
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper .home-search-recent-content .search-recent-locations {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 6px
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper .home-search-recent-content .search-recent-locations:hover {
    background: rgba(51,51,51,.047);
    border-radius: 6px
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper .home-search-recent-content .search-recent-locations .search-recent-locations-left {
    align-items: center;
    display: flex;
    gap: 5px
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper .home-search-recent-content .search-recent-locations .search-recent-locations-left .search-recent-img {
    align-items: center;
    border-radius: 4px;
    display: flex;
    height: 30px;
    justify-content: center;
    width: 30px
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper .home-search-recent-content .search-recent-locations .search-recent-locations-left .search-recent-img img {
    border-radius: inherit;
    height: 100%;
    object-fit: cover;
    width: 100%
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper .home-search-recent-content .search-recent-locations .search-recent-locations-left .search-recent-text h4 {
    color: var(--text-clr-grey-900);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    width: 250px
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper .home-search-recent-content .search-recent-locations .search-recent-locations-left .search-recent-text h5 {
    color: #666;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper .home-search-recent-content .search-recent-locations .search-recent-locations-right svg {
    cursor: pointer;
    height: 8px;
    width: 8px
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper .home-search-recent-content .search-recent-locations .search-recent-locations-right span {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper .home-search-recent-content .search-recent-locations .search-recent-locations-right span h5 {
    color: #666;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper .home-search-recent-content .recent-search-wrapper {
    justify-content: space-between
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper .home-search-recent-content .recent-search-wrapper .recent-search-container {
    display: flex;
    flex-direction: column
}

.home-new-search-wrapper .home-new-search-content .home-search-recent-wrapper .home-search-recent-content .recent-search-wrapper .recent-search-container span {
    font-size: 12px
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: #f5f5f5;
    border: 1px solid #e2e2e299;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    height: 370px;
    height: auto;
    isolation: isolate;
    padding: 12px 30px;
    position: relative;
    width: 475px
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-options-content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-options-content .home-search-readd-dates {
    display: flex;
    gap: 10px
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-options-content .home-search-readd-dates .re-check-in-out-btn {
    align-items: center;
    background: #f5f5f5;
    border: 2px solid #000;
    border-radius: 1.4375rem;
    color: #000;
    display: flex;
   
    font-size: 12px;
    font-weight: 600;
    gap: 10px;
    height: 46px;
    justify-content: left;
    line-height: 18px;
    width: 200px
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-options-content .home-search-readd-dates .re-check-in-out-btn svg {
    color: #fff
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-options-content button {
    align-items: center;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 23px;
    color: #000;
    display: flex;
   
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    height: 46px;
    justify-content: space-between;
    line-height: 150%;
    opacity: .6;
    padding: 20px 14px;
    width: 200px
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-options-content button.btn-clicked {
    background: #f5f5f5;
    border: 2px solid #000;
    border-radius: 1.4375rem;
    color: #000;
   
    font-size: .75rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-add-guests-wrapper {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    height: auto;
    left: 0;
    position: absolute;
    top: 110%;
    width: 475px;
    z-index: 2
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-add-guests-wrapper .home-search-add-guests-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    padding: 24px 29px;
    width: 100%
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-add-guests-wrapper .home-search-add-guests-content .home-add-guests-details {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-add-guests-wrapper .home-search-add-guests-content .home-add-guests-details .home-add-guests-type {
    display: flex;
    flex-direction: column
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-add-guests-wrapper .home-search-add-guests-content .home-add-guests-details .home-add-guests-type h3 {
    color: #000;
   
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-add-guests-wrapper .home-search-add-guests-content .home-add-guests-details .home-add-guests-type p {
    color: #666;
   
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-add-guests-wrapper .home-search-add-guests-content .home-add-guests-details .home-add-guest-qty {
    align-items: center;
    display: flex;
    gap: 10px
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-add-guests-wrapper .home-search-add-guests-content .home-add-guests-details .home-add-guest-qty svg {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 17.5px;
    cursor: pointer;
    height: 20px;
    width: 20px
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-add-guests-wrapper .home-search-add-guests-content .home-add-guests-details .home-add-guest-qty svg path {
    fill: #000;
    opacity: 1
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-add-guests-wrapper .home-search-add-guests-content .home-add-guests-btn {
    display: flex;
    justify-content: center
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-add-guests-wrapper .home-search-add-guests-content .home-add-guests-btn button {
    align-items: center;
    background: #2d66a1;
    border: none;
    border-radius: 100px;
    color: #fff;
    display: flex;
   
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    gap: 10px;
    justify-content: center;
    line-height: 20px;
    outline: none;
    padding: 12px 34px;
    text-align: right;
    width: 129px
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-add-amenities-wrapper {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    height: 174px;
    left: 0;
    position: absolute;
    top: 207px;
    width: 475px
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-add-amenities-wrapper .home-search-add-amenities-content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 24px 20px
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-add-amenities-wrapper .home-search-add-amenities-content .home-add-amenities-header {
    display: flex;
    justify-content: space-between;
    width: 100%
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-add-amenities-wrapper .home-search-add-amenities-content .home-add-amenities-header h3 {
    color: #000;
   
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-add-amenities-wrapper .home-search-add-amenities-content .home-add-amenities-header p {
    color: #666;
    cursor: pointer;
   
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-decoration-line: underline
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-add-amenities-wrapper .home-search-add-amenities-content .home-add-amenities-options .amenity-btn {
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 35px;
    color: #666;
    display: inline-flex;
    flex-shrink: 0;
   
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    gap: 8px;
    height: 40px;
    justify-content: center;
    line-height: 150%;
    padding: 12px 20px
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-add-amenities-wrapper .home-search-add-amenities-content .home-add-amenities-options .amenity-btn.active {
    background: #ecf0f9;
    border: 1px solid #2d66a1;
    border: 1px solid var(--Brand-Primary-Blue---OLD,#2d66a1);
    border-radius: 35px;
    color: #000;
    color: var(--newui-2021-black-grays-dark-text,#000)
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-btn {
    display: flex;
    justify-content: center;
    padding-top: 24px;
    width: 100%
}

.home-new-search-wrapper .home-new-search-content .home-search-options-wrapper .home-search-btn button {
    align-items: center;
    background: #2d66a1;
    border: none;
    border-radius: 100px;
    color: #fff;
    display: flex;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    gap: 10px;
    justify-content: center;
    line-height: 20px;
    outline: none;
    padding: 12px 34px;
    text-align: right;
    width: 415px
}

.home-search-add-dates {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.home-search-add-dates .check-in-out-btn {
    align-items: center;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 23px;
    color: #3339;
    display: flex;
   
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    gap: 6px;
    height: 46px;
    line-height: 150%;
    outline: none;
    padding: 14px 20px;
    width: 200px
}

.home-search-add-dates .check-in-out-btn:active {
    background: #f5f5f5;
    border: 1.5px solid #000;
    border-radius: 23px
}

.home-search-add-dates .add-guest-btn {
    align-items: center;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 23px;
    color: #000;
    display: flex;
   
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    height: 46px;
    justify-content: space-between;
    line-height: 150%;
    opacity: .6;
    padding: 20px 14px;
    width: 200px
}

.home-search-add-dates .add-guest-btn.btn-clicked {
    background: #f5f5f5;
    border: 2px solid #000;
    border-radius: 1.4375rem;
    color: #000;
   
    font-size: .75rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%
}

.query-wrapper {
    align-items: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: #f5f5f51f;
    border: 1px solid #e2e2e299;
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding: 23px 30px;
    position: relative;
    transition: all .3s ease-in-out;
    width: 675px
}

@media screen and (max-width: 800px) {
    .query-wrapper {
        width:90vw
    }
}

.query-wrapper .query-content {
    flex-direction: column
}

.query-wrapper .query-content,.query-wrapper .query-content .query-title {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%
}

.query-wrapper .query-content .query-title h4 {
    color: #fff;
   
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: .2px;
    line-height: 150%
}

.query-wrapper .query-content .query-body {
    margin-top: 20px
}

.query-wrapper .query-content .query-body,.query-wrapper .query-content .query-body .query-input {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%
}

.query-wrapper .query-content .query-body .query-input input {
    background: #0000;
    border: none;
    color: #f5f5f5;
    height: 100%;
    outline: none;
    overflow: hidden;
    resize: none;
    width: 100%
}

.query-wrapper .query-content .query-body .query-button button {
    align-items: center;
    background: #cccdd138;
    border: 1px solid #dee1e4;
    border-radius: 32px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    flex-shrink: 0;
   
    font-size: 14px;
    justify-content: center;
    letter-spacing: .25px;
    margin-left: 8px;
    outline: 0;
    padding: 8px 24px
}

.query-wrapper .query-close {
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem
}

.query-wrapper .query-close svg {
    height: 10px;
    width: 10px
}
.button__one svg path,
.button__two svg path {stroke: #fff;}
.button__one.disabled svg,
.button__two.disabled svg {
  opacity: 0.3;
  cursor: not-allowed;
}

.button__one:not(.disabled) svg,
.button__two:not(.disabled) svg {
  opacity: 1;
  cursor: pointer;
}

.button__one:not(.disabled):hover svg,
.button__two:not(.disabled):hover svg {
  transform: scaleX(1.2);
}

/* Life at Karjat Sanctuary */
 .gallery-container {
            width: 100%;
            height: 50vh;
            position: relative;
            overflow: hidden;
        }

        .image-gallery {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            gap: -20px;
            padding: 0 50px;
            position: relative;
        }

        .image-card {
            position: relative;
            background: #fff;
            padding: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
            flex-shrink: 0;
            z-index: 1;
        }

        .image-card img {
            display: block;
            width: 250px;
            height: 250px;
            object-fit: cover;
        }

        /* Specific positioning and rotations to match reference */
        .image-card:nth-child(1) {
            transform: rotate(-15deg) translateY(-20px);
            margin-right: -30px;
        }

        .image-card:nth-child(2) {
            transform: rotate(-8deg) translateY(30px);
            margin-right: -40px;
            z-index: 2;
        }

        .image-card:nth-child(3) {
            transform: rotate(2deg) translateY(-10px);
            margin-right: -40px;
            z-index: 3;
        }

        .image-card:nth-child(4) {
            transform: rotate(12deg) translateY(40px);
            margin-right: -30px;
            z-index: 2;
        }

        .image-card:nth-child(5) {
            transform: rotate(18deg) translateY(-30px);
            margin-right: -40px;
            z-index: 1;
        }

        .image-card:nth-child(6) {
            transform: rotate(25deg) translateY(20px);
            z-index: 2;
        }

        .image-card:nth-child(7) {
            transform: rotate(-12deg) translateY(-40px);
            margin-left: -30px;
            z-index: 1;
        }
.image-card:nth-child(8) {
            transform: rotate(12deg) translateY(40px);
            margin-left: -30px;
            z-index: 1;
        }
        .image-card:nth-child(9) {
            transform: rotate(-5deg) translateY(20px);
            margin-left: -40px;
            z-index: 2;
        }
        .image-card:nth-child(10) {
            transform: rotate(8deg) translateY(-20px);
            margin-left: -40px;
            z-index: 3;
        }
        /* Hover effects */
        .image-card:hover {
            transform: rotate(0deg) translateY(0px) scale(1.1);
            z-index: 10;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
        }

        /* Slider functionality */
        .slides-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .slides-container {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.8s ease-in-out;
        }

        .slide1 {
            width: auto;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: -20px;
            padding: 0 50px;
        }

        /* Navigation */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: #000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .nav-btn:hover {
            background: #fff;
            transform: translateY(-50%) scale(1.1);
        }

        .prev-btn {
            left: 30px;
        }

        .next-btn {
            right: 30px;
        }

        /* Dots */
        .dots-container {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 100;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #fff;
            transform: scale(1.2);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .image-card img {
                width: 160px;
                height: 200px;
            }
            
            .slide1 {
                padding: 0 30px;
            }
        }

        @media (max-width: 768px) {
            /* .image-card img {
                width: 120px;
                height: 150px;
            } */
            
            .image-card {
                padding: 10px;
            }
            
            .slide1 {
                padding: 0 20px;
            }
            
            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            
            .prev-btn,  
            .next-btn {
                display: none;
            }
            .slides-container{overflow-x: scroll;width: 100%;}
        }

        @media (max-width: 480px) {
            /* .image-card img {
                width: 80px;
                height: 100px;
            } */
            
            .image-card {
                padding: 8px;
            }
            
            /* Adjust rotations for mobile */
            .image-card:nth-child(1) {
                transform: rotate(-10deg) translateY(-10px);
                margin-right: -15px;
            }
            
            .image-card:nth-child(2) {
                transform: rotate(-5deg) translateY(15px);
                margin-right: -20px;
            }
            
            .image-card:nth-child(3) {
                transform: rotate(1deg) translateY(-5px);
                margin-right: -20px;
            }
            
            .image-card:nth-child(4) {
                transform: rotate(6deg) translateY(20px);
                margin-right: -15px;
            }
            
            .image-card:nth-child(5) {
                transform: rotate(10deg) translateY(-15px);
                margin-right: -20px;
            }
            
            .image-card:nth-child(6) {
                transform: rotate(15deg) translateY(10px);
            }
            
            .image-card:nth-child(7) {
                transform: rotate(-8deg) translateY(-20px);
                margin-left: -15px;
            }
        }