:root {
    --checkbox-captcha-border-radius: 11px;
}
@media (max-width: 480px) {
    .hero-block__image {
        max-height: 580px;
        min-height: auto;
    }
}
.hero-block__image {
    width: 100%;
    height: auto;
    object-fit: unset;
    display: block;
}

.actions {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
.action__link {
    margin-top: 37px;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.09px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.actions__item + .actions__item {
    border: unset !important;
}
.action {
    gap: 0;
}
@media(max-width: 1024px) {
    .actions {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 70px;
    }
    .actions--home .actions__item + .actions__item {
        border: none;
    }
}
@media(max-width: 768px) {
    .actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 17px;
    }
    .action {
        flex-direction: column;
        gap: 0;
    }
    .actions__item {
        padding: 0;
    }
    .action__link {
        margin-top: 37px;
    }
    .action svg {
        width: 45px;
        height: 45px;
    }
    .action__icon {
        width: 80px;
        height: 80px;

    }
}
.notice-message {
    border: 3px solid #00664A;
    font-weight: 500;
    margin-top: 38px;
    text-align: center;
    padding: 25px 0px;
    margin-bottom: -24px;
}
.notice-message p {
    position: relative;
    font-size: 20px;
    padding-left: 104px;
    padding-right: 25px;
}
.notice-message p svg {
    position: absolute;
    margin-left: -59px;
}
.notice-message span {
    color: #00664A;
    font-size: 24px;
    text-wrap: nowrap;
}
@media(max-width: 1600px) {
    .notice-message {
        margin-left: 10px;
        margin-right: 10px;
    }
}
@media(max-width: 1300px) {
    .notice-message p {
        text-align: left;
    }
    .notice-message p svg {
        margin-top: 14px;
    }
}
@media(max-width: 767px) {
    .notice-message p {
        padding: 0 10px;
        text-align: center;
    }
    .notice-message p svg {
        margin: 0 auto 10px;
        display: block;
        position: relative;
    }
}
.smart-captcha-container.error_captcha iframe {
    border-radius: var(--checkbox-captcha-border-radius, 11px);
    /*box-sizing: initial;*/
    animation: animate_pulse2 1s 3;
}

@keyframes animate_pulse2 {
	0% {
		box-shadow: 0 0 0 0 rgb(228,25,49,0);
	}
	70% {
		box-shadow: 0 0 0 1px rgb(228,25,49,0.8);
	}
	100% {
		box-shadow: 0 0 0 0 rgb(228,25,49,0);
	}
}


.selection-banner {
    background-image: url('/bitrix/templates/tverstroimash/images/selection-banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color:#1C2023;
    padding: 114px 0;
}
.selection-banner__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.selection-banner__text {
    text-align: center;
    font-weight:300;
    font-size:30px;
    max-width: 1107px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.1;
}
.selection-banner .marquiz__button {
    transition: background-color 0.3s, color 0.3s;
        font-size: 18px;
        font-wieght: 400;

}

.selection-banner .marquiz__button:hover {
    background-color:rgba(254, 0, 0, 0.7);
    opacity: 1;
    color: #fff;
}

@media screen and (max-width: 550px) {
    .selection-banner {
        padding: 115px 0 0 0;
        background-size:contain;
        background-position: top;
    }
.selection-banner__container {
    background-color:#1C2023;
    padding-top: 25px;
    padding-bottom: 25px;
}
.selection-banner__text  {
    max-width: 310px;
    font-size: 24px;
}
}

.breadcrumb__list{
    justify-content: center;
}