.blog {
  padding: 90px 0 120px;
}
@media (min-width: 1200px) {
  .blog {
    background: left bottom/auto no-repeat url(../img/blog_bg.webp);
  }
}
@media (max-width: 599px) {
  .blog {
    padding: 60px 0;
  }
}
.blog .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blog .section_subtitle {
  padding: 10px 15px;
  border-radius: 100px;
  box-shadow: 0 10px 42px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 13px;
  line-height: 123%;
  text-transform: uppercase;
  color: #0b3948;
}
.blog .section_subtitle .icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.blog .section_title {
  margin: 25px 0 0;
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 50px;
  line-height: 116%;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  text-align: center;
  color: #0b3948;
}
@media (max-width: 1199px) {
  .blog .section_title {
    margin-top: 20px;
    font-size: 36px;
  }
}
@media (max-width: 599px) {
  .blog .section_title {
    font-size: 24px;
    line-height: 125%;
    letter-spacing: initial;
    text-transform: initial;
  }
}
.blog .swiper_posts_wrapper {
  position: relative;
  margin-top: 70px;
  width: 100%;
}
@media (max-width: 1199px) {
  .blog .swiper_posts_wrapper {
    margin-top: 40px;
  }
}
@media (max-width: 599px) {
  .blog .swiper_posts_wrapper {
    margin-top: 20px;
  }
}
.blog .swiper_posts_wrapper .swiper_posts_prev {
  display: none;
  margin-bottom: 20px;
  padding: 6px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eeeae5;
  position: absolute;
  top: 50%;
  left: -9px;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  transition: 0.35s;
}
@media (max-width: 599px) {
  .blog .swiper_posts_wrapper .swiper_posts_prev {
    display: flex;
  }
}
.blog .swiper_posts_wrapper .swiper_posts_prev svg {
  transform: rotate(180deg);
  width: 24px;
  max-width: 100%;
  height: auto;
}
.blog .swiper_posts_wrapper .swiper_posts_prev.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
.blog .swiper_posts_wrapper .swiper_posts_next {
  display: none;
  margin-bottom: 20px;
  padding: 6px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eeeae5;
  position: absolute;
  top: 50%;
  right: -9px;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  transition: 0.35s;
}
@media (max-width: 599px) {
  .blog .swiper_posts_wrapper .swiper_posts_next {
    display: flex;
  }
}
.blog .swiper_posts_wrapper .swiper_posts_next svg {
  width: 24px;
  max-width: 100%;
  height: auto;
}
.blog .swiper_posts_wrapper .swiper_posts_next.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
.blog .swiper_posts {
  overflow: hidden;
}
.blog .swiper_posts .swiper-slide {
  position: relative;
  border: 1px solid #eeeae5;
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: auto;
}
.blog .swiper_posts .swiper-slide .category {
  padding: 0 10px;
  border-radius: 8px;
  background: #0b3948;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  position: absolute;
  top: 14px;
  left: 18px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .blog .swiper_posts .swiper-slide .category {
    padding: 4px 8px;
    font-size: 12px;
    left: 14px;
  }
}
@media (max-width: 599px) {
  .blog .swiper_posts .swiper-slide .category {
    padding: 0 4px;
    top: 10px;
    left: 12px;
  }
}
.blog .swiper_posts .swiper-slide .thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 452/209;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .blog .swiper_posts .swiper-slide .thumb {
    aspect-ratio: 337/224;
  }
}
@media (max-width: 599px) {
  .blog .swiper_posts .swiper-slide .thumb {
    aspect-ratio: 297/159;
  }
}
.blog .swiper_posts .swiper-slide .title {
  flex-grow: 1;
  margin-top: 16px;
  padding: 0 20px;
}
.blog .swiper_posts .swiper-slide .title h3 {
  margin: 0;
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  text-transform: uppercase;
  color: #0b3948;
}
@media (max-width: 1199px) {
  .blog .swiper_posts .swiper-slide .title h3 {
    font-size: 20px;
  }
}
@media (max-width: 599px) {
  .blog .swiper_posts .swiper-slide .title h3 {
    font-size: 16px;
  }
}
.blog .swiper_posts .swiper-slide .meta {
  margin: 25px 0 38px;
  padding-left: 26px;
  padding-right: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.blog .swiper_posts .swiper-slide .meta .date {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 148%;
  text-align: center;
  color: #0b3948;
}
.blog .swiper_posts .swiper-slide .meta .date .icon {
  flex-shrink: 0;
  width: auto;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
.blog .swiper_posts .swiper-slide .meta .link {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 148%;
  text-align: center;
  color: #0b3948;
}
.blog .swiper_posts .swiper-slide .meta .link svg {
  flex-shrink: 0;
  width: 23px;
  height: auto;
}

.banner {
  position: relative;
  padding: 90px 0 110px;
  display: flex;
  align-items: center;
  min-height: 540px;
}
@media (max-width: 1199px) {
  .banner {
    padding: 25px 0 60px;
    min-height: 500px;
  }
}
@media (max-width: 599px) {
  .banner {
    padding: 40px 0 55px;
    min-height: initial;
  }
}
@media (max-width: 1199px) {
  .banner .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 599px) {
  .banner .wrapper {
    padding: 0 30px;
  }
}
.banner .section_title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 68px;
  line-height: 125%;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .banner .section_title {
    font-size: 36px;
    max-width: 62%;
  }
}
@media (max-width: 599px) {
  .banner .section_title {
    font-size: 24px;
    max-width: 72%;
  }
}
.banner .desc {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
  color: var(--0b3948);
  width: 830px;
  max-width: 62%;
}
@media (max-width: 1199px) {
  .banner .desc {
    margin-top: 25px;
    line-height: 150%;
    width: auto;
    max-width: 52%;
    color: #748289;
  }
}
@media (max-width: 767px) {
  .banner .desc {
    max-width: 62%;
  }
}
@media (max-width: 599px) {
  .banner .desc {
    margin-top: 12px;
    font-size: 14px;
    line-height: 157%;
    max-width: 72%;
  }
}
.banner .form_btn {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 62%;
}
@media (max-width: 1199px) {
  .banner .form_btn {
    margin-top: 25px;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .banner .form_btn {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 599px) {
  .banner .form_btn {
    margin-top: 12px;
    gap: 10px;
    align-items: center;
  }
}
.banner .form_btn .zip_search {
  width: 100%;
  max-width: 575px;
  border-radius: 8px;
  box-shadow: 9px 6px 20px 11px rgba(0, 0, 0, 0.04);
  background: var(--style);
  display: flex;
}
@media (max-width: 1199px) {
  .banner .form_btn .zip_search {
    max-width: 400px;
  }
}
.banner .form_btn .zip_search input {
  outline: none;
  border: none;
  padding-left: 40px;
  padding-right: 20px;
  flex-grow: 1;
  width: 100%;
  max-width: calc(100% - 215px);
  height: 60px;
  background: center left 16px/20px no-repeat url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.99954 1.25C8.17684 1.25216 6.42942 1.97719 5.14057 3.26603C3.85173 4.55487 3.1267 6.3023 3.12454 8.125C3.12454 14.0076 9.37454 18.4509 9.64066 18.6371C9.7459 18.7106 9.87117 18.75 9.99954 18.75C10.1279 18.75 10.2532 18.7106 10.3584 18.6371C10.6245 18.4509 16.8745 14.0076 16.8745 8.125C16.8724 6.3023 16.1474 4.55487 14.8585 3.26603C13.5697 1.97719 11.8222 1.25216 9.99954 1.25ZM10 5.62523C10.4945 5.62523 10.9778 5.77185 11.3889 6.04655C11.8 6.32126 12.1205 6.7117 12.3097 7.16852C12.4989 7.62533 12.5484 8.128 12.452 8.61295C12.3555 9.0979 12.1174 9.54336 11.7678 9.89299C11.4181 10.2426 10.9727 10.4807 10.4877 10.5772C10.0028 10.6737 9.50011 10.6241 9.04329 10.4349C8.58648 10.2457 8.19603 9.92527 7.92133 9.51415C7.64662 9.10303 7.5 8.61968 7.5 8.12523C7.49999 7.79692 7.56465 7.47183 7.69028 7.16851C7.81592 6.86519 8.00006 6.58959 8.23221 6.35744C8.46436 6.12529 8.73996 5.94114 9.04328 5.81551C9.3466 5.68988 9.67169 5.62522 10 5.62523Z" fill="%23C1B8B8" /></svg>'), transparent;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--0b3948);
}
@media (max-width: 599px) {
  .banner .form_btn .zip_search input {
    max-width: calc(100% - 148px);
    height: 48px;
  }
}
.banner .form_btn .zip_search input::-moz-placeholder {
  opacity: 1;
  color: var(--0b3948);
}
.banner .form_btn .zip_search input::placeholder {
  opacity: 1;
  color: var(--0b3948);
}
.banner .form_btn .zip_search button[type=submit] {
  outline: none;
  border: none;
  flex-shrink: 0;
  min-width: 215px;
  height: 60px;
  border-radius: 0 8px 8px 0;
  padding: 0 15px;
  background: var(--0b3948);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 148%;
  text-align: center;
  color: var(--style);
  cursor: pointer;
  transition: 0.35s;
}
@media (max-width: 599px) {
  .banner .form_btn .zip_search button[type=submit] {
    min-width: 148px;
    height: 48px;
    gap: 6px;
    font-size: 16px;
  }
}
.banner .form_btn .zip_search button[type=submit]:hover {
  color: var(--0b3948);
  background: var(--f9a21b);
}
.banner .form_btn .zip_search button[type=submit] svg {
  flex-shrink: 0;
  width: 27px;
  height: auto;
}
@media (max-width: 599px) {
  .banner .form_btn .zip_search button[type=submit] svg {
    width: 20px;
  }
}
.banner .form_btn .phone_btn {
  flex-shrink: 0;
  border-radius: 8px;
  height: 60px;
  padding: 5px 24px 5px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffd470;
}
@media (max-width: 599px) {
  .banner .form_btn .phone_btn {
    width: 100%;
    max-width: 400px;
    height: 48px;
    padding: 0 20px;
    gap: 0;
  }
}
.banner .form_btn .phone_btn:hover {
  background: var(--f9a21b);
}
.banner .form_btn .phone_btn svg {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.banner .form_btn .phone_btn .text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  text-align: center;
  color: var(--0b3948);
}
@media (max-width: 599px) {
  .banner .form_btn .phone_btn .text {
    flex-grow: 1;
    padding: 0 10px;
  }
}
.banner .form_btn .phone_btn .text .label {
  font-weight: 700;
  font-size: 16px;
}
.banner .img {
  position: absolute;
  top: 0;
  right: 0;
  width: 540px;
  max-width: 38%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 0;
}
@media (max-width: 1199px) {
  .banner .img {
    max-width: 34%;
    height: auto;
    top: 7px;
  }
}
@media (max-width: 599px) {
  .banner .img {
    max-width: 28%;
    top: 55px;
  }
}

.text_block {
  padding: 48px 0;
  background: var(--style);
}
@media (max-width: 1199px) {
  .text_block {
    padding: 40px 0;
  }
}
@media (max-width: 1199px) {
  .text_block.box {
    padding: 0 40px;
    background: transparent;
  }
}
@media (max-width: 599px) {
  .text_block.box {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .text_block.box .wrapper {
    padding: 48px 40px;
    background: var(--style);
  }
}
@media (max-width: 599px) {
  .text_block.box .wrapper {
    padding: 30px;
  }
}
@media (max-width: 1199px) {
  .text_block .wrapper {
    padding: 0 40px;
  }
}
.text_block .section_title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .text_block .section_title {
    font-size: 24px;
    line-height: 148%;
    letter-spacing: -0.02em;
  }
}
@media (max-width: 599px) {
  .text_block .section_title {
    font-size: 20px;
  }
}
.text_block .content {
  margin-top: 30px;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 148%;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .text_block .content {
    margin-top: 24px;
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .text_block .content {
    font-size: 14px;
  }
}
.text_block .content > * {
  margin: 0 0 1em;
}
.text_block .content > *:last-child {
  margin-bottom: 0;
}
.text_block .content strong, .text_block .content b {
  font-weight: 500;
}

.flexible_blocks {
  padding: 60px 0 48px;
}
@media (max-width: 1199px) {
  .flexible_blocks {
    padding: 40px 0 68px;
  }
}
@media (max-width: 599px) {
  .flexible_blocks {
    padding: 40px 0 50px;
  }
}
@media (max-width: 1199px) {
  .flexible_blocks .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 599px) {
  .flexible_blocks .wrapper {
    padding: 0 30px;
  }
}
.flexible_blocks .box:first-child {
  margin-top: 0;
}
.flexible_blocks .box:last-child {
  margin-bottom: 0;
}
.flexible_blocks .features {
  margin: 54px 0;
}
@media (max-width: 1199px) {
  .flexible_blocks .features {
    margin: 60px 0;
  }
}
@media (max-width: 599px) {
  .flexible_blocks .features {
    margin: 56px 0;
  }
}
.flexible_blocks .features .section_title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .flexible_blocks .features .section_title {
    font-size: 24px;
    letter-spacing: -0.02em;
  }
}
.flexible_blocks .features .list {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 42px;
}
@media (max-width: 1199px) {
  .flexible_blocks .features .list {
    margin-top: 22px;
    gap: 20px;
  }
}
@media (max-width: 599px) {
  .flexible_blocks .features .list {
    margin-top: 42px;
  }
}
.flexible_blocks .features .list .item {
  border-radius: 8px;
  background: var(--style);
  width: calc(33.3333333333% - 28px);
}
@media (max-width: 1199px) {
  .flexible_blocks .features .list .item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 599px) {
  .flexible_blocks .features .list .item {
    width: 100%;
  }
}
.flexible_blocks .features .list .item .img {
  display: block;
  border-radius: 8px 8px 0 0;
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
.flexible_blocks .features .list .item .title {
  margin: 16px 0 0;
  padding: 0 24px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .flexible_blocks .features .list .item .title {
    font-size: 20px;
    line-height: 180%;
  }
}
@media (max-width: 599px) {
  .flexible_blocks .features .list .item .title {
    font-size: 16px;
    line-height: 225%;
    letter-spacing: -0.03em;
  }
}
.flexible_blocks .features .list .item .text {
  margin: 12px 0 32px;
  padding: 0 24px;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 125%;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .flexible_blocks .features .list .item .text {
    margin-bottom: 24px;
  }
}
@media (max-width: 599px) {
  .flexible_blocks .features .list .item .text {
    font-size: 14px;
  }
}
.flexible_blocks .about_plans {
  margin: 54px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1199px) {
  .flexible_blocks .about_plans {
    align-items: start;
    margin: 60px 0 20px;
  }
}
@media (max-width: 599px) {
  .flexible_blocks .about_plans {
    margin: 56px 0 40px;
  }
}
.flexible_blocks .about_plans .section_title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  text-align: center;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .flexible_blocks .about_plans .section_title {
    font-size: 24px;
    line-height: 148%;
    text-align: left;
  }
}
@media (max-width: 599px) {
  .flexible_blocks .about_plans .section_title {
    font-size: 20px;
  }
}
.flexible_blocks .about_plans .desc {
  margin-top: 42px;
  margin-bottom: -22px;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 148%;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .flexible_blocks .about_plans .desc {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .flexible_blocks .about_plans .desc {
    font-size: 14px;
  }
}
.flexible_blocks .about_plans .types_list {
  margin-top: 42px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(var(--grid-count), 1fr);
  gap: 20px;
}
@media (max-width: 1199px) {
  .flexible_blocks .about_plans .types_list {
    margin-top: 46px;
    padding: 0 20px;
    gap: 18px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .flexible_blocks .about_plans .types_list {
    margin-top: 20px;
    padding: 0;
    gap: 12px;
    grid-template-columns: 1fr;
  }
}
.flexible_blocks .about_plans .types_list .item {
  border-radius: 8px;
  background: var(--style);
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-height: 190px;
}
@media (max-width: 599px) {
  .flexible_blocks .about_plans .types_list .item {
    min-height: 125px;
  }
}
.flexible_blocks .about_plans .types_list .item .icon {
  width: 100%;
  height: 66px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 599px) {
  .flexible_blocks .about_plans .types_list .item .icon {
    height: 48px;
  }
}
.flexible_blocks .about_plans .types_list .item .title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  text-align: center;
  color: var(--0b3948);
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.flexible_blocks .about_plans .types_list .item .text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  line-height: 125%;
  text-align: center;
  color: var(--0b3948);
  flex-grow: 2;
}
.flexible_blocks .about_plans .apl_btn {
  display: none;
}
@media (max-width: 1199px) {
  .flexible_blocks .about_plans .apl_btn {
    margin-top: 18px;
    align-self: center;
    min-width: 215px;
    height: 60px;
    border-radius: 8px;
    background: #ffd470;
    padding: 0 35px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    text-align: center;
    color: var(--0b3948);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 599px) {
  .flexible_blocks .about_plans .apl_btn {
    margin-top: 12px;
  }
}
.flexible_blocks .about_plans .links_list {
  margin-top: 42px;
  padding-top: 40px;
  border-top: 1px solid var(--eeeae5);
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 1199px) {
  .flexible_blocks .about_plans .links_list {
    margin-top: 23px;
    padding-top: 23px;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 599px) {
  .flexible_blocks .about_plans .links_list {
    margin-top: 20px;
    padding-top: 20px;
    gap: 12px;
  }
}
.flexible_blocks .about_plans .links_list .item {
  width: 100%;
  border-radius: 8px;
  background: var(--style);
  display: flex;
  align-items: center;
}
.flexible_blocks .about_plans .links_list .item .img {
  border-radius: 8px;
  width: 100%;
  max-width: 325px;
  min-height: 220px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 599px) {
  .flexible_blocks .about_plans .links_list .item .img {
    min-height: 130px;
    max-width: 110px;
  }
}
.flexible_blocks .about_plans .links_list .item .text {
  padding: 28px 20px;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  color: var(--04242b);
}
@media (max-width: 599px) {
  .flexible_blocks .about_plans .links_list .item .text {
    padding: 20px;
    font-size: 16px;
  }
}
.flexible_blocks .about_plans .btn {
  margin-top: 88px;
  align-self: start;
  border-radius: 8px;
  background: var(--0b3948);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 148%;
  text-align: center;
  color: var(--style);
}
@media (max-width: 1199px) {
  .flexible_blocks .about_plans .btn {
    margin-top: 20px;
    align-self: center;
  }
}
@media (max-width: 599px) {
  .flexible_blocks .about_plans .btn {
    margin-top: 12px;
  }
}
.flexible_blocks .about_plans .btn:hover {
  background: var(--f9a21b);
  color: var(--0b3948);
}
.flexible_blocks .about_plans .btn svg {
  flex-shrink: 0;
  width: 27px;
  height: auto;
}
.flexible_blocks .types_plans {
  margin: 60px 0 48px;
  padding-top: 48px;
  border-top: 1px solid var(--eeeae5);
}
@media (max-width: 1199px) {
  .flexible_blocks .types_plans {
    margin: 20px 0 56px;
    padding-top: 36px;
  }
}
@media (max-width: 599px) {
  .flexible_blocks .types_plans {
    margin: 40px 0 50px;
    padding-top: 30px;
  }
}
.flexible_blocks .types_plans .section_title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .flexible_blocks .types_plans .section_title {
    font-size: 24px;
    line-height: 148%;
    letter-spacing: -0.02em;
  }
}
@media (max-width: 599px) {
  .flexible_blocks .types_plans .section_title {
    font-size: 20px;
    max-width: calc(100% - 75px);
  }
}
.flexible_blocks .types_plans .list {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(var(--grid-count), 1fr);
  gap: 20px;
}
@media (max-width: 1199px) {
  .flexible_blocks .types_plans .list:not(.mobile_solo) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .flexible_blocks .types_plans .list.mobile_solo .item {
    width: 100%;
  }
}
@media (max-width: 899px) {
  .flexible_blocks .types_plans .list.mobile_solo {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 599px) {
  .flexible_blocks .types_plans .list {
    margin-top: 20px;
  }
}
.flexible_blocks .types_plans .list .item {
  border-radius: 8px;
  padding: 30px 20px;
  background: var(--style);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1199px) {
  .flexible_blocks .types_plans .list .item {
    width: calc(33.3333333333% - 13.3333333333px);
  }
}
@media (max-width: 767px) {
  .flexible_blocks .types_plans .list .item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 599px) {
  .flexible_blocks .types_plans .list .item {
    width: 100%;
  }
}
.flexible_blocks .types_plans .list .item .icon {
  width: 100%;
  height: 66px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 599px) {
  .flexible_blocks .types_plans .list .item .icon {
    height: 48px;
  }
}
.flexible_blocks .types_plans .list .item .title {
  margin: 20px 0 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 148%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-align: center;
  color: var(--0b3948);
}
.flexible_blocks .types_plans .list .item .text {
  margin-top: 12px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 148%;
  text-align: center;
  color: var(--0b3948);
}

.info_block {
  margin: 48px 0;
  padding-top: 48px;
  border-top: 1px solid var(--eeeae5);
  display: grid;
  grid-template-columns: 860fr 450fr;
  gap: 24px 90px;
}
@media (max-width: 1199px) {
  .info_block {
    margin: 56px 0 68px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 599px) {
  .info_block {
    margin: 50px 0;
    padding-top: 30px;
  }
}
.info_block .section_title {
  grid-column: span 2;
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .info_block .section_title {
    grid-column: initial;
    font-size: 24px;
    line-height: 148%;
    letter-spacing: -0.02em;
  }
}
.info_block .content {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 148%;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .info_block .content {
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .info_block .content {
    font-size: 14px;
  }
}
.info_block .content > * {
  margin: 0 0 1em;
}
.info_block .content > *:last-child {
  margin-bottom: 0;
}
.info_block .content strong, .info_block .content b {
  font-weight: 700;
}
.info_block .content ul, .info_block .content ol {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.info_block .content h1, .info_block .content h2, .info_block .content h3, .info_block .content h4, .info_block .content h5, .info_block .content h6 {
  font-family: var(--second-family);
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--0b3948);
}
.info_block .content h1 {
  font-size: 36px;
}
@media (max-width: 1199px) {
  .info_block .content h1 {
    font-size: 32px;
  }
}
.info_block .content h2 {
  font-size: 30px;
}
@media (max-width: 1199px) {
  .info_block .content h2 {
    font-size: 24px;
  }
}
.info_block .content h3 {
  font-size: 24px;
}
@media (max-width: 1199px) {
  .info_block .content h3 {
    font-size: 22px;
  }
}
@media (max-width: 599px) {
  .info_block .content h3 {
    font-size: 20px;
  }
}
.info_block .content h4 {
  font-size: 22px;
}
@media (max-width: 1199px) {
  .info_block .content h4 {
    font-size: 20px;
  }
}
@media (max-width: 599px) {
  .info_block .content h4 {
    font-size: 18px;
  }
}
.info_block .content h5 {
  font-size: 20px;
}
@media (max-width: 1199px) {
  .info_block .content h5 {
    font-size: 18px;
  }
}
@media (max-width: 599px) {
  .info_block .content h5 {
    font-size: 16px;
  }
}
.info_block .img {
  width: 100%;
  height: auto;
  aspect-ratio: 450/600;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .info_block .img {
    margin-top: 6px;
    aspect-ratio: 688/400;
  }
}
@media (max-width: 599px) {
  .info_block .img {
    aspect-ratio: 300/220;
  }
}
.info_block .btn {
  justify-self: start;
  border-radius: 8px;
  background: #ffd470;
  height: 60px;
  padding-left: 45px;
  padding-right: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: var(--0b3948);
}
@media (max-width: 599px) {
  .info_block .btn {
    padding-right: 18px;
    padding-left: 38px;
    font-size: 14px;
    line-height: 143%;
  }
}
.info_block .btn:hover {
  background: var(--f9a21b);
}
.info_block .btn svg {
  flex-shrink: 0;
  width: 27px;
  height: auto;
}

.help_blocks {
  margin: 48px 0;
  padding-top: 48px;
  border-top: 1px solid var(--eeeae5);
}
@media (max-width: 1199px) {
  .help_blocks {
    margin: 68px 0;
  }
}
@media (max-width: 599px) {
  .help_blocks {
    margin: 50px 0;
    padding-top: 30px;
  }
}
.help_blocks .section_title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: var(--0b3948);
}
@media (max-width: 599px) {
  .help_blocks .section_title {
    font-size: 20px;
    line-height: 180%;
    letter-spacing: -0.02em;
  }
}
.help_blocks .list {
  margin-top: 53px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
@media (max-width: 1199px) {
  .help_blocks .list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 599px) {
  .help_blocks .list {
    margin-top: 20px;
    grid-template-columns: 1fr;
  }
}
.help_blocks .list .item {
  border-radius: 8px;
  padding: 20px;
  background: var(--style);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.help_blocks .list .item .icon {
  width: 100%;
  height: 66px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 599px) {
  .help_blocks .list .item .icon {
    height: 48px;
  }
}
.help_blocks .list .item .title {
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 148%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-align: center;
  color: var(--0b3948);
  min-height: 72px;
}
@media (max-width: 599px) {
  .help_blocks .list .item .title {
    max-width: 210px;
  }
}

.medigap_plans {
  margin: 48px 0;
  padding-top: 48px;
  border-top: 1px solid var(--eeeae5);
}
@media (max-width: 1199px) {
  .medigap_plans {
    margin: 20px 0 56px;
    padding-top: 36px;
  }
}
@media (max-width: 599px) {
  .medigap_plans {
    margin: 40px 0 50px;
    padding-top: 30px;
  }
}
.medigap_plans .section_title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .medigap_plans .section_title {
    font-size: 24px;
    line-height: 148%;
    letter-spacing: -0.02em;
  }
}
@media (max-width: 599px) {
  .medigap_plans .section_title {
    font-size: 20px;
  }
}
.medigap_plans .desc {
  margin-top: 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 148%;
  color: var(--0b3948);
  max-width: 860px;
}
@media (max-width: 1199px) {
  .medigap_plans .desc {
    margin-top: 0;
    font-size: 16px;
    max-width: 100%;
  }
}
@media (max-width: 599px) {
  .medigap_plans .desc {
    margin-top: 20px;
    font-size: 14px;
  }
}
.medigap_plans .table {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1199px) {
  .medigap_plans .table {
    margin-top: 48px;
  }
}
@media (max-width: 599px) {
  .medigap_plans .table {
    margin-top: 20px;
  }
}
.medigap_plans .table > *:not(:first-child) {
  border-left: 1px solid var(--eeeae5);
  border-right: 1px solid var(--eeeae5);
}
.medigap_plans .table > * {
  border-bottom: 1px solid var(--eeeae5);
}
.medigap_plans .table > *:nth-child(even) {
  background: var(--style);
}
.medigap_plans .table .titles {
  padding: 12px 20px;
  display: grid;
  grid-template-columns: 420fr repeat(8, 105fr);
  align-items: start;
  gap: 12px;
}
@media (max-width: 1199px) {
  .medigap_plans .table .titles {
    grid-template-columns: 200fr repeat(8, 44fr);
  }
}
@media (max-width: 599px) {
  .medigap_plans .table .titles {
    padding: 12px 9px;
    grid-template-columns: 1fr;
  }
}
.medigap_plans .table .titles .col {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 148%;
  color: var(--0b3948);
}
@media (max-width: 599px) {
  .medigap_plans .table .titles .col {
    display: none;
  }
}
.medigap_plans .table .titles .col:first-child {
  font-size: 14px;
}
@media (max-width: 599px) {
  .medigap_plans .table .titles .col:first-child {
    display: block;
  }
}
.medigap_plans .table .row {
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 420fr repeat(8, 105fr);
  align-items: start;
  gap: 12px;
}
@media (max-width: 1199px) {
  .medigap_plans .table .row {
    grid-template-columns: 200fr repeat(8, 44fr);
  }
}
@media (max-width: 599px) {
  .medigap_plans .table .row {
    padding: 9px;
    grid-template-columns: repeat(8, 1fr);
    gap: 6px 8px;
  }
}
@media (max-width: 599px) {
  .medigap_plans .table .row .col {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .medigap_plans .table .row .col:first-child {
    grid-column: span 8;
  }
}
.medigap_plans .table .row .col .title {
  display: none;
}
@media (max-width: 599px) {
  .medigap_plans .table .row .col .title {
    display: block;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 11px;
    line-height: 148%;
    color: var(--0b3948);
  }
}
.medigap_plans .table .row .col .val {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 125%;
}
.medigap_plans .table .row .col .val.check svg {
  margin: 4px 0;
  display: block;
  max-width: 100%;
  height: 12px;
}
@media (max-width: 599px) {
  .medigap_plans .table .row .col .val.check svg {
    margin: 2px 0;
  }
}
.medigap_plans .table .row .col .val.uncheck svg {
  margin: 4px 0;
  display: block;
  max-width: 100%;
  height: 12px;
}
@media (max-width: 599px) {
  .medigap_plans .table .row .col .val.uncheck svg {
    margin: 2px 0;
  }
}
.medigap_plans .table .row .col .val.text {
  font-size: 16px;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .medigap_plans .table .row .col .val.text {
    font-size: 14px;
  }
}
@media (max-width: 599px) {
  .medigap_plans .table .row .col .val.text {
    font-size: 12px;
  }
}
.medigap_plans .table .row .col:not(:first-child) .val {
  word-break: break-word;
}

.blog {
  padding: 68px 0 48px;
}
@media (max-width: 1199px) {
  .blog {
    padding: 50px 0 57px;
  }
}
@media (max-width: 599px) {
  .blog {
    padding: 50px 0;
  }
}
.blog .wrapper {
  align-items: start;
}
@media (max-width: 1199px) {
  .blog .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 599px) {
  .blog .wrapper {
    padding: 0 30px;
  }
}
.blog .section_title {
  margin-top: 0;
  font-size: 30px;
  line-height: 120%;
  text-align: left;
}
@media (max-width: 599px) {
  .blog .section_title {
    font-size: 20px;
    line-height: 148%;
  }
}
.blog .swiper_posts_wrapper {
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .blog .swiper_posts_wrapper {
    margin-top: 30px;
  }
}

.states {
  padding: 48px 0 100px;
}
@media (max-width: 1199px) {
  .states {
    padding: 56px 0;
  }
}
@media (max-width: 599px) {
  .states {
    display: none;
  }
}
@media (max-width: 1199px) {
  .states .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 599px) {
  .states .wrapper {
    padding: 0 30px;
  }
}
.states .section_title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  color: #3E4552;
  text-shadow: 4px 4px 0 var(--style);
}
.states .states_list {
  margin-top: 20px;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 9px;
}
.states .states_list .item {
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--style);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 148%;
  text-align: center;
  color: var(--0b3948);
}
.states .states_list .item:hover {
  background: var(--eeeae5);
}