* {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
  outline: none !important;
}

html {
  scroll-behavior: smooth;
  min-height: 100vh;
}

body {
  background-color: #000;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding: 0;
  margin: 0;
  position: relative;
}

.container {
  max-width: 1170px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.main_header_wrap {
  background-color: #FCF5FF;
}

.main_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 75px;
}

.image-logo-wrap {
  max-width: 326px;
  width: 100%;
  display: flex;
  justify-content: left;
  height: inherit;
}
@media (max-width: 991px) {
  .image-logo-wrap {
    max-width: 244px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
  }
}
.image-logo-wrap .logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  padding: 3px 0;
}
.image-logo-wrap .logo img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.text-logo-wrap {
  display: flex;
  justify-content: left;
}
@media (max-width: 991px) {
  .text-logo-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
  }
}
.text-logo-wrap .logo {
  font-size: 18px;
  text-transform: uppercase;
  font-family: inherit;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 20px;
  white-space: nowrap;
  border-radius: 6px;
  width: fit-content;
  height: auto;
  text-decoration: none;
  font-weight: 500;
}
@media (max-width: 768px) {
  .text-logo-wrap .logo {
    font-size: 16px;
  }
}
@media (max-width: 380px) {
  .text-logo-wrap .logo {
    font-size: 13px;
  }
}

.main_header_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-left: 20px;
}

.main_header_menu_item,
.main_header_bar_menu_item,
.main_header_bar_menu_link {
  font-weight: 500;
  color: #2f334e;
  text-decoration: none;
}

.main_header_bar_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 75px;
}
@media (max-width: 769px) {
  .main_header_bar_menu {
    display: none;
  }
}

.main_header_bar_menu_item.dropdown:hover .dropdown_content {
  display: block;
}

.main_header_bar_menu_item {
  position: relative;
}

.dropdown {
  margin: 0;
}

.dropdown .dropdown_content {
  position: absolute;
  top: 100%;
  left: -20%;
  border: 1px solid #ddd;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 10;
  width: 100%;
  min-width: 178px;
  background-color: #fcf5ff;
  margin: 0;
  padding: 0;
  display: none;
}

.main_header_bar_menu_link svg {
  transition: transform 0.3s ease;
}

.main_header_bar_menu_link svg.rotate-up {
  transform: rotate(180deg);
}

.dropdown:hover .dropdown_content {
  display: block;
}

.dropdown_item {
  display: block;
  color: #333;
  text-decoration: none;
  width: 80%;
  text-align: center;
  padding: 12px 0;
  border-bottom: 1px solid #333;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 500;
}

.mobile-only {
  display: none;
  margin: 0;
}

.desktop-only {
  display: block;
}

@media (max-width: 540px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
.main_title_block_wrap {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main_title_block {
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

h1 {
  font-size: 48px;
  text-align: center;
  margin: 0;
  font-weight: 500;
}

.text_section_wrap {
  padding: 45px 0;
}

.text_section p {
  margin: 0 0 40px;
  color: #fff;
  font-weight: 300;
}

.text_section_title {
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 40px;
  text-align: center;
}

.cta_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  text-decoration: none;
  height: 48px;
  border-radius: 24px;
  padding: 0 23px;
  background-color: #00b67a;
  width: fit-content;
  margin: 0 auto;
}

.cookie_block.cookie-desktop-show {
  display: block;
}
@media (max-width: 991px) {
  .cookie_block.cookie-desktop-show {
    display: none;
  }
}
.cookie_block.cookie-mobile-show {
  display: block;
}
@media (min-width: 992px) {
  .cookie_block.cookie-mobile-show {
    display: none;
  }
}
.cookie_block .cookie_block_btn {
  position: fixed;
  bottom: 28px;
  right: 38px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 999;
}
@media (max-width: 991px) {
  .cookie_block .cookie_block_btn {
    right: 17px;
    border: 34px;
  }
}
.cookie_block .cookie_popup {
  position: fixed;
  bottom: 81px;
  right: 38px;
  width: 281px;
  padding: 22px 20px 18px;
  border-radius: 12px;
  display: none;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
  z-index: 10001;
}
.cookie_block .cookie_popup.visible {
  display: flex;
  transform: translateY(0);
}
.cookie_block .cookie_popup .cookie_popup_title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
.cookie_block .cookie_popup .cookie_popup_title_wrap .cookie_popup_title {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  width: 80%;
}
.cookie_block .cookie_popup .cookie_popup_title_wrap svg {
  position: absolute;
  top: -7px;
  right: -8px;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.cookie_block .cookie_popup p {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
}
.cookie_block .cookie_popup .cookie_popup_accept_btn,
.cookie_block .cookie_popup .cookie_popup_customize_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  flex-shrink: 0;
  min-width: 189px;
  width: fit-content;
  margin: 0 auto;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  line-height: normal;
  border-radius: 100px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease-out;
  padding: 9px 23px;
  cursor: pointer;
  border: none;
}
@media (max-width: 991px) {
  .cookie_block .cookie_popup {
    right: 17px;
  }
}

.cookie_popup_overlay {
  position: fixed;
  top: 0;
  right: -1000px;
  width: 424px;
  height: 100%;
  overflow-y: auto;
  scrollbar-gutter: stable;
  z-index: 1000;
  transition: left 0.3s ease-in-out;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie_popup_overlay.open {
  right: 0;
}
.cookie_popup_overlay .cookie_popup_title_block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 70px 43px 0;
}
.cookie_popup_overlay .cookie_popup_title_block .cookie_popup_title {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
}
.cookie_popup_overlay .cookie_popup_title_block .cookie_popup_text {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  margin: 0;
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_title_block .cookie_popup_text {
    font-weight: 500;
  }
}
.cookie_popup_overlay .cookie_popup_title_block .cookie_popup_close {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 24px;
  right: 29px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_title_block .cookie_popup_close {
    width: 21px;
    height: 21px;
    top: 21px;
    right: 20px;
  }
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_title_block {
    padding: 70px 20px 0 16px;
  }
}
.cookie_popup_overlay .cookie_popup_body_block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #2F334E;
  padding-bottom: 16px;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 43px;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .cookie_popup_title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .switch .switch__input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .switch .switch__svg {
  display: block;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .switch .switch__svg .bg {
  transition: fill 200ms ease, fill-opacity 200ms ease;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .switch .switch__svg .knob {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), fill 200ms ease;
  will-change: transform;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .switch__input:checked + .switch__svg .knob {
  transform: translateX(32px);
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .switch__input:not(:checked) + .switch__svg .knob {
  transform: translateX(0);
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .switch:has(.switch__input:focus-visible) .bg {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .bg,
  .cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .knob {
    transition: none;
  }
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row {
    padding: 0 20px 0 16px;
  }
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  padding: 0 43px;
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_text {
    font-weight: 500;
    padding: 0 20px 0 16px;
  }
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_link {
  display: flex;
  border: none;
  background: transparent;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-decoration: underline;
  padding: 0 43px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_link {
    padding: 0 20px 0 16px;
  }
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list {
  background: #ECECEC;
  list-style: none;
  margin: 0;
  padding: 24px 43px;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list.is-hidden {
  display: none;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #2F334E;
  padding: 16px 0;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item:first-child {
  padding-top: 0;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item .cookie_kv {
  display: flex;
  gap: 54px;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item .cookie_kv dt,
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item .cookie_kv dd {
  margin: 0;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item .cookie_kv dt {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  min-width: 100px;
  max-width: 100px;
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item .cookie_kv dt {
    min-width: 78px;
    max-width: 78px;
  }
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item .cookie_kv dd {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item .cookie_kv {
    gap: 34px;
  }
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list {
    padding: 18px 20px 18px 16px;
  }
}
.cookie_popup_overlay .cookie_popup_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 338px;
  height: 40px;
  padding: 9px 23px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
  text-transform: uppercase;
  border: none;
  margin: 0 auto;
  border-radius: 100px;
  margin-bottom: 16px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_btn {
    max-width: 286px;
  }
}
@media (max-width: 640px) {
  .cookie_popup_overlay {
    width: 322px;
  }
}

.main_footer_wrap {
  background-color: #1c1f33;
  padding: 50px 0;
}

.main_footer {
  position: relative;
}

.footer_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 50px;
}

.footer_logo {
  height: 28px;
  display: block;
  flex-shrink: 0;
  margin: 0 15px 0 0;
}
.footer_logo img {
  display: block;
  height: 100%;
}

.footer_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 20px 0 20px auto;
  position: relative;
}
.footer_menu > a {
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  margin: 0 0 0 25px;
}
.footer_menu > a:hover {
  text-decoration: underline;
}

.footer_text {
  margin: 0 0 45px;
}
.footer_text p {
  font-weight: 300;
  margin: 0 0 15px;
}

.awareness_block {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0 0 50px;
}
.awareness_block img {
  display: block;
}

.footer_copyright {
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}

.mobile_menu_btn,
.menu_close_btn {
  display: none;
}

@media (max-width: 1024px) {
  .main_header_menu_item {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .main_subtitle {
    display: none;
  }
  .container {
    padding: 0 10px;
  }
  .main_header_wrap .container {
    padding: 0;
  }
  .main_header {
    height: 48px;
    position: relative;
  }
  .mobile_menu_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    margin: 0 0 0 10px;
  }
  .mobile_menu_btn img {
    display: block;
    width: 18px;
  }
  .main_header_menu {
    position: fixed;
    bottom: 100%;
    left: 0;
    top: 0;
    width: 100%;
    flex-direction: column;
    z-index: 999;
    transform: translateY(-1000px);
    transition: all 0.3s ease-in-out;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    gap: 0;
    padding: 0;
  }
  .main_header_menu.show {
    transform: translateY(0);
  }
  .main_header_menu .main_header_bar_menu_item {
    margin: 0;
    font-size: 18px;
    background-color: #fcf5ff;
    padding: 10px;
    width: 100%;
    text-align: center;
    border-radius: 0;
    border-bottom: 1px solid #2f334e;
  }
  .main_header_menu .main_header_bar_menu_item .dropdown_content {
    display: none;
  }
  .main_header_menu .main_header_bar_menu_link svg {
    display: none;
  }
  .menu_close_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: none;
    background: #fcf5ff;
    font-size: 18px;
    padding: 10px;
    color: #2f334e;
    font-weight: 500;
    border-radius: 0 0 16px 16px;
  }
  .main_title_block {
    padding: 15px 0;
    min-height: 150px;
  }
  h1 {
    font-size: 24px;
    text-transform: uppercase;
  }
  .text_section_wrap {
    padding: 35px 0 70px;
  }
  .text_section_wrap .container {
    padding: 0 15px;
  }
  .text_section p {
    font-size: 14px;
  }
  .text_section_title {
    font-size: 24px;
  }
  .main_footer_wrap {
    padding: 60px 0 80px;
  }
  .main_footer_wrap .container {
    padding: 0 40px;
  }
  .main_footer {
    display: flex;
    flex-direction: column;
  }
  .footer_header {
    flex-wrap: wrap;
    order: 1;
    margin: 0 0 15px;
  }
  .footer_logo {
    height: 21px;
    margin: 0 auto;
  }
  .footer_menu {
    flex-wrap: wrap;
    margin: 30px 0;
    width: 100%;
  }
  .footer_menu a {
    width: 50%;
    margin: 0;
  }
  .footer_menu a:nth-child(2n) {
    text-align: right;
    margin-left: auto;
  }
  .footer_text {
    order: 3;
    margin: 0 0 10px;
  }
  .footer_text p {
    font-size: 12px;
    text-align: center;
  }
  .awareness_block {
    order: 2;
    justify-content: space-between;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    transform: translateX(-10px);
    margin: 0 0 10px;
  }
  .awareness_block .awareness_block_item {
    margin: 0 10px 25px;
    display: block;
  }
  .awareness_block .awareness_block_item:nth-child(1) img {
    width: 36px;
  }
  .awareness_block .awareness_block_item:nth-child(2) img {
    width: 68px;
  }
  .awareness_block .awareness_block_item:nth-child(3) img {
    width: 132px;
  }
  .awareness_block .awareness_block_item:nth-child(4) img {
    width: 100px;
  }
  .awareness_block .awareness_block_item:nth-child(5) img {
    width: 78px;
  }
  .awareness_block .awareness_block_item:nth-child(6) img {
    width: 140px;
  }
  .footer_copyright {
    order: 5;
    font-size: 12px;
  }
}
@media (max-width: 540px) {
  .main_title_block_wrap {
    background-position: center bottom;
  }
}

/*# sourceMappingURL=main.css.map */
