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: "Open Sans", 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%;
}
 

#container_cookies {
    box-sizing: border-box;
    position: fixed;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 6px 6px rgb(0 0 0 / 25%);
    font-family: inherit;
    z-index: 999; 
    overflow: hidden;
    max-width: 500px;
    background: #e8f3fa;
    width: 100%;
    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;
    }
}
 
#container_cookies .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;
}
#container_cookies  button { 
    padding: 0 7px;
    margin: 0 5px 10px 5px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    min-width: 130px;
    color: #fff;
    line-height: 36px;
    border: none;  
    font-size: 14px;
    transition: box-shadow 0.3s;
}
.for{
    text-align: center;
}
#container_cookies button {
    outline: 0;
    border: none; 
    background: #014708;
}
#container_cookies a{
    color: rgb(12, 86, 2);
    font-weight: 600;
}

#container_cookies  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_box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;

}
.grid_img{
    height: 100%;
}
.grid_img img{
    max-width: 1000px;
    max-height: 1000px;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
h1{
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 20px;
    text-transform: uppercase;
}
p{
    line-height: 1.6;
    margin: 0 0 20px;
}
h2{
    font-size: 32px;
    font-weight: 600;
    max-width: 800px;
    margin: 0 0 20px;
}
.th_block{
    background: #799e7811;
}
.grid_cokkies{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
}
.fuul_block p{
    padding: 10px;
    background: #7a789e5b;
    max-width: 900px;
    margin: 0 auto;
}
.consultation_block{
    background: #7a789e5b;
}
.wrapper>div{
    padding: 80px 0;
}
#container_cookies .btn-secondary{
    background: #414141;
}
.top_cont{
    background: #7a789e5b;
}
/* icon_burger */

.icon_burger{
    width: 30px;
    height: 25px; 
    position: relative;
    cursor: pointer;
    display: none;
  }
  .icon_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
  }
  .icon_burger span:nth-child(1){
    top:0px;
    left: 0px;
  }
  .icon_burger span:nth-child(2){
    top:10px;
    left: 0px;
    opacity:1;
  }
  .icon_burger span:nth-child(3){
    bottom:0px;
    left: 0px;
  }
  .icon_burger:not(.open):hover span:nth-child(1){
    transform: rotate(-3deg) scaleY(1.1);
  }
  .icon_burger:not(.open):hover span:nth-child(2){
    transform: rotate(3deg) scaleY(1.1);
  }
  .icon_burger:not(.open):hover span:nth-child(3){
    transform: rotate(-4deg) scaleY(1.1);
  }
  .icon_burger.open span:nth-child(1){
    transform: rotate(45deg);
    top: 13px;
  }
  .icon_burger.open span:nth-child(2){
    opacity:0;
  }
  .icon_burger.open span:nth-child(3){
    transform: rotate(-45deg);
    top: 13px;
  }
header{
    box-shadow: 0 1px 5px #0d3d712f;
}

  .logo{
    max-width: 220px;
    display: block;
}
.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) {
    .icon_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%;
    }
    #container_cookies.light{
        box-sizing: border-box;
        right: 10px;
        bottom: 10px;
        width: 95%;
    }
}

/* STYLE */
.container {
    padding: 0 20px;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
 




/* FOOTER */
.footer_item{
    display: flex;
    gap: 40px;
    justify-content: center;
    padding: 30px 0 15px;
}
.top_cont_us{
    background: #0d3d712f;
}
.list_gr{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
b{
    font-weight: 700;
}
.list_gr li{
    padding: 20px;
    font-size: 14px;
    text-align: center;
    background: #0d3d712f;
}
.list_grid li{
    padding: 20px;
    font-size: 14px;
    text-align: center;
    background: #0d3d712f;
    width: 30%;
    box-sizing: border-box;
}
.list_grid{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.list li{
    font-weight: 500;
    margin: 0 0 10px 20px;
    list-style: disc;
}
.th_grid{
    background: #0d3d7111; 
}
.list_gr b{
    display: block;
    text-align: center;
    font-size: 18px;
    margin: 0 0 10px;
}
.footer_item a{
    transition: all .3s linear;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
}
.footer_item a:hover{
    color: #014708;
}
.footer_items p{
    font-size: 13px;
    text-align: center;
    padding: 10px 0 0;
    margin: 0;
    border-top: 1px solid #414141;
}
@media screen and (max-width: 767px) {
    .footer_item{
        flex-direction: column;
        justify-content: start;
        gap: 10px;
        font-size: 14px;
        padding: 20px 0;
    }
    .footer_items 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;
}
.wrapper_doc  ul{
    list-style: numbers;
}
.wrapper_doc  ol{
    list-style: lower-alpha;
}
.wrapper_doc{
    padding: 0 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_items{
    max-width: 380px;
    padding: 20px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  } 
  .form_items input{
    padding: 16px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    border: none;
    outline: 1px solid #999;
    border-radius: 14px;
    margin: 0 0 10px;
  }
  .iti{
    width: 100%;
    margin: 0 0 10px;
  }
  .form_items input:focus, .form_items input:active{
    outline-color: rgb(0, 78, 17);
  }
  .submit_btn{
    display: block;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    font-size: 20px;
    border-radius: 14px;
    border: none;
    box-shadow: 0 1px 5px #414141;
    background: #014708;
    transition: all .3s linear;
    color: #fff;
    cursor: pointer;
  }
  .submit_btn:hover{
    background: #004579;
  }
  .footer_contain{
    padding: 40px 0 10px;
    background: #2a382aa2;
  }
  h3{
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
  }
  .footer_grid{
    display: grid;
    grid-template-columns: auto 300px;
    gap: 40px;
  }
  .contact_block li{
    margin: 0 0 10px;
  }
  .contact_block a{
    font-weight: 600;
    color: #000;
    transition: all .3s linear;
  }
  .contact_block a:hover{
    color: #014708;
  }
  .footer_grid p{
    font-style: italic;
    font-size: 14px;
  }
  .read_more .submit_btn{
    max-width: 200px;
    text-align: center;
    display: block;
    font-size: 16px;
  }
  .news_item{
    max-width: 400px;
    margin: 0 auto;
  }
  .news{
    padding: 20px;
    background: #2a363814;
    text-align: center;
  }
  .news_content{
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
    background: #fff;
  }
  html{
    scroll-behavior: smooth;
  }
  .new_cour .list_grid li {
    padding: 20px;
    font-size: 16px;
    text-align: left;
    background: #7a789e5b;
    width: 30%;
        text-align: center;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all .3s ease;
    list-style: none;
}
.grid_cokkies{
    gap: 20px;
}
 .new_cour .list_grid li strong{
    display: block;
    font-weight: 800;
    font-size: 1.2rem;
    margin-top: auto;
 }
  .new_cour .list_grid li  b{
    text-transform: uppercase;
    text-align: center;
    margin: 0  0 20px;
    display: block;
  }
  .new_cour  .list_grid li:hover {
    background: #a6c4a959;
}

  @media screen  and (max-width: 767px){
    .grid_box{
        display: flex;
        flex-direction: column;
    }
    .grid_img{
        order: 1;
    }
    .footer_grid{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    h1{
        font-size: 30px;
    }
    h2{
        font-size: 25px;
    }
    .wrapper>div{
        padding: 50px 0;
    }
    .list_gr{
        display: flex;
        flex-direction: column;
    }
    .list_grid{
        display: flex;
        flex-direction: column;
        gap: 16px; 
    }
    .wrapper_doc>div{
        padding: 50px 20px;
    }
    .list_grid li{
        width: 100%;
    }
    .news_content h1{
        font-size: 28px;
    }
    .news_content{
        padding: 30px 10px;
    }
    .logo{
        width: 170px;
    }
  }