@font-face {
    font-family: 'erupha';
    font-style: normal;
    font-weight: normal;
    src: url('../font/THEERUPHA-REGULAR.OTF') format('truetype');
}

:root {
    --montserrat: "Montserrat";
    --erupha: "erupha";
    --gray: #636569;
    --olive: #B3C135;
    --lilac: #D5ADD1;
    --peach: #F8B3B1;
    --pink: #F27FB2;
    --alter-olive: #F2FA4A;
    --green: #38683A;
    --yellow: #EDB137;
    --purple: #903081;
    --alter-yellow: #FCAF17;
    --alter-pink: #CD488E;
    --disable: #D9D9D9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.1;
    font-optical-sizing: auto;
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
    /**This line establishes 1rem == 10px**/
    font-size: 62.5%;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    width: 5px;
    background-color: #ccc;
    display: none;
}

html::-webkit-scrollbar-thumb {
    background-color: #bbb;
}

body {
    width: 100svw;
    overflow-x: hidden;
    background-color: #fff;
    overflow-y: auto;
    font-family: "Montserrat", sans-serif;
    line-height: 1;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    height: 100%;
}

svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

h1 {
    font-family: var(--erupha), serif;
    font-size: clamp(6.4rem, 8vw, 8.4rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 1px;
}

h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(4rem, 5vw, 6rem);
    font-style: normal;
    font-weight: 500;
}

h3 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 2.5vw, 3rem);
    font-style: normal;
    font-weight: 500;
}

h4 {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 500;
}

p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.2rem, 1vw, 1.4rem);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.labelledby {
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
    display: block;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
select {
    color: var(--gray);
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 12px;
    outline: none;
    transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid #D5ADD1;
}

input[type="text"]:focus,
input[type="text"]:active,
input[type="text"]:focus-within,
input[type="select"]:focus,
input[type="select"]:active,
input[type="select"]:focus-within,
input[type="search"]:focus,
input[type="search"]:active,
input[type="search"]:focus-within,
input[type="password"]:focus,
input[type="password"]:active,
input[type="password"]:focus-within,
input[type="email"]:focus,
input[type="email"]:active,
input[type="email"]:focus-within,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="tel"]:focus-within,
select:focus,
select:active,
select:focus-within {
    border: 1px solid #000;
}

input[type="text"].error,
input[type="select"].error,
input[type="search"].error,
input[type="password"].error,
input[type="email"].error,
input[type="tel"].error,
select.error {
    border: 1px solid var(--pink);
}

input[type="text"]::before.error {
    content: '';
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='#F27FB2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M12 8V12.5' stroke='#F27FB2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M12 15.9883V15.9983' stroke='#F27FB2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    height: 40px;
    width: 40px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    z-index: 1;
    border: 1px solid #f00;
}

input[type="checkbox"] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    padding: 2px !important;
    border: 1px solid var(--gray) !important;
    transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1) !important;
    cursor: pointer !important;
    position: relative !important;
}

input[type="checkbox"]::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    box-shadow: 0 0 0 calc(20px / 2.5) var(--alter-olive) !important;
    border-radius: inherit !important;
    opacity: 0 !important;
    transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46) !important;
}

input[type="checkbox"]::before {
    content: "" !important;
    position: absolute !important;
    top: 40% !important;
    left: 50% !important;
    width: 4px !important;
    height: 7px !important;
    opacity: 0 !important;
    border-right: 2px solid var(--disable) !important;
    border-bottom: 2px solid var(--disable) !important;
    transform: translate(-50%, -50%) rotate(45deg) scale(0) !important;
    transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s !important;
}

input[type="checkbox"]:hover {
    border: 1px solid var(--alter-olive) !important;
}

input[type="checkbox"]:checked {
    background-color: var(--green) !important;
    border-color: transparent !important;
}

input[type="checkbox"]:checked::before {
    opacity: 1 !important;
    transform: translate(-50%, -50%) rotate(45deg) scale(1.2) !important;
    transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s !important;
}

input[type="checkbox"]:active:not(:checked)::after {
    box-shadow: none !important;
    transition: none !important;
    opacity: 1 !important;
}

input.valid {
    color: var(--green) !important;
}

.labelby {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.size {
    width: auto;
    padding: 12px 5px;
    width: 167px;
    height: 40px;
    border: 1px solid #000;
    font-size: clamp(1.4rem, 2vw, 1.6rem);
}

.grecaptcha-badge {
    z-index: 9999999 !important;
    visibility: hidden;
}