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

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

ul, li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

@keyframes animatedgradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
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: 1227px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}

.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 {
  width: 284px;
}
.header_logo img {
  width: 100%;
  display: block;
}

.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;
  padding: 0;
  margin: 0;
  list-style-type: none;
  gap: 20px;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .header_menu {
    display: none;
  }
}

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

.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_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: 254px;
  margin: 72px 0 0;
  padding: 20px;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main_title_block {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 677px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.main_title_block .page_title {
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  text-transform: capitalize;
  margin: 0;
}
.main_title_block .page_title span:nth-of-type(2) {
  display: block;
}
@media (max-width: 768px) {
  .main_title_block .page_title {
    font-size: 21px;
    line-height: 28px;
  }
}
.main_title_block .main_subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: center;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  text-transform: none;
}
.main_title_block .main_subtitle::first-letter {
  text-transform: uppercase;
}
@media (max-width: 993px) {
  .main_title_block .main_subtitle {
    display: none;
  }
}

.last_updated_block {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.last_updated_block p {
  margin: 0;
}

.main_advantages_block {
  display: flex;
  gap: 40px;
  align-items: center;
}
.main_advantages_block .advantage_item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  line-height: 21px;
}
@media (max-width: 768px) {
  .main_advantages_block .advantage_item {
    gap: 6px;
  }
  .main_advantages_block .advantage_item span {
    font-size: 14px;
    line-height: normal;
  }
}
@media (max-width: 768px) {
  .main_advantages_block {
    gap: 20px;
    margin-left: 20px;
  }
}

.podium_brands_block_wrap {
  position: relative;
  background: #EEF4FF;
  z-index: 1;
  margin: 0;
  padding: 10px;
}

.podium_brands_block {
  padding: 0;
  min-height: 151px;
  border-radius: 8px;
  display: flex;
  gap: 0 15px;
  justify-content: space-between;
  align-items: end;
}

.podium_brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  position: relative;
  padding: 0;
  width: 100%;
  transition: all 0.3s ease;
}
.podium_brand__holder {
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
  justify-content: space-around;
  gap: 8px;
  background-color: #fff;
  width: 100%;
  min-width: 389px;
  padding: 20px 16px 10px;
  min-height: 151px;
  transition: all 0.3s ease;
  border-radius: inherit;
}
.podium_brand__holder .podium_brand__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  border-radius: 8px 0 0 0;
  clip-path: polygon(0 0, 100% 0%, 76% 100%, 0% 100%);
  min-width: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 5px 3px 1px;
  height: 16px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: #242b46;
  text-transform: uppercase;
  line-height: 1;
}

.podium_brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(137, 153, 175, 0.25);
}
.podium_brand:hover .podium_brand_cta {
  transform: scale(1.03);
}

.podium_brand.centered .podium_brand__holder {
  min-height: 165px;
}

.podium_brand.centered .podium_brand__holder.with_ribbon {
  padding: 28px 16px 12px;
}

.podium_brand__holder.with_ribbon .podium_brand_ribbon {
  display: flex;
}

.podium_brand_overlay_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 8px;
}

.podium_brand_ribbon {
  display: none;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  top: -23px;
  left: 22px;
  padding: 1px 14px 2px 14px;
  border-radius: 8px 8px 0 0;
  background: #05d380;
  color: #fff;
}

.podium_brand__ribbon_text {
  position: absolute;
  top: 0;
  left: 32px;
  z-index: 2;
  border-radius: 0 0 8px 0;
  height: 16px;
  min-width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: #00d37f;
  text-transform: uppercase;
  line-height: 1;
}
.podium_brand__ribbon_text:before {
  content: "";
  position: absolute;
  border-color: transparent #fff;
  border-style: solid;
  border-width: 0 0 16px 9px;
  height: 0;
  width: 0;
  top: 0;
  left: 0;
}

.podium_brand__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.podium_brand__top .podium_brand_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.podium_brand__top .podium_brand_logo .podium_brand_logo_wrap {
  width: 75px;
  height: 48px;
  display: flex;
  align-items: center;
}
.podium_brand__top .podium_brand_logo .podium_brand_logo_wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.podium_brand__top .podium_brand_logo .podium_brand_title {
  color: rgb(36, 43, 70);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  display: flex;
  flex-direction: column;
}
.podium_brand__top .podium_brand_logo .podium_brand_title span:nth-of-type(1) {
  font-weight: 600;
}
@media (max-width: 640px) {
  .podium_brand__top .podium_brand_logo .podium_brand_title .podium_brand__welcome_offer {
    font-size: 13px;
  }
}
.podium_brand__top .podium_brand_rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.podium_brand__top .podium_brand_rating .podium_brand_rating__value {
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  text-align: left;
  text-transform: uppercase;
}
.podium_brand__top .podium_brand_rating .podium_brand_rating_block .podium_brand_rating__text {
  font-size: 9px;
  font-weight: 500;
  line-height: 14px;
}
.podium_brand__top .podium_brand_rating .podium_brand_rating_block .podium_brand_rating__text span {
  font-weight: 600;
}

.podium_brand__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.podium_brand__bottom .review_list_item__coupon_wrap {
  width: 100%;
  max-width: 196px;
  padding: 4px;
}
@media (max-width: 991px) {
  .podium_brand__bottom .review_list_item__coupon_wrap {
    padding: 4px 3px;
  }
}
.podium_brand__bottom .review_list_item__coupon_wrap span {
  position: absolute;
  bottom: -12px;
  right: 10px;
}
.podium_brand__bottom .review_list_item__coupon_wrap .review_list_item__coupon {
  padding: 4px;
}
@media (max-width: 991px) {
  .podium_brand__bottom .review_list_item__coupon_wrap .review_list_item__coupon {
    padding: 4px 3px;
  }
}
.podium_brand__bottom .review_list_item__coupon_wrap .review_list_item__coupon .coupon_image_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
}
.podium_brand__bottom .review_list_item__coupon_wrap .review_list_item__coupon .coupon_image_wrap img {
  width: 18px;
  height: 12px;
  object-fit: contain;
}
.podium_brand__bottom .review_list_item__coupon_wrap .review_list_item__coupon p {
  font-size: 9px;
  font-weight: 500;
  margin: 0;
  line-height: 12px;
}
@media (max-width: 991px) {
  .podium_brand__bottom .review_list_item__coupon_wrap .review_list_item__coupon p {
    font-size: 8px;
  }
}
.podium_brand__bottom .podium_brand_welcome_bonus {
  color: rgb(36, 43, 70);
  font-size: 14px;
  line-height: 21px;
  border-radius: 4px;
  background: rgb(232, 249, 242);
  padding: 8px 40px 8px 10px;
}
.podium_brand__bottom .podium_brand_welcome_bonus .podium_brand_welcome_bonus__title {
  margin: 0;
  padding: 0;
  font-weight: 600;
}
.podium_brand__bottom .podium_brand_welcome_bonus .podium_brand_welcome_bonus__subtitle {
  margin: 0;
  padding: 0;
  font-weight: 400;
}
.podium_brand__bottom .podium_brand_cta {
  border-radius: 8px;
  background: #1E73BE;
  padding: 8px;
  text-decoration: none;
  color: #fff;
  width: 100%;
  max-width: 142px;
  min-height: 36px;
  font-size: 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.brand_logo__divider {
  width: 1px;
  height: 30px;
  background-color: #242B46;
}

.content_wrap {
  margin: 0 auto;
  position: relative;
  background-color: #eeeeee;
  padding-top: 10px;
}
.content_wrap .container {
  display: flex;
  justify-content: center;
}

.content_block {
  width: 100%;
}

.review_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.review_list_item {
  width: 100%;
  position: relative;
  border: 1px solid rgb(196, 196, 196);
  border-radius: 8px;
  background: rgb(255, 255, 255);
  transition-property: transform, box-shadow;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  margin: 0 auto;
}
.review_list_item:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 24px rgba(137, 153, 175, 0.25);
}

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

.review_list_item__ribbon_text {
  position: absolute;
  top: -1px;
  left: 35px;
  z-index: 2;
  border-radius: 0 0 8px 0;
  height: 25px;
  min-width: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px 0 40px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: rgb(0, 211, 127);
  text-transform: uppercase;
  line-height: 1;
  overflow: hidden;
}
.review_list_item__ribbon_text:before {
  content: "";
  position: absolute;
  border-color: transparent #fff;
  border-style: solid;
  border-width: 0 0 43px 24px;
  height: 0;
  width: 0;
  top: 0;
  left: 0;
}
@media (max-width: 992px) {
  .review_list_item__ribbon_text:before {
    border-width: 0 0 23px 14px;
  }
}

.review_list_item__holder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fff;
  border-radius: inherit;
  color: #232936;
  padding: 0 10px;
}

.review_list_item__visible_part {
  display: flex;
  align-items: center;
  min-height: 216px;
  justify-content: space-between;
  width: 100%;
  padding: 30px 0 10px;
  max-width: 1096px;
  gap: 40px;
}

.review_list_item__logo_wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-align: center;
  font-size: 14px;
  max-width: 192px;
  width: 100%;
  margin: 0;
  padding: 0 5px;
}
.review_list_item__logo_wrap span:nth-of-type(1) {
  font-weight: 600;
}

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

.digital_options_block {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.digital_options_block .digital_option {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  color: #1E73BE;
  max-width: 168px;
}
.digital_options_block .digital_option .digital_option__icon {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}
.digital_options_block .digital_option p {
  margin: 0;
  text-align: left;
}

.review_list_item__visit_link {
  color: rgb(0, 143, 86);
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  text-align: center;
  text-decoration-line: underline;
}

.review_list_item__promotion_wrap {
  position: relative;
  max-width: 428px;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.payment_and_scores_wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  justify-content: space-between;
  max-width: 314px;
}
@media (max-width: 991px) {
  .payment_and_scores_wrap {
    width: 50%;
  }
}

.review_list_item__logo_wrap:after,
.review_list_item__promotion_wrap:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  width: 1px;
  height: 120px;
  z-index: 1;
  background-color: #C4C4C4;
  transform: translateY(-50%);
}
@media (max-width: 1100px) {
  .review_list_item__logo_wrap:after,
  .review_list_item__promotion_wrap:after {
    right: -15px;
  }
}
@media (max-width: 1024px) {
  .review_list_item__logo_wrap:after,
  .review_list_item__promotion_wrap:after {
    display: none;
  }
}

.hover_min_scale {
  transition: transform 0.3s ease, box-shadow 0.2s ease;
}
.hover_min_scale:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 24px rgba(137, 153, 175, 0.25);
}

.review_list_item__coupon_wrap {
  max-width: 296px;
  width: 100%;
  position: relative;
  padding: 4px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='white' stroke='%231E73BE' stroke-width='3' stroke-dasharray='2%2c 6' stroke-dashoffset='0' stroke-linecap='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  border-radius: 4px;
}
.review_list_item__coupon_wrap span {
  position: absolute;
  bottom: -16px;
  right: 10px;
}
@media (max-width: 991px) {
  .review_list_item__coupon_wrap span {
    bottom: -13px;
  }
}

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

.review_list_item__coupon {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 4px;
  background: #EEF4FF;
  gap: 16px;
  min-height: 30px;
}
.review_list_item__coupon .coupon_image_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
}
.review_list_item__coupon .coupon_image_wrap img {
  width: 21px;
  height: 14px;
  object-fit: contain;
}
.review_list_item__coupon p {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  line-height: 20px;
}

.review_list_item__advantages {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.review_list_item__advantages li {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.review_list_item__advantages li img {
  display: block;
  flex-shrink: 0;
  width: 10px;
}
.review_list_item__advantages li span {
  font-size: 13px;
  font-weight: 400;
}

.review_list_item__payment_icons_wrap {
  flex-direction: row;
  gap: 10px;
  width: auto;
  min-height: 120px;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.review_list_item__payment_icons_wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 72px;
  height: 72px;
}
.review_list_item__payment_icons_wrap .payment_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 24px 0 rgba(208, 212, 215, 0.2509803922);
  background: #fff;
}
.review_list_item__payment_icons_wrap .payment_icon img {
  width: 100%;
  max-width: 48px;
  height: auto;
  object-fit: cover;
}

.review_list_item__save_wrap {
  width: auto;
  max-width: 186px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 50px;
  color: #fff;
  background-color: #242b46;
  padding: 3px 10px;
}
.review_list_item__save_wrap .review_list_item__save_text {
  font-size: 10px;
  font-weight: 600;
  line-height: 15px;
  padding: 0;
  margin: 0;
}

.review_list_item__info_wrap {
  width: 100%;
  max-width: 204px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 15px;
  margin: 0;
}

.review_list_item__rates_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.review_list_item_rating__text {
  font-size: 8px;
  font-weight: 500;
  line-height: 14px;
  text-align: left;
}
.review_list_item_rating__text span {
  font-weight: 600;
}

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

.review_list_item__rates_score {
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  padding: 0;
  text-transform: uppercase;
  margin: 0;
}

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

.review_list_item__visit_site {
  display: flex;
  width: 100%;
  max-width: 204px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  min-height: 48px;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  margin: 0 auto;
  background: #F38324;
  text-transform: uppercase;
  border: none;
}

.brand_rate_stars_wrap {
  display: flex;
  align-items: center;
  width: 100px;
}
.brand_rate_stars_wrap img {
  width: 16px;
  height: 16px;
}
@media (max-width: 768px) {
  .brand_rate_stars_wrap img {
    width: 14px;
    height: 14px;
  }
}

.review_list_item__visit {
  display: flex;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 26px 7px rgba(208, 212, 215, 0.2509803922);
  margin: 0 auto;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  max-width: 185px;
  width: 100%;
}
.review_list_item__visit img {
  width: 24px;
  height: auto;
}
.review_list_item__visit .review_list_item__visit_text {
  font-size: 9px;
  font-weight: 500;
  line-height: 14px;
  text-align: left;
  color: #242B46;
  margin: 0;
}

.review_list_item__bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 6px 50px;
  background: inherit;
  border-top: 1px solid #C4C4C4;
  border-radius: 0 0 8px 8px;
  font-size: 12px;
  gap: 5px;
}
.review_list_item__bottom .review_list_item__bottom-button {
  width: fit-content;
  margin: 0 auto;
  border: none;
  font-weight: 600;
  color: #1E73BE;
  background: none;
  cursor: pointer;
}
.review_list_item__bottom .review_list_item__bottom-content {
  max-height: 0; /* Start collapsed */
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
  width: 100%;
}
.review_list_item__bottom .review_list_item__bottom-content.active {
  max-height: 1000px; /* Full height */
  height: fit-content;
  opacity: 1;
}
.review_list_item__bottom .review_list_item__bottom-content-tables {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}
.review_list_item__bottom .review_list_item__bottom-content-tables .review_list_item__bottom-content-table {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.review_list_item__bottom .review_list_item__bottom-content-table-title {
  color: #1E73BE;
  min-height: 38px;
}
.review_list_item__bottom .review_list_item__bottom-content-table-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  height: 30px;
  padding: 3px 20px;
  background: #fff;
}
.review_list_item__bottom .review_list_item__bottom-content-table-row:nth-child(odd) {
  background: #EEF4FF;
}
.review_list_item__bottom .review_list_item__bottom-content-table-row p:nth-child(even) {
  text-align: right;
}
.review_list_item__bottom .review_list_item__visit_site {
  font-size: 13px;
  font-weight: 500;
  color: #1e73be;
  margin-right: 0;
  background: none;
}

.review_list_promo_wrap {
  display: flex;
  gap: 20px;
  padding: 5px 40px;
  margin: 0;
  text-decoration: none;
  min-height: 125px;
  border-radius: 8px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.review_list_promo_wrap * {
  pointer-events: none;
}
.review_list_promo_wrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 24px rgba(137, 153, 175, 0.25);
}

.review_list_promo__empty {
  width: 100%;
  max-width: 191px;
  height: 100%;
}

.review_list_promo__logo {
  width: 100%;
  max-width: 191px;
  height: 100px;
}
.review_list_promo__logo img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}

.review_list_promo__text {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.review_list_promo__text .review_list_promo__title {
  font-size: 24px;
  font-weight: 600;
  white-space: normal;
  color: rgb(36, 43, 70);
  text-align: center;
}
.review_list_promo__text .review_list_promo__subtitle {
  font-size: 16px;
  white-space: normal;
  text-align: center;
  color: rgb(36, 43, 70);
}
.review_list_promo__text .review_list_promo__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  color: #fafafa;
  padding: 10px 44px;
  border: none;
  border-radius: 4px;
  line-height: 1;
  background-color: #05d380;
}

.package_section_wrap {
  margin-top: 50px;
}
.package_section_wrap .package_section__title {
  text-align: center;
  margin: 0 0 30px;
}
.package_section_wrap .package_section__image {
  width: 64px;
  height: 43px;
  background-repeat: no-repeat;
  background-size: contain;
}
.package_section_wrap h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 640px) {
  .package_section_wrap h3 {
    font-size: 21px;
  }
}
.package_section_wrap p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  line-height: 21px;
}
.package_section_wrap ul li {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 6px;
}
.package_section_wrap .package_section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  width: 100%;
  flex-wrap: wrap;
}
.package_section_wrap .package_section__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 373px;
  min-height: 471px;
  background: #fff;
  border-radius: 8px;
  border-bottom: 6px solid #FF8F20;
  flex-shrink: 0;
  padding: 20px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .package_section_wrap .package_section__inner {
    min-height: auto;
  }
}
.package_section_wrap .package_section__inner-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 309px;
  min-height: 342px;
}

.text_section h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px;
}
@media (max-width: 640px) {
  .text_section h3 {
    font-size: 21px;
  }
}
.text_section p {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 24px;
  line-height: 21px;
}
.text_section ul li {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 6px;
  padding-left: 10px;
  position: relative;
}
.text_section ul li:before {
  content: "•";
  position: absolute;
  left: 0;
}

.best_provider_wrap {
  margin: 30px auto;
  position: relative;
}
.best_provider_wrap .review_list_item {
  border: none;
  min-height: 92px;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 0 10px;
}
@media (max-width: 768px) {
  .best_provider_wrap .review_list_item {
    padding: 20px 10px;
  }
}
.best_provider_wrap .review_list_item__visible_part {
  padding: 0;
  position: relative;
  display: flex;
  grid-column-gap: 20px;
  grid-row-gap: 0;
  align-items: center;
  min-height: 92px;
  justify-content: space-between;
  width: 100%;
  max-width: 1130px;
}
@media (max-width: 768px) {
  .best_provider_wrap .review_list_item__visible_part {
    flex-direction: column;
    gap: 5px;
    width: 100%;
    max-width: 350px;
  }
}
@media (max-width: 640px) {
  .best_provider_wrap .review_list_item__visible_part {
    max-width: 298px;
  }
}
.best_provider_wrap .review_list_item__logo_wrap {
  flex-direction: row;
  gap: 20px;
  font-size: 14px;
  width: 100%;
  max-width: 333px;
  margin: 0;
  text-align: left;
  justify-content: left;
}
.best_provider_wrap .review_list_item__logo_wrap:after {
  display: none;
}
@media (max-width: 768px) {
  .best_provider_wrap .review_list_item__logo_wrap {
    justify-content: center;
    gap: 10px;
    padding: 0;
  }
}
.best_provider_wrap .review_list_item__logo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  max-width: 75px;
  height: 48px;
  display: block;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .best_provider_wrap .review_list_item__logo {
    max-width: 97px;
    height: 59px;
  }
}
.best_provider_wrap .review_list_item__logo_text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.best_provider_wrap .review_list_item__middle {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  max-width: 442px;
}
.best_provider_wrap .review_list_item__middle p {
  line-height: 24px;
  margin: 0;
}
.best_provider_wrap .review_list_item__info_wrap {
  width: 100%;
  max-width: 232px;
}
@media (max-width: 640px) {
  .best_provider_wrap .review_list_item__info_wrap {
    max-width: 100%;
  }
}
.best_provider_wrap .review_list_item__info_wrap .review_list_item__visit_site {
  max-width: 100%;
  min-height: 48px;
  font-size: 14px;
}

.best_provider_title {
  font-size: 24px;
  font-weight: 600;
  display: block;
  margin: 16px 0;
  padding-top: 16px;
  text-transform: uppercase;
}

.best_provider_wrap_bg {
  width: 104%;
  height: 100%;
  min-height: 300px;
  position: absolute;
  top: 0;
  left: -2%;
  z-index: -1;
  background: #cdf6e5;
}

.review_brand_wrap {
  margin: 60px 0;
}
.review_brand_wrap .review_brand_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
}
@media (max-width: 991px) {
  .review_brand_wrap .review_brand_title {
    text-align: left;
  }
}
.review_brand_wrap .review_brand_list {
  margin: 24px auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  max-width: 987px;
}
@media (max-width: 768px) {
  .review_brand_wrap .review_brand_list {
    gap: 20px;
  }
}
.review_brand_wrap .top_of_category_item {
  display: flex;
  flex-direction: row;
  gap: 56px;
  border: 1px solid #C4C4C4;
  border-radius: 8px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .review_brand_wrap .top_of_category_item {
    flex-direction: column;
    gap: 0;
  }
}
.review_brand_wrap .top_of_category_item .top_of_category_item_block_left {
  background: #EEF4FF;
  padding: 40px 32px;
  width: 100%;
  max-width: 408px;
  border-radius: 8px 0 0 8px;
}
@media (max-width: 768px) {
  .review_brand_wrap .top_of_category_item .top_of_category_item_block_left {
    min-width: 0;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    max-width: 100%;
  }
}
.review_brand_wrap .top_of_category_item .top_of_category_item__logo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100px;
  width: 100%;
  max-width: 191px;
  display: block;
  margin: 0;
}
@media (max-width: 768px) {
  .review_brand_wrap .top_of_category_item .top_of_category_item__logo {
    max-width: 122px;
    height: 64px;
  }
}
.review_brand_wrap .top_of_category_item .top_of_category_item__text {
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}
.review_brand_wrap .top_of_category_item .top_of_category_item__reviews {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.review_brand_wrap .top_of_category_item .top_of_category_item__reviews .stars_wrap_review {
  display: flex;
  align-items: center;
}
.review_brand_wrap .top_of_category_item .review_list_item__reviews_score {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.review_brand_wrap .top_of_category_item .top_of_category_item_block_right {
  width: 100%;
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  line-height: 21px;
}
.review_brand_wrap .top_of_category_item .top_of_category_item_block_right .top_of_category_item_title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.review_brand_wrap .top_of_category_item .top_of_category_item_block_right .top_of_category_item___why_picked {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 768px) {
  .review_brand_wrap .top_of_category_item .top_of_category_item_block_right {
    display: none;
  }
}
.review_brand_wrap .top_of_category_item .top_of_category_item_block_right-mobile {
  display: none;
  border-top: 1px solid #c4c4c4;
  background: rgb(255, 255, 255);
  border-radius: 0 0 8px 8px;
  min-height: 58px;
  padding: 15px;
}
.review_brand_wrap .top_of_category_item .top_of_category_item_title_block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .review_brand_wrap .top_of_category_item .top_of_category_item_title_block {
    justify-content: left;
  }
}
.review_brand_wrap .top_of_category_item h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}
.review_brand_wrap .top_of_category_item img {
  width: 18px;
  height: 18px;
}
.review_brand_wrap .top_of_category_item .top_of_category_item_text_block {
  padding: 0;
}
.review_brand_wrap .top_of_category_item .top_of_category_item_text_block.active {
  display: none;
}
@media (max-width: 768px) {
  .review_brand_wrap .top_of_category_item .top_of_category_item_block_right-mobile {
    display: block;
  }
}
@media (min-width: 769px) {
  .review_brand_wrap .top_of_category_item .top_of_category_item_block_right-mobile {
    display: none;
  }
}
.review_brand_wrap .top_of_category_item .top_of_category_item__cta {
  width: 100%;
  max-width: 441px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  padding: 10px;
  min-height: 48px;
  text-decoration: none;
  background: #F38324;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .review_brand_wrap .top_of_category_item .top_of_category_item__cta {
    display: none;
  }
}
.review_brand_wrap .top_of_category_item .top_of_category_item__cta-mobile {
  display: none;
  width: 100%;
  max-width: fit-content;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  padding: 10px;
  text-decoration: none;
  background: #f38324;
  border-radius: 8px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .review_brand_wrap .top_of_category_item .top_of_category_item__cta-mobile {
    display: flex;
    min-width: 153px;
    min-height: 36px;
    margin: 15px auto 0 0;
  }
}
.review_brand_wrap .top_of_category_item .top_of_category__reviews_info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .review_brand_wrap .top_of_category_item .top_of_category__reviews_info {
    gap: 10px;
  }
}
.review_brand_wrap .top_of_category_item .top_of_category__reviews_info .top_of_category_item__reviews_info_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  gap: 10px;
}
.review_brand_wrap .top_of_category_item .top_of_category__reviews_info .top_of_category_item__reviews_info_item .top_of_category_item__reviews_info_content h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #1E73BE;
  margin: 0;
}
.review_brand_wrap .top_of_category_item .top_of_category__reviews_info .top_of_category_item__reviews_info_item .top_of_category_item__reviews_info_content p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.review_brand_wrap .top_of_category_item .top_of_category__reviews_info .top_of_category_item__reviews_info_item span {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  color: #1E73BE;
}

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

.main_footer_wrap {
  background-color: #242b46;
  color: #fff;
  padding: 44px 0;
}

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

.footer_logo {
  display: block;
  width: 274px;
  margin: 0 0 48px;
}
.footer_logo img {
  display: block;
  width: 100%;
  pointer-events: none;
}

.footer_address {
  margin-bottom: 44px;
  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;
  margin-bottom: 24px;
  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;
}

.service_popup_overlay {
  display: none;
  background: rgba(59, 63, 74, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 101;
  overflow-y: auto;
}
.service_popup_overlay.show {
  display: block;
}

.service_popup_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 774px;
  width: 100%;
  height: 324px;
  min-height: 100vh;
  margin: 0 auto;
}

.service_popup {
  position: relative;
  width: 100%;
  background-color: #fff;
  max-width: 733px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service_popup__close_btn {
  background: url(../images/close-popup-btn.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 5px;
  position: absolute;
  top: -40px;
  right: 3px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  z-index: 9;
}

.service_popup__left-block {
  width: 100%;
  max-width: 378px;
  min-height: 324px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service_popup__left-block .service_popup__services {
  width: 100%;
  max-width: 332px;
  min-height: 244px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.service_popup__services_logo-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  width: 100%;
}
.service_popup__services_logo-wrap .service_popup__services_logo {
  width: 100%;
  max-width: 120px;
  height: 76px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.service_popup__services_logo-wrap .service_popup__services_logo_title {
  font-size: 14px;
  font-weight: 500;
  line-height: unset;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service_popup__services_logo-wrap .service_popup__services_logo_title a {
  color: #242b46;
  text-decoration: none;
}
.service_popup__services_logo-wrap .service_popup__services_logo_title .service_popup__services_logo_name {
  font-weight: 600;
}

.service_popup__service_content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}
.service_popup__service_content .service_popup__service_title {
  font-size: 21px;
  font-weight: 600;
  line-height: 31px;
  margin: 0;
}
.service_popup__service_content .service_popup__service_visit_site {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  padding: 5px;
  border-radius: 8px;
  text-decoration: none;
  margin: 4px 0;
  max-width: 206px;
  min-height: 48px;
}
.service_popup__service_content .service_popup__service__phone {
  border-radius: 8px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 5px;
  width: 50%;
}
.service_popup__service_content .service_popup__service__phone img {
  display: block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin: 0 10px 0 0;
}
.service_popup__service_content .service_popup__service__phone span {
  font-size: 14px;
  font-weight: 700;
}

.service_popup__right-block {
  position: relative;
  max-width: 355px;
  height: 100%;
  min-height: 324px;
  background-image: url(../images/service_popup-bg.webp);
  background-repeat: no-repeat;
  background-position: 100%;
  background-size: cover;
  width: 100%;
}

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

.bottom_offer_popup_overlay {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  height: auto;
  width: 100%;
}
.bottom_offer_popup_overlay.show {
  display: block;
  z-index: 10;
}
.bottom_offer_popup_overlay .bottom_offer_popup_wrap {
  height: 100%;
  width: 97%;
  max-width: 1300px;
  margin: 0 auto;
  box-shadow: 0 0 5px 0 gray;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_popup_wrap {
    background: #fff;
  }
  .bottom_offer_popup_overlay .bottom_offer_popup_wrap .container {
    padding: 0;
  }
}
.bottom_offer_popup_overlay .bottom_offer_popup_close_btn {
  background-image: url(../images/close-icon.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 12px;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0);
  z-index: 9;
  width: 20px;
  height: 20px;
}
.bottom_offer_popup_overlay .offer_wrap {
  display: flex;
  align-items: stretch;
}
@media (max-width: 664px) {
  .bottom_offer_popup_overlay .offer_wrap {
    display: none;
  }
}
.bottom_offer_popup_overlay .bottom_offer_popup {
  width: 100%;
  min-height: 135px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 5px;
}
@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_popup {
    flex-direction: column-reverse;
    padding: 0;
    gap: 5px;
  }
}
.bottom_offer_popup_overlay .bottom_offer_popup__empty-part {
  width: 100%;
  max-width: 200px;
}
@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_popup__empty-part {
    display: none;
  }
}
.bottom_offer_popup_overlay .bottom_offer_popup__middle-part {
  display: flex;
  gap: 5px;
  width: 100%;
  max-width: 540px;
  color: #242b46;
  white-space: normal;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
}
@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_popup__middle-part {
    gap: 10px;
    min-height: 120px;
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    max-width: 100%;
  }
}
.bottom_offer_popup_overlay .bottom_offer_popup__middle-part .bottom_offer_popup__title {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_popup__middle-part .bottom_offer_popup__title {
    font-size: 16px;
    font-weight: 500;
  }
}
.bottom_offer_popup_overlay .bottom_offer_popup__middle-part .bottom_offer_popup__subtitle {
  font-size: 16px;
  text-align: center;
}
.bottom_offer_popup_overlay .bottom_offer_item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100px;
  width: 100%;
  max-width: 191px;
  gap: 5px;
  padding: 5px 0;
}
@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_item {
    flex-direction: column;
    max-width: 100%;
    background: #fff;
    height: 100px;
  }
}
.bottom_offer_popup_overlay .bottom_offer_item__logo {
  display: block;
  width: 100%;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_item__logo {
    max-width: 130px;
    height: 70px;
  }
}
.bottom_offer_popup_overlay .bottom_offer_item__name {
  display: none;
}
@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_item__name {
    display: block;
    margin: 0;
    font-weight: 600;
  }
}
.bottom_offer_popup_overlay .bottom_offer_item__cta {
  display: flex;
  width: 100%;
  max-width: 204px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  min-height: 48px;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  margin: 0 auto;
  background: #f38324;
  text-transform: uppercase;
  border: none;
}
@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_item__cta {
    max-width: 183px;
    min-height: 36px;
    text-transform: capitalize;
  }
}
.bottom_offer_popup_overlay .bottom_offer_item__content_mobile {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100px;
  padding: 26px;
}
@media (min-width: 664px) {
  .bottom_offer_popup_overlay .bottom_offer_item__content_mobile {
    display: none;
  }
}
.bottom_offer_popup_overlay .bottom_offer_item__content_mobile .bottom_offer_item__title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
  text-align: center;
}
.bottom_offer_popup_overlay .bottom_offer_item__content_mobile .bottom_offer_item__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  color: #fafafa;
  padding: 10px 44px;
  border: none;
  line-height: 1;
  background-color: #1E73BE;
  text-decoration: none;
  width: 100%;
  max-width: 176px;
  margin: 0 auto;
}

.main_sidebar {
  width: 250px;
  margin: 0 0 0 auto;
}

.main_sidebar_block {
  box-shadow: 0 4px 24px 0 rgba(208, 212, 215, 0.25);
  padding: 16px 14px;
}
.main_sidebar_block img {
  width: 100%;
}
.main_sidebar_block .block-image {
  box-shadow: 0px 4px 24px 0px rgba(208, 212, 215, 0.25);
}
.main_sidebar_block:first-child {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid rgb(196, 196, 196);
  box-shadow: 0px 4px 24px 0px rgba(208, 212, 215, 0.25);
  justify-content: space-between;
}
.main_sidebar_block:nth-child(3) {
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  min-height: 294px;
  padding: 28px 24px;
  box-shadow: 0px 4px 24px 0px rgba(208, 212, 215, 0.25);
}
.main_sidebar_block:nth-child(3) img {
  width: 138px;
  filter: drop-shadow(8px 4px 6px #fff);
}
.main_sidebar_block:nth-child(3) .main_sidebar_text {
  width: 100%;
  padding: 6px 18px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  background: #038f56;
  color: #fff;
  border-radius: 4px;
}
.main_sidebar_block:nth-child(3) .main_sidebar_btn {
  display: inline-block;
  padding: 6px 18px;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  border-radius: 4px;
  text-decoration: none;
  background-color: #05d380;
}
.main_sidebar_block:nth-child(3) .main_sidebar_btn:hover {
  cursor: pointer;
}
.main_sidebar_block:nth-child(4) .main_sidebar_block_text {
  text-align: left;
}
.main_sidebar_block:nth-child(4), .main_sidebar_block:nth-child(5) {
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 24px 0px rgba(208, 212, 215, 0.25);
  border: 1px solid rgb(196, 196, 196);
}

.main_sidebar_icon {
  width: 100%;
  max-width: 40px;
}

.block-image {
  padding: 12px 0;
}

.main_sidebar_title {
  font-size: 16px;
  font-weight: 700;
  color: #016940;
  line-height: 27px;
}

.divider {
  border-bottom: 1px solid #016940;
  padding: 6px 0;
  width: 144px;
  margin: 0 auto;
}

.main_sidebar_block_text {
  font-size: 12px;
  font-weight: 500;
}
.main_sidebar_block_text .text-color {
  color: #016940;
}

.divider .divider {
  border-bottom: 1px solid #1E73BE;
  padding: 6px 0;
  width: 144px;
  margin: 0 auto;
}

.main_sidebar_item__text {
  max-width: 162px;
  width: 100%;
}
.main_sidebar_item__text h3 {
  margin: 0;
  font-weight: 700;
  color: rgb(36, 43, 70);
  font-size: 18px;
}
.main_sidebar_item__text p {
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 1300px) {
  .main_title_image {
    display: none;
  }
  .container__inner {
    max-width: unset;
  }
  .text_section_wrap {
    max-width: 977px;
    width: 100%;
  }
}
.review_list_item__rates_word {
  font-size: 14px;
}

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

.desktop {
  display: flex;
}

.mobile {
  display: none;
}

@media (max-width: 1300px) {
  .main_sidebar {
    display: none;
  }
  .podium_brands_block {
    overflow-x: scroll;
    justify-content: space-between;
  }
  .container__inner {
    max-width: unset;
  }
  .text_section_wrap {
    max-width: 977px;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .review_list_item__holder {
    padding: 25px 20px 20px;
  }
  .review_list_item__visible_part {
    min-height: auto;
    padding: 15px 0 10px;
  }
  .review_list_promo__bg_placeholder {
    display: none;
  }
  .review_list_promo__subtitle {
    font-size: 14px;
  }
  .review_list_promo__subtitle {
    font-size: 18px;
  }
  .review_list_promo__title {
    white-space: normal;
  }
  .review_list_promo_wrap {
    background-size: cover;
    background-position: left;
    width: 100%;
    padding: 5px 25px;
    min-height: 88px;
  }
  .review_list_promo__logo {
    margin-right: 20px;
  }
}
@media (max-width: 992px) {
  .service_popup_overlay,
  .service_popup_overlay.show {
    display: none !important;
  }
  .review_list_item__show_hide,
  .digital_options_block,
  .review_list_item__bottom,
  .desktop {
    display: none;
  }
  .mobile {
    display: flex;
  }
  .main_header_wrap {
    height: 83px;
  }
  .podium_brands_block {
    overflow-x: auto;
    grid-template-columns: repeat(3, 1fr);
  }
  .podium_brands_title {
    display: none;
  }
  .podium_brand {
    width: fit-content;
  }
  .podium_brand__holder {
    width: 100%;
    min-width: 328px;
    min-height: 146px;
    padding: 20px 8px 8px;
  }
  .podium_brand.centered .podium_brand__holder {
    min-height: 146px;
  }
  .podium_brand.centered .podium_brand__holder.with_ribbon {
    padding: 20px 8px 8px;
  }
  .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;
  }
  .podium_brand__bottom .review_list_item__coupon_wrap {
    max-width: 169px;
  }
  .podium_brand__bottom .podium_brand_cta {
    max-width: 134px;
    font-size: 12px;
  }
  .review_list {
    max-width: 600px;
    margin: auto;
  }
  .review_list_item__holder {
    padding: 20px 10px;
  }
  .review_list_item__visit_site {
    height: 100%;
    max-width: 134px;
    min-height: 36px;
    font-size: 12px;
    text-align: center;
    padding: 5px 3px;
  }
  .review_list_item__visible_part {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    gap: 10px;
    padding: 0;
  }
  .review_list_item__ribbon,
  .review_list_item__ribbon_text {
    font-size: 10px;
    height: 18px;
    min-width: 48px;
  }
  .review_list_item__ribbon_text {
    left: 35px;
    padding: 0 20px 0 20px;
  }
  .review_list_item__logo_wrap {
    width: 50%;
    max-width: 100%;
    font-size: 12px;
    gap: 2px;
  }
  .review_list_item__promotion_wrap {
    grid-area: 2/1/3/2;
    margin: 0;
    padding: 0;
  }
  .review_list_item__info_wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 10px;
    align-items: center;
    height: auto;
  }
  .review_list_item__rates_wrap {
    flex-direction: row;
    gap: 5px;
    margin-top: 5px;
  }
  .review_list_item__rates_score {
    padding: 4px 8px;
    font-size: 32px;
    line-height: 1;
  }
  .review_list_item__block {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    display: flex;
  }
  .review_list_item__rates_word {
    font-size: 12px;
  }
  .review_list .review_list_item__logo {
    width: 89px;
    height: 56px;
  }
  .review_list_item__logo {
    width: 89px;
    height: 56px;
  }
  .review_list_item__coupon_wrap {
    max-width: 100%;
    width: 100%;
    padding: 4px;
  }
  .review_list_item__coupon {
    padding: 4px;
    gap: 5px;
    text-align: left;
    min-height: 27px;
  }
  .review_list_item__coupon img {
    width: 32px;
  }
  .review_list_item__coupon p {
    font-size: 9px;
    line-height: 14px;
  }
  .text_section_wrap {
    margin-top: 30px;
  }
}
@media (max-width: 864px) {
  .review_list_item__coupon_wrap {
    width: 100%;
    max-width: 160px;
  }
  .review_list_promo_wrap {
    flex-direction: column;
    gap: 0;
    padding: 5px 10px;
    background-size: cover !important;
    background-position: left;
    align-items: flex-end;
    background-repeat: no-repeat;
    min-height: 139px;
    justify-content: center;
  }
  .review_list_promo__logo {
    display: none;
  }
  .review_list_promo__text {
    width: 65%;
    gap: 6px;
    padding: 0;
  }
  .review_list_promo__text .review_list_promo__title {
    font-size: 18px;
    line-height: 20px;
    word-break: break-word;
  }
  .review_list_promo__text .review_list_promo__subtitle {
    font-size: 14px;
  }
  .review_list_promo__text .review_list_promo__cta {
    padding: 8px 34px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .header_menu,
  .main_subtitle_text {
    display: none;
  }
  .main_header_wrap {
    height: 40px;
  }
  .header_logo {
    width: 176px;
  }
  .main_title_block_wrap {
    padding: 11px 0;
    min-height: 152px;
    margin: 40px 0 0;
  }
  h1 {
    font-size: 21px;
  }
  .main_subtitle {
    display: none;
  }
  .last_updated_block img {
    width: 18px;
  }
  .last_updated_block p {
    font-size: 10px;
  }
  .podium_brands_block {
    min-height: auto;
    padding: 5px;
    gap: 0 20px;
  }
  .section_title_with_border {
    padding: 24px 0;
  }
  .review_list_item__stab_welcome {
    gap: 6px;
  }
  .review_list_item__stab_welcome img {
    max-width: 18px;
  }
  .review_list_item__bottom .review_list_item__visit_text,
  .review_list_item__bottom .review_list_item__stab_offer {
    font-size: 12px;
    line-height: 16px;
  }
  .review_list_item__bottom .review_list_item__stab_visit {
    padding: 6px 28px;
    font-size: 12px;
  }
  .main_footer_wrap {
    margin: 0;
    position: relative;
  }
  .footer_disclosure__title {
    margin: 20px 0 25px;
  }
  .main_footer {
    display: flex;
    flex-direction: column;
  }
  .main_footer .footer_logo {
    margin: 0;
  }
  .main_footer .footer_address {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
  }
  .main_footer .footer_copyright {
    margin-top: 20px;
  }
  .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;
  }
  .main_footer .review_list_item__coupon_wrap:before {
    top: 24%;
    right: -27%;
  }
  #backToTopBtn {
    width: 40px;
    height: 40px;
  }
  .review_list_item__visit_link {
    display: none;
  }
  .section_title_with_border {
    padding: 24px 0;
  }
  .footer_disclosure__title {
    margin: 20px 0 25px;
  }
  .section_title_with_border {
    margin: 0;
  }
  .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 {
    top: 0;
    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) {
  .podium_brands_block_wrap {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .main_title_block_wrap {
    padding: 10px 0;
  }
  .review_list_promo__subtitle {
    font-size: 12px;
  }
  .review_list_item__holder {
    padding: 15px 10px 10px;
  }
  .review_list_item__holder.with_ribbon {
    padding: 25px 10px 10px;
  }
  .review_list_item__coupon_wrap::before {
    top: 24%;
    right: -10%;
  }
  .review_list_item__coupon .coupon_image_wrap {
    max-width: 24px;
    height: 24px;
  }
  .review_list_item__coupon .coupon_image_wrap img {
    width: 14px;
    height: 9px;
  }
  .review_list_item__visit {
    max-width: 135px;
    padding: 3px 2px;
    min-height: 26px;
  }
  .review_list_item__visit img {
    width: 16px;
  }
  .review_list_item__visit .review_list_item__visit_text {
    margin: 0;
    padding: 0;
    font-size: 7px;
    line-height: 8px;
  }
  .page_title {
    font-size: 18px;
  }
  .review_list_item__rates_score {
    padding: 0;
    font-size: 21px;
    width: fit-content;
  }
  .main_advantages_block {
    margin: 0;
    gap: 15px;
  }
  .main_advantages_block .advantage_item img {
    max-width: 18px;
  }
  .main_advantages_block .advantage_item span {
    font-size: 9px;
  }
  .content_wrap {
    margin: 0;
  }
}
@media (max-width: 380px) {
  .review_list_item__logo_wrap {
    margin-left: 0;
  }
  .review_list_item__coupon_wrap::before {
    top: 23%;
    right: -4%;
  }
}
@media (max-width: 340px) {
  .podium_brand:nth-child(2) {
    padding: 18px 14px 14px;
    gap: 10px;
    min-width: 300px;
  }
  .podium_brand__left {
    margin: 10px 0 0 0;
  }
  .podium_brand_logo {
    margin: 0;
  }
  .podium_brand_rating {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
  .review_list_item__rates_wrap {
    flex-direction: column;
    top: 16px;
    gap: 6px;
  }
  .review_list_item__block {
    align-items: center;
  }
  .review_list_item__logo {
    height: 48px;
  }
  .review_list_item__coupon_wrap::before {
    top: 8%;
    right: 1%;
  }
  .review_list_item__coupon {
    min-height: 40px;
  }
  .review_list_item__coupon img {
    display: none;
  }
  .review_list_item__logo {
    height: 38px;
  }
  .review_list_item__info_wrap {
    min-width: 112px;
  }
  .review_list_item__rates_wrap {
    top: 4px;
    gap: 0;
  }
  .review_list_promo__cta {
    font-weight: 600;
    font-size: 12px;
    padding: 10px 28px;
  }
  .review_list_item__coupon_wrap {
    min-width: 120px;
  }
  .review_list_item__coupon_wrap {
    max-width: 45%;
  }
}

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