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.4;
    font-family: "PT 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%;
}
 

#cookies_section {
    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;
    background: #fff;
    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;
    }
}
 
#cookies_section .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;
}
#cookies_section  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;
}

#cookies_section button {
    outline: 0;
    border: none; 
    background: #084771;
}
.wrapp_contain>div{
    padding: 60px 0;
    box-sizing: border-box;
}
.title{
    font-size: 40px;
    font-style: italic;
    font-weight: 800;
    margin: 0 0 20px; 
    text-shadow: 0 1px 1px #000;
    color: #fbf3e5;
}
.top_screen{
    position: relative;
    background: linear-gradient(113deg, rgba(11, 15, 25, 0.733) 19%, rgba(36, 5, 1, 0.396) 74%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.background_more {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  overflow: hidden;
  position: relative;
}

.action.highlight {
  max-width: 800px;
  margin: 0 auto; 
  animation: fadeInUp 1.2s ease forwards;
} 

.faq_section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq_item {
    background: white;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq_item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.faq_item h3 {
    font-size: 1.2rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq_item h3::before {
    content: "❓"; /* Можно заменить на другую иконку */
    font-size: 1.3rem;
}

.faq_item p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    margin-top: 10px;
}

.faq_item.active p {
    max-height: 500px; /* Достаточно для длинного текста */
    opacity: 1;
}

/* --- Иконка стрелки --- */
.faq_item h3::after {
    content: "⬇️";
    margin-left: auto;
    transition: transform 0.3s ease;
}

.faq_item.active h3::after {
    transform: rotate(180deg);
}

/* --- Мобильная адаптация --- */
@media (max-width: 768px) {
    .top_screen .title {
        font-size: 2rem;
    }

    .top_screen p {
        font-size: 1rem;
    }
}

.action.highlight h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700; 
  position: relative;
}

.action.highlight p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
  opacity: 0.95;
}

.cta-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ✨ Анимация появления снизу */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🌟 Эффект лёгкого сияния текста */
.action.highlight h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff9800, #ffcc00);
  animation: glow 2.5s ease-in-out infinite alternate;
}

@keyframes glow {
  from { opacity: 0.6; transform: translateX(-50%) scaleX(0.8); }
  to { opacity: 1; transform: translateX(-50%) scaleX(1.2); }
}
p{
    margin: 0 0 20px;
}
.wrapp_contain>div{
    padding: 60px 0;
}
.action{
    background: linear-gradient(13deg, rgba(1, 11, 55, 0.866) 19%, rgba(26, 1, 36, 0.748) 74%);
    padding: 10px; 
    color: #ffffffed;
    width: 100%;
    box-sizing: border-box;
    font-weight: 600;
    border-radius: 20px;
    max-width: 600px;
    box-shadow: 0 10px 20px rgba(226, 226, 227, 0.557) ;
    margin: 0 auto;
}
.top_screen>div{
    max-width: 900px;
    text-align: center;
}
h2{
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    margin: 0 0 20px;
}
.center_ram{
    position: relative;
    background: linear-gradient(13deg, rgba(27,1,6,0.8660057773109244) 19%, rgba(1,19,36,0.748358718487395) 74%);
    padding: 40px;
    color: #ffffffb7;
}
.ram_box h2{
    color: #fff;
}
.center_ram::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url(./w_img/ram.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
 
.background_more{
    position: relative;
    background: linear-gradient(13deg, rgb(1 27 16 / 87%) 19%, rgba(1, 19, 36, 0.748358718487395) 74%);
} 
.form_contein h3{
    text-align: center;
}
.text_bli{
    max-width: 700px;
    margin: 0 auto 30px;
    color: #ffffff;
    text-align: center;
}
.course_card{
    padding: 30px;
    background: #ffffffbf;
    border-radius: 20px;
}
.course_card button{
    border-radius: 30px;
    display: block;
    margin-top: 30px;
}
.courses_section{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.list li{
    margin: 10px 0;
    font-weight: 600;
}
.background_more h2{
    color: #e9980c;
    text-align: center;
}
.senr_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
h3{
    font-weight: 600;
    text-transform: uppercase;
    font-style: italic;
    font-size: 18px;
    margin: 0 0 10px;
}
.container_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.top_screen p{
    color: #ffffff;
}
.grid_img{
    height: 100%;
}
.grid_img img{
    max-width: 1000px;
    max-height: 700px;
    object-fit: cover;
    object-position: center;
    height: 100%;
}
.top_screen::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url(./w_img/t1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
#cookies_section a{
    color: #084771;
}

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


  .logo{
    max-width: 160px;
    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;
}
 

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




/* FOOTER */
.footer_document_container{
    display: flex;
    gap: 10px;
    flex-direction: column;
    padding: 30px 0;
}
footer{
    padding: 30px 0 10px;
}
.footer_document_container a{
    transition: all .3s linear;
    color: #414141;
}
.footer_items p{
    font-size: 13px;
    text-align: center;
    margin: 0;
    font-style: italic;
    padding: 10px 0;
    border-top: 1px solid #414141;
}
.contact_items{
    max-width: 300px;
}
.contact_items a{
    color: #414141;
    font-weight: 600;
}
 
.left_g p{
    font-weight: 600;
    font-style: italic;
}
@media screen and (max-width: 767px) {
    .footer_document_container{
        flex-direction: column;
        justify-content: start;
        gap: 10px;
        font-size: 14px;
        padding: 20px 0;
    }
    .footer_items p{
        text-align: left;
    }
}

/* DOP DOG */
.document_container p, .document_container li{
    font-size:16px;
    margin: 0 0 20px;
    font-weight: 300;
    line-height: 1.4;
}
.document_container li{
    margin: 0 0 20px;
}
.document_container h3{
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 20px;
}
.document_container  ul{
    list-style: numbers;
}
.document_container  ol{
    list-style: lower-alpha;
}
.document_container{
    padding: 50px 0 100px;
    text-align: left;
    background: #eeedf4ed;
}
.document_container li{
    margin: 0 0 10px;
    margin-left: 20px;
}
.document_container h2{
    font-size: 26px;
    text-align: center;
    margin: 0 0 30px;
}
.text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeDown 0.8s ease forwards;
}

.text p {
  max-width: 800px;
  margin: 0 auto 25px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444;
  animation: fadeUp 1s ease forwards;
}

.text .extra {
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  animation: fadeUp 1.2s ease forwards;
}

.text .action {
  margin-top: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e3a8a;
  background: #e0ecff;
  display: inline-block;
  padding: 14px 25px;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  animation: fadeIn 1.5s ease forwards;
}

.text .action:hover {
  transform: scale(1.05);
  background: #d6e4ff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.15);
}

/* animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.center_ram {
  font-family: "Inter", sans-serif;
  padding: 90px 20px;
  color: #1f2937;
  text-align: center;
}

.center_ram .ram_box {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeIn 1.2s ease forwards;
}
h2{
    font-style: italic;
}
.center_ram h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #f5ec4e, #f2f7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.center_ram p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #f8f8f8;
  max-width: 850px;
  margin: 0 auto 30px;
}

.center_ram .action {
  margin-top: 30px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e40af;
  background: #e0ebff;
  display: inline-block;
  padding: 16px 30px;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.15);
  transition: all 0.3s ease;
}

.center_ram .action:hover {
  transform: scale(1.05);
  background: #d6e4ff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.2);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
/* /FORM */
.flag {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url('./flags/flags.png') no-repeat;
    vertical-align: middle;
    background-position: 32px 32px;
  }
  .form_send{
    max-width: 360px;
    padding: 20px 0;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  } 
  .form_send input, .form_send textarea{
    padding: 16px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    border: none;
    outline: 1px solid #999;
    border-radius: 40px;
    margin: 0 0 10px;
  }
  .form_send{
    text-align: center;
  }
  .contct_foot{
    padding: 60px 0;
    box-shadow: inset 1px 10px 50px #414141;
  }
  .iti{
    width: 100%;
    margin: 0 0 10px;
  }
  .list li{
    color: #ffffffb7;
  }
  .list a{
    color: #e9980c;
  }
  .footer_links a{
    color: #000;
    font-weight: 600;
  }
  html{
    scroll-behavior: smooth;
  }
  .form_send input:focus, .form_send input:active{
    outline-color: rgb(255, 162, 0);
  }
  .submit_btn , .btn_go{
    display: block;
    text-align: center;
    color: #fff;
    margin-top: 30px;
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: navajowhite;
    box-sizing: border-box;
    transition: all .3s linear;
    font-size: 20px;
     border-radius: 40px;
    cursor: pointer;
    background: rgb(236, 130, 0);
  }
  .btn_go{
    font-size: 14px;
    max-width: 200px;
    text-align: center;
    color: #fff;
    font-weight: 600;
  }
  .submit_btn:hover, .btn_go:hover{
    background: rgb(236, 75, 0);
    color: #fff;
  }
  .conten_send{
    position: relative;
    background: linear-gradient(13deg, rgba(27,1,6,0.8660057773109244) 19%, rgba(1,19,36,0.748358718487395) 74%);
} 
.background_more_el::before{
    opacity: .2;
}
.top_screen2::before{
    background: url(./w_img/in.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.top_screen_blog::before{
    background: url(./w_img/t2.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.ram_box_el::before{
    background: url(./w_img/elem.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
footer {
  background: linear-gradient(135deg, #f8f9fc, #eaf2ff);
  color: #333;
  padding: 60px 0 20px;
  font-family: "Inter", sans-serif;
  border-top: 3px solid #89a7ff;
}

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

.footer_logo img {
  width: 130px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.footer_logo img:hover {
  transform: scale(1.08);
}

footer h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #243a73;
}

footer p, footer li {
  font-size: 0.95rem;
  line-height: 1.6;
}

footer a {
  color: #2b57ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #001e90;
  text-decoration: underline;
}

.footer_contact ul,
.footer_links ul,
.footer_legal ul {
  list-style: none;
  padding: 0;
}

.footer_contact li,
.footer_links li,
.footer_legal li {
  margin-bottom: 8px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #666;
  background: #f0f4ff;
  padding: 10px 12px;
  border-radius: 8px;
  margin-top: 15px;
}

.footer_bottom {
  text-align: center;
  border-top: 1px solid #ccd6ff;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #555;
}
.top_screen_1::before{
    background: url(./w_img/1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.top_screen_2::before{
    background: url(./w_img/2.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.top_screen_3::before{
    background: url(./w_img/3.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.top_screen_4::before{
    background: url(./w_img/4.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.faq_contain{
    background: #edf4efed;
}
.footer_grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:0 30px;
    align-items: center;
    justify-content: space-between;
}
.conten_send h2{
    color: #fff;
}
.conten_send p, .senr_grid>div:first-child li{
    color: #ffffffb7;
}
.conten_send h3{
    color: rgb(236, 130, 0);
}
header{
    padding: 10px 0;
}
.ram_boxs{
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(13deg, rgba(27,1,6,0.8660057773109244) 19%, rgba(1,19,36,0.748358718487395) 74%);
    margin: 0 0 20px;
    color: #ffffffb7;
}
.ram_boxs h3{
    color: #fff;
}
.courses_section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f6f8fb, #eaf1ff);
  font-family: "Inter", sans-serif;
}

.course_card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 30px 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  transform: translateY(0);
}

.course_card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

.course_card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  z-index: -1;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(99,132,255,0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.course_card:hover::before {
  opacity: 1;
}

.course_card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #2b2b2b;
}

.course_card p {
  font-size: 0.98rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.course_card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.course_card ul li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: #333;
}

.price {
  font-weight: bold;
  font-size: 1.1rem;
  color: #1b6cf2;
  margin: 15px 0 20px;
}

.submit_btn {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(90deg, #3d7fff, #5eb4ff);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px rgba(61,127,255,0.3);
}

.submit_btn:hover {
  background: linear-gradient(90deg, #5eb4ff, #3d7fff);
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(61,127,255,0.4);
}

/* Premium ve Pro kartları özel renklendirme */
.course_card.premium {
  border-top: 4px solid #ff9f43;
}

.course_card.premium .price {
  color: #ff9f43;
}

.course_card.pro {
  border-top: 4px solid #00c853;
}

.course_card.pro .price {
  color: #00c853;
}

/* Animasyon giriş efekti */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.course_card {
  animation: fadeUp 0.7s ease forwards;
}

.course_card:nth-child(1) { animation-delay: 0.1s; }
.course_card:nth-child(2) { animation-delay: 0.3s; }
.course_card:nth-child(3) { animation-delay: 0.5s; }
@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;
        min-height: 100vh;
        border: 1px solid #999;
        max-width: 0px;
        box-sizing: border-box;
        z-index: 150;
        overflow: hidden;
        transition: all .4s linear;
    }
    .header_navigate.show{
        max-width: 400px;
        width: 100%;
    }
    #cookies_section.light{
        box-sizing: border-box;
        right: 10px;
        bottom: 10px;
        width: 95%;
    }
}
@media screen and (max-width: 767px) {
    .logo{
        width: 100px;
    }
    .title{
        font-size: 28px;
    }
    .top_screen>div{
        text-align: left;
    }
    .container_grid{
        display: flex;
        flex-direction: column;
    }
    .grid_img{
        order: 1;
    }
    h2{
        font-size: 24px;
    }
    .ram_box{
        padding: 30px 10px;
    }
    .senr_grid{
        display: flex;
        flex-direction: column;
    }
    .footer_grid{
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }
    .courses_section{
        display: flex;
        flex-direction: column;
    }
}