.coes {
    display: flex;
    flex-flow: column;
}
.coes > h1 {
    max-width: 700px;
    line-height: 1.1;
    text-align: center;
    margin: 0 auto;
}
.coes h2 {
    margin-top: 50px;
}
.coes > p {
    max-width: 600px;
    margin: 30px auto;
    text-align: center;
}
.coes .hs-richtext {
    max-width: 500px;
    margin: 0 auto;
}
.coes .hs-richtext p {
    margin-bottom: 0px;
}
.coes .hs-richtext strong {
    margin-bottom: 15px;
    display: block;
}
.coes .questions {
    display: flex;
    gap: 30px;
    margin-top: 15px;
    margin-bottom: 50px;
}
.coes .questions > div {
    width: 10px;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ebebeb;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
}
.coes form {
    background-color: #f7f7f7;
    padding: 20px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}
.coes form .hs_email {
    display: flex;
    flex-flow: column;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.coes form .hs_email label {
    order: 2;
}
.coes form .hs_email legend {
    order: 1;
    font-weight: bold;
    margin-bottom: 15px;
}
.coes form .hs_email .input{
    order: 3;
    width: 100%;
    margin-top: 15px;
    margin-bottom:: 50px;
}
.coes form .hs_email .input input[type="email"] {
    border: 1px solid var(--color-background-medium);
}
.coes form .hs-submit {
    max-width: 500px;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 40px;
}
.coes form input[type="submit"] {
    background-color: var(--color-primary);
    cursor: pointer;
}
.coes form input[type="submit"]:hover {
    color: var(--color-primary);
    background-color: transparent;
    border: 1px solid  var(--color-primary);
}
.coes .coes__legends {
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin-bottom: 40px;
    background-color: #f7f7f7;
    padding: 40px;
    margin-top: 40px;
}
.coes .coes__legends h5 {
    text-align: center;
    font-weight: bold;
}
.coes .coes__legend {
    display: flex;
    flex-flow: row;
    max-width: 780px;
    gap: 20px;
    margin: 0 auto;
}
.coes__legend--description {
    font-size: 16px;
}
.coes__legend--description strong {
    font-weight: bold;
}
.coes__legend--number {
    background-color: #eb6c15;
    width: 10px;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    color: #ffffff;
}
.questions .active {
    background-color: #eb6c15 !important;
    color: #fff !important;
}
@media screen and (max-width: 767px) {
    .coes .coes__legend {
        flex-flow: column;
        align-items: center;
    }
    .coes__legend--description {
        text-align: center;
    }
}