.hero-banner.general-hero:not(:has(.general-main-image)) {
    height: auto;
    background-color: #001848;
}

.hero-banner.general-hero:not(:has(.general-main-image)) .text-holder {
    text-shadow: none;
    max-width: 100%;
}

.hero-banner.general-hero:not(:has(.general-main-image))::after {
    display: none;
}

.hero-banner.general-hero:has(.general-main-image) .row {
    position: absolute;
    top: 0;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8;
}

img.general-main-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-banner.general-hero .text-holder {
    margin: auto;
    padding: 60px 0 48px;
    text-align: center;
    width: 100%;
}

.hero-banner.general-hero:has(.general-main-image) .text-holder {
    margin: auto auto 0px;
}

.hero-banner.general-hero .text-holder h1 {
    margin-bottom: 20px;
}

.insurance-opt {
    padding: 35px 15px;
    margin-bottom: 30px;
    background: #fdf3e9;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap
}

.insurance-opt .icon-boxes-wraper {
    flex: 1 1 25%;
    min-width: 300px
}

.insurance-opt .icon-box {
    text-align: center;
    display: block;
    border-right: 1px solid #ffe0bd;
    padding: 0 0 10px
}

.insurance-opt .icon-box .img-holder {
    margin: 0 0 clamp(0px, 1vw, 10px)
}

.insurance-opt .icon-box .img-holder img {
    height: 45px;
    width: auto;
}

.insurance-opt .icon-box p {
    color: #000;
    font-size: 14px;
    margin-bottom: 20px
}

.insurance-opt .icon-box .text-holder {
    padding: 0 clamp(15px, 4vw, 30px)
}

.insurance-opt .icon-box .text-holder p {
    margin-top: 10px;
    line-height: 1.5;
}

.image-with-content, .activity-box {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 40px;
    align-items: center;
}

.activity-box {
    margin: 30px 0;
}

.image-with-content .text-holder, .image-with-content .img-holder, .activity-box .text-holder, .activity-box .img-holder {
    flex: 1 1 300px;
    margin: 0;
}

.activity-box.right-img .img-holder {
    order: 1;
}

.activity-box.right-img .text-holder {
    order: 0;
}

.activity-box .img-holder figure {
    display: block;
}

.image-with-content .img-holder img {
    border-radius: 10px;
}

.activity-box .img-holder figure img {
    width: 100%;
}

.review-row {
    display: flex;
    width: 100%;
    gap: 15px;
    flex-wrap: wrap;
    margin: 0px 0 30px;
}

.review-box {
    width: calc(25% - 15px);
    padding: 10px;
}

.review-box img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.new-btn {
    margin-top: 15px;
    width: 100%;
}

.new-btn a {
    background: #ff9924;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 50px;
    border: 0;
    transition: .3s ease-in-out;

    &:hover {
        background: #0890fa;
    }
}

.currency-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.currency-wrapper .currency-cards {
    width: calc((100% - 20px * 3) / 4);
    border: 1px solid #ccc;
    padding: 20px;
    min-width: 280px;
    border-radius: 10px;
}

.currency-cards .c-top-row {
    display: flex;
    gap: 18px;
    align-items: center;
}

.currency-cards .c-top-row h4 {
    color: #001848;
}

.currency-cards .c-top-row span {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555555;
    font-size: 15px;
}

.currency-cards .c-top-row img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.currency-cards .c-rates-holder {
    display: flex;
    margin: 18px 0 22px;
    background: rgba(0, 24, 72, 0.065);
    padding: 15px;
    border-radius: 10px;
}

.currency-cards .c-rates-holder .iner-bxes {
    width: 50%;
    flex: 1;
    text-align: center;
}

.c-rates-holder .iner-bxes strong {
    display: block;
    color: #001848;
    font-size: 18px;
    font-weight: 600;
}

.c-rates-holder .iner-bxes span {
    display: block;
    color: #555555;
    font-size: 14px;
    margin-bottom: 2px;
}

.c-button-holder .button {
    width: 100%;
}

/* Links  */
.list-items-link {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin: 30px 0
}

.list-items-link>a, .list-items-link>li {
    width: calc(25% - 20px);
    min-width: 140px;
    font-size: 18px;
    color: #0a3991;
    padding: 5px 0;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden
}


.list-items-link>li a {
    color: #000
}

.list-items-link>a::after, .list-items-link>li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0%;
    background: #FF9924;
    transition: all 0.3s ease-in-out
}

.list-items-link>a:hover .list-items-link>li:hover {
    border-bottom-color: #fff0
}

.list-items-link a:hover {
    color: #FF9924
}

.list-items-link>a:hover:after, .list-items-link>li:hover:after {
    width: 100%
}


.fact-holder {
    padding: 30px 15px 15px;
    background: #fdf3e9;
    border-radius: 15px;
}

.fact-holder ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.fact-holder ul li {
    list-style: none;
    padding: 0 30px;
    margin: 0 0 20px 0;
    width: 25%;
    text-align: center;
}

.fact-holder ul li figure {
    margin: 0 0 10px 0;
}

.fact-holder ul li figure img {
    width: auto;
    height: 40px;
    object-fit: fill;
}

.fact-holder ul li h6 {
    font-size: 16px;
    line-height: 22px;
    color: #080808;
    font-weight: 500;
    margin: 0 0 5px 0;
}

.fact-holder ul li p {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
}

/* News Section Style  */

.flt-slider-wraperye {
    overflow: hidden;
    position: relative;
    width: 100%
}

.flt-slider-wraper {
    display: flex;
    flex-wrap: wrap;
    transition: transform 0.5s ease;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    gap: 40px
}

.destination-item {
    flex: 0 0 auto;
    width: calc((100% - 40px * 3) / 4);
    padding: 0
}

.destination-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 300px;
    position: relative;
    width: 100%;
    display: flex;
    z-index: 1;
    transition: background 0.3s ease-in-out
}

.destination-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: top;
    z-index: 1;
    transition: all 0.3s ease-in-out
}

.destination-info {
    width: 100%;
    height: 60%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    z-index: 2;
    align-self: flex-end;
    position: relative;
    overflow: hidden
}

.destination-info::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #001848, #fff0);
    transition: opacity 0.3s ease-in-out;
    z-index: -1
}

.destination-info::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #f7890f, #fff0);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1
}

.destination-card:hover img {
    transform: scale(1.05)
}

.destination-card:hover .destination-info::after {
    opacity: 1
}

.destination-card:hover .destination-info p {
    color: #fff;
    transition: color 0.3s ease-in-out
}

.destination-info h4 {
    font-size: 17px;
    line-height: 1.3;
    color: #fff
}

.destination-info p {
    font-size: 13px;
    margin: 0 0 10px;
    color: #FF9924;
    line-height: 1.4;
}

.load-more-btn {
    margin-top: 35px;
}

.flt-slider-wraperye.news-listing h2 {
    margin-bottom: 30px;
}

.news-text-holder {
    width: 100%;
    align-content: end;
    position: relative;
    z-index: 1;
    margin-top: -50px;
}

.hero-banner.general-hero.news-hero::after {
    height: 80px;
    background: linear-gradient(to top, #ffffff 0%, rgb(255 255 255 / .95) 15%, rgb(255 255 255 / .85) 30%, rgb(255 255 255 / .6) 50%, rgb(255 255 255 / .3) 70%, #fff0 100%);
}

.news-text-holder h1 {
    color: #001848;
}

.news-text-holder::before {
    content: '';
    position: absolute;
    left: -25px;
    top: -60px;
    width: 110px;
    height: 100%;
    pointer-events: none;
    background: url(../images/baner-design-left.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom 15px left;
    z-index: -1;
}

/* Curency Convertor  */

.search-section {
    margin-top: -80px;
    z-index: 1;
    position: relative;
    margin-bottom: 30px;
}

.currency-form {
    background: #001848;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    position: relative
}

.currency-search-form {
    width: 100%;
    max-width: 700px;
    margin: 10px auto 20px;
    display: flex;
    gap: 15px;
    align-items: stretch;
    flex-wrap: wrap
}

.currency-search-form p {
    flex: 100%;
}

.currency-search-form .inputs-feilds {
    flex: 1 1 220px;
    position: relative;
}

.currency-search-form label {
    font-size: 12px;
    color: #929292;
    position: absolute;
    left: 15px;
    top: 8px;
    z-index: 1
}

.currency-search-form input {
    width: 100%;
    padding: 17px 10px 0 13px;
    border: 2px solid rgb(255 255 255 / .2);
    border-radius: 6px;
    font-size: 19px;
    height: 55px;
    background: #fff !important;
    color: #001849;
    transition: all 0.3s ease
}


.currency-search-form input::placeholder {
    color: #001849 !important
}

.currency-search-form input:focus::placeholder {
    opacity: 0
}

.currency-search-form input:focus {
    outline: none
}
.currency-search-form  p.note {
    font-size: 13px;
    font-weight: 300;
    opacity: 0.5;
}
.butn-swap {
    width: 40px;
    height: 40px;
    z-index: 11;
    position: relative;
    margin: auto -28px;
}
.butn-swap  #flightSwapBtn{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 1px solid #f7890f;
    background-color: white;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
}
.butn-swap  #flightSwapBtn:hover{
     background-color: #ffead2;
}
.butn-swap  #flightSwapBtn img{
    width: 20px;
}