/* Nunito Font */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../../fonts/nunito/nunito-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Nunito';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../../fonts/nunito/nunito-400-italic.ttf') format('truetype');
}

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../../fonts/nunito/nunito-500.ttf') format('truetype');
}

@font-face {
  font-family: 'Nunito';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../../fonts/nunito/nunito-500-italic.ttf') format('truetype');
}

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../../fonts/nunito/nunito-600.ttf') format('truetype');
}

@font-face {
  font-family: 'Nunito';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('../../fonts/nunito/nunito-600-italic.ttf') format('truetype');
}

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../../fonts/nunito/nunito-700.ttf') format('truetype');
}

@font-face {
  font-family: 'Nunito';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('../../fonts/nunito/nunito-700-italic.ttf') format('truetype');
}

:root {
    --font-family-primary: 'Nunito', sans-serif;
    --white-text: #fff;
    --secondary-font: 'Nunito', sans-serif;
    --white-col: #fff;
    --light-col: #e6e6e6;
    --dark-col: #333;
    --bg-col: #F6F6F6;
    --primary-col: #1057ac;
    --secondary-col: #ffc107;
    --third-col: #33bf04;
    --fast: .3s;
    --normal: .5s;
    --slow: .8s;
    --slower: 10s;
    --easing: cubic-bezier(0.65, 0, 0.35, 1);
    --shadow: 0 0 1em rgba(0, 0, 0, 0.25);
    --radius: 0.35em;
    --underline: 0.05em;
    --heading-h1: 3em;
    --heading-h2: 1.75em;
    --heading-h3: 1.375em;
    --heading-h4: 1.25em;
    --heading-h5: 1em;
    --heading-h6: 0.65em;
    --h2-span: 0.6em;
}

html, body {
    background: var(--white-col);
    color: var(--dark-text);
    font-family: var(--primary-font);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 16px;
}

button, input[type="button"] {
    background: var(--primary-col);
    border: var(--primary-col) solid 1px;
    color: #FFF;
    cursor: pointer;
    outline: none;
    border-radius: 50px;
    font-size: 18px;
    margin: 0;
}

input, select {
    color: #333;
    border: none;
    outline: none;
    border-bottom: #333 solid 1px;
    font-size: 16px;
    font-family: var(--primary-font);
}

.noscroll {
    overflow: hidden;
}

*, ::before, ::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
}

.width-auto {
    width: auto !important;
    min-width: auto !important;
}

.flex {
    display: flex !important;
}

.grid {
    display: grid !important;
}

img {
    line-height: 0;
}

strong {
    font-family: var(--secondary-font);
}

input[type="time"]::-webkit-calendar-picker-indicator {
    background: none;
    display: none;
}

input[type="date"]::-webkit-inner-spin-button, input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

a {
    -webkit-transition: all var(--fast);
    transition: all var(--fast);
    color: var(--light-col-text);
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
        color: var(--light-col-text);
    }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font);
    line-height: 1.1;
    margin: 0;
    font-weight: normal;
}

dl {
    margin-bottom: 30px;
}

dt, dd {
    box-sizing: border-box;
    padding: 3px 5px 3px 0;
    font-size: 16px;
}

dt {
    float: left;
    width: 35%;
    padding-bottom: 0;
    color: var(--primary-col);
    font-weight: 700;
}

dd {
    margin-left: 35%;
    margin-bottom: 0;
    font-weight: 400;
    color: var(--col-darkgrey);
}

    dd:after {
        content: "";
        display: block;
        clear: both;
    }
/*dt*/
.row2 + dd:after {
    content: none;
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1400px;
}

section {
    margin: auto;
}

.rounded_contianer {
    min-height: 10px;
    background: var(--white-col);
    border-radius: var(--radius);
    /* padding: 20px;
     */
    margin: 10px auto;
    position: relative;
}

.breadcrumb_block {
    padding: 0.75rem 1rem;
    border-bottom: #CCC solid 1px;
    border-radius: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

    .breadcrumb_block a {
        padding: 0 10px;
        margin: 0;
    }

    .breadcrumb_block img {
        margin: 0;
    }

.progressn {
    width: 100%;
    height: 400px;
    position: relative;
    margin-top: -2em;
}

    .progressn img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: top center;
        object-position: top center;
    }

    .progressn::before {
        content: '';
        background: rgba(0,0,0,0.70);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .progressn .inner {
        font-size: 16px;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        color: var(--white-text);
        z-index: 99;
        width: 90%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: left;
        -ms-flex-pack: left;
        justify-content: left;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        text-align: center;
        overflow-x: auto;
        scrollbar-width: none;
    }

        .progressn .inner .step {
            display: inline-block;
            color: var(--white-text);
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            text-decoration: none;
            margin: 0 0.6em;
            line-height: 1.7em;
            white-space: nowrap;
        }

            .progressn .inner .step span {
                display: inline-block;
                vertical-align: middle;
            }

        .progressn .inner .step {
            display: inline-block;
            color: var(--white-text);
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            text-decoration: none;
            margin: 0 0.6em;
            line-height: 1.7em;
            white-space: nowrap;
        }

            .progressn .inner .step span::before {
                display: block;
                width: 2em;
                height: 2em;
                border: 0.1em solid #F1F1F1;
                border-radius: 50%;
                margin: 0 auto 0.6em;
                -webkit-transition: all var(--fast) var(--easing);
                transition: all var(--fast) var(--easing);
                line-height: 2em;
            }

            .progressn .inner .step:nth-child(1) span::before {
                content: "1";
            }

            .progressn .inner .step:nth-child(2) span::before {
                content: "2";
            }

            .progressn .inner .step:nth-child(3) span::before {
                content: "3";
            }

            .progressn .inner .step:nth-child(4) span::before {
                content: "4";
            }

            .progressn .inner .step:nth-child(5) span::before {
                content: "5";
            }

            .progressn .inner .step:hover span::before, .progressn .inner .step.active span::before {
                background-color: var(--secondary-col);
                border-color: transparent;
                color: var(--dark-col);
            }

.mob_search_bar {
    background: #f1f1f1;
    max-width: 1300px;
    height: auto;
    padding: 30px 5%;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 77%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99;
    border-radius: var(--radius);
    width: 100%;
}

.mob_pk_title {
    display: none;
}

.searchbar__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    justify-content: center;
    gap: 20px;
}

    .searchbar__container div:nth-child(-n + 4) {
        grid-column: span 2;
    }

    .searchbar__container div:nth-child(n + 5) {
        grid-column: span .5;
    }

.searchbar__block {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: end;
    justify-content: space-around;
    min-height: 50px;
}

.did-floating-label-content {
    position: relative;
    margin-bottom: 0;
    min-width: 200px;
}

.did-floating-label {
    color: #999;
    font-size: 14px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 20px;
    top: 11px;
    padding: 0 5px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.did-floating-input, .did-floating-select {
    font-size: 12px;
    display: block;
    width: 100%;
    height: 40px;
    padding: 10px 5px 0 25px;
    color: #333;
    box-sizing: border-box;
    background: transparent;
    font-size: medium;
    cursor: pointer;
}

    .did-floating-input:focus, .did-floating-select:focus {
        outline: none;
    }

        .did-floating-input:focus ~ .did-floating-label, .did-floating-select:focus ~ .did-floating-label, .focus {
            top: -10px;
        }

select.did-floating-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    select.did-floating-select::-ms-expand {
        display: none;
    }

.did-floating-input:not(:placeholder-shown) ~ .did-floating-label {
    top: -10px;
}

.did-floating-select:not([value=""]):valid ~ .did-floating-label {
    top: -10px;
}

.did-floating-select[value=""]:focus ~ .did-floating-label {
    top: 11px;
}

.did-floating-select:not([multiple]):not([size]) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6'%3E%3Cpath id='Path_1' data-name='Path 1' d='M371,294l4,6,4-6Z' transform='translate(-371 -294)' fill='%23003d71'/%3E%3C/svg%3E%0A");
    background-position: right 15px top 75%;
    background-repeat: no-repeat;
}

.did-error-input .did-floating-input, .did-error-input .did-floating-select {
    color: #9d3b3b;
}

.did-error-input .did-floating-label {
    font-weight: 600;
    color: #9d3b3b;
}

.did-error-input .did-floating-select:not([multiple]):not([size]) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6'%3E%3Cpath id='Path_1' data-name='Path 1' d='M371,294l4,6,4-6Z' transform='translate(-371 -294)' fill='%239d3b3b'/%3E%3C/svg%3E%0A");
}

.input-group {
    display: flex;
}

.input-group-append {
    display: flex;
    align-items: center;
    /* margin-left:-1px;
     */
}

.input-group-text {
    display: flex;
    align-items: center;
    font-weight: 400;
    height: 34px;
    color: #323840;
    padding: 0 5px 0 20px;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
    border-right: none;
}

.location {
    background: url(../img/ic_f_location.png) no-repeat left 12px;
}

.departure {
    background: url(../img/ic_f_calendar.png) no-repeat left 14px;
}

.nights {
    background: url(../img/ic_f_nights.png) no-repeat left 14px;
}

.travellers {
    background: url(../img/ic_f_pax.png) no-repeat left 14px;
}

button.searchbtn {
    background: var(--secondary-col);
    border: var(--secondary-col) solid 1px;
    border-radius: 5px;
    padding: 8px 30px;
    color: var(--dark-text);
    font-size: 20px;
    font-weight: 500;
}

.destination__content, .nights__content, .travellers__content {
    background: rgba(255, 255, 255, 0.99);
    border: #999 solid 1px;
    border-radius: var(--radius);
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 10px;
    display: none;
}

.travellers__content {
    width: 250px;
    height: 300px;
    overflow-y: scroll;
    padding: 10px 25px;
}

    .travellers__content::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        border-radius: 10px;
        background-color: #F5F5F5;
    }

    .travellers__content::-webkit-scrollbar {
        width: 12px;
        background-color: #F5F5F5;
    }

    .travellers__content::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
        background-color: #333333;
    }

    .destination__content ul, .nights__content ul, .travellers__content ul {
        list-style: none;
        padding: 0 0;
        margin: 0;
    }

        .destination__content ul li, .nights__content ul li, .travellers__content ul li {
            padding: 3px 10px;
            font-weight: bold;
            cursor: pointer;
        }

            .destination__content ul li span, .nights__content ul li span, .travellers__content ul li span {
                padding: 0 0 0 10px;
                font-weight: normal;
            }

            .destination__content ul li:hover, .nights__content ul li:hover, .travellers__content ul li:hover {
                background: #CCC;
            }

.location:hover .destination__content {
    display: block;
}

.nights:hover .nights__content {
    display: block;
}

.travellers:hover .travellers__content {
    display: block;
}

.room_acount {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .room_acount p {
        font-weight: 500;
        margin: 0;
        padding: 0;
    }

.room_acount__content {
    width: auto;
    margin-top: 15px;
    padding-top: 15px;
    width: 100%;
    border-top: #CCC solid 1px;
}

    .room_acount__content h4 {
        font-size: 16px;
        font-weight: 500;
    }

    .room_acount__content .content__sub {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .room_acount__content .content__sub p {
            font-size: 16px;
            padding: 0;
            margin: 5px 0;
            width: 50%;
        }

            .room_acount__content .content__sub p span {
                font-size: 12px;
                display: block;
            }

        .room_acount__content .content__sub span {
            display: flex;
            align-items: center;
            margin: 0;
        }

            .room_acount__content .content__sub span input {
                width: 30px;
                padding: 0;
                text-align: center;
                margin: 0 10px;
                border: none;
                font-weight: 18px;
            }

.room_acount span {
    display: flex;
    align-items: center;
    margin: 0;
}

    .room_acount span input {
        width: 30px;
        padding: 0;
        text-align: center;
        margin: 0 10px;
        border: none;
        font-weight: 18px;
    }

.value-button {
    font-weight: bold;
    cursor: pointer;
}

.searchbtn button {
    background: var(--secondary-col);
    border: var(--secondary-col) solid 1px;
    border-radius: 5px;
    padding: 8px 30px;
    color: var(--dark-text);
    font-size: 20px;
    font-weight: 500;
}
    /*.searchbtn button:hover{
     background: var(--primary-col);
     border: var(--primary-col) solid 1px;
     color: var(--white-col);
 }*/

    button:hover, input[type="button"]:hover, .searchbtn button:hover {
        background: var(--third-col);
        border: var(--third-col) solid 1px;
    }

.progressn .inner .step span label {
    display: none;
}

/* Header Styles */

@media (max-width: 1450px) {
    .progressn .inner {
        font-size: 12px;
        width: 100%;
    }

    .mob_search_bar {
        width: 95%;
    }
}

@media (max-width: 1025px) {
    .progressn .inner {
        font-size: 12px;
        width: 100%;
    }

    .mob_search_bar {
        width: 95%;
    }

    .searchbar__block {
        width: 100%;
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .progressn .inner .step {
        margin: 0;
    }

        .progressn .inner .step::after {
            content: "";
            background-color: var(--light-col);
            display: inline-block;
            width: 3em;
            height: 0.1em;
            margin: 0 2em;
        }

        .progressn .inner .step:last-child:after {
            content: "";
            background-color: transparent;
            display: inline-block;
            width: 0;
            height: 0.1em;
            margin: 0 2em;
        }
}

@media (max-width: 800px) {
    .progressn .inner {
        font-size: 14px;
        width: 100%;
        top: 100px;
    }

    .progressn {
        height: inherit;
        margin-top: 5em;
        padding-bottom: 15px;
    }

        .progressn img {
            height: inherit;
        }

    .searchbar__container {
        height: auto;
        top: 75%;
        display: grid;
        grid-template-columns: auto;
        margin-top: 20px;
    }

    .mob_search_bar {
        top: 0%;
        -webkit-transform: inherit;
        transform: inherit;
        padding: 10px 5%;
        position: inherit;
        margin: 0px auto;
        left: inherit;
    }

    .did-floating-label-content {
        margin-bottom: 20px;
    }

    article.title h2 {
        font-size: 18px !important;
    }

    .package__lftblock, .packagesummary__rightblock {
        margin: 0px;
        padding-top: 0px !important;
        border-radius: 0 0 0 0 !important;
    }

    .rounded_contianer {
        margin-bottom: 0px;
        display: flex;
        gap: 15px;
    }
    /*.package__summary {
        gap:0 !important 
    }*/
    .packagesummary__rightblock h3 {
        display: none;
    }

    .rounded_contianer {
        display: block;
        width: 100%;
    }

    .progressn .inner .step span label {
        margin-right: 0;
        width: 3.5em;
        height: 2em;
        display: block;
        margin-top: -25px;
        border-radius: 20px;
        padding: 2px;
        color: #fff;
        background: url(/img/icons/mob_ic.png) no-repeat 33px center;
    }

    .searchbtn button {
        padding: 8px 70px;
        margin: 0 auto;
        display: block;
    }

    .progressn .inner .step span::before {
        display: inline-block;
        margin: 0 10px 0 0;
    }

    .progressn .inner .step {
        display: none;
    }

        .progressn .inner .step.active {
            display: block !important;
            width: 100%;
        }

        .progressn .inner .step span {
            width: 100%;
        }

    footer {
        padding: 10px 0;
    }

        footer .footer__container {
            width: 90%;
        }

            footer .footer__container .footer__block, footer .footer__container .footer__copyrights {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 0px !important;
            }

                footer .footer__container .footer__block div {
                    border-right: transparent solid 1px;
                    display: flex;
                    align-items: center;
                }

            footer .footer__container .footer__copyrights {
                gap: 10px;
            }

    .mob_pk_title {
        display: block;
        background: url("/img/icons/search_ic.png") no-repeat center right;
    }

        .mob_pk_title h4 {
            font-weight: bold;
        }

        .mob_pk_title p {
            font-size: 12px;
            color: #666;
        }

    .searchbar__container {
        display: none;
    }

    .rounded_contianer {
        display: block;
    }
}

@media (max-width: 600px) {
    section.landing_section {
        margin-top: 100px;
    }

    .destination__content, .nights__content, .travellers__content {
        width: 100%;
    }

    .progressn .inner {
        top: 50px;
        /* display: none;*/
    }

    .searchbar__container {
        height: auto;
        top: 53%;
    }

    .searchbar__block {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    #secondSection {
        display: none !important;
    }

    .did-floating-label-content {
        width: 320px;
        min-width: 100%;
    }

    button.searchbtn {
        width: 100%;
    }
}

@media (min-width: 576px) {
    .progressn .inner {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .progressn .inner {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .rounded_contianer {
        margin-bottom: 0px;
        display: block;
    }
}


