@font-face {
    font-family: 'Poppins-Black';
    src: url("../fonts/Poppins-Black.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-BlackItalic';
    src: url("../fonts/Poppins-BlackItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url("../fonts/Poppins-Bold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-BoldItalic';
    src: url("../fonts/Poppins-BoldItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-ExtraBold';
    src: url("../fonts/Poppins-ExtraBold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-ExtraBoldItalic';
    src: url("../fonts/Poppins-ExtraBoldItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-MediumItalic';
    src: url("../fonts/Poppins-MediumItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-SemiBold';
    src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-SemiBoldItalic';
    src: url("../fonts/Poppins-SemiBoldItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-ExtraLight';
    src: url("../fonts/Poppins-ExtraLight.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-ExtraLightItalic';
    src: url("../fonts/Poppins-ExtraLightItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Italic';
    src: url("../fonts/Poppins-Italic.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Light';
    src: url("../fonts/Poppins-Light.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-LightItalic';
    src: url("../fonts/Poppins-LightItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url("../fonts/Poppins-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url("../fonts/Poppins-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Thin';
    src: url("../fonts/Poppins-Thin.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-ThinItalic';
    src: url("../fonts/Poppins-ThinItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Universal Styles */
* {
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
    padding: 0;
    line-height: normal;
}

ul,
ol {
    padding-left: 20px;
}

select:focus {
    outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: "Poppins-Regular", sans-serif;
    font-weight: 500;
    background-color: #E8E8E6;
    color: rgba(0, 0, 0, 0.9);
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

button:disabled,
button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(1);
}

/* Common Styles */
:root {
    --padding: 40px;
    --header-height: 91px;
    --footer-height: 490px;
}

.flex {
    display: flex;
}

.flex-1 {
    flex: 1;
}

.flex-col {
    flex-direction: column;
}

.flex-left {
    justify-content: flex-start;
}

.flex-right {
    justify-content: flex-end;
}

.flex-spread {
    justify-content: space-between;
}

.flex-center {
    justify-content: center;
}

.flex-vleft {
    align-items: flex-start;
}

.flex-vright {
    align-items: flex-end;
}

.flex-vcenter {
    align-items: center;
}



.container {
    padding: var(--padding);
    margin: auto;
    max-width: 1440px;
}

section,
section.container {
    background-color: #E8E8E6;
    overflow: hidden;
    padding-bottom: 15px;
}

.max-width {
    width: 100%;
    max-width: 1440px;
    margin: auto;
}

.main-content {
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

table {
    width: 100%;
}

p,
span,
td,
label,
.mw-para {
    font-family: 'Poppins-Light';
    font-size: 18px;
    color: #3B3B3B;
    margin: 0;
}

p {
    margin-bottom: 1em;
}

th {
    font-family: 'Poppins-Bold';
    font-size: 18px;
    color: #3B3B3B;
}

h1,
.mw-h1 {
    font-family: 'Poppins-Bold';
    font-size: 40px;
    color: #3B3B3B;
}

h2,
.mw-h2 {
    font-family: 'Poppins-Light';
    font-size: 30px;
    color: #1F2933;
}

h3,
.mw-h3 {
    font-family: 'Poppins-Regular';
    font-size: 20px;
    color: #3B3B3B;
}

h4,
.mw-h4 {
    font-family: 'Poppins-Bold';
    font-size: 30px;
    color: #3B3B3B;
}

h5 {
    font-family: 'Poppins-Bold';
    font-size: 20px;
    color: #575757;
}

.form-group {
    padding-top: 10px;
}

.section-background {
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -1;
    height: 100%;
    max-height: 100vh;
    overflow: hidden;
}

.section-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile {
    display: none;
}

.error,
.invalid {
    color: #f00;
}

button,
.mw-button {
    color: #131313;
    font-family: 'Poppins-Regular';
    font-size: 20px;
    background-color: transparent;
    color: #131313;
    border: 3px solid transparent;
    outline: none !important;
    padding: 10px 20px;
    border-radius: 60px;
    position: relative;
    opacity: 0.6;
    transition: color 0.5s, transform 0.2s, background-color 0.2s;
}

button:hover,
.mw-button:hover {
    box-shadow: none;
    color: #ffffff;
    opacity: 1;
    background-color: #F0684F;
}

button::before,
.mw-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    border: 3px solid #131313;
    transition: opacity 0.3s, border 0.3s;
}

button:hover::before,
.mw-button:hover::before {
    opacity: 0;
}

button::after,
.mw-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 3px solid #F0684F;
    border-radius: 40px;
    opacity: 0;
    z-index: -1;
    transform: scaleX(1.1) scaleY(1.3);
    transition: transform 0.3s, opacity 0.3s;
}

button:hover::after,
.mw-button:hover::after {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
}

a,
a:hover {
    color: #3B3B3B;
    text-decoration: none;
}

small {
    font-size: 12px;
}

.trademark {
    font-size: 24px;
    line-height: inherit;
}

.form-group {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

select.form-control,
input.form-control {
    outline: none !important;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    background: #E8E8E6;
    padding: 10px;
    font-family: 'Poppins-Regular';
    font-size: 15px;
}

.form-control {
    height: 40px;
}

.modal-content {
    border-radius: 15px;
}

.modal-footer {
    border: none;
}

strong {
    font-family: 'Poppins-Bold';
}

.voucher-sticky {
    background-color: #F0684F;
    padding: 10px;
    width: 100%;
    position: fixed;
    left: 0;
    top: var(--header-height);
    z-index: 1;
    cursor: pointer;
}

.voucher-sticky p {
    color: #fff;
    margin: 0;
    text-align: center;
}

.tippy-content {
    color: #F4F7FA;
    font-family: 'Poppins-Bold';
    font-size: 14px;
}

.back-button h4 {
    margin: auto 0;
}

.back-button {
    padding-bottom: 10px;
    column-gap: 10px;
}

.gradient {
    background: linear-gradient(90deg, #F0684F 0.79%, #BEABA4 31.1%, #04CFCB 56.41%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mw-flag-text {
    font-size: 14px;
    margin-left: 10px;
}

.mw-flags-icon {
    vertical-align: middle;
    width: 20px;
}

.select2-results__option--highlighted {
    background: #04CFCB !important;
}

.mw-input-phone {
    position: relative;
}

.mw-input-phone > .select2-container {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px !important;
    z-index: 2;
    padding: 0;
}

.mw-select2-dropdown-class {
    width: 300px !important;
    min-width: 300px !important;
    max-width: 500px !important;
}

.mw-input-phone .select2-container--default .select2-selection--single {
    border: none;
    background: transparent;
}

.mw-input-phone > input {
    padding-left: 90px !important;
}

.mw-input-phone .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

.mw-input-phone .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
}

.mw-input-phone select {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.mw-country-code-text {
    padding-left: 5px;
    font-weight: 500;
    font-size: 15px;
}

@media screen and (max-width: 1080px) {
    :root {
        --padding: 20px;
        --header-height: 64px;
        --footer-height: 115px
    }

    p,
    span,
    td,
    label,
    .mw-para,
    th,
    .mw-button,
    button {
        font-size: 16px;
    }

    h1,
    .mw-h1 {
        font-size: 30px;
    }

    h2,
    .mw-h2 {
        font-size: 20px;
    }

    h3,
    .mw-h3 {
        font-size: 18px;
    }

    h4,
    .mw-h4 {
        font-size: 20px;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .voucher-sticky p {
        font-size: 12px;
    }
}