/*------------------------------------------------------- CSS Reset START*/
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}
html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    scrollbar-gutter: stable;
    scrollbar-gutter: stable;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-padding-top: 95px; /* высота хедера */
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    transition: opacity 0.2s ease; 
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}
input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}
button {
    background: none;
    border: none;
    outline: none;
}
button,
[role="button"] {
    cursor: pointer;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #FFA328;
    outline-offset: 2px;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
button, 
a, 
[role="button"] {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, 
textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

ul, ol {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}
[hidden] {
    display: none !important;
}
/*------------------------------------------------------- CSS Reset END*/
.dfsbaic {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dfcaic {
    display: flex;
    align-items: center;
    justify-content: center;
}
:root {
    /* Основные цвета */
    --red: #D34F34;
    --yellow: #FFA328;
    --green: #8BC63F;
    --gray: #E5E5E5;
    --black: #2A2A2A;
    /* Hover цвета */
    --red-hover: #DA6049;
    --yellow-hover: #FFAC48;
    --green-hover: #A2D270;
    --gray-hover: #F5F5F5;
    --black-hover: #484848;
    /* Active цвета */
    --red-active: #C3462F;
    --yellow-active: #F6992A;
    --green-active: #7CB640;
    --gray-active: #DCDCDC;
    --black-active: #222222;
}
h1 {
    font-size: clamp(48px, 4vw, 75px);
}
h2 {
    font-size: clamp(40px, 3.6vw, 64px);
}
h3 {
    font-size: clamp(20px, 2vw, 32px);
}
h4 {
    font-size: clamp(18px, 1.4vw, 20%);
}
body {
    background-color: var(--black);
    color: var(--gray);
}
section, header, footer {
    max-width: 2560px;
    margin: 0 auto;
}
.container {
    max-width: 1315px;
    width: 90%;
    margin: 0 auto;
}
.red_btn {
    font-size: 18px;
    font-weight: 500;
    line-height: 156%;
    text-transform: uppercase;
    background-color: var(--red);
    color: var(--gray);
    padding: 12px 24px;
    border-radius: 8px;
    display: block;
    max-width: max-content;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1), inset 0 -4px 0 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.green_btn {
    max-width: max-content;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--green);
    color: var(--black);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 128%;
    border-radius: 8px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1), inset 0 -4px 0 0 rgba(0, 0, 0, 0.1);
    padding: 10px 24px;
    transition: all 0.3s ease;
}
.green_btn img {
    width: 32px;
    height: 32px;
}
/* ------------------------------------------------------  COOCKIES START */
.cookies-wrapper {
    display: flex;
    display: none;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    bottom: 2%;
    bottom: calc(2% + 70px);
    right: 30px;
    width: 581px;
    height: 100px;
    background-image: url('../img/cookies-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1000;
    padding: 15px;
}
.cookies-wrapper.active {
    display: flex;
}
.cookies-reject {
    right: 15px;
    position: absolute;
    top: 10px;
    display: block;
    margin-left: auto;
    width: 12px;
    height: 12px;
    background-image: url('../img/icons/cookies-close-inactive.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s ease;
}
.cookies-inner-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.cookies-text {
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
}
/* ------------------------------------------------------ COOCKIES END */
/* ------------------------------------------------------ MOBILE MENU START */
.menu-opener {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}
.menu-opener-box {
    width: 24px;
    height: 18px;
    display: inline-block;
    position: relative;
}
.menu-opener-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}
.menu-opener-inner,
.menu-opener-inner::before,
.menu-opener-inner::after {
    width: 24px;
    height: 3px;
    background-color: var(--yellow);
    position: absolute;
    transition: all 0.3s ease;
}
.menu-opener-inner::before,
.menu-opener-inner::after {
    content: '';
    display: block;
}
.menu-opener-inner::before {
    top: -8px;
}
.menu-opener-inner::after {
    bottom: -8px;
}
.menu-opener.active .menu-opener-inner {
    background-color: transparent;
}

.menu-opener.active .menu-opener-inner::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-opener.active .menu-opener-inner::after {
    bottom: 0;
    transform: rotate(-45deg);
}
.mobile-menu-wrapper {
    position: absolute;
    top: calc(100% + 20px);
    top: 0;
    width: max-content;
    padding-top: 25px;
    right: 15px;
    border-radius: 4px;
    background-image: url("../img/mobile-menu-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(0px);
    transition: all 0.3s ease;
    z-index: -2;
    opacity: 0;
    visibility: hidden;
    padding: 25px 12px;
}
.mobile-menu-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(50px);
}
.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.mobile-menu .header_menu-link {
    display: block;
    padding: 3px;
    font-size: 16px;
    color: var(--black);
    text-align: center;
    margin: 0 auto;
}
.mobile-menu_divider {
    display: block;
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 25px;
}
.mobile-menu_lang-switcher {
    display: flex;
    flex-direction: column;
    gap: 9px;
    
}
.mobile-menu_lang-switcher .lang-btn {
    display: block;
    text-align: center;
    padding: 3px;
    font-size: 16px;
    margin: 0 auto;
    color: var(--black);
}
.mobile-menu_lang-switcher .lang-btn + .lang-btn {
    border-top: none;
}
/* ------------------------------------------------------ MOBILE MENU END */
/*------------------------------------------------------- HEADER START*/

.header {
    padding: 15px 0;
    z-index: 100;
    position: relative;
    position: fixed;
    top: 0;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(25px);
    background: linear-gradient(90deg, rgba(42, 42, 42, 0.4) 0%, rgba(42, 42, 42, 0.7) 50%, rgba(42, 42, 42, 0.4) 100%);
    z-index: -1;
    pointer-events: none;
}
.header_logo {
    max-width: clamp(90px, 6vw, 110px);
}
.header_menu-list {
    gap: 42px;
}
.header_menu-link.active {
    color: var(--green-active);
}
.header_lang-switcher {
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 7px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: sans-serif;
}
.header_lang-switcher-wrapper {
    position: relative;
}
.header_lang-switcher-wrapper {
    position: relative;
}
.header_lang-switcher-inner-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background-image: url("../img/lang-switcher-bg2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: -2;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: flex-end;
    width: 49px;
    height: 76px;
    padding-bottom: 8px;
    gap: 10px;
}
.switcher_btns-wrapper {
    border-radius: 4px;
}
.switcher-bg {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -3;
}
.header_lang-switcher-inner-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(50px);
}
.footer .header_lang-switcher-inner-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header_lang-switcher.active {
    color: var(--green);
}
.header_lang-switcher::before {
    content: "❮";
    display: block;
    width: 10px;
    height: 100%;
    transform: rotate(-90deg);
    color: inherit;
}
.header_lang-switcher.active::before {
    transform: rotate(90deg);
    transition: all 0.3s ease;
}
.lang-btn {
    display: block;
    width: 100%;
    color: var(--black);
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Roboto;
}
.lang-btn:not(:last-child) {
    margin-bottom: 10px;
}


.lang-btn.active {
    font-weight: 700;
    color: var(--red);
}
/* --------------------------------------------------- HEADER END */
/* --------------------------------------------------- HERO START */
.hero .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 33px;
}
.hero_text-wrapper {
    max-width: max-content;
    padding: 32px 46px 32px 32px;
    background: linear-gradient(90deg, rgba(42, 42, 42, 0.05) 0%, #270000 50%, rgba(42, 42, 42, 0.05) 100%);
    border-radius: 0 30px 30px 0;
    margin-left: -32px;
}
.hero_title {
    color: var(--red);
    margin-bottom: 20px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-text-stroke: 6px var(--black);
    paint-order: stroke; 
}
.hero_text {
    line-height: 140%;
    font-size: 20px;
    font-size: clamp(16px, 1.2vw, 20px);
    max-width: 520px;
}
/* --------------------------------------------------- HERO END */
/* --------------------------------------------------- ABOUT START */
.about {
    padding-top: 85px;
    padding-bottom: 122px;
    overflow: hidden;
    background-image: url("../img/2560-3988.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.about_wrapper {
    margin: 0 auto;
    margin-bottom: 65px;
    max-width: 755px;
    padding-bottom: 50px;
    position: relative;
}
.about_wrapper::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    background-image: url("../img/about-arrow-2.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
.about_title {
    color: var(--yellow);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.about_text {
    text-align: center;
    font-size: 18px;
    line-height: 156%;
    max-width: 600px;
    margin: 0 auto;
}
.about_text b {
    font-weight: 700;
}
.about_btn {
    margin: 0 auto;
}
/* --------------------------------------------------- ABOUT END */
/* --------------------------------------------------- GAMES START */
.swiper {
    width: 100%;
    height: 100%;
  }
.games {
    background-image: url(../img/games/btu/bird-them-up-slide-bg-2.webp);
    background-color: var(--yellow);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.swiper-pagination {
    position: absolute;
    text-align: center;
    transform: translateZ(0);
    transition: opacity .3s;
    z-index: 10;
    display: flex;
    gap: 15px;
    justify-content: center;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    left: 0;
    width: 100%;
    bottom: 25px;
}

.swiper-pagination-bullet {
    background: var(--red);
    border-radius: 50%;
    display: inline-block;
    height: 15px;
    opacity: 0.5;
    width: 15px;
    transition: all 0.2s ease;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}
.bird_them_up_slide {
    padding-top: 135px;
    padding-bottom: 150px;
    position: relative;
}
.bird_them_up_slide::after {
    content: '';
    width: 258px;
    height: 276px;
    display: block;
    background-image: url('../img/games/btu/bird-them-up-slide-ants.webp');
    background-size: contain;
    position: absolute;
    bottom: -40px;
    right: 0;
}
.games_title {
    text-transform: uppercase;
    font-size: clamp(40px, 3vw, 64px);
    padding-top: 80px;
    color: var(--black);
    text-align: center;
}
.games_description-wrapper {
    width: 100%;
    border-radius: 8px;
    padding: clamp(20px, 4vw, 51px) clamp(35px, 5.2vw, 87px);
    color: var(--black);
    background: rgba(229, 229, 229, 0.8);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.wasp_wrapper {
    position: absolute;
    top: -90px;
    left: -70px;
}
.games_btu_wasp-1 {
    display: block;
    width: 100%;
    max-width: 122px;
   
    transform: rotate(0deg);
    transform-origin: center bottom;
    transition: transform 0.3s ease-out;
}
.wasp_wrapper::before {
    content: "";
    display: block;
    background-image: url("../img/games/btu/wasp2.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    max-width: 70px;
    position: absolute;
    top: 40px;
    left: -110px;
}
.wasp_wrapper::after {
    content: "";
    display: block;
    background-image: url("../img/games/btu/wasp3.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    max-width: 50px;
    position: absolute;
    top: 150px;
    right: 0;
}
.games_game-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1px;
    max-height: 1px;
    z-index: 0;
}
.games_game-img-wrapper-img {
    display: none;
}
.games_game-img-wrapper-img.mobile {
    display: none;
    animation: gentlePulse 8s ease-in-out infinite;
}
@keyframes gentlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}
.games_game-img-wrapper::after {
    content: "";
    display: block;
    width: 850px;
    height: 600px;
    background-image: url("../img/games/btu/bird-them-up-game-img.webp");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    will-change: transform, filter;
    transform: translate(-69%, -50%) scale(1);
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    animation: combinedAnimation 8s ease-in-out infinite;
}
@keyframes combinedAnimation {
    0%, 100% { 
        transform: translate(-69%, -50%) scale(1);
        filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    }
    50% { 
        transform: translate(-69%, -50%) scale(1.03);
        filter: drop-shadow(0 8px 25px rgba(0,0,0,0.65));
    }
}
@keyframes breath {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}
.games_game-img-wrapper:hover::after {
    animation-play-state: paused;
}
.games_text-wrapper {
    width: 100%;
    max-width: 600px;
}
.games_game-title-img {
    display: none;
    animation: breath 4s ease-in-out infinite;
}
.games_game-name {
    font-family: Stetica;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 32px;
    margin-bottom: 23px;
}

.games_game-description {
    font-size: 18px;
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 128%;
}
.games_game-img {
    position: absolute;
    right: 0;
    top: 0;
    right: -150px;
    top: -117px;
    max-width: clamp(250px, 50vw, 848px);
    right: -13%;
}
.games_btns-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}
/* --------------------------------------------------- GAMES END */
.bg-wrapper {
    background-image: url("../img/2560-2380-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
}
/* --------------------------------------------------- VACANCIES START */
.vacancies {
    padding-top: 85px;
    padding-bottom: 140px;
    overflow: hidden;
}
.vacancies .container {
    max-width: 964px;
}
.vacancies_title {
    text-align: center;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
}
.vacancies_text {
    max-width: 600px;
    font-size: 18px;
    line-height: 128%;
    text-align: center;
    color: var(--gray);
    margin: 0 auto;
}
.swiper_vacancies-container {
    max-width: 964px;
    width: 90%;
    margin: 0 auto;
    margin-top: 64px;
}
.swiper-vacancies {
    width: 100%;
    height: auto;
}
.vacancies_item {
    max-width: max-content !important;
}
.vacancy_outer-wrapper {
    max-width: max-content;
}
.vacancy_inner-wrapper {
    background-color: var(--gray );
    border-radius: 8px;
    padding-bottom: 34px;
    color: var(--black);
    max-width: 305px;
}
.vacancy_img {
    margin-bottom: 28px;
    width: 100%;
    border-radius: 8px 8px 0 0;
    filter: grayscale(100%);
}
.vacancy_img-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 8px 8px 0 0;
}
.vacancy_name {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    margin-bottom: 8px;
    padding: 0 3px;
}
.vacancy_desc {
    font-size: 16px;
    text-align: center;
    padding: 0 3px;
}
.vacancy_btn {
    margin: 0 auto;
    margin-top: 16px;
    text-transform: uppercase;
}
/* --------------------------------------------------- VACANCIES END */
.divider {
    background-image: url("../img/divider.png");
    width: 95%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 1800px;
    height: 10px;
    margin: 0 auto;
}
/* --------------------------------------------------- SOCIALS START */
.socials {
    padding-top: 88px;
    padding-bottom: 160px;
}
.socials .container {
    max-width: 875px;
}
.socials_title {
    text-align: center;
    margin-bottom: 65px;
    color: var(--yellow);
    text-transform: uppercase;
}
.socials_list {
    display: flex;
    align-items: stretch;
    gap: 20px;
    justify-content: space-between;
}
.socials_item {
    width: 192px;
}
.social_link-img {
    margin: 0 auto;
    transition: all 0.3s ease;
    max-width: 50px;
}
.social_inner-top-wrapper svg {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    fill: var(--red);
    transition: all 0.2s ease;
}
.social_name {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    margin-top: 8px;
}
.social_tag {
    font-size: 18px;
    display: block;
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}
.social_desc {
    display: block;
    text-align: center;
    font-size: 16px;
    color: var(--yellow);
}
.socials_email-wrapper {
    margin: 0 auto;
    margin-top: 64px;

}
.socials_email-title {
    font-weight: 500;
    font-size: 22px;
    text-align: center;
    margin-bottom: 10px;
}
.email_block {
    width: 320px;
    background-image: url("../img/adress-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 4px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--black);
    margin: 0 auto;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.3s ease;
}
.email_block .path1 {
    opacity: 0;
    transition: all 0.5s ease;
}
.email_block.no-hover .path1 {
    opacity: 1;
    transition: all 0.5s ease;
}
.email_text {
    font-size: 18px;
}
/* --------------------------------------------------- SOCIALS END */
/* --------------------------------------------------- OUR TEAM START */
.our-team {
    padding-top: 180px;
    padding-bottom: 130px;
    overflow-x: hidden;
    background-image: url("../img/2560-2380-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
}
.our-team_title {
    font-size: clamp(40px, 3.6vw, 64px);
    margin-bottom: 75px;
    color: var(--red);
    text-align: center;
}
.our-team_list {
    display: flex;
    flex-direction: column;
}
.teammate-wrapper {
    display: flex;
    align-items: center;
}
.teammate-wrapper:nth-child(even) {
    margin-left: auto;
}
.teammate-wrapper:nth-child(even) .teammate_img-wrapper {
    order: 1;
}
.teammate-wrapper:nth-child(even) .teammate-info_wrapper {
    order: 0;
}
.teammate-wrapper:nth-child(even) .teammate-info_wrapper {
    padding: 20px 90px 20px 50px;
    margin-right: -45px;
}
.teammate-wrapper:nth-child(even) .teammate-info_top-wrapper {
    justify-content: flex-end;
    justify-content: end;
}
.teammate-wrapper:nth-child(even) .teammate-info_games-title {
    text-align: right;
}
.teammate_img-wrapper {
    max-width: 250px;
    max-height: 250px
}
.teammate_img {
    width: 100%;
    height: auto;
    border-radius: 10000px;
    box-shadow: 0 5px 50px 0 rgba(255, 255, 255, 0.5);
}
.teammate-info_wrapper {
    background: linear-gradient(90deg, rgba(42, 42, 42, 0.05) 0%, #2a2a2a 50%, rgba(42, 42, 42, 0.05) 100%);
    border-radius: 8px;
    padding: 20px 50px 20px 90px;
    margin-left: -45px;
}
.teammate-info_top-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
}
.teammate-info_name {
    font-weight: 500;
    font-size: 22px;
}
.teammate-info_job {
    font-weight: 400;
    font-size: 16px;
}
.teammate-info_games-title {
    font-weight: 400;
    font-size: 16px;
    color: var(--yellow);
    margin-top: 16px;
    margin-bottom: 16px;
}
.teammate-info_games-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
}
.teammate-info_game {
    border: 1px solid var(--green);
    border-radius: 8px;
    padding: 3px 17px;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
}
.back-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 auto;
    margin-top: 90px;
    max-width: max-content;
    color: var(--gray);
    fill: var(--gray);
    padding: 5px;
    transition: all 0.3s ease;
}
.back-btn svg {
    width: 22px;
    height: 10px;
    fill: inherit;
}
.back-btn_text {
    color: inherit;
}
/* --------------------------------------------------- OUR TEAM END */
/* --------------------------------------------------- FOOTER START */
.footer {
    padding-top: 85px;
    padding-bottom: 15px;
    z-index: 100;
    position: relative;
    width: 100%;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(25px);
    background: linear-gradient(90deg, rgba(42, 42, 42, 0.4) 0%, rgba(42, 42, 42, 0.7) 50%, rgba(42, 42, 42, 0.4) 100%);
    z-index: -1;
    pointer-events: none;
}
.footer .container {
    display: flex;
    justify-content: space-between;
    /* gap: 100px; */
    align-items: center;
}
.footer_logo {
    max-width: max-content;
}
.footer_socials {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer_social-link svg {
    stroke: #E5E5E5;
    transition: all 0.2s ease;
}
.footer_menu-list {
    display: flex;
    gap: 42px;
}
.footer_menu-link {
    font-size: 18px;
    padding: 3px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    transition: all 0.3s ease;
}
.footer_lang-switcher-inner-wrapper {
    display: none;
}
.footer_copyright {
    font-weight: 400;
    font-size: 14px;
    line-height: 121%;
    opacity: 0.5;
    margin-top: 50px;
    text-align: center;
}
.copyright_container {
    justify-content: center !important;
}

footer .header_lang-switcher-inner-wrapper {
    top: unset;
    bottom: calc(100% + 110px);
    padding-bottom: 15px;
    padding-top: 8px;
    transform: translateY(100px);
}
footer .header_lang-switcher::before {
    transform: rotate(90deg);
}
footer .header_lang-switcher.active::before {
    transform: rotate(-90deg);
}
.to-top-btn {
    position: fixed;
    background: none;
    background-image: url('../img/icons/up-arrow-default.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    user-select: none;
}
.to-top-btn.active {
    opacity: 0.7;
    visibility: visible;
    transform: translateY(0);
}

/* --------------------------------------------------- FOOTER END */
.error-section {
    background-image: url("../img/2560-3988.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
    max-height: 4500px;
    height: calc(100svh - 258px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Nozhik;
    box-sizing: border-box;
    padding: 2rem;
    padding-top: 130px;
    padding-bottom: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.error-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.error-text {
    font-size: clamp(40px, 3.6vw, 64px);
    color: var(--yellow);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
}
.error-number {
    font-size: clamp(50px, 12vw, 228px);
    color: var(--red);
    text-align: center;
}
.to-main-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 auto;
    margin-top: 90px;
    max-width: max-content;
    color: var(--gray);
    fill: var(--gray);
    padding: 5px;
    transition: all 0.3s ease;
}
.to-main-btn svg {
    width: 22px;
    height: 10px;
    fill: inherit;
}
.to-main-btn-text {
    font-family: Stetica;
    color: inherit;
}
/* --------------------------------------------------- ANIMATIONS START */
@media(hover:hover) {
    .green_btn:hover {
        background-color: var(--green-hover);
        transition: all 0.3s ease;
    }
    .red_btn:hover {
        background-color: var(--red-hover);
        transition: all 0.3s ease;
    }
    .header_lang-switcher:hover {
        color: var(--green-hover);
    }
    .lang-btn:hover {
        color: var(--red);
    }
    .header_lang-switcher.active:hover {
        color: var(--green);
    }
    .header_menu-link {
        position: relative;
        color: #e5e5e5;      
        text-decoration: none;
        font-size: 18px;
        font-weight: 400;   
        transition: all 0.3s ease;
    }
    .header_menu-link::before {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 50%;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #facc22, #f83600);
        border-radius: 50%;
        transform: translateX(-50%);
        transition: all 0.3s ease-in-out;
      }
      .header_menu-link:hover::before {
        width: 100%;  
        
      }
      .header_menu-link:hover, .footer_menu-link:hover {
        color: var(--green-hover);
    }
    .vacancy_img-wrapper::before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background-color: #FFA328;
        opacity: 0.5;
        z-index: 13;
        border-radius: 8px 8px 0 0;
        mix-blend-mode: multiply;
        transition: all 0.3s ease;
    }
    .vacancies_item:hover  .vacancy_img-wrapper::before {
        opacity: 0;
        transition: all 0.3s ease;
        
    }
    .vacancies_item:hover .vacancy_img {
        filter: grayscale(0);
    }
    #emailBlock:hover {
        background-image: url("../img/adress-bg-hover1.png");
    }

    .footer_social-link:hover svg {
        stroke: var(--green-hover);
    }
    .swiper-pagination-bullet:hover {
        background: var(--red-hover);
    }
    .back-btn:hover {
        color: var(--green-hover);
        fill: var(--green-hover);
    }
    .to-main-btn:hover {
        color: var(--green-hover);
        fill: var(--green-hover);
    }
    .to-top-btn:hover {
        width: 50px;
        height: 50px;
        opacity: 1;
    }
    .social_link:hover .social_inner-top-wrapper svg {
        fill: var(--red-hover);
    }
    .social_link:hover .social_tag {
        color: var(--green-hover);
    }
    .cookies-reject:hover {
        background-image: url('../img/icons/cookies-close-hover.png');
    }

}




*:active {
    transition: all 0s ease;
}
.green_btn:active {
    background-color: var(--green-active);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
}
.social_link:active .social_tag {
    color: var(--green);
}
.red_btn:active {
    background-color: var(--red-active);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
}
#emailBlock:active {
    background-image: url("../img/adress-bg-active.png");
}
#emailBlock.no-hover:hover,
#emailBlock.no-hover:active {
    background-image: url("../img/adress-bg.png");
}

.back-btn:active {
    fill: var(--green-active);
    color: var(--green-active);
}
.to-main-btn:active {
    color: var(--green-active);
    fill: var(--green-active);
}
.to-top-btn:active {
    background-image: url('../img/icons/up-arrow-active.png');
    width: 50px;
    height: 50px;
    opacity: 1;
}
.social_link:active .social_inner-top-wrapper svg {
    fill: var(--red-active);
}
.header_menu-link:active, .footer_menu-link:active {
    color: var(--green-active);
}
.cookies-reject:active {
    background-image: url('../img/icons/cookies-close-active.png');
}
.footer_social-link:active svg {
    stroke: var(--green-active);
}
/* ----------------------------------------------------------------------------------- ANIMATIONS END */
@media (min-width: 965px) {
    .swiper-vacancies .swiper-wrapper {
    justify-content: center;
    transform: none !important;
    }
    }
@media (max-width: 1580px) {
    .games_game-img-wrapper::after {
        transform: translate(-76%, -50%) scale(0.8);
    }
}
@media (max-width: 1400px) {
    .games_game-img-wrapper {
        height: 1px;
        max-width: unset;
        max-height: unset;
    }
    .games_game-img-wrapper::after {
        transform: translate(-50%, -55%) scale(1);
        scale: 1;
        width: clamp(450px, 30vw, 800px);
        height: clamp(340px, 20vw, 500px);
        background-size: contain;
        animation: none;
    }
    .games_game-img-wrapper-img {
        display: block;
        width: 100%;
        height: auto;
    }
}
@media(max-width:1024px) {
    html {
        scroll-padding-top: 60px;
    }
    .cookies-wrapper {
        position: fixed;
        bottom: calc(2% + 70px);
        right: 10px;
        width: 341px;
        height: 90px;
        padding: 12px;
    }
    .cookies-reject {
        right: 8px;
        top: 20px;
    }
    .cookies-inner-wrapper {
        max-width: 271px;
        margin: 0 auto;
    }
    .cookies-text {
        font-size: 16px;
    }
    .error-section {
        min-height: 95svh;
    }
    .container {
        width: 100%;
        padding: 0 15px;
    }
    .header_logo {
        max-width: 51px;
        height: auto;
    }
    .header {
        padding: 10px 0;
    }
    .green_btn, .games_game-description, .social_tag {
        font-size: 16px;
    }
    .about_text, .vacancies_text, .social_desc {
        font-size: 14px;
    }
    .cookies-wrapper {
        position: fixed;
        bottom: 60px;
        right: 10px;
        width: 341px;
        height: 90px;
        padding: 12px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
    }
    .cookies-wrapper .green_btn {
        font-size: 12px;
    }
    .header_lang-switcher-wrapper, .header_menu {
        display: none;
    }
    .games .green_btn,  .red_btn {
        font-size: 14px;
        padding: 8px 16px;
        gap: 5px;
    }
    .green_btn {
        padding: 8px 16px;
        gap: 5px;
    }
    .green_btn img {
        width: 22px;
        height: 22px;
    }
    .menu-opener {
        display: flex;
    }
    .lang-btn:not(:last-child) {
        margin-bottom: 0;
    }
    .footer {
        padding-top: 25px;
    }

    .hero.hero-mob h1 {
        color: #000;
    }
    .hero_text-wrapper {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        background: none;
        padding: 0;
    }
    .hero_title, .hero_text {
        text-align: center;
    }
    .hero_link {
        margin-left: 0;
        margin: 0 auto;
    }
    .bird_them_up_slide {
        padding-top: 70px;
        padding-bottom: 105px;
    }
    .games_game-img-wrapper-img.pc {
        display: none;
    }
    .games_game-img-wrapper-img.mobile {
        display: block;
        margin-top: -160px;
        margin-top: clamp(-160px, -10vw, -70px);
    }
    .games_game-name {
        display: none;
    }
    .games_game-description {
        font-size: 14px;
    }
    .games_game-title-img {
        display: block;
        margin: 0 auto;
        margin-bottom: 15px;
        max-width: 450px;
        width: 100%;
    }
    .games_text-wrapper {
        max-width: 100%;
    }
    .games_description-wrapper {
        padding-bottom: 120px;
        flex-direction: column;
        max-width: 450px;
        margin: 0 auto;
    }
    .games_btns-wrapper {
        margin-top: clamp(-135px, -20vw, -120px);
        flex-direction: column;
        align-items: center;
        position: relative; z-index: 1;
    }
    .games_game-img-wrapper::after {
        background-image: url("../img/games/btu/btu-characters-x3.webp");
    }
    .games_game-img-wrapper {
        height: clamp(240px, 50vw, 280px);
        margin-top: -50px;
    }
    .swiper_vacancies-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        padding-left: 15px;
        overflow: hidden;
    }
    .bg-wrapper, .about {
        background-image: none;

    }
    .social_name, .socials_email-title {
        font-size: 18px;
    }

    .about_wrapper::before {
        display: none;
    }
    .about_text {
        width: 340px;
    }
    .footer .header_lang-switcher-wrapper {
        display: none;
    }
    .footer .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px;
    }
    .our-team {
        padding-top: 80px; 
        padding-bottom: 65px;
    }
    .our-team_title {
        margin-bottom: 45px;
    }
    .our-team_list {
        gap: 25px;
    }
    .our-team {
        background-image: none;
    }
    .teammate_img-wrapper {
        max-width: 140px;
        max-height: 140px;
    }
    .teammate_img {
        box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.45);
    }
    .teammate-info_wrapper {
        background: none;
        padding: 0;
        margin-left: 15px;
    }
    .teammate-info_top-wrapper {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .teammate-info_name {
        font-size: 20px;
    }
    .teammate-info_job {
        font-size: 14px;
    }
    .teammate-info_games-title {
        display: none;
    }
    .teammate-info_games-wrapper {
        display: none;
    }
    .teammate-wrapper:nth-child(even) {
        margin-left: 0;
    }
    .teammate-wrapper:nth-child(even) .teammate_img-wrapper {
        order: 0;
    }
    .teammate-wrapper:nth-child(even) .teammate-info_wrapper {
        order: 1;
    }
    .teammate-wrapper:nth-child(even) .teammate-info_wrapper {
        padding: 0;
        margin-left: 15px;
    }
    .back-btn {
        margin-top: 60px;
    }
    .to-main-btn {
        margin-top: 20px;
    }
    .wasp_wrapper::before, .wasp_wrapper::after {
        content: none;
        display: none;
    }
    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
        left: 0;
        width: 100%;
        bottom: 3%;
    }
    .to-top-btn {
        right: 10px;
    }
    .vacancy_img {
        filter: none;
    }
    .socials_item {
        width: 170px;
    }

}
@media(max-width:900px) {
    .vacancy_inner-wrapper {
        max-width: unset;
    }
}
/* ---------------------------------------------------------------------------------------------- 768 */
@media(max-width:768px) {
    .footer_socials {
        order: 3;
    }
    .footer_menu-list {
        gap: 15px;   
        justify-content: space-between; 
    }
    .footer_menu-link {
        font-size: 16px;
    }
    .footer .container {
        flex-direction: column;
        gap: 35px;
    }
    .socials_title {
        margin-bottom: 45px;
    }
    .socials_list {
        align-items: stretch;
        gap: 20px;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
        column-gap: 40px;
        row-gap: 50px;
    }
    .socials_item {
        width: clamp(130px, 38vw, 165px);
    }
    .social_tag {
        font-size: clamp(13px, 2.5vw, 16px);
    }
    .socials_item:nth-child(1) {
        order: 0;
    }
    .socials_item:nth-child(2) {
        order: 1;
    }
    .socials_item:nth-child(3) {
        order: 3;
    }
    .socials_item:nth-child(4) {
        order: 2;
    }
    .bird_them_up_slide::after {
        width: 160px;
        height: 122px;
        background-repeat: no-repeat;
        background-position: top;
        background-position: right;
        bottom: 0;
    }
    .about_wrapper::before {
        background-size: auto;
        top: 0;
    }
    .about_wrapper {
        margin-bottom: 0;
        padding-bottom: 50px;
    }
    .about_text {
        width: 100%;
        max-width: 420px;
    }
    .hero_title {
        font-size: clamp(40px, 4vw, 75px);
    }
    .about {
        padding: 65px 0;
    }

    .vacancies, .socials {
        padding: 65px 0;
    }
    .swiper_vacancies-container {
        margin-top: 30px;
    }
    .footer_logo {
        max-width: clamp(85px, 20vw, 150px);
    }

    
}
@media(max-width:640px) {

}
@media(max-width:600px) {
    .vacancy_inner-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }
}
@media(max-width:400px) {
    .about_wrapper::before {
        top: -15px;
    }
}