* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.body-lock {
    overflow: hidden;
}

html,
body {
    padding: 0;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-display: swap;
}

section {
    -webkit-animation: fadeInAnimation cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
    animation: fadeInAnimation cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

a {
    cursor: pointer;
    text-decoration: none;
    color: currentColor;
    -webkit-transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
}

a:hover {
    -webkit-transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
}

button {
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    border: none;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 25px;
    height: 50px;
    min-width: 250px;
    max-width: 300px;
    -webkit-transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
}

button:hover {
    -webkit-transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
}

.btn-primary {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ff4d56;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 2rem;
}

.btn-primary i {
    font-size: 24px;
}

.btn-primary:hover {
    background-color: #7843eb;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}

h1,
h2 {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin: 0;
}

@media screen and (min-width: 992px) {
    h1,
    h2 {
        font-size: 40px;
    }
}

p {
    font-size: 16px;
}

@media screen and (min-width: 992px) {
    p {
        font-size: 18px;
    }
}

.lead-p {
    color: #9c9c9c;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 1rem auto 2rem;
}

@media screen and (min-width: 992px) {
    .lead-p {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1/3;
        font-size: 20px;
        width: 80%;
        margin: 1rem auto 3rem;
    }
}

hr {
    border: none;
    border-top: 1px solid #9c9c9c;
}

img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

.page-selector-bg {
    background: url(assets/images/page-selector-background.png);
    height: 100vh;
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: start;
    align-content: start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.page-selector-bg .page-selector-content {
    max-width: 400px;
    margin: 0 16px;
    display: -ms-grid;
    display: grid;
    grid-gap: 32px;
}

@media screen and (min-width: 576px) {
    .page-selector-bg .page-selector-content {
        max-width: calc(100vw - 32px);
        grid-gap: 48px;
    }
}

@media screen and (min-width: 768px) {
    .page-selector-bg .page-selector-content {
        margin: 0 auto;
        grid-gap: 72px;
    }
}

@media screen and (min-width: 1200px) {
    .page-selector-bg .page-selector-content {
        max-width: 996px;
    }
}

.page-selector-bg .page-selector-content .page-selector-header {
    display: -ms-grid;
    display: grid;
    justify-items: center;
    grid-gap: 24px;
    padding-top: 32px;
}

@media screen and (min-width: 576px) {
    .page-selector-bg .page-selector-content .page-selector-header {
        grid-gap: 32px;
        padding-top: 72px;
    }
}

@media screen and (min-width: 768px) {
    .page-selector-bg .page-selector-content .page-selector-header {
        grid-gap: 48px;
        padding-top: 96px;
    }
}

@media screen and (min-width: 1200px) {
    .page-selector-bg .page-selector-content .page-selector-header {
        padding-top: 144px;
    }
}

.page-selector-bg .page-selector-content .page-selector-header img {
    width: 140px;
}

@media screen and (min-width: 768px) {
    .page-selector-bg .page-selector-content .page-selector-header img {
        width: 280px;
    }
}

.page-selector-bg .page-selector-content .page-selector-header p {
    font-size: 16px;
    color: #9c9c9c;
    text-align: center;
    margin: 0;
}

@media screen and (min-width: 576px) {
    .page-selector-bg .page-selector-content .page-selector-header p {
        max-width: 80%;
    }
}

@media screen and (min-width: 768px) {
    .page-selector-bg .page-selector-content .page-selector-header p {
        max-width: 60%;
        font-size: 20px;
    }
}

.page-selector-bg .page-selector-content .page-selector-tiles {
    display: -ms-grid;
    display: grid;
    grid-gap: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width: 576px) {
    .page-selector-bg .page-selector-content .page-selector-tiles {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 768px) {
    .page-selector-bg .page-selector-content .page-selector-tiles {
        -ms-grid-columns: 1fr auto 1fr;
        grid-template-columns: 1fr auto 1fr;
        grid-gap: 57px;
    }
}

.page-selector-bg .page-selector-content .page-selector-tiles .selector-tile-wrapper h3 {
    font-size: 24px;
    margin: 0 0 8px;
    text-align: center;
    color: #463b1d;
}

@media screen and (min-width: 576px) {
    .page-selector-bg .page-selector-content .page-selector-tiles .selector-tile-wrapper h3 {
        margin: 0 0 16px;
    }
}

.page-selector-bg .page-selector-content .page-selector-tiles .selector-tile-wrapper:nth-of-type(1) .selector-tile img {
    width: 180px;
}

@media screen and (min-width: 768px) {
    .page-selector-bg .page-selector-content .page-selector-tiles .selector-tile-wrapper:nth-of-type(1) .selector-tile img {
        width: 240px;
    }
}

.page-selector-bg .page-selector-content .page-selector-tiles .selector-tile-wrapper:nth-of-type(2) .selector-tile img {
    width: 150px;
}

@media screen and (min-width: 768px) {
    .page-selector-bg .page-selector-content .page-selector-tiles .selector-tile-wrapper:nth-of-type(2) .selector-tile img {
        width: 190px;
    }
}

.page-selector-bg .page-selector-content .page-selector-tiles .selector-tile-wrapper .selector-tile {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #cce3e2;
    height: 140px;
    border-radius: 16px;
    -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
}

.page-selector-bg .page-selector-content .page-selector-tiles .selector-tile-wrapper .selector-subtile {
	font-size: 20px;
    text-align: center;
    color: #E26C79;
    margin: 16px 0;
}

@media screen and (min-width: 576px) {
    .page-selector-bg .page-selector-content .page-selector-tiles .selector-tile-wrapper .selector-tile {
        height: 160px;
    }
}

@media screen and (min-width: 768px) {
    .page-selector-bg .page-selector-content .page-selector-tiles .selector-tile-wrapper .selector-tile {
        height: 240px;
        padding: 0 24px;
    }
}

.page-selector-bg .page-selector-content .page-selector-tiles .vertical-line {
    display: none;
}

@media screen and (min-width: 768px) {
    .page-selector-bg .page-selector-content .page-selector-tiles .vertical-line {
        display: block;
        height: 320px;
        width: 2px;
        background-color: #d9d9d9;
    }
}
/*# sourceMappingURL=style.css.map */
