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

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

body {
  background-color: #fff;
  color: #242b46;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 42px;
  line-height: 1;
  font-weight: 600;
  margin: 0 0 8px;
}

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

.dropdown_block__js {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.accordion_btn__js.active img {
  transform: rotate(180deg);
}

.hover_scale {
  transition: transform 0.2s ease;
}
.hover_scale:hover {
  transform: scale(1.04);
}

.section_title_with_border {
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin: 0;
  margin-bottom: 30px;
}

.main_header_wrap {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0 15px 30px 0 rgba(119, 123, 146, 0.1);
  height: 72px;
  display: flex;
  align-items: center;
  z-index: 100;
}

.main_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo {
  display: flex;
  align-items: center;
}
.header_logo img {
  height: auto;
  object-fit: contain;
  max-width: 284px;
  max-height: 46px;
}

.header_mobile_menu_btn {
  display: block;
  padding: 0;
  background: none;
  border: none;
  width: 16px;
  height: 16px;
}
.header_mobile_menu_btn svg {
  width: 100%;
  display: block;
}
@media (min-width: 993px) {
  .header_mobile_menu_btn {
    display: none;
  }
}

.header_mobile_menu_overlay {
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  background-color: rgba(59, 63, 74, 0.5);
}
.header_mobile_menu_overlay.active {
  display: block;
}
@media (min-width: 993px) {
  .header_mobile_menu_overlay {
    display: none;
  }
  .header_mobile_menu_overlay.active {
    display: none;
  }
}

.header_mobile_menu {
  position: fixed;
  min-height: 100vh;
  overflow-y: scroll;
  top: 0;
  right: -250px;
  width: 250px;
  padding: 20px;
  background-color: #ffffff;
  z-index: 999;
  transition: right 0.3s ease;
  list-style-type: none;
  margin: 0;
}
.header_mobile_menu.active {
  right: 0;
}
@media (min-width: 993px) {
  .header_mobile_menu {
    display: none;
  }
  .header_mobile_menu.active {
    display: none;
  }
}

.header_mobile_menu_item a {
  display: block;
  padding: 12px 15px;
  font-size: 15px;
  line-height: 22px;
  text-decoration: none;
  color: #242b46;
  font-weight: 500;
  margin: 0 0 5px;
}

.header_menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
  gap: 20px;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .header_menu {
    display: none;
  }
}

.header_menu_item {
  position: relative;
}
.header_menu_item > a {
  cursor: pointer;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #242b46;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: background-color 300ms cubic-bezier(0.5, 0, 0.5, 1), color 300ms cubic-bezier(0.5, 0, 0.5, 1);
}
.header_menu_item > a svg {
  fill: #242b46;
  transform: rotate(180deg);
  margin: 0 0 0 8px;
  transition: all 300ms cubic-bezier(0.5, 0, 0.5, 1);
}

.header_mobile_menu_close_btn {
  border: none;
  background: transparent;
  padding: 0 12px;
  position: absolute;
  top: 2%;
  right: 10px;
}

.header_submenu {
  position: absolute;
  top: 100%;
  left: 0;
  list-style-type: none;
  margin: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 24px rgba(137, 153, 175, 0.25);
  border-radius: 8px;
  padding: 20px;
  width: 203px;
  display: none;
}
.header_submenu:hover {
  display: block;
}

.header_submenu_item {
  margin: 0 0 30px;
}
.header_submenu_item:last-child {
  margin: 0;
}
.header_submenu_item a {
  text-decoration: none;
  color: #242b46;
  font-size: 14px;
  font-weight: 500;
  display: block;
}
.header_submenu_item a:hover {
  color: #1e73be;
}

.main_title_block_wrap {
  min-height: 420px;
  margin: 72px 0 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 17px 0 45px;
}
.main_title_block_wrap:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  transform: matrix(-1, 0, 0, 1, 0, 0);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.main_title_block {
  position: relative;
  z-index: 2;
  color: #ffffff;
  margin-top: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 993px) {
  .main_title_block {
    margin-top: 18px;
  }
}
.main_title_block > div {
  max-width: 700px;
}
.main_title_block .page_title {
  font-size: 36px;
  font-weight: 600;
  line-height: 54px;
  margin: 0 0 36px;
}
.main_title_block .main_subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
}
@media (max-width: 993px) {
  .main_title_block .main_subtitle {
    font-size: 20px;
    line-height: 30px;
  }
}
.main_title_block .main_title_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0px 4px 24px 0px rgba(208, 212, 215, 0.25);
  background: rgb(255, 255, 255);
  padding: 16px;
  margin: 0;
}
.main_title_block .main_title_block .main_title_block_link {
  border-radius: 8px;
  padding: 10px 34px;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  text-decoration: none;
  text-align: center;
  margin-top: 14px;
}
.main_title_block .main_title_block .main_title_block_logo {
  width: 191px;
  height: 86px;
  object-fit: contain;
}

.podium_brands_block_wrap {
  position: relative;
  z-index: 1;
  margin: -120px 0 0;
}
@media (max-width: 993px) {
  .podium_brands_block_wrap {
    margin: 0;
  }
}

.podium_brands_block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 48px;
  border-radius: 8px;
  background: rgb(240, 239, 244);
  padding: 16px;
  width: 100%;
  max-width: 738px;
  margin: 0 auto;
}
.podium_brands_block_item {
  display: flex;
  color: #1E73BE;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.podium_brands_block_item h4,
.podium_brands_block_item p {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
}

.content_wrap {
  margin: 15px 0 0;
  position: relative;
}
.content_wrap .container {
  display: flex;
  gap: 24px;
}

.content_block {
  max-width: 977px;
  width: 100%;
}

.content_pros_cons_block_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}
.content_pros_cons_block_items .content_pros_block_list,
.content_pros_cons_block_items .content_cons_block_list {
  list-style: none;
  padding: 0;
}
.content_pros_cons_block_items .content_pros_block_list li,
.content_pros_cons_block_items .content_cons_block_list li {
  display: flex;
  align-items: center;
  margin: 5px 0;
}

.content_endurance_block_wrap {
  padding: 26px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 8px;
  background: rgb(240, 239, 244);
}
.content_endurance_block_wrap .content_endurance_block_title_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 993px) {
  .content_endurance_block_wrap .content_endurance_block_title_block {
    flex-direction: column;
  }
}
.content_endurance_block_wrap .content_endurance_block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 993px) {
  .content_endurance_block_wrap .content_endurance_block {
    grid-template-columns: 1fr;
  }
}
.content_endurance_block_wrap .content_endurance_block .content_endurance_block_item_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content_endurance_block_wrap .content_endurance_block .content_endurance_block_item_title h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}
.content_endurance_block_wrap .content_endurance_block .content_endurance_block_item_title span {
  border-radius: 4px;
  background: rgb(30, 115, 190);
  padding: 4px 8px;
  font-size: 21px;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
  color: #fff;
}
.content_endurance_block_wrap .content_endurance_block .content_endurance_block_item_text {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.content_plan_block_wrap {
  margin: 60px 0;
}
.content_plan_block_wrap .content_plan_block_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}
.content_plan_block_wrap table {
  width: 100%;
}
.content_plan_block_wrap th,
.content_plan_block_wrap td {
  text-align: left;
  padding: 16px 26px;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}
.content_plan_block_wrap tr > th:first-child,
.content_plan_block_wrap tr > td:first-child {
  width: 30%;
}
.content_plan_block_wrap tr:nth-child(even),
.content_plan_block_wrap thead tr {
  background-color: #f0eff4;
}

.promotion_block_wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 60px 0;
}
.promotion_block_wrap .promotion_block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  position: relative;
}
.promotion_block_wrap .promotion_block .promotion_block_content {
  max-width: 440px;
  padding: 26px 22px;
}
.promotion_block_wrap .promotion_block .promotion_block_content h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: #187CB7;
}
.promotion_block_wrap .promotion_block .promotion_block_image {
  position: absolute;
  top: 17%;
  right: 10%;
  max-width: 220px;
  width: 100%;
}
@media (max-width: 993px) {
  .promotion_block_wrap .promotion_block .promotion_block_image {
    display: none;
  }
}
.promotion_block_wrap .promotion_block:nth-child(2) {
  padding: 14px 20px;
}
.promotion_block_wrap .promotion_block_logo {
  display: flex;
  gap: 20px;
  align-items: center;
}
.promotion_block_wrap .promotion_block_logo img {
  width: 100%;
  max-width: 50px;
}
.promotion_block_wrap .promotion_block_get_bonus {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  max-width: 175px;
  padding: 8px 24px;
  width: 100%;
  border-radius: 8px;
  text-align: center;
}

.faq_block_wrap {
  margin: 60px 0;
}
.faq_block_wrap h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}
.faq_block_wrap .faq_block h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin: 20px 0;
}
.faq_block_wrap .faq_block p {
  font-size: 14px;
  font-weight: 500;
}

.review_list {
  width: 100%;
}

.review_list_item {
  position: relative;
  border: 2px solid #1e73be;
  border-radius: 4px;
  transition-property: transform, box-shadow;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  margin: 0 0 10px;
}
.review_list_item:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 24px rgba(137, 153, 175, 0.25);
}
.review_list_item:first-child {
  border: 2px solid #d0b26e;
}
.review_list_item:first-child .review_list_item__pos_number {
  border: 2px solid #d0b26e;
  color: #d0b26e;
}

.highlight {
  border: 2px solid #d0b26e;
}
.highlight .review_list_item__pos_number {
  border: 2px solid #d0b26e !important;
  color: #d0b26e !important;
}

.review_list_item__pos_number {
  position: absolute;
  top: 50%;
  left: -13px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #1E73BE;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4;
  color: #1E73BE;
  background-color: #ffffff;
}
.review_list_item__pos_number:first-child {
  border: 2px solid #1E73BE;
  color: #1E73BE;
}

.review_list_item__ribbon {
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: 3;
  border-radius: 4px 0 0 0;
  clip-path: polygon(100% 0, 93% 50%, 100% 100%, 0 100%, 0 0);
  height: 25px;
  min-width: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 18px 0 15px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
}

.review_list_item__visible_part {
  padding: 10px 52px 5px 37px;
  position: relative;
  display: grid;
  grid-template-columns: 192px 1fr 166px;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
  align-items: stretch;
}

.review_list_item__logo_wrap {
  display: flex;
  align-items: center;
}

.review_list_item__logo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100px;
  width: 100%;
  display: block;
}

.review_list_item__promotion_wrap {
  max-width: 342px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}

.review_list_item__coupon_wrap {
  width: 280px;
  position: relative;
  padding: 6px 6px 16px;
}
.review_list_item__coupon_wrap:before {
  content: "Welcome offer";
  background-color: #1E73BE;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  display: block;
  width: 46%;
  height: 100%;
  padding: 4px 0;
  z-index: 1;
  text-align: center;
  border-radius: 5px 0 0 0;
  clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
}

.review_list_item__coupon_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.review_list_item__coupon {
  display: flex;
  align-items: center;
  background-color: #deecff;
  padding: 7px 3px;
}
.review_list_item__coupon img {
  display: block;
  flex-shrink: 0;
  width: 39px;
  margin: 0 15px 0 0;
}
.review_list_item__coupon p {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.14;
  margin: 0;
}

.review_list_item__advantages {
  margin: 5px 0 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
  min-width: 350px;
}
.review_list_item__advantages li {
  display: flex;
  align-items: flex-start;
  margin: 0 0 10px;
}
.review_list_item__advantages li img {
  display: block;
  flex-shrink: 0;
  width: 10px;
  margin: 0 7px 0 0;
}
.review_list_item__advantages li span {
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
}

.review_list_item__info_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 6px;
}

.content_endurance_block__rates_wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
  gap: 10px;
  align-content: space-between;
}

.content_endurance_block__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.review_list_item__rates_stars {
  grid-area: 1/1/2/2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review_list_item__rates_stars img {
  display: block;
  width: 16px;
  height: 16px;
}

.stars_wrap {
  pointer-events: none;
  cursor: default;
}

.content_endurance_block_item__rates_score {
  color: #fff;
  background-color: #1E73BE;
  border-radius: 4px;
  font-size: 21px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content_endurance_block__rates_word {
  font-size: 14px;
  font-weight: 700;
  text-align: end;
}

.review_list_item__visit_site {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 34px;
  border-radius: 8px;
  text-decoration: none;
  margin: 4px 0;
}

.review_list_item__phone {
  border-radius: 8px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 5px;
}
.review_list_item__phone img {
  display: block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin: 0 10px 0 0;
}
.review_list_item__phone span {
  font-size: 14px;
  font-weight: 700;
}

.review_list_item__visit {
  text-align: center;
}
.review_list_item__visit .review_list_item__visit_text {
  font-size: 12px;
  font-weight: 500;
  margin: 6px 0;
}
.review_list_item__visit .review_list_item__visit_link {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: #1E73BE;
}

.review_list_item__show_hide {
  display: flex;
  align-items: center;
  padding: 0 0 7px 37px;
  font-size: 14px;
  font-weight: 500;
  color: #1e73be;
  white-space: nowrap;
  text-decoration: underline;
  cursor: pointer;
}
.review_list_item__show_hide img {
  transition: transform 0.2s ease;
  display: block;
  width: 8px;
  margin: 0 6px 0 0;
  flex-shrink: 0;
}
.review_list_item__show_hide * {
  pointer-events: none;
}
.review_list_item__show_hide.active img {
  transform: rotate(180deg);
}

.review_list_item__hidden_part_wrap {
  overflow-y: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.review_list_item__hidden_part_wrap.active {
  max-height: fit-content !important;
}

.review_list_item__hidden_part {
  padding: 10px 0;
}

.review_list_item__dropdown_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 10px 0 20px;
  font-size: 14px;
  font-weight: 500;
  color: #1e73be;
  line-height: 1;
}
.review_list_item__dropdown_btn img {
  display: block;
  width: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.review_list_item__dropdown_btn * {
  pointer-events: none;
}
.review_list_item__dropdown_btn.active {
  padding: 10px 0;
}

.review_list_item__pros_cons_wrap {
  padding: 0 20px;
}

.review_list_item__pros_cons {
  display: flex;
  margin: 0;
}
.review_list_item__pros_cons.active {
  margin: 10px 0 10px;
}

.pros_cons_list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.pros_cons_list:nth-child(1) {
  margin: 0 40px 0 0;
}
.pros_cons_list li {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  margin: 0 0 10px;
  line-height: 1;
}
.pros_cons_list li img {
  display: block;
  width: 24px;
  margin: 0 10px 0 0;
}

.review_list_item__systems_and_appliances_wrap {
  padding: 0 20px;
  border-top: 1px solid #f1f1f7;
}
.review_list_item__systems_and_appliances_wrap h3 {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 35px;
}

.review_list_item__systems_and_appliances {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.systems_and_appliances_item {
  max-width: 145px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.46% 30px;
}
.systems_and_appliances_item span {
  font-size: 12px;
  text-align: center;
  line-height: 1.14;
}

.systems_and_appliances_item__img {
  width: 50px;
  height: 50px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 0 10px;
}

.text_section {
  margin-top: 50px;
  font-size: 14px;
  font-weight: 500;
}
.text_section h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px;
}
.text_section p {
  margin: 0 0 24px;
}

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

.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_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_popup.visible {
  display: flex;
  transform: translateY(0);
}
.cookie_popup .cookie_popup_title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cookie_popup .cookie_popup_title_wrap .cookie_popup_title {
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  margin: 0;
  width: 80%;
}
.cookie_popup .cookie_popup_title_wrap svg {
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.cookie_popup p {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
}
.cookie_popup .cookie_popup_accept_btn,
.cookie_popup .cookie_popup_customize_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  flex-shrink: 0;
  max-width: 189px;
  width: 100%;
  border-radius: 4px;
  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_btn {
    display: none;
  }
}
.main_footer_wrap {
  margin: 100px 0 0;
  background-color: #242b46;
  color: #fff;
  padding: 44px 0;
}

.main_footer {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.main_footer_block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer_address {
  font-size: 14px;
  font-weight: 500;
}
.footer_address-title {
  margin: 0;
  padding: 4px 0;
}
.footer_address-text {
  margin: 0;
}

.footer_copyright {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
}

.footer_menu {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer_menu li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.footer_disclosure__text {
  font-size: 14px;
  font-weight: 500;
}

.special_deal_popup_wrap {
  z-index: 30;
  width: 286px;
  height: 475px;
  left: 24px;
  bottom: 15px;
  box-shadow: 0 4px 24px rgba(137, 153, 175, 0.75);
  border-radius: 16px;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.special_deal_popup_wrap.show {
  visibility: visible;
  opacity: 1;
}

.special_deal_popup {
  border-radius: 16px;
  background-color: #cbe9f3;
  position: relative;
  padding: 24px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.special_deal_popup__close {
  width: 32px;
  height: 32px;
  background-color: #1e73be;
  border-radius: 50%;
  background-image: url(../images/cancel-icon-2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 37.5%;
  top: -16px;
  right: -16px;
  position: absolute;
  cursor: pointer;
  border: none;
  padding: 0;
}

.special_deal_popup__logo {
  width: 180px;
  height: 88px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 0 24px;
}

.special_deal_popup__special_deal {
  text-align: center;
  font-weight: 700;
  text-decoration: none;
}
.special_deal_popup__special_deal h3 {
  font-size: 24px;
  color: #1e73be;
  margin: 0;
  text-transform: uppercase;
  line-height: 28px;
  pointer-events: none;
}
.special_deal_popup__special_deal p {
  font-size: 18px;
  line-height: 21px;
  margin: 0;
  color: #242b46;
  pointer-events: none;
}

.special_deal_popup__cta {
  background-color: #19c37d;
  width: 168px;
  height: 60px;
  border-radius: 50px;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px auto 0;
  text-decoration: none;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}
.special_deal_popup__cta:hover {
  transform: scale(1.03);
}

.special_deal_popup__bg {
  margin: auto 0 0;
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.back_to_top {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 8px;
  background-color: #1e73be;
  right: 115px;
  position: fixed;
  cursor: pointer;
  bottom: -100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  transition: bottom 0.3s ease;
  padding: 0;
}
.back_to_top.show {
  bottom: 88px;
}
.back_to_top img {
  display: block;
  height: 26px;
}

.right_sidebar,
.content_left_sidebar {
  width: 250px;
  margin: 0 0 0 auto;
  margin-top: 20px;
}

.content_left_sidebar {
  height: 100%;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 24px 0px rgba(208, 212, 215, 0.25);
  background-color: #f1f1f8;
}
.content_left_sidebar .content_left_sidebar_title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 30px;
}
.content_left_sidebar ul {
  list-style: none;
  padding: 0;
}
.content_left_sidebar ul li {
  margin-bottom: 26px;
  cursor: pointer;
}
.content_left_sidebar ul li a {
  text-decoration: none;
  margin-bottom: 24px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}

.right_sidebar_block {
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 24px 0px rgba(208, 212, 215, 0.25);
  background-color: #f1f1f8;
}
.right_sidebar_block img {
  padding: 8px 6px;
  background-color: #fff;
}

@media (max-width: 1300px) {
  .right_sidebar,
  .content_left_sidebar,
  .main_title_image {
    display: none;
  }
  .container__inner {
    max-width: unset;
  }
  .providers_proposal_wrap,
  .text_section {
    max-width: 977px;
    width: 100%;
  }
}
@media (max-width: 992px) {
  .main_header_wrap {
    height: 83px;
  }
  .main_title_block_wrap {
    margin: 83px 0 0;
  }
  .main_title_block:nth-child(2) {
    display: none;
  }
  .podium_brands_block {
    display: none;
  }
  .podium_brands_title {
    display: none;
  }
  .podium_brand {
    display: none;
  }
  .podium_brand.with_ribbon {
    display: block;
    min-height: 118px;
    padding: 20px 15px 7px 18px;
    border: 2px solid #d0b26e;
    border-radius: 4px;
    display: flex;
    padding: 36px 24px 14px 16px;
  }
  .podium_brand:nth-child(1) {
    order: 1;
  }
  .podium_brand:nth-child(2) {
    order: 2;
  }
  .podium_brand:nth-child(3) {
    order: 3;
  }
  .podium_brand_ribbon {
    clip-path: polygon(100% 0, 93% 50%, 100% 100%, 0 100%, 0 0);
    padding: 0 13px;
    height: 16px;
  }
  .podium_brand_ribbon span {
    font-size: 10px;
  }
  .podium_brand_logo_wrap {
    width: 36px;
    height: 36px;
  }
  .review_list_item__visible_part {
    padding: 10px 20px;
    grid-template-rows: none;
    grid-row-gap: 0;
  }
  .review_list_item__pos_number {
    top: 20%;
    left: 3%;
  }
  .review_list_item__logo_wrap {
    margin-left: 20px;
    height: 58px;
    margin-top: 8px;
  }
  .review_list_item__visit {
    display: none;
  }
}
.review_list_item__logo {
  height: 78px;
}

.content_endurance_block_item__rates_score {
  font-size: 21px;
}

.content_endurance_block__rates_word {
  font-size: 14px;
}

.review_list_item__phone {
  min-height: 36px;
}
.review_list_item__phone img {
  width: 25px;
}

.providers_proposal_wrap {
  margin: 20px 0;
}

.providers_proposal_list {
  flex-direction: column;
  align-items: center;
}

.providers_proposal_item_wrap {
  padding: 0;
  max-width: 375px;
  margin: 0 0 20px;
}
.providers_proposal_item_wrap:nth-child(1) {
  order: 1;
}
.providers_proposal_item_wrap:nth-child(2) {
  order: 2;
}
.providers_proposal_item_wrap:nth-child(3) {
  order: 3;
}

.providers_proposal_item__header {
  height: 150px;
}

.providers_proposal_item__logo img {
  max-height: unset;
  width: 70%;
  height: auto;
}

.providers_proposal_item__cta {
  margin: 0 0 8px;
}

.providers_proposal_item__special_deal_text {
  min-height: unset;
}

.top_of_category_wrap {
  max-width: 725px;
}

.main_footer_wrap .container {
  padding: 0 30px;
}

@media (max-width: 768px) {
  .header_menu,
  .main_subtitle_text,
  .providers_proposal_item__special_deal {
    display: none;
  }
  .main_header_wrap {
    height: 40px;
  }
  .header_logo img {
    max-width: 176px;
    max-height: 30px;
  }
  .main_title_block_wrap {
    margin: 40px 0 0;
    padding: 16px 0;
    min-height: 246px;
  }
  h1 {
    font-size: 21px;
  }
  .section_title_with_border {
    padding: 24px 0;
  }
  .main_footer_wrap {
    margin: 40px 0 0;
  }
  .back_to_top {
    width: 40px;
    height: 40px;
    bottom: 50px;
    right: 50px;
  }
  .back_to_top img {
    height: 20px;
  }
  .footer_disclosure__title {
    margin: 20px 0 25px;
  }
  .section_title_with_border {
    margin: 0;
  }
  .main_footer {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 30px;
  }
  .main_footer .footer_logo {
    margin: 0 0 24px;
  }
  .main_footer .footer_address {
    font-size: 14px;
    font-weight: 500;
  }
  .main_footer .footer_copyright {
    display: block;
    position: absolute;
    bottom: -30px;
  }
  .main_footer .footer_menu {
    display: flex;
    flex-direction: column;
  }
  .main_footer .footer_menu li a {
    font-size: 14px;
    font-weight: 500;
  }
  .main_footer .footer_disclosure__text {
    font-size: 12px;
  }
  #backToTopBtn {
    width: 40px;
    height: 40px;
  }
  .bottom_offer_popup_overlay .bottom_offer_item {
    flex-direction: column;
  }
  .bottom_offer_popup_overlay .bottom_offer_logo_wrap {
    max-width: 191px;
    min-height: 92px;
    width: 100%;
    margin: 0 auto;
  }
  .bottom_offer_popup_overlay .bottom_offer_content_wrap {
    background-position: bottom;
    clip-path: none;
  }
  .bottom_offer_popup_overlay .bottom_offer_popup_close_btn {
    background-image: url("../images/cancel-icon.svg");
    top: 0px;
    right: 0;
  }
  .bottom_offer_popup_overlay .bottom_offer_content_wrap {
    display: flex;
    flex-direction: column;
  }
  .bottom_offer_popup_overlay .bottom_offer_content_wrap .bottom_offer_content {
    margin-bottom: 12px;
  }
  .bottom_offer_popup_overlay .bottom_offer_content a {
    font-size: 18px;
    font-weight: 600;
  }
  .bottom_offer_popup_overlay .bottom_offer_get_bonus {
    padding: 10px;
  }
}
@media (max-width: 640px) {
  .review_list_item__visit_site {
    height: 100%;
    margin-top: 0;
  }
  .review_list_item__visible_part {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .review_list_item__logo_wrap {
    grid-area: 1/1/2/2;
    max-width: 145px;
  }
  .review_list_item__promotion_wrap {
    grid-area: 2/1/3/2;
    margin: 0;
    padding: 0;
  }
  .review_list_item__info_wrap {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin-top: 10px;
    height: 30px;
  }
  .review_list_item__coupon_wrap {
    min-width: 350px;
    width: 100%;
    padding: 8px 0;
  }
  .review_list_item__coupon {
    padding: 4px 3px 4px 14px;
  }
  .review_list_item__coupon img {
    width: 32px;
    margin: 0 10px 0 0;
  }
  .review_list_item__coupon p {
    font-size: 10px;
    font-weight: 600;
  }
}
@media (max-width: 425px) {
  .review_list_promo_wrap {
    min-height: unset;
  }
  .review_list_promo__title {
    white-space: normal;
    text-align: center;
  }
}
@media (max-width: 380px) {
  .review_list_item__coupon_wrap {
    min-width: 250px;
  }
}

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