:root {
  --font-sans: 'Inria Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol', 'Noto Color Emoji';
  --font-heading: 'Extra Move', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol', 'Noto Color Emoji';
  --color-blue: #0d003f;
  --color-purple: #8e3fe4;
  --color-white: #ffffff;
  --color-pink: #ff3d74;
  --color-black: #000;
  --color-grey: #d9d9d9;

  &:dir(rtl) {
    --font-sans: 'Arimo', 'Inria Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
      'Segoe UI Symbol', 'Noto Color Emoji';
  }
}

@font-face {
  font-family: 'Extra Move';
  src:
    url('../fonts/extra-move/ExtraMove-Black.woff2') format('woff2'),
    url('../fonts/extra-move/ExtraMove-Black.woff') format('woff'),
    url('../fonts/extra-move/ExtraMove-Black.ttf') format('truetype');
}

@font-face {
  font-family: 'Extra Move';
  font-weight: 100;
  src:
    url('../fonts/extra-move/ExtraMove-Thin.woff2') format('woff2'),
    url('../fonts/extra-move/ExtraMove-Thin.woff') format('woff'),
    url('../fonts/extra-move/ExtraMove-Thin.ttf') format('truetype');
}

@font-face {
  font-family: 'Extra Move';
  font-weight: 500;
  src:
    url('../fonts/extra-move/ExtraMove-Medium.woff2') format('woff2'),
    url('../fonts/extra-move/ExtraMove-Medium.woff') format('woff'),
    url('../fonts/extra-move/ExtraMove-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Extra Move';
  font-weight: 700;
  src:
    url('../fonts/extra-move/ExtraMove-Bold.woff2') format('woff2'),
    url('../fonts/extra-move/ExtraMove-Bold.woff') format('woff'),
    url('../fonts/extra-move/ExtraMove-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Extra Move';
  font-weight: 800;
  src:
    url('../fonts/extra-move/ExtraMove-Heavy.woff2') format('woff2'),
    url('../fonts/extra-move/ExtraMove-Heavy.woff') format('woff'),
    url('../fonts/extra-move/ExtraMove-Heavy.ttf') format('truetype');
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.36;
  color: var(--color-blue);

  @media only screen and (min-width: 768px) {
    font-size: 18px;
  }

  &.nav-active {
    overflow: clip;
    @media only screen and (min-width: 768px) {
      overflow: initial;
    }
  }
}

a {
  text-decoration: none;
  color: var(--color-blue);
  transition: color 0.3s ease-in-out;

  &:hover {
    text-decoration: none;
    color: var(--color-pink);
  }
}

p,
ul,
ol {
  margin: 0 0 20px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font-heading);
  margin: 0 0 20px;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.page-wrapper {
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: 0 0;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  overflow-x: hidden;
}

.header {
  flex: 0 1 100%;
  padding: 9px 4px;
  position: relative;
  z-index: 4;
  direction: ltr;

  @media only screen and (min-width: 768px) {
    padding: 22px 0;
  }

  &.nav-active {
    &::after {
      opacity: 1;
    }
    .header__opener {
      span {
        &:nth-child(1) {
          top: 50%;
          transform: translateY(-50%) rotate(45deg);
        }

        &:nth-child(2) {
          opacity: 0;
        }

        &:nth-child(3) {
          bottom: auto;
          top: 50%;
          transform: translateY(-50%) rotate(-45deg);
        }
      }
    }

    .header__drop {
      opacity: 1;
      pointer-events: all;
    }
  }

  &::after {
    content: '';
    transition: opacity 0.3s ease-in-out;
    background: linear-gradient(180deg, #ffffff 28.59%, rgba(255, 255, 255, 0.5) 100%);
    height: 100svh;
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    position: absolute;
    @media only screen and (min-width: 768px) {
      display: none;
    }
  }

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 84px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    @media only screen and (min-width: 768px) {
      height: 114px;
    }
  }

  .header__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .header__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
  }

  .header__slogan {
    display: none;
    text-transform: uppercase;
    font-family: var(--font-heading);
    color: var(--color-blue);
    font-size: 25px;
    font-weight: 800;
    margin-top: 11px;
    letter-spacing: -0.007em;
    @media only screen and (min-width: 768px) {
      display: block;
    }
  }

  .header__opener {
    appearance: none;
    box-shadow: none;
    padding: 0;
    border: 0;
    display: block;
    background: transparent;
    width: 30px;
    height: 20px;
    position: relative;
    margin-right: 11px;

    @media only screen and (min-width: 768px) {
      display: none;
    }

    span {
      transition: all 0.3s ease-in-out;
      position: absolute;
      left: 0;
      width: 30px;
      height: 5px;
      border-radius: 12px;
      background: var(--color-blue);

      &:nth-child(1) {
        top: 0;
      }

      &:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
      }

      &:nth-child(3) {
        bottom: 0;
      }
    }
  }

  .language-nav {
    @media only screen and (min-width: 768px) {
      padding: 8px 16px;
    }
  }

  .language-nav__list {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 23px;
    line-height: 1;
    font-family: var(--font-heading);
    font-weight: 500;
    @media only screen and (min-width: 768px) {
      font-size: 17px;
    }
  }

  .language-nav__list-item {
    display: flex;
    align-items: center;
    + .language-nav__list-item {
      &::before {
        content: '/';
        margin: 0 6px;
        @media only screen and (min-width: 768px) {
          margin: 0 3px;
        }
      }
    }
  }

  .language-nav__list-link--active {
    text-decoration: underline;
    pointer-events: none;
  }

  .header__drop {
    transition: opacity 0.3s ease-in-out;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 20px;
    position: absolute;
    top: 100%;
    height: calc(100svh - 100px);
    left: 0;
    right: 0;
    padding: 16px 8px 0;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;

    @media only screen and (min-width: 768px) {
      align-items: center;
      flex-direction: row;
      gap: 7px;
      position: static;
      justify-content: flex-start;
      opacity: 1;
      pointer-events: all;
      height: auto;
      padding: 0;
    }
  }

  .header__buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;

    @media only screen and (min-width: 768px) {
      align-items: center;
      flex-direction: row;
      align-items: center;
      gap: 8px;
    }
  }
}

.main {
  flex: 1 1 auto;
}

.hide-on-pc {
  @media only screen and (min-width: 768px) {
    display: none;
  }
}

.footer {
  background-position: 14% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 0 1 100%;
  padding: 40px 0 28px;

  &:dir(rtl) {
    text-align: left;
    background-position: 86% 50%;
  }

  @media only screen and (min-width: 768px) {
    padding: 47px 0 34px;
  }

  @media only screen and (min-width: 1024px) {
    background-position: 50% 50%;
  }

  .footer__wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.btn {
  transition:
    box-shadow 0.3s ease-in-out,
    color 0.3s ease-in-out,
    background 0.3s ease-in-out;
  appearance: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  padding: 16px 19px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  background: var(--color-pink);
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 1;
  color: var(--color-white);
  border-radius: 16px;
  letter-spacing: 0.03em;

  &:hover {
    box-shadow: none;
    color: var(--color-white);
    background: var(--color-purple);
  }

  &.btn--secondary {
    padding: 12px;
    color: var(--color-white);
    background: var(--color-blue);
    line-height: 1;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    min-height: 40px;
    letter-spacing: 0.02em;
    gap: 8px;
    @media only screen and (min-width: 768px) {
      padding: 11px 18px;
      font-size: 17px;
    }

    &:hover {
      color: var(--color-white);
      background: var(--color-pink);
    }

    svg {
      width: 33px;
      @media only screen and (min-width: 768px) {
        width: 33px;
      }
    }
  }

  &.btn--sm {
    padding: 10px 8px;
    @media only screen and (min-width: 768px) {
      padding: 7px 13px;
    }
  }
}

.footer-navigation {
  margin-right: 47px;
  @media only screen and (min-width: 768px) {
    margin-right: 43px;
  }
  .footer-navigation__list {
    font-family: var(--font-heading);
  }

  .footer-navigation__item {
    margin-bottom: 3px;
  }

  .footer-navigation__link {
    font-weight: 100;
    font-size: 12px;
    line-height: 1;
    display: block;

    @media only screen and (min-width: 768px) {
      font-size: 16px;
    }
  }
}

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

.list-reset {
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-content {
  position: relative;
  z-index: 2;
}

.candihub {
  margin-bottom: 118px;
  margin-top: 6px;

  @media only screen and (min-width: 768px) {
    margin-bottom: 168px;
    margin-top: 0;
  }
}

.candihub__inner {
  padding: 37px 7px;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  @media only screen and (min-width: 768px) {
    padding: 54px 100px 75px 100px;
  }
}

/* Candihub Intro */

.candihub-intro {
  margin-bottom: 38px;

  @media only screen and (min-width: 768px) {
    margin-bottom: 59px;
  }

  @media only screen and (min-width: 1024px) {
    display: flex;
    align-items: center;
    gap: 36px;
  }

  .candihub-intro__helper {
    line-height: 1.4;
    font-size: 12px;
    margin-bottom: 2px;
    letter-spacing: -0.03em;

    @media only screen and (min-width: 768px) {
      letter-spacing: -0.01em;
      margin-bottom: 4px;
    }

    &:dir(rtl) {
      font-size: 14px;
      @media only screen and (min-width: 768px) {
        font-size: 15px;
      }
    }
  }

  .candihub-intro__text {
    line-height: 1.36;
    letter-spacing: -0.01em;
    font-size: 15px;
    padding-right: 7px;
    margin-bottom: 24px;

    &:dir(rtl) {
      margin-bottom: 14px;
      @media only screen and (min-width: 768px) {
        margin-bottom: 36px;
        padding-right: 0;
        padding-left: 20px;
      }
    }

    @media only screen and (min-width: 768px) {
      font-size: 21px;
      padding-right: 20px;
      margin-bottom: 36px;
    }

    strong {
      font-weight: 700;
    }

    > * {
      &:last-child {
        margin-bottom: 0;
      }
    }
  }

  .candihub-intro__content {
    padding: 0 36px;
    @media only screen and (min-width: 1024px) {
      max-width: 532px;
      width: 100%;
      flex-shrink: 0;
      padding: 0;
    }

    .btn {
      min-width: 257px;
    }
  }

  .candihub-intro__image {
    display: none;
    @media only screen and (min-width: 1024px) {
      flex-grow: 1;
      margin-top: 33px;
      display: block;
    }

    img {
      float: left;
      max-width: none;
    }
  }

  .candihub-intro__title {
    font-size: 61px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 8px;

    &:dir(rtl) {
      margin-bottom: 2px;
    }

    @media only screen and (min-width: 768px) {
      font-size: 113px;
      margin-bottom: 1px;
    }

    strong {
      display: block;
      color: var(--color-purple);
      font-size: 23px;
      line-height: 1.4;
      text-transform: none;
      font-weight: 500;
      margin-top: -12px;

      &:dir(rtl) {
        margin-top: 0;
        @media only screen and (min-width: 768px) {
          margin-top: -23px;
        }
      }

      @media only screen and (min-width: 768px) {
        font-size: 45px;
        margin-top: -23px;
        letter-spacing: -0.005em;
      }
    }
  }

  .candihub-intro__items {
    margin: 0 -8px 49px;
    @media only screen and (min-width: 768px) {
      margin: 0 0 45px;
    }
    &:last-child {
      margin-bottom: 0;
    }
  }

  .candihub-intro__item {
    margin-bottom: 47px;

    @media only screen and (min-width: 768px) {
      margin-bottom: 40px;
    }

    &:last-child {
      margin-bottom: 0;
    }
  }

  .candihub-intro__item-title {
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-pink);
    font-size: 22px;
    letter-spacing: 0.005em;
    margin-bottom: 7px;

    @media only screen and (min-width: 768px) {
      font-size: 29px;
      letter-spacing: -0.03em;
      margin-bottom: 0;
    }
  }

  .candihub-intro__list-item {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 15px;
    line-height: 1;
    margin-bottom: 15px;

    @media only screen and (min-width: 768px) {
      font-size: 19px;
      line-height: 2;
      gap: 8px;
      margin-bottom: 0;
    }

    &:last-child {
      margin-bottom: 0;
    }

    strong {
      font-weight: 700;
    }
  }

  .candihub-intro__list-item-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;

    @media only screen and (min-width: 768px) {
      width: 21px;
      height: 21px;
      margin-top: 9px;
    }
  }

  .candihub-intro__image-mobile {
    text-align: center;
    margin-bottom: 42px;
    @media only screen and (min-width: 1024px) {
      display: none;
    }
  }

  .candihub-intro__button-wrapper {
    margin: 0 -13px 0 -16px;
    text-align: center;
    @media only screen and (min-width: 768px) {
      margin: 0;
    }

    @media only screen and (min-width: 1024px) {
      text-align: left;
    }

    &:dir(rtl) {
      @media only screen and (min-width: 1024px) {
        text-align: right;
      }
    }

    .btn {
      width: 100%;
      @media only screen and (min-width: 768px) {
        width: auto;
      }
    }
  }
}

/* End Candihub Intro */

/* Candihub How It Works */

.how-it-works {
  @media only screen and (min-width: 1024px) {
    display: flex;
    align-items: flex-start;
    gap: 110px;
  }

  .how-it-works__image {
    position: relative;
    overflow: clip;
    aspect-ratio: 360 / 116;
    margin-bottom: 43px;

    @media only screen and (min-width: 1024px) {
      aspect-ratio: 393 / 497;
      max-width: 393px;
      width: 100%;
      border-radius: 20px;
      flex-shrink: 0;
      margin-bottom: 0;
    }

    &::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(142, 63, 228, 0.5);
    }

    img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .how-it-works__content {
    &:dir(rtl) {
      @media only screen and (min-width: 1024px) {
        margin-left: -43px;
        margin-right: 0;
      }
    }
    @media only screen and (min-width: 1024px) {
      margin-right: -43px;
    }
  }

  .how-it-works__items {
    padding: 0 28px;
    margin-bottom: 28px;
    @media only screen and (min-width: 768px) {
      padding: 0;
      margin-bottom: 65px;
    }
  }

  .how-it-works__item {
    margin-bottom: 40px;

    @media only screen and (min-width: 768px) {
      margin-bottom: 36px;
    }

    &:last-child {
      margin-bottom: 0;
    }
  }

  .how-it-works__item-title {
    font-size: 21px;
    line-height: 1.36;
    margin-bottom: 0;
    text-transform: uppercase;

    @media only screen and (min-width: 768px) {
      font-size: 26px;
    }
  }

  .how-it-works__item-text {
    font-size: 15px;
    line-height: 1.36;
    margin-top: -5px;

    @media only screen and (min-width: 768px) {
      font-size: 20px;
      white-space: pre-line;
      display: flex;
    }

    > * {
      &:last-child {
        margin-bottom: 0;
      }
    }
  }

  .how-it-works__help-text {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 21px;
    line-height: 1.36;
    font-weight: 700;
    padding: 0 28px;

    @media only screen and (min-width: 768px) {
      font-size: 26px;
      padding: 0;
    }

    a {
      text-decoration: underline;

      &:hover {
        color: var(--color-pink);
      }
    }

    > * {
      &:last-child {
        margin-bottom: 0;
      }
    }
  }
}

/* End Candihub How It Works */

/* CTA Section */

.cta {
  position: relative;
  padding: 133px 18px 0 16px;
  margin-bottom: 36px;

  @media only screen and (min-width: 1024px) {
    padding: 68px 0 81px;
    margin-bottom: 0;
  }

  .cta__image {
    width: 100%;
    position: absolute;
    top: 0;
    max-width: 180px;
    left: 50%;
    transform: translateX(-50%);

    &:dir(rtl) {
      @media only screen and (min-width: 1024px) {
        left: auto;
        right: -113px;
        margin-top: -11px;
      }
    }

    @media only screen and (min-width: 1024px) {
      max-width: 334px;
      left: -71px;
      top: 50%;
      transform: translateY(-50%);
      margin-top: 6px;
    }
  }

  .cta__content {
    background: var(--color-purple);
    color: var(--color-white);
    padding: 39px 23px 27px 30px;
    border-radius: 24px;

    &:dir(rtl) {
      padding: 54px 19px 35px 28px;
      @media only screen and (min-width: 1024px) {
        padding: 32px 253px 27px 13px;
      }
    }

    @media only screen and (min-width: 1024px) {
      padding: 32px 54px 27px 300px;
      border-radius: 40px;
    }
  }

  .cta__item {
    display: flex;
    align-items: flex-start;
    gap: 29px;
    font-size: 18px;
    line-height: 1.36;
    margin-bottom: 22px;

    @media only screen and (min-width: 768px) {
      gap: 17px;
      font-size: 23px;
      margin-bottom: 29px;
    }

    &:last-child {
      margin-bottom: 0;
    }

    a {
      color: var(--color-white);
      text-decoration: underline;
      font-weight: 700;
      &:hover {
        color: var(--color-white);
        text-decoration: none;
      }
    }

    p {
      margin-bottom: 0;
    }
  }

  .cta__item-icon {
    display: flex;
    align-items: center;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    justify-content: center;
    margin-top: 4px;

    @media only screen and (min-width: 768px) {
      width: 41px;
      margin-top: 0;
      height: 41px;
    }

    svg {
      height: auto;
      width: 100%;
    }

    &.cta__item-icon--arrow {
      svg {
        width: 18px;

        @media only screen and (min-width: 768px) {
          width: 28px;
        }
      }
    }
  }
}

/* End CTA Section */

/* FAQ Section */

.faq {
  position: relative;
  padding: 33px 17px 0;

  @media only screen and (min-width: 1024px) {
    padding: 47px 0 0;
    margin-bottom: 96px;
  }

  &::before {
    content: '';
    position: absolute;
    top: 0;
    height: 1px;
    border-top: 1px dashed var(--color-purple);
    left: -100px;
    right: -100px;
  }

  .faq__title {
    text-transform: uppercase;
    font-size: 67px;
    color: var(--color-purple);
    line-height: 1;
    font-weight: 800;
    margin-bottom: 31px;
    margin-left: 11px;

    @media only screen and (min-width: 768px) {
      font-size: 104px;
      margin-left: 0;
      margin-bottom: 6px;
    }
  }

  .faq__columns {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 27px 10px;

    @media only screen and (min-width: 1024px) {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .faq__column-item {
    border: 0;
    margin-bottom: 13px;

    @media only screen and (min-width: 768px) {
      margin-bottom: 15px;
    }

    &:last-child {
      margin-bottom: 0;
    }

    &[open] {
      .faq__column-item-icon {
        transform: rotate(90deg);

        &:dir(rtl) {
          transform: scaleX(-1) rotate(90deg);
        }
      }
    }
  }

  .faq__column-item-title {
    margin-bottom: 0;
    font-family: var(--font-sans);
    display: flex;
    cursor: pointer;
    align-items: flex-start;
    padding: 11px;
    line-height: 1.36;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-blue);
    border-bottom: 1px solid var(--color-grey);
    gap: 8px;

    @media only screen and (min-width: 768px) {
      padding: 16px;
      font-size: 18px;
      gap: 12px;
    }

    &:focus {
      color: var(--color-blue);
    }

    &::after {
      display: none;
    }

    &::-webkit-details-marker,
    &::marker {
      display: none;
    }
  }

  .faq__column-item-icon {
    display: flex;
    align-items: center;
    width: 16px;
    height: 16px;
    color: var(--color-purple);
    flex-shrink: 0;
    justify-content: center;
    font-size: 13px;
    transition: transform 0.3s ease-in-out;

    &:dir(rtl) {
      transform: scaleX(-1);
    }

    @media only screen and (min-width: 768px) {
      width: 22px;
      height: 22px;
      font-size: 16px;
    }
  }

  .faq__column-item-text {
    padding: 11px;
    font-size: 13px;
    line-height: 1.36;

    @media only screen and (min-width: 768px) {
      padding: 16px;
      font-size: 18px;
    }

    > * {
      &:last-child {
        margin-bottom: 0;
      }
    }
  }
}

/* End FAQ Section */

/* Contact */

.contact {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 26px;
  margin-top: 43px;
  padding: 0 6px;
  margin-bottom: -93px;

  @media only screen and (min-width: 768px) {
    margin-bottom: -140px;
  }

  @media only screen and (min-width: 1024px) {
    margin-top: 0;
    gap: 31px;
    padding: 0;
    flex-direction: row;
  }

  .contact__text {
    flex-shrink: 0;
    width: 100%;
    color: var(--color-white);
    background: var(--color-purple);
    border-radius: 27px;
    padding: 18px 35px 19px 34px;
    font-size: 16px;
    line-height: 1.36;

    &:dir(rtl) {
      padding: 19px 44px 19px 34px;
      @media only screen and (min-width: 1024px) {
        padding: 26px 65px 29px 48px;
      }
    }

    @media only screen and (min-width: 768px) {
      max-width: 505px;
      border-radius: 40px;
      padding: 26px 65px 29px 48px;
      font-size: 23px;
    }

    @media only screen and (min-width: 1024px) {
      margin-bottom: 40px;
    }

    a {
      text-decoration: underline;
      font-weight: 700;
      color: var(--color-white);
      &:hover {
        text-decoration: none;
        color: var(--color-white);
      }
    }

    > * {
      &:last-child {
        margin-bottom: 0;
      }
    }
  }

  .contact__image {
    width: 100%;
    max-width: 214px;
    margin-right: 46px;
    @media only screen and (min-width: 768px) {
      max-width: 370px;
    }

    @media only screen and (min-width: 1024px) {
      flex-grow: 1;
      max-width: 100%;
      margin-right: 0;
    }
    img {
      @media only screen and (min-width: 1024px) {
        float: left;
        max-width: none;
      }

      &:dir(rtl) {
        @media only screen and (min-width: 1024px) {
          transform: scaleX(-1);
        }
      }
    }
  }
}

/* End Contact */
