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%;
}
#cookieNotice.display-right {
    right: 30px;
    bottom: 30px;
    max-width: 395px;
}

#cookieNotice.light {
    background-color: #ffffff;
    color: #393d4d; 
    box-shadow: 0 2px 5px #aaa5a5;
}

#cookieNotice {
    box-sizing: border-box;
    position: fixed;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 6px rgb(0 0 0 / 25%);
    font-family: inherit;
    z-index: 999997; 
    overflow: hidden;
    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;
    }
}

#cookieNotice #closeIcon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    color: #bfb9b9;
    overflow: hidden;
    opacity: 0.85;
    z-index: 999999;
    position: absolute;
    top: 0;
    right: 0;
    background: url(./w_img/icon.png) 0 0 / 20px 20px no-repeat;
}

#cookieNotice * {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

#cookieNotice .title-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background: url(./w_img/icon.png) 0 0 / 40px 40px no-repeat;
    padding-left: 45px;
    height: 40px;
}

#cookieNotice .title-wrap svg {
    margin-right: 10px;
}

#cookieNotice h4 {
    font-family: inherit;
    font-weight: 700;
    font-size: 18px;
}

#cookieNotice.light p,
#cookieNotice.light ul {
    color: #393d4d;
    color: #bfb9b9;
    line-height: 1.3;
}

#cookieNotice p,
#cookieNotice ul {
    font-size: 14px;
    margin-bottom: 20px;
}

#cookieNotice .btn-wrap {
    display: flex;
    flex-direction: row;
    font-weight: 700;
    justify-content: center;
    margin: 0 -5px 0 -5px;
    flex-wrap: wrap;
}

#cookieNotice .btn-wrap button {
    flex-grow: 1;
    padding: 0 7px;
    margin: 0 5px 10px 5px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    min-width: 130px;
    line-height: 36px;
    border: none;
    font-family: inherit;
    font-size: 16px;
    transition: box-shadow 0.3s;
}

#cookieNotice button {
    outline: 0;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background:#003994;
    color: #fff;
    border-radius: 2px !important;
}

#cookieNotice .btn-wrap 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);
}
/* BURGER */

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


  .logo{
    max-width: 160px;
    display: block;
}
.header_icons ul{
    display: flex;
    gap: 30px;
}
.header_icons a{
    color: #ffffffcf;
    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) {
    .nav-icon-5{
        display: inline-block;
        z-index: 200;
    }
    .header_icons ul{
        flex-direction: column;
        padding:100px 30px 40px;
    }
    .header_icons{
        position: absolute;
        top: 0;
        right: 0;
        height: 100vh;
        box-sizing: border-box;
        background: #403933;
        border: 1px solid #999;
        max-width: 0px;
        z-index: 150;
        overflow: hidden;
        transition: all .4s linear;
    }
    .header_icons.show{
        max-width: 400px;
        width: 100%;
    }
    #cookieNotice.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_linl{
    display: flex;
    gap: 50px;
    justify-content: center;
    padding: 30px 0;
}
.footer_linl a{
    transition: all .3s linear;
    color: #414141;
}
.footer_bot p{
    font-size: 13px;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #414141;
}
@media screen and (max-width: 767px) {
    .footer_linl{
        flex-direction: column;
        justify-content: start;
        gap: 10px;
        font-size: 14px;
        padding: 20px 0;
    }
    .footer_bot 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%;
    box-sizing: border-box;
  } 
  .top_sc, .top_sc_2{
    position: relative;
    min-height: 100vh;
    background: #000000ae;
    padding: 0 0 100px;
  }
  h1{
    font-size: 40px;
    font-weight: 800; 
    margin: 0 0 30px;
    color: rgb(6, 97, 3);
    margin: 0 0 30px;
    line-height: 1.4;
    font-style: italic;
  }
  .top_sc::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; 
    left: 0;
    background: url(./w_img/bg1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .top_sc_4::before{
    background: url(./w_img/bg22.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .top_sc2::before{
    background: url(./w_img/bg2.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .top_sc1::before{
    background: url(./w_img/bg10.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .top_sc3::before{
    background: url(./w_img/bg3.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .top_sc4::before{
    background: url(./w_img/bg4.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .form_box input, textarea{
    padding: 16px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    border: none;
    background: #ffffffbc;
    outline: 1px solid #999;
    border-radius: 4px;
    margin: 0 0 10px;
  }
  .top_sec{
    max-width: 900px;
    text-align: center;
    padding: 20px;
    width: 90%;
    box-sizing: border-box;
    background: #ffffff8d;
    box-shadow: 0 10px 40px #ffffff8d;
    margin: 30px auto 0;
  }
  .top_sc_2{
    min-height: 40vh !important;
  }
      .top_sc_2::before{
        content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(./w_img/bg4.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    }
  .iti{
    width: 100%;
    margin: 0 0 10px;
  }
  .form_box input:focus, .form_box input:active{
    outline-color: #dc9302;
  }
  .submit_btn{
    display: block;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    font-size: 20px;
    cursor: pointer;
    background: #e26205;
    color: #fff;
    border-radius: 4px;
    transition: all .3s linear;
    border: none;
  }
  .submit_btn:hover{
    background: #dc9302;
  }
.py{
    padding: 80px 0;
}
h2{
    font-size: 25px;
    font-style: italic;
    margin: 0 0 20px;
}
.benefits-list{
    margin: 30px 0 0; 
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.kontakt-info p, .kontakt-info li{
    color: #fff;
}
.benefits-list li{
    padding: 16px;
    border-radius: 10px;
    width: 30%;
    background: #fff;
    box-sizing: border-box;
    box-shadow:  0 3px 10px #ab85b9;
}
strong{
    font-weight: 600;
    color: #003994;
}
main{
    position: relative;
}
.top_sec p{
    color: #000000;
    font-size: 20px;
    font-style: italic;
}
main::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
    left: 0;
    background: url(./w_img/bbb.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    opacity: .1;
}
.howitworks{
    background: #ffffff;
    
}
.how-it-works-list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap:20px;
    margin-top: 30px;
}
.how-it-works-list li{
    border-left: 3px solid #ab85b9;
    padding-left: 20px;
}
.conclusion>div{
    padding:30px ;
    position: relative;
   background: #000000ae;
}
.conclusion>div::before{
    content:"";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(./w_img/rr.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.form_block{
    position: relative;
    background: #000000ae;
}
.form_block::before{
    content:"";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(./w_img/form.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.form_header{
    color: #fff;
}
.form_box{
    margin: 0 auto;
}
.center_contain{
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.conclusion p{
    font-size: 18px;
    color: #ffffffcb;
}
.related_articles{
    background:linear-gradient(#94d5ec57, #770e726b);
    color: #fff;
}
.related_articles a{
    color: #e26205;
    transition: all .3s linear;
}
.related_articles a:hover{
    color: #dc9302;
}
.related_articles  li{
    margin: 10px 0 10px;
}
.contact{
    margin: 20px 0 0;
}
.contact li{
    margin: 10px 0;
}
.contact a{
    color: #e26205;
}
footer{
    padding-top: 30px;
}
html{
    scroll-behavior: smooth;
}
header{
    padding-top: 10px;
}
@media screen and (max-width: 767px) {
    h1{
        font-size: 28px;
    }
    .benefits-list{
        display: flex;
        flex-direction: column;
        max-width: 420px;
        margin: 30px auto 0;
    }
    .how-it-works-list{
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 30px auto 0;
    }
    .logo{
        max-width: 120px;
    }
    #business-model ul{
        flex-direction: column;
        gap: 20px !important;
        display: flex !important;
    }
    h2{
        font-size: 30px !important;
        text-align: center;
    }
}