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

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

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

body {
  background-color: #fff;
  color: #3B3F4A;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1238px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .container {
    padding: 0 16px;
  }
}

.main_header_wrap {
  width: 100%;
  box-shadow: 0 15px 30px 0 rgba(119, 123, 146, 0.1);
}
.main_header_wrap .main_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  gap: 0 56px;
}
.main_header_wrap .main_header .header_mobile_menu_btn {
  display: block;
  padding: 0;
  background: none;
  border: none;
  width: 16px;
  height: 16px;
}
@media (min-width: 993px) {
  .main_header_wrap .main_header .header_mobile_menu_btn {
    display: none;
  }
}
@media (max-width: 992px) {
  .main_header_wrap .main_header .header_mobile_menu_btn {
    display: block;
    padding: 0;
    background: none;
    border: none;
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
  }
  .main_header_wrap .main_header .header_mobile_menu_btn .icon-menu {
    width: 16px;
    height: 16px;
  }
  .main_header_wrap .main_header .header_mobile_menu_btn .icon-close {
    width: 21px;
    height: 21px;
  }
}
.main_header_wrap .main_header .header_logo {
  width: 100%;
  max-width: 192px;
  height: 100%;
  max-height: 36px;
}
.main_header_wrap .main_header .header_logo img {
  height: inherit;
  width: inherit;
  max-width: inherit;
  max-height: inherit;
}
@media (max-width: 768px) {
  .main_header_wrap .main_header .header_logo {
    max-width: 121px;
    max-height: 18px;
  }
}
.main_header_wrap .main_header .main_header-wrapper .header_menu {
  display: flex;
  align-items: center;
  padding: 0;
  gap: 56px;
  flex-wrap: wrap;
}
.main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item,
.main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item_link {
  color: #242B46;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  align-items: center;
  gap: 16px;
  position: relative;
}
.main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item > a,
.main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item_link > a {
  cursor: pointer;
}
.main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item > a svg,
.main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item_link > a svg {
  transition: transform 0.3s ease;
  width: 16px;
  height: 16px;
}
.main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item > a svg.rotate-up,
.main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item_link > a svg.rotate-up {
  transform: rotate(180deg);
}
.main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item .dropdown_content,
.main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item_link .dropdown_content {
  position: absolute;
  top: 48px;
  left: -120px;
  border: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 10;
  width: 361px;
  background-color: rgba(50, 68, 87, 0.8980392157);
  color: #fff;
  margin: 0;
  padding: 14px 24px;
  border-radius: 0 0 8px 8px;
  grid-template-columns: repeat(2, 1fr);
  justify-items: flex-start;
  gap: 15px 86px;
  align-items: center;
  display: none;
}
.main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item .dropdown_content .dropdown_content-arrow,
.main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item_link .dropdown_content .dropdown_content-arrow {
  background: rgba(47, 51, 78, 0.9);
  clip-path: polygon(50% 15%, 0% 100%, 100% 100%);
  width: 26px;
  height: 11px;
  position: absolute;
  top: -10px;
  left: 43%;
  z-index: 100;
}
.main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item .dropdown_content .dropdown_item,
.main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item_link .dropdown_content .dropdown_item {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .main_header_wrap .main_header .main_header-wrapper .header_menu {
    display: none;
  }
}
@media (max-width: 768px) {
  .main_header_wrap .main_header {
    gap: 14px;
    padding: 10px 0;
    justify-content: flex-start;
    height: 38px;
  }
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: flex;
}

@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;
  display: flex;
  align-items: center;
  min-height: 327px;
}
.main_title_block_wrap .main_title_block {
  max-width: 716px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main_title_block_wrap .main_title_block .page_title {
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 768px) {
  .main_title_block_wrap .main_title_block .page_title {
    font-size: 26px;
  }
}
.main_title_block_wrap .main_title_block .main_subtitle {
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 768px) {
  .main_title_block_wrap .main_title_block .main_subtitle {
    font-size: 16px;
  }
}

.content_wrap .content_body_wraw {
  margin-top: 24px;
  display: flex;
  gap: 24px;
}
.content_wrap .content_body_wraw .content_left_sidebar {
  max-width: 197px;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #f5f5f5;
  padding: 33px 22px;
}
.content_wrap .content_body_wraw .content_left_sidebar .content_left_sidebar_title {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 29px;
}
.content_wrap .content_body_wraw .content_left_sidebar .content_left_sidebar_list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 29px;
}
.content_wrap .content_body_wraw .content_left_sidebar .content_left_sidebar_list li {
  cursor: pointer;
}
.content_wrap .content_body_wraw .content_left_sidebar .content_left_sidebar_list li a {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  color: #3B3F4A;
}
@media (max-width: 1300px) {
  .content_wrap .content_body_wraw .content_left_sidebar {
    display: none;
  }
}
.content_wrap .content_body_wraw .content_block .text_section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.content_wrap .content_body_wraw .content_block .text_section .content_info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.content_wrap .content_body_wraw .content_block .text_section .content_info h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}
.content_wrap .content_body_wraw .content_block .text_section .content_info p {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.content_wrap .content_body_wraw .content_block .text_section .content_info ul {
  margin: 0;
}
.content_wrap .content_body_wraw .content_block .text_section .content_info ul li {
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.content_wrap .content_body_wraw .content_right_sidebar {
  max-width: 256px;
  width: 100%;
  height: 141px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0px 4px 24px 0px rgba(208, 212, 215, 0.25);
  background-color: #F5F5F5;
}
.content_wrap .content_body_wraw .content_right_sidebar .right_sidebar_block {
  padding: 36px 26px;
  border-radius: 8px;
  background-color: #fff;
}
.content_wrap .content_body_wraw .content_right_sidebar img {
  width: 100%;
  max-width: 171px;
  max-height: 36px;
  height: 100%;
}
@media (max-width: 1300px) {
  .content_wrap .content_body_wraw .content_right_sidebar {
    display: none;
  }
}

#backToTopBtn {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  cursor: pointer;
  bottom: 44%;
  right: 6%;
  z-index: 9;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 4px grey;
}

.cookie_block .cookie_block_btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 9999;
}
.cookie_block .cookie_popup {
  position: fixed;
  bottom: 92px;
  right: 14px;
  width: 281px;
  padding: 20px;
  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%;
}
.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 {
  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;
  height: 36px;
  flex-shrink: 0;
  max-width: 189px;
  width: 100%;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: box-shadow 0.3s ease-out;
  padding: 0 23px;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
@media (max-width: 991px) {
  .cookie_block .cookie_block_btn {
    display: none;
  }
}

.main_footer_wrap {
  background-color: #242b46;
  color: #fff;
  padding: 52px 0;
  margin-top: 52px;
}
.main_footer_wrap .main_footer {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}
.main_footer_wrap .main_footer .main_footer_block-left {
  display: flex;
  flex-direction: column;
  gap: 43px;
}
.main_footer_wrap .main_footer .main_footer_block-left .footer_logo {
  display: block;
}
.main_footer_wrap .main_footer .main_footer_block-left .footer_logo img {
  display: block;
  max-width: 192px;
  height: 36px;
  width: 100%;
  pointer-events: none;
}
.main_footer_wrap .main_footer .main_footer_block-left .footer_address-title {
  font-size: 14px;
  line-height: normal;
  font-weight: 700;
}
.main_footer_wrap .main_footer .main_footer_block-left .footer_address-text {
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
}
.main_footer_wrap .main_footer .main_footer_block-left .footer_copyright {
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}
.main_footer_wrap .main_footer .main_footer_block-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.main_footer_wrap .main_footer .main_footer_block-right .footer_menu {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.main_footer_wrap .main_footer .main_footer_block-right .footer_menu li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.main_footer_wrap .main_footer .main_footer_block-right .footer_disclosure__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.main_footer_wrap .main_footer .main_footer_block-right .footer_disclosure__text p {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
.main_footer_wrap .main_footer .main_footer_block-right .footer_disclosure__text span {
  color: #0D99FF;
}

@media (max-width: 992px) {
  .main_header_menu_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .main_header_menu_overlay.show {
    display: flex;
  }
  .padding-link-mobile {
    padding: 17px 44px 17px 23px;
  }
  .main_header_wrap .main_header .main_header-wrapper .header_menu {
    position: relative;
    top: 40px;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: auto;
    background-color: #324457;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    z-index: 1000;
    transition: left 0.3s ease-in-out;
    transform: translateY(-1000px);
    padding: 0;
  }
  .main_header_wrap .main_header .main_header-wrapper .header_menu.show {
    left: 0;
    transform: translateY(0);
    gap: 0;
    max-height: 80%;
    overflow-y: auto;
    padding-top: 10px;
  }
  .main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item,
  .main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item_link {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
    color: #fff;
    text-align: left;
  }
  .main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item svg,
  .main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item_link svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
  }
  .main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item .dropdown_content,
  .main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item_link .dropdown_content {
    position: static;
    top: 0;
    grid-template-columns: none;
    border-radius: 0;
    width: 100%;
    gap: 27px;
  }
  .main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item .dropdown_content .dropdown_content-arrow,
  .main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item_link .dropdown_content .dropdown_content-arrow {
    display: none;
  }
  .main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item .desktop-only,
  .main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item_link .desktop-only {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item .main_header_bar_menu_link,
  .main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item_link .main_header_bar_menu_link {
    color: #fff;
  }
  .main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item .main_header_bar_menu_link svg,
  .main_header_wrap .main_header .main_header-wrapper .header_menu .header_menu_item_link .main_header_bar_menu_link svg {
    stroke: #fff;
  }
}
@media (max-width: 768px) {
  .main_title_block_wrap {
    min-height: 246px;
  }
  .main_footer_wrap {
    margin: 40px 0 0;
  }
  .main_footer_wrap .main_footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
  }
  .main_footer_wrap .main_footer .main_footer_block-left {
    gap: 24px;
  }
  .main_footer_wrap .main_footer .main_footer_block-left .footer_logo img {
    max-width: 138px;
    height: 23px;
  }
  .main_footer_wrap .main_footer .main_footer_block-left .footer_copyright {
    display: block;
    position: absolute;
    bottom: -34px;
  }
  .main_footer_wrap .main_footer .main_footer_block-right .footer_menu {
    display: flex;
    flex-direction: column;
  }
  .main_footer_wrap .main_footer .main_footer_block-right .footer_menu li a {
    font-size: 14px;
  }
  .main_footer_wrap .main_footer .main_footer_block-right .footer_disclosure__text {
    font-size: 12px;
  }
  #backToTopBtn {
    width: 40px;
    height: 40px;
  }
}

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