@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-font: 'Libre Baskerville', serif;
    --secondary-font: 'Montserrat', sans-serif;
    --primary-color: #333333;
    --secondry-color: #FFFFFF;
    --yellow-color: #FFD900;
    --pink-color: #DD71C6;
    --blue-color: #73C3F4;
    --banner-heaing: clamp(36px, 2.344vw, 45px);
    --regular-heading: clamp(16px, 0.833vw, 16px);
    --main-heading: clamp(24px, 1.667vw, 32px);
}

body {
    position: relative;
}

body,
html {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
}

p,
a,
li,
button,
span,
label {
    font-family: var(--secondary-font)
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.capitalize {
    text-transform: capitalize;
}

.uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.d-flex-align-center {
    align-items: center;
}

.d-flex-align-start {
    align-items: start;
}

.d-flex-align-stretch {
    align-items: stretch;
}

.d-flex-align-end {
    align-items: end;
}

.d-flex-justify-center {
    justify-content: center;
}

.d-flex-justify-space {
    justify-content: space-between;
}

.d-flex-column {
    flex-direction: column;
}

.d-flex-row {
    flex-direction: row;
}

.relative {
    position: relative;
}

.wrap {
    flex-wrap: wrap;
}

.hide {
    display: none;
}

.pink-button {
    font-size: var(--regular-heading);
    font-weight: 600;
    color: var(--secondry-color);
    background-color: var(--pink-color);
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--secondary-font);
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
    border: 2px solid var(--pink-color);
}

.pink-button::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondry-color);
    transition: top 0.3s ease;
    z-index: -1;
}

.pink-button:hover::before {
    top: 0;
}

.pink-button:hover {
    color: var(--pink-color);
}

.yellow-button {
    font-size: var(--regular-heading);
    font-weight: 600;
    color: var(--secondry-color);
    background-color: var(--yellow-color);
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--secondary-font);
}

.pink-text {
    color: var(--pink-color);
}

/* =============header================ */
#header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 9;
}

.logo {
    position: relative;
    z-index: 9999;
}

.logo a {
    width: 138px;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#navbar ul li a {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

#navbar ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--blue-color);
    transition: width 0.3s ease;
}

#navbar ul li a:hover::after {
    width: 100%;
}

#navbar ul li a:hover {
    color: var(--blue-color);
}

#navbar ul {
    gap: 30px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: transform 0.4s ease, opacity 0.2s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -5px);
}

/* ==========banner======== */
.banner {
    padding: 204px 0 115px 0;
    background-color: #F9F9F9;
    z-index: 1;
}

.banner::after {
    content: "";
    background-color: var(--yellow-color);
    width: 590px;
    height: 100%;
    border-radius: 50px 0 0 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.banner::before {
    content: '';
    background-image: url('/assets/images/banner-left.svg');
    width: 385px;
    height: 385px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.banner-after {
    position: relative;
}

.banner-after::after {
    content: '';
    background-image: url('/assets/images/banner-right.svg');
    width: 435px;
    height: 435px;
    position: absolute;
    right: -180px;
    border: 0;
    transform: translateY(-20%);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}

.banner-content h1 {
    font-size: var(--banner-heaing);
    font-weight: 400;
    color: var(--primary-color);
    line-height: 150%;
}

.banner-para-btn p {
    margin: 26px 0;
    font-size: var(--regular-heading);
    color: var(--primary-color);
    font-weight: 400;
    line-height: 160%;
    max-width: 450px;
}

.banner-timer {
    padding: 41px 36px;
    background: linear-gradient(107.9deg, rgba(255, 255, 255, 0.51) 9.7%, rgba(255, 255, 255, 0.49) 88.76%);
    backdrop-filter: blur(67px);
}

.banner-content {
    width: 100%;
    max-width: 50%;
    padding-right: 74px;
}

.banner-timer {
    width: 100%;
    max-width: 50%;
    border-radius: 50px;
}

.banner-para-btn {
    width: 100%;
    max-width: 50%;
}

.banner-timer h6 {
    font-size: clamp(16px, 0.938vw, 18px);
    font-weight: 400;
    color: var(--primary-color);
    font-family: var(--secondary-font);
    line-height: 160%;
}


.time {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.time div {
    text-align: center;
}

.time span{
    display: block;
    font-size: clamp(18px, 2.604vw, 50px);
    font-weight: bold;
    color: #222;
}
.time span h6{
    display: block;
    font-size: clamp(18px, 2.604vw, 50px);
    font-weight: bold;
    color: #222;
}

.label h5 {
    font-size: clamp(8px, 0.938vw, 18px);
    font-weight: 500;
    color: #0083D3;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
    line-height: 180%;
    margin: 53px 0 36px 0;
    letter-spacing: 32.5%;
}

.spots.hide h6 {
    font-family: var(--secondary-font);
    font-size: var(--regular-heading);
    font-weight: 400;
    line-height: 160%;
    text-align: center;
}

.spots.hide h6 span {
    font-weight: 700;
}

/* =====Faq-start=== */
.faq-section {
    padding: 100px 0;
}

.faq-header h2 {
    color: var(--primary-color);
    font-weight: 400;
    font-size: var(--main-heading);
    line-height: 160%;
    margin-bottom: 64px;
}

.main-item {
    background: #F9F9F9;
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-item:last-child {
    margin-bottom: 0;
}

.main-question {
    padding: 18px 62px 18px 20px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-question h5{
    color: var(--primary-color);
    font-size: var(--regular-heading);
    font-family: var(--secondary-font);
    font-weight: 500;
    line-height: 173%;
    margin-right: 10px;
}
.main-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.main-answer p {
    margin: 15px 0;
    font-size: 15px;
    line-height: 1.5;
    color: #444;
}

.main-icon {
    transition: transform 0.3s ease;
    width: 20px;
    height: 10px;
}

.main-icon img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.main-item.active .main-answer {
    max-height: 200px;
    padding: 15px 20px;
}

.main-item.active .main-icon {
    transform: rotate(180deg);
}

.faq-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 83px;
}

.faq-section::before {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 410px;
    height: 410px;
    background-image: url('/assets/images/faq-before.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.main-accordion::before {
    content: '';
    background-image: url('/assets/images/faq-center.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 270px;
    height: 270px;
    position: absolute;
    right: -320px;
    top: 0;
}

.main-accordion::after {
    content: '';
    background-image: url('/assets/images/faq-after.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 124px;
    height: 124px;
    position: absolute;
    right: -210px;
    bottom: -50px;
}

/* ===Faq-end===== */