* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}


:root {
    --tabs-color: #adadad;
    --bg-color: #f7f7f7;
    --hero-p-color: #606060;
    --p-color: #4f4f4f;
    --background: #000000;
    --white-text: #fff;
    --hover-text: #222;
    --button-background: #fff;
    --button-background-hover: #000;
    --button-text: #000000;
}


 
.cookie-container {
    display: flex;
    align-content: center;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--background);
    color: var(--white-text);
    position: fixed;
    bottom: 0;
    font-size: 1rem;
    gap: 2rem;
    opacity: 1;
    visibility: visible;
    flex-wrap: wrap;
}

.cookie-container.hide {
    opacity: 0;
    visibility: hidden;
}

.cookie-container a {
    color: var(--white-color);
}

.cookie-container a:hover {
    color: var(--hover-text);
}

.cookie-container .cookie-text {
    flex: 8 768px;
    color: white;
}

.cookie-container .agree {
    flex: 1 150px;
    text-align: center;
}

.agree button {
    background: var(--button-background);
    color: var(--button-text);
    border: none;
    padding: 0.4rem 1.2rem;
    cursor: pointer;
    border-radius: 20px;
    font-size: 1rem;
}

.agree button:hover {
    background: var(--button-background-hover);
    color: var(--white-text);
}

html {
    scroll-behavior: smooth;
}

body.noscroll {
    overflow: hidden;
}

header,
main,
footer {
    max-width: 1500px;
    margin: 0 auto;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 24px;
    margin-top: 10px;
}

.container {
    margin: 0 100px;
}

a {
    text-decoration: none;
    white-space: nowrap;
    color: #000;
}

li {
    list-style: none;
}

.img {
    display: grid;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

p {
    color: var(--p-color);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.8;
    margin-top: 20px;
}

.btn {
    display: block;
    width: fit-content;
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 9px;
    padding: 10px 30px;
    transition: 0.3s;
    cursor: pointer;
}

.btn:hover,
.btn.active {
    background-color: transparent;
    color: #000;
}

section:not(.hero, .maf-card, .map) {
    padding: 100px 0;
}

.icon {
    display: grid;
    place-content: center;
}

#login-btn {
    position: relative;
}

#login-menu,
#mem-dropdown {
    left: 50%;
    transform: translateX(-50%);
}
#mem-dropdown {
    bottom: -130px;
}

#mem-dropdown.active {
    bottom: -160px;
}

.menu {
    display: none;
    width: 40px;
    height: 30px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.menu {
    display: none;
    position: relative;
    width: 60px;
    height: 60px;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.menu span {
    position: absolute;
    left: 25%;
    top: 50%;
    width: 35px;
    height: 3px;
    background-color: #000;
    transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
}

.menu span:nth-child(1) {
    transform: translateY(-10px);
    animation-delay: 100ms;
}

.menu span:nth-child(3) {
    transform: translateY(10px);
    animation-delay: 250ms;
}

.menu.active span:nth-child(2) {
    opacity: 0;
}

.menu.active span:nth-child(1) {
    transform: rotate(40deg);
}

.menu.active span:nth-child(3) {
    transform: rotate(-40deg);
}

img.date-icon {
    cursor: pointer;
}

/* Start Header */
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}

.logo img {
    width: 200px;
}

header .container .tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .container .tabs ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

header .container .tabs a,
header .container .tabs li.mem-tab {
    position: relative;
    margin-right: 30px;
    color: var(--tabs-color);
    font-size: 16px;
    transition: 0.3s;
    cursor: pointer;
}

header .container .tabs a.active,
header .container .tabs li:hover > a,
header .container .tabs li.mem-tab:hover,
header .container .tabs li.mem-tab.active {
    color: #000;
}

header .container .tabs select {
    padding: 13px 10px;
    border: 1px solid var(--tabs-color);
    border-radius: 9px;
    color: var(--tabs-color);
    font-size: 20px;
    font-weight: 600;
    outline: none;
}

header .container .tabs .login {
    margin-right: 0;
    padding: 15px 30px;
    color: #fff;
}

header .container .tabs .login:hover,
header .container .tabs .login.active {
    color: #000;
}

/* End Header */
/* Start Hero Section */
.hero {
    background-color: var(--bg-color);
}

.hero .container {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero .content {
    flex-basis: 50%;
}

.hero .content h1 {
    text-transform: uppercase;
}

.hero .content p {
    font-size: 30px;
    line-height: normal;
    text-transform: uppercase;
    color: var(--hero-p-color);
}

/* End Hero Section */
/* Start About Section */
.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    gap: 50px;
}

.about .container .content .btn {
    margin-top: 30px;
}

.about .content p {
    font-size: 14px;
}

/* End About Section */
/* Start Services Section */
.services {
    background-color: var(--bg-color);
}

.servs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.servs .serv img {
    height: 250px;
}

/* End Services Section */
/* Start Coming Soon Section */
.coming-soon {
    background: url(../images/coming-soon.png) no-repeat center;
    background-size: cover;
}

.coming-soon h2 {
    color: #fff;
}

.coming-soon .servs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.coming-soon .servs .serv {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.75);
    height: 150px;
}

.coming-soon .servs .serv .icon {
    background: #f2f2f2;
    border-radius: 0px 140px 140px 0px;
    padding: 30px 10px;
    width: 50%;
    height: 100%;
}

.coming-soon .servs .serv .icon img {
    width: 100px;
}

.coming-soon .servs .serv h3 {
    width: 50%;
    padding-right: 20px;
}

/* End Coming Soon Section */
/* Start Comments Section */
.comments .says {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    align-items: center;
}

.comments .says .comments-container {
    width: 50%;
}

.comments .says .comment {
    position: relative;
    padding: 40px;
    border: 2px solid #e6e6e6;
    box-shadow: 15px 15px 0px rgba(0, 0, 0, 0.1);
    height: 455px;
    overflow-x: hidden;
}

.comments .says .comment .comment-text {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.comments .says .comment .comment-text.hide {
    display: none;
}

.comments .says .comment .comment-text .icon {
    width: 70px;
}

.comments .says .comment .comment-text p {
    font-size: 16px;
    font-style: italic;
    max-height: 140px;
    overflow-y: scroll;
}

.comments .says .comment .comment-text .profile {
    margin-top: 20px;
}

.comments .says .comment .comment-text .profile p {
    font-size: 14px;
    font-style: normal;
    margin: 0;
    overflow: auto;
}

.comments .says .comment .controlers {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: #a6a6a6;
    font-size: 20px;
    display: flex;
    gap: 20px;
}

.comments .says .comment .controlers .control-btn {
    cursor: pointer;
}

.comments .says .comment .controlers .control-btn:hover,
.comments .says .comment .controlers .control-btn.active {
    color: #000;
}

.comments .says .counters {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    width: 50%;
    height: fit-content;
}

.comments .says .counters .counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
    padding: 20px 40px;
    border: 2px solid #e6e6e6;
    white-space: nowrap;
}

.comments .says .counters .counter:last-of-type {
    grid-column: -1/1;
    width: fit-content;
    justify-self: center;
}

.comments .says .counters .counter .icon {
    margin-bottom: 10px;
    width: 60px;
}

.comments .says .counters .counter .num {
    font-size: 26px;
}

.comments .says .counters .counter .name {
    font-size: 14px;
    font-weight: 400;
    color: var(--p-color);
}

/* End Comments Section */
/* Start Lounges Section */
.lounges {
    background-color: var(--bg-color);
}

.lounges p {
    margin-top: 5px;
}

.lounge-btn {
    display: block;
    color: #000;
    font-size: 16px;
    margin-top: 15px;
}

.lounges .lounge-btn i {
    margin-left: 5px;
}

/* End Lounges Section */
/* Start MAF Card Section */
.maf-card {
    display: flex;
    align-items: center;
}

.maf-card .img {
    width: 50%;
    flex-shrink: 0;
}

.maf-card .content {
    padding-left: 50px;
    padding-right: 20px;
}

.maf-card p {
    font-size: 18px;
    text-align: justify;
}

/* End MAF Card Section */
/* Start Footer */
footer {
    padding-top: 100px;
    background-image: linear-gradient(
            180deg,
            #242424 46.71%,
            rgba(36, 36, 36, 0.88) 100%
        ),
        url(../images/footer-bg.png);
    text-align: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 100px;
    gap: 30px;
}

footer p,
footer a {
    color: #fff;
}

footer .container .tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .container .tabs li:not(:last-child) a {
    margin-right: 50px;
}

footer .container .tabs a {
    font-size: 18px;
}

footer .container .social-links {
    display: flex;
    align-items: center;
    gap: 50px;
}
footer .container .social-links img {
    object-fit: cover;
}

footer .copy-right {
    padding: 20px 0;
    border-top: 1px solid #404040;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #878787;
}

/* End Footer */

/* Start Page Header */
.page-header {
    background-image: linear-gradient(
            90deg,
            #000000 20.32%,
            rgba(0, 0, 0, 0) 100%
        ),
        url(../images/about-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

/* End Page Header */
/* Start About page */
.about-details .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    gap: 50px;
    margin-bottom: 40px;
}

.about-details .box {
    padding: 40px;
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    margin-top: 40px;
}

.about-details .box .icon {
    width: 60px;
}

.about-details .box p {
    margin-top: 10px;
}

/* End About page */
/* Start Lounges Page */
.lounges-page .pdf {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    color: #000;
}

.lounges-page .countries {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 18px;
    color: #949494;
    margin-top: 30px;
}

.lounges-page .countries .country {
    padding: 10px 20px;
    font-weight: 500;
    border: 1px solid #adadad;
    border-radius: 9px;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.3s;
}

.lounges-page .countries .country:hover,
.lounges-page .countries .country.active {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.lounges-page .servs {
    margin-top: 50px;
}

.pagenation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
    color: #b2b2b2;
}

.pagenation span {
    cursor: pointer;
}

.pagenation span.active {
    color: #000;
}

.pagenation .prev {
    margin-right: 20px;
}

.pagenation .next {
    margin-left: 20px;
}

/* End Lounges Page */
/* Start Lounges Details Page */
.lounges-details .details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.lounges-details .details-grid p {
    margin-top: 0;
}

.lounges-details .details-grid .btn {
    margin: 30px 0;
    /* padding: 15px 50px; */
}

.lounges-details .details-grid .info {
    border-top: 1px solid #acacac;
}

.lounges-details .details-grid .info .info-group {
    padding-top: 30px;
}

.lounges-details .details-grid .info .info-group:nth-child(2) {
    padding-top: 15px;
    /* margin-right: 50px; */
}

.lounges-details .details-grid .info .info-group:nth-child(2),
.lounges-details .details-grid .info .info-group:nth-child(3) {
    display: inline-block;
}

.lounges-details .info-group span {
    display: block;
}

.lounges-details .info-group span:first-child {
    font-size: 18px;
}

.lounges-details .info-group span:last-child {
    font-weight: 400;
    color: #3e3e3e;
}

.lounges-details .facilities {
    margin: 20px 0 0;
}

.lounges-details .facilities .facility-group {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.lounges-details .facilities .facility-group .group {
    display: flex;
    align-items: center;
}

.lounges-details .facilities .facility-group .group .icon {
    border: 1px solid #000;
    border-radius: 9px;
    display: grid;
    min-width: 50px;
    min-height: 50px;
    padding: 10px;
}

.lounges-details .facilities .facility-group .group .icon img {
    min-width: 30px;
    max-width: 30px;
}

.lounges-details .facilities .facility-group .group .name {
    margin-left: 10px;
}

/* End Lounges Details Page */
/* Start Map Section */
.map iframe {
    width: 100%;
    margin-bottom: -10px;
}

/* End Map Section */
/* Start Bin Number Page */
.bin-number-page .container {
    margin-left: 0;
    margin-right: 100px;
}

.bin-number-page .container .content {
    /* flex-basis: 50%; */
    width: 40%;
    margin-left: 50px;
}

.bin-number-page .container .content p {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

form {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 20px;
    /* padding-right: 100px; */
}

button {
    outline: none;
    border: none;
    background: transparent;
}

.input-group {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.group-input {
    position: relative;
}

.group-input input {
    padding-left: 45px;
}

.group-input img {
    width: 25px;
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translate(-50%, -50%);
}

input,
form .btn,
select {
    padding: 15px;
    width: 100%;
    border-radius: 7px;
}

input,
select {
    border: 1px solid #e7eaee;
    color: #acb4c3;
    font-weight: 400;
    outline: none;
}

select {
    cursor: pointer;
}

input::placeholder {
    color: #acb4c3;
}

.select2 {
    width: 100% !important;
}

.select2-container .select2-selection--single {
    height: 52px !important;
    width: 100% !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 47px !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #e7eaee !important;
    color: #acb4c3 !important;
    font-weight: 400 !important;
    outline: none !important;
    border-radius: 7px !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 49px !important;
}

element.style {
    display: none;
}

.fade:not(.show) {
    opacity: 0;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}

.collapse:not(.show) {
    display: none;
}

#lounge_details_dep {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.form-check-input {
    width: 0;
}

.destination-form {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.destination-form .btn {
    grid-column: 1/-1;
    justify-self: center;
}

.card_lounge {
    border-radius: 20px;
    box-shadow: 0 2px 4px 0 hsla(0, 0%, 76%, 0.5);
    width: 300px;
    padding: 16px 18px;
    overflow: hidden;
    margin: 20px auto;
}

.service-direction.terminal {
    background-color: #ff6609;
    color: #fff;
    border-radius: 30px;
    padding: 3px 12px;
    margin-right: 10px;
}

.service-direction {
    border-radius: 30px;
    padding: 3px 12px;
    margin-right: 10px;
    background-color: #f4f4f4;
}

.facilities {
    margin: 20px 0 20px 40px;
}

.facilities li {
    list-style: circle;
}

.swiper__price-holder {
    margin-top: 20px;
    margin-bottom: 20px;
}

.swiper__price {
    font: 600 24px Averta, Arial, sans-serif;
}

.swiper__currency {
    font-size: 11px;
    opacity: 0.5;
    margin-left: 3px;
}

.col-md-12 .btn {
    margin: auto;
    margin-bottom: 30px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

::-webkit-datetime-edit-text,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
    color: #acb4c3;
}

::-webkit-calendar-picker-indicator {
    display: none;
}

label {
    font-size: 14px;
    white-space: nowrap;
}

label span {
    color: #606060;
}

/* End Bin Number Page */
/* Start Login Page */
.login form {
    gap: 20px;
}

.login .content form p {
    text-transform: none;
    margin-top: 0;
    text-align: center;
}

.login form p span {
    font-weight: 400;
    color: #3e3e3e;
}

.login form p a {
    margin-left: 5px;
}

.bin-number-page .container .img {
    width: 60%;
}

/* End Login Page */
/* Start Register Page */
#register-p {
    font-size: 14px;
}

/*.register .row {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}*/

.register .row-2 {
    display: flex;
    gap: 50px;
}

.register .row-2 .input-group .group {
    display: flex;
    gap: 10px;
}

.register .row-2 .input-group .group input,
.row-2 select {
    padding: 10px;
    text-align: center;
    border-radius: 7px;
}

.register .row-2 .input-group:nth-child(1) {
    width: 60%;
}

.radio {
    color: #9b9b9b;
    font-weight: 600;
    display: flex;
    white-space: nowrap;
}

input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    margin: 0;
    padding: 0;
    font: inherit;
    color: #000;
    width: 20px;
    height: 20px;
    border: 1px solid #e7eaee;
    border-radius: 50%;
    /* transform: translateY(4px); */
    display: grid;
    place-content: center;
    cursor: pointer;
}

input[type="radio"] + label {
    padding-left: 10px;
    cursor: pointer;
}

input[type="radio"]::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #000;
}

input[type="radio"]:checked::before {
    transform: scale(1);
}

input[type="radio"]:checked {
    border-color: #000;
}

input[type="radio"]:checked + label {
    color: #000;
}

/* End Register Page */
/* Start Logged In Header */
#book-btn {
    padding: 15px 20px;
}

.profile-container {
    position: relative;
}

.profile-container .profile {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.profile span {
    display: block;
}

.profile .img {
    width: 56px;
    height: 56px;
    border-radius: 9px;
    flex-shrink: 0;
}

.profile .text .welcome {
    font-size: 12px;
    font-style: italic;
    color: #adadad;
    font-weight: 400;
    margin-bottom: -5px;
}

.profile .text .name {
    font-size: 16px;
    white-space: nowrap;
}

.profile-menu {
    width: 200px;
    position: absolute;
    bottom: -200px;
    opacity: 0;
    background: #ffffff;
    border: 1px solid #dedede;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    transition-delay: opacity 250ms;
    transition: 0.5s ease-in-out;
    z-index: -1;
}

.profile-menu.active {
    opacity: 1;
    bottom: -230px;
    z-index: 100;
}

header .container .profile-menu a {
    display: block;
    padding: 20px 15px;
    margin: 0;
    font-size: 16px;
    transition: 0.3s;
}

header .container .profile-menu a:hover {
    color: #000;
}

header .container .profile-menu a:not(:last-of-type) {
    border-bottom: 1px solid #dedede;
}

/* End Logged In Header */
/* Start My Bookings Page */
.bookings .container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.bookings .box {
    position: relative;
    width: 75%;
    padding: 50px 40px 40px;
    background: #f9f9f9;
    border: 1px solid #c0c0c0;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
}

.bookings .box::before {
    content: "Lounge";
    position: absolute;
    top: -22px;
    left: 40px;
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    padding: 10px 30px;
}

.bookings .box .info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #3e3e3e;
    margin-top: 10px;
}

.bookings .box .info:first-of-type {
    margin-top: 20px;
}

.bookings .box .info .icon {
    min-width: 20px;
    min-height: 20px;
}

.bookings .box .guest {
    display: flex;
    gap: 5px;
    margin-top: 30px;
}

.bookings .box .upcoming {
    padding: 10px 25px;
    text-align: center;
    font-weight: 500;
    background: #e2f5ff;
    color: #2d9fdb;
    border: 1px solid #2d9fdb;
    border-radius: 10px;
    margin-top: 15px;
}

/* End My Bookings Page */
/* Start My Cards Page */
.cards .container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.cards .container .card {
    width: 60%;
    padding: 40px;
    background: #f9f9f9;
    border: 1px solid #c1c1c1;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cards .container .card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent !important;
    border: none !important;
}

.cards .container .card .card-header .qr {
    width: 50px;
    height: 50px;
}

.cards .container .card .card-header .bank {
    width: 350px;
}

.cards .container .card .card-row {
    display: flex;
    gap: 30px;
}

.cards .container .card .card-row .content {
    padding: 20px;
    background: #efefef;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.cards .container .card .card-row .content .name {
    color: #858585;
    font-weight: 500;
    font-size: 14px;
}

.cards .container .card .card-type {
    color: #06679a;
    font-weight: 500;
    font-size: 16px;
    font-style: italic;
}

/* End My Cards Page */
/* Start Book Now Page */
section.book-now {
    background-image: url(../images/bookNow-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.book-now h2,
section.book-now p {
    text-align: center;
    margin: 0;
}

.book-now form {
    align-items: center;
    padding: 0;
}

.book-now .search-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.book-now form .btn {
    width: fit-content;
    padding: 15px 20px;
}

.lounges-page .servs .serv .btn-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.lounges-page .servs .serv .btn-container .btn {
    padding: 10px 40px;
}

.lounges-page .servs .serv .btn-container .lounge-btn {
    margin: 0;
}

/* End Book Now Page */

/* Large Screens */
@media (max-width: 1500px) {
    .container {
        margin: 0 100px;
    }

    .bin-number-page .container {
        margin-left: 0;
        margin-right: 50px;
    }
}

@media (min-width: 1500px) {
    #login-btn i {
        margin-left: 20px;
    }
}

/* Tablet */
@media (max-width: 1050px) {
    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
    }

    a {
        font-size: 16px;
    }

    .container {
        margin: 0 50px;
    }

    .bin-number-page .container {
        margin-left: 0;
        margin-right: 50px;
    }

    .bin-number-page.login .container {
        flex-direction: column;
    }

    .bin-number-page .container .content {
        width: 70%;
    }

    .bin-number-page .container .img {
        width: auto;
    }

    .login .container .img {
        width: 100%;
    }

    form {
        padding: 0;
    }

    footer br {
        display: none;
    }

    .servs {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu {
        display: block;
    }

    header .container nav {
        display: none;
    }

    header .container nav.active {
        display: block;
        z-index: 100;
    }

    header .container nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        user-select: none;
    }

    header .container .tabs {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        width: 100%;
        height: 100%;
    }

    header .container .tabs a,
    header .container .tabs li.mem-tab {
        margin: 0;
    }

    header .container .tabs ul {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 20px;
        flex-direction: column;
    }

    /* Start Header */
    header .container {
        padding: 20px 0;
    }

    .logo img {
        width: 130px;
    }

    header .container .tabs a {
        font-size: 16px;
    }

    header .container .tabs select {
        padding: 10px;
    }

    header .container .tabs .login {
        padding: 10px 20px;
    }

    /* End Header */
    /* Start Hero Section */
    .hero .content {
        flex-basis: 70%;
    }

    .hero .content p {
        font-size: 24px;
    }

    /* End Hero Section */
    /* Start About Section */
    .about .container {
        gap: 40px;
    }

    .about .container p {
        margin-top: 15px;
    }

    .about .container .content .btn {
        margin-top: 20px;
    }

    /* End About Section */
    /* Start Coming Soon Section */
    .coming-soon .servs {
        grid-template-columns: repeat(2, 1fr);
    }

    /* End Coming Soon Section */
    /* Start Comments Section */
    .comments .says {
        flex-direction: column;
    }

    .comments .says .comment {
        width: 100%;
    }

    .comments .says .comments-container {
        width: 100%;
    }

    .comments .says .counters {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }

    .comments .says .counters .counter:last-of-type {
        width: 100%;
        grid-column: auto;
    }

    /* End Comments Section */
    /* Start Lounges Section */
    .lounges p {
        font-size: 14px;
    }

    /* End Lounges Section */
    /* Start MAF Card */
    .maf-card p {
        font-size: 18px;
    }

    .maf-card p br {
        display: block;
    }

    /* End MAF Card */
    /* Start Footer */
    footer img {
        width: 30px;
    }

    footer .container .tabs li:not(:last-child) a {
        margin-right: 30px;
    }

    footer .container .tabs a {
        font-size: 16px;
    }

    footer .container .social-links {
        gap: 40px;
    }
    footer .container .social-links img {
        height: 30px;
    }

    footer .copy-right {
        font-size: 16px;
    }

    /* End Footer */
    /* Start Lounges Details Page */
    .lounges-details .details-grid .info .info-group:nth-child(1) {
        display: inline-block;
    }

    .lounges-details .details-grid .info .info-group:nth-child(2) {
        margin-right: 0;
        margin-left: 50px;
    }

    .lounges-details .details-grid .info .info-group {
        padding-top: 20px;
    }

    .lounges-details .facilities .facility-group {
        grid-template-columns: repeat(3, 1fr);
    }

    /* End Lounges Details Page */
    /* Start Bin Number Page */
    .bin-number-page .container .content {
        padding: 30px 0;
    }

    .bin-number-page .container .content h2 {
        white-space: nowrap;
    }

    .bin-number-page .container .content p {
        font-size: 14px;
    }

    .bin-number-page .container .content form {
        gap: 20px;
    }

    /* End Bin Number Page */
    /* Start Register Page */
    .register .row-2 {
        flex-direction: column;
        gap: 20px;
    }

    /* End Register Page */
    /* Start My Bookings Page */
    .bookings .box {
        width: 100%;
    }

    /* End My Bookings Page */
    /* Start My Cards Page */
    .cards .container .card {
        width: 100%;
    }

    /* End My Cards Page */
    #lounge_details_dep {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    footer br {
        display: none;
    }

    .container {
        margin: 0 25px;
    }

    .bin-number-page .container {
        margin-left: 0;
        margin-right: 25px;
    }

    .logo img {
        width: 100px;
    }

    .servs {
        grid-template-columns: 1fr;
    }

    /* Start Hero Section */
    .hero .container {
        flex-direction: column;
    }

    .hero .content {
        padding: 30px 0;
        order: 2;
        width: 100%;
    }

    /* End Hero Section */
    /* Start About Section */
    .about .container {
        grid-template-columns: 1fr;
    }

    /* End About Section */
    /* Start Coming Soon Section */
    .coming-soon .servs {
        grid-template-columns: 1fr;
    }

    .servs .serv br {
        display: none;
    }

    /* End Coming Soon Section */
    /* Start Comments Section */
    .comments .says .counters {
        grid-template-columns: 1fr;
    }

    .comments .says .counters .counter {
        width: 100%;
    }

    /* End Comments Section */
    /* Start MAF Card Section */
    .maf-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .maf-card .content {
        padding: 25px;
        width: 100%;
    }

    .maf-card .img {
        width: auto;
    }

    /* End MAF Card Section */
    /* Start Footer */
    footer .container {
        padding-bottom: 50px;
    }

    footer img {
        width: 20px;
    }

    footer .container .tabs li:not(:last-child) a {
        margin-right: 15px;
    }

    footer .container .social-links {
        gap: 30px;
    }
    footer .container .social-links img {
        height: 20px;
    }

    /* End Footer */

    /* Start About page */
    .about-details .grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-details .grid .img {
        order: 2;
    }

    .about-details .box {
        padding: 30px;
    }

    .about-details .box .icon {
        width: 40px;
    }

    /* End About page */
    /* Start Lounges Page */
    .lounges-page .countries {
        gap: 10px;
    }

    .pagenation {
        justify-content: center;
    }

    /* End Lounges Page */
    /* Start Lounges Details Page */
    .lounges-details .details-grid {
        grid-template-columns: 1fr;
    }

    .lounges-details .details-grid .info .info-group:nth-child(2) {
        margin-left: 40px;
    }

    .lounges-details .facilities .facility-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* End Lounges Details Page */
    /* Start Bin Number Page */
    .bin-number-page .container {
        flex-direction: column;
    }

    .bin-number-page .container .content {
        margin-left: 25px;
        padding: 30px 0;
        width: 90%;
    }

    /* End Bin Number Page */
    /* Start Register Page */
    .register .row-2 .input-group .group input {
        text-align: center;
    }

    .register .row-2 .input-group:nth-child(1) {
        width: 100%;
    }

    /* End Register Page */
    /* Start My Bookings Page */
    .bookings .box {
        flex-direction: column;
        gap: 20px;
    }

    .bookings .box .upcoming {
        width: fit-content;
    }

    /* End My Bookings Page */
    /* Start My Cards Page */
    .cards .container .card .card-header .qr {
        width: 40px;
        height: 40px;
    }

    .cards .container .card .card-header .bank {
        width: 200px;
    }

    /* End My Cards Page */
    /* Start Booking Now Page */
    .book-now .search-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* End Booking Now Page */

    .destination-form {
        grid-template-columns: 1fr;
    }

    #lounge_details_dep {
        grid-template-columns: 1fr;
    }

    .card_lounge {
        width: 100%;
    }

    .cards .container .card .card-row {
        flex-wrap: wrap;
        gap: 10px;
    }
}


#loader-container {
    display: none;
    position: fixed;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    }
    #loader {
    display: block;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 100;
    width: 80px;
    height: 80px;
    margin: -76px 0 0 -76px;
    border: 10px solid #242424;
    border-radius: 50%;
    border-top: 10px solid #ffffff;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    animation: spin 2s linear infinite;
    /* display: none; */
    }

    
    @-webkit-keyframes spin {
        0% { -webkit-transform: rotate(0deg); }
        100% { -webkit-transform: rotate(360deg); }
        }
        @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
        }



        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .logo {
            width: 200px;
        }
        
        .content {
            margin-bottom: 20px;
        }
        
        .title {
            margin-top: 20px;
            margin-bottom: 10px;
            font-size: 20px;
            color: #333;
        }
        
        .table-section {
            margin-bottom: 20px;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        th, td {
            padding: 8px;
            border: 1px solid #ccc;
        }
        
        .qr-code {
            display: flex;
            align-items: center;
        }
        
        .qr-code img {
            width: 100px;
            height: 100px;
            margin-right: 10px;
        }
         
        .confirmation-message {
            background-color: #f2f2f2;
            border-radius: 5px;
            padding: 10px;
            margin-bottom: 20px;
            font-size: 16px;
            color: #333;
            text-align: center;
            font-weight: bold;
        }
        .center {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }


    .contact-form-container {
        max-width: 1100px;
        width: 100%;
        background: #fff;
        margin: auto;
        border-radius: 6px;
        padding: 20px 60px 30px 40px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
      }
      .contact-form-container .content {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .contact-form-container .content .left-side {
        width: 25%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 15px;
        position: relative;
      }
      .content .left-side::before {
        content: "";
        position: absolute;
        height: 70%;
        width: 2px;
        right: -15px;
        top: 50%;
        transform: translateY(-50%);
        background: #afafb6;
      }
      .content .left-side .details {
        margin: 14px;
        text-align: center;
      }
      .content .left-side .details i {
        font-size: 30px;
        color: #101010;
        margin-bottom: 10px;
      }
      .content .left-side .details .topic {
        font-size: 18px;
        font-weight: 500;
      }
      .content .left-side .details .text-one,
      .content .left-side .details .text-two {
        font-size: 14px;
        color: #afafb6;
      }
      
      .contact-form-container .content .right-side {
        width: 75%;
        margin-left: 75px;
      }
      .content .right-side .topic-text {
        font-size: 23px;
        font-weight: 600;
        color: #151516;
      }
      .right-side .input-box {
        height: 55px;
        width: 100%;
        margin: 12px 0;
      }
      .right-side .input-box input,
      .right-side .input-box textarea {
        height: 100%;
        width: 100%;
        border: none;
        outline: none;
        font-size: 16px;
        background: #f0f1f8;
        border-radius: 6px;
        padding: 0 15px;
        resize: none;
      }
      .right-side .message-box {
        min-height: 110px;
      }
      .right-side .input-box textarea {
        padding-top: 6px;
      }
      .right-side .button {
        display: inline-block;
        margin-top: 12px;
      }
      .right-side .button input[type="button"] {
        color: #fff;
        font-size: 18px;
        outline: none;
        border: none;
        padding: 8px 16px;
        border-radius: 6px;
        background: #201f21;
        cursor: pointer;
        transition: all 0.3s ease;
      }
      .button input[type="button"]:hover {
        background: #171718;
      }
      
      @media (max-width: 950px) {
        .contact-form-container {
          width: 90%;
          padding: 30px 40px 40px 35px;
        }
        .contact-form-container .content .right-side {
          width: 75%;
          margin-left: 55px;
        }
      }
      @media (max-width: 820px) {
        .contact-form-container {
          margin: 40px 0;
          height: 100%;
        }
        .contact-form-container .content {
          flex-direction: column-reverse;
        }
        .contact-form-container .content .left-side {
          width: 100%;
          flex-direction: row;
          margin-top: 40px;
          justify-content: center;
          flex-wrap: wrap;
        }
        .contact-form-container .content .left-side::before {
          display: none;
        }
        .contact-form-container .content .right-side {
          width: 100%;
          margin-left: 0;
        }
        input[type="submit"] {
          background: black !important;
          color: white !important;
        }
      }

    .billing-section .container {
        display: flex;
        /* flex-wrap: wrap; */
        gap: 10px;
        background: #fff;
        border-radius: 7px;
        box-shadow: 0 0 10px rgba(164, 164, 164, .2);
        border-top: 4px solid #000;
        overflow: hidden;
    }

    .m-card {
        position: relative;
        min-width: 270px;
        width: 30%;
        padding: 110px 20px;
        text-align: center;
        border-right: 1px solid #000;
        background: #000;
        display: none;
    }

    .m-card h3 {
        font-weight: 500;
        font-size: 20px;
        color: #fff;
    }

    .m-card p {
        font-size: 14px;
        margin-top: 10px;
        color: #fff;
    }

    .m-card .price {
        font-family: "Proba Pro", Helvetica, Arial, sans-serif !important;
        font-size: 48px;
        line-height: 48px;
        margin-top: 15px;
        font-weight: normal;
        color: #fff;
    }

    .m-card .span {
        display: block;
        font-size: 13px;
        font-weight: normal;
        margin-top: 20px;
    }

    .m-card .monthly-price {
        display: block;
        font-weight: bold;
    }

    .progress {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        counter-reset: step;
    }

    .progress::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 3px;
        background: #dcdcdc;
    }

    .progress .progressbar {
        position: absolute;
        width: 0;
        height: 3px;
        background: #000;
        z-index: 1;
        transition: 0.3s;
    }

    .progress .step {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #dcdcdc;
        display: grid;
        place-content: center;
        z-index: 2;
        transition: 0.3s;
    }

    .progress .step::after {
        counter-increment: step;
        content: counter(step);
    }

    .progress .step.active {
        background: #000;
        color: #fff;
    }

    .billing-section .container form {
        width: 50%;
        padding: 40px 20px;
        border-radius: 7px;
        margin: 0 auto;
    }

    .billing-section .container form .tab {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .billing-section .container form .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .billing-section .container form .birth-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .billing-section .container form .tab:not(:first-of-type) {
        display: none;
    }

    .billing-section .container form .tab h2 {
        font-weight: 600;
        line-height: 1;
        text-align: center;
        margin: 0 0 20px;
    }

    .btn-container {
        display: flex;
        gap: 30px;
        align-items: center;
        justify-content: flex-end;
    }

    input.error,
    select.error {
        border-color: #d82d2d;
    }

    @media (max-width: 991px) {
        .m-card {
            min-width: 300px;
        }
    }

    @media (max-width: 767px) {
        .m-card {
            width: 100%;
        }

        .billing-section .container {
            flex-direction: column;
        }

        .billing-section .container form {
            width: 100%;
        }

        .billing-section .container form .row {
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .billing-section .container form .birth-row {
            grid-template-columns: repeat(3, 1fr);
        }

        .billing-section .container form .card-date {
            grid-template-columns: repeat(2, 1fr);
        }
    }



        .carousel {
        position: relative;
        }
        .carousel-inner {
        position: relative;
        width: 100%;
        overflow: hidden;
        }
        .carousel-item {
        position: relative;
        display: none;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        transition: -webkit-transform .6s ease;
        transition: transform .6s ease;
        transition: transform .6s ease,-webkit-transform .6s ease;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
        }
        .carousel-item.active,
        .carousel-item-next,
        .carousel-item-prev {
        display: block;
        }
        .carousel-item-next,
        .carousel-item-prev {
        position: absolute;
        top: 0;
        }
    
        .carousel-item-next.carousel-item-left,
        .carousel-item-prev.carousel-item-right {
        transform: translateX(0);
        }
        .carousel-item-next,
        .active.carousel-item-right {
        transform: translateX(100%);
        }
        .carousel-item-prev,
        .active.carousel-item-left {
        transform: translateX(-100%);
        }
        .carousel-control-prev,
        .carousel-control-next {
        position: absolute;
        top: 0;
        bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 15%;
        color: #fff;
        text-align: center;
        opacity: .5;
        }
        .carousel-control-next:focus {
        color: #fff;
        text-decoration: none;
        outline: 0;
        opacity: .9;
        }
        .carousel-control-next:hover{
        color: #fff;
        text-decoration: none;
        outline: 0;
        opacity: .9;
        }
        .carousel-control-prev:focus{
        color: #fff;
        text-decoration: none;
        outline: 0;
        opacity: .9;
        }
        .carousel-control-prev:hover{
        color: #fff;
        text-decoration: none;
        outline: 0;
        opacity: .9;
        }
        .carousel-control-prev {
        left: 0;
        }
        .carousel-control-next {
        right: 0;
        }
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
        display: inline-block;
        width: 20px;
        height: 20px;
        background: transparent no-repeat center center;
        background-size: 100% 100%;
        }
        .carousel-control-prev-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
        }
        .carousel-control-next-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
        }
        .carousel-indicators {
        position: absolute;
        right: 0;
        bottom: 10px;
        left: 0;
        z-index: 15;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-left: 0;
        margin-right: 15%;
        margin-left: 15%;
        list-style: none;
        }
        .carousel-indicators > li {
        position: relative;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        width: 16px;
        height: 16px;
        margin-right: 3px;
        margin-left: 3px;
        border-radius: 50%;
        background-color: rgba(255,255,255,.5);
        }
        .carousel-indicators >  li::before {
        position: absolute;
        top: -10px;
        left: 0;
        display: inline-block;
        width: 100%;
        height: 10px;
        content: "";
        }
        .carousel-indicators >li::after {
        position: absolute;
        bottom: -10px;
        left: 0;
        display: inline-block;
        width: 100%;
        height: 10px;
        content: "";
        }
        .carousel-indicators > li.active {
        background-color: #fff;
        }