:root {
    --ifly-black: #16181e;
    --ifly-primary: #e72d2d;
    --ifly-secondary: #142d61;
    --ifly-secondary-gradient: linear-gradient(0deg, #142d61 0%, #1b4292 100%);
    --ifly-shadow-default: 0px 2.323px 4px 1px rgba(0, 0, 0, 0.16);
    --dohaquest-text-base-300: #6b6b6b;
    --dohaquest-text-base-100: #bdbdbd;
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
}

* {
    margin: 0;
    padding: 0;
    font-family: Poppins;
    box-sizing: border-box;
}

button {
    outline: none;
    border: 0;
}

.ifly__main {
    display: flex;
    width: 100%;
    min-height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    overflow-x: hidden;
    overflow-y: visible;
    background: var(--ifly-black);
}

.ifly__hero {
    width: 100%;
}

.ifly__hero > .ifly__section {
    height: 100%;
}

header {
    display: flex;
    padding: 8px 96px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    background-color: white;
}

.header__row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.header__logo {
    width: 160px;
    height: auto;
    object-fit: contain;
}

.header__navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    gap: 32px;
    text-decoration: none;
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.header__navigation__links {
    text-decoration: none;
    color: var(--ifly-black);
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.ifly__section {
    display: flex;
    flex-direction: row;
    padding: 8px 96px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: relative;
    width: 100%;
}

.ifly__section__content-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.ifly__footer-social-media-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
}

.ifly__section-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: auto;
}

.ifly__section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.ifly__section-overlay {
    background: linear-gradient(
        270deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.5) 100%
    ) !important;
}

.ifly__section-overlay-reversed {
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.9) 100%
    ) !important;
}

.ifly__section-ifly-experience {
    min-height: 480px;
    max-height: 480px;
}

.ifly__section__content {
    display: flex;
    padding: 8px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
    width: 100%;
    height: 100%;
}

.ifly__btn {
    display: flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;

    border-radius: 4px;
    background: var(--ifly-primary);

    box-shadow: var(--ifly-shadow-default);

    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.ifly__section__content-title {
    color: #fff;
    width: 100%;
    text-shadow: var(--ifly-shadow-default);
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.ifly__section__content-sub-title {
    color: #fff;
    width: 100%;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.ifly__aspect_ratio-video {
    aspect-ratio: 16 / 9;
    max-height: 720px;
}

.hide_on_desktop {
    display: none;
}

.ifly__pricing_container {
    display: flex;
    padding: 4px 4px;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    align-self: stretch;
    scroll-snap-type: x mandatory;
}

.ifly__price_container {
    display: flex;
    min-width: 280px;
    width: 100%;
    max-width: 280px;
    height: 560px;
    min-height: 560px;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #fff;
    background: rgba(248, 248, 248, 0.2);
    overflow: hidden;
    box-shadow: var(--ifly-shadow-default);
    scroll-snap-align: start;
}

.ifly__price_container-header {
    display: flex;
    min-height: 160px;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    background: var(--ifly-secondary);

    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.ifly__price_container-header-controls {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 4px;
}

.ifly__price_container-header-controls-btn {
    width: 32px;
    height: 32px;
    background-color: transparent !important;
}

.ifly__price_container-header-controls-btn_minus_enabled {
    stroke: white;
}

.ifly__price_container-header-controls-btn_add_enabled {
    fill: white;
}

.ifly__price_container-header-controls-btn_minus_disabled {
    stroke: var(--dohaquest-text-base-300);
}

.ifly__price_container-header-controls-btn_add_disabled {
    fill: var(--dohaquest-text-base-300);
}

.ifly__price_container-body {
    display: flex;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    align-self: stretch;
}

.ifly__price_container-body-info {
    display: flex;
    padding: 16px 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.ifly__price_container-body-info-description {
    height: 100%;

    color: var(--dohaquest-text-base-300);
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.ifly__price_container-body-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    align-self: stretch;

    color: var(--ifly-black);
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.ifly__price_container-price {
    display: flex;
    min-height: 80px;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;

    color: var(--ifly-secondary);
    text-align: center;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.ifly__price_container-price-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 24px;
}

.ifly__price_container-price-item-title {
    color: var(--ifly-black);
    text-align: center;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    align-self: stretch;
}

.ifly__little_girl {
    width: 620px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(10px);
    }
    100% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

.ifly__little_girl {
    animation: float 1.5s ease-in-out infinite;
}

.ifly__little_girl-container {
    position: relative;
    min-height: 320px;
}

.ifly__faqs-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ifly__faq-parent {
    display: flex;
    width: 100%;
    padding: 24px 0px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    border-bottom: 0.5px solid var(--dohaquest-text-base-100);
}

.ifly__faq-parent-title {
    font-size: 18px;
    color: var(--ifly-black);
    width: 100%;
    color: var(--dohaquest-text-base-300, #6b6b6b);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ifly__faq-parent-icon {
    width: 16px;
    height: 16px;
    fill: var(--dohaquest-text-base-300);
    transition: transform 0.3s ease;
}

.ifly__faq-parent-icon-rotate {
    transform: rotate(180deg);
}

.ifly__faq-children {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ifly__faq-child {
}

.ifly__faq-child-title {
    margin: 0;
    font-weight: bold;
    font-size: 16px;
}

.ifly__faq-child-description {
    font-size: 14px;
    color: #666;
}

@media screen and (min-width: 1440px) {
    .ifly__aspect_ratio-video {
        max-height: unset;
    }
}

@media screen and (max-width: 768px) {
    .ifly__pricing_container {
        flex-wrap: wrap;
    }

    .ifly__little_girl-container {
        position: relative;
        min-height: 120px;
    }

    .ifly__little_girl {
        width: 300px;
    }

    .center__on__tablet {
        justify-content: center;
    }

    .center__on__tablet > .ifly__section__content-title {
        width: 100%;
        text-align: center;
    }

    .ifly__section-overlay,
    .ifly__section-overlay-reversed {
        background: linear-gradient(
            360deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.9) 100%
        ) !important;
    }

    .header__logo {
        width: 128px;
    }

    .header__navigation__links {
        font-size: 12px;
    }

    .ifly__section-ifly-experience {
        min-height: 430px;
        max-height: 430px;
    }

    .ifly__section__content-title {
        font-size: 24px;
    }

    .ifly__section__content-sub-title {
        font-size: 16px;
    }

    .ifly__btn {
        padding: 16px 32px;
        font-size: 16px;
    }

    .hide_on_tablet {
        display: none;
    }

    .hide_on_desktop {
        display: flex;
    }

    .ifly__section {
        padding: 0 8px;
        align-items: start;
        flex-direction: column;
        height: max-content !important;
    }

    .ifly__section__content {
        gap: 8px;
        width: 100%;
        padding: 16px 0;
        justify-content: center;
        align-items: center;
    }

    .ifly__section-bg-video {
        position: unset;
        width: 100vw;
        height: auto;
    }
}

@media screen and (max-width: 425px) {
    .ifly__pricing_container {
        justify-content: start;
        flex-wrap: nowrap;
        overflow-x: scroll;
        gap: 16px;
        padding: 8px 8px;
    }

    .hide_on_mobile {
        display: none;
    }

    .hide_on_desktop {
        display: flex;
    }

    header {
        padding: 8px 16px;
    }

    .header__navigation {
        gap: 24px;
    }
}
