:root {
    --primary-color: #33523a;
    --primary-color-dark: #1f3324;
    --secondary-color: #e0e3c4;
    --tertiary-color: #a8af96;
    --quaternary-color: #443B52;
    --quaternary-color-darK: #131017;
}

html,
body {
    min-height: 100vh;
    margin: 0;
    background-color: #FFF;
    color: #000;
}

html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    background-color: rgba(51, 82, 58, 0.20);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin: 0 0 1.5rem 0;
}

p {
    margin: 0 0 1.5rem 0;
    font-size: 1.25rem;
}

strong {
    font-weight: 500;
}

.c-price {
    font-weight: 500;
    font-size: 5rem;
}

.c-section {
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    /* min-height: 400px; */
    text-align: left;
}

.c-section--dark {
    background-color: var(--primary-color);
    color: #FFF;
}

.c-section--light {
    background-color: #FFF;
}

.c-section--center {
    text-align: center;
}

.c-section__title {
    font-size: 1.75rem;
}

@media screen and (min-width: 768px) {
    .c-section__title {
        font-size: 2.5rem;
    }
}

.c-section__subtitle {
    font-size: 1.5rem;
    font-weight: 400;
}

.c-section__center-content {
    max-width: 600px;
    margin: 0 auto;
}

.c-section__restrict-content {
    max-width: 800px;
}

.c-title-underline {
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
}

.c-list {
    margin: 0;
    padding-left: 1rem;
    font-size: 1.25rem;
    list-style: none;
}

@media screen and (min-width: 768px) {
    .c-list--2-col {
        columns: 2;
    }
}

.c-list__item {
    margin-bottom: 1.5rem;
    display: flex;
    /* align-items: center; */
}

.c-list__item-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

.c-list-started li {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
}

@media screen and (min-width: 768px) {
    .c-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 2rem;
    }
}

.c-image {
    max-width: 100%;
}

.c-image--light-border {
    border: 4px solid #FFF;
}

.c-header {
    text-align: center;
    padding: 0.5rem 0;
    background-color: #FFF;
    /* box-shadow: 0 0 4px rgba(0,0,0,0.14),0 4px 8px rgba(0,0,0,0.28); */
}

.c-logo {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    font-size: 1.5rem;
}

.c-logo:hover,
.c-logo:focus {
    text-decoration: underline;
}

.c-main {
    display: block;
}

.c-button {
    display: inline-block;
    border: none;
    background-color: var(--quaternary-color);
    color: #FFF;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    padding: 1rem;
    cursor: pointer;
    transition: background-color 300ms;
    text-decoration: none;
    border-radius: 6px;
}

.c-button:hover,
.c-button:focus,
.c-button.is-active {
    background-color: var(--quaternary-color-darK);
}

.c-footer {
    padding: 1rem;
    background-color: var(--secondary-color);
    margin-top: auto;
}

.c-footer__link {
    color: var(--primary-color-dark);
    text-decoration: underline;
}

.c-footer__link:hover,
.c-footer__link:focus {
    text-decoration: underline;
    color: #000;
}

.l-grid {
    max-width: 74rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.custom-shape-divider-top-1643985719 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1643985719 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 30px;
}

.custom-shape-divider-top-1643985719 .shape-fill {
    fill: #FFFFFF;
}


.c-form__row {
    margin:  0 0 1.5rem 0;
}

.c-form__row--first {
    display: none;
}

.c-form__label {
    display: block;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
}

.c-form__input {
    display: block;
    width: 100%;
    max-width: 500px;
    padding: 1rem;
    font-size: inherit;
}