* {
    margin: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    outline: none;
}

body {
    font-family: "Open Sans", sans-serif !important;
}

.overlay-f {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}


.loader {
    --d: 22px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    color: #fff;
    box-shadow:
        calc(1*var(--d)) calc(0*var(--d)) 0 0,
        calc(0.707*var(--d)) calc(0.707*var(--d)) 0 1px,
        calc(0*var(--d)) calc(1*var(--d)) 0 2px,
        calc(-0.707*var(--d)) calc(0.707*var(--d)) 0 3px,
        calc(-1*var(--d)) calc(0*var(--d)) 0 4px,
        calc(-0.707*var(--d)) calc(-0.707*var(--d))0 5px,
        calc(0*var(--d)) calc(-1*var(--d)) 0 6px;
    animation: l27 1s infinite steps(8);
}

@keyframes l27 {
    100% {
        transform: rotate(1turn)
    }
}

.zoom {
    display: inline-block;
    animation: zoom-animation 1s infinite;
}

@keyframes zoom-animation {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ------------------------------Header----------------------------- */

.header-sec {
    position: sticky;
    top: 0;
    z-index: 99999999;
}

.first-header {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.first-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 12px 0; */
}

.logo-custom {
    width: 150px;
    height: auto;
}

.first-header-content .inqary-side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 12px;
}

.call-det-main,
.mail-det-main {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 10px;
    margin-left: 18px;
    margin-right: 18px;
}

.call-det-main a {
    font-size: 22px;
    font-weight: 600;
    color: #CC1F16;
    transition: .5s ease all;
}

.call-det-main a:hover {
    font-weight: 600;
    color: #202020;
}

/* --------------------- */

.call-det-main-mob a,
.mail-det-main-mob a {
    display: inline-block;
    color: #fff;
    background-color: #CC1F16;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 14px;
    border-radius: 8px;
    transition: 0.5s ease all;
}

.call-det-main-mob a:hover,
.mail-det-main-mob a:hover {
    background-color: #000;
    color: #fff;
}

/* --------------------- */
.call-det-main i,
.mail-det-main i {
    color: #CC1F16;
    font-size: 16px;
}

.call-det-main p {
    color: gray;
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
}

.nav-custom {
    padding: 16px 0;
    height: 70px;
}

.nav-custom ul li a {
    color: #000;
}

.nav-custom ul li a.active {
    color: #eb0046;
}

.cta-btn-header a {
    background-color: #115c9f;
    color: #fff;
    border: 1px solid #115c9f;
    display: inline-block;
    padding: 9px 10px;
    font-family: "Poppins", Sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: 0.5s ease all;
}

.cta-btn-header a:hover {
    background-color: #000;
    color: #fff;
}

.inqary-side {
    position: relative;
}

.decorative-arrow {
    position: absolute;
    left: 20px;
    transition: all .3s;
    bottom: 0px;
    font-size: 75px;
    transform: translate(-70%, 75%) rotate(-45deg);
    z-index: 209;
    color: #19528A;
}


/* ===============================Left-header========================== */

.left-logo {
    display: flex;
    align-items: end;
}

.three-serv {
    display: flex;
    align-items: center;
    margin-left: 14px;
}

.bd-right {
    border-right: 1px solid rgb(192, 192, 192);
}

.bd-left {
    border-left: 1px solid rgb(192, 192, 192);
}

.first-serv {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
}

.first-serv .s-ico {
    padding: 0px 7px 7px 7px;
}

.first-serv .s-text p {
    margin-bottom: 0;
    font-size: 11px;
    font-weight: 600;
}

.s1-hover p {
    margin-bottom: 0;
}

.s1-hover {
    background-color: #fff;
    padding: 10px;
    width: 200px;
    font-size: 11px;
    position: absolute;
    left: 50%;
    top: 100%;
    /* Change bottom to top */
    transform: translateX(-50%) scale(0);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.first-serv:hover .s1-hover {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

/* ---------------------------------Hero-sec-bg---------------------------------- */

.hero-sec-bg {
    background-image: url("https://d199mx6k5tpiax.cloudfront.net/20241130T051441-609-9479.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0 60px 0;
    position: relative;

}

.hero-bg2 {
    min-height: 410px;
    background-position: bottom center;
    margin-bottom: 170px;
    padding: 0 0 60px 0;
}


.bg-content-main {
    position: relative;
    z-index: 1;
}

.bg-content-main .call-now-text {
    color: #fff;
    font-weight: 500;
    margin-bottom: 0;
    padding-top: 30px;
}

.call-now-hero {
    padding-top: 10px;
}

.call-now-hero a {
    display: inline-block;
    color: #fff;
    background-color: #EC4711;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: .5s ease all;
    border: 1px solid transparent;
}

.call-now-hero a:hover {
    background-color: #19528A;
    color: #ffffff;
    border: 1px solid #19528A;
}

.call-now-hero i {
    padding-right: 6px;
    font-size: 18px;
}


/* ===============================Pick-left========================== */

/* .left-pick .pick-title h3{
    text-align: center;
    color: #3b3536;
    font-size: 24px;
} */


/* ==========================Form-main===================== */

.form-main {
    background-color: #fff;
    padding: 20px 30px 15px 30px;
    border-radius: 5px;
}

.for-mobile {
    display: none;
}

.form-radius {
    background-color: rgba(234, 246, 251, 0.75) !important;
    border-radius: 15px;
    box-shadow: 0 3px 10px -2px;
    width: 100%;
    position: absolute;
    bottom: -16rem;
    left: 50%;
    transform: translate(-50%, 50%);
}

.form-head h3 {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
}

.form-head h3 span {
    color: rgb(204, 31, 22);
}

.or-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.or-content p {
    display: inline-block;
    text-align: center;
    background-color: white;
    padding: 6px 8px;
    color: gray;
    z-index: 1;
    margin-bottom: 0;
}

.or-content::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgb(229, 229, 229);
    transform: translateY(50%);
}

.form-head h4 {
    font-size: 16px;
    text-align: center;
    font-weight: 600;
}


/* =================toggle-tabs=================== */

.radio-toggles {
    align-items: center;
    background: #19528A;
    border: 1px solid #19528A;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 4px;
    position: relative;
}

.radio-toggles label {
    cursor: pointer;
    padding: 4px 4px;
    text-align: center;
    width: 50%;
    z-index: 2;
    color: rgb(221, 221, 221);
    font-size: 12px;
}

.radio-toggles input[type="radio"]:checked+label {
    color: #000;
    font-weight: 500;
}

.slide-item {
    background: white;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    height: calc(100% - 8px);
    left: calc(50% + 4px);
    position: absolute;
    width: calc(50% - 8px);
    transition: left .4s;
    z-index: 0;
}

input[type="radio"] {
    left: -9999px;
    position: absolute;
    z-index: -1;
}

input[type="radio"]:nth-of-type(1):checked~.slide-item {
    left: 4px;
}

input[type="radio"]:nth-of-type(3):checked~.slide-item {
    left: calc(66.66% + 4px);
}


/* =================toggle-tabs2=second================== */

.radio-toggles2,
.radio-toggles2-pc {
    align-items: center;
    background: #19528A;
    border: 1px solid #19528A;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 4px;
    position: relative;
}

.radio-toggles2 label {
    cursor: pointer;
    padding: 4px 4px;
    text-align: center;
    width: 50%;
    z-index: 2;
    color: rgb(221, 221, 221);
    font-size: 12px;
}

.radio-toggles2-pc label {
    cursor: pointer;
    padding: 4px 4px;
    text-align: center;
    width: 50%;
    z-index: 2;
    color: rgb(221, 221, 221);
    font-size: 12px;
}

.radio-toggles2 input[type="radio"]:checked+label {
    color: #000;
    font-weight: 500;
}

.radio-toggles2-pc input[type="radio"]:checked+label {
    color: #000;
    font-weight: 500;
}

.slide-item2 {
    background: white;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    height: calc(100% - 8px);
    left: calc(50% + 4px);
    position: absolute;
    width: calc(50% - 8px);
    transition: left .4s;
    z-index: 0;
}

.radio-toggles2 input[type="radio"] {
    left: -9999px;
    position: absolute;
    z-index: -1;
}

.radio-toggles2-pc input[type="radio"] {
    left: -9999px;
    position: absolute;
    z-index: -1;
}

.radio-toggles2 input[type="radio"]:nth-of-type(1):checked~.slide-item2 {
    left: 4px;
}

.radio-toggles2-pc input[type="radio"]:nth-of-type(1):checked~.slide-item2 {
    left: 4px;
}

.radio-toggles2 input[type="radio"]:nth-of-type(3):checked~.slide-item2 {
    left: calc(66.66% + 4px);
}

.radio-toggles2-pc input[type="radio"]:nth-of-type(3):checked~.slide-item2 {
    left: calc(66.66% + 4px);
}


/* ===============================FoR-MOBile==================================== */
/* =================toggle-tabs=================== */

.radio-toggles-mb {
    align-items: center;
    background: #19528A;
    border: 1px solid #19528A;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 4px;
    position: relative;
}

.radio-toggles-mb label {
    cursor: pointer;
    padding: 4px 4px;
    text-align: center;
    width: 50%;
    z-index: 2;
    color: rgb(221, 221, 221);
    font-size: 12px;
}

.radio-toggles-mb input[type="radio"]:checked+label {
    color: #000;
    font-weight: 500;
}

.slide-item-mb {
    background: white;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    height: calc(100% - 8px);
    left: calc(50% + 4px);
    position: absolute;
    width: calc(50% - 8px);
    transition: left .4s;
    z-index: 0;
}

input[type="radio"] {
    left: -9999px;
    position: absolute;
    z-index: -1;
}

input[type="radio"]:nth-of-type(1):checked~.slide-item-mb {
    left: 4px;
}

input[type="radio"]:nth-of-type(3):checked~.slide-item-mb {
    left: calc(66.66% + 4px);
}


/* =================toggle-tabs2=second================== */

.radio-toggles2-mb {
    align-items: center;
    background: #19528A;
    border: 1px solid #19528A;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 4px;
    position: relative;
}

.radio-toggles2-mb label {
    cursor: pointer;
    padding: 4px 4px;
    text-align: center;
    width: 50%;
    z-index: 2;
    color: rgb(221, 221, 221);
    font-size: 12px;
}

.radio-toggles2-mb input[type="radio"]:checked+label {
    color: #000;
    font-weight: 500;
}

.slide-item2-mb {
    background: white;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    height: calc(100% - 8px);
    left: 4px;
    /* Start at the first option */
    position: absolute;
    width: calc(50% - 8px);
    transition: left 0.4s;
    z-index: 0;
}

.radio-toggles2-mb input[type="radio"] {
    left: -9999px;
    position: absolute;
    z-index: -1;
}

.radio-toggles2-mb input[type="radio"]:nth-of-type(1):checked~.slide-item2-mb {
    left: 4px;
    /* Slide to the first option */
}

.radio-toggles2-mb input[type="radio"]:nth-of-type(2):checked~.slide-item2-mb {
    left: calc(50% + 4px);
    /* Slide to the second option */
}

/* ============================================================================= */
/* =========================New-dropdown====================== */
.dropdown-containerx {
    width: 100%;
    position: relative;
}

.dropdownx {
    width: 100%;
    padding: 8px;
    font-size: 12px;
    border: 1px solid #19528a;
    background-color: #19528a;
    border-radius: 25px;
    cursor: pointer;
    color: #fff;
}

.dropdownx i {
    margin-left: 10px;
    color: #fff;
}

.dropdownxy {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.dropdown-list {
    display: none;
    position: absolute;
    width: 100%;
    top: 35px;
    left: 13px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.dropdown-list.open {
    display: block;
}

.dropdown-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

.quantity-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #afafaf;
    border-radius: 5px;
}

.quantity-controls span {
    padding: 5px 10px;
    color: #000;
    cursor: pointer;
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quantity-controls span:disabled {
    background-color: #ddd;
}

.quantity-controls input {
    width: 35px;
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 14px;
    border-left: 1px solid #afafaf;
    border-right: 1px solid #afafaf;
    border-top: none;
    border-bottom: none;
    transition: .5s ease all;
}

.quantity-controls span:hover {
    background-color: #afafaf;
    color: #000;
}

.drp-x:active {
    background-color: transparent !important;
    font-weight: 600 !important;
    color: #000 !important;
}

.drp-x {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px !important;
    font-size: 13px;
    font-weight: 600 !important;
}

.drp-x:focus,
.drp-x:hover {
    color: #000 !important;
    background-color: transparent !important;
}

.qua-text {
    line-height: 15px;
    font-weight: 700;
}

.qua-text span {
    font-size: 11px !important;
    font-weight: 400 !important;
}

.fm-selex option {
    color: black !important;
}

.fm-selex option:checked {
    color: black !important;
}

.drp-x .done-btn {
    width: 100%;
    padding: 6px 6px;
    color: #fff;
    background-color: #19528A;
    border: 1px solid transparent;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ======================================================= */



.first-top {
    background-color: #f4f4f4;
    padding: 6px 0;
    border-radius: 5px;
}

.flx-1 {
    flex: 1 !important;
}

.form-main .font-s {
    font-size: 13px !important;
    border: none !important;
    background-color: #f4f4f4 !important;
    transition: .5s ease all;
}

.form-main .font-s:hover {
    font-weight: 600 !important;
}

.destination-content {
    padding-top: 12px;
}

.form-main .fm-cust input {
    font-size: 14px !important;
    border: 1px solid gray !important;
    border-radius: 0 !important;
}

.form-main .fm-cust {
    border: 1px solid gray !important;
    font-size: 14px;
}

.mobile-in2 {
    position: relative;
}

.rdo-grp {
    display: flex;
    align-items: center;
}

.rdo-grp .form-check {
    margin: 0 6px !important;
}

.rdo-grp .form-check-input:focus {
    box-shadow: none !important;
}

.air-label {
    margin-bottom: 0 !important;
    margin-right: 10px;
    font-size: 14px !important;
    color: gray !important;
    margin-left: 5px !important;
}

.btn-rad1 {
    border-top-left-radius: 25px !important;
    border-bottom-left-radius: 25px !important;
    color: gray !important;
    border-color: gray !important;
    font-size: 14px !important;
}

.btn-rad2 {
    border-top-right-radius: 25px !important;
    border-bottom-right-radius: 25px !important;
    color: gray !important;
    border-color: gray !important;
    font-size: 14px !important;
    margin-left: 3px !important;
}

.btn-rad1:hover,
.btn-rad2:hover {
    background-color: transparent !important;
    color: #19528A !important;
    border-color: #19528A !important;
}

.btn-rad1:focus,
.btn-rad2:focus {
    box-shadow: none !important;
}

.btn-rad1.active,
.btn-rad2.active {
    box-shadow: none !important;
    background-color: #19528A !important;
    color: #fff !important;
    font-weight: 500 !important;
}

.min-h {
    height: 65px;
}

.num2 {
    position: absolute;
    top: 0;
    left: 2px;
    border-radius: 6px 0px 0px 6px;
    padding: 7px 0px 8px 5px;
    background-color: transparent;
    color: #6C757D;
    font-size: 14px;
}

.mobile-in2 input {
    padding-left: 28px !important;
}

.check-cont {
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-cont .form-check-input {
    height: 17px !important;
    width: 17px !important;
}

.form-check-input:focus {
    box-shadow: none !important;
}

.check-cont .mini-label {
    font-size: 10px;
    margin-left: 4px;
}

.sbmt-btn-form2 .sbmt-btn-cus2 {
    width: 100%;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    background-color: #CC1F16;
    padding: 10px 26px;
    margin: 14px 0;
    border: 1px solid #CC1F16;
    text-transform: uppercase;
    transition: 0.5s ease all;
}

.sbmt-btn-form2 .sbmt-btn-cus2:hover {
    color: #fff;
    background-color: #000;
}

.sbmt-btn-form2 .sbmt-btn-cus2:focus {
    box-shadow: none !important;
    border: 1px solid white !important;
}


.success-main {
    border-radius: 12px;
    border: 2px solid #324468;
}

.Thanks-message {
    min-height: 390px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.tx-ico {
    text-align: center;
}

.tx-ico i {
    font-size: 60px;
    color: #324468;
}

.tx-title {
    width: 100%;
}

.tx-title h4 {
    color: #324468;
    text-align: center;
    font-weight: 800;
    padding: 30px 0 10px 0;
    font-size: 22px;
}

.tx-title h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.first-success p {
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    color: #2c2c2c;
}

.first-success .ft-cs {
    font-size: 13px !important;
}

.Thanks-message .txt-green,.Thanks-message2 .txt-green{
    text-transform: none;
    color: #324468;
}

.second-success .cl-us {
    text-align: center !important;
    font-weight: 600 !important;
    color: #324468 !important;
    font-size: 18px;
    padding: 0;
    margin-bottom: 0;
}

.second-success .cl-us2 {
    text-align: center !important;
    font-weight: 700 !important;
    color:#324468 !important;
    padding: 0;
    margin-bottom: 0;
    font-size: 16px !important;
    text-decoration: 1px solid #9fc4e9 !important;
    text-underline-offset: 2px;
}

.first-success {
    background-color: #f7f7f7;
    padding: 20px 20px 20px 20px;
    position: relative;
    border-radius: 10px 10px 0 0;
}

.or-cir {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background-color: #fff; */
    /* height: 69px;
    width: 69px; */
    /* border-radius: 50%; */
    /* border: 2px solid #a2aab2; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.or-cir p {
    margin-bottom: 0 !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    color: #000;
}

@keyframes vibrate {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
  }
  
  #phone-icon {
    display: inline-block;
    animation: vibrate 0.2s infinite;
  }

.second-success {
    background-color: #f7f7f7;
    padding: 20px 20px 40px 20px;
    border-top: 2px dotted #324468;
    border-radius: 0 0 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

/* ================thanks-2=================== */

.Thanks-message2 {
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    bottom: -218px;
    left: 50%;
    transform: translate(-50%, 50%);
}

.Thanks-message2 .tx-ico {
    text-align: center;
}

.Thanks-message2 .tx-ico i {
    font-size: 35px;
    color: #324468;
}

.Thanks-message2 .tx-title {
    width: 100%;
}

.Thanks-message2 .tx-title h4 {
    color: #324468;
    text-align: center;
    font-weight: 800;
    padding: 10px 0 10px 0;
    margin-bottom: 0;
    font-size: 22px;
}

.Thanks-message2 .tx-title h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}

.Thanks-message2 p {
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    margin-bottom: 0;
}

.Thanks-message2 .cl-us {
    text-align: center;
    font-weight: 600;
    color: #000;
    padding: 0;
    margin-bottom: 0;
}

.Thanks-message2 .or-container {
    margin: 5px 0;
}

.or-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 20px 0;
}

.line {
    width: 30%;
    height: 1px;
    background-color: gray;
}

.or-text {
    padding: 0 10px;
    font-weight: bold;
    color: gray;
}







/* ----------------------------------Form-sec----------------------------- */



.form-content-main .searching {
    display: flex;
    align-items: center;
    border-radius: 8px;
    background-color: #000000;
    padding: 10px 0;
    margin: 0 0 12px 0;
}

.form-content-main .searching p {
    color: #fff;
    font: 18px;
    margin-bottom: 0;
}

/* -----------------------Error-message--------------------------- */

.form-content-main .error-message {
    display: flex;
    align-items: center;
    border-radius: 8px;
    background-color: #000000;
    padding: 10px 0;
    margin: 0 0 12px 0;
}

.error-message .err-link {
    display: inline-block;
    color: #fff;
    background-color: #dc3546;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
    margin-left: 20px;
    transition: 0.5s ease all;
}

.error-message p {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 0;
    padding: 0 12px;
}

/* -------------------------------------------------- */

.form-sec {
    width: 100%;
    position: relative;
}

.form-content-main {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 15px 0px rgba(202.3, 202.3, 202.3, 0.5);
    padding: 25px 40px 25px 40px;
    margin-top: -60px;
}

.form-content-child {
    background-color: #e4f1fb;
    border-radius: 20px;
    padding: 25px 30px;
}

.form-control,
.form-select {
    border: 1px solid #095bad !important;
}

.form-p {
    padding: 0 !important;
}

.form-control:focus,
.form-select:focus {
    border-color: none !important;
    box-shadow: none !important;
}

.small-label {
    font-size: 12px;
    font-weight: 600;
    color: #4f4f4f;
    margin-bottom: 0 !important;
}

.cta-btn-form .btn-cus {
    display: inline-block;
    background-color: #095bad;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 4px;
    margin: 20px 0 10px 0;
    transition: 0.5s ease all;
}

.cta-btn-form .btn-cus:hover {
    color: #fff;
    background-color: #000;
}

.post-sec {
    padding: 80px 0;
}

.post-sec-head h2 {
    font-weight: 700;
    color: #CC1F16;
    text-transform: uppercase;
    font-size: 48px;
    text-align: center;
}

.img-box {
    position: relative;
    border-radius: 16px;
}

.img-box img {
    width: 100%;
    min-height: 290px;
    border-radius: 16px;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    border-radius: 16px;
}

.img-box .tag {
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: right;
}

.img-box .tag .old-fare {
    color: #fff;
    background-color: #fb0709;
    margin-bottom: 2px;
    font-size: 12px;
    padding: 4px 10px;
    display: inline-block;
    border-radius: 4px;
}

.img-box .tag .old-fare del {
    text-decoration: line-through !important;
}

.img-box .tag .new-fare {
    color: #fff;
    background-color: green;
    margin-bottom: 0;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
}

.img-box .tag .new-fare ins {
    text-decoration: underline !important;
}

.post-sec .title-box .left-tbox {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 14px 12px;
}

.post-sec .title-box .right-tbox {
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0 12px;
}

.post-sec .title-box h3 {
    color: #fff;
    font-size: 18px;

}



.post-sec .rating i {
    color: #fff;
}


.right-tbox {
    width: 35%;
    text-align: right;
}

.btn-box a {
    background-color: transparent;
    color: #fff;
    letter-spacing: 1px;
    padding: 6px 6px;
    display: inline-block;
    margin: 12px 0;
    transition: 0.5s ease all;
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
    border: 1px solid white;
}

.btn-box a:hover {
    color: #000000;
    background-color: #ffffff;
}


.call-now-hero a {
    display: inline-block;
    color: #fff;
    background-color: #EC4711;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: .5s ease all;
    border: 1px solid transparent;
}


.vertical-cta-main {
    background-color: #E7F1FC;
    min-height: 625px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.vertical-cta-main .vertical-cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 10px;
    height: 100%;
}

.vertical-cta-content .cta-avtar img {
    width: 100%;
}

.vertical-cta-content h4 {
    color: #2c2f40;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding-top: 35px;
}

.vertical-cta-content p {
    color: #2c2f40;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    padding-top: 10px;
}

.verti-call-now-ct {
    text-align: center;
    padding: 16px 0;
}

.verti-call-now-ct a {
    display: inline-block;
    color: #fff;
    background-color: #19528A;
    font-size: 26px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: .5s ease all;
    border: 1px solid transparent;
}

.verti-call-now-ct a:hover {
    background-color: #24844D;
    color: #ffffff;
    border: 1px solid #24844D
}

/* ---------- */

.verti-call-now {
    text-align: center;
    margin: 15px 0 0 0;
}

.verti-call-now .col-ed {
    text-align: center;
    font-size: 18px;
}

.verti-call-now {
    display: inline-block;
    color: #000;
    background-color: #fff;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 8px;
    transition: .5s ease all;
    border: 1px solid transparent;
}

.verti-call-now a:hover {
    background-color: #24844D;
    color: #ffffff;
    border: 1px solid #24844D;
}

.verti-call-now a:hover .vt-call {
    color: #000;
}

.verti-call-now:hover .col-ed {
    color: red;
}

.txt-green {
    color: #01ff15;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
}

.verti-call-now .vt-call {
    padding: 0 !important;
}

.verti-call-now p {
    font-size: 12px;
    color: #000;
    text-align: center;
    margin-bottom: 0;
}

.verti-call-now i {
    padding-right: 6px;
    font-size: 18px;
}

/* -----------------------------What-sec------------------------------- */

.what-sec {
    background-color: #ebebeb;
    padding: 60px 0;
}

.what-content-head h2 {
    color: #000000;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 500;
}

.what-content-head p {
    color: #000000;
    text-align: center;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 400;
}

.what-content {
    padding: 25px 0;
}

.what-content h3 {
    color: #000000;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    line-height: 30px;
}

.what-content h4 {
    color: #292929;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    line-height: 30px;
}

.what-content p {
    color: #727272;
    font-weight: 300;
    line-height: 25px;
    text-align: center;
    font-size: 14px;
}

.title-box-what h3 {
    color: #000000;
    letter-spacing: 7px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
}

/* -------------------------------Service-sec---------------------------------- */

.service-sec {
    padding: 40px 0;
}

.service-sec .first-card {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #000724;
    padding: 30px 15px;
    border-radius: 14px;
    box-shadow: rgba(255, 255, 255, 0.3) 0px 1px 2px 0px, rgba(255, 255, 255, 0.15) 0px 2px 6px 2px;
    transition: .5s ease all;
}

.service-sec .first-card:hover {
    transform: translate(0, -10px);
}

.service-sec .first-card:hover .icon-box {
    background-color: #D2293B;
    transition: .5s ease all;
}

.service-sec .first-card:hover .icon-box i {
    color: #fff;
}

.icon-box {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    margin-bottom: 20px;
}

.icon-box i {
    color: #000724;
    font-size: 22px;
}

.title-box-service h3 {
    font-size: 22px;
    color: #fff;
}

.title-box-service p {
    font-size: 15px;
    color: #fff;
    padding-top: 12px;
}

.serv-content-head h2 {
    color: #000000;
    text-align: center;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 300;
}

.serv-content-head p {
    color: #000000;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 300;
}

/* ---------------------------------Why-sec------------------------------------- */

.why-sec {
    padding: 60px 0;
}

.why-sec-head h2 {
    color: #000000;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 500;
}

.row-custom {
    padding: 60px 0 0 0;
}

.why-card {
    text-align: center;
}

.why-card img {
    width: 70px;
}

.why-card h3 {
    padding-top: 20px;
    font-size: 22px;
    color: #2b2b2b;
}

/* --------------------------------------cta-content----------------------------------------- */

.cta-sec-bg {
    background-image: url("https://d199mx6k5tpiax.cloudfront.net/20241130T051928-609-3135.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    padding: 50px 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 60%);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.cta-content .cta-icon-round {
    height: 65px;
    width: 65px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.cta-content .cta-icon-round i {
    color: #000724;
    font-size: 20px;
}

.cta-content h2 {
    color: #fff;
    padding-top: 20px;
    text-align: center;
}

.cta-content p {
    color: #fff;
    font-size: 18px;
    text-align: center;
}

.cta-content .call-now a {
    display: inline-block;
    color: #fff;
    background-color: #D2293B;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
    transition: .5s ease all;
}

.cta-content .call-now a:hover {
    background-color: #fff;
    color: #000;
}

.cta-content .call-now i {
    padding-right: 6px;
    font-size: 18px;
}



/* ------------------------------------BOOKING-Sec--------------------------------------- */

.booking-bg {
    background-image: url("https://d199mx6k5tpiax.cloudfront.net/20241130T051746-609-2216.webp");
    background-size: cover;
    background-position: top center;
    width: 100%;
    background-repeat: no-repeat;
    padding: 40px 0;
    position: relative;
}

.booking-content {
    position: relative;
    z-index: 1;
}

.booking-content h4 {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.booking-content p {
    color: #fff;
    text-align: center;
}

.booking-content .book-form {
    padding: 20px 0;
}

.sbmt-btn-form {
    text-align: center;
}

.input-cust {
    padding: 10px 10px !important;
}

.mobile-in {
    position: relative;
}

.num {
    position: absolute;
    top: 2px;
    left: 8px;
    border-radius: 6px 0px 0px 6px;
    padding: 8px 0px 8px 5px;
    background-color: transparent;
    color: #6C757D;
    font-size: 17px;
}

.mobile-in input {
    padding-left: 35px !important;
}

.sbmt-btn-form .sbmt-btn-cus {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    border: none;
    background-color: #ec4711;
    padding: 8px 26px;
    margin: 14px 0;
    border: 1px solid #ec4711;
    text-transform: uppercase;
    transition: 0.5s ease all;
}

.sbmt-btn-form .sbmt-btn-cus:hover {
    color: #fff;
    background-color: #000;
}

.sbmt-btn-form .sbmt-btn-cus:focus {
    box-shadow: none !important;
    border: 1px solid white !important;
}

.success-csm p {
    background-color: green;
    display: inline-block;
    gap: 10px;
    padding: 15px 18px;
    border-radius: 8px;
}

.success-csm i {
    color: yellow;
    font-size: 18px;
    padding-right: 8px;
}

.call2-now {
    text-align: center;
    padding: 20px 0;
}

.call2-now a {
    display: inline-block;
    color: #fff;
    background-color: #ec4711;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
    transition: .5s ease all;
}

.call2-now a:hover {
    background-color: #fff;
    color: #000;
}

.call2-now i {
    padding-right: 6px;
    font-size: 18px;
}


/* ----------------------------------Logo-sec------------------------------ */

.logo-sec {
    padding: 60px 0 40px 0;
}

.logo-head h3 {
    text-align: center;
    font-weight: 700;
}

.marquee-container {
    margin: 30px 0 20px 0;
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: marquee 25s linear infinite;
}

.marquee-content img {
    height: 45px;
    margin-right: 20px;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* -----------------------------------Review-sec-------------------------------- */

.review-sec {
    padding: 60px 0;
    background-color: #f2f2f2;
}

.review-sec-head {
    margin: 40px 0 20px 0;
}

.review-sec .review-sec-head h4 {
    color: #000000;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.trust-logo {
    text-align: center;
}

.trust-logo img {
    width: 150px;
    height: auto;
}

.review-content-main {
    position: relative;
}

.item {
    background: #ffffff;
    padding: 10px 10px 10px 15px;
    min-height: 220px;
    border-radius: 6px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.testimonial-content {
    padding: 10px;
}

.test-first {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 5px;
}

.testimonial-title {
    margin-bottom: 0;
    font-size: 16px;
    color: #1c1d1b;
    text-transform: capitalize;
    display: inline-block;
    font-weight: 600;
}

.test-post {
    margin-bottom: 0;
    font-size: 14px;
    color: #444;
}

.star-icon i {
    color: #fff;
    background: #00b67a;
    padding: 5px;
    margin: 0 1px 4px 1px;
}

.star-rightside i {
    color: #fff;
    background: #00b67a;
    padding: 3px;
    margin: 0 1px 4px 1px;
    font-size: 9px;
}

.testimonial-content .description {
    font-size: 13px;
    color: #777;
    line-height: 20px;
    padding: 8px 0;
    margin-bottom: 0;
}

.owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: 0;
    top: 30%;
    transform: translate(-50%, 50%);
    height: 30px;
    width: 30px;
    font-size: 35px !important;
    background-color: #19528A !important;
    color: #fff !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 50% !important;
}

.owl-theme .owl-nav .owl-prev span {
    height: 30px !important;
    display: flex !important;
    align-items: end !important;
    margin-top: 15px !important;
}

.owl-theme .owl-nav .owl-next {
    position: absolute;
    right: -30px;
    top: 30%;
    transform: translate(-50%, 50%);
    height: 30px;
    width: 30px;
    font-size: 35px !important;
    background-color: #19528A !important;
    color: #fff !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 50% !important;
}

.owl-theme .owl-nav .owl-next span {
    height: 30px !important;
    display: flex !important;
    align-items: end !important;
    margin-top: 15px !important;
}

.disclaimer-footer p {
    font-size: 11px;
    margin-bottom: 0;
    color: #000;
    text-align: justify;
    padding: 40px 0 30px 0;
}

.disclaimer-footer p span {
    color: #05569f;
    font-weight: 600;
    font-size: 12px;
}

/* -------------------------------footer------------------------------- */

.footer-main {
    background-color: #e4f1fb;
    padding: 15px 0;
}

.copyright p {
    color: #000000;
    text-align: center;
    font-size: 14px;
}

.footer-main a {
    color: #000000;
    text-align: center;
    padding: 0 4px;
    transition: 0.5s ease all;
    text-decoration: 1px solid transparent underline !important;
}

.footer-main a:hover {
    color: #000000;
    text-decoration: 1px solid #000000 underline !important;
}


/* ====================================Sticky-popup-content========================================= */

/* -------------------------arrow-content------------------------ */




.overlay-arrow {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.arrow-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 99999999999999999999;
    text-align: center;
}

.arrow-content .arrow-text p {
    font-size: 34px;
    color: #fff;
    font-weight: 800;
    text-decoration: 2px solid underline #fff !important;
    text-underline-offset: 9px;
}

.arrow-content .arrow-img {
    width: 100%;
    transform: rotate(2deg);
}

.arrow-content .arrow-img img {
    height: 380px;
    width: auto;
}










.round-cir {
    width: 65px;
    height: 65px;
    background-color: #cc1f16;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    /* bottom: 30px;
    right: 50px; */
    z-index: 999;
    transition: .5s ease all;
}

.round-cir:hover i {
    color: #19528A;
}

.round-cir:hover {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
}

.round-cir i {
    font-size: 24px;
    color: #fff;
}

/* --------------Pulse--------------- */

.pulse2 {
    animation: pulse-animation2 2s infinite;
}

@keyframes pulse-animation2 {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.397);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}


.call-camp {
    position: relative;
}

.call-hover {
    right: 55px;
    bottom: 115px;
    /* transform: scale(0); */
    transform-origin: 165px bottom;
    width: 205px;
    position: fixed;
    z-index: 99;
}

.call-hover::after {
    position: absolute;
    top: calc(100% - 5px);
    right: 30px;
    width: 10px;
    height: 10px;
    content: "";
    background-color: rgb(36, 132, 77);
    transform: rotate(45deg);
}

.call-hover img {
    width: 100%;
}

.call-hover-content {
    background-color: #24844D;
    padding: 10px;
}

.call-hover-content h5 {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.call-hover-content h5 span {
    font-size: 12px;
}

.call-hover-content p {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.call-camp:hover .call-hover {
    transform: scale(1);
    transition: transform 0.3s ease;
}

.call-hover {
    transform: scale(0);
    transition: transform 0.3s ease;
}

.sticky-quote {
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    position: sticky;
    bottom: 15px;
    z-index: 99;
}

.sticky-quote a {
    width: 100%;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    border-radius: 8px;
    text-align: center;
    background-color: #CC1F16;
    padding: 10px 25px;
    margin: 8px 20px;
    border: 1px solid #CC1F16;
    text-transform: uppercase;
    transition: 0.5s ease all;
}

.sticky-quote a:hover {
    color: #fff;
    background-color: #19528A;
    border: 1px solid #19528a;
}

.sticky-quote a i {
    margin-right: 8px;
}





/* =======================================Terms & Conditions======================================== */

.tc-bg {
    background-color: #19528A;
    position: relative;
    height: 290px;
}

.bg-content {
    padding: 70px 0 50px 0;
}

.bg-content h1 {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
}

.figure-css-tc {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    z-index: 1;
}

.figure-css-tc {
    fill: #fff !important;
}

.tc-content-main {
    padding: 30px 0 10px 0;
}

.tc-content-main h5 {
    font-weight: 500;
}

.tc-content-main ul li span {
    font-weight: 500;
}

.tc-disc p {
    font-size: 11px;
    margin-bottom: 0;
    color: #000;
    text-align: justify;
    padding: 40px 0 30px 0;
}

.tc-disc p span {
    color: #05569f;
    font-weight: 600;
    font-size: 12px;
}



/* ---------------------------------- */

@media (min-width:320px) and (max-width:575px) {
    .dropdownx {
        margin-top: 10px;
    }

    .sticky-quote {
        display: flex;
    }
}

@media (min-width: 320px) and (max-width: 767px) {
    .first-header-content {
        align-items: center;
        justify-content: space-between;
    }

    .marquee-content img {
        height: 30px;
    }
         .radio-toggles-mb {
             margin-top: 6px;
         }

}

@media (min-width: 320px) and (max-width: 475px) {
    .post-sec-head h2 {
        font-size: 38px;
    }

    .error-message .err-link {
        font-size: 15px;
        font-weight: 500;
        padding: 10px 14px;
        margin-left: 0;
    }

    .form-content-main {
        padding: 25px 15px 25px 15px;
    }

    .owl-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .owl-theme .owl-nav .owl-prev {
        position: static;
        top: auto;
        left: auto;
        transform: none;
    }

    .owl-theme .owl-nav .owl-next {
        position: static;
        top: auto;
        right: auto;
        transform: none;
    }

    .txt-green {
        font-size: 17px;
    }

}

@media (min-width:320px) and (max-width:399px) {
    .show {
        width: 190px;
    }

    .rdo-grp {
        flex-wrap: wrap;
    }

    .air-label {
        margin-bottom: 8px;
        margin-left: 8px;
    }
}

@media (min-width: 320px) and (max-width: 991px) {

    .tx-title h4 {
        padding: 12px 0 0 0;
    }

    .first-success {
        padding: 20px 20px 20px 20px;
    }


    .for-pc {
        display: none;
    }

    .hero-bg2 {
        min-height: auto;
        background-position: center;
        margin-bottom: 0;
        padding: 50px 0 60px 0;
    }

    .for-mobile {
        display: block;
    }

    .three-serv {
        display: none;
    }

    .inqary-side {
        display: none !important;
    }

    .inqary-side-mobile {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        margin: 10px 0;
    }

    .error-message p {
        text-align: center;
    }

    .post-sec {
        padding: 80px 0 90px 0;
    }

    .vertical-cta-main {
        min-height: 100%;
    }

    .what-sec {
        padding: 60px 0 0 0;
    }

    .review-sec-head {
        margin: 0 0 20px 0;
    }

    .round-cir {
        width: 65px;
        height: 65px;
        /* bottom: 60px;
        right: 16px; */
    }

    .call-hover {
        right: 15px;
        bottom: 135px;
    }
}

@media (min-width:320px) and (max-width:375px) {
    .item {
        min-height: 250px;
    }

    .right-tbox {
        width: 50%;
    }
}

@media (min-width:768px) and (max-width:1199px) {
    .post-sec .title-box .left-tbox {
        flex-direction: column;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .item {
        min-height: 215px;
    }
}

@media (min-width:1024px) and (max-width:1199px) {
    .item {
        min-height: 280px;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .service-sec .first-card {
        min-height: 302px;
    }

    .wi-100 {
        width: 100% !important;
    }

    .wi-33 {
        width: 30% !important;
    }

    .wi-35 {
        width: 38% !important;
    }

}

@media (min-width:320px) and (max-width:350px) {
    .disclaimer-footer p {
        padding: 30px 0 30px 0;
    }
}
@media (min-width:320px) and (max-width:330px) {
    .or-cir .fs-bt {
        font-size: 20px !important;
    }
}

@media (min-width:1400px) and (max-width:5500px) {
    .img-box img {
        min-height: 330px;
    }
}

/* add some basic styling to the dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.show {
    display: block;
    overflow: scroll;
    height: 300px;
    width: 260px;
    z-index: 999;
}

#options1 input {
    outline: none;
    border: none !important;
}

#options2 input {
    outline: none;
    border: none !important;
}

#options3 input {
    outline: none;
    border: none !important;
}

#options4 input {
    outline: none;
    border: none !important;
}

.timer {
    color: red;
    font-size: 24px;
    font-weight: 800;
}

.form-main .fm-border input {
    font-size: 14px !important;
    border: 1px solid gray !important;
    border-radius: 0 !important;
}

.form-main .fm-border {
    border: 1px solid red !important;
    font-size: 14px;
}

.infantClass{
    font-size: smaller;
}

.childrenClass{
    font-size: small;
}

.adultClass{
    font-size: medium;
}

/* =========================22/02/2025================================ */

.thank-pop {
    margin-top: 50px !important;
}

.thank-head {
    background-color: rgb(25 82 138 / 75%);
    border-radius: 4px 4px 0 0;
}

.thank-head h4 {
    font-size: 21px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    padding: 16px 12px;
    margin-bottom: 0;
}

.count-css {
    color: #ff4c4c;
}

.main-query-form {
    background-color: #ffffffe6;
    padding: 28px 24px 15px 24px;
    border-radius: 0 0 12px 12px;
}

.row-pop {
    display: flex;
    justify-content: space-around;
}

.col-pop {
    width: 45%;
}

.pop-form-main {
    overflow: hidden;
}

.left-side-form {
    padding: 0 10px;
}

.pop-or {
    position: relative;
    width: 1px;
    height: 215px;
    background-color: gray;
}

.pop-or p {
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translate(-50%, -65%);
    margin-bottom: 0;
    color: gray;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid gray;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.destination-name-main h2 {
    font-weight: 700;
    font-size: 28px;
    text-align: center;
}

.trip-class-main {
    font-size: 18px;
    text-align: center;
    font-weight: 500;
}

.form-deal-price p {
    text-align: center;
    padding-top: 14px;
}

.form-call-btn-main {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.form-call-btn-main a {
    display: inline-block;
    color: #fff;
    background-color: #19528a;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 3px;
    transition: .5s ease all;
}

.form-call-btn-main a:hover {
    color: #fff;
    background-color: #cc1f16;
}

.pulse2 {
    animation: pulse-animation1 1.5s infinite;
}

@keyframes pulse-animation1 {
    0% {
        box-shadow: 0 0 0 0px rgb(25, 82, 138, 1);
    }

    100% {
        box-shadow: 0 0 0 20px rgb(25, 82, 138, 0);
    }
}

.sbmt-btn-cus-pop {
    width: 100%;
    display: inline-block;
    color: #fff !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    border: none;
    background-color: #19528A !important;
    padding: 8px 26px !important;
    margin: 14px 0;
    border: 1px solid #19528A !important;
    text-transform: uppercase;
    transition: 0.5s ease all;
}

.sbmt-btn-cus-pop:hover {
    background-color: #CC1F16 !important;
    color: #fff !important;
    border: 1px solid #CC1F16 !important;
}

.sbmt-btn-cus-pop:focus {
    box-shadow: none !important;
}

.mobile-in-pop {
    position: relative;
}

.num-pop {
    position: absolute;
    top: 0;
    left: 2px;
    border-radius: 6px 0px 0px 6px;
    padding: 7px 0px 8px 5px;
    background-color: transparent;
    color: #6C757D;
    font-size: 16px;
}

.mobile-in-pop input {
    padding-left: 28px !important;
}


 .schedule-step1 p {
     font-size: 20px;
     font-weight: 600;
     margin-top: 12px;
 }

 .scd-btn-main {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-wrap: wrap;
     margin-top: 30px;
 }

 .scd-btn-main .btn-sched {
     display: inline-block;
     font-size: 15px;
     font-weight: 500;
     color: #fff;
     padding: 8px 15px;
     border-radius: 8px;
     background-color: #19528A;
     border: 1px solid transparent;
     margin: 0 6px;
     transition: .5s ease all;
 }

 .scd-btn-main .btn-sched:hover {
     background-color: rgb(0, 127, 206);
     color: #fff;
     border: 1px solid transparent;
 }

 .scd-btn-main .btn-sched:focus {
     box-shadow: none !important;
     border-color: transparent !important;
 }

 .schedule-step1 h3 span{
     text-align: center;
     font-size: 26px;
     font-weight: 500;
    font-family: "Lilita One", serif;
 }
 .schedule-step1 h3{
     text-align: center;
     font-size: 22px;
     font-weight: 600;
     margin-top: 10px;
 }

 .schedule-step1 .tnx-p {
     font-size: 17px;
     text-align: center;
 }

  .back-tm {
      height: 30px;
      width: 30px;
      border-radius: 50% !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
      font-size: 13px !important;
      background-color: transparent !important;
      border: 1px solid transparent !important;
      color: #fff !important;
      font-weight: 500 !important;
      background-color: #19528A !important;
      padding: 5px 8px !important;
  }

  .back-tm:hover {
      color: #fff;
      background-color: #000;
  }

  .back-tm:focus {
      box-shadow: none !important;
  }


 @media (min-width: 320px) and (max-width: 420px) {
     .scd-btn-main {
         flex-direction: column;
     }

     .scd-btn-main .btn-schede {
         width: 50%;
     }
 }
 @media (min-width: 390px) and (max-width: 499px) {
    .destination-name-main h2 {
        font-size: 20px;
    }
 }


@media (min-width: 320px) and (max-width:991px) {
    .row-pop {
        flex-direction: column;
    }

    .col-pop {
        width: 100%;

    }

    .pop-or {
        position: relative;
        width: 80%;
        height: 1px;
        background-color: gray;
        margin: 40px auto;
    }

    .pop-or p {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translate(-50%, -50%);
        margin-bottom: 0;
        color: gray;
        font-size: 14px;
        background-color: #fff;
        border: 1px solid gray;
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
    }

}

/* ========================================================= */

#myInput3pop, #myInput4pop{
    border: none !important;
}