header + main.without-banner {
    margin-top: 100px;
}

.support-header {
    background-color: #f4f4f4;
    border-radius: 20px;
    padding: 15% 10% 15% 10%;
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.support-header h1 {
    font-weight: 600;
    width: 50%;
    font-size: calc((100vw - 350px) / (1280 - 350) * (40 - 18) + 18px);
}

.support-header img {
    right: 20px;
    position: absolute;
    width: 38%;
    animation: updown 1s infinite alternate ease-in-out;
}

.info-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.info-block {
    border: 1px solid transparent;
    border-radius: 10px;
    color: #fff;
    padding: 60px 20px 60px 20px;
    transition: all 0.2s ease;
    position: relative;
    background-color: transparent;
    text-decoration: none;
}

.info-block::after {
    content: "";
    display: block;
    transition: opacity 0.2s ease;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    border: 1px solid transparent;
    opacity: 1;
    border-radius: 10px;
    z-index: -1;
    background: linear-gradient(
        0deg,
        #6e34e2 0%,
        #9a67d5 99.99%,
        rgba(255, 255, 255, 0) 100%
    );
}

.info-block:hover::after {
    opacity: 0;
}

.info-block:hover {
    color: #000;
    border: 1px solid #a9a9a9;
}

.info-block h3 {
    font-weight: 600;
    margin-bottom: 40px;
}

.support-info {
    margin-bottom: 70px;
}

section h2 {
    margin-bottom: 40px;
    font-size: calc((100vw - 500px) / (1280 - 500) * (30 - 20) + 20px);
}

.support-faq {
    background-color: #f4f4f4;
    padding-block: 42px;
    margin-bottom: 70px;
}

.faq {
    margin-top: 50px;
    margin-bottom: 50px;
    border: 1px solid black;
    padding: 20px;
    border-radius: 20px;
}

#faq .accordion-item {
    border: 0;
    background-color: transparent;
}

#faq .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

#faq .accordion-button:not(.collapsed) {
    color: #212529;
    background-color: transparent;
    box-shadow: none;
}

#faq .accordion-button {
    font-weight: 600;
    font-size: 1.5rem;
    background-color: transparent;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.support-contacts-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 50%;
}

.form-control {
    height: 3rem;
}

.support-contacts {
    margin-bottom: 170px;
}

.info-block h3 {
    word-break: break-all;
    font-size: calc((100vw - 500px) / (1280 - 500) * (22 - 16) + 16px);
}

.policy {
    display: flex;
    gap: 6px;
    align-items: start;
    margin-block: 18px;
}

.policy-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    display: flex;
    position: relative;
    align-content: center;
    justify-content: center;
    border: 2px solid #dddddd;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 4px;
}

.policy-checkbox-error {
    border: 2px solid #ff0000;
    animation: shake 0.7s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.policy-checkbox:checked {
    border: 0;
}

.policy-checkbox:checked::before {
    opacity: 1;
}

.policy-checkbox::before {
    content: "";
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background: url("../../images/checked.svg") no-repeat center, #49c7c2;
}

.policy-text {
    font-size: 12px;
    color: #6c6c6c;
    font-weight: 400;
    margin: 0;
	width: 90%;
}

@media (max-width: 1199px) {
    .info-block {
        padding: 40px 20px 40px 20px;
    }
}

@media (max-width: 991px) {
    .info-blocks {
        grid-template-columns: 1fr 1fr;
    }
    .support-header img {
        position: static;
    }
    header + main.without-banner {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .support-contacts-form {
        width: 100%;
    }
    .green-button {
        width: 100% !important;
    }
    .support-header {
        padding: 15% 10% 15% 10%;
    }
}

@media (max-width: 500px) {
    .info-blocks {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 350px) {
    .support-header {
        flex-direction: column;
        gap: 54px;
    }
    .support-header h1,
    .support-header img {
        width: 100%;
    }
}

@keyframes shake {
    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }
    30%,
    50%,
    70% {
        transform: translate3d(-2px, 0, 0);
    }
    40%,
    60% {
        transform: translate3d(2px, 0, 0);
    }
}
