:root {
    font-size: 16px;
    --sk-green: #279338;
    --sk-green-2: #65B044;
    --sk-text-black: #233b2d;
    --sk-gray: #E6EAE4;
    /* from bootstrap .btn-secodary --bs-btn-disabled */
    --sk-button-disabled-color: #fff;
    --sk-button-disabled-bg: #6C757C;
    --sk-button-disabled-opacity: 0.65;
    --sk-header-height: 144px;
    /* this is not used by the footer, it's just the actual height atm */
    --sk-footer-height: 354px;
    --sk-disabled-bg-color: lightgray;
    --sk-disabled-color: gray;
}

body * {
    font-family: "Poppins";
}

section {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    z-index: 0;
}

.sk-section-gray {
    background-color: var(--sk-gray);
}

.sk-section-content {
    width: 100%;
    padding: 0 10px;
}

.sk-section-content-narrow {
    max-width: 50rem;
    margin: auto;
}

.sk-section-content p {
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
    color: var(--sk-text-black);
}

nav a,
:is(.sk-button, input.wpcf7-submit) {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 3px;
    text-align: center;
}

nav a {
    font-size: 15px;
    padding: 0 10px;
    height: 40px;
    line-height: 40px;
    color: var(--sk-text-black);
}

:is(.sk-button, input.wpcf7-submit) {
    text-decoration: none;
    display: inline-block;
    color: white;
    background-color: var(--sk-green);
    font-size: 14px;
    border-radius: 4px;
    border-width: 0;
    padding: 0 30px;
    height: fit-content;
    text-transform: uppercase;
    padding: 13px 30px;
    line-height: 1;
}

form:invalid input.sk-button[type="submit"],
:is(.sk-button, input.wpcf7-submit):disabled {
    background-color: var(--sk-button-disabled-bg);
    color: var(--sk-button-disabled-color) !important;
}

.sk-button.sk-button-large {
    font-size: 17px;
}

.sk-icon-disabled {
    color: var(--bs-secondary-color) !important;
}

form:invalid input.sk-button[type="submit"],
:is(.sk-button, input.wpcf7-submit):disabled,
.sk-icon-disabled {
    cursor: auto;
    opacity: var(--sk-button-disabled-opacity) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    word-break: break-word;
    font-weight: 500;
}

h1 {
    font-size: 80px;
    font-weight: 500;
    margin-bottom: 10px;
}

h2 {
    font-size: 50px;
    margin-bottom: 70px;
    color: var(--sk-green);
}

h3 {
    font-size: 44px;
    font-weight: 300;
    margin-bottom: 35px;
    color: var(--sk-green);
}

h4 {
    font-size: 30px;
    font-weight: 300;
    line-height: 45px;
    margin-bottom: 20px;
    color: var(--sk-green);
}

h5 {
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--sk-green);
}

@media (min-width: 1200px) {
    .sk-section-content {
        width: 1183px;
    }
}

@media (max-width: 1000px) {
    :root {
        font-size: 12px;
    }

    section {
        padding: 40px 0;
    }

    .sk-section-content {
        flex-direction: column;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 29px;
    }
}