html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1.3;
    font-family: "Nunito Sans", serif;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    text-decoration: none;
}
img{
    display: block;
    width: 100%;
}
 

.sectionCookies {
    box-sizing: border-box;
    position: fixed;
    padding: 20px;
    background: #c0c0c0;
    border-radius: 5px;
    box-shadow: 0 6px 6px rgb(0 0 0 / 25%);
    font-family: inherit;
    z-index: 999; 
    overflow: hidden;
    max-width: 400px;
    width: 90%;
    box-sizing: border-box;
    right: 20px;
    bottom: 20px;
    opacity: 0;
    transition: all .3s linear;
    animation: open 3s linear forwards;
}
@keyframes open {
    0%{ 
        overflow: hidden;
        opacity: 0;
    }
    70%{ 
        overflow: hidden;
        opacity: 0;
    }
    100%{ 
        overflow: hidden;
        opacity: 1;
    }
}
 p, li{
    font-size: 1.1rem;
 }
 .list_bd{
    margin-left: 0 !important;
    padding: 0 !important;
 }
 .list_bd li{
    font-weight: 600;
    padding: 10px;
    background: linear-gradient(90deg, rgba(230, 238, 249, 0.6) 0%, rgba(200, 200, 200, 0.6) 100%);
    margin: 0 0 15px !important;
 }
.sectionCookies .btn-wrap {
    display: flex;
    flex-direction: row;
    font-weight: 700;
    justify-content: center;
    margin: 0 -5px 0 -5px;
    flex-wrap: wrap;
}
.content_wrap p{
    font-size: 14px;
    line-height: 1.4;
}
.sectionCookies  button { 
    padding: 0 7px;
    margin: 0 5px 10px 5px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    min-width: 130px;
    color: #fff;
    line-height: 36px;
    border: none;  
    font-size: 14px;
    transition: box-shadow 0.3s;
}

.sectionCookies button {
    outline: 0;
    border: none; 
    background: #516dae;
}
.sectionCookies a{
    color: #516dae;
}

.sectionCookies  button:hover {
    transition:
        box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 30%);
    transform: translate3d(0, -1px, 0);
}
.grid_cokkies{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
}
.sectionCookies .btn-secondary{
    background: #414141;
}
/* BURGER */

.burger{
    width: 30px;
    height: 25px; 
    position: relative;
    cursor: pointer;
    display: none;
  }
  .burger span{
    background-color:#414141;
    position: absolute;
    border-radius: 2px;
    transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    width:100%;
    height: 4px;
    transition-duration: 500ms
  }
  section{
    padding: 60px 0;
  }
  .burger span:nth-child(1){
    top:0px;
    left: 0px;
  }
  .burger span:nth-child(2){
    top:10px;
    left: 0px;
    opacity:1;
  }
  .burger span:nth-child(3){
    bottom:0px;
    left: 0px;
  }
  .burger:not(.open):hover span:nth-child(1){
    transform: rotate(-3deg) scaleY(1.1);
  }
  .burger:not(.open):hover span:nth-child(2){
    transform: rotate(3deg) scaleY(1.1);
  }
  .burger:not(.open):hover span:nth-child(3){
    transform: rotate(-4deg) scaleY(1.1);
  }
  .burger.open span:nth-child(1){
    transform: rotate(45deg);
    top: 13px;
  }
  .burger.open span:nth-child(2){
    opacity:0;
  }
  .burger.open span:nth-child(3){
    transform: rotate(-45deg);
    top: 13px;
  }


  .logo{
    max-width: 140px;
    display: block;
}
header{
    padding: 10px 0;
}
.header_navigate ul{
    display: flex;
    gap: 30px;
}
.header_navigate a{
    color: #414141;
    font-weight: 600;
}
.header_nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
header{
    position: relative;
}
@media screen and (max-width: 992px) {
    .burger{
        display: inline-block;
        z-index: 200;
    }
    .header_navigate ul{
        flex-direction: column;
        padding:100px 30px 40px;
    }
    .header_navigate{
        position: absolute;
        top: 0;
        right: 0;
        background: #fff;
        border: 1px solid #999;
        max-width: 0px;
        z-index: 150;
        overflow: hidden;
        transition: all .4s linear;
    }
    .header_navigate.show{
        max-width: 400px;
        width: 100%;
    }
    .sectionCookies.light{
        box-sizing: border-box;
        right: 10px;
        bottom: 10px;
        width: 95%;
    }
}

 
.container {
    padding: 0 20px;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
 main>div{
    padding: 80px 0;
 }
 .f_contain{
    position: relative;
    min-height: 80vh;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    background: linear-gradient(32deg, rgba(0,0,0,0.6027004551820728) 0%, rgba(0,0,0,0.42482930672268904) 37%, rgba(0,0,0,0.8071822478991597) 91%);
 }
.f_contain::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url(./w_img/fon.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
/* Блок миссии */
.sov_block {
    background-color: #f5f7fa; /* Мягкий светлый фон */
    padding: 60px 0;
    text-align: center;
}

.sov_block h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

/* Подчёркивающая линия */
.sov_block h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #5cb85c, #3e8e41);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Текст миссии */
.mission_text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover эффект для интерактивности */
.mission_text:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Адаптивность */
@media (max-width: 768px) {
    .sov_block h2 {
        font-size: 1.7rem;
    }
    .mission_text {
        font-size: 1rem;
        padding: 20px 15px;
    }
}

.f_contain_us::before{
    background: url(./w_img/us.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.ram_block{
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px #626362;
 background: linear-gradient(32deg, rgba(124, 106, 83, 0.49) 0%, rgba(31, 33, 31, 0.971) 37%, rgba(10, 26, 2, 0.807) 91%);
    margin: 0 0 20px;
    color: #fff;
}
.ram_block h2{
    color: #f8f6d2;
}
.f_contain_en::before{
    background: url(./w_img/1.png) no-repeat;
    background-size: cover;
    background-position: center;
}
.contact_block{
    position: relative;
    background: linear-gradient(32deg, rgba(0,0,0,0.6027004551820728) 0%, rgba(0,0,0,0.42482930672268904) 37%, rgba(0,0,0,0.8071822478991597) 91%);
}
.contact_block::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url(./w_img/ff.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.contact_block h2{
    color: #fff;
}
.contact_block>div{
    max-width: 900px;
    padding: 20px;
    background: #0a0a0a74;
}
.contact_block p{
    color: antiquewhite;
}
h1{
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 20px;
    color: rgb(253, 253, 253);
}
.contact_block{
    text-align: center;
}
p{
    margin: 0 0 20px;
    line-height: 1.5;
}
.top_wi{
    max-width: 1000px;
    background: #0a0a0aa8;
    padding: 30px;
    width: 100%;
    border: 2px solid #999;
    box-sizing: border-box;
}
.top_wi p{
    color: antiquewhite;
}
h2{
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 20px;
}
.list_2{
    display: flex; 
    flex-wrap: wrap;
    justify-content: center;
    gap:20px;
}
.list_dist li{
    list-style: disc;
    margin: 0 0 10px 20px;
}
b{
    font-weight: 800;
}
.th_block{
 background: #fcf6e683;
}
.grid_im{
    height: 100%;
    border-radius: 0 20px;
    overflow: hidden;
}
.grid_im img{
    max-width: 900px;
    max-height: 900px;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.grid_cont{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.list_2 li{
    padding: 20px; 
    box-sizing: border-box;
    width: 30%; 
    box-shadow: 0 1px 20px #414141;
    border-radius: 30px;
    background: linear-gradient(32deg, rgba(245, 239, 237, 0.603) 0%, rgba(188, 195, 211, 0.355) 37%, rgba(206, 184, 184, 0.807) 91%);
}
.list_2 li b{
    display: block;
    font-size: 1.2rem;
}
h2 {
    font-family: 'Poppins', sans-serif; /* Современный шрифт */
    font-size: 2rem;
    text-transform: uppercase; /* Размер заголовка */
    font-weight: 700; /* Жирный текст */
    color: #333; /* Основной цвет текста */
    text-align: center; /* Выравнивание по центру */
    margin-bottom: 30px; /* Отступ снизу */
    position: relative; /* Для декоративного подчеркивания */
}

/* Декоративная линия под заголовком */
h2::after {
    content: "";
    display: block;
    width: 60px; /* Длина линии */
    height: 4px; /* Толщина линии */
    background-color: #5cb85c;   
    margin: 10px auto 0; /* Отступ сверху, центрирование */
    border-radius: 2px; /* Скругленные края линии */
    transition: width 0.3s ease;
}
 
h2:hover::after {
    width: 100px; 
}
 
@media (max-width: 768px) {
    h2 {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }
    h2::after {
        width: 50px;
    }
}

.list_3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; 
}
.list_2_w li{
    color: #fff;
}
.list_3  li{
        box-sizing: border-box; 
    box-shadow: 0 1px 20px #414141;
    padding: 20px; 
    border: 2px solid #999;
    background: linear-gradient(32deg, rgba(217, 235, 78, 0.603) 0%, rgba(22, 150, 50, 0.425) 37%, rgba(12, 85, 136, 0.807) 91%);
}
.footer_items{
    display: flex;
    gap: 50px;
    justify-content: center;
    padding: 30px 0;
}
.footer_items a{
    transition: all .3s linear;
    color: #414141;
}
.footer_items_doc p{
    font-size: 13px;
    margin: 0;
    text-align: center;
    padding: 10px 0 ;
     background: #2721212a;
}
@media screen and (max-width: 767px) {
    .footer_items{
        flex-direction: column;
        justify-content: start;
        gap: 10px;
        font-size: 14px;
        padding: 20px 0;
    }
    .footer_items_doc p{
        text-align: left;
    }
}

/* DOP DOG */
.wrapper_doc p, .wrapper_doc li{
    font-size:16px;
    margin: 0 0 20px;
    font-weight: 300;
    line-height: 1.4;
}
.wrapper_doc li{
    margin: 0 0 20px;
}
.wrapper_doc h3{
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 20px;
}
h3{
    font-size: 20px;
    font-weight: 700;
}
.contact_i li{
    max-width: 400px;
    margin: 0 0 7px;
}
.contact_i a{
    color: #000;
    font-weight: 700;
}
.footer_text{
    font-size: 14px;
    max-width: 900px;
    font-style: italic;
    margin-top: 20px;
}
.wrapper_doc  ul{
    list-style: numbers;
}
.wrapper_doc  ol{
    list-style: lower-alpha;
}
.wrapper_doc{
    padding: 50px 0 100px;
}
.wrapper_doc li{
    margin: 0 0 10px;
    margin-left: 20px;
}
.wrapper_doc h2{
    font-size: 26px;
    text-align: center;
    margin: 0 0 30px;
}


/* /FORM */
.flag {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url('./flags/flags.png') no-repeat;
    vertical-align: middle;
    background-position: 32px 32px;
  }
  .form_box{
    max-width: 370px;
    padding: 20px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  } 
  .form_box input{
    padding: 16px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    border: none;
    outline: 1px solid #999;
    border-radius: 13px;
    margin: 0 0 10px;
  }
  .iti{
    width: 100%;
    margin: 0 0 10px;
  }
  .form_box input:focus, .form_box input:active{
    outline-color: aqua;
  }
  .submit_btn, .style_btn{
    display: block;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    font-size: 20px;
    cursor: pointer;
    transition: all .3s linear;
    background: #516dae;
    color: #fff;
    border: 2px solid #000;
    border-radius: 13px;
  }
  .submit_btn:hover, .style_btn:hover{
    background: #fff;
    color: #000;
  }
  .style_btn{
    max-width: 300px;
  }
  #contain_footer{
    padding: 30px 0 0;
    background: #1e330a;
    color: #c0c0c0;
  }
  .f_contain_contact .top_wi{
    max-width: 100%;
  }
  .f_contain_contact h2{
    color: #fff;
  }
  .f_contain_contact h3{
    color: rgb(255, 253, 240);
    margin: 0 0 10px;
  }
  .f_contain_contact .contact_i li{
    color: #c0c0c0;
  }
  .f_contain_contact .contact_i a{
    color: #fff;
  }
  .f_contain_contact .grid_im{
    text-align: center;
  }
  .sov_block iframe{
    width: 100%;
    height: 40vh;
  }
  .f_contain_us h2{
    color: bisque;
  }
  #contain_footer {
    background-color: #1b1b1b; /* Темный фон */
    color: #e0e0e0; /* Светлый текст */
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

#contain_footer a {
    color: #5cb85c; /* Зеленый акцент */
    text-decoration: none;
    transition: color 0.3s ease;
}

#contain_footer a:hover {
    color: #3e8e41;
}

.footer_contain {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer_contain .logo img {
    width: 160px;
    margin-bottom: 20px;
}

.footer_text {
    flex: 1 1 100%;
    margin-bottom: 30px;
    font-size: 1rem;
}

.contact_i, .footer_disclaimer {
    flex: 1 1 300px;
    margin-bottom: 30px;
}

.contact_i h3, .footer_disclaimer h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact_i ul, .footer_items_doc ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact_i ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer_disclaimer p {
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* Секция документов и ссылок */
.footer_items_doc {
    flex: 1 1 100%;
    margin-top: 20px;
    text-align: center;
}

.footer_items_doc ol {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
}

.footer_items_doc ol li a {
    font-size: 0.9rem;
}

.footer_items_doc p {
    font-size: 0.8rem;
    color: #888;
}

/* Адаптивность */
@media (max-width: 768px) {
    .footer_contain {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact_i, .footer_disclaimer {
        flex: 1 1 100%;
    }
    .footer_items_doc ol {
        flex-direction: column;
        gap: 10px;
    }
}
  @media screen and (max-width: 992px) {
    .list_2 li{
        width: 45%;
    }
  }
  @media screen and (max-width: 767px) {
    .logo{
        width: 100px;
    }
    h1{
        font-size: 30px;
    }
    h2{
        font-size: 24px;
    }
    .list_2, .list_3{
        grid-template-columns: 1fr;
        gap: 16px;
    }
    main>div{
        padding: 60px 0;
    }
    .grid_cont{
        display: flex;
        gap: 0;
        flex-direction: column;
    }
    .grid_im{
        order: 1;
    }
    .top_wi{
        padding: 30px 15px;
    }
    .list_2 li{
        width: 100%;
    }
  }