/*For AutoComplete*/
:root {
    --font-family: 'Plus Jakarta Sans', sans-serif;
    --color-prim: #034833;
    --color-sec: #f0ecea;
    --color-accent: #84c034;
    --color-dark: #090e0c;
    --color-gray: #979993;


    --spacing-xxs: .15rem;
    --spaceing-xs: .25rem;
    --spaceing-s: .5rem;
    --spacing-m: .75rem;
    --spacing-l: 1rem;
    --spacing-xl: 1.5rem;
    --spacing-2xl: 2rem;
    --spacing-3xl: 3rem;
    --spacing-4xl: 4rem;
    --spacing-5xl: 5rem;
    --spacing-6xl: 6rem;
    --spacing-10xl: 10rem;
    --spacing-12xl: 12rem;
    --spacing-15xl: 15rem;

}

.btn_wide_text_arrow .icon_arrow {
    width: 1rem;
    height: 1rem;
    filter: invert(1);
}

.btn_arrow_diag {
    position: relative;

    flex-shrink: 0;

    border: 2px var(--color-accent) solid;
    border-radius: 1rem;

    aspect-ratio: 1;
    overflow: hidden;
}

.btn_arrow_diag img {
    width: 1rem !important;
    height: 1rem !important;
    margin: auto;

    transition: transform .5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.btn_arrow_diag::before {
    content: '';
    position: absolute;

    width: 100%;
    height: 100%;

    transform: translate(-150%, 150%);

    background-image: url('/Assets/icons/icon_pointer_diag.png');
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: center;

    transition: transform .75s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.btn_arrow_diag:hover img {
    transform: translate(190%, -190%);
}

.btn_arrow_diag:hover::before {
    transform: translate(0%, 0%);
}

.icon_play {
    width: 2.5rem;
    height: 2.5rem;
}

header,
.header_fake {
    display: flex;
    position: relative;
    top: 0;

    width: 100%;
    max-width: var(--max-section-width);
    min-height: 5rem;

    margin: auto;
    padding: var(--spacing-l) var(--spacing-3xl);

    justify-content: space-between;
    align-items: center;

    background-color: #f1f5eb78;
    backdrop-filter: blur(1rem);

    z-index: 50;
}

header {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    max-width: none;

    box-shadow: 1px 1px 5px rgba(109, 112, 108, 0.5);
    backdrop-filter: blur(20px);
}

.btn_nav {
    display: none;
}

nav {
    display: flex;

    justify-self: center;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: var(--spacing-xl);

    font-weight: 800;
    list-style: none;

    color: var(--color-prim);
}

.nav-list li {
    position: relative;
}

.nav-list a {
    display: inline-block;

    position: relative;
    overflow: hidden;
}

/* transition: color, transform .25s cubic-bezier(0.165, 0.84, 0.44, 1); */

.nav-list li a span {
    display: inline-block;

    color: var(--color-prim);
    letter-spacing: 1.5px;

    transition: transform .45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-list li a:hover span {
    transform: translate3d(-200%, 0, 0);
}

.nav-list li a::before {
    content: attr(data-replace);
    position: absolute;

    width: 100%;
    height: 100%;

    left: 0%;
    top: 0;

    transform-origin: 100% 50%;
    transform: translate3d(200%, 0, 0);


    letter-spacing: 1.5px;

    transition: transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-list li a::after {
    content: '';
    position: absolute;

    bottom: 0%;
    left: 0%;

    width: 100%;
    height: 2px;

    transform: scaleX(0);
    transform-origin: 100% 50%;
    background-color: var(--color-accent);

    transition: transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-list li a:hover::after {
    transform: scaleX(1);
    transform-origin: 0% 50%;
}

.nav-list li a:hover::before {
    transform: translate3d(0, 0, 0);
}

.btn_book {
    justify-self: flex-end;
}

.btn_book button {
    position: relative;
    padding: 1rem 1.75rem;
    border-radius: 8rem;

    align-items: center;
    text-align: center;

    background-color: var(--color-accent);

    overflow: hidden;
    z-index: 0;
}

.btn_book button span {
    color: var(--color-sec);
    font-size: .8rem;
    z-index: 1;
    transition: color 1s ease-in;

}

.btn_book button::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;

    left: -50%;
    top: -50%;

    transform: scale(0);
    transform-origin: 50% 100%;

    background-color: var(--color-dark);
    border-radius: 48% 52% 57% 43% / 45% 53% 47% 55%;

    transition: transform .45s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.btn_book button:hover::before {
    transform: scale(1, 1);
}

.btn_book button:hover span {
    color: var(--color-accent);
}

.h_logo {
    width: 7rem;
}

footer.container {
    flex-direction: column;
    background-color: var(--color-prim);
    color: var(--color-sec);
    padding: 0;
}

footer h2,
footer h3 {
    color: var(--color-sec);
}

footer h2 {
    max-width: 20ch;
    font-size: 1.2rem;
}

.footer_cta {
    display: flex;
    position: relative;

    width: 100%;
    max-width: 1200px;

    padding: clamp(2rem, 2vw, 5rem) clamp(1rem, 5vw, 3rem);
    gap: clamp(2rem, 2vw, 4rem);

    justify-content: space-between;
    align-items: center;
}

.footer_cta::after {
    content: '';
    position: absolute;
    top: 100%;

    width: 300%;
    height: 1px;

    background-color: rgba(82, 99, 83, 0.8);
}

.footer_cta::before {
    content: '';
    position: absolute;
    left: 50%;

    width: 1.2px;
    height: 70%;

    background-color: rgba(82, 99, 83, 0.8);
}

.cta_content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.grid_footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    width: 100%;
    max-width: 1200px;

    padding: clamp(2rem, 2vw, 5rem) clamp(1rem, 5vw, 3rem);
    gap: clamp(2rem, 2vw, 4rem);
    align-items: start;
}

.footer_cta img {
    width: 3.5rem;
    height: 3.5rem;
}

.footer_info {
    display: flex;
    flex-direction: column;

    gap: 1.5rem;
}

.footer_info_row {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: .5rem;
}

.footer_info_row .social-icons {
    justify-self: start;
    position: relative;
    padding: 0;
    background-color: rgba(255, 255, 255, 0);
}

.footer_info_row .social-icons img {
    filter: invert(1) grayscale(1);
}

.footer_info_row .social-icons img:nth-child(2) {
    filter: invert(0) grayscale(1);
}

.footer_info_row img {
    width: 2rem;
}

.footer_list {
    display: flex;
    flex-direction: column;
    width: fit-content;
    gap: 1rem;
}

.footer_list a {
    font-weight: 600;
    font-size: .8rem;
}

.nav_footer .txt_pointers img {
    width: .5rem;
}

.input_email_sub {
    position: relative;
    width: 100%;
    max-width: 200px;
}

.input_email_sub input {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    color: var(--color-sec);
    background-color: #18251f;
    padding: .75rem 1rem;
    border: none;
    border-radius: 2rem;
}

.input_email_sub button {
    position: absolute;
    top: -.05rem;
    right: 0;
    transform: translate(calc(.25rem + 50%));
    width: 2.75rem;
}

a:hover,
button:hover {
    cursor: pointer;
}

.section-title-center {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*Sections*/

/*Hero*/
.section-hero {
    height: fit-content;

    padding: 0 var(--spacing-12xl);
    border-radius: calc(1.5rem + 1vw);

    background-color: #034833;
    color: var(--color-sec);

    z-index: 1;
}

.section-hero .row {
    padding-bottom: 0;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image {
    height: 70vh;
    max-height: 524px;
    min-height: clamp(325px, 70vw, 575px);
    min-width: clamp(250px, 40vw, 400px);

    margin-top: var(--spacing-4xl);

    object-position: center 80%;
    object-fit: cover;

    filter: brightness(1.2) contrast(.85) saturate(.8) hue-rotate(-10deg);
}

.hero-visuals {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

.hero-buttons {
    display: flex;
    width: 100%;
    gap: clamp(1rem, 2.5vw, 2rem);
    padding: clamp(1.5rem, 2vw, 2rem) 0;
    font-size: .9rem;
}

.btn_wide_text_arrow {
    display: flex;
    position: relative;

    gap: .75rem;
    padding: clamp(var(--spacing-m), 4vw, var(--spacing-l)) clamp(var(--spacing-l), 4vw, var(--spacing-xl));
    align-items: center;

    border: 1.5px solid var(--color-sec);
    border-radius: 12rem;

    transition: transform .25s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    overflow: hidden;
    z-index: 0;
}

.btn_wide_text_arrow .icon_arrow {
    transform: translateX(0%);
    transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn_wide_text_arrow::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 300%;

    left: -50%;
    top: -50%;

    transform: scale(0);
    transform-origin: 20% 50%;

    background-color: var(--color-accent);
    border-radius: 48% 52% 57% 43% / 45% 53% 47% 55%;

    transition: transform .45s cubic-bezier(0.215, 0.610, 0.355, 1);
    z-index: -1;

}

.btn_wide_text_arrow.no-fill::before {
    background-color: rgba(255, 255, 255, 0);

}

.btn_wide_text_arrow:hover::before {
    transform: scale(1);
}

.btn_wide_text_arrow:hover .icon_arrow {
    transform: translateX(100%);
}

.btn_watchvideo {
    align-items: center;
    font-weight: 600;

    gap: 1rem;
}

/*Featured section*/
.g-col {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    justify-items: center;
    justify-content: center;
    gap: clamp(1rem, 2vw, 2rem);
}

.card-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: max-content;
    height: fit-content;

    gap: 1rem;
    padding: clamp(var(--spacing-l), 3vw, var(--spacing-2xl)) clamp(var(--spacing-l), 4vw, var(--spacing-xl));

    border: 1.5px var(--color-gray) solid;
    border-radius: 1rem;
}

.card-info p {
    max-width: 42ch;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1rem;
}

.card-info img {
    width: 5rem;
    aspect-ratio: 1;
}


.grid-whyus {
    display: grid;
    gap: 1rem;

    align-items: start;
    justify-items: center;

    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
}

.whyus-txt-card {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;

    gap: 1rem;
    padding: var(--spacing-xl);
    border-radius: 1rem;

    color: var(--color-sec);
    background-color: var(--color-accent);
}

.whyus-txt-card h3 {
    font-size: 2.5rem;
}

.whyus-txt-card p {
    color: var(--color-sec);
    font-weight: 600;
}

.span-2 {
    grid-row: span 2;
}

.span-3 {
    grid-row: span 3;
}

.span-4 {
    grid-row: span 4;
}

.whyus-badge {
    max-width: 12rem;
}

.whyus-img-lg {
    height: 100%;
}

.whyus-img-md img,
.whyus-img-lg img {
    height: 100%;
    width: 100%;
    max-width: 270px;
    object-fit: cover;
    border-radius: 1.5rem;
    filter: contrast(.9) saturate(.9) hue-rotate(5deg);
}

.whyus-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-whyus {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-template-rows: auto;
    justify-content: space-between;
    gap: 1rem;
}

.card-whyus .card-title {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.card-whyus .card-info {
    min-width: 275px;
    padding: clamp(var(--spacing-m), 2vw, var(--spacing-l));

}

.card-whyus .card-info img {
    width: 3rem;
    height: 3rem;
}

.whyus-buttons {
    display: flex;
    margin-top: 2rem;
    gap: 2rem;
    font-size: .9rem;
}

.whyus-buttons .btn_wide_text_arrow {
    border-color: var(--color-accent);
}

.whyus-buttons .icon_arrow {
    filter: invert(0);
}

.icon_phone {
    width: 3.25rem;
    height: 3.25rem;
}

/*Trusted customer section*/
.section-trusted-customer,
.section-trusted-customer .row {
    width: 100%;
}

.carousel-infinite {
    display: flex;
    position: relative;

    width: 100%;
    height: 4rem;

    align-items: center;
    overflow: hidden;

    &:hover .carousel-slide {
        animation-play-state: paused;
    }
}

.carousel-slide {
    position: absolute;
    --slide-width: 8rem;

    width: var(--slide-width);
    height: auto;

    left: max(calc(var(--slide-width) * var(--total-slides)), 3000px);

    animation: scrollInfini 60s infinite linear;
    animation-delay: calc(60s / var(--total-slides) * (var(--total-slides) - var(--index)) * -1);
}



/*Section Countires | Cards*/
.section-carousel-countries {
    background-color: var(--color-prim);
    border-radius: 3rem;
}

.section-carousel-countries .row {
    align-items: start;
}

.content-countries-txt {
    max-width: 52ch;
}

#carousel-countries .carousel-card {
    display: flex;
    position: relative;
    height: 25rem;
    min-width: 14rem;

    align-items: end;
    border-radius: 1.5rem;

    background-color: var(--color-gray);
    overflow: hidden;
    transition: transform 1s ease-in;
}

#carousel-countries .carousel-card.first {
    min-width: 20rem;
}

#carousel-countries .carousel-card .bg-img {
    position: absolute;

    height: 100%;
    width: 100%;
    height: 100%;
    filter: brightness(.75) contrast(.8) saturate(.9) hue-rotate(-10deg);
}

#carousel-countries .carousel-card.first .bg-img {
    filter: brightness(1.1) contrast(.9) saturate(.9) hue-rotate(5deg);
}

#carousel-countries .carousel-card .bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#carousel-countries .carousel-card-info {
    display: none;
    flex-direction: column;

    width: 100%;
    max-width: 28ch;

    border-radius: 1.5rem;

    padding: 1rem;
    margin: 1rem;
    gap: 1rem;

    background-color: #3b581e5e;
    backdrop-filter: blur(10px);
    z-index: 1;

}

#carousel-countries .carousel-card.first .carousel-card-info {
    display: flex;
}

#carousel-countries .carousel-card-info .btn_wide_text_arrow {
    width: fit-content;
}

#carousel-countries .carousel-card h3 {
    color: var(--color-sec);
}


/*Carousel preset*/
.card-carousel-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

.carousel-slider {
    display: flex;
    width: 100%;
    justify-content: start;
    overflow-x: clip;

    gap: 1.5rem;
}

.carousel_btns {
    display: flex;
    width: 100%;

    gap: 1rem;
    justify-content: end;

}

.btn_carsl_nav {
    width: 3rem;
    aspect-ratio: 1;
    transition: transform .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn_carsl_nav:nth-child(1) {
    transform: scaleX(-1);
}

.btn_carsl_nav:nth-child(1):hover {
    transform: scale(-1.1, 1.1);
}

.btn_carsl_nav:nth-child(2):hover {
    transform: scale(1.1);
}

/*Section visatype*/
.section-visaType .g-col {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-template-rows: auto
}

.section-visaType h2 {
    text-align: center;
}

.grid-visaType {
    width: 100%;
}

.card-visaType {
    width: 100%;
    flex-direction: row;

    gap: clamp(1rem, 2vw, 2rem);
}

.card-visaType .card-visa-img {
    align-self: start;
    height: 80%;
    max-height: 250px;
    aspect-ratio: 1;
}

.card-visaType .card-visa-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 1rem;
    filter: contrast(.8) saturate(.9) hue-rotate(10deg);
}

.card-visaType .card-content {
    display: flex;
    flex-direction: column;

    height: 100%;
    gap: 1rem;
}

.card-visaType .icons-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    align-self: flex-end;
}

.card-visaType .icons-container button {
    width: 3.25rem;
    height: 3.25rem;
}

.icons-container .icon {
    width: 2.5rem;
    height: 2.5rem;
}


/*SECTION UrbanCity*/
.section-urbanCity {}

.section-urbanCity .txt_eyebrow {
    display: flex;
    gap: .5rem
}

.content-title {
    width: 100%;
}

.section-urbanCity .txt_eyebrow img {
    width: 2.5rem;
    object-fit: contain;
}

.urbanCity-grid {
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
}

.urbanCity-card {
    gap: .5rem;
    padding: 1.25rem 1.5rem;
}

.card-info .img_card {
    width: 4rem;
    margin-bottom: .75rem;
}

.img_card {
    width: 2rem;

    border-radius: 100%;
    border: var(--color-accent) 2px solid;

    filter: contrast(.75) brightness(1.2);
}

.txt_pointers {
    display: flex;
    gap: .5rem;
}

.txt_pointers img {
    width: 1rem;
    object-fit: contain;
}

/*SECTION STATS*/
.row-stats.grid-whyus {
    width: 100%;
    grid-template-columns: auto auto;
}

.stats-left-img {
    height: 100%;
    max-width: 320px;

    align-self: flex-end;
    justify-self: flex-end;
}

.stats-left-img img {
    border-radius: 1rem;
    object-fit: cover;
}

.stats-right-card {
    width: 100%;
    height: 100%;
    min-width: 700px;
}

.stats-right-card .btn_wide_text_arrow {
    width: fit-content;
}

.stats-right-card .btn_wide_text_arrow img {
    filter: invert(0);
}

.stats-right-card .card-info {
    width: 100%;
    height: 100%;
    max-width: none;

    border: none;

    background-color: rgb(255, 255, 255);
}

.stats-right-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    width: 100%;

    justify-items: center;
    align-self: flex-end;

    padding: clamp(var(--spacing-m), 5vw, var(--spacing-2xl));
    gap: clamp(0, 15vw, 1rem);

    border-radius: .5rem;

    color: var(--color-sec);
    background-color: #84c034;
}

.stat h3 {
    font-size: clamp(1.5rem, 2vw, 2.5rem);
}

.stat p {
    font-size: .8rem;
}

.carousel-card {
    animation: fade .8s cubic-bezier(0.455, 0.03, 0.715, 1);
}

/*Section Experinces*/

#carousel-experince .carousel-card {
    display: flex;
    position: relative;

    min-width: 14rem;
    aspect-ratio: 1;
    align-items: end;
    justify-content: flex-end;
    overflow: visible;
    transition: transform 1s ease-in;
}



#carousel-experince .carousel-card .bg-img {
    position: absolute;

    top: 0;
    right: 0;

    height: 90%;

    aspect-ratio: 1;


    filter: contrast(.8) saturate(.9) hue-rotate(5deg);
}

#carousel-experince .carousel-card .bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;

}

#carousel-experince .carousel-card-info {
    display: flex;
    flex-direction: column;

    width: 100%;

    border-radius: 1.5rem 0 1.5rem 1.5rem;

    align-self: flex-end;
    justify-self: end;

    padding: 1rem;
    margin-left: 2rem;

    gap: 1rem;

    background-color: white;
    z-index: 1;

}

.conatiner_p {
    display: flex;
}

/*Section voyages*/
.section-voyages {
    position: relative;
    height: fit-content;

    border-radius: calc(1.5rem + 1vw);

    background-color: rgba(255, 254, 251, 0.712);
    color: var(--color-sec);

    z-index: 1;

}

.voyages-container {
    display: flex;
    position: relative;
    width: 100%;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
}

.voyages-cards {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-width: 650px;

    justify-content: space-between;
    gap: 1rem;

    color: var(--color-prim);
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.content-text p {
    font-size: .8rem;
}

.voyages-card {
    display: flex;
    width: 100%;

    justify-content: space-between;
    align-items: center;

    padding: clamp(1rem, 2vw, 1.25rem);
    border-radius: 1rem;
    border: #dfe0dd9f 1px solid;
    background-color: white;
}

.voyages-card button {
    width: 3rem;
    height: 3rem;
}

.voyages-img-container {
    display: flex;
    justify-content: end;
}



.voyages-img-card {
    display: flex;
    position: relative;
    max-width: 320px;
}

.voyages-img-container img {
    aspect-ratio: 5/6;

    object-fit: cover;
    border-radius: 2rem;
}

.social-icons {
    position: absolute;
    display: flex;

    left: 50%;
    bottom: 5%;

    transform: translateX(-50%);

    padding: .5rem .75rem;
    gap: .75rem;

    border-radius: 1.5rem;

    background-color: white;
}

.social-icons img {
    width: 1rem;

    aspect-ratio: 1;
    object-fit: contain;

    border-radius: 0;
    transition: all .5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.social-icons img:hover {
    filter: brightness(.6) contrast(1.5);
}

/*Section Reviews*/


.prop-bg-waveImg {
    position: absolute;
    top: -15%;
    left: 0;
    opacity: .135;
}



#carousel-reviews {
    background-color: var(--color-accent);
    padding: clamp(1rem, 3vw, 2rem);
    border-radius: 1rem;
}

#carousel-reviews .carousel-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: var(--color-sec);
}

#carousel-reviews .carousel-card-info {
    font-size: 2rem;
}

#carousel-reviews .carousel-card-info img {
    width: 2.25rem;
    height: 2.25rem;

}

#carousel-reviews .carousel-card-info p {
    font-size: clamp(1rem, 2vw, 1.35rem);
}

.container-reviews-img img {
    border-radius: 1rem;
}

#carousel-reviews .card-name {
    display: flex;
    gap: 1rem;
}

#carousel-reviews .card-name img {
    width: 3rem;
    aspect-ratio: 1;
    border-radius: 100%;
}

/*Section Steps*/
.section-steps {
    position: relative;
    height: fit-content;

    border-radius: calc(1.5rem + 1vw);

    background-color: rgba(255, 254, 251, 0.712);
    color: var(--color-sec);

    z-index: 1;
}

.section-steps .row {
    gap: 5rem;
}

.section-steps .card-info:nth-child(2) {
    margin-top: 2rem;
}

.section-steps .card-info h2 {
    font-family: var(--font-outline);
}

/*Section Blogs*/
.section-blogs .carousel-card {
    flex-direction: column;
    min-width: 16rem;
    border-radius: 1rem;
    overflow: hidden;
}

.section-blogs .carousel-card .bg-img {
    aspect-ratio: 1;
}

.section-blogs .carousel-card .bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-blogs .carousel-card .carousel-card-info {
    display: flex;
    flex-direction: column;

    height: 100%;

    gap: .5rem;
    padding: clamp(.5rem, 3vw, 1rem) clamp(1rem, 3vw, 1.5rem);

    border: #dbdcd9e2 solid 1.5px;
    border-top: none;
    border-radius: 0 0 1rem 1rem;

}

.section-blogs .carousel-card .conatiner_p {
    flex-direction: column;
    gap: .5rem;

}

.section-blogs .carousel-card .carousel-card-info .btn_wide_text_arrow {
    border: none;
    padding-left: 0;

    font-size: .75rem;
    color: var(--color-prim);
}

.section-blogs .carousel-card .carousel-card-info .icon_arrow {
    filter: invert(0);
}

@media (max-width:1920px) {
    html {
        font-size: 16px;
    }

    .stats-right-card {
        min-width: 600px;
    }
}

@media (max-width:1020px) {

    header,
    .header_fake {
        max-width: none;
        padding: .5rem;
    }

    .nav-list {
        gap: 1rem
    }

}

@media (max-width:920px) {
    .section-hero {
        max-width: none;
        margin: 0;
        border-radius: 0;
    }

    .hero-text {
        align-items: start;
    }

    .section-carousel-countries {
        background-color: var(--color-prim);
        border-radius: 0;
    }

    .stats-right-card {
        width: 100%;
        height: 100%;
        min-width: 300px;
    }

    .stats-right-card {
        min-width: 400px;
    }

    #carousel-experince .carousel-card-info {
        padding: .5rem;
    }

    nav {
        display: none;
    }

    .btn_nav {
        display: flex;
        position: absolute;
        right: 1.5rem;
    }

    .btn_nav img {
        width: 2.25rem;
    }

    header {
        padding: 1.25rem 1.75rem;
    }

    header.expandeded {
        background-color: #c2c6bbc5;
    }

    .btn_book {
        margin-right: 5rem;
    }

    .btn_book button {
        padding: 1rem;
    }


    header.expandeded nav {
        display: flex;

        position: absolute;
        width: 100vw;
        height: 100vh;
        min-height: 1000px;

        top: calc(50% - .25rem);
        left: 0;

        overflow-y: scroll;

        margin: 3rem 0;
        padding: 1.25rem 1.75rem;

        background-color: #c2c6bbc5;
        backdrop-filter: blur(20px);
    }

    header.expandeded .nav-list {
        height: 100%;
        flex-direction: column;
    }

    .h_logo {
        width: 8rem;
    }

    .nav-list li a span {
        font-size: 1.75rem;
    }

    .nav-list li a::before {
        font-size: 1.75rem;
    }

    .section-steps .card-info:nth-child(2) {
        margin-top: 0;
    }
}

@media (max-width:720px) {
    .section-hero {
        padding: clamp(3rem, 2vw, 6rem) 0;
        padding-bottom: 0;
    }

    .section-voyages {
        padding: clamp(3rem, 2vw, 6rem) 0;
    }

    .section-visaType .g-col {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .card-visaType {
        flex-direction: column;
        gap: 1rem;
    }

    .card-visaType .card-content {
        gap: .5rem;

    }

    .urbanCity-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .urbanCity-card {
        gap: .25rem;
        padding: .75rem
    }

    .stats-left-img {
        display: none;
    }

    .row-stats.grid-whyus {
        width: 100%;
        grid-template-columns: 100%;
    }

    .voyages-container {
        flex-direction: column;
    }

    .voyages-img-container img {
        width: 100%;
    }

    .container-reviews-img {
        display: none;
    }


}

/*Animtaions*/
@keyframes fade {
    from {
        opacity: 0;
        /* transform: translateX(15%); */
    }

    to {
        opacity: 1;
        /* transform: translateX(0%); */

    }
}

@keyframes scrollX {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(80%);
    }
}

@keyframes scrollInfini {
    to {
        left: calc(-1 * var(--slide-width));
    }
}

.anim_hover_grow img {
    transition: transform .25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.anim_hover_grow:hover img {
    transform: scale(1.2);
}