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: "Noto 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%;
}
 p{
    line-height: 1.6;
 }

#container_cook {
    box-sizing: border-box;
    position: fixed;
    background: #e3e3e3;
    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: 400px;
    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_cook .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_cook  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;
}

#container_cook button {
    outline: 0;
    border: none; 
    background: #02345a;
}
#container_cook a{
    color: #02345a;
}

#container_cook  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;
}
#container_cook .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
  }
  .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;
  }
h2{
    font-size: 28px;
    font-style: italic;
    font-weight: 600;
    margin: 0 0 20px;
    text-align: center;
}
h3{
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    color: rgb(2, 35, 78);
}
.list_items li{
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 5px #999;
    width: 30%;
    background: #f1f8fe;
    box-sizing: border-box;
    text-align: center;
}
.list_items{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
  .logo{
    max-width: 130px;
    display: block;
    padding: 10px 0;
}
main>div{
    padding: 80px 0;
    box-sizing: border-box;
}
.whay_we{
    background: #e3e3e3;
    position: relative;
}
p{
    margin: 0 0 20px;
    line-height: 1.5;
}
.whay_we::before{
    content: "";
    display: block;
    width: 48%;
    height: 100%; 
    background: url(./w_img/bg.jpg) no-repeat;
    background-size: cover;
    background-position: right; 
    position: absolute;
    top:0;
    right: 0;
}
 
.whay_we2::before{
    background: url(./w_img/22.jpg) no-repeat;
    background-size: cover;
    background-position: right; 
   
}
.content_path{
    width: 50%;
}
.f_block{
    position: relative;
    background: #000000d9;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.f_block::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%; 
    background: url(./w_img/b1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    position: absolute;
    top:0;
    left: 0;
}
.f_block_us::before{
    background: url(./w_img/us.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.f_block_contact::before{
    background: url(./w_img/23.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.f_block_prog::before{
    background: url(./w_img/24.jpg) no-repeat;
    background-size: cover;
    background-position: center; 
}
.fonance_block_2{
    background: #f1fcfe;
}
iframe{
    display: block;
    width: 100%;
}
.f_block_contact{
    min-height: 50vh;
}
.grid_box h2{
    text-align: left;
}
b{
    font-weight: 600;
}
.list_i li{
    margin: 0 0 10px 20px;
    list-style: disc;
}
.grid_box{
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
}
.grid_img{
    height: 100%;
}
.grid_img img{
    max-width: 1000px;
    max-height: 1000px;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.content_center{
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.financial_stability{ 
    margin: 0 auto;
    text-align: center;
}
.content_path li{
    margin: 0 0 20px;
}
 
.content_path li h3{
    margin: 0;
}
.content_center p{
    color: rgba(255, 255, 255, 0.698);
}
.form_block_pop {
    display: none;  
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Затемнение фона */
    justify-content: center;
    align-items: center;
}

.pop_contain {
    background: white;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    box-sizing: border-box;
    border-radius: 10px;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
}

.form_box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.submit_btn { 
    border: none;
    cursor: pointer;
}
.content_center .line{
    font-weight: 500;
    font-size: 20px;
    color: #fef1f1;
    font-style: italic;
    margin: 0 0 20px;
}
h1{
    font-size: 50px;
    font-style: italic;
    font-weight: 600;
    color: rgb(3, 114, 211);
    margin: 0 0 30px;
}
.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;
    box-shadow: 0 1px 5px #e3e3e3;
}
 

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




/* FOOTER */
.dop_page{
    display: flex;
    gap: 50px;
    justify-content: center;
    padding: 30px 0 15px;
}
.dop_page a{
    transition: all .3s linear;
    color: #414141;
    font-size: 14px;
}
.footer_items p{
    font-size: 12px;
    margin: 0;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #414141;
}
@media screen and (max-width: 767px) {
    .dop_page{
        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: 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: 340px;
    padding: 20px;
    width: 100%;
    margin: 0 auto;
    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: 4px;
    margin: 0 0 10px;
  }
  .iti{
    width: 100%;
    margin: 0 0 10px;
  }
  .form_box input:focus, .form_box input:active{
    outline-color: aqua;
  }
  .submit_btn{
    display: block;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    font-size: 20px;
    cursor: pointer;
  }
  .btn_register_style{
    background: #02345a;
    padding: 15px;
    max-width: 320px;
    border-radius: 4px;
    width: 100%;
    font-weight: 600;
    box-sizing: border-box;
    display: block;
    text-align: center;
    border:1px solid transparent;
    margin: 0 auto;
    color: #fff;
    transition: all .3s linear;
}
.btn_register_style:hover{
    background: #fff;
    color: #02345a;
    border:1px solid #02345a;
}
.list_items_course li{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
}
#footer_box{
    background: #002a442c;
    padding: 26px  0 0;
}
#center_f{
    text-align: center;
    font-style: italic;
    font-size: 14px;
    max-width: 900px;
    margin: 0 auto;
}
#center_f .logo{
    margin: 0 auto 20px;
}
.contact li{
    margin: 0 0 10px;
}
.contact a{
    color: #02345a;
    font-weight: 600;
    transition: all .3s linear;
}
.contact a:hover{
    color: #000;
}
@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%;
    }
    #container_cook.light{
        box-sizing: border-box;
        right: 10px;
        bottom: 10px;
        width: 95%;
    }
}
@media screen and (max-width: 767px) {
    .list_items li {
        width: 100%;
    }
    h1{
        font-size: 30px;
    }
    h2{
        font-size: 24px;
    }
    .logo{
        max-width: 100px;
    }
    .whay_we::before{
        width: 100%;
        opacity: .2;
        z-index: -1;
    }
    .content_path{
        width: 100%;
    }
    .whay_we{
        background: #c0c0c057;
    }
    .grid_box{
        display: flex;
        flex-direction: column;
    }
    .grid_img{
        order: 1;
    }
}