@charset "utf-8";
/* CSS Document */

/*********************** General ************************/
html {
    font-family: 'Roboto', sans-serif !important;
    -ms-text-size-adjust: 100%;
}

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

body {
    background-color: #D90368;
    font-size: 16px;
    line-height: 1.6;
    color: #1d1d1b;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* width */
body::-webkit-scrollbar {
    width: 6px;
}
  
/* Track */
body::-webkit-scrollbar-track {
    background: #EADEDA;
}
  
/* Handle */
body::-webkit-scrollbar-thumb {
    background: #2E294E;
}

:root {
    --yellow: #FFD400;
    --dark-blue: #2E294E;
    --grey: #EADEDA;
    --pink: #D90368;
    --purple: #820263;
    --form-grey: #7B7B7B;
    --red: #FF4141;
    --orange: #dac133;
    --light-green: #6A994E;
    --green: #FF906A;
    --white: #FFFEFA;
    --black: #1D1D1B;
}

.red { background-color: var(--red); }
.orange { background-color: var(--orange); }
.light_green { background-color: var(--light-green); }
.green { background-color: var(--green); }
.pale_blue { background-color: var(--cambridge-blue); }
.blue { background-color: var(--blue); }
.navy { background-color: var(--dark-green); }
.dark_green { background-color: var(--dark-green); }
.yellow { background-color: var(--yellow); }

/*********************** Fonts ************************/
h1, h2, h3, h4, h5 {
    font-style: normal;
    font-family: goodlife-serif, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--pink);
}

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

h2 {
    font-size: 80px;
    /* line-height: 1.4; */
}

h3 {
    font-size: 46px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 24px;
}

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

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 24px;
    }
}

p {
    font-size: 16px;
    font-weight: 400;
}

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

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

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

.wrapper_large {
    width: 1200px;
}

.wrapper_small {
    max-width: 45%;
    width: 900px;
}

.large_text_body {
    width: 600px;
    margin-bottom: 96px;
}

.large_text_body h1 {
    text-align: left;
    margin-top: 80px;
}

.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);
    }
}

.wrapper_small h1 {
    text-align: center;
}

.page {
    width: 100%;
    min-height: 100vh;
}

/*********************** 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 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    height: 46px !important;
    background-color: var(--yellow);
    text-align: center;
    color: var(--pink);
    font-family: 'Roboto', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px;
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    opacity: 1;
    border-radius: 23px;
    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(--transparent) !important;
    border: 2px solid var(--pink);
    color: var(--pink) !important;
}

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

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

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

.button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.square_button:hover {
    opacity: 0.9;
    transition: 0.15s all ease-in-out;
}

.button_2:hover {
    background-color: var(--pink) !important;
    color: var(--white) !important;
    opacity: 1 !important;
    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: 500px;
    transition: 0.1s all ease-in-out;
    outline: none;
}

/* @media (max-width: 500px) {
    .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;
    width: 100%;
    height: 50vh;
    height: 450px;
    border: 2px solid var(--border-grey);
    padding: 15px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    background-color: var(--white);
    z-index: 10;
}

.hide_banner_True {
    display: none !important;
}

.page_banner_image {
    position: absolute;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    overflow: hidden;
}

.page_banner img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.page_banner h1 {
    color: var(--white);
    margin: 0 auto;
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 2px;
}

.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: 1350px) {
    .page_banner {
        width: calc(100% - 192px);
    }
}

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

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

    .banner_spacer {
        height: 25px;
    }
}

@media (max-width: 800px) {
    .page_banner {
        width: calc(100% - 40px);
        justify-content: center;
        align-items: center;
    }

    .page_banner .wrapper_large {
        margin-top: 0;
    }

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

    .banner_spacer {
        height: 20px;
    }
}

@media (max-width: 600px) {
    .page_banner {
        width: calc(100% - 40px);
        margin-left: 20px;
        height: unset;
        aspect-ratio: 1;
        justify-content: center;
        align-items: center;
    }

    .page_banner .home_illustration {
        left: 50%;
        margin-left: -50px;
    }
}

@media (max-width: 380px) {
    .page_banner .home_illustration {
        display: none;
    }
}