﻿h1, h2, h3, h5 {
    font-family: "Roboto-Bold", "Helvetica", "Arial", sans-serif;
}

p, input, span {
    font-family: 'Roboto-Regular', "Helvetica", "Arial", sans-serif;
}

h1, h2, h3, h5, p {
    margin: 0;
}

h1, h2, h3 {
    color: #12452E;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 48px;
    line-height: 1.4;
    margin-bottom: 20px;
}

h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

h3 {
    font-size: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.hidden-field {
    position: absolute;
    left: -1000000px;
    color: transparent;
}

    .hidden-field input {
        color: transparent;
        border: none !important;
    }

#green-bg-section {
    padding: 64px 0 156px;
    background: linear-gradient(1deg, rgba(76, 141, 112, 0.25) -30.54%, #FFF 111.59%);
}

.one-column-row {
    margin-bottom: 24px;
}

.two-columns-row {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

    .two-columns-row > div {
        flex: 1;
    }

.icon-text-row {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
}

#hero-section {
    text-align: center;
    margin: 0 auto 72px;
    width: 70%;
}

    #hero-section p {
        color: #000;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.56;
    }

#submission-result-panel {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.67;
    color: #12452E;
    margin-top: 20px;
}

#forms-section {
    display: flex;
    flex-direction: row;
    gap: 72px;
    max-width: 1251px;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}

#form-card {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    padding: 32px;
    flex: 5;
}

form span {
    display: block;
    color: #212121;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 6px;
}

form input, 
form select {
    width: 100%;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    font-size: 18px;
}

form select {
    appearance: none; 
    -webkit-appearance: none; 
    -moz-appearance: none; 
}

form .headline {
    color: #12452E;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0px;
}

form .form-icon {
    height: 116px;
    width: 116px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(16px + 0.5em); 
    pointer-events: none; 
    transform: translateY(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid black; 
}

.has-error .select-wrapper::after {
    top: calc(50% - 10px);
}

.form-group {
    margin-bottom: 0px;
}

    .form-group span {
        display: block;
    }

.form-icon {
    border-radius: 8px;
    background: #0B5D5D;
    padding: 16px 8px;
}

input[type="checkbox"] {
    display: none;
}

.checkbox-option-section {
    display: flex;
    gap: 24px;
}

.checkbox-label {
    position: relative;
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0px;
}

    .checkbox-label:hover {
        cursor: pointer;
    }

.checkbox-circle {
    display: inline-block;
    border: 1px solid #E5E5E5;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin: 0;
    position: relative;
}

    input[type="checkbox"]:checked + .checkbox-circle {
        border-color: #0864AE;
    }

        input[type="checkbox"]:checked + .checkbox-circle::after {
            content: '';
            background: #0864AE;
            border-radius: 50%;
            width: 12px;
            height: 12px;
            position: absolute;
            left: 3px;
            top: 3px;
        }

form button {
    font-size: 18px;
}

    form button img {
        margin-right: 4px;
    }

.recaptcha div {
    margin: 0 auto;
}

.btn-submit {
    border-radius: 8px;
    background: #0864AE;
    color: #FFFFFF;
    padding: 8px 16px;
    margin-top: 28px;
}

.form-group.has-error input[type=text],
.form-group.has-error select {
    border: solid 2px #e80c4d;
}

.form-group.has-error .error {
    font-size: 14px;
}

#assessors-feature-section {
    gap: 112px;
    margin: 132px 0 184px;
}

    #assessors-feature-section > div {
        flex: 1;
    }

    #assessors-feature-section ul {
        list-style: none;
        padding-left: 48px;
        margin: 0;
    }

    #assessors-feature-section li {
        text-indent: -16px;
        margin-bottom: 20px;
        font-size: 20px;
        line-height: 1.6;
        font-weight: 500;
    }

        #assessors-feature-section li:last-of-type {
            margin-bottom: 0px;
        }

        #assessors-feature-section li:before {
            font-family: 'Material Icons';
            content: '\e061';
            color: #12452E;
            font-size: 8px;
            margin-right: 8px;
            vertical-align: middle;
        }

        #assessors-feature-section li span {
            vertical-align: middle;
        }

#customers-section {
    max-width: 70%;
    margin: 0 auto 160px;
}

    #customers-section .non-tablet > .d-flex {
        max-height: 56px;
        justify-content: space-between;    
    }

        #customers-section .non-tablet > .d-flex:not(:last-of-type) {
            margin-bottom: 40px;
        }

        #customers-section .non-tablet img {
            max-width: 18%;
        }

    #customers-section .tablet > .d-flex {
        max-height: 32px;
        justify-content: space-around;
        margin-bottom: 24px;
    }

    #customers-section .tablet img {
        max-width: 25%;
    }

#testimonials-section {
    margin: 0 auto 220px;
    width: 85%;
}

    #testimonials-section > .d-flex {
        gap: 28px;
    }

.testimonial-card {
    flex: 1;
    border-radius: 10px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
    padding: 28px 28px 48px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .testimonial-card p {
        font-size: 16px;
        line-height: 1.5;
    }

    .testimonial-card .company {
        font-weight: bold;
        margin: 24px auto 12px;
    }

    .testimonial-card .personnel {
        font-style: italic;
    }

    .testimonial-card .company, 
    .testimonial-card .personnel {
        text-align: center;
    }

.testimonial-card img.logo {
    display: block;
    margin: 0 auto 24px;
    width: 76px;
}

.testimonial-card .quotation-mark {
    position: absolute;
    top: 28px;
    left: 28px;
}

@media (max-width: 1199px) {
    #customers-section {
        width: 100%;
        max-width: 100%;
    }

    #testimonials-section {
        width: 100%;
    }

}

@media (max-width: 991px) {
    
}

@media (max-width: 767px) {
    #assessors-feature-section {
        flex-direction: column;
        gap: 32px;
        margin: 48px 0 102px;
    }

        #assessors-feature-section li {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 16px;
        }

            #assessors-feature-section li:last-of-type {
                margin-bottom: 0px;
            }

    #testimonials-section {
        width: 100%;
        margin-bottom: 52px;
    }

        #testimonials-section br {
            display: none;
        }

        #testimonials-section h3 {
            margin-bottom: 24px;
        }

    .testimonial-card:not(:first-of-type) {
        display: none;
    }

    .testimonial-card img.logo {
        margin-bottom: 16px;
    }

    .testimonial-card .company {
        margin: 0;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    h3 {
        font-size: 28px;
        line-height: 1.3
    }

    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    #green-bg-section {
        padding-top: 40px;
        padding-bottom: 36px;
    }

    #hero-section {
        width: 100%;
        margin: 0 0 40px;
    }

        #hero-section p {
            font-size: 16px;
            line-height: 1.5;
        }

    #forms-section {
        flex-direction: column;
        gap: 40px;
    }

    #form-card {
        border-radius: 0;
        margin: 0 -24px;
        padding: 24px 24px 44px 24px;
    }

    form .headline {
        font-size: 28px;
        margin: 0;
    }

    form .form-icon {
        width: 66px;
        height: 66px;
    }

    .two-columns-row {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }

    .checkbox-option-section {
        flex-direction: column;
        gap: 16px;
    }

    .recaptcha-container {
        margin-top: 48px;
    }

    .btn-submit {
        width: 100%;
        margin-top: 44px;
    }

    #customers-section {
        max-width: 100%;
        margin-bottom: 104px;
    }

        #customers-section h3 {
            margin-bottom: 24px;
        }

}
