/*:root{*/
/* colors */
/*--color-primary: #FDE100;
  --color-white: #fff;
  --color-background: #FDFCF2;
  --color-text: #1D1D1D;*/


/* spaces */
/*--spacing-small: 1rem;
  --spacing-medium: 16px;
  --spacing-large: 100px;*/

/* Typography */
/*--fs-heading-1: 3.375rem;*/ /* 54px / 16px */
/*--fs-heading-2: 2.4375rem;*/ /* 39px / 16px */
/*--fs-heading-3: 2.0625rem;*/ /* 33px / 16px */
/*--fs-heading-4: 1.6875rem;*/ /* 27px / 16px */
/*--fs-heading-5: 1.4375rem;*/ /* 23px / 16px */
/*--fs-heading-6: 1.1875rem;*/ /* 19px / 16px */
/*--fs-text: 1rem;*/ /* 16px / 16px */
/*--fs-small: 0.8125rem;*/ /* 13px / 16px */
/*--fs-xs: 0.6875rem;*/ /* 11px / 16px */

/*--wrapper-inline: 16px;
  --radius: 4px;
}*/

/*:root{*/
/* colors */
/*--color-primary: #FDE100;
    --color-white: #fff;
    --color-background: #FDFCF2;
    --color-text: #1D1D1D;*/


/* spaces */
/*--spacing-small: 1rem;
    --spacing-medium: 16px;
    --spacing-large: 100px;*/

/* Typography */
/*--fs-heading-1: 54px;
    --fs-heading-2: 39px;
    --fs-heading-3: 33px;
    --fs-heading-4: 27px;
    --fs-heading-5: 23px;
    --fs-heading-6: 19px;
    --fs-text: 16px;
    --fs-small: 13px;
    --fs-xs: 11px;

    --radius: 4px;
}*/
::selection {
    background-color: #fddf006a;
    /
}

/* For Firefox, use -moz- prefix */
::-moz-selection {
    background-color: #fddf006a;
}


* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

html, body {
    font-size: 100%; /* Base font size for 16px (1rem = 16px) */
}

/* Adjust font size for smaller screens */
@media (max-width: 1200px) {
    html, body {
        font-size: 100%; /* 1rem = 14.4px */
    }
}

@media (max-width: 768px) {
    html, body {
        font-size: 100%; /* 1rem = 12.8px */
    }
}

@media (max-width: 480px) {
    html, body {
        font-size: 100%; /* 1rem = 11.2px */
    }
}



body {
    font-family: 'CF ModGrotesk', sans-serif;
    /* font-size: 16px; */
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.712);
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'CF Ifigeneia', serif !important;
    font-weight: bold;
    margin: 0;
    color: var(--color-text);
}

p {
    margin: 0;
    font-family: 'CFModGrotesk', sans-serif;
    /*    font-weight: 300;*/
}

ul {
    list-style: none;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--color-text);
}

.wrapper {
    /* padding: 4rem 1rem; */
    max-width: 1400px;
    margin: 0 auto;
}

.mb-section {
    margin-bottom: var(--spacing-large);
}

@media(max-width: 950px) {
    .mb-section {
        margin-bottom: 40px;
    }
}

.italic-heading {
    font-style: italic;
}

.u-light {
    font-weight: 300;
}

/* Travel starts now */
.travel-starts-now {
    background: var(--color-background);
    text-align: center;
    padding: 96px 1rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* min-height: 50vh; */
}

.tsn__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    /*  gap: 16px;*/
}

    .tsn__content .u-italic {
        font-weight: 300;
        font-style: italic;
    }

.travel-starts-now h1 {
    font-size: 68px;
    font-weight: 400;
    line-height: 70px;
    margin-bottom: 10px;
}

.travel-starts-now p {
    max-width: 500px;
    margin: 0 auto;
    font-size: var(--fs-heading-5);
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 34px;
}

@media(max-width: 600px) {
    .travel-starts-now h1 {
        font-size: 54px;
        font-weight: 400;
        line-height: 54px;
        margin-bottom: 10px;
    }

    .travel-starts-now p {
        max-width: 500px;
        margin: 0 auto;
        font-size: var(--fs-text);
        font-weight: 300;
        margin-bottom: 40px;
        line-height: 28px;
    }
}




.btn {
    width: 100%;
    position: relative;
    top: 0;
    text-align: center;
    padding: 16px 24px;
    border-radius: var(--radius);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    box-shadow: 0 4px 8px rgb(208 135 0 / 0%);
    transition: 0.3s all ease;
    cursor: pointer;
}



    .btn:hover {
        top: -2px;
        box-shadow: 0 4px 8px rgb(208 135 0 / 20%);
    }

.btn-fill {
    background-color: var(--color-primary);
    width: fit-content;
    margin: 0 auto;
}

.btn-outline {
    border: 2px solid var(--color-primary);
}


/*  
/* Get inspired */
/* 

/* .get-inspired__container{
    width: 100%;
    overflow: hidden;
} */

/* .get-inspired{
 overflow: hidden;
 width: 98vw;
} */



.get-inspired__content {
    /* display: flex;
    width: 10000px;
    flex-direction: row; 
    align-items: flex-end;  */
    /* position: relative;  */
    /* left: 20vw; */
}



.mouse-icon {
    position: absolute;
    z-index: 9999;
    /* width: 30px; */
    /* height: 30px; */
    /* background-color: red; */
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.3s ease-out;
}

@media screen and (max-width: 600px) {

    .mouse-icon {
        display: none;
    }
}

.mouse-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 4px; */
    transition: 0.3s all ease;
}

.small-bullets {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.272);
    border-radius: 100px;
}

.bigmouse-bullet {
    width: 50px;
    height: 50px;
    border: 1px dashed rgba(0, 0, 0, 0.603);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    margin-left: 8px;
    margin-right: 8px;
    animation: rotate 4s linear infinite; /* Rotates infinitely */
    transition: 0.3s all ease;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bm-bullet-inside {
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.333);
    border-radius: 100px;
}

.get-inpired__heading {
    /* width: 600px; */
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: end;
    flex-direction: column;
    padding: 2rem;
    width: 400px;
    height: 700px;
    /* margin-left: 10vw; */
}



.get-inspired-text {
    height: 100%;
}

.get-inpired__heading p {
    max-width: 300px;
}

.travel-type__text {
    font-weight: 500;
    white-space: nowrap;
}


.get-inpired__heading .gi-text {
    font-weight: 300;
    margin-top: 13px;
}

@media(max-width: 600px) {
    .travel-type__text {
        font-size: 10.66px;
    }

    .get-inpired__heading .gi-text {
        font-weight: 300;
        margin-top: 12px;
        line-height: 20px;
    }
}

.getIsnpiredContainer {
    padding: 20px 0;
}
    /* ::-webkit-scrollbar {
    display: none;
  } */
    .getIsnpiredContainer .swiper-slide:first-child {
        width: 600px;
        display: flex;
        justify-content: center;
    }

    .getIsnpiredContainer .swiper-slide {
        width: 330px;
    }

@media(max-width: 600px) {
    .getIsnpiredContainer .swiper-slide {
        width: 313px;
    }
}

.sm-devices {
    display: none;
}

@media(max-width: 1050px) {

    .sm-devices {
        display: flex;
    }

    .getIsnpiredContainer .swiper-slide:first-child {
        display: none;
    }

    .getIsnpiredContainer .swiper-slide:nth-child(2) {
        margin-left: 16px;
    }

    .get-inpired__heading {
        height: 100%;
        padding: 16px;
    }
}


.get-inspired__slide {
    position: relative;
    width: 330px;
    height: 700px;
    transition: 0.3s all ease;
}

@media(max-width: 600px) {
    .get-inspired__slide {
        width: 313px;
        height: 584px;
    }
}

.get-inspired__slide:hover {
    transform: rotate(1deg);
}

.get-inspired__carousel {
    display: flex;
    gap: 2rem;
}


.gi-details-info {
    display: flex;
    justify-content: space-between;
}

    .gi-details-info .seeTrip {
        display: flex;
        align-items: center;
        height: fit-content;
        align-self: end;
        padding: 12px 16px;
        color: white;
        border: 1px solid white;
        border-radius: 100px;
        font-size: 11.63px;
        text-transform: uppercase;
    }

@media(max-width: 600px) {
    .gi-details-info .seeTrip {
        font-size: 10.66px;
    }
}

.gi-details-info p {
    color: white;
    display: flex;
    text-align: end;
    flex-direction: column;
}

.gi-details-info .from {
    text-transform: uppercase;
    font-size: 11.50px;
}

.gi-details-info .price {
    text-transform: uppercase;
    font-size: var(--fs-heading-6);
    font-weight: 500;
}


.taxes {
    font-size: 9px;
    background-color: #ffffffb0;
    border-radius: 4px;
    padding: 4px 8px;
    color: black;
}



.get-inspired__img-cover img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    left: 0;
    width: 200%;
    height: 100%;
    object-fit: cover;
    /* transform: translateY(-50%); */
    /* transition: transform 0.3s ease; */
}

@media(max-width: 600px) {
    .swiper-slide .get-inspired__img-cover img {
        width: 200%;
    }
}

/* .parallax {
    transform: translate3d(0, 0, 0);
  }
  
  .parallax-effect {
    position: relative;
    overflow: hidden;
  } */
.get-inspired__img-cover .parallax-image {
    position: relative;
    width: 50vw;
    height: 100%;
    /* position: absolute; */
    /* right: -10vw;
  width: 80vw;
  height: 100%; */
    /* will-change: transform; */
    /* transition: transform 0.1s linear; */
    /* background-size: cover;
  background-position: center center; 
  z-index: -1; */
}

@media(max-width: 800px) {
    .get-inspired__img-cover .parallax-image {
        position: absolute;
        right: 0px;
        width: 150vw;
        height: 100%;
        /* will-change: transform; */
        /* transition: transform 0.1s linear; */
        background-size: cover;
        background-position: center center;
        z-index: -1;
    }
}

.get-inspired__img-cover {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .get-inspired__img-cover .overlay {
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.40);
        position: absolute;
        top: 0;
        z-index: 1;
    }


.get-inspired__slide-info {
    z-index: 10;
    height: 100%;
    display: grid;
    position: relative;
    align-content: space-between;
    padding: 32px 16px;
    ;
    position: absolute;
    top: 0;
}

.gi-heading, .gi-subinfo {
    color: white !important;
    font-size: var(--fs-text);
    line-height: 22px;
}

.gi-subinfo {
    line-height: 18px;
    font-size: 14px;
    margin-bottom: 46px;
    font-weight: 300;
}

@media(max-width: 600px) {
    .gi-subinfo {
        line-height: 18px;
        font-size: 13px;
    }
}

.gi-heading {
    font-size: 32px;
    ;
    line-height: 40px;
    font-weight: 400;
    margin-bottom: 4px;
}

@media(max-width: 600px) {
    .gi-heading {
        font-size: 27px;
        line-height: 32px;
    }
}

.gi-h1 {
    font-size: var(--fs-small);
    font-weight: 400;
    text-transform: uppercase;
}

.gi-h2 {
    font-size: 68px;
    ;
    line-height: 55px;
    font-weight: 500;
}

@media(max-width: 600px) {
    .gi-h2 {
        font-size: 54px;
    }
}

.gi-h2 span {
    font-weight: 100;
    font-style: italic;
}

.gi-text {
    font-size: var(--fs-text);
}

.get-inspired__top-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bottom-info {
    display: flex;
    flex-direction: column;
    /*gap: 20px;*/
}

.gi-destination {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.gi-destination__map-cover {
    width: 54px;
}

    .gi-destination__map-cover img {
        width: 100%;
    }

.gi-destination__text {
    font-size: 12px;
    text-transform: uppercase;
}

.travel-type {
    background-color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    width: fit-content;
    justify-self: end;
}

.gi-sub-info {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.gi-btn__discover {
    border: 1px solid white;
    border-radius: 100px;
    padding: 8px 20px;
    color: white;
    font-size: var(--fs-small);
}

.gi-price {
    color: white;
}

.gi-price__total {
    font-weight: 700;
}

.getInspiredArrowLeft {
    position: absolute;
}

.getInspiredArrowRight {
    position: absolute;
}

.slider-arrow.getInspiredArrowLeft.swiper-button-disabled {
    display: none;
}

.slider-arrow.getInspiredArrowRight.swiper-button-disabled {
    display: none;
}


.slider-arrow.reviewBulletLeft, .slider-arrow.reviewBulletRight {
    box-shadow: 0 4px 10px rgba(0,0,0,0.3)
}

@media(max-width: 800px) {
    .reviews .reviewBulletLeft {
        position: absolute;
        top: 50% !important;
        left: 10px;
    }

    .reviews .reviewBulletRight {
        position: absolute;
        top: 50% !important;
        right: 10px;
    }
}

.highlightArrowLeft {
    position: absolute;
    z-index: 999;
    bottom: 20%;
    left: 8px !important;
    z-index: 90;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 100px;
    transition: 0.3s all ease;
    transform: scale(1);
}

    .highlightArrowLeft.swiper-button-disabled {
        display: none;
    }

.highlightArrowRight.swiper-button-disabled {
    display: none;
}

.highlightArrowRight {
    position: absolute;
    z-index: 999;
    bottom: 20%;
    right: 8px !important;
    z-index: 90;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 100px;
    transition: 0.3s all ease;
    transform: scale(1);
}

.xpArrowLeft {
    position: absolute;
    z-index: 999;
    top: 25%;
    z-index: 90;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 100px;
    transition: 0.3s all ease;
    transform: scale(1);
}

.xpArrowRight {
    position: absolute;
    z-index: 999;
    top: 25%;
    z-index: 90;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 100px;
    transition: 0.3s all ease;
    transform: scale(1);
}

@media(max-width: 800px) {
    .xpArrowRight, .xpArrowLeft {
        top: 45%;
    }
}



.inside-arrow {
    border: 1px dashed black;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    cursor: pointer;
    transition: 0.3s all ease;
    padding: 4px;
}

.arrow-left {
    left: 50px;
}

.arrow-right {
    right: 50px;
}

@media(max-width: 600px) {
    .arrow-left {
        left: 4px;
    }

    .arrow-right {
        right: 4px;
    }
}

.slider-arrow.getInspiredArrowRight, .slider-arrow.getInspiredArrowLeft {
    /* position: absolute; */
    top: 50%;
    z-index: 90;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 100px;
    transition: 0.3s all ease;
    transform: scale(1);
}




.galleryArrowLeft {
    position: absolute;
    z-index: 999;
    left: 16px !important;
    bottom: 45%;
    z-index: 90;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 100px;
    transition: 0.3s all ease;
    transform: scale(1);
}

    .galleryArrowLeft.swiper-button-disabled {
        display: none;
    }

.galleryArrowRight.swiper-button-disabled {
    display: none;
}

.galleryArrowRight {
    position: absolute;
    z-index: 999;
    bottom: 45%;
    right: 16px !important;
    z-index: 90;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 100px;
    transition: 0.3s all ease;
    transform: scale(1);
}

.review-pagination {
    bottom: 100px !important;
}

@media(max-width: 600px) {
    .slider-arrow.getInspiredArrowRight, .slider-arrow.getInspiredArrowLeft {
        width: 50px;
        height: 50px;
    }

    /* .inside-arrow {
            width: 32px !important;
            height: 32px !important;
        }*/
}


.allCardsArrowLeft {
    position: absolute;
    z-index: 999;
    left: 50px !important;
    bottom: 40%;
    z-index: 90;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 100px;
    transition: 0.3s all ease;
    transform: scale(1);
}


    .allCardsArrowLeft.swiper-button-disabled {
        display: none;
    }

.allCardsArrowRight.swiper-button-disabled {
    display: none;
}

.allCardsArrowRight {
    position: absolute;
    z-index: 999;
    bottom: 40%;
    right: 50px !important;
    z-index: 90;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 100px;
    transition: 0.3s all ease;
    transform: scale(1);
}

@media(max-width: 600px) {
    .allCardsArrowLeft {
        left: 8px !important;
    }

    .allCardsArrowRight {
        right: 8px !important;
    }
}


/* E Magazine */
.e-magazine__slider {
    /*        max-width: 80vw;*/
    margin: 0 auto;
    /* left: -50px; */
    position: relative;
}

@media(max-width: 600px) {
    /*.e-magazine__slider {*/
    /*    max-width: 100%;*/
    /*}*/
}

.e-magazine__slider .swiper-slide {
    /* width: 50vw; */
    /*        aspect-ratio: 1;*/
    /* height: 50vw; */
}

    .e-magazine__slider .swiper-slide .content {
        width: 100%;
        height: 100%;
        /* height: 50vw; */
        /* aspect-ratio: 1; */
    }

    .e-magazine__slider .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.emagazineSwiperConf {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.eMagazineBullets {
    width: fit-content !important;
}

.emagazineArrowLeft, .emagazineArrowRight {
    width: fit-content;
    cursor: pointer;
}

.eMagazineBullets .swiper-pagination-bullet-active {
    background: var(--color-primary);
}

@media(max-width: 600px) {
    .e-magazine__slider .swiper-slide img {
        /* width: 80vw;
    height: 80vw; */
        object-fit: cover;
    }
}

/* .e-magazine__slider .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
} */


/* Footer */
footer {
    background-color: #f8f8f8;
    padding-top: 20px;
}

.footer-info__container {
    padding: 12px 40px;
}

.footer-info__content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
}



.flogo-container {
    width: 210px;
}

    .flogo-container img {
        width: 100%;
    }

@media(max-width: 1200px) {


    .proud-member-of {
        margin-top: 20px;
    }
}

.proud-member-of h1 {
    font-size: 20px;
}

.proud-of__img-container {
    display: flex;
    align-items: center;
    gap: 24px;
    /* justify-content: space-between; */
}

.po__img-placeholder {
    /* max-width: 50px; */
    max-height: 50px;
}

    .po__img-placeholder img {
        height: 35px;
    }

.office-container h1 {
    font-size: var(--fs-heading-5);
    font-weight: 500;
    text-transform: capitalize;
}

    .office-container h1::first-letter {
        text-transform: uppercase;
    }

.versus-office-info {
    display: flex;
    gap: 40px;
}

.office-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

    .office-container p {
        font-weight: 500;
        font-size: var(--fs-text);
    }

.office-data {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .office-data a {
        font-size: var(--fs-text);
        font-weight: 300;
        display: grid;
        grid-template-columns: 24px 1fr;
        font-family: 'CF ModGrotesk', sans-serif !important;
    }

        .office-data a span {
            font-family: 'CF ModGrotesk', sans-serif !important;
        }

.footer-external__links a {
    font-family: 'CF ModGrotesk', sans-serif !important;
}

.office-container__icon i {
    color: #222222;
    font-size: 12px;
}

.join-versus-travel h1 {
    font-size: var(--fs-heading-6);
    font-weight: 400;
}

.join-versus-travel p {
    font-weight: 300;
    line-height: 20px;
}

.join-versus-travel {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 344px;
}

.footer-main-info {
    display: grid;
    align-content: space-between;
}

.join-versus-travel input {
    padding: 10px 13px;
    border: 1px solid black;
    font-family: "CF ModGrotesk" !important;
}

.join-versus-travel button {
    background-color: black;
    color: white;
    outline: none;
    border: none;
    line-height: 24px;
    padding: 8px 16px;
}

.copyrights {
    padding: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.178);
    text-align: center;
    display: flex;
    gap: 6px;
    align-items: center; /* Align content vertically */
    justify-content: center;
}

.copyright-text {
    font-weight: 600;
    font-size: var(--fs-small);
}

.created {
    text-align: right; /* Align to the right */
    font-size: 14px;
}

    .created p {
        font-weight: 600;
        font-size: var(--fs-small);
    }



@media(max-width:1200px) {
    .footer-info__container {
        padding-inline: 16px;
    }

    .footer-info__content {
        grid-template-columns: 1fr;
    }

    .join-versus-travel {
        width: 300px
    }

        .join-versus-travel input {
            padding: 8px 16px;
            font-size: 16px;
        }

        .join-versus-travel button {
            font-size: 16px;
            padding: 8px 16px;
        }
}

@media(max-width:630px) {
    .versus-office-info {
        display: flex;
        flex-direction: column;
    }

    .join-versus-travel {
        width: 100%
    }
}

.join-versus-travel form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
/*e-magazine */
.e-magazine__slider {
    width: 100%;
}

.e-magazine-heading {
    font-size: 90px;
    margin: 0 auto;
    text-align: center;
    font-weight: 400;
}

@media(max-width: 600px) {
    .e-magazine-heading {
        font-size: var(--fs-heading-1);
    }
}

swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.blog-title {
    font-size: 30px;
    line-height: 30px;
    margin: 32px 16px 8px;
}

@media (max-width: 600px) {
    .blog-title {
        font-size: 20px;
        line-height: 22px;
    }
}

@media (min-width: 770px) and (max-width:1400px) {
    .blog-title {
        font-size: 20px;
        line-height: 22px;
    }
}

.blog-text {
    font-weight: 300;
}


.swiperEMagazine1 {
    max-width: 80vw;
}

@media(max-width: 600px) {
    /*.swiperEMagazine1{*/
    /*    max-width: 100%;*/
    /*}*/
}

.blog-card.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    height: 20vw;
    width: 500px;
}

@media(max-width: 1000px) {
    .blog-card.swiper-slide {
        height: 30vw;
    }

    .swiperEMagazine1 {
        max-width: 95vw;
    }
}
/*@media(max-width: 600px) {*/
/*    .blog-card.swiper-slide {*/
/*        */
/*        height: 150px;*/
/*    }*/
/*    */
/*}*/


/*.blog-card {
        display: flex;*/ /* Allows flex positioning */
/*justify-content: center;*/ /* Centers the content */
/*align-items: center;*/ /* Centers vertically */
/*background-position: center;
        background-size: cover;
        height: 27vw;*/
/*    aspect-ratio: 1;*/
/*    width: 500px;*/
/*}*/

/*.

.blog-card:nth-child(1) {
    transform: rotate(45deg) scale(1.2);
}

.blog-card:nth-child(2) {
    transform: rotate(15deg) scale(1.1);
}

.blog-card:nth-child(3) {
    transform: rotate(0deg) scale(1);
}

.blog-card:nth-child(4) {
    transform: rotate(-15deg) scale(0.9);
}

.blog-card:nth-child(5) {
    transform: rotate(-45deg) scale(0.8);*/
/*}*/

.swiper-slide img {
    display: block;
    width: 100%;
}

.content {
    position: relative;
    text-align: center;
}

    .content h1 {
        /* position: absolute;
  top: 50%;
  left: 50%; */
        transform: translate(-50%, -50%);
        font-size: 2rem;
        color: white;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    }


.e-magazine__slider-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    /* margin-left: 180px; */
}



/* Γιατι να επιλεξετε το Versus Travel */
.why-choose-versus {
    /* margin-top: var(--spacing-large); */
}

    .why-choose-versus.isApp {
        margin-bottom: 150px;
    }

.wcv__heading {
    text-align: center;
    margin-bottom: 47px;
}

    .wcv__heading p {
        text-transform: uppercase;
        font-size: var(--fs-text);
        font-weight: 300;
        margin-bottom: 8px;
    }

    .wcv__heading h1 {
        font-size: 90px;
        font-weight: 400;
        line-height: 60px;
    }

@media(max-width: 600px) {
    .wcv__heading h1 {
        font-size: 54px;
        font-weight: 400;
        line-height: 60px;
    }

    .wcv__heading p {
        text-transform: uppercase;
        font-size: var(--fs-small);
        font-weight: 300;
        margin-bottom: 0px;
    }
}

.wcv-container {
    margin-top: 1rem;
}

.wcv-content {
    display: grid;
    grid-template-columns: 1fr 385px 1fr;
    grid-template-areas:
        " wch-items wch-images wch-text";
    max-width: 1600px;
    margin: 0 auto;
    /* padding: 1rem; */
    width: 95%;
    /* min-height: 920px; */
}

.wch-item {
    text-align: center;
    max-width: 350px;
    margin-top: 50px;
    position: relative;
    transition: transform 0.1s ease-out;
    display: grid;
}

    .wch-item img {
        display: flex !important;
        justify-self: center;
    }


@media(max-width: 950px) {
    .wch-item {
        text-align: left;
    }
}

.wch-details {
    grid-area: wch-items;
}

.wcv-img-container {
    grid-area: wch-images
}

.wcv-text {
    grid-area: wch-text;
}


.wch-details .wch-item:nth-child(2) {
    left: 60px;
}

.wch-details .wch-item:nth-child(3) {
    left: 250px;
}




.wch-item h1 {
    font-size: var(--fs-heading-3);
    font-weight: 500;
    line-height: 36px;
}

.wch-item p {
    font-size: var(--fs-text);
    font-weight: 300;
    line-height: 26px;
}

.wcv-img-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.wcv-img-big-placeholder {
    width: 312px;
    height: 513px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    rotate: -2deg;
}




.wcv-img-big-placeholder__content {
    background-size: cover; /* Ensures the image covers the container */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center center; /* Start from the top */
    height: 140%; /* Adjust the height as needed */
    /* background-attachment: fixed; You can keep this as default for non-rotated elements */
}


.wcv-img-small-placeholder {
    width: 206px;
    height: 336px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 30px;
    bottom: -40px;
    rotate: 2deg;
}

.wcv-img-small-placeholder__content {
    width: 100%;
    height: 200%;
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
}


@media(max-width: 1200px) {
    .wcv-img-container {
        height: 480px;
    }

    .wcv-img-big-placeholder {
        width: 248px;
        height: 381px;
    }

    .wcv-img-small-placeholder {
        width: 152px;
        height: 235px;
    }

    .wch-item:nth-child(2) {
        margin-top: 150px;
    }

    .wch-item:nth-child(3) {
        margin-top: 60px;
    }
}

.wcv-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .wcv-text h2 {
        font-size: var(--fs-heading-3);
        line-height: 42px;
        font-weight: 500;
        max-width: 350px;
    }

    .wcv-text p {
        max-width: 350px;
        font-size: var(--fs-text);
        margin-top: 20px;
        font-weight: 300;
        line-height: 24px;
    }

@supports (-webkit-touch-callout: none) {
    .wcv-img-big-placeholder__content {
        background-attachment: scroll; /* Safari fallback */
    }
}

@media (max-width: 950px) {
    .wcv-content {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "wch-images"
            "wch-text"
            "wch-items"
    }

    .wch-item {
        display: grid;
        grid-template-columns: 40px 1fr;
        align-items: center;
        gap: 36px;
        ;
    }

    .wcv-img-big-placeholder__content {
        background-size: cover; /* Ensures the image covers the container */
        background-repeat: no-repeat; /* Prevents the image from repeating */
        background-position: center top; /* Start from the top */
        height: 100vh; /* Adjust the height as needed */
    }

    .wcv-img-container {
        margin: 0 auto;
        /* width: 60vw; */
    }

    .wcv-img-big-placeholder {
        width: 70vw;
        max-width: 400px;
        height: 100%;
        position: relative;
        margin: 0 auto;
    }

    .wcv-img-small-placeholder {
        width: 40vw;
        height: 30vh;
        max-width: 200px;
        position: absolute;
        bottom: -80px;
        right: 30px;
    }

    .wcv-text h2 {
        /*        font-size: var(--fs-heading-3);
        line-height: 42px;
        font-weight: 500;*/
        max-width: 700px;
        line-height: 40px;
        font-size: 39px;
    }

    .wcv-text p {
        max-width: 700px;
        line-height: 28px;
    }

    .wch-details {
        display: flex;
        flex-direction: column;
    }

        .wch-details .wch-item:nth-child(2) {
            left: 0;
        }

        .wch-details .wch-item:nth-child(3) {
            left: 0;
            margin-top: 0px;
        }

    .wcv-text {
        margin-top: 100px;
        display: flex;
        /*      flex-direction: row;*/
        gap: 8px;
        justify-content: center;
    }

    .wch-details {
        display: flex;
        /*      flex-direction: row;*/
        gap: 20px;
    }

    .wcv-text p {
        margin-top: 0;
    }

    .wch-item:nth-child(2) {
        margin-top: 0px;
    }

    .wch-details {
        margin-top: 40px;
    }

    .wch-item {
        margin: 0 auto;
    }
}

@media (max-width: 690px) {

    .wcv-container {
        padding-inline: 16px;
    }
    /*  .wcv-text{
      flex-direction: column;
      gap: 0;
  }*/
    .wcv-text h2 {
        max-width: 100%;
    }

    .wcv-text p {
        max-width: 100%;
    }
    /*  .wch-details{
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 0px;
  }*/

}

@media(max-width: 600px) {

    .wch__textes {
        text-align: left;
    }

    /*.wch-item img {*/
    /*    grid-area: image;*/
    /*    width: 100%;*/
    /*    max-width: 100px; !* Προσαρμογή μεγέθους *!*/
    /*}*/

    /*.wch-item h1,*/
    /*.wch-item p {*/
    /*    grid-area: text;*/
    /*}*/
}



.header-country {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}



.header-country__slider-wrapper {
    min-height: 100vh;
    height: 100%;
    width: 100%;
    position: relative;
}

.header-country__slider {
    min-height: 100vh;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}



.header-country__image-placeholder {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    top: 0;
    left: 0;
}

    .header-country__image-placeholder img {
        object-fit: cover;
        width: 105%;
        height: 105%;
        position: absolute;
        top: -2.5%;
        left: -2.5%;
    }


.header-country__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: clip-path 0.3s ease; /* Smooth transition */
}


.header-country__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    background-color: black;
    opacity: 0.6;
}

#custom-cursor {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 100%;
    pointer-events: none; /* Ensure it doesn't interfere with other elements */
    z-index: 1000;
    display: flex;
    justify-content: center;
    /*    left: -25px;
    top: -25px;*/
    /*    left: -25px;
    top: -25px;*/

    opacity: 100%;
    align-items: center;
    will-change: transform; /* Use transform for smoother movement */
    /* transition: transform 0.3s ease; Smooth transition for transform */
}

    #custom-cursor.isMobile {
        top: 25%;
        left: calc(100% - 120px);
    }

    #custom-cursor.isDesktop {
        left: -25px;
        top: -25px;
    }




@media(max-width: 1000px) {
    #custom-cursor {
        top: 14%;
        left: 70%;
        z-index: 99;
        pointer-events: all;
        display: flex;
        opacity: 1;
    }
}

/* 
@media(max-width: 700px){
  #custom-cursor {
   right: 20px;
   top: 100px;
  }
} */

.border-animation {
    width: 100%;
    height: 100%;
    pointer-events: none; /* Ensure it doesn't interfere with other elements */
    border-radius: 100%;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 2px dashed white;
    z-index: -1; /* Ensure it stays behind the text */
    animation: rotateCursor 50s linear infinite;
}

#custom-cursor h1 {
    font-size: 1.4rem;
    color: white;
    position: absolute; /* Keep the text centered */
}

#custom-cursor::before {
}

.overlay-carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

@media (pointer: coarse) {
    .overlay-carousel {
        pointer-events: auto;
    }
}

.overlay-carousel {
    position: absolute;
    top: 0;
    z-index: 12;
}

.slides-carousel {
    position: absolute;
    top: 0;
    z-index: 9;
}

@keyframes rotateCursor {
    0% {
        transform: rotate(0deg); /* Start at 0 degrees */
    }

    100% {
        transform: rotate(360deg); /* Rotate 360 degrees */
    }
}



@media(max-width: 600px) {
    .header-country {
        height: 100vh;
    }

    .overlay-carousel {
        height: 100vh;
    }
}




/* Country details */
.country-details__wrapper {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 130px;
    justify-content: space-between;
}

    .country-details__wrapper .column-2 {
        margin-top: 40px;
    }

@media(max-width: 1050px) {
    .country-details__wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

        .country-details__wrapper .column-2 {
            margin-top: 0px;
        }

    .country-details {
        margin-top: 120px;
    }
}

@media(max-width: 1000px) {

    .country-details {
        margin-top: 60px;
    }
}

@media(max-width: 600px) {
    .country-details {
        overflow: hidden;
    }
}

.country-name {
    text-transform: uppercase;
    font-weight: 300;
    font-size: var(--fs-text);
    line-height: 33.6px;
}

.country-title {
    font-size: var(--fs-heading-1);
    line-height: 53.6px;
    font-weight: 400;
    margin-bottom: 30px;
}

.country-text {
    font-size: var(--fs-heading-6);
    line-height: 33.6px;
    font-weight: 300;
}

.header-text {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    text-align: center;
    padding: 20px;
    transform: translate(-50%, -50%);
    z-index: 99;
    color: white;
}

.back-map {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    text-align: center;
    padding: 20px;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

@media(max-width: 800px) {
    .back-map {
        opacity: 0;
    }
}

.header-text p {
    font-size: var(--fs-heading-5);
}



.header-text h1 {
    color: white;
    font-size: 60px;
    line-height: 65.6px;
    max-width: 1100px;
    margin: 0 auto 20px;
    text-align: center;
    /*line-height: 100px;*/
    text-shadow: 0 6px 10px rgba(0, 0, 0, 0.475);
    font-weight: 500;
}

.geoArea .header-text h1 {
    font-size: 120px;
    line-height: 90px;
    font-weight: 500;
}

.dest.header-text h1 {
    font-size: 120px;
    line-height: 90px;
    font-weight: 400;
}


.geoArea .header-text p {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.dest.header-text p {
    font-size: 19px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

@media(max-width: 800px) {
    .header-text.trip h1 {
        font-size: 50px;
        line-height: 50px;
    }
}

@media(max-width: 600px) {

    .header-text p {
        font-size: var(--fs-text);
    }
}

@media(max-width: 600px) {
    .header-text.destination h1 {
        color: white;
        font-size: 90px;
        text-align: center;
        line-height: 70px;
        text-shadow: 0 6px 10px rgba(0, 0, 0, 0.475);
    }

    .header-text h1 {
        font-size: 50px;
        line-height: 45px;
    }


    .header-text.trip h1 {
        font-size: 33px;
        line-height: 49px;
    }
}

.header-hightlight {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: white;
    z-index: 13;
    max-width: 400px;
    /* opacity: 0; */
}

@media(max-width: 600px) {
    .header-hightlight {
        left: 16px;
    }
}

.header-hightlight .hightlight {
    /*            text-transform: uppercase;*/
    font-weight: 400;
    font-size: var(--fs-text);
}

.header-hightlight .heading {
    color: white;
    font-size: var(--fs-heading-3);
}

.header-hightlight .text {
    font-size: var(--fs-text);
    line-height: 20px;
}

.location__header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-duration {
    display: flex;
    justify-content: center;
    margin-top: 20px !important;
    gap: 8px;
    margin: 0 auto;
}


/* departure-dates */

.departure-dates__heading {
    font-size: var(--fs-heading-1);
    line-height: 60px;
    font-weight: 500;
}

.alternative-flight-text {
    margin-top: 20px;
    color: red;
    border-bottom: 1px solid red;
    width: fit-content;
}

.departure-dates__heading__mobile {
    display: none;
}

@media(max-width: 600px) {
    .departure-dates__heading {
        display: none;
    }

    .departure-dates__heading__mobile {
        display: block;
        font-size: 33px;
        font-weight: 500;
    }
}

.departure-dates__wrapper {
    width: 95%;
    margin: 0 auto;
}

.departure-dates__buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media(max-width: 600px) {
    .departure-dates__buttons {
        margin-top: 0px;
    }
}

.departure-dates__btns-year {
    display: flex;
    gap: 8px;
}

.departure-dates__btn {
    padding: 8px 16px;
    border-radius: 4px;
    color: black;
    width: 76px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    background-color: #fddf0000;
    border: 2px solid var(--color-primary);
    transition: 0.3s all ease;
}

    .departure-dates__btn:hover {
        background-color: #fddf0075;
    }

    .departure-dates__btn.active {
        background-color: var(--color-primary);
        font-weight: 500;
        cursor: pointer;
    }

    .departure-dates__btn.inactive {
        background-color: #E6E6E6;
        border: 2px solid #E6E6E6;
        color: #7E7E7E;
        font-weight: 400;
    }

.departure-dates__btns-months {
    display: grid;
    grid-template-columns: repeat(auto-fill, 76px);
    flex-wrap: wrap;
    gap: 8px;
}



.departure-dates__flight {
    margin: 20px 0;
    background-color: white;
    /* border: 1px solid black; */
    width: 100%;
    /* padding: 20px; */
    border-radius: 8px;
    min-width: 280px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

    .departure-dates__flight.disabled {
        opacity: 0.7;
    }

.departure-dates__flight-seats {
    display: flex;
    justify-content: space-between;
}

    .departure-dates__flight-seats .soldOut-text {
        padding: 4px 8px;
        border-radius: 4px;
        width: fit-content;
        background-color: #FFC779;
        font-size: var(--fs-small);
        font-weight: 600;
    }

.mob-badges__container {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 4px;
}

.departure-dates__flight__main {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px;
}

.departure-dates__flight .departure-dates__flight__main {
    background-color: #fffffffd;
    border-radius: 8px 8px 8px 8px;
    overflow: hidden;
    transition: 0.3s all ease;
}

.departure-dates__flight.active .departure-dates__flight__main {
    background-color: #d1d1d145;
    transition: 0.3s all ease;
    border-radius: 8px 8px 0px 0px;
    /* border-radius: 8px 8px 0px 0px; */
    /* overflow: hidden; */
}

.departure-dates__flight-seats.limited {
    background-color: rgb(255, 52, 52);
    color: white;
}

.departure-dates__flight-duration p {
    font-size: var(--fs-small);
    font-weight: 600;
}

.departure-dates__flight-days {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 8px;
    border-bottom: 1px dashed black;
}

.departure-dates__flight-price {
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
}

    .departure-dates__flight-price .price-number {
        color: #2b2b2b;
        padding: 4px 8px;
        border: 1px solid black;
        border-radius: 4px;
        width: fit-content;
    }

.departure-dates__flight__container {
    gap: 20px;
}


    .departure-dates__flight__container.mobile {
        display: none;
    }

@media(max-width: 800px) {
    .departure-dates__flight__container.mobile {
        display: block;
    }
}

.departure-dates__flight-price .arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: 1px dashed black;
    background-color: white;
    border-radius: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    rotate: 0deg;
    transition: 0.3s all ease;
}

.departure-dates__flight.active .departure-dates__flight-price .arrow {
    rotate: 180deg;
}


.departure-dates__flight__extra-details {
    /* background-color: rgb(238, 238, 238); */
}

.departure-dates__flight__extra-details-wrapper {
    padding: 20px;
}

.departure-dates__desk .departure-dates__flight__extra-details-wrapper {
    background-color: rgb(241 241 241 / 6%);
}

.extra-details__heading {
    display: flex;
    gap: 4px;
    align-items: center;
}

    .extra-details__heading img {
        width: 22px;
    }

    .extra-details__heading p {
        font-size: var(--fs-heading-3);
        font-weight: 400;
    }

@media(max-width: 600px) {
    .extra-details__heading p {
        font-size: var(--fs-heading-5);
        font-weight: 400;
    }
}

.departure-dates__flight__from .container-from {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.extra-details__container {
    margin-top: 20px;
}

.flights .container {
    margin-top: 12px;
}

@media(max-width: 800px) {
    .departure-dates__flight__from .container-from {
        margin-top: 12px;
    }
}

.departure-dates__flight__from-container {
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    padding: 12px 12px;
    display: flex;
    justify-content: space-between;
}

    .departure-dates__flight__from-container.inactive {
        background-color: #F4F4F4;
        border: 2px solid #E0E0E0;
    }

        .departure-dates__flight__from-container.inactive .bullet {
            border: 2px solid #C5C5C5;
        }

        .departure-dates__flight__from-container.inactive .title-seats {
            color: #717171;
            ;
        }

    .departure-dates__flight__from-container.active {
        background-color: #fde40215;
    }

.seatandprice {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.flightBox-info .title-seats {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
}


@media(max-width: 600px) {
    .flightBox-info .title-seats {
        flex-direction: column;
    }
}

.price-container .main-btn {
    background-color: var(--color-primary);
    text-transform: capitalize;
}

.departure-dates__flight__from-container.active .bullet .inside-bullet {
    width: 12px;
    border-radius: 100%;
    height: 12px;
    background-color: var(--color-primary);
}

.flight-select {
    display: flex;
    align-items: center;
    gap: 16px;
}

.title-seats .title {
    font-weight: 500;
    font-size: var(--fs-heading-4);
    font-family: 'CF Ifigeneia', serif !important;
}



.title-seats .seat {
    font-size: var(--fs-small);
    font-weight: 600;
}

.price-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    gap: 4px;
}

    .price-container p {
        text-align: end;
        font-size: var(--fs-heading-6);
    }

        .price-container p span {
            font-weight: 600;
            color: red;
        }

    .price-container select {
        border-radius: 8px;
        padding: 4px;
        color: black;
        min-width: 165px;
    }

.departure-dates__flight__from-container .bullet {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--color-primary);
}

@media(max-width: 800px) {
    .flight__details {
        margin-top: 20px;
    }
}

.flight__details .heading {
    font-size: var(--fs-heading-5);
    font-weight: 600;
    line-height: 27px;
}

.flight__details__from-to {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flight__fromTo {
    display: grid;
    grid-template-columns: 80px 220px 1fr 1fr;
    align-items: center;
    gap: 4px;
}

@media(max-width: 520px) {
    .flight__details__from-to .img-placeholder {
        grid-column: 1 / 4;
    }

    .flight__fromTo {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 4px;
    }
}

.flight {
    width: fit-content;
}

.flight__center {
    content: "";
    display: block;
    height: 1px;
    width: 100px;
    background-color: var(--color-primary);
    position: relative;
}

.flight__center__container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flight__center::after {
    content: "";
    display: none;
    position: absolute;
    top: -5px;
    right: -9px;
    height: 10px;
    width: 10px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 13px solid #FDE100;
}

@media screen and (min-width:420px) {
    .flight__center::after {
        display: block;
    }
}

.flight__details__from-to .img-placeholder {
    /* margin-bottom: 20px; */
    display: flex;
    width: 80px;
    height: 50px;
    object-fit: contain;
}

    .flight__details__from-to .img-placeholder img {
        width: 100%;
        object-fit: contain;
    }

.flight .time {
    font-size: 19px;
    white-space: nowrap;
    font-weight: 600;
}




@media screen and (max-width: 600px) {
    .flight .time {
        font-size: 15px;
    }
}

.flight .date {
    font-size: var(--fs-small);
    white-space: nowrap;
}

.noted {
    padding: 8px;
    border: 1px dashed black;
    border-radius: 4px;
    margin-top: 20px;
}

.marked {
    margin-top: 20px;
}

@media(max-width: 600px) {
    .departure-dates__btns-year {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .departure-dates__btns-months {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .departure-dates__btn {
        width: 100%;
        font-size: 13px;
    }

    .flight .time {
        white-space: unset;
    }

    .flight .date {
        white-space: unset;
    }
}

.custom-cursor-scale {
    transform: scale(1) !important;
    transition: transform 0.3s ease-in-out;
}

.custom-cursor-hidden {
    transform: scale(0) !important;
    transition: transform 0.3s ease-in-out;
}


/* Desktop Departure */
.departure-dates__desk {
    margin-top: 20px;
    display: block;
    position: relative;
}

.flight-bar__extra-details {
    max-height: 0px;
    height: 100%;
    overflow: hidden;
    transition: 0.7s all ease;
}

    .flight-bar__extra-details.isOpen {
        max-height: 2000px;
        height: 100%;
        overflow: hidden;
        transition: 0.7s all ease;
    }

@media(max-width: 800px) {
    .departure-dates__desk {
        display: none;
    }
}

.departure-dates__desk .titles {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 150px;
    margin-bottom: 8px;
    padding: 0 8px;
}

    .departure-dates__desk .titles p {
        font-weight: 600;
        font-size: var(--fs-text);
    }



.flight-bar__visible.disabled {
    opacity: 0.5;
    cursor: default !important;
}

    .flight-bar__visible.disabled .arrow-bar {
        opacity: 0;
    }

.flight-bar__visible {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 150px;
    align-items: center;
    justify-content: center;
    /*justify-items: cc;*/
    padding: 20px 8px;
    cursor: pointer;
    transition: 0.3s all ease;
    /* border-top: 1px solid rgba(0, 0, 0, 0.35);
       border-bottom: 1px solid rgba(0, 0, 0, 0.35); */
}


/*@keyframes pulseBackground {
    0% {
        background-color: white;
    }

    50% {
        background-color: #fffce7;
    }

    100% {
        background-color: white;
    }
}*/

.tooltip__info-bar {
    position: fixed;
    opacity: 0;
    transform: scale(0.3);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    background-color: #ffffff;
    color: #0d0d0d;
    padding: 4px 4px;
    border-radius: 4px;
    font-size: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border: 1px solid black;
    white-space: nowrap;
    z-index: 9999;
    display: block;
}

.tooltip--visible {
    opacity: 1;
    transform: scale(1);
}


    .flight-bar__visible:hover:not(.disabled) {
        background-color: #f3f3f3;
        transition: 0.3s all ease;
    }

    .flight-bar__visible p {
        font-size: 16px;
    }

.flight-bar:first-child .flight-bar__visible {
    border-top: 1px solid rgba(0, 0, 0, 0.35);
}

.flight-bar .flight-bar__visible {
    /* border-top: 1px solid rgba(0, 0, 0, 0.35); */
    border-bottom: 1px solid rgba(0, 0, 0, 0.35);
    transition: 0.3s all ease;
}

    .flight-bar .flight-bar__visible.active {
        background-color: #f3f3f3;
        border-bottom: 0px solid rgba(255, 0, 0, 0);
        transition: 0.3s all ease;
    }

.flight-bar:last-child .flight-bar__visible {
    /* border-top: 1px solid rgba(0, 0, 0, 0.35); */
    /* border-top: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.35); */
}

.not-show {
    opacity: 0;
}

.priceArrow-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flight-bar__visible .arrow-bar {
    transform: rotate(0deg);
    transition: 0.3s all ease;
}

.flight-bar__visible.active .arrow-bar {
    transform: rotate(180deg);
    transition: 0.3s all ease;
}

.flight-bar__visible .soldOut-text, .flight-bar__visible .priceText {
    font-size: var(--fs-heading-6);
    font-weight: 600;
}

.soldOut-text.disabled {
    opacity: 0;
}

.departure-dates__flight.disabled .soldOut-text {
    opacity: 0;
    display: none;
}
/*    .priceText {
        color: #2b2b2b;
        padding: 4px 8px;
        border: 1px solid black;
        border-radius: 4px;
        width: fit-content;
    }
*/
.price-cont__text {
    color: #2b2b2b;
    padding: 4px 8px;
    border: 1px solid black;
    border-radius: 4px;
    width: fit-content;
}

.priceArrow-container .price-caption {
    font-size: 10px;
}

.extra-details__container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}


@media(max-width: 1230px) {
    .extra-details__container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "selectFrom"
            "flights";
    }

    .flights-SelectFrom {
        grid-area: selectFrom
    }

    .flights {
        grid-area: flights;
    }
}











/* Travel documents */
.travel-documents {
    background-color: #FDFCF2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px;
    flex-direction: column;
}

.travel-document__heading {
    text-align: center;
}

    .travel-document__heading h1 {
        font-size: var(--fs-heading-1);
        padding: 0;
        margin: 0;
        line-height: 50px;
        font-weight: 500;
        position: relative;
    }

        .travel-document__heading h1:first-child {
            left: -40px;
            font-weight: 300;
        }

        .travel-document__heading h1:nth-child(2) {
            right: -40px;
            font-weight: 300;
            font-size: 80px;
            margin-bottom: 30px;
        }

@media(max-width: 600px) {
    .travel-documents {
        padding: 20px;
    }

    .travel-document__heading h1:first-child {
        left: 0;
        font-weight: 500;
        font-size: 54px;
        margin-bottom: 16px;
    }

    .travel-document__heading h1:nth-child(2) {
        right: 0;
        font-weight: 400;
        font-size: 54px;
        line-height: 20px;
    }
}


.travel-documents .list {
    margin-top: 20px;
    max-width: 500px;
}

.travel-documents .list-item {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.087);
    padding: 8px 0;
    align-items: flex-start;
    font-weight: 300;
}

    .travel-documents .list-item img {
        position: relative;
        top: 4px;
    }

    .travel-documents .list-item p {
        font-size: var(--fs-heading-6 );
    }

@media(max-width: 600px) {
    .travel-documents .list-item p {
        font-size: var(--fs-small);
    }
}


/* Περιλαμβανετε δεν περιλαμβανετε */
.included__wrapper {
    width: 70%;
    margin: 0 auto;
    /* border: 1px solid black; */
}

.included-container {
    margin-bottom: 40px;
}

.included-container__heading {
    font-size: var(--fs-heading-1);
    width: fit-content;
    border-bottom: 3px solid var(--color-primary);
    line-height: 50px;
    font-weight: 400;
    padding-bottom: 10px;
}

.included__list {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 20px; */
}




.included__list__item:first-child {
    border-top: 1px solid black;
    /* padding-top: 8px; */
}

.included__list__item p {
    font-size: var(--fs-text);
    font-weight: 300;
}

.included__list__item:nth-child(2) {
    border-top: 1px solid black;
    /* padding-top: 8px; */
}


@media(max-width: 800px) {
    .included__wrapper {
        width: 90%;
    }

    .included__list {
        margin-top: 20px;
        display: grid;
        grid-template-columns: 1fr;
    }

    .included__list__item:nth-child(2) {
        border-top: none;
        /* padding-top: 8px; */
    }
}


.included__list__item {
    display: grid;
    grid-template-columns: 8px 1fr;
    gap: 16px;
    align-items: center;
    padding-top: 14px;
    border-bottom: 1px solid black;
    padding-bottom: 14px;
    margin-right: 20px;
}



    /* .included__list.not .included__list__item:before{
  content: "";
  display: flex;
  width: 0px;
  height: 0px;
  border-radius: 100%;
  border: 0px solid black;
  position: relative;
  align-self: center;
  justify-self: center;
}

*/

    .included__list__item .bullet {
        /* content: ""; */
        display: block;
        width: 8px;
        height: 8px;
        border-radius: 100%;
        border: 1px solid black;
        position: relative;
    }




/* Unique slider */



.carousel {
    position: relative;
    width: 100%;
    height: 34vw;
    perspective: 1000px;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.carousel__list {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel__item {
    position: absolute;
    width: 23vw;
    height: 30vw;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 0px;
    box-shadow: 0 4px 30px rgb(0 0 0 / 42%);
    transform-origin: center;
}

    .carousel__item .carousel__item-img-placeholder {
        width: 23vw;
        height: 30vw;
    }

@media(max-width: 1200px) {
    .carousel {
        height: 46vw;
    }

    .carousel__item {
        width: 25vw;
        height: 36vw;
    }

        .carousel__item .carousel__item-img-placeholder {
            width: 25vw;
            height: 36vw;
        }
}

@media(max-width: 600px) {

    .carousel {
        height: 470px;
        overflow: visible;
    }

    .carousel__item {
        width: 250px;
        height: 384px;
    }

    .carousel__item__heading h1 {
        max-width: 300px;
        margin: 0 auto;
        line-height: 34px;
    }

    .carousel__item .carousel__item-img-placeholder {
        width: 250px;
        height: 384px;
    }

    .carousel__button {
        bottom: -90px !important;
        position: absolute !important;
    }
    /*.carousel__item__heading{*/
    /*    margin: 0 auto;*/
    /*    max-width: 300px;*/
    /*}*/

}

.carousel__item .carousel__item-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.fancybox__nav .carousel__button {
    width: 58px;
    border-radius: 100%;
    height: 58px;
    position: absolute;
    bottom: 0;
    transform: translateY(-50%);
    color: #fff;
    border: none;
    width: 58px;
    display: flex;
    justify-content: center;
    align-content: center;
    height: 58px;
    /* padding: 10px 15px; */
    background-color: white;
    align-items: center;
    cursor: pointer;
    border-radius: 100%;
    background-color: #ffffff00;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0);
}

.carousel__button {
    width: 58px;
    border-radius: 100%;
    height: 58px;
    position: absolute;
    bottom: 0;
    transform: translateY(-50%);
    color: #fff;
    border: none;
    width: 58px;
    display: flex;
    justify-content: center;
    align-content: center;
    height: 58px;
    /* padding: 10px 15px; */
    background-color: white;
    align-items: center;
    cursor: pointer;
    border-radius: 100%;
    background-color: white;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.4);
}

.fancybox__nav .carousel__button::before {
    /*  position: absolute;
  top: 0;
  left: 0;*/
    display: none;
    content: "";
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 200px;
    z-index: -1; /* Ensures the border is behind the button content */
    transition: transform 0.3s ease;
}


.carousel__button::before {
    /*  position: absolute;
  top: 0;
  left: 0;*/
    display: block;
    content: "";
    border: 1px dashed black;
    width: 42px;
    height: 42px;
    border-radius: 200px;
    z-index: -1; /* Ensures the border is behind the button content */
    transition: transform 0.3s ease;
}

@media(max-width: 600px) {
    .carousel__button {
        height: 38px;
        width: 38px;
    }

        .carousel__button::before {
            width: 28px;
            height: 28px;
        }
}


.arrow-anime__container {
    height: 100%;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
}

.carousel__button:hover::before {
    animation: rotate-border 8s linear infinite;
}

/* Keyframes for rotating border */
@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.arrow-anime i {
    fill: black;
    color: black;
}

.carousel__button--prev {
    left: 20%;
    transition: 0.3s all ease;
}

.carousel__button--next {
    right: 20%;
    transition: 0.3s all ease;
}

@media(max-width: 800px) {
    .carousel__button--prev {
        left: 10%;
    }

    .carousel__button--next {
        right: 10%;
    }
}

@media(max-width: 600px) {
    .carousel__button--prev {
        left: 2%;
    }

    .carousel__button--next {
        right: 2%;
    }
}

.carousel-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.carousel-text__list {
    min-height: 240px;
    height: 100%;
}

.carousel__item__heading {
    display: none; /* Hide all headings by default */
    opacity: 0;
    flex-direction: column;
    gap: 20px;
    /* transition: opacity 0.5s ease-in-out; */
}

    .carousel__item__heading.active {
        display: flex; /* Show active heading */
        flex-direction: column;
        opacity: 1; /* Make the active heading visible */
    }


    .carousel__item__heading h1 {
        font-size: var(--fs-heading-1);
        font-weight: 500;
        line-height: 50px;
    }

/*.carousel-container{
    overflow: hidden;
}*/

.carousel {
    /*overflow: hidden;*/
}

.carousel__heading-title {
    text-align: center;
}

    .carousel__heading-title h1 {
        font-size: 70px;
        font-weight: 500;
        line-height: 40px;
        margin-bottom: 14px;
    }

    .carousel__heading-title .unique-slider__heading {
        font-size: 54px;
        display: flex;
        font-weight: 500;
        /* text-transform: capitalize; */
        justify-content: center;
        gap: 20px;
        flex-direction: column;
        /*        text-transform: capitalize*/
    }

        .carousel__heading-title .unique-slider__heading span:first-child {
            font-weight: 300;
            margin-right: 120px;
        }

        .carousel__heading-title .unique-slider__heading span:nth-child(2) {
            font-weight: 300;
            font-size: 80px;
            font-style: italic;
            margin-left: 120px;
        }


    .carousel__heading-title p {
        font-size: 16px;
        font-weight: 300;
    }


.carousel__item__heading p {
    font-size: var(--fs-text);
    /*        font-weight: 500;*/
    line-height: 30px;
    font-weight: 300;
}

.extra-details__container .flights {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

@media(max-width: 600px) {
    .carousel__item__heading {
        padding: 0 16px;
    }

        .carousel__item__heading h1 {
            font-size: 39px;
            font-weight: 500;
        }

        .carousel__item__heading p {
            font-size: var(--fs-small);
            line-height: 23px;
        }

    .carousel__heading-title .unique-slider__heading span:first-child {
        margin: 0;
    }

    .carousel__heading-title .unique-slider__heading span:nth-child(2) {
        margin: 0;
    }
}



@media(max-width: 1550px) {
    .extra-details__container .flights {
        display: flex;
        flex-direction: column;
    }
}
/* .carousel__item__heading {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel__item__heading.active {
  opacity: 1;
} */

/* Destinations  */

.subheader__img-placeholders {
    display: flex;
    justify-content: center;
    min-height: 702px;
}

.destination-details__wrapper {
    display: grid;
    margin: 0 auto;
    /*    grid-template-columns: auto 800px;*/
    /*    gap: 150px;*/
    justify-content: center;
    width: 95%;
    /* max-width: 1200px; */
    margin: 0 auto;
    grid-template-columns: 600px minmax(300px, 700px);
    padding: 40px;
}

    .destination-details__wrapper .column-2 {
        display: flex;
        flex-direction: column;
        justify-content: start;
    }

    .destination-details__wrapper .column-1 {
        /*            width: 50vh;
            height: 70vh;*/
        width: 100%;
    }

@media(max-width: ) {
}

.subheader__img-placeholders {
    height: 100%;
    width: 100%;
    /* border: 1px solid black; */
    position: relative;
}

.big-image {
    position: absolute;
    top: 0;
    /*        left: 0;*/
    width: 100%;
    height: 100%;
    rotate: -10deg;
    overflow: hidden;
    box-shadow: 0 10px 10px rgba(0,0,0,0.2);
    width: 427px;
    height: 702px;
}

    .big-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.small-image {
    rotate: 3deg;
    position: relative;
    top: 220px;
    left: -200px;
    /* width: 45%; */
    aspect-ratio: 0.7;
    /*        height: 55%;*/
    overflow: hidden;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    width: 283px;
    height: 465px;
}

    .small-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media(max-width: 1300px) {
    .destination-details__wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /*            gap: 100px;*/
        padding: 40px 16px;
        box-sizing: border-box;
    }

    .subheader__img-placeholders {
        height: 600px;
    }



    .big-image {
        width: 400px;
        height: 600px;
    }

    .small-image {
        width: 200px;
        height: 300px;
    }
}



@media(max-width: 1000px) {
    .destination-details__wrapper {
        display: flex;
        flex-direction: column-reverse;
        gap: 24px;
    }

    .column-1 {
        /* border: 1px solid black; */
    }

    .big-image {
        left: 50%;
        width: 300px;
        height: 430px;
        transform: translateX(-50%);
    }

    .small-image {
        position: absolute;
        width: 180px;
        height: 280px;
        left: 30%;
        bottom: 0%;
        transform: translateX(-50%);
    }
}

.country-details {
    margin-bottom: 180px;
}

@media(max-width: 1100px) {
    .country-details {
        margin-bottom: 80px;
    }
}

@media(max-width: 800px) {
    .country-details {
        margin-bottom: 0px;
    }

    .destination-details__wrapper {
        padding: 0 16px 40px;
    }
}

.overlay-header {
    position: absolute;
    content: "";
    display: none;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

@media(max-width: 1000px) {
    .overlay-header {
        display: block;
        z-index: 15;
        /*point*/
    }
}

.flights-SelectFrom {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.selectFrom-box {
    border: 2px solid #C6C6C6;
    border-radius: 8px;
    padding: 12px 12px;
    display: grid;
    justify-content: space-between;
    grid-template-columns: 24px 1fr;
    /*    align-items: stretch;*/
    align-content: space-between;
    justify-items: stretch;
    position: relative;
    align-items: center;
}

    .selectFrom-box .check-icon__style {
        background-color: #C6C6C6;
        width: 20px;
        height: 20px;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .selectFrom-box .check-icon__style .inside {
            height: 12px;
            width: 12px;
            background-color: white;
            border: 2px solid white;
            border-radius: 100%;
        }

    .selectFrom-box.active-box .check-icon__style {
        background-color: #FDE100;
    }

        .selectFrom-box.active-box .check-icon__style .inside {
            border: 2px solid white;
            background-color: #fde100;
        }

    .selectFrom-box.active-box {
        background-color: #FFFEF5;
        border: 2px solid var(--color-primary);
    }

.caption-comments__container {
    grid-column: 1 / -1;
}

.caption-comments {
    font-size: 13px;
    line-height: 14px;
    margin-top: 8px;
    font-weight: 400;
}

    .caption-comments.tax-text {
        color: red;
    }

.new-price {
    font-size: 20px;
    ;
    text-align: end;
}

.seatandprice .seat p {
    font-weight: 600;
    font-size: 16px !important;
}

.captionandbooking {
    display: flex;
    justify-content: space-between;
    width: 100%;
    /*    margin-top: 8px;*/
    align-items: end;
}

    .captionandbooking button {
        display: none;
    }

.new-price span {
    font-weight: 600;
    color: #2b2b2b;
}

.bookingButton {
    background-color: var(--color-primary);
    font-weight: 600;
    padding: 8px;
    color: black;
    border-radius: 4px;
    outline: none;
    white-space: nowrap;
    border: none;
}

.price-container {
    margin-top: 8px;
}

.flightBox-price {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    margin-top: 8px;
}

    .flightBox-price .button-fill {
        padding: 4px 16px !important;
    }

.soldOut-text-small {
    font-size: var(--fs-xs);
    font-weight: 600;
}

.soldOut-text {
    display: flex;
    gap: 4px;
}

    .soldOut-text i {
        font-size: 14px;
        color: #404040;
    }

.mobile__included__wrapper {
    /*padding: 0 16px;*/
}

.tab-included-button {
    font-size: 33px;
    outline: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    margin-left: 20px;
    margin-right: 20px;
    width: fit-content;
    background-color: white;
    font-family: 'CF Ifigeneia', serif !important;
    border-bottom: 2px solid white;
    /*padding-bottom: 10px;*/
}

    .tab-included-button.active {
        border-bottom: 2px solid var(--color-primary);
    }

.mobile__included__wrapper .included-container {
    padding: 0 16px;
}

.tabs__included__swiper .swiper-wrapper {
    /*overflow: auto;*/
}

.included__wrapper {
    display: block;
}

.mobile__included__wrapper {
    display: none;
}

@media(max-width: 600px) {
    .included__wrapper {
        display: none;
    }

    .mobile__included__wrapper {
        display: block;
    }
}

@media(max-width: 600px) {
    .title-seats .title {
        font-weight: 500;
        font-size: var(--fs-heading-6);
        font-family: 'CFModGrotesk', sans-serif !important;
    }

    .country-name {
        font-size: var(--fs-small);
        line-height: 33.6px;
    }

    .country-title {
        line-height: 55px;
    }

    .countries-suggest__wrapper {
        margin-top: 60px;
    }
}

.modal-req-heading {
    font-size: 24px;
}




.forgot-password__pg-1 {
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    height: fit-content;
    background-color: #ffffff;
}

.forgot-password__content {
    padding: 40px;
    background-color: white;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    border: 1px solid #d1d1d1;
    height: fit-content;
    top: 250px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
}

    .forgot-password__content h1 {
        font-weight: 500;
    }

    .forgot-password__content input {
        padding: 8px;
    }

    .forgot-password__content button {
        padding: 8px 12px;
        border-radius: 4px;
        outline: none;
        border: none;
        cursor: pointer;
    }

.extra-space {
    height: 50px;

    @media screen and (max-width: 1000px) {
        height: 200px
    }
}

.readonly-select {
    pointer-events: none;
    background-color: #f2f2f2;
    color: #000; /* Ensures the text color remains visible */
}


.wedding-hero {
    width: 100%;
    height: 100vh;
}

    .wedding-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.country-title span {
    font-style: italic;
    font-weight: 300;
}

.wedding-text {
    font-weight: 300;
}

.wedding-button {
    padding: 8px;
    border: 1px solid white;
    color: white;
    margin-top: 20px;
}

@media (max-width: 600px) {
    .countries-suggest__wrapper {
        margin-top: 40px !important;
    }
}

.footer-external__links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 20px 10px;
    text-align: center;
    font-family: 'CF ModGrotesk', sans-serif !important;
}

    .footer-external__links a {
        font-size: 14px;
        font-weight: 500;
    }

@media(max-width: 600px) {
    .footer-external__links {
        display: flex;
        flex-direction: column;
    }
}


.group-tf-badge {
    background-color: var(--color-primary);
    padding: 10px;
    border-radius: 5px;
    color: black;
    text-align: center;
}

.badges {
    display: flex;
    gap: 4px;
    position: absolute;
    bottom: 12px;
    width: 90%;
    align-items: end;
    flex-wrap: wrap;
}

.badges-tf-container {
    display: flex;
    gap: 0;
    flex-direction: column;
}

.badge.bonus-badge {
    background-color: #ff0000;
    color: white;
}

.badge.exasfalismenes-theseis .badge__inner p {
    display: flex;
    flex-direction: column;
    line-height: 12px;
    width: min-content;
}

.badge.bonus-badge .badge__inner p {
    /*    background-color: #d11919;*/
    color: white;
}

.badge {
    padding: 4px 4px;
    background-color: #fde100;
    color: black;
    border-radius: 4px;
    width: fit-content;
    margin-top: 6px;
}

.badge__inner {
    padding: 0 4px;
}

    .badge__inner p {
        color: #000000;
        font-weight: 400;
        font-size: 10px;
        letter-spacing: 0.6px;
        text-transform: uppercase;
    }




.badges .proposed {
    width: 70px;
}

.badges .bonus {
    width: 40px;
}


.proposed-badge, .bonus-badge, .secure-departure-badge {
    padding: 4px;
    border-radius: 4px;
    background-color: #fde202;
}

.contact-page {
    min-height: 120vh;
    /* display: flex
; */
    gap: 40px;
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 90vw;
    margin: 0 auto;
}

.contact-big-image {
    width: 350px;
    rotate: -6deg;
    height: 560px;
    overflow: hidden;
}

    .contact-big-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.contact-small-image {
    width: 210px;
    rotate: 7deg;
    height: 300px;
    right: -60px;
    bottom: -240px;
    overflow: hidden;
    position: relative;
    z-index: 9;
}

    .contact-small-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.contact-photos {
    /*    margin-top: 200px;*/
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 200px;
    margin-bottom: 200px;
}

@media(max-width: 1140px) {
    .contact-photos {
        display: none;
    }

    .contact-page {
        grid-template-columns: 1fr;
    }
}

.contact-container h1 {
    font-size: 54px;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 40px;
}

.contact-container button {
    cursor: pointer;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__cont {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact__reason {
    width: 100%;
    min-height: 44px;
    padding: 12px 8px;
    border: 1px solid #9a9a9a;
    padding: 8px;
    /* min-height: 250px; */
    font-family: 'CF ModGrotesk', sans-serif !important;
    font-weight: 300;
    font-size: 16px;
    border: 1px solid #9c9c9c;
    border-radius: 8px;
    appearance: none;
    transition: 0.3s allease;
}

.contact__type-message {
    position: relative;
    /*    bottom: 40px;*/
}

    .contact__type-message::after {
        content: "▼";
        position: absolute;
        right: 14px;
        bottom: 4px;
        transform: translateY(-50%);
        pointer-events: none;
        font-size: 10px;
        color: #333;
    }

    .contact__type-message option {
        font-weight: 300;
    }

.trip-interest__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trip-interest__item {
    display: flex;
    flex-direction: column;
    width: fit-content;
    position: relative;
}

.trip-interest__item__select::after {
    content: "▼";
    position: absolute;
    right: 8px;
    bottom: 4px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 10px;
    color: #333;
}

.trip-interest__item--destination {
    width: 100%;
}

.trip-interest__item--people {
    max-width: 120px;
}

.trip-interest__row--dates .trip-interest__item--departure-from {
    width: 100%;
}

.trip-interest__row--dates .trip-interest__item--departure-to {
    width: 100%;
}

.trip-interest__inputs {
    display: flex;
    gap: 20px;
}

.trip-interest__row.trip-interest__row--details {
    display: grid;
    grid-template-columns: 1fr auto auto;
}

.trip-interest__item--destination {
}

.trip-interest__item--people {
}

.trip-interest__item--duration {
}

.trip-interest__row {
    display: flex;
    gap: 20px;
}

.trip-interest__container input {
    width: 100%;
    padding: 12px 8px;
    border-radius: 8px;
    border: 1px solid #9c9c9c;
    font-size: 16px;
    transition: 0.3s all ease;
}




.contact-container .form-group input {
    width: 100%;
    padding: 12px 8px;
    border-radius: 8px;
    border: 1px solid #9c9c9c;
    font-size: 16px;
    font-family: 'CF ModGrotesk', sans-serif;
    transition: 0.3s all ease;
}

.contact-container label {
    font-size: 14px;
    color: gray;
    width: fit-content;
}

.contact-container p {
    font-size: 14px;
    color: gray;
    line-height: 16px;
    margin-bottom: 8px;
}

.contact__reason {
    color: black;
}


.contact-container .form-group input:focus-visible {
    border: 1px solid #fddf00;
    outline: none;
}

textarea {
    resize: none;
    padding: 8px;
    min-height: 250px;
    font-family: 'CF ModGrotesk', sans-serif !important;
    font-weight: 300;
    font-size: 16px;
    border: 1px solid #9c9c9c;
    border-radius: 8px;
    transition: 0.3s allease;
}


    textarea:focus-visible {
        border: 1px solid #fddf00;
        outline: none;
    }

    textarea:placeholder {
        font-family: 'CF ModGrotesk', sans-serif !important;
        font-weight: 300;
        font-size: 16px;
    }

.submit-btn {
    padding: 12px;
    outline: none;
    border: none;
    background-color: #fde202;
    text-transform: uppercase;
    color: black;
}

.contact-container {
    margin-top: 200px;
    margin-bottom: 200px;
}

@media(max-width: 600px) {
    .contact-container h1 {
        text-align: center;
        line-height: 50px;
    }

    .contact__cont {
        flex-direction: column;
    }

    .contact-form {
        padding: 16px;
    }

    .contact-container .form-group input {
        width: 100%;
    }

    .contact-page {
        margin-bottom: 120px;
    }
}

.sxetika__links {
    text-align: center;
    margin-top: 40px;
}

    .sxetika__links a h1 {
        font-size: var(--fs-heading-5);
        font-weight: 300;
        font-family: 'CF ModGrotesk', sans-serif !important;
    }

.social__icons {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-top: 8px;
}

    .social__icons a i {
        font-size: 26px;
        color: #000000e0;
    }

    .social__icons h1 {
        font-size: 20px;
    }

.social__icons__links {
    display: flex;
    gap: 8px;
}

.allTripsContainer {
    flex-basis: 75%;
}

@media(max-width:1744px) {
    .allTripsContainer {
        flex-basis: 66%;
    }
}

@media(max-width:1280px) {
    .allTripsContainer {
        flex-basis: 100%;
    }
}

.keimena__container {
    width: 95%;
    margin: 0 auto;
}

.keimena-content {
    padding-top: 200px;
}

@media(max-width: 1140px) {
    .keimena-content {
        padding-top: 120px;
    }
}


.text-heading {
    font-size: 54px;
    font-weight: 400;
    line-height: 50px;
    margin-bottom: 20px;
}

.keimena-content {
    font-weight: 300;
}

    .keimena-content p {
        font-weight: 300;
    }


.footer-mob-social {
    display: none;
}

.footer__left-bar {
    display: flex;
    flex-direction: column;
}

@media(max-width: 1200px) {
    .footer__left-bar {
        display: none;
    }

    .footer-mob-social {
        display: flex;
        width: 100%;
        padding: 16px;
        margin: 20px auto;
    }
}


.pdf-trip__container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-trip__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background-color: #fde100;
    border-radius: 4px;
    margin-top: 40px;
    cursor: pointer;
}

.contact__email-container {
    margin-top: 60px;
}

    .contact__email-container a {
        display: flex;
        gap: 8px;
        font-size: 24px;
    }

    .contact__email-container i {
        font-size: 22px;
    }


.check-geo__trips {
    margin: 40px auto 80px;
    text-align: center;
}

.check-geo__trips__content h1 {
    font-size: 54px;
    padding-inline: 16px;
    font-weight: 300;
    margin-bottom: 20px;
}

.check-geo__trips__btn {
    background-color: var(--color-primary);
    padding: 12px 16px;
    border-radius: 4px;
}

.inside-flights__container {
    padding: 24px;
    background-color: #f1f1f1;
}

.inside-flights__mob {
    padding: 0px 8px;
    border-top: 1px solid #00000042;
    margin-top: 40px;
}


.yt-btn {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    /*    padding: 8px 8px;*/
    border-radius: 4px;
    background-color: #1e1e1e;
    margin-top: 8px;
}

    .yt-btn a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 8px 14px;
        /* border: 1px dashed white; */
        color: white;
        font-weight: 300;
    }

        .yt-btn a i {
            font-size: 20px;
            color: white;
        }


.app-links {
    margin-top: 40px;
}

    .app-links p {
        font-size: var(--fs-heading-6);
        font-family: 'CF Ifigeneia', serif !important;
    }

.app-links__container {
    display: flex;
    gap: 8px;
}

    .app-links__container a {
        max-width: 160px;
        width: 100%;
        position: relative;
        display: block;
    }

    .app-links__container img {
        width: auto;
        height: 55px;
    }




.mob-badges__container .badge {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
}



/**/
.datepicker__filter-container {
    display: flex;
    width: 100%;
    margin-bottom: 16px;
}

@media(max-width: 430px) {
    .datepicker__filter-container {
        flex-direction: column;
        gap: 4px;
    }
}


/*.logo-airline__container {
    max-width: 100px;
    max-height: 100px;
    display: flex;
    justify-content: center;
    justify-self: center;
    align-items: center;
}

    .logo-airline__container img {*/
/*    max-width: 300px;*/
/*max-width: 100%;
        height: 100%;
        width: 100%;
        object-fit: contain;
    }*/

.logo-airline__container {
    max-width: 100px;
    max-height: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    height: 100%;
}

    .logo-airline__container img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


.loader-icon__container {
    position: absolute;
    left: 50%;
    top: 50px;
}

.loader-icon__container {
    font-size: 30px;
    color: #353535;
    animation: spin 1.5s linear infinite;
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




.proorismoi-swiper {
    margin-bottom: 100px;
    position: relative;
}

    .proorismoi-swiper .img-placeholder {
        position: relative;
        overflow: hidden;
        display: block;
        width: 100%;
        height: 100%;
    }

        .proorismoi-swiper .img-placeholder .dest-image {
            height: 100%;
        }
            /*    .proorismoi-swiper .swiper-wrapper{
        display: flex;
        justify-content: center;
    }*/
            .proorismoi-swiper .img-placeholder .dest-image img {
                /*        position: absolute;*/
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .proorismoi-swiper .img-placeholder::after {
            content: "";
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-color: #00000063;
            z-index: 1;
        }

    .proorismoi-swiper h1 {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 90%;
        margin: 0 auto;
        text-align: center;
        transform: translate(-50%, -50%);
        color: white;
        text-shadow: 0 10px 10px rgba(0, 0, 0, 0.303);
        z-index: 2;
        font-size: 40px;
    }


.proorismoi__heading {
    margin: 40px auto;
    font-size: 64px;
    width: fit-content;
    text-align: center;
    line-height: 60px;
}

@media(max-width: 600px) {
    .proorismoi__heading {
        font-size: 54px;
        font-weight: 300;
    }
}

.proorismoi-swiper .swiper-slide {
    width: 360px;
    height: 360px;
    border-radius: 4px;
    overflow: hidden;
}

/*.proorismoi-swiper .swiper-slide:first-child{
    width:24px;
}
    .proorismoi-swiper .swiper-slide:last-child {
        width: 24px;
    }*/
/*
.allCardsDestArrowRight, .allCardsDestArrowLeft{
    position: absolute;
}*/

.allCardsDestArrowLeft {
    position: absolute;
    display: block;
    z-index: 999999;
    top: 50%;
}

.allCardsDestArrowRight {
    position: absolute;
    display: block;
    z-index: 999999;
    top: 50%;
}

.allCardsDestArrowLeft.swiper-button-disabled {
    display: none;
}

.allCardsDestArrowRight.swiper-button-disabled {
    display: none;
}


/*Contact*/
.trip-interest__container {
    display: none;
}

.contact-interest__template-2 {
    display: none;
}

.contact-interest__template-2 {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .contact-interest__template-2 button {
    }

.trip-interest__row--type {
}

#interest__type {
    width: fit-content;
    appearance: none;
    min-height: 44px;
    padding: 12px 8px;
    border: 1px solid #9a9a9a;
    padding: 8px 20px 8px 8px;
    /* min-height: 250px; */
    font-family: 'CF ModGrotesk', sans-serif !important;
    font-weight: 300;
    font-size: 16px;
    border: 1px solid #9c9c9c;
    border-radius: 8px;
    transition: 0.3s allease;
}

    #interest__type option {
        font-weight: 300;
    }

.contact-interest__people-duration {
    display: flex;
    gap: 20px;
}


@media(max-width: 650px) {
    .trip-interest__row.trip-interest__row--details {
        grid-template-columns: 1fr;
    }

    .trip-interest__row {
        flex-direction: column;
    }

    .contact__cont {
        grid-template-columns: 1fr;
    }

    .contact-interest__people-duration {
        display: grid;
        grid-template-columns: 1fr;
        /*        flex-direction: column;*/
        gap: 20px;
    }

    .trip-interest__item--people {
        max-width: 100%;
    }

    .trip-interest__container input {
        width: 100%;
    }

    .trip-interest__item--people {
        width: 100%;
    }

    .trip-interest__item--duration {
        width: 100%;
    }
}

.e-magazine__slider-text .blog-text {
    min-height: 80px;
}

@media(max-width: 600px) {
    .e-magazine__slider-text {
        width: 95%;
    }

        .e-magazine__slider-text .blog-text {
            min-height: 100px;
        }
}


.pdf-link i{
    font-size: 14px;
    margin-top: 12px;
}
.versusThankyou-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px dashed white;
    /* color: white; */
    font-weight: 300;
    border: 2px solid black;
    margin-top: 16px;
    border-radius: 4px;
    width: fit-content;
}

.selectHotel__container {
/*    display: flex;
    flex-direction: column;
    width: fit-content;
    justify-content: end;
    align-items: end;
    justify-self: end;
    align-self: end;
    gap: 8px;*/

    display: flex;
    flex-direction: column;
    width: 100%; /* fallback may be needed */
    justify-content: flex-end;
    align-items: flex-end;
    gap: 8px;
}

    .selectHotel__container h1 {
        font-size: 13px;
        font-family: 'CFModGrotesk' !important;
        color: red;
    }

.hotelSelect {
    border-radius: 8px;
    padding: 4px;
    color: black;
    font-size: 16px;
    min-width: 165px;
}

@media(max-width: 800px){
    .selectHotel__container{
        margin-bottom: 16px;
    }
}


.trip-video iframe {
    width: 100%;
    height: 90vh;

}

@media(max-width: 700px) {
    .trip-video iframe {
        width: 100%;
        height: 40vh;
    }

}

