:root {
    --main-gradient: linear-gradient(180deg, #BB0019 0%, #FF5C00 96.35%);
}


.contacts-btn {
    display: block;
    background: var(--main-gradient);
    border-radius: 20px;
    color: #fff;
    text-align: center;
    padding: 14px 10px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: 295px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}

.contacts-btn:hover {
    background: #BB0019;
}

.my-auto {
    margin-block: auto;
}

.section_heading {
    text-align: center;
    font-weight: 600;
    font-size: calc((100vw - 360px)/(1200 - 360) * (40 - 30) + 30px);
}

.contacts-btn:not(:hover)::after {
    background: #fff;
    content: "";
    display: block;
    height: 155px;
    left: -75px;
    opacity: .4;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: 550ms cubic-bezier(.19, 1, .22, 1);
    width: 50px;
    z-index: 10;
    animation: 3s infinite blink
}

@keyframes blink {
    80% {
        left: -75px
    }

    100% {
        left: 120%
    }
}


iframe {
    width: 100%;
    border: 0;
    margin-bottom: 30px;
}

.text_gradient {
    background: var(--main-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.bg_wheel-track {
    background-image: url(../images/bg/bgWheelTrack.png);
    background-size: 70% 80%;
    background-repeat: no-repeat;
}

@media (max-width: 992px) {
    .desktop {
        display: none !important;
    }

    .bg_wheel-track {
        background-size: 80% 15%;
        background-position: 0 90% ;
    }
}

@media (min-width: 993px) {
    .mobile {
        display: none !important;
    }
}
