.contact-form--container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (min-width: 992px) {
    .contact-form--container {
        flex-direction: row;
        gap: clamp(24px, 4.16vw, 60px);
    }
}

.contact-form--header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

@media screen and (min-width: 992px) {
    .contact-form--header {
        text-align: left;
        align-items: flex-start;
    }
}

.contact-form--aside {
    width: 100%;
}

@media screen and (min-width: 992px) {
    .contact-form--aside {
        max-width: 432px;
    }
}

.contact-form--form .gform_wrapper {
    display: flex;
    flex-direction: column-reverse;
}

.contact-form--form .ginput_container_consent {
    display: flex;
    gap: 12px;
}

.contact-form--form input[type=submit] {
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    font-style: normal;
    line-height: 26px;
    color: var(--white);
    border-radius: 100px;
    padding: 12px 16px;
    background: var(--blue);
    transition: all 0.4s ease;
    border: 1px solid var(--blue);
    display: flex;
    justify-content: center;
    width: 100%;
}

@media screen and (min-width: 992px) {
    .contact-form--form input[type=submit] {
        width: -moz-max-content;
        width: max-content;
    }
}

.contact-form--form input[type=submit]:hover {
    background: #162140;
    border-color: #162140;
}

.contact-form--form .ginput_container_select {
    position: relative;
}

.contact-form--form .ginput_container_select::after {
    content: "";
    pointer-events: none;
    width: 18px;
    height: 18px;
    background: var(--blue);
    -webkit-mask: url("../images/chevron-down.svg") no-repeat center;
    mask: url("../images/chevron-down.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    right: 12px;
    top: calc(50% - 9px);
}

.contact-form--form select {
    width: 100%;
    border: 1px solid var(--blue);
    border-radius: 4px;
    padding: 8px 12px;
    color: rgba(29, 49, 90, 0.6);
    font-style: italic;
}

@media screen and (min-width: 992px) {
    .contact-form--form .gform-footer {
        display: flex;
        justify-content: flex-end;
    }
}

.contact-form--tile {
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form--tile p+p {
    margin-top: 12px;
}

.contact-form--tile:not(:last-child) {
    margin-bottom: 16px;
}

@media screen and (min-width: 992px) {
    .contact-form--tile:not(:last-child) {
        margin-bottom: 32px;
    }
}

.contact-form--tile.yellow {
    background: var(--creme);
}

.contact-form--tile.blue {
    background: var(--light-blue);
}

.contact-form--tile.light {
    border: 0.5px solid var(--blue);
}

.contact-form--tile ul {
    list-style: disc;
    padding-left: 22px;
}

.contact-form--tile li {
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.contact-form--tile .buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form--tile .buttons a {
    width: 100%;
}

.contact-form--tile .lk {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--blue);
    transition: all 0.4s ease;
}

.contact-form--tile .lk::before {
    content: "";
    width: 18px;
    height: 18px;
    background: var(--blue);
    -webkit-mask: url("../images/lk.svg") no-repeat center;
    mask: url("../images/lk.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    transition: all 0.4s ease;
}

.contact-form--tile .lk:hover {
    background: var(--blue);
}

.contact-form--tile .lk:hover::before {
    background: white;
}

.contact-form--tile a:not(.btn) {
    text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */