*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-weight: 400;
  text-rendering: optimizeSpeed;

}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h2 {}

a:hover {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button:focus {
  outline: none;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

:root {
  --color-main: #000;
  --color-accent: #ff6600;

  --container-width: 1200px;
  --padding: 15px;

  --transition: 0.3s ease;
}

.d_flex {
  display: flex;
}

.d_flex_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.d_grid {
  display: grid;
}

.d_grid_center {
  place-content: center;
}

.hidden {
  display: none;
}

.container {
  max-width: 1440px;
  padding: 0 15px;
  margin: 0 auto;
}

.burger_block {
  display: none;
}

.burger-menu-wraper {
  display: none;
  width: 45px;
  height: 27px;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  margin-right: 15px;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: black;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 12px;
}

#nav-icon3 span:nth-child(4) {
  top: 24px;
}

#nav-icon3.show-menu span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

#nav-icon3.show-menu span:nth-child(2) {
  transform: rotate(45deg);
}

#nav-icon3.show-menu span:nth-child(3) {
  transform: rotate(-45deg);
}

#nav-icon3.show-menu span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.mobile_menu {
  display: none;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
  background: #FAFAFA;
  /* box-shadow: 0px 4px 4px 0px rgba(239, 239, 239, 0.50); */
  transition: 0.8s cubic-bezier(0.01, -0.02, 0, 0.79);
  border-bottom: 1px solid lightgray;
}

.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  transition: 0.4s;
}

@media (min-width: 992px) {
  .header.sticky .header_wrapper {
    padding: 10px 0;
  }
}

.menu-header ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

.menu-header ul li a {
  color: #2D3944;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  transition: 0.4s;
}

/* .menu-header ul li a:hover {
  color: #693DB4;
} */

.header_right-side {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (min-width: 992px) {
  .header.sticky .header_num {
    font-size: 20px;
  }
}

.dropdown_lang .dropdown_menu a,
.header_lang__btn span {
  transition: 0.3s;
  font-size: 18px;
  font-weight: 500;
  padding-right: 13px;
}

.header_lang__btn {
  border-radius: 30px;
  background: #ECEFF6;
  width: 76px;
  height: 50px;
  position: relative;
  z-index: 5;
}

.header_lang__btn svg {
  position: absolute;
  top: 21px;
  right: 27%;
}

.dropdown_lang .dropdown_menu a:hover {
  color: var(--main-color);
}

.dropdown_lang .dropdown_menu {
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 27px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background: #ECEFF6;
  width: 76px;
  padding-bottom: 10px;
  padding-top: 20px;
  z-index: 1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.dropdown_lang.open .dropdown_menu {
  opacity: 1;
  visibility: visible;
}

.dropdown_item.disabled {
  display: none;
}

.dropdown_lang {
  position: relative;
  top: 0;
}



.top_section {
  height: 80vh;
}









@media(max-width: 992px) {

  .menu-header {
    display: none;
  }

  .burger_block {
    display: flex;
    align-items: center;
    gap: 25px;
  }

  .burger-menu-wraper {
    display: block;
  }

  .mobile_menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    translate: 0 -120%;
    z-index: 50;
    background-color: white;
    position: fixed;
    inset: 0;
    padding: 100px 15px 100px;
    /* background-image: url(/wp-content/uploads/2023/10/mobile-menu-bg.svg); */
    /* background-repeat: no-repeat;
    background-size: cover; */
    overflow: auto;
  }

  .mobile_menu.show-menu {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
  }

  .mobile_menu .menu-header {
    display: block;
  }

  .logo_wrapper,
  .burger-menu-wraper {
    position: relative;
    z-index: 55;
    background: white;
  }

  .menu-header ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-header ul li a {
    font-size: 20px;
  }
}