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;
}
.grid_item svg {
  min-width: 40px;
}
body {
    line-height: 1.3;
  font-family: "Cabin", sans-serif;
    background: #e8e3e3;
}
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%;
}
#cookieSection.display-right {
    right: 30px;
    bottom: 30px;
    max-width: 395px;
}

#cookieSection.light {
    background-color: #dcdcdcd0; 
    color: #012439 !important;
    box-shadow: 0 2px 5px #fff;
}
.wrapper_dop{
    background: #fff;
}
.wrapper_dop h1{
    color: #000;
}
#cookieSection {
    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;
    }
}

#cookieSection #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;
}

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

#cookieSection .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;
}

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

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

#cookieSection.light p,
#cookieSection.light ul { 
   color: #012439 !important;
    line-height: 1.3;
}

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

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

#cookieSection .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;
}

#cookieSection button {
    outline: 0;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: #012439;

    color: #fff;
}

#cookieSection .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 */

.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;
  }


  .logo{
    max-width: 160px;
    display: block;
}
.header_nav_links ul{
    display: flex;
    gap: 30px;
}
.header_nav_links 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_nav_links ul{
        flex-direction: column;
        padding:100px 30px 40px;
    }
    .header_nav_links{
        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_nav_links.show{
        max-width: 400px;
        width: 100%;
    }
    #cookieSection.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;
}
 
@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_dop p, .wrapper_dop li{
    font-size:16px;
    margin: 0 0 20px;
    font-weight: 300;
    line-height: 1.4;
}
.wrapper_dop li{
    margin: 0 0 20px;
}
.wrapper_dop h3{
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 20px;
}
.wrapper_dop  ul{
    list-style: numbers;
}
.wrapper_dop  ol{
    list-style: lower-alpha;
}
.wrapper_dop{
    padding: 50px 0 100px;
}
.wrapper_dop li{
    margin: 0 0 10px;
    margin-left: 20px;
}
.wrapper_dop 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; 
    width: 100%;
    box-sizing: border-box;
  }  
    .faq-section h2 {
      color: #004080;
      font-size: 2.2rem;
      margin-bottom: 10px;
      font-weight: 700;
      border-bottom: 3px solid #004080;
      display: inline-block;
      padding-bottom: 6px;
    }
    .faq-section p.description {
      color: #444;
      font-size: 1.1rem;
      margin-bottom: 30px;
      max-width: 700px;
    }
    .faq-item {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
      margin-bottom: 18px;
      overflow: hidden;
      max-width: 800px;
      transition: box-shadow 0.3s ease;
    }
    .faq-item:hover {
      box-shadow: 0 4px 16px rgb(0 0 0 / 0.15);
    }
    .faq-question {
      background-color: #004080;
      color: #fff;
      padding: 18px 24px;
      cursor: pointer;
      border: none;
      width: 100%;
      text-align: left;
      font-size: 1.2rem;
      font-weight: 600;
      transition: background-color 0.3s ease;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .faq-question:hover {
      background-color: #003060;
    }
    .faq-answer {
      padding: 20px 24px;
      font-size: 1rem;
      color: #333;
      display: none;
      border-top: 1px solid #ddd;
      background-color: #fefefe;
    }
    .faq-question::after {
      content: '+';
      font-size: 1.5rem;
      transition: transform 0.3s ease;
      color: #ffa500;
    }
    .faq-item.active .faq-question::after {
      content: '−';
      transform: rotate(180deg);
    }
    .faq-item.active .faq-answer {
      display: block;
    }
    /* Responsive */
    @media (max-width: 600px) {
      .header_nav { 
        gap: 15px;
      }
      .header_nav_links ul { 
        gap: 12px;
      }
      main h1 {
        font-size: 2rem;
      }
    }
  .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: rgb(202, 193, 4);
  }
  html{
    scroll-behavior: smooth;
  }
  .submit_button{
    display: block;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    font-size: 20px;
    background: #000;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    transition: all .3s linear;
  }
  .btn{
    display: block;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    font-size: 20px;
    background: #000;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    max-width: 200px;
    text-align: center;
    transition: all .3s linear;
  }
  .btn:hover{
    background: #fff;
    color: #000;
  }
  .submit_button:hover{
    background: #fff;
    color: #000;
  }
  .main_top{
    position: relative;
    background: #000000bf;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main_top::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url(./w_img/main.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.form_container{
    position: relative;
    background: #000000cc;
    color: #dddddd;
}
.main_top_r::before{
    background: url(./w_img/i4.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.main_top_g::before{
    background: url(./w_img/1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.main_top_g3::before{
    background: url(./w_img/5.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.form_container::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url(./w_img/f.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.grid_section_r>div{
    max-width: 900px;
}
.grid_section_r li{
    margin: 0 0 20px 20px;
    list-style: disc;
}
.grid_section_r li span{
    font-weight: 600;
    text-transform: uppercase;
    display: block;
}
h1{
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 30px;
}
.py{
    padding: 70px 0;
}
.top_contant>div{
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.top_contant p{
    color: #c3c3c3;
}
header{
    padding: 10px 0;
}
.act_grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}
p{
    margin-bottom: 20px;
}
h2{
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 20px;
}
.ram_block{
    background: #012439;
    color: #ffffffd3;
}
.grid_items{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
 
h3{
    font-size: 18px;
    font-weight: 600;
}
.grid_items h3{
    margin: 10px 0;
}
.grid_items p{
    font-size: 14px;
}
.form_container h3{
    margin: 30px 0 20px;
}
.form_container a{
    color: rgb(8 176 230);
    font-weight: 600;
}
.form_box p{
    font-weight: 600;
    color: rgb(8 176 230);
    text-align: center;
}
.form_container li{
    margin: 5px 0;
}
.grid_form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.form_box{
    margin:  0 auto;
    padding: 20px;
    border-radius: 20px;
    background: #000000cc;
}
.form_box form{
    color: #000;
}
.grid_form iframe{
    max-width: 600px;
    width: 100%;
    margin-top: 20px;
}
.grid_img{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.faq-item {
    margin-bottom: 15px;
    background-color: #f4f4f4;
    border-radius: 8px;
}
.full_img{
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-sizing: 0 10px 40px #06518782;
}
.full_img img{
    display: block;
    max-width: 1000px;
    max-height: 1000px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.faq-question {
    width: 100%;
    padding: 15px;
    background-color: #77685d;
    color: white;
    border: none;
    text-align: left;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
}

.faq-question:hover {
    background-color: #000000;
}

.faq-answer {
    padding: 15px;
    background-color: #f9f9f9;
    display: none;
    border-radius: 0 0 8px 8px;
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
}
.grid_section {
  background-color: #f7f7f7;
  padding: 80px 0;
}

.section_header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section_header h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 20px;
}

.section_header p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.grid_items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.grid_item {
  background: #ffffff;
  box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
  transition: transform 0.3s ease;
  text-align: center;
}

.grid_item:hover {
  transform: translateY(-5px);
}

.grid_item img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.grid_item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.grid_item p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}
footer {
  background-color: #1e1e1e;
  color: #f0f0f0;
  padding: 60px 0 30px 0;
  font-family: 'Segoe UI', sans-serif;
}

.footer_contain {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer_top h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer_top p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.footer_links_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer_links h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer_links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_links ul li {
  margin-bottom: 10px;
}

.footer_links ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer_links ul li a:hover {
  color: #ffffff;
}

.footer_links p {
  font-size: 14px;
  line-height: 1.5;
  color: #cccccc;
}

.footer_links a {
  color: #cccccc;
  text-decoration: none;
}

.footer_links a:hover {
  color: #ffffff;
}
.footer_links_grid a{
    color: antiquewhite;
}
.footer_bot {
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 13px;
  color: #aaaaaa;
}

.footer_bot p {
  margin: 5px 0;
}

@media screen and (max-width:767px) {
    h1{
        font-size: 30px;
    }
    .top_contant>div{
        text-align: left;
    }
    .logo{
        max-width: 80px;
    }
    .container{
        padding: 0 10px;
    }
    .act_grid{
        display: flex;
        flex-direction: column;
    }
    h2{
        font-size: 24px;
    }
    .grid_items{
        flex-direction: column;
        max-width: 420px;
        width: 100%;
        margin: 0 auto 30px;
    }
    .grid_items div{
        width: 100%;
    }
    .grid_form{
        display: flex;
        flex-direction: column;
    }
    .grid_img{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}