@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap');

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #222222;
    border-radius: 10px;
    border: 3px solid #222;
}

::-webkit-scrollbar-track {
    background: var(--col1);
}

:root {
    --col1: #1f5bff;
    --col2: #122138;
}

span,
p {
    line-height: 138%;
}

html {
    scroll-behavior: smooth;
}

body {

    background: #152640;
    color: #fff;
    font-family: "Golos Text", sans-serif;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    overflow: auto;
}

a {
    color: #fff;
    transition: all 0.3s;
}

a:hover {
    opacity: .8;
    transform: translateY(-3px);
}

.header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background: #152640;
    padding: 15px 40px;
}

.logo {
    max-width: 45px;
}

.logo img {
    width: 100%;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.nav a,
.nav_mob a {
    font-weight: 600;
}

.nav_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.slide {
    width: 100%;
    background: url(/img/img_1.png), linear-gradient(45deg, black, transparent);
    /* background: url(/img/sl.webp), linear-gradient(45deg, black, transparent); */
    background-size: cover;
    height: clamp(505px, 42vw, 637px);
    background-repeat: no-repeat;
    background-blend-mode: color;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center 0px;
}

.slide_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 60%;
    text-align: center;
}

.slide_text h2 {
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 800;
}

.btn_blue {
    background: var(--col1);
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.125rem;
}

.btn_blue_2 {
    background: #1f5bff00;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.125rem;
    border: 1px #1f5bff solid;
}

.content {
    flex: 1 1 auto;
}

.burger {
    display: none;
}

.nav_mob_box {
    display: none;
}

.fond_box {
    width: 100%;
    margin: 40px 0 40px 0;
}

.fond_mix {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.bold_blue {
    font-weight: 700;
    color: var(--col1);
}

.lite {
    font-weight: 100;
    color: #1f5bff;
}

.mission_neo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 45px;
    width: 100%;
}

.mission_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.fond_row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #0000001f;
    /* color: #222; */
    padding: 30px;
    border-radius: 15px;
}

.fond_j {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.h2_row {
    font-size: clamp(35px, 4vw, 50px);
    font-weight: 800;
    text-transform: uppercase;
}

.sektor {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.fond_k {
    position: relative;
}

.fond_j_img {
    border-radius: 0 0 20px 20px;
    max-width: 450px;
    width: 100%;
}

.fond_j>span {
    font-weight: 700;
    font-size: 30px;
    background: #122138;
    width: 100%;
    text-align: center;
    border-radius: 20px 20px 0 0;
    padding: 10px;
}

.fond_j_span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: #1f5bff;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.fond_go {
    display: flex;
    gap: 20px;
}

.menu-item {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-weight: 600;
}

/* выпадающий блок */
.dropdown {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    transition: .25s ease;
    z-index: 10;
    color: #222;
}

/* стрелка */
.dropdown-arrow {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: -3px -3px 6px rgba(0, 0, 0, .05);
}

/* список */
.dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown li {
    padding: 5px 20px;
    white-space: nowrap;
}

.dropdown li:hover {
    background: #f3f3f3;
}

/* показываем при наведении */
.menu-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    top: 220%;
}

/* mobile */

.nav_item {
    width: 100%;
}

.nav_toggle {
    width: 88%;
    background: none;
    border: none;
    font-size: 16px;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    gap: 20px;
}

/* стрелка */
.arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
    transition: .3s;
}

/* подменю */
.nav_dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding-left: 12px;
}

.nav_dropdown a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 100;
}

/* активное состояние */
.nav_item.active .nav_dropdown {
    max-height: 155px;
    margin: 10px 0 0 0;
}

.nav_item.active .arrow {
    transform: rotate(-135deg);
}

.mission {
    margin: 70px 0 40px 0;
}

.mission_fox {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.mission_row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.mission_mix {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mission_row p {
    padding: 10px 30px;
    border-radius: 10px;
    background: var(--col2);
}

.mission_img {
    max-width: 612px;
}

.mission_img img {
    width: 100%;
    border-radius: 20px;
}

#scrollTopBtn {
    position: fixed;
    bottom: 85px;
    right: 20px;
    z-index: 9999;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--col1);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: opacity .3s, transform .3s;
}

#scrollTopBtn:hover {
    transform: translateY(-3px);
    opacity: .85;
}

.help_mix {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.team_mix {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.help {
    margin: 70px 0 40px 0;
}

.help_img {
    max-width: 485px;
}

.help_img img {
    width: 100%;
    border-radius: 20px;
}

.help_seo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 88px 20px 20px;
}

.help_seo p:first-child {
    font-weight: 700;
}

.help_seo p {
    padding: 10px 30px;
    border-radius: 34px;
    /* background: #1f5bff; */
    width: 100%;
    border: 1px #1f5bff solid;
}

.help_join {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: var(--col2);
    border-radius: 20px;
}

.help_fox {
    width: 100%;
}


.team {
    margin: 70px 0 40px 0;
}

.team_img_box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    gap: 30px;
    max-width: 190px;
}

.team_fox {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.team_img {
    max-width: 200px;
}

.team_img_span span:first-child {
    background: #1f5bff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12px;
}

.img_team {
    height: 150px;
    width: 150px;
    border-radius: 100%;
    object-fit: cover;
    object-position: top;
    /* border: 1px #fff solid; */
    outline: 2px #1f5bff dashed;
    outline-offset: 7px;
}

.team_img_span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    text-align: center;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.photo-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    cursor: zoom-in;
}

.photo_mix {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.qr_mix {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.video_mix {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}


.photo_fox {
    width: 100%;
    background: #122138;
    padding: 30px;
    border-radius: 20px;
}

.qr_fox {
    width: 100%;
    background: #122138;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.qr_qq {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 30px;
}

.qr_fox span:first-child {
    background: #1f5bff;
    padding: 10px 20px;
    border-radius: 20px;
}

.qr_n {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;

}

.qr_m {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.qr_n p {
    background: #00000033;
    width: 100%;
    padding: 10px 20px;
    border-radius: 10px;
}

.qr_img {
    max-width: 450px;
}

.qr_img img {
    width: 100%;
}

.item {
    display: none;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.lightbox.active {
    display: flex;
}

.photo {
    margin: 70px 0 40px 0;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(223px, 1fr));
    gap: 12px;
}

.photo_lig {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px 0 0 0;
    gap: 10px;
}

.photo-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    display: none;
    /* важно */
    border-radius: 8px;
}

.show-more {
    padding: 10px 20px;
    cursor: pointer;
    background: #1f5bff;
    padding: 10px 30px;
    border-radius: 50px;
    color: #fff;
}

/* lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.docy_link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: #1f5bff;
    padding: 10px 30px;
    border-radius: 50px;
    color: #fff;
}

.docy_m {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #122138;
    padding: 30px;
    border-radius: 20px;
    flex-direction: column;
    gap: 40px;
}

.contact_m {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #122138;
    padding: 30px;
    border-radius: 20px;
    flex-direction: column;
    gap: 40px;
}

.docy_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    text-align: center;
    border: 1px #ffffff2e solid;
    border-radius: 10px;
    padding: 20px;
}

.docy_link img {
    max-width: 17px;
    width: 100%;
}

.docy_link a {
    display: flex;
    align-items: center;
    gap: 7px;
}

.docy_mix {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.contact_mix {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.docy_fox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
    gap: 20px 40px;
    width: 100%;
    margin: 0 auto;
}

.docy {
    margin: 70px 0 40px;
}

.chats_neo {
    background-color: #01174200;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
    /* border-top: 1px #fff solid; */
    border: 1px #0066ff2b solid;
    backdrop-filter: blur(10px);
}

.chats_box {
    width: 100%;
}

.chat_rules {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.chat_rules p {
    margin: 0;
    padding: 0;
}

#chat {
    border-radius: 20px 0 0 20px;
    height: 300px;
    overflow-y: scroll;
    border: 1px solid #0066ff2b;
    padding: 15px;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #fff;
    color: #222;
}

#chatForm {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

#chat p {
    padding: 10px 20px;
    background: #eeeeeea4;
    border-radius: 10px;
}

#chatForm div:nth-child(1) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

#username {
    min-width: 342px;
    padding: 10px;
    border-radius: 5px;
}

#message {
    min-width: 341px;
    padding: 10px;
    border-radius: 5px;
}

textarea {
    resize: vertical;
}

.bt_ch {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#chatForm div:nth-child(1) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.bt_ch button {
    background: var(--col1);
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 700;
    /* font-size: 1.125rem; */
}

.vvv {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: row !important;
}

#captchaInput {
    max-width: 100px;
    text-align: center;
    padding: 10px 30px;
    border-radius: 30px;
}

.item button {
    background-color: #0055fc;
    color: white;
    border: none;
    padding: 5px 20px;
    border-radius: 5px;
    margin-left: 10px;
    min-width: 140px;
}

/* Стили для видео слайдера */
.video-slider {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    position: relative;
    justify-content: space-around;
}

.slider-container {
    overflow: hidden;
    width: 100%;
    /* height: 1280px; */
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.video-slide {
    /* min-width: 762px; */
    /* height: 1280px; */
    display: flex;
    justify-content: center;
    /* align-items: center; */
    /* background-color: #222; */
}



.video-slide iframe {
    /* Этот стиль удален, так как iframe теперь внутри video-item */
}

.video-item {
    /* height: 640px; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.video-item iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.slider-button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-button.prev {
    left: 10px;
}

.slider-button.next {
    right: 10px;
}

.pdf_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 100%;
}

.pdf_link span {
    text-align: center;
}

.contact_fox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px #1f5bff solid;
    padding: 15px 30px;
    border-radius: 100px;
}

.contact {
    margin: 0;
}

/* .footer {} */

/* TODO: */


/* video */

.video-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.video-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.video-item {
    display: flex;
    gap: 20px;
    justify-content: center;
    /* flex-wrap: wrap; */
}

.video-item video {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
}

/* Кнопки */
.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px 14px;
    z-index: 10;
    border-radius: 50%;
}

.slider-button.prev {
    left: 10px;
}

.slider-button.next {
    right: 10px;
}

.news_seo {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    gap: 20px;
}

.news {
    margin: 110px 0 0 0;
}

.news_fox {
    display: block;
    text-decoration: none;
    color: #fff;
}

.extra_img {
    max-width: 500px;
}

.news_img {
    max-width: 300px;
}

.news_img img {
    width: 100%;
    border-radius: 10px;
}

.extra_img img {
    width: 100%;
    border-radius: 20px;
}

.news_title {
    margin: 12px 0 6px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.news_a {
    font-size: 13px;
    line-height: 1.4;
    opacity: .9;
    background: #0000001c;
    padding: 10px 20px;
    border-radius: 20px;
}

/* ********************* */

.news_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 4 карточки */
.news_seo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* карточка */
.news_fox {
    display: block;
    color: #fff;
    text-decoration: none;
}


/* ===== СЛАЙДЕР ===== */
.news_slider {
    position: relative;
}

.slider_view {
    overflow: hidden;
    /* КЛЮЧ */
}

.slider_track {
    display: flex;
    gap: 24px;
    transition: transform .4s ease;
}

.slider_track .news_fox {
    min-width: 260px;
}

/* кнопки */
.slider_btn {
    position: absolute;
    top: 40%;
    width: 36px;
    height: 36px;
    background: #1e5cff;
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.slider_btn.prev {
    left: -18px;
}

.slider_btn.next {
    right: -18px;
}

.slider_track {
    display: flex;
    gap: 24px;
    flex-wrap: nowrap;
    /* 🔥 ВАЖНО */
    transition: transform .4s ease;
}

.slider_track .news_fox {
    flex: 0 0 260px;
    /* 🔥 ВАЖНО */
}

.slider_view {
    overflow: hidden;
}

.news_slider {
    margin-top: 20px;
}


.extra_mix {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.news_mix {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.extra_mix .h2_row {
    font-size: clamp(35px, 4vw, 35px);
    font-weight: 800;
    text-transform: uppercase;
}

.extra_tel {
    padding: 10px 40px;
    font-weight: 600;
    border-radius: 37px;
    border: #0055fc solid 1px;
    font-size: 24px;
    background: #1f5bff;
}

.extra_a {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 670px;
    gap: 30px;
}

.extra_img {
    max-width: 500px;
}

.extra_img img {
    width: 100%;
    border-radius: 20px;
}

.extra_fox {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border: #1f5bff solid 1px;
    border-radius: 10px;
    padding: 20px;
    align-items: center;
}

.extra_b {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.extra_tel span {
    font-weight: 200;

}

.extra_tel {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.extra_tel_mix {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.sp {
    font-size: 25px;
}

.news_fox {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 504px;
    gap: 5px;
    width: 100%;
    background: #122138;
    padding: 30px;
    border-radius: 20px;
    justify-content: center;
}

/* ************************ */

.news_fox.hidden {
    display: none;
}

.show_more {
    display: block;
    margin: -17px auto 0;
    padding: 12px 28px;
    background: #1e5cff;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 34px;
}

/* ********************* */


.news_x {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
}

.news_x h1 {
    font-size: 25px;
    font-weight: 800;
    border: 1px #ffffff1c solid;
    padding: 10px 40px;
    border-radius: 40px;
}

.news_full {
    font-size: 13px;
    line-height: 1.4;
    opacity: .9;
    background: #0000001c;
    padding: 10px 20px;
    border-radius: 20px;
}

footer {
    width: 100%;
    background: #1f5bff;
    padding: 20px 30px;
    margin: 50px 0 0 0;
    display: flex;
    justify-content: space-between
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}


@media screen and (max-width: 1077.98px) {

    .news_seo {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
        margin-bottom: 40px;
    }

    .mission_neo {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 45px;
        width: 100%;
    }

    .extra_tel {
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .extra_fox {
        display: flex;
        justify-content: space-between;
        width: 100%;
        border: #1f5bff solid 1px;
        border-radius: 10px;
        padding: 20px;
        align-items: center;
        flex-direction: column;
        gap: 20px;
    }

    .video-item {
        flex-direction: column;
        gap: 15px;
    }

    .slider-button {
        font-size: 22px;
        padding: 8px 12px;
    }

    .video_mix {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .h2_row {
        font-size: clamp(35px, 4vw, 50px);
        font-weight: 800;
        text-transform: uppercase;
        text-align: center;
    }

    .contact_mix {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .img_team {
        height: 250px;
        width: 250px;
        border-radius: 100%;
        object-fit: cover;
        object-position: top;
        /* border: 1px #fff solid; */
        outline: 2px #1f5bff dashed;
        outline-offset: 7px;
    }

    .contact_fox {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .photo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
        gap: 12px;
    }

    .team_fox {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        flex-wrap: wrap;
        gap: 40px;
    }

    .help {
        margin: 40px 0 40px 0;
    }

    .mission_mix {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .wrapper {
        overflow: clip;
    }

    .fond_mix {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .team {
        margin: 40px 0 40px 0;
    }

    .help_mix {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .photo_mix {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .photo {
        margin: 40px 0 40px 0;
    }

    .team_mix {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .help_seo {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px 20px 20px 20px;
    }

    .help_join {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        border-radius: 20px;
        flex-wrap: wrap;
    }

    .mission_fox {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        flex-wrap: wrap;
        gap: 30px;
    }

    .fond_go {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .nav_mob {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        /* max-width: 200px; */
        justify-content: center;
        margin: 0 auto;
        width: 100%;
        padding: 0 0 0 25px;
    }

    .nav_mob_box {
        width: 100%;
        margin: 15px 0 35px 0;
        display: none;
    }

    .burger {
        max-width: 40px;
        display: block;
    }

    .burger img {
        width: 100%;
    }

    .nav_btn {
        display: none;
    }

    .header {
        padding: 10px 0px;
    }

    .slide_text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        max-width: 90%;
        text-align: center;
        padding: 0 15px;
    }

    .docy_m {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        background: #122138;
        padding: 30px;
        border-radius: 20px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .docy_fox {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 890px;
        gap: 13px 20px;
        width: 100%;
        margin: 0 auto;
    }

    .news {
        margin: 65px 0 0 0;
        padding: 0 15px;
    }


    body {
        padding: 0 15px;
    }


    .news_x h1 {
        font-size: 25px;
        font-weight: 800;
        border: 1px #ffffff1c solid;
        padding: 10px 40px;
        border-radius: 40px;
        text-align: center;
    }





}