@font-face {
    font-family: 'Gotham Pro';
    src: url(../css/fonts/GothamPro-Black.woff) format("woff");
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url(../css/fonts/GothamPro.woff) format("woff");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url(../css/fonts/GothamPro-Medium.woff) format("woff");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'e-UkraineHead';
    src: url(../css/fonts/e-UkraineHead-Bold.woff) format("woff");
    font-weight: 700;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background-color: rgb(92, 92, 92);
}

::-webkit-scrollbar-thumb {
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
}

html {
    scroll-behavior: smooth;
}

li {
    list-style: none;
}

button {
    cursor: pointer;
    color: inherit;
    background-color: transparent;
    border: none;
    font-family: var(--font-family);
}

a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

input,
textarea {
    font-family: var(--font-family);
}

.no-scroll {
    overflow: hidden;
}

body {
    background-color: rgba(10, 10, 17, 0.986);
    font-family: var(--font-family);
    overflow-x: hidden;
}

:root {
    --primary: #FFFBEF;
    --font-family: 'Gotham Pro', sans-serif;
    --yellow: #fed500;
    --grey: rgba(255, 251, 239, .4);
    --gradient: linear-gradient(90deg, #EC2B1D 0%, #F17D36 100%);
    --gradient-rules: linear-gradient(90deg, #ecc91d 0%, #f1a336 100%);
    --gradient-about: linear-gradient(90deg, #23be00 0%, #1d9e00 100%);
    --main-dark-color: #3536435b;
    --main-darklight-color: #48495b5b;
    --main-ui-opacity: 0.05;
}

header {
    background: rgba(0, 0, 0, 0.372);
    position: fixed;
    padding: 24px 0;
    box-shadow: 0;
    top: 0;
    left: 0;
    transition: 0.2s ease;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.5s ease;
    backdrop-filter: blur(0);
    animation: fadeInDown 1.5s;
}

header.scroll {
    background: rgba(0, 0, 0, 0.735);
    backdrop-filter: blur(10px);
}

.header_logo {
    width: 100px;
}

.header_logo img {
    width: 100%;
}

.header__user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
    -webkit-user-drag: none;
}

.header__user-nickname {
    color: #b8b6b4;
    font-size: 11px;
    transition: 0.2s all ease;
}

.header__user-nickname:hover {
    color: var(--primary);
}

.header__user-info:hover .header__user-nickname {
    color: var(--primary);
}

.header__user-avatar {
    width: 32px;
    height: 32px;
    padding: 2px;
    background: -webkit-linear-gradient(top, #66812e 5%, #59702b 95%);
    background: linear-gradient(to bottom, #66812e 5%, #59702b 95%);
    user-select: none;
    -webkit-user-drag: none;
}

.header__left-navigation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 75px;
}

.header__container-navigation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 3;
}

.header_menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.link__header {
    color: gray;
    transition: 0.2s;
    display: flex;
    align-items: center;
    text-align: center;
    vertical-align: middle;
    width: auto;
}

.link__header:hover {
    color: var(--primary);
    transition: 0.2s;
}

#link__header:hover .icon_home path {
    fill: var(--primary);
}

#link__header {
    color: gray;
    transition: 0.2s;
    display: flex;
    align-items: center;
    text-align: center;
    vertical-align: middle;
}

#link__header:hover {
    color: var(--primary);
    transition: 0.2s;
}

.icon_home {
    width: 26px;
    vertical-align: middle;
    margin-right: 5px;
    transition: 0.3s;
}

.icon_home path {
    fill: gray;
    transition: 0.3s;
}

.icon_home:hover path {
    fill: var(--primary);
}

.icon__btn path {
    fill: black;
}

.ico .select {
    position: relative;
    cursor: default;
}

.active__link {
    color: var(--primary);
}

.active__icon path {
    fill: var(--primary);
}

.container__language {
    position: relative;
    display: inline-block;
}

.container__language-selected a {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.languages__container-dropMenu {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px;
    border-radius: 6px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.block__language {
    display: flex;
    align-items: center;
    padding: 12px;
    color: rgb(188, 188, 188);
    border-radius: 5px;
    border: 1px solid rgba(255, 251, 239, .15);
    background: rgba(255, 251, 239, .05);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    gap: 10px;
    transition: 0.2s;
}

.block__language:hover {
    color: var(--primary);
    transition: 0.2s;
}

.languages__container-dropMenu.active {
    display: flex;
}

.menu-toggle {
    color: var(--primary);
    font-size: 24px;
    transition: 0.2s all ease;
}

.menu-toggle:hover {
    color: #bababa;
}

.mobile__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 15, 22, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    overflow: hidden;
}

.mobile__menu.active {
    transform: translateX(0);
}

.mobile__menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile__logo {
    display: flex;
    align-items: center;
}

.mobile__logo img {
    height: 32px;
    width: auto;
}

.btn__close-mobile-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn__close-mobile-menu:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile__navigation {
    flex: 1;
    padding: 40px 24px;
}

.navigation__mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu__item {
    margin-bottom: 8px;
}

.menu__link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    color: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.menu__link:hover::before {
    left: 100%;
}

.menu__link:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(8px);
}

.menu__link.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-left: 4px solid #fff;
}

.menu__icon {
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.menu__text {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.mobile__menu-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social__links {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.social__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social__link:hover {
    color: white;
}

.contact__info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

.contact__info p {
    margin: 4px 0;
}

.mobile__menu.active .menu__item {
    animation: slideInLeft 0.4s ease forwards;
}

.mobile__menu.active .menu__item:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile__menu.active .menu__item:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile__menu.active .menu__item:nth-child(3) {
    animation-delay: 0.3s;
}

.mobile__menu.active .menu__item:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-height: 600px) {
    .mobile__navigation {
        padding: 20px 24px;
    }

    .menu__link {
        padding: 12px 20px;
    }

    .menu__text {
        font-size: 16px;
    }
}

.main__block {
    display: flex;
    flex-direction: column;
    color: var(--primary);
    margin-left: 100px;
    animation: fadeInLeft 1.5s;
    gap: 20px;
}

.title__main {
    font-size: 48px;
    font-weight: 400;
}

.nameCompany__title-main {
    font-size: 56px;
    font-weight: 900;
}

footer {
    position: relative;
    background-image: url(../images/main__footer.png);
    background-position: center;
    background-size: cover;
    padding: 36px 0;
    color: var(--primary);
    margin-top: 100px;
    overflow: hidden;
    z-index: 0;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.817);
    z-index: 1;
}

footer * {
    position: relative;
    z-index: 2;
}

.footer__logo {
    width: 135px;
}

.footer__flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.colums__footer {
    display: flex;
}

.column__footer {
    display: flex;
    flex-direction: column;
    margin: 50px;
}

.footer__title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.footer__links {
    display: grid;
    gap: 10px;
}

.footer__link {
    font-size: 18px;
    color: gray;
    position: relative;
    overflow: hidden;
    transition: 0.2s;
}

.footer__link:hover {
    color: var(--primary);
    transition: 0.2s;
}

.footer__link:hover:before {
    -webkit-transform: scaleX(1) translateZ(0);
    -moz-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0);
}

.content__bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 220px;
    color: gray;
    margin-bottom: 40px;
}

.method__buy-container {
    margin-right: 176px;
}

.footer__socials {
    display: flex;
    margin-left: 110px;
    gap: 12px;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 50px;
    width: 300px;
    color: gray;
    margin-top: 50px;
}

.footer__social {
    padding: 10px;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    background: rgba(255, 251, 239, .03);
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
    font-size: 12px;
    color: var(--grey);
    font-weight: 800;
    line-height: 120%;
    width: 100px;
}

.footer__social:hover {
    background: rgba(255, 255, 255, 0.185);
    color: white;
}

.main__container-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 75px;
}

.title__container-gallery {
    color: var(--primary);
    text-align: center;
    font-weight: 700;
    font-size: 56px;
}

.main__section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -10;
    height: 100vh;
    width: 100%;
}

.section__index {
    background-image: url(../images/background__FUA_snow.jpeg);
}

.section__about {
    background-image: url(../images/background-about.png)
}

.section__partner-EFGO {
    background-image: url(../images/partners/background-EFGO.png);
}

.section__partner-FLUA {
    background-image: url(../images/partners/FLUA.png);
}

.section__services {
    background-image: url(../images/background-start.png);
}

.section__protection {
    background-image: url(../images/supportCenter/guide1.jpeg);
}

.main__container-content-titles--partners {
    text-align: center;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 22px;
    font-weight: 700;
    border-bottom: 2px dashed rgb(62, 62, 62);
    padding: 20px;
}

.container__images-partner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
    gap: 30px;
}

.img__partner {
    width: 410px;
    border-radius: 10px;
    transition: 0.2s;
}

.img__partner:hover {
    transform: scale(1.05);
    transition: 0.2s;
}

.main__about-container {
    color: var(--primary);
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
}

.main__services-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.title__avtopark {
    color: var(--primary);
    text-align: center;
    font-weight: 700;
    font-size: 42px;
    margin-top: 12%;
}

.container__avtopark {
    display: flex;
    align-items: center;
    gap: 150px;
    margin-top: 56px;
}

.title__container-avtopark {
    color: var(--primary);
    font-weight: 700;
    font-size: 24px;
}

.block__detal-instruck {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.title__block__detal-instruck {
    color: var(--primary);
    font-size: 24px;
    text-align: center;
    font-weight: 700;
}

.video__detal-instruck {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn__start-video {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    backdrop-filter: blur(100px);
    background-color: #0000004d;
    width: 80px;
    height: 80px;
    padding: 10px;
    transition: 0.2s all ease;
}

.btn__start-video img {
    width: 56px;
    height: 56px;
}

.btn__start-video:hover {
    transform: scale(1.205);
}

.help__btn-ds {
    padding: .4375rem 1.25rem;
    text-shadow: none;
    font-size: 14px;
    font-weight: 400;
    white-space: normal;
    word-wrap: break-word;
    transition: 0.3s ease-out;
    border-radius: 6px;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .1);
    will-change: opacity, transform;
    -webkit-transition: .3s ease-out;
    color: var(--primary);
    background-color: #eaa226;
    border-color: #eaa226;
    box-shadow: 0 10px 20px -10px rgba(243, 208, 33, 0.59);
}

.help__btn-ds:hover {
    color: var(--primary);
    background-color: #2196f3;
    box-shadow: 0 0 25px #298cd8;
    border-color: #2196f3;
    transform: translateY(-3px);
}

.btn__discord {
    display: flex;
    align-items: center;
    padding: .4375rem 1.25rem;
    text-shadow: none;
    font-size: 14px;
    font-weight: 400;
    white-space: normal;
    word-wrap: break-word;
    transition: 0.3s ease-out;
    touch-action: manipulation;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .1);
    will-change: opacity, transform;
    gap: 5px;
    -webkit-transition: .3s ease-out;
    border: 1px solid #eaa226;
    color: #eaa226;
}

.btn__discord svg path {
    fill: #eaa226;
    transition: 0.3s ease-out;
}

.btn__discord:hover {
    color: var(--primary);
    background-color: #298cd8;
    box-shadow: 0 10px 20px -10px rgba(27, 85, 226, .59);
    border: 1px solid #298cd8;
    box-shadow: 2px 5px 25px #298cd8;
    transform: translateY(-3px);
}

.btn__discord:hover svg path {
    fill: var(--primary);
}

.btn__steam {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: 75px;
    transition: background-color 0.3s ease;
}

.btn__steam i {
    font-size: 24px;
    transition: 0.3s;
}

.btn__steam .steam-text {
    display: flex;
    max-width: 100px;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease;
    opacity: 1;
}

.btn__steam:hover .steam-text {
    max-width: 0;
    opacity: 0;
    margin-left: 0;
}

.btn__steam:hover {
    justify-content: center;
    transform: translateY(0px);
}

.container__clicks {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.title__clicks {
    background: linear-gradient(90deg, #1977fd 30.44%, #ffffff 59.26%, #1977fd 84.27%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200%;
    font-size: 46px;
    font-weight: 700;
    display: block;
    animation: textGradient 3s infinite;
    text-align: center;
    margin-top: 8%;
}

@keyframes textGradient {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 200%;
    }
}

.container__blocks-discord {
    display: flex;
    flex-direction: column;
    border: 1px solid rgb(94, 94, 94);
    padding: 5px;
    margin-top: 20px;
    border-radius: 5px;
    width: 978px;
}

.container__block-discord a {
    display: flex;
    width: calc(97% - 10px);
    height: calc(100% - 14px);
    padding: 20px;
    transition: 0.2s;
}

.container__block-discord a:hover {
    background: rgba(51, 51, 69, 0.986);
}

.span__peoples-discord {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3px;
    color: #ffffff40;
}

.span__peoples-discord:before {
    content: "";
    width: 3px;
    height: 3px;
    position: absolute;
    top: 55%;
    left: -10px;
    transform: translateY(-50%);
    background-color: #ffffff40;
    border-radius: 60%;
}

.name__title-block-clicks {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.logo__server-clicks {
    position: relative;
}

.logo__server-clicks img {
    width: 48px;
    border-radius: 10px;
}

.logo__server-clicks:before {
    content: "";
    width: 18px;
    height: 18px;
    position: absolute;
    left: 100%;
    top: 100%;
    border-radius: 60%;
    overflow: hidden;
    transform: translate(-105%, -99%);
    background-image: url(../images/clicks__images/discord.png);
    background-size: 100%;
}

.title__help {
    font-size: 64px;
    font-weight: 700;
    text-align: center;
    color: var(--primary);
    margin-top: 60px;
}

.container__stats-truckhub {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.title__stats {
    color: var(--primary);
    font-size: 36px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: 400;
}

.block__container-stats--truckhub {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    background: #11151eba;
    padding: 36px;
    gap: 10px;
    border-radius: 6px;
    width: 240px;
    user-select: none;
    -webkit-user-drag: none;
    transition: 0.2s;
}

.block__container-stats--truckhub:hover {
    transform: translateY(-3px);
    color: black;
    background: var(--primary);
    transition: 0.2s;
}

.icon__stats-truckhub {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 12px;
    background: #2196f3;
}

.icon__stats-truckhub svg path {
    fill: var(--primary);
}

.block__container-stats--truckhub:hover .icon__stats-truckhub {
    background: black;
    color: var(--primary);
}

.developers__project-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 50px;
}

.developer__bg-gerb {
    z-index: -1;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    width: 240px;
}

.title__team {
    color: var(--primary);
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.avatar__team {
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

.avatar__team img:first-child {
    display: block;
}

.avatar__team img:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.developer__block {
    width: 314px;
    height: 290px;
    border-radius: 5px;
    padding: 20px;
    border: 2px solid rgba(95, 95, 95, 0.722);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    background: rgba(0, 0, 0, 0.37);
    transition: 0.2s;
}

.developer__block:hover {
    border: 2px solid var(--primary);
    backdrop-filter: blur(10px);
    transition: 0.2s;
}

.developer__avatar {
    border-radius: 50%;
    max-width: 100px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.btn__open-developer-profile {
    background: var(--primary);
    color: black;
    border-radius: 4px;
    padding: 20px;
    width: 100px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
}

.btn__open-developer-profile:hover {
    background: #fffbefbc;
    transition: 0.2s;
}

.animate__title {
    opacity: 0;
    transform: translateY(50px);
    transition: transform 1.5s ease, opacity 1s ease;
    will-change: transform, opacity;
}

.animate__title.animate {
    opacity: 1;
    transform: translateY(0);
}

.container__why {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.why {
    opacity: 0;
    transform: translateX(0);
    transition: all 1.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
    display: flex;
    gap: 30px;
    color: #e0e6ed;
}

.why[data-animate="left"] {
    transform: translateX(-30%);
}

.why[data-animate="right"] {
    transform: translateX(30%);
}

.why.animate {
    opacity: 1;
    transform: translateX(0);
}


.title__why {
    color: var(--primary);
    width: 450px;
    font-weight: 400;
}

.text__why {
    color: #e0e6ed;
    width: 450px;
}

.content__why {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 486px;
}

.why__img {
    width: 556px;
    border-radius: 12px;
    z-index: 9998 !important;
    transition: 0.2s;
}

.why__img:hover {
    transform: scale(1.02);
    transition: 0.2s;
}

.item-why__gerb {
    position: absolute;
    top: 50%;
    left: -210px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
}

.item-why__gerb img {
    user-select: none;
    -webkit-user-drag: none;
    max-width: 20rem;
}

.container__images-why {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.container__images-why img {
    width: 356px;
    transition: 0.3s all ease;
    filter: grayscale(80%) brightness(70%);
}

.container__images-why img:nth-of-type(1) {
    border-top-left-radius: 6px;
}

.container__images-why img:nth-of-type(2) {
    border-top-right-radius: 6px;
}

.container__images-why img:nth-of-type(3) {
    border-bottom-left-radius: 6px;
}

.container__images-why img:nth-of-type(4) {
    border-bottom-right-radius: 6px;
}

.container__images-why img:hover {
    filter: none;
}

.cookie__container {
    position: fixed;
    transition-delay: 0.3s;
    border: 1px solid #413f418f;
    background: #15151D;
    color: #909090;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 24px;
    z-index: 9998;
    margin-left: 20px;
    animation: fadeInUp 1.5s;
    bottom: 28px;
    right: 30px;
}

.container-btns-cookie {
    gap: 10px;
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.btn-cookie {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 96px;
    height: 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    padding: 0 29px;
    font-family: var(--font-family);
    transition: 0.3s all ease;
    border: none;
}

.btn-cookie:hover {
    transform: translateY(-3px);
}

.accept-btn {
    background-color: #eaa226;
    border-color: #eaa226;
    color: var(--primary);
    box-shadow: 0 10px 20px -10px rgba(243, 208, 33, 0.59);
}

.accept-btn:hover {
    box-shadow: none;
    background: #298cd8;
    box-shadow: 0 0 25px #298cd8;
}

.cancel-btn {
    background: rgba(255, 255, 255, .05);
    color: #fffc;
    transition: 0.2s;
}

.cancel-btn:hover {
    background: rgba(255, 255, 255, 0.138);
    color: var(--primary);
    transition: 0.2s;
}

.small__title-top {
    color: var(--primary);
    font-size: 38px;
    font-weight: 400;
}

.big__title-top {
    font-size: 54px;
    font-weight: 600;
    color: #f9cf09;
}

@keyframes topRotate {
    0% {
        rotate: 0deg;
    }

    100% {
        rotate: 360deg;
    }
}

.rate_rating_list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
}

.block__top {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #ffa4064b;
    width: 265px;
    height: 84px;
    background-color: #ffaa0b11;
    border-radius: 10px 10px 0 0;
}

.other__blocks {
    border-radius: 0;
}

.last__other-block {
    border-radius: 0 0 10px 10px;
}

.name {
    font-size: 18px;
    color: var(--primary);
}

.value {
    background-image: linear-gradient(to right, #ffa506, #8f5c03, #ffa506);
    animation: textGradient 3s infinite;
    width: max-content;
    padding-top: 8px;
    display: block;
    font-size: 21px;
    font-weight: 500;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-color: #fffbef;
    background-size: 200%;
    background-position: 0%;
}

.dropMenu-information {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    position: absolute;
    top: 83%;
    left: 700px;
    padding: 20px;
    border-radius: 6px;
    background: #0e1726;
    flex-direction: column;
    z-index: 100;
    gap: 10px;
    color: var(--primary);
}

.dropMenu-information.show {
    display: flex;
    max-height: 500px;
}

.btn__dropMenuInfo {
    transition: 0.2s all ease;
}

.active__dropMenu {
    color: #2196f3;
}

.btn__dropMenuInfo:hover {
    color: #2196f3;
}

.container__rules {
    margin-top: 150px;
    margin-left: 200px;
    margin-right: 200px;
    user-select: none;
    -webkit-user-drag: none;
}

.title__rules {
    color: var(--primary);
    font-weight: 400;
}

.container__span-rules {
    display: flex;
    flex-direction: column;
    color: var(--primary);
}


.text__li-rules {
    color: rgb(107, 107, 107);
}

.text__li-rules {
    list-style: disc;
}

.circle__small {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    padding: 0;
}

.red__circle {
    background: #e7515a;
}

.green__circle {
    background: #00ab55;
}

.container__blocks-apply {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.block-appy {
    border: 1px solid #394068;
    border-radius: 10px;
    background: #191e3a;
    width: 275px;
    padding: 24px;
    color: #bfc9d4;
    width: 276px;
    height: 160px;
}

.content__block-appy {
    margin-top: 14px;
}

.btn__send-email--apply {
    border: 1px solid #298cd8;
    color: #298cd8;
    transition: 0.3s all ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .4375rem 1.25rem;
    text-shadow: none;
    font-size: 14px;
    font-weight: 400;
    white-space: normal;
    word-wrap: break-word;
    border-radius: 6px;
}

.btn__send-email--apply:hover {
    color: var(--primary);
    box-shadow: 0 10px 20px -10px rgba(27, 85, 226, .59);
    transform: translateY(-3px);
    background-color: #298cd8;
}

.main__applyes {
    margin-left: 200px;
    margin-right: 200px;
    margin-top: 200px;
}

.block__text-applyes {
    border: 1px solid rgb(82, 82, 82);
    border-radius: 10px;
    background: #15151D;
    padding: 24px 20px;
    font-weight: 400;
    color: #e0e6ed;
}

.text__400 {
    font-weight: 400;
}

.container__input-apply {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #e0e6ed;
}

.input {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
}

.input__apply {
    color: #e0e6ed;
    padding: 20px 10px;
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, var(--main-ui-opacity));
    border-radius: 3px;
    border: 1px solid transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    transition: 0.2s;
}

.input-error {
    border: 1px solid #e74c3c;
    outline: none;
    transition: border 0.3s ease;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(-2px);
    outline: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.error-message.visible {
    opacity: 1;
    transform: translateY(0);
}


.input__apply:focus {
    border: 1px solid rgba(255, 251, 239, .1)
}

.input__apply:hover {
    background: #2c2c36;
    transition: 0.2s;
}

.popup__recruitment {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.216);
    z-index: 100;
    display: none;
}

.popup__title {
    color: var(--primary);
    font-size: 26px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
}

.popup__content-recruitment {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 540px;
    width: 100%;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .05);
    background: #0f0f16;
    border-radius: 8px;
    color: var(--primary);
}

.btn__close-popup {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s all ease;
    border-radius: 4px;
    outline: none;
    background: rgba(255, 251, 239, .03);
    z-index: 2;
}

.btn__close-popup:hover {
    background: rgba(255, 251, 239, 0.1);
    cursor: pointer;
}

.container__form-sended {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(50px);
    z-index: 9998;
    display: none;
}

.block__form-sended {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 456px;
    padding: 30px;
    border: 1px solid rgb(85, 85, 85);
    background-image: url(../images/54594350346_volvo-night.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 8px;
    color: var(--primary);
    overflow: hidden;
}

.block__form-sended::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.558);
    backdrop-filter: blur(1.8px);
    z-index: 0;
}

.block__form-sended>* {
    position: relative;
    z-index: 1;
}

.back__toIndex-btn {
    margin-top: 20px;
}

.btn__close {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 28px;
    border-radius: 5px;
    background: rgba(255, 251, 239, .03);
    transition: 0.2s all ease;
    margin-top: 15px;
}

.btn__close:hover {
    background: rgba(255, 251, 239, 0.072);
    cursor: pointer;
}

.container__staffTeam-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 200px;
    margin-right: 200px;
}

.container__StaffTeam-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.color__primary-text {
    color: var(--primary);
}

.uptime__block {
    color: white;
    background: #1e1f26;
    padding: 15px;
    border-radius: 10px;
    width: fit-content;
}

.uptime__header,
.uptime__footer {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.uptime__footer {
    margin-top: 10px;
}

.uptime__bar {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
}

.uptime__day {
    width: 8px;
    height: 32px;
    border-radius: 2px;
    background-color: #4caf50;
    border: 1px solid black;
}

.uptime__day.downtime {
    background-color: #f44336;
}

.uptime__day:hover {
    filter: brightness(1.4);
    cursor: pointer;
}

.container__copyright {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgb(100, 100, 100);
    margin-top: 14px;
}

.container__copyright img {
    width: 23px;
    height: 23px;
    border-radius: 50%;
}

.container__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    margin-left: 200px;
    margin-right: 200px;
    margin-top: 75px;
}

.container__join-toOurCompany {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    background: #090b108c;
    margin-top: 50px;
    margin-left: 200px;
    margin-right: 200px;
}

.title__join {
    font-size: 46px;
    font-weight: 900;
    color: var(--primary);
}

.btn__size-join {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    width: 100px;
}

.container__recruitment-main {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
}

.title__recruitment {
    color: var(--primary);
    font-size: 48px;
    font-weight: 700;
}

.modal__instructions-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(3, 11, 23, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.modal__instructions-container.active {
    opacity: 1;
    visibility: visible;
}

.modal__instructions-content {
    padding: 20px;
    border-radius: 10px;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
}

.modal__instructions-container.active .modal__instructions-content {
    transform: translateY(0);
}

.modal__blocks-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.modal__block {
    padding: 45px 45px;
    width: 100%;
    height: 410px;
    position: relative;
    backdrop-filter: blur(5px);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    max-height: 500px;
}

.img__instruction-modal {
    position: absolute;
    width: 100%;
    height: 45%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 5;
    padding: 0;
    user-select: none;
    -webkit-user-drag: none;
}

.background__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: rgba(0, 0, 0, 0.57);
    z-index: 10;
}

.logo__modal {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgb(40, 40, 40);
    background-color: #0000008c;
    backdrop-filter: blur(4px);
}

.logo__modal img {
    width: 56px;
    height: 56px;
}

.title__launcher {
    color: var(--primary);
    font-size: 32px;
    font-weight: 700;
    text-align: start;
}

.top__img-content {
    position: absolute;
    text-align: center;
    transform: translate(-50%, -50%);
    z-index: 20;
    top: 120px;
    left: 50%;
}

.steam__top-img-content {
    top: 70px !important;
}

.top__img-content .title__dev-modal {
    color: var(--primary);
    display: block;
    margin-top: 90px;
}

.li__content-modal {
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.steam-more-content {
    margin-top: 40px !important;
}

.btn__connect-modal {
    background-color: #fdd31694;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    padding: 20px;
    border-radius: 6px;
    margin-top: 10px;
    z-index: 100;
    cursor: pointer;
    color: black;
    margin-top: 110px;
}

.btn__connect-modal:hover {
    background-color: #fdd316;
    transition: 0.2s;
}

.btn__connect-modal svg {
    margin-right: 10px;
}

.btn__connect-modal:hover path {
    fill: black !important;
}

.modal_content_top-video {
    padding: 35px;
    gap: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    background-color: #ffffff0d;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    margin-top: 50px;
    margin-bottom: 30px;
    color: var(--primary);
}

.modal_content_top_body {
    margin-left: 50px;
}

.modal_content_top_icon {
    width: 54px;
    height: 54px;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 14px;
    background-color: #ffffff0d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal_content_top_link {
    width: 419px;
    padding: 21px;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    border-radius: 14px;
    background-color: #ffffff0d;
    transition: 0.2s;
}

.modal_content_top_link:hover {
    background-color: #ffffff2a;
    transition: 0.2s;
}

.modal_content_top_link svg {
    margin-right: 10px;
}

.modal_content_top_link path {
    fill: var(--primary);
}

.left__img-instruction {
    height: 40vh;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: left bottom;
    transition: transform .5s;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    margin-right: 350px;
    margin-bottom: 175px;
    z-index: -1;
}

.detal__instruction-title--modal {
    background: linear-gradient(90deg, #1977fd 30.44%, #ffffff 59.26%, #1977fd 84.27%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200%;
    font-size: 46px;
    font-weight: 700;
    text-align: center;
    display: block;
    animation: textGradient 3s infinite;
}

.btn__joinToOurDiscordChanell {
    color: rgb(97, 97, 97);
    text-decoration: underline;
    transition: 0.2s all ease;
}

.btn__joinToOurDiscordChanell:hover {
    color: var(--primary);
}

/* Error 404 */

.container__404 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px;
    font-family: 'Roboto';
    height: 100vh;
}

.name__error-404 {
    font-family: var(--font-family);
    color: var(--primary);
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 10px;
}

.underName__error-404 {
    font-family: var(--font-family);
    color: var(--primary);
    font-size: 40px;
    font-weight: 600;
}

.text__error-404 {
    font-family: var(--font-family);
    color: gray;
    font-size: 18px;
    font-weight: normal;
    margin-top: 20px;
}

.left__content-404 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.btn__backToHomePage-404 {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 16px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    line-height: 26px;
    border-radius: 100px;
    background: transparent;
    z-index: 1;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid transparent;
    font-family: var(--font-family);
    transition: 0.2s all ease;
}

.btn__backToHomePage-404:hover {
    background: rgba(44, 44, 44, 0.321);
}

.btn__backToHomePage-404::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(270deg, #6DDCFF, #7F60F9, #6DDCFF);
    background-size: 400% 100%;
    animation: animateGradient 8s ease infinite;

    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;

    z-index: -1;
    box-sizing: border-box;
}

@keyframes animateGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Cabinet */

.main__container-dashboard {
    margin-top: 150px;
    display: flex;
    margin-left: 200px;
    margin-right: 200px;
}

.main__container-login {
    justify-content: center;
    align-items: center;
}

.container__navigation-cabinet {
    width: 356px;
    height: 253.5px;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid rgb(69, 69, 69);
}

.name__company-navigation--cabinet {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 11px;
    border-radius: 4px;
    background: rgba(255, 125, 45, .05);
    color: var(--primary);
}

.btns__navigation-cabinet {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.btn__navigation-cabinet {
    padding: 15px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    background: #25252c35;
    gap: 5px;
    color: rgb(169, 169, 169);
    transition: 0.2s all ease;
}

.btn__navigation-cabinet:hover {
    background: #31313935;
    color: var(--primary);
}

.btn__navigation-cabinet--active {
    background: var(--primary);
    color: black;
}

.btn__navigation-cabinet--active:hover {
    background: var(--primary);
    color: black;
}

.btn__navigation-cabinet--logout {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 4px;
    background: rgba(255, 42, 42, .05);
    color: #ff3737;
    gap: 5px;
    transition: 0.2s all ease;
}

.btn__navigation-cabinet--logout:hover {
    background: rgba(255, 42, 42, 0.135);
}

.container__left-cabinet {
    margin-left: 40px;
}

.title__cabinet {
    font-size: 43px;
    font-weight: 700;
    color: var(--primary);
}

.title__history-cabinet {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-top: 14px;
}

.small__title-cabinet {
    font-size: 16px;
    font-weight: 100;
    color: var(--primary);
}

.container__blocks-statistics--cabinet {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    margin-top: 30px;
}

.block__statistics-cabinet {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #15151D;
    color: var(--primary);
    padding: 10px;
    border-radius: 10px;
    width: 210px;
    height: 100px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color), .15)), color-stop(61.06%, rgba(var(--color), 0)));
    background: -webkit-linear-gradient(bottom, rgba(var(--color), .15) 0%, rgba(var(--color), 0) 61.06%);
    background: -moz-linear-gradient(bottom, rgba(var(--color), .15) 0%, rgba(var(--color), 0) 61.06%);
    background: linear-gradient(0deg, rgba(var(--color), .15) 0%, rgba(var(--color), 0) 61.06%);
    transition: 0.3s all ease;
}

.block__statistics-cabinet:hover {
    color: black;
    transform: translateY(-3px);
}

.block__statistics-cabinet:hover #km-cabinet,
.block__statistics-cabinet:hover #euro-cabinet,
.block__statistics-cabinet:hover #xp-cabinet {
    color: black;
}

.block__statistics-cabinet:hover #hours-cabinet {
    color: var(--primary);
}

.blue-block {
    --color: 59, 196, 255;
}

.blue-block:hover {
    background: #168FFF;
}

.blue-block::after {
    content: '';
    position: absolute;
    width: 99%;
    height: 100%;
    z-index: -1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--color), 100%)), to(rgba(var(--color, 0), 0)));
    background: -webkit-linear-gradient(top, rgba(var(--color), 100%) 0%, rgba(var(--color, 0), 0) 100%);
    background: -moz-linear-gradient(top, rgba(var(--color), 100%) 0%, rgba(var(--color, 0), 0) 100%);
    background: linear-gradient(180deg, rgba(var(--color), 100%) 0%, rgba(var(--color, 0), 0) 100%);
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
    mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1px;
    border-radius: 10px;
}

#km-cabinet {
    font-size: 21px;
    font-weight: 700;
    font-style: italic;
    color: #A1E3FF;
}

.green-block {
    --color: 130, 255, 32;
}

.green-block:hover {
    background: #ADFF00;
}

.green-block::after {
    content: '';
    position: absolute;
    width: 99%;
    height: 100%;
    z-index: -1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--color), 100%)), to(rgba(var(--color, 0), 0)));
    background: -webkit-linear-gradient(top, rgba(var(--color), 100%) 0%, rgba(var(--color, 0), 0) 100%);
    background: -moz-linear-gradient(top, rgba(var(--color), 100%) 0%, rgba(var(--color, 0), 0) 100%);
    background: linear-gradient(180deg, rgba(var(--color), 100%) 0%, rgba(var(--color, 0), 0) 100%);
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
    mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1px;
    border-radius: 10px;
}

#euro-cabinet {
    font-size: 21px;
    font-weight: 700;
    font-style: italic;
    color: #E7FFA4;
}

.yellow-block {
    --color: 255, 184, 0;
}

.yellow-block:hover {
    background: #FFC328;
}

.yellow-block::after {
    content: '';
    position: absolute;
    width: 99%;
    height: 100%;
    z-index: -1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--color), 100%)), to(rgba(var(--color, 0), 0)));
    background: -webkit-linear-gradient(top, rgba(var(--color), 100%) 0%, rgba(var(--color, 0), 0) 100%);
    background: -moz-linear-gradient(top, rgba(var(--color), 100%) 0%, rgba(var(--color, 0), 0) 100%);
    background: linear-gradient(180deg, rgba(var(--color), 100%) 0%, rgba(var(--color, 0), 0) 100%);
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
    mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1px;
    border-radius: 10px;
}

#xp-cabinet {
    font-size: 21px;
    font-weight: 700;
    font-style: italic;
    color: #FFC328;
}

.purple-block {
    --color: 135, 62, 255;
}

.purple-block:hover {
    color: var(--primary);
    background: #863CFF;
}

.purple-block::after {
    content: '';
    position: absolute;
    width: 99%;
    height: 100%;
    z-index: -1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--color), 100%)), to(rgba(var(--color, 0), 0)));
    background: -webkit-linear-gradient(top, rgba(var(--color), 100%) 0%, rgba(var(--color, 0), 0) 100%);
    background: -moz-linear-gradient(top, rgba(var(--color), 100%) 0%, rgba(var(--color, 0), 0) 100%);
    background: linear-gradient(180deg, rgba(var(--color), 100%) 0%, rgba(var(--color, 0), 0) 100%);
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
    mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1px;
    border-radius: 10px;
}

#hours-cabinet {
    font-size: 21px;
    font-weight: 700;
    font-style: italic;
    color: #8E49FF;
}

.block__statistics-cabinet--icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    padding: 0.75rem;
    border-radius: 9999px;
}

.road-icon {
    background-color: rgb(219 234 254);
    color: rgb(37 99 235);
}

.euro-icon {
    color: rgb(22 163 74);
    background-color: rgb(220 252 231);
}

.xp-icon {
    color: rgb(202 138 4);
    background-color: rgb(254 249 195);
}

.hours-icon {
    color: rgb(147 51 234);
    background-color: rgb(243 232 255);
}

.container__history-cabinet {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    width: 100%;
    border: 1px solid rgb(82, 82, 82);
    margin-top: 5px;
}

.container__top-history--cabinet,
.container__block-history--cabinet {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px;
    color: var(--primary);
}

.container__top-history--cabinet {
    border-bottom: 1px dashed rgb(82, 82, 82);
}

.container__blocks-history--cabinet {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.container__block-history--cabinet {
    border-bottom: 1px solid rgb(82, 82, 82);
    color: var(--primary);
}

.container__block-settings {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--primary);
    font-size: 19px;
    font-weight: 700;
    width: 100px;
    padding: 10px;
}

.btn__settings {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 4px;
    background: var(--primary);
    color: black;
    transition: 0.2s all ease;
}

.btn__settings:hover {
    background: #fffbefdc;
}

.container__registration {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 1px solid rgb(79, 79, 79);
    flex-direction: column;
    width: 500px;
    border-radius: 4px;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.602);
}

.title__createAccount {
    color: var(--primary);
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.btn__watch-steamID {
    background: var(--yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    color: black;
    font-weight: 900;
    font-size: 24px;
    font-style: italic;
    margin-top: 50px;
    transition: 0.3s;
}

.btn__watch-steamID:hover {
    background: var(--primary);
    transition: 0.3s;
}

.btn-create__Account {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: var(--primary);
    background-color: #eaa226;
    border-color: #eaa226;
    box-shadow: 0 10px 20px -10px rgba(243, 208, 33, 0.59);
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    border-radius: 4px;
    transition: 0.2s all ease;
}

.btn-create__Account:hover {
    color: var(--primary);
    background-color: #2196f3;
    box-shadow: none;
    border-color: #2196f3;
    transform: translateY(-3px);
}

.donate__input {
    display: block;
    width: 100%;
    border-radius: 3px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, var(--main-ui-opacity));
    padding-left: 50px;
    padding-right: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: var(--primary);
    outline: none;
    transition: 0.2s;
}

.donate__input:hover {
    background: var(--main-darklight-color);
    transition: 0.2s;
}

.donate__input:focus {
    border: 1px solid gray;
}

.input-container {
    position: relative;
    width: 100%;
}

.icons-eye--right {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    z-index: 10;
}

.icon__right-open,
.icon__right-close {
    cursor: pointer;
}

input[type="password"] {
    padding-right: 40px;
}

input[type="text"] {
    padding-right: 40px;
}

.input-icon {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.input-icon--donate {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.logo-input {
    width: 32px;
    height: 32px;
    left: 355px;
}

.btn__resetPassword {
    color: #226dd3;
    font-size: 16px;
    font-weight: 500;
    transition: 0.2s;
}

.btn__resetPassword:hover {
    color: var(--primary);
    transition: 0.2s;
}

.title__resetPassword {
    color: var(--primary);
}

.block__info-cabinet--user {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 22px 24px 26px;
    border-radius: 12px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 251, 239, .1)), color-stop(84.06%, rgba(255, 251, 239, 0)));
    background: -webkit-linear-gradient(bottom, rgba(255, 251, 239, .1) 0%, rgba(255, 251, 239, 0) 84.06%);
    background: -moz-linear-gradient(bottom, rgba(255, 251, 239, .1) 0%, rgba(255, 251, 239, 0) 84.06%);
    background: linear-gradient(0deg, rgba(255, 251, 239, .1) 0%, rgba(255, 251, 239, 0) 84.06%);
    transition: 0.2s all ease;
}

.block__info-cabinet--user>* {
    position: relative;
    z-index: 2;
    transition: 0.2s all ease;
}

.block__info-cabinet--user:hover {
    background: var(--primary);
    color: #272727;
    transform: translateY(-3px);
}

.block__info-cabinet--user::after {
    content: "";
    position: absolute;
    width: 99%;
    height: 100%;
    z-index: -1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    background: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
    mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1px;
    border-radius: 12px;
}

.block__info-cabinet--user::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 3px;
    border-radius: 4px 4px 0 0;
    background: #FFFBEF;
    width: 62px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
}

.block__info-cabinet--user:hover::before {
    background: black;
}

.block__info-cabinet--user:hover .cabinet__info-user-label,
.block__info-cabinet--user:hover .cabinet__info-user-id {
    color: #272727cc
}

.block__info-cabinet--user:hover .cabinet__info-user-name,
.block__info-cabinet--user:hover #user-id {
    color: black;
}

.cabinet__info-user-avatar {
    border-radius: 50%;
    width: 90px;
    height: 90px;
    border: 3px solid var(--primary);
    transition: 0.2s all ease;
}

.block__info-cabinet--user:hover .cabinet__info-user-avatar {
    border: 3px solid black;
}

.cabinet__info-user-id {
    margin-top: 10px;
    color: var(--grey);
}

.cabinet__info-user-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.cabinet__info-user-label {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 120%;
    color: var(--grey);
}

.cabinet__info-user-name {
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 24px;
    color: var(--primary);
}

#user-id {
    color: var(--primary);
}

.btn__copy {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 24px;
    right: 40px;
}

.copy__icon path {
    fill: rgb(112, 112, 112);
    transition: 0.2s all ease;
    cursor: pointer;
}

.copy__icon:hover path {
    fill: var(--primary);
}

.container__trucker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    background: #090b108c;
    margin-top: 50px;
    margin-left: 200px;
    margin-right: 200px;
}

.main__supportCenter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 170px;
}

.container__title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.title__supportCenter {
    font-size: 6.5rem;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 0.82;
    letter-spacing: -0.03%;
    color: var(--primary);
    filter: drop-shadow(0 10px 0 rgba(200, 200, 200, 0.6));
}

.title__bottom-supportCenter {
    font-size: 2.5rem !important;
    filter: none !important;
}

.img__supportCenter {
    position: absolute;
    width: 256px;
    margin-left: 950px;
    margin-top: 205px;
    animation: randomMove 10s infinite ease-in-out;
}

.img__supportCenter-bottom {
    position: absolute;
    width: 256px;
    margin-left: -300px;
    margin-top: -70px;
}

@keyframes randomMove {
    0% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(15px, -10px);
    }

    40% {
        transform: translate(-20px, 15px);
    }

    60% {
        transform: translate(10px, 20px);
    }

    80% {
        transform: translate(-15px, -15px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.section__support {
    width: 100%;
    height: 100vh;
    background-image: url(../images/supportCenter/bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 128px;
    margin-bottom: 20px;
}

.container__input-support {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.container__content-input--support {
    border: 1px solid rgb(58, 58, 58);
    background: rgba(0, 0, 0, 0.598);
    border-radius: 8px;
    padding: 30px;
}

.title__send-list--support---btn {
    color: var(--primary);
    font-weight: 700;
    font-size: 2.2rem;
}

#problem {
    resize: none;
}

.btn__support {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 24px;
    color: black;
    font-family: var(--font-family);
    background: var(--primary);
    box-shadow: 0 10px 20px -10px var(--primary);
    transition: 0.2s all ease;
}

.btn__support:hover {
    background: #fffbefd8;
    box-shadow: none;
    transform: translateY(-3px);
}

.text__problem {
    color: var(--primary);
}

.btn__problem {
    color: #1977fd;
    text-decoration: underline;
    transition: 0.2s all ease;
}

.btn__problem:hover {
    color: var(--primary);
}

.main-block__down-scroll {
    position: absolute;
    bottom: 10px;
    left: 50%;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: .3125rem;
    z-index: 3;
    opacity: .5;
    line-height: 1.2;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    color: var(--primary);
}

.main-block__down-scroll img {
    -webkit-animation: 1.5s anim-arrow infinite linear;
    animation: 1.5s anim-arrow infinite linear;
}

@keyframes anim-arrow {
    0% {
        -webkit-transform: translate(0, -3px);
        transform: translate(0, -3px);
    }

    25% {
        -webkit-transform: translate(0, 0px);
        transform: translate(0, 0px);
    }

    50% {
        -webkit-transform: translate(0, 3px);
        transform: translate(0, 3px);
    }

    75% {
        -webkit-transform: translate(0, 0px);
        transform: translate(0, 0px);
    }

    100% {
        -webkit-transform: translate(0, -3px);
        transform: translate(0, -3px);
    }
}

.social__footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 50%;
    color: #1a9fff;
    border: 1px solid #1a9fff;
    width: 20px;
    height: 20px;
    transition: 0.2s all ease;
}

.social__footer:hover {
    background: #1a9fff;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 0 25px #298cd8;
}

.social__footer:hover svg path {
    fill: var(--primary);
}

.container__socials-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 14px;
    gap: 10px;
}

.blocks__guide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 300px;
}

.block__guide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    backdrop-filter: blur(60px);
    width: 250px;
    height: 350px;
    padding: clamp(38px, calc(38px + (60 - 38) * ((100vw - 768px) / (1920 - 768))), 60px);
    border-radius: 10px;
    color: var(--primary);
    background: #1a1a2394;
    transition: 0.2s all ease;
}

.block__guide:hover {
    background: var(--primary);
    color: black;
    transform: scale(1.06);
}

.block__guide:hover .text__dev-guide {
    color: black;
}

.title__guide {
    font-size: 20px;
    font-weight: 500;
}

.container__added-images {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    margin-top: 20px;
}

.container__img {
    display: flex;
    align-items: center;
    gap: 5px;
}

.container__img img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    padding: 1px;
    border: 1px solid var(--primary);
}

.text__dev-guide {
    margin-top: 10px;
    color: rgb(88, 88, 88);
    font-weight: 700;
}

.btn__delete-img {
    position: absolute;
    top: 422px;
    margin-left: 35px;
    display: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
    background: var(--primary);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    transition: 0.2s all ease;
}

.btn__delete-img:hover {
    background: #fffbefc5;
    cursor: pointer;
}

.main__content-protection {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    margin-top: 10%;
}

.title__protection {
    color: var(--primary);
    font-weight: 700;
    font-size: 30px;
    width: 700px;
    text-align: center;
}

.text__protection {
    color: rgb(110, 110, 110);
    font-size: 16px;
    margin-top: 10px;
}

.block__ddos {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 45px;
    border: 1px solid rgb(72, 72, 72);
    color: var(--primary);
    font-weight: 500;
    margin-top: 10px;
    gap: 5px;
    user-select: none;
    -webkit-user-drag: none;
    backdrop-filter: blur(30px);
    transition: 0.2s all ease;
}

.block__ddos:hover {
    background: var(--primary);
    color: black;
    transform: translateY(-3px);
}

.ip-text {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgb(99, 99, 99);
    font-weight: 500;
    margin-top: 5px;
    user-select: none;
    -webkit-user-drag: none;
}

.loader-protection {
    margin-top: 30px;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.4s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.some_problems {
    position: fixed;
    width: 220px;
    right: 80px;
    background-color: rgba(0, 0, 0, 0.545);
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    z-index: 9998;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 7px;
    animation: fadeInUp 1.5s;
    border: 1px solid rgba(85, 85, 85, 0.545);
    transition:
        bottom 0.5s ease-in-out,
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border 0.2s ease,
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.some_problems:hover {
    background: var(--primary);
    color: black;
    border: 1px solid var(--primary);
    transform: translateY(-3px);
}

.cookie__container {
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.hidden-fade {
    opacity: 0;
    visibility: hidden;
}

.snow-container {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    user-select: none;
    color: white;
    z-index: 10000;
    opacity: 0.8;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateX(0) translateY(-10px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translateX(var(--sway, 20px)) translateY(50vh) rotate(180deg);
    }

    100% {
        transform: translateX(calc(var(--sway, 20px) * -1)) translateY(100vh) rotate(360deg);
        opacity: 0.6;
    }
}

@media (max-width: 1136px) {
    .why {
        flex-direction: column;
    }

    .container__blocks-apply {
        display: flex;
        flex-direction: column;
    }
}

@media (max-height: 800px) {
    .container__avtopark img {
        display: none;
    }
}

@media (max-width: 1026px) {
    .header_menu {
        display: none;
    }

    .menu-toggle {
        display: block !important;
    }
}

@media (max-width: 1024px) {
    footer .footer__flex {
        flex-direction: column;
        margin-left: 0;
    }

    footer .colums__footer {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    footer .footer__socials {
        flex-wrap: wrap;
    }

    .cookie__container {
        display: none;
    }
}

@media (max-width: 763px) {
    .container__images-why {
        flex-direction: column;
    }
}

@media (max-width: 1200px) {
    .container__join-toOurCompany {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .container__join-toOurCompany img {
        width: 100%;
        max-width: 400px;
        margin-top: 20px;
    }

    .developers__project-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .main__block {
        margin-top: 30vh !important;
        padding: 0 20px;
        text-align: center;
    }

    .title__main,
    .nameCompany__title-main {
        font-size: 1.8rem;
    }

    .btn__discord {
        margin: 5px;
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .container__stats-truckhub {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .main__block {
        margin-top: 25vh !important;
    }

    .title__main {
        font-size: 1.5rem;
    }

    .nameCompany__title-main {
        font-size: 1.8rem;
    }

    .btn__discord {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .some_problems {
        right: 30px;
        padding: 8px;
        font-size: 0.8rem;
    }

    .discord-btn img {
        width: 30px;
    }

    .cookie__container {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .container-btns-cookie {
        margin-top: 10px;
    }

    .btn-cookie {
        margin: 5px;
    }

    .title__join {
        font-size: 1.8rem;
    }

    .developer__block {
        width: 100%;
        max-width: 300px;
    }

    .footer__logo {
        width: 120px;
        margin-bottom: 20px;
    }

    .colums__footer {
        flex-direction: column;
        gap: 20px;
    }

    .container__socials-footer {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 8px 10px;
    }

    .header_logo {
        width: 100px;
    }

    .main__block {
        margin-top: 20vh !important;
    }

    .title__main {
        font-size: 1.2rem;
    }

    .nameCompany__title-main {
        font-size: 1.5rem;
    }

    .btn__discord {
        font-size: 0.7rem;
        padding: 5px 8px;
        margin: 3px;
    }

    .some_problems {
        padding: 6px;
        font-size: 0.7rem;
    }

    .discord-btn img {
        width: 25px;
    }

    .cookie__container {
        padding: 10px;
        font-size: 0.9rem;
    }

    .cookie__container img {
        width: 36px;
        height: 36px;
    }

    .title__stats {
        font-size: 1.5rem;
    }

    .title__join {
        font-size: 1.5rem;
    }

    .developer__avatar {
        width: 120px;
        height: 120px;
    }

    .nickname {
        font-size: 1.3rem;
    }

    .post__title {
        font-size: 1rem;
    }

    .footer__title {
        font-size: 1.1rem;
    }

    .footer__link {
        font-size: 0.9rem;
    }

    .social__footer {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 400px) {
    .header_logo {
        width: 80px;
    }

    .title__main {
        font-size: 1rem;
    }

    .nameCompany__title-main {
        font-size: 1.2rem;
    }

    .btn__discord {
        font-size: 0.6rem;
        padding: 4px 6px;
    }

    .main__block span {
        font-size: 0.8rem;
    }

    .block__container-stats--truckhub {
        padding: 15px;
    }

    .icon__stats-truckhub {
        width: 40px;
        height: 40px;
    }

    .animation__numbers {
        font-size: 1.2rem !important;
    }

    .title__join {
        font-size: 1.3rem;
    }

    .container__join-toOurCompany span {
        font-size: 0.9rem;
    }

    .title__stats {
        font-size: 1.3rem;
    }

    .developer__block {
        padding: 15px;
    }

    .developer__avatar {
        width: 100px;
        height: 100px;
    }

    .nickname {
        font-size: 1.1rem;
    }

    .btn__steam {
        font-size: 0.8rem;
    }
}

@media (max-width: 350px) {
    .btn__discord {
        font-size: 0.55rem;
        padding: 3px 5px;
    }

    .main__block span {
        font-size: 0.7rem;
    }

    .some_problems {
        font-size: 0.6rem;
    }

    .discord-btn img {
        width: 20px;
    }

    .cookie__container {
        font-size: 0.8rem;
    }

    .btn-cookie {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 1024px) {
    .img__partner {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .img__partner {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .img__partner {
        max-width: 120px;
    }
}

@media (max-width: 1024px) {
    .container__avtopark img {
        display: none;
    }
}