.main-page .header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 2.1rem 0;
  width: 100%;
  z-index: 10000; }
  .main-page .header .inner-container {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .main-page .header__inner-container {
    position: relative;
    z-index: 10000; }
  .main-page .header__logo {
    width: 6rem; }
    @media only screen and (max-width: 850px) {
      .main-page .header__logo {
        width: 40px; } }
  .main-page .header__right {
    display: flex;
    align-items: center; }
  .main-page .header .navigation__list {
    display: flex;
    align-items: center; }
    @media only screen and (max-width: 850px) {
      .main-page .header .navigation__list {
        flex-direction: column;
        align-items: flex-start; } }
  .main-page .header .navigation__item:not(:last-of-type) {
    margin-right: 3.1rem; }
    @media only screen and (max-width: 850px) {
      .main-page .header .navigation__item:not(:last-of-type) {
        margin-bottom: 40px; } }
  .main-page .header .navigation__button:hover {
    opacity: .8; }
  @media only screen and (max-width: 850px) {
    .main-page .header .navigation__button {
      font-size: 48px;
      line-height: .8;
      letter-spacing: -2.5px; } }
  @media only screen and (max-width: 850px) {
    .main-page .header .contact {
      margin-right: 10px; } }
  .main-page .header .contact__manager-block {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: .4rem; }
    @media only screen and (max-width: 850px) {
      .main-page .header .contact__manager-block {
        justify-content: flex-start; } }
  .main-page .header .contact__green-square {
    width: 1rem;
    height: 1rem;
    background-color: var(--color-green);
    border-radius: .3rem;
    margin-right: .9rem; }
    @media only screen and (max-width: 850px) {
      .main-page .header .contact__green-square {
        width: 10px;
        height: 10px;
        margin-right: 10px; } }
  .main-page .header .contact__manager {
    font-size: 1.4rem;
    color: var(--color-green);
    opacity: .6; }
    @media only screen and (max-width: 850px) {
      .main-page .header .contact__manager {
        font-size: 14px; } }
  .main-page .header .contact__phone-number {
    font-size: 1.8rem; }
    @media only screen and (max-width: 850px) {
      .main-page .header .contact__phone-number {
        font-size: 18px; } }
  .main-page .header .navigation-menu {
    background-color: var(--color-black);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 9000;
    transition: all .3s;
    transform: translateY(110vh); }
    .main-page .header .navigation-menu_active {
      transform: translateY(0); }
    .main-page .header .navigation-menu__contact {
      position: absolute;
      bottom: 20px;
      left: 0; }
  .main-page .header__toggle-menu-button {
    position: relative;
    height: 20px;
    width: 27px; }
    .main-page .header__toggle-menu-button_active .header__line_1 {
      transform: rotate(-45deg);
      transform-origin: right; }
    .main-page .header__toggle-menu-button_active .header__line_2 {
      opacity: 0; }
    .main-page .header__toggle-menu-button_active .header__line_3 {
      transform: rotate(46deg) translate(1px, 1px);
      transform-origin: right; }
  .main-page .header__line {
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--color-white);
    transition: all .3s; }
    .main-page .header__line_1 {
      top: 0; }
    .main-page .header__line_2 {
      top: 50%;
      transform: translateY(-50%); }
    .main-page .header__line_3 {
      bottom: 0; }

.main-page .section-1 {
  margin-bottom: 7rem; }
  .main-page .section-1__info {
    position: absolute;
    top: 47%;
    left: 0;
    transform: translateY(-50%);
    width: 37rem;
    z-index: 1000; }
    @media only screen and (max-width: 850px) {
      .main-page .section-1__info {
        width: 330px;
        top: 38%; } }
  .main-page .section-1 .info__title {
    font-size: 8.1rem;
    line-height: .8;
    letter-spacing: -.4rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-1 .info__title {
        font-size: 70px; } }
  .main-page .section-1 .info__subtitle-block {
    background-color: rgba(37, 171, 117, 0.25);
    border-radius: .9rem;
    padding: .5rem .9rem .5rem .5rem;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(20px);
    margin-top: -1rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-1 .info__subtitle-block {
        padding: 5px 10px 5px 5px;
        margin-top: 0; } }
  .main-page .section-1 .info__subtitle {
    font-size: 1.4rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-1 .info__subtitle {
        font-size: 16px; } }
  .main-page .section-1 .info__icon-container {
    background-color: var(--color-green);
    width: 3.1rem;
    height: 3.1rem;
    border-radius: .8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.3rem;
    padding-top: 3px;
    padding-left: 3px; }
    @media only screen and (max-width: 850px) {
      .main-page .section-1 .info__icon-container {
        width: 36px;
        height: 36px;
        margin-right: 15px; } }
  .main-page .section-1 .info__icon {
    width: 1.6rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-1 .info__icon {
        width: 18px; } }
  .main-page .section-1 .info__description {
    font-size: 1.7rem;
    line-height: 1.5;
    opacity: .8;
    width: 21rem;
    margin-top: 3.7rem;
    margin-bottom: 2rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-1 .info__description {
        font-size: 18px;
        width: 220px; } }
  .main-page .section-1 .info__buttons {
    display: flex;
    align-items: center;
    position: relative; }
  .main-page .section-1 .info__button-transparent {
    display: flex;
    align-items: center;
    padding: .7rem;
    margin-left: 1.2rem;
    font-size: 1.5rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-1 .info__button-transparent {
        font-size: 16px; } }
    .main-page .section-1 .info__button-transparent img {
      width: 1.1rem;
      margin-left: 1.4rem; }
      @media only screen and (max-width: 850px) {
        .main-page .section-1 .info__button-transparent img {
          width: 12px; } }
  .main-page .section-1__ladder-container {
    position: absolute;
    top: 51%;
    left: 0;
    transform: translateY(-50%);
    height: 59rem;
    width: 90rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-1__ladder-container {
        width: 600px;
        height: 450px;
        top: auto;
        bottom: 0;
        left: 40%;
        transform: translateX(-50%); } }
  .main-page .section-1__ladder-top {
    position: absolute;
    top: 1.8rem;
    right: 0;
    width: 51rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-1__ladder-top {
        width: 350px;
        top: 50px; } }
  .main-page .section-1__ladder-middle {
    position: absolute;
    bottom: 8.5rem;
    left: 46%;
    transform: translateX(-50%);
    width: 28rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-1__ladder-middle {
        width: 200px;
        left: 43%; } }
  .main-page .section-1__ladder-bottom {
    position: absolute;
    bottom: 0;
    left: 16%;
    width: 40rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-1__ladder-bottom {
        width: 280px;
        left: 12%; } }
  .main-page .section-1__triangle-container {
    position: absolute;
    bottom: 19%;
    right: 26%; }
  .main-page .section-1__triangle {
    width: 6.2rem; }
  .main-page .section-1__plus-container {
    position: absolute;
    bottom: -11rem;
    right: -3.1rem; }
  .main-page .section-1__plus {
    width: 25.5rem; }

.main-page .section-2 {
  min-height: 58rem; }
  @media only screen and (max-width: 850px) {
    .main-page .section-2 {
      height: auto;
      margin-bottom: 100px; } }
  @media only screen and (max-width: 450px) {
    .main-page .section-2 .inner-container {
      width: 100%; } }
  .main-page .section-2__content {
    height: 53rem;
    padding: 4.2rem 12rem 0 5.1rem;
    background-color: #161616;
    border-radius: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; }
    @media only screen and (max-width: 850px) {
      .main-page .section-2__content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        height: auto;
        padding: 54px 25px 0; } }
  .main-page .section-2 .info {
    height: 100%; }
    .main-page .section-2 .info__title {
      font-size: 3.1rem;
      line-height: 1.1;
      width: 30rem;
      margin-bottom: 6rem; }
      @media only screen and (max-width: 850px) {
        .main-page .section-2 .info__title {
          font-size: 32px;
          width: 100%;
          margin-bottom: 40px; } }
      .main-page .section-2 .info__title .green {
        color: var(--color-green);
        font-weight: 500; }
    .main-page .section-2 .info__description {
      line-height: 1.5;
      width: 33rem; }
      @media only screen and (max-width: 850px) {
        .main-page .section-2 .info__description {
          font-size: 16px;
          width: 100%;
          margin-bottom: 50px; } }
  .main-page .section-2__phone-container {
    position: relative; }
  .main-page .section-2__phone {
    width: 40rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-2__phone {
        width: 270px; } }
  .main-page .section-2__phone-message {
    top: 8rem;
    right: -8.7rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-2__phone-message {
        top: 50px;
        right: -115px; } }

.main-page .section-3 {
  margin-bottom: 13rem; }
  .main-page .section-3__title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7.3rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-3__title-container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start; } }
  .main-page .section-3__title {
    width: 53rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-3__title {
        width: 330px;
        margin-bottom: 25px; } }
  .main-page .section-3__button {
    font-size: 1.7rem;
    padding: 1.1rem 1.4rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-3__button {
        font-size: 20px;
        padding: 13px 18px; } }
  .main-page .section-3 .service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3.8rem 0;
    border-bottom: 1px solid #212121; }
    @media only screen and (max-width: 850px) {
      .main-page .section-3 .service {
        padding: 30px 0; } }
    .main-page .section-3 .service:first-of-type {
      border-top: 1px solid #212121; }
    .main-page .section-3 .service__left {
      display: flex;
      align-items: center; }
      @media only screen and (max-width: 850px) {
        .main-page .section-3 .service__left {
          flex-direction: column;
          align-items: flex-start;
          margin-right: 30px;
          width: 70%; } }
    .main-page .section-3 .service__icon {
      width: 9rem;
      margin-right: 5.5rem; }
      @media only screen and (max-width: 850px) {
        .main-page .section-3 .service__icon {
          width: 65px;
          margin-right: 0;
          margin-bottom: 25px; } }
    .main-page .section-3 .service__name {
      font-weight: 500;
      font-size: 3.1rem;
      margin-bottom: 2.1rem; }
      @media only screen and (max-width: 850px) {
        .main-page .section-3 .service__name {
          font-size: 24px;
          margin-bottom: 20px; } }
    .main-page .section-3 .service__benefit {
      line-height: 1.35;
      color: var(--color-grey); }
      @media only screen and (max-width: 850px) {
        .main-page .section-3 .service__benefit {
          font-size: 16px; } }
      .main-page .section-3 .service__benefit .white {
        color: var(--color-white-2); }
    .main-page .section-3 .service__price {
      font-size: 2.2rem;
      line-height: 1.5; }
      @media only screen and (max-width: 850px) {
        .main-page .section-3 .service__price {
          font-size: 20px;
          white-space: nowrap; } }

.main-page .section-4 {
  margin-bottom: 13rem; }
  .main-page .section-4__title {
    margin-bottom: 5.1rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-4__title {
        margin-bottom: 50px; } }
  .main-page .section-4__services-container, .main-page .section-4__services {
    width: 100%;
    height: 100%;
    position: relative; }
  @media only screen and (max-width: 850px) {
    .main-page .section-4__services {
      margin-top: 9.5rem; } }
  @media only screen and (max-width: 850px) {
    .main-page .section-4__services-container {
      display: flex;
      align-items: flex-start; } }
  .main-page .section-4 .service {
    display: flex;
    justify-content: space-between;
    width: 100%; }
    .main-page .section-4 .service:not(:last-of-type) {
      margin-bottom: 10rem; }
      @media only screen and (max-width: 850px) {
        .main-page .section-4 .service:not(:last-of-type) {
          margin-bottom: 70px; } }
    .main-page .section-4 .service__name {
      font-weight: 500;
      font-size: 2.7rem;
      width: 29rem;
      margin-bottom: 2.1rem; }
      @media only screen and (max-width: 850px) {
        .main-page .section-4 .service__name {
          width: 260px;
          font-size: 24px;
          margin-bottom: 24px; } }
    .main-page .section-4 .service__description {
      color: var(--color-grey);
      line-height: 1.5;
      width: 37rem; }
      @media only screen and (max-width: 850px) {
        .main-page .section-4 .service__description {
          width: 260px;
          font-size: 16px; } }
    @media only screen and (min-width: 850px) {
      .main-page .section-4 .service_1 {
        padding-right: 4.7rem; }
      .main-page .section-4 .service_2 {
        padding-left: 1.7rem; }
      .main-page .section-4 .service_4 {
        padding-right: 4rem;
        padding-left: .7rem; }
      .main-page .section-4 .service_3 .service__description,
      .main-page .section-4 .service_4 .service__description {
        width: 31rem; }
      .main-page .section-4 .service_5 .service__description {
        width: 34rem; }
      .main-page .section-4 .service_1 .service__icon {
        width: 35rem; }
      .main-page .section-4 .service_2 .service__icon {
        width: 36rem; }
      .main-page .section-4 .service_3 .service__icon {
        width: 44rem;
        margin-right: -2.8rem; }
      .main-page .section-4 .service_4 .service__icon {
        width: 41.5rem; }
      .main-page .section-4 .service_5 .service__icon {
        width: 47rem;
        margin-right: -4rem; } }
  .main-page .section-4__service-numbers-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%; }
    @media only screen and (min-width: 850px) {
      .main-page .section-4__service-numbers-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); } }
    @media only screen and (max-width: 850px) {
      .main-page .section-4__service-numbers-container {
        margin-right: 30px; } }
  .main-page .section-4__service-number {
    font-size: 2.1rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1.5;
    color: #222;
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100rem;
    background-color: var(--color-green);
    margin: 1.4rem 0;
    padding-right: .3rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-4__service-number {
        width: 34px;
        height: 34px;
        font-size: 14px;
        margin: 9px 0; } }
  .main-page .section-4__inner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-green); }
  .main-page .section-4__line {
    background-color: var(--color-grey);
    width: 4px;
    position: relative;
    height: calc((100% - ((5 * (5rem + (1.4rem * 2))) + 8.5rem + 14rem)) / 4); }
    @media only screen and (max-width: 850px) {
      .main-page .section-4__line {
        width: 2px;
        height: 230px; } }
    .main-page .section-4__line_top {
      height: 8.5rem;
      background: linear-gradient(to bottom, transparent, #9D9D9D); }
      .main-page .section-4__line_top .section-4__inner-line {
        background: linear-gradient(to bottom, transparent, #25AB75); }
    .main-page .section-4__line_bottom {
      height: 14rem; }
      @media only screen and (max-width: 850px) {
        .main-page .section-4__line_bottom {
          height: 130px; } }
    @media only screen and (max-width: 850px) {
      .main-page .section-4__line_long_1 {
        height: 315px; }
      .main-page .section-4__line_long_2 {
        height: 290px; }
      .main-page .section-4__line_long_3 {
        height: 245px; }
      .main-page .section-4__line_long_4 {
        height: 213px; } }

.main-page .section-5 {
  margin-bottom: 13rem; }
  @media only screen and (max-width: 450px) {
    .main-page .section-5 .inner-container {
      width: 100%; } }
  .main-page .section-5__title {
    margin-bottom: 4.3rem; }
    @media only screen and (max-width: 450px) {
      .main-page .section-5__title {
        margin: 0 auto;
        width: calc(100% - 44rem);
        max-width: 1150px;
        margin-bottom: 50px; } }
  @media only screen and (max-width: 450px) and (max-width: 1100px) {
    .main-page .section-5__title {
      width: 76%; } }
  @media only screen and (max-width: 450px) and (max-width: 850px) {
    .main-page .section-5__title {
      width: 70%; } }
  @media only screen and (max-width: 450px) and (max-width: 750px) {
    .main-page .section-5__title {
      width: 75%; } }
  @media only screen and (max-width: 450px) and (max-width: 600px) {
    .main-page .section-5__title {
      width: 90%; } }
  .main-page .section-5__advantages {
    display: grid;
    grid-gap: 2.6rem;
    grid-template-columns: repeat(2, 1fr); }
    @media only screen and (max-width: 850px) {
      .main-page .section-5__advantages {
        grid-template-columns: 1fr;
        grid-gap: 20px; } }
  .main-page .section-5 .advantage {
    display: flex;
    align-items: center;
    background-color: #161616;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    padding: 2.8rem 3.4rem;
    height: 20.5rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-5 .advantage {
        padding: 40px 25px;
        height: 280px; } }
    @media only screen and (max-width: 550px) {
      .main-page .section-5 .advantage {
        height: 320px; } }
    .main-page .section-5 .advantage__name {
      font-weight: 500;
      font-size: 2.8rem;
      line-height: 1.2;
      margin-bottom: 1.7rem;
      width: 31rem; }
      @media only screen and (max-width: 850px) {
        .main-page .section-5 .advantage__name {
          font-size: 24px;
          width: 220px !important;
          margin-bottom: 35px; } }
    .main-page .section-5 .advantage__description {
      color: var(--color-grey);
      line-height: 1.5;
      width: 37rem; }
      @media only screen and (max-width: 850px) {
        .main-page .section-5 .advantage__description {
          font-size: 16px;
          width: 65% !important; } }
      @media only screen and (max-width: 550px) {
        .main-page .section-5 .advantage__description {
          width: 180px !important; } }
    .main-page .section-5 .advantage__icon {
      position: absolute; }
    .main-page .section-5 .advantage_1, .main-page .section-5 .advantage_4 {
      grid-column: 1 / -1; }
    .main-page .section-5 .advantage_1 .advantage__description {
      width: 48rem; }
    .main-page .section-5 .advantage_1 .advantage__icon_1 {
      width: 19.5rem;
      top: 50%;
      right: 16rem;
      transform: translateY(-50%); }
      @media only screen and (max-width: 850px) {
        .main-page .section-5 .advantage_1 .advantage__icon_1 {
          width: 220px;
          transform: none;
          top: auto;
          bottom: -90px;
          right: -100px; } }
    .main-page .section-5 .advantage_1 .advantage__icon_2 {
      width: 10.5rem;
      top: 0;
      right: 0; }
      @media only screen and (max-width: 850px) {
        .main-page .section-5 .advantage_1 .advantage__icon_2 {
          width: 80px; } }
    .main-page .section-5 .advantage_2 .advantage__icon {
      width: 8.5rem;
      top: 48%;
      right: -3.4rem;
      transform: translateY(-50%); }
      @media only screen and (max-width: 850px) {
        .main-page .section-5 .advantage_2 .advantage__icon {
          top: 52%;
          right: 0;
          width: 85px; } }
    .main-page .section-5 .advantage_3 .advantage__description {
      width: 31rem; }
    .main-page .section-5 .advantage_3 .advantage__icon {
      width: 11rem;
      top: 59%;
      right: -2.4rem;
      transform: translateY(-50%); }
      @media only screen and (max-width: 850px) {
        .main-page .section-5 .advantage_3 .advantage__icon {
          top: 51%;
          right: 0;
          width: 130px; } }
    .main-page .section-5 .advantage_4 .advantage__name {
      margin-bottom: 2.1rem; }
    .main-page .section-5 .advantage_4 .advantage__icon_1 {
      width: 30rem;
      top: 0;
      right: 12rem; }
      @media only screen and (max-width: 850px) {
        .main-page .section-5 .advantage_4 .advantage__icon_1 {
          width: 360px;
          top: -20px;
          right: -220px; } }
    .main-page .section-5 .advantage_4 .advantage__icon_2 {
      width: 10.5rem;
      bottom: 0;
      right: 0; }
      @media only screen and (max-width: 850px) {
        .main-page .section-5 .advantage_4 .advantage__icon_2 {
          width: 140px;
          bottom: -80px;
          right: 0px;
          transform: rotate(24deg); } }

@media only screen and (max-width: 850px) {
  .main-page .form {
    max-width: 350px;
    width: 100%; } }

.main-page .form__input-group {
  position: relative;
  margin-bottom: 3.9rem; }
  @media only screen and (max-width: 850px) {
    .main-page .form__input-group {
      margin-bottom: 35px; } }

.main-page .form__input {
  background-color: #161616;
  border-radius: .9rem;
  padding: 1rem 1rem 1rem 5rem;
  border: 1px solid #2B2B2B;
  width: 30rem; }
  @media only screen and (max-width: 850px) {
    .main-page .form__input {
      width: 100%;
      padding: 12px 12px 12px 55px; } }
  .main-page .form__input, .main-page .form__input::placeholder {
    color: var(--color-white);
    line-height: 1.5; }
    @media only screen and (max-width: 850px) {
      .main-page .form__input, .main-page .form__input::placeholder {
        font-size: 16px; } }

.main-page .form__icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: .6rem;
  transform: translateY(-50%);
  width: 3.1rem;
  height: 3.1rem;
  border-radius: .9rem;
  background-color: var(--color-green); }
  @media only screen and (max-width: 850px) {
    .main-page .form__icon-container {
      width: 36px;
      height: 36px;
      left: 7px; } }

.main-page .form__icon {
  width: 1.7rem; }
  @media only screen and (max-width: 850px) {
    .main-page .form__icon {
      width: 20px; } }

.main-page .form__subtitle {
  font-size: 1.7rem;
  line-height: 1.15;
  display: inline-block;
  margin-bottom: 2.1rem; }
  @media only screen and (max-width: 850px) {
    .main-page .form__subtitle {
      font-size: 20px;
      width: 180px;
      margin-bottom: 20px; } }

.main-page .section-6 {
  margin-bottom: 13rem; }
  .main-page .section-6__title {
    width: 46rem;
    margin-bottom: 3rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-6__title {
        width: 305px; } }
  .main-page .section-6__description {
    line-height: 1.5;
    color: var(--color-grey);
    width: 49rem;
    margin-bottom: 3rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-6__description {
        font-size: 16px;
        width: 330px; } }
  .main-page .section-6__phone-messages-container {
    position: absolute;
    top: 0;
    right: 0;
    height: 42rem;
    width: 37rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-6__phone-messages-container {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: 250px;
        margin-bottom: 65px; } }
  .main-page .section-6__phone-message_white {
    color: #000;
    background-color: var(--color-white);
    padding: 1.1rem 1.7rem;
    width: 20rem;
    top: 10rem;
    left: 0; }
    @media only screen and (max-width: 850px) {
      .main-page .section-6__phone-message_white {
        width: 180px;
        top: 50px; } }
  .main-page .section-6__phone-message_green {
    top: 19.5rem;
    right: 0; }
    @media only screen and (max-width: 850px) {
      .main-page .section-6__phone-message_green {
        top: 130px; } }
  .main-page .section-6__honeycomb {
    position: absolute;
    top: 0;
    right: 0;
    width: 10rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-6__honeycomb {
        width: 115px;
        right: -50px; } }
  .main-page .section-6__pill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12rem; }
    @media only screen and (max-width: 850px) {
      .main-page .section-6__pill {
        width: 140px;
        left: -90px; } }

.main-page .footer {
  padding: 5.5rem 0 3rem; }
  @media only screen and (max-width: 850px) {
    .main-page .footer {
      padding: 0;
      padding-bottom: 25px; } }
  .main-page .footer__top {
    padding-bottom: 4.2rem;
    margin-bottom: 4.2rem;
    border-bottom: 1px solid #343434;
    display: flex;
    align-items: flex-start;
    justify-content: space-between; }
    @media only screen and (max-width: 850px) {
      .main-page .footer__top {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-bottom: 50px;
        margin-bottom: 17px; } }
    @media only screen and (max-width: 400px) {
      .main-page .footer__top {
        align-items: flex-start; } }
  .main-page .footer__info {
    width: 100%; }
  .main-page .footer__logo {
    width: 4.7rem; }
    @media only screen and (max-width: 850px) {
      .main-page .footer__logo {
        width: 40px;
        margin-bottom: 25px; } }
  .main-page .footer__navigation {
    display: flex; }
    @media only screen and (max-width: 850px) {
      .main-page .footer__navigation {
        width: 330px;
        justify-content: space-between;
        margin-bottom: 45px; } }
    @media only screen and (max-width: 400px) {
      .main-page .footer__navigation {
        width: 100%;
        justify-content: flex-start; } }
  .main-page .footer__list:not(:last-of-type) {
    margin-right: 6rem; }
    @media only screen and (max-width: 850px) {
      .main-page .footer__list:not(:last-of-type) {
        margin-right: 50px; } }
  .main-page .footer__list-item {
    font-size: 1.7rem;
    line-height: 1.5; }
    @media only screen and (max-width: 850px) {
      .main-page .footer__list-item {
        font-size: 18px; } }
    .main-page .footer__list-item:not(:last-of-type) {
      margin-bottom: .9rem; }
      @media only screen and (max-width: 850px) {
        .main-page .footer__list-item:not(:last-of-type) {
          margin-bottom: 10px; } }
    .main-page .footer__list-item_subtitle {
      color: var(--color-grey-2);
      margin-bottom: 1.7rem; }
      @media only screen and (max-width: 850px) {
        .main-page .footer__list-item_subtitle {
          padding-bottom: 8px; } }
  .main-page .footer__link {
    font-size: 1.7rem; }
    @media only screen and (max-width: 850px) {
      .main-page .footer__link {
        font-size: 18px; } }
    .main-page .footer__link:hover {
      opacity: .8; }
  @media only screen and (max-width: 850px) {
    .main-page .footer__form {
      width: 330px; } }
  @media only screen and (max-width: 400px) {
    .main-page .footer__form {
      width: 100%; } }
  .main-page .footer__form .form__input-group {
    margin-bottom: 1.3rem; }
    @media only screen and (max-width: 850px) {
      .main-page .footer__form .form__input-group {
        margin-bottom: 35px; } }
  .main-page .footer__rights {
    color: #7E868E;
    font-size: 1.1rem;
    display: block;
    text-align: center; }
    @media only screen and (max-width: 850px) {
      .main-page .footer__rights {
        font-size: 12px;
        width: 210px;
        margin: 0 auto; } }
