@charset "utf-8";
/* CSS Document */
@font-face {
    font-family: 'August Shining';
    src: url("fonts/august-shining.2e710b953f8f.eot");
    src: url("fonts/august-shining.2e710b953f8f.eot?#iefix") format('embedded-opentype'),
         url("fonts/august-shining.3ce01e95054d.woff2") format('woff2'),
         url("fonts/august-shining.7eecf551c613.woff") format('woff'),
         url("fonts/august-shining.6bc935a45400.ttf")  format('truetype'),
         url("fonts/august-shining.e27e711bc572.svg#August Shining") format('svg');
}

/*********************** General ************************/
html {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    -ms-text-size-adjust: 100%;
    width: 100%;
    overflow-x: hidden;
}

html, body {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: #E8E8E8;
    font-size: 18px;
    line-height: 1.6;
    color: #221E1F;
    -webkit-font-smoothing: antialiased;
}

/* width */
body::-webkit-scrollbar {
    width: 6px;
}
  
/* Track */
body::-webkit-scrollbar-track {
    background: #F5F5FA;
}
  
/* Handle */
body::-webkit-scrollbar-thumb {
    background: #FABE5C;
}

:root {
    --form-grey: #7B7B7B;
    --background-grey: #E8E8E8;
    --red: #FF4141;
    --light-green: #6ca948;
    --green: #FF906A;
    --orange: #E57C47;
    --blue: #87C4C4;
    --pink: #E5A3BA;
    --yellow: #FABE5C;
    --melon: #FFBDB5;
    --white: #FFFFFF;
    --black: #221E1F;
}

.red { background-color: var(--red); }
.orange { background-color: var(--orange); }
.light_green { background-color: var(--light-green); }
.green { background-color: var(--green); }
.pink { background-color: var(--pink); }
.yellow { background-color: var(--yellow); }
.blue { background-color: var(--blue); }
.melon { background-color: var(--melon); }


/*********************** Fonts ************************/
h1, h2, h3, h4, h5 {
    font-family: 'August Shining';
    font-weight: Regular;
    font-style: normal;
    letter-spacing: -1px;
    font-variant-ligatures: none; 
    color: var(--white);
    -webkit-text-stroke: 0.1px black;
    -webkit-font-smoothing: antialiased;
}

h1 {
    font-size: 100px;
    line-height: 1.3;
    margin-top: 0;
    text-align: center;
}

h2 {
    font-size: 80px;
    line-height: 1.3;
    text-transform: uppercase;
}

h3 {
    font-size: 42px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 24px;
}

@media (max-width: 650px) {
    h1 {
        font-size: 64px;
        text-align: center;
    }

    h2 {
        font-size: 56px;
    }

    h3 {
        font-size: 36px;
    }
}

p {
    font-size: 18px;
    font-weight: 500;
}

ul, li {
    list-style: none;
    padding-inline-start: 0px;
    font-size: 18px;
}

a {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/*********************** Wrappers ************************/
.wrapper_large, .wrapper_small {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
}

.wrapper_large {
    width: 1500px;
}

.wrapper_small {
    max-width: 60%;
    width: 1100px;
}

.large_text_body {
    width: 750px;
    margin-bottom: 150px;
}

.large_text_body h1 {
    text-align: center;
    margin-top: 120px;
    margin-bottom: 20px;
}

.large_text_body h2,
.large_text_body h3 {
    margin-bottom: 10px;
}

@media (max-width: 1350px) {
    .wrapper_small {
        max-width: 75%;
    }
}

@media (max-width: 1250px) {
    .wrapper_large {
        max-width: calc(100% - 50px);
    }
}

@media (max-width: 800px) {
    .wrapper_large {
        max-width: calc(100% - 40px);
    }

    .large_text_body {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .wrapper_small {
        max-width: calc(100% - 40px);
    }

    .large_text_body h1 {
        text-align: center;
    }
}

.wrapper_small h1 {
    text-align: center;
}

.page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.page_jump {
    position: absolute;
    margin-top: -90px;
}

/*********************** Buttons ************************/
.buttons_container {
    display: flex;
    align-items: stretch;
}

.buttons_container .button:first-of-type {
    margin-right: 20px;
}

.button,
.button_2,
input[type="submit"],
input[type="reset"],
input[type="button"],
.square_button {
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    height: 52px !important;
    background-color: var(--yellow);
    text-align: center;
    font-family: 'August Shining';
    font-weight: Regular;
    font-style: normal;
    letter-spacing: -1px;
    font-size: 22px;
    font-variant-ligatures: none; 
    color: var(--white);
    -webkit-text-stroke: 1px black;
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    opacity: 1;
    border-radius: 30px;
    border: 2px solid var(--black);
    box-shadow: 0px 5px 0px #00000026;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: 0.1s all ease-in-out;
}

.button_2 {
    background-color: var(--pink) !important;
    border: 2px solid var(--black);
    color: var(--white) !important;
}

.square_button {
    position: relative;
    width: 52px;
    padding: 0;
    background-color: var(--pink);
    color: var(--white);
    box-sizing: border-box;
}

.square_button .fa-instagram {
    text-shadow:
        -1px -1px 0 #000, /* Top-left offset */
        1px -1px 0 #000, /* Top-right offset */
        -1px  1px 0 #000, /* Bottom-left offset */
        1px  1px 0 #000;  /* Bottom-right offset */
    -webkit-text-stroke: 0 transparent !important;
}

.square_button i {
    font-size: 20px;
    margin: 0 !important;
}

.button i,
.button_2 i,
input[type="submit"] i,
input[type="reset"] i,
input[type="button"] i {
    margin-right: 8px;
    margin-top: -1px;
}

.button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.square_button:hover {
    transform: translateY(0.25em) rotate(0.001deg);
    box-shadow: 0em 0em 0em 0em rgba(0, 0, 0, 0.5);
    transition: 0.15s all ease-in-out;
}

.button:active,
.button_2:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active,
.square_button:active {
    transform: scale(0.96);
    opacity: 1;
    background-position: 100px;
    transition: 0.1s all ease-in-out;
    outline: none;
}

@media (max-width: 600px) {
    .buttons_container {
        display: block;
    }

    .button,
    .button_2,
    input[type="submit"],
    input[type="reset"],
    input[type="button"] {
        width: 100%;
        margin-left: 0;
    }
}

/*********************** Page Banner ************************/
.page_banner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 360px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    background-color: var(--blue);
    border-radius: 0 0 60px 60px;
    z-index: 10;
}

.page_banner svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.page_banner h1 {
    color: var(--white);
    margin: 0 auto;
    font-size: 60px;
    line-height: 1.2;
    text-align: center;
    z-index: 50;
}

.page_banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.22);
}

.page_banner .wrapper_large {
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner_spacer {
    width: 100%;
    height: 15px;
    background-color: var(--white);
}

.page_banner .home_illustration {
    display: block;
    width: 100px;
    height: 103px;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.page_banner .home_illustration .st0,
.page_banner .home_illustration .st1,
.page_banner .home_illustration svg path {
    fill: var(--white);
}

@media (max-width: 1250px) {
    .page_banner h1 {
        font-size: 44px;
    }

    .banner_spacer {
        height: 25px;
    }
}

@media (max-width: 800px) {
    .page_banner .wrapper_large {
        margin-top: 0;
    }

    .banner_spacer {
        height: 20px;
    }
}

@media (max-width: 660px) {
    .page_banner svg {
        width: 85%;
        height: auto;
    }

    .page_banner h1 {
        font-size: 36px;
    }
}