@charset "UTF-8";
/* Fixed horizontal scrolling when working animation with transform: translate */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Delete the color of the highlight that appears over a link while it's being tapped iOS */
a {
  -webkit-tap-highlight-color: transparent;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

figure,
figcaption {
  margin: 0;
  padding: 0;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

textarea,
input:not([type="radio"]):not([type="checkbox"]),
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:not([class]),
textarea:not([class]) {
  border-radius: 0;
}

textarea {
  resize: vertical;
}

input,
textarea {
  outline: none;
}
input:focus,
textarea:focus {
  box-shadow: 0 0 5px blue;
}

label {
  -webkit-tap-highlight-color: transparent;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.san-hide {
  opacity: 0;
}

.san-animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

@font-face {
  font-family: "Krona One";
  src: local("Krona One"), local("KronaOne-Regular"),
    url("../fonts/KronaOne/KronaOne-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Syne";
  src: local("Syne Regular"), local("Syne-Regular"),
    url("../fonts/Syne/Syne-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Syne";
  src: local("Syne Medium"), local("Syne-Medium"),
    url("../fonts/Syne/Syne-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Syne";
  src: local("Syne Bold"), local("Syne-Bold"),
    url("../fonts/Syne/Syne-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  font-family: Syne, Verdana, Geneva, Tahoma, sans-serif;
  background-color: #fff;
  font-size: 16px;
  line-height: 20px;
}
body::-webkit-scrollbar {
  width: 0.5em;
}
body::-webkit-scrollbar-track {
  background-color: #dedede;
}
body::-webkit-scrollbar-thumb {
  background-color: #124efe;
}

a {
  color: #124efe;
  text-decoration: none;
  transition: color 0.3s;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Krona One";
}

main {
  margin-bottom: 60px;
}
@media (min-width: 576px) {
  main {
    margin-bottom: 80px;
  }
}
@media (min-width: 992px) {
  main {
    margin-bottom: 90px;
  }
}
@media (min-width: 1200px) {
  main {
    margin-bottom: 120px;
  }
}
@media (min-width: 1600px) {
  main {
    margin-bottom: 200px;
  }
}

.stop-scrolling {
  overflow-y: hidden;
}

.fixed-header > .header {
  position: fixed;
  width: 100%;
  z-index: 10;
}

.overlay {
  position: relative;
}
.overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.15);
}

.container {
  width: 100%;
  padding: 0 15px;
}
@media (min-width: 576px) {
  .container {
    width: 540px;
    margin: 0 auto;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}
@media (min-width: 1600px) {
  .container {
    width: 1450px;
  }
}

/**
 * ----------------------------------------
 * animation slide-top
 * ----------------------------------------
 */
@keyframes slide-top {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50px);
  }
}
/**
 * ----------------------------------------
 * animation slide-right
 * ----------------------------------------
 */
@keyframes slide-right {
  0% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
  }
}
/**
 * ----------------------------------------
 * animation slide-left
 * ----------------------------------------
 */
@keyframes slide-left {
  0% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0);
  }
}
/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 55px;
  padding: 0 32px;
  border-radius: 45px;
  border: 0;
  background-color: #124efe;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  transition: box-shadow 0.3s, color 0.3s;
}

.button:hover {
  box-shadow: 6px 6px 0 #222;
}
@media (min-width: 1600px) {
  .button:hover {
    box-shadow: 8px 8px 0 #222;
  }
}

.button--arrow {
  position: relative;
  padding-right: 65px;
}
.button--arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 21px;
  height: 20px;
  transform: translateY(-50%);
  background-image: url("../img/arrow-right-white.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.menu {
  line-height: 0;
  font-family: "Krona One", Verdana, Geneva, Tahoma, sans-serif;
}
.menu__button {
  position: relative;
  z-index: 11;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #222;
  border-radius: 11px;
  outline: none;
  transition: box-shadow 0.3s;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 1600px) {
  .menu__button {
    width: 55px;
    height: 55px;
  }
}
.menu__button:hover {
  box-shadow: 4px 4px 0px #222;
}
@media (min-width: 1600px) {
  .menu__button:hover {
    box-shadow: 5px 5px 0px #222;
  }
}
.menu__icon-menu {
  width: 27px;
  height: 17px;
}
@media (min-width: 1600px) {
  .menu__icon-menu {
    width: 34px;
    height: 21px;
  }
}
.menu__icon-cross {
  display: none;
  width: 24px;
  height: 24px;
}
@media (min-width: 1600px) {
  .menu__icon-cross {
    width: 30px;
    height: 30px;
  }
}
.menu__button--open .menu__icon-menu {
  display: none;
}
.menu__button--open .menu__icon-cross {
  display: block;
}
.menu__list {
  display: none;
}
.menu__list--open {
  position: fixed;
  top: 70px;
  left: 0;
  z-index: 10;
  display: grid;
  align-content: center;
  justify-content: center;
  row-gap: 30px;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100 - 70px);
  padding-top: 50px;
  padding-bottom: 70px;
  background-color: #fff;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  animation: slide-left 0.3s both;
}
@media (min-width: 992px) {
  .menu__list--open {
    top: 120px;
    height: calc(var(--vh, 1vh) * 100 - 120px);
  }
}
@media (min-width: 1600px) {
  .menu__list--open {
    row-gap: 35px;
    padding-top: 80px;
  }
}
.menu__list--open::-webkit-scrollbar {
  display: none;
}
.menu__list--open::before {
  content: "";
  position: absolute;
  top: 53px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .menu__list--open::before {
    top: 59px;
  }
}
@media (min-width: 992px) {
  .menu__list--open::before {
    content: none;
  }
}
.menu__item {
  font-size: 24px;
  line-height: 28px;
  color: #000;
  text-align: center;
  transition: color 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media (min-width: 768px) {
  .menu__item {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (min-width: 1600px) {
  .menu__item {
    font-size: 40px;
    line-height: 44px;
  }
}
.menu__link {
  position: relative;
  color: inherit;
  transition: color 0.3s;
}
.menu__link--active::after,
.menu__link:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 11px;
  background-color: #124efe;
}
@media (min-width: 768px) {
  .menu__link--active::after,
  .menu__link:hover::after {
    bottom: 2px;
  }
}
@media (min-width: 1600px) {
  .menu__link--active::after,
  .menu__link:hover::after {
    bottom: 6px;
  }
}
.menu__link:hover::after {
  width: 100%;
}
@media (min-width: 1200px) {
  .menu__link:hover::after {
    animation: width-menu-border 0.4s both;
  }
}
.menu__get-started {
  margin-top: 30px;
  font-family: Syne;
}
.menu__get-started-button {
  height: 70px;
  border-radius: 60px;
  font-size: 20px;
}

@keyframes width-menu-border {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.logo {
  display: block;
  width: 165px;
  height: 22px;
  background-image: url("../img/logo.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .logo {
    width: 295px;
    height: 40px;
  }
}

.header {
  height: 70px;
  background-color: #fff;
  border-bottom: 1px solid #000;
}
@media (min-width: 992px) {
  .header {
    height: 120px;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__get-started {
  display: none;
}
@media (min-width: 992px) {
  .header__get-started {
    display: inline-flex;
    height: 70px;
    margin-left: auto;
    margin-right: 85px;
    font-size: 20px;
  }
}
.form {
  display: grid;
  row-gap: 20px;
}
.form__input {
  height: 55px;
  padding: 0 15px;
  background-color: #fff;
  border: 1px solid #222;
  border-radius: 22px;
  transition: box-shadow 0.3s;
  font-size: 18px;
  color: #000;
}
.form__input:hover,
.form__input:focus {
  box-shadow: 6px 6px 0 #222;
}
@media (min-width: 1600px) {
  .form__input:hover,
  .form__input:focus {
    box-shadow: 8px 8px 0 #222;
  }
}
.form__input::-moz-placeholder {
  color: #000;
}
.form__input::placeholder {
  color: #000;
}
.form__textarea {
  height: auto;
  min-height: 120px;
  max-height: 300px;
  padding-top: 15px;
  padding-bottom: 10px;
}
.form__radio {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  -moz-column-gap: 15px;
  column-gap: 15px;
  align-items: center;
  justify-self: start;
  min-width: 290px;
  height: 60px;
  padding: 0 15px;
  border: 1px solid #222;
  border-radius: 20px;
  transition: box-shadow 0.3s;
}
.form__radio:hover {
  box-shadow: 4px 4px 0 #222;
}
@media (min-width: 1600px) {
  .form__radio:hover {
    box-shadow: 6px 6px 0 #222;
  }
}
.form__radio-text {
  font-size: 22px;
}
.form__radio-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form__radio-circle {
  position: relative;
  order: -1;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #222;
}
.form__radio-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #222;
  opacity: 0;
  transition: opacity 0.3s;
}
.form__radio-input:checked + .form__radio-circle::after {
  opacity: 1;
}
.form__submit {
  margin-top: 10px;
}

.toasted {
  position: fixed;
  bottom: 0;
  z-index: 10;
  display: grid;
  row-gap: 9px;
  width: 100%;
}
@media (min-width: 576px) {
  .toasted {
    width: 320px;
    bottom: 30px;
    right: 30px;
  }
}
.toasted__item {
  position: relative;
  display: grid;
  align-items: center;
  padding: 0 15px;
  width: 100%;
  height: 50px;
  box-shadow: 3px 3px 0 #222;
}
@media (min-width: 576px) {
  .toasted__item {
    border-radius: 3px;
  }
}
@media (min-width: 1600px) {
  .toasted__item {
    height: 55px;
  }
}
.toasted__item--success {
  background-color: #124efe;
}
.toasted__item--warning {
  background-color: #ffc107;
}
.toasted__item--error {
  background-color: #f44336;
}
.toasted__item-text {
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
}
@media (min-width: 1600px) {
  .toasted__item-text {
    font-size: 18px;
  }
}
.toasted__item-close {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background-image: url("../img/cross.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
}

.alert {
  position: fixed;
  top: calc(50% + 70px);
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  justify-content: center;
  align-items: start;
  width: 100vw;
  height: 100vh;
  padding-top: 75px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .alert {
    padding-top: 150px;
  }
}
@media (min-width: 992px) {
  .alert {
    top: calc(50% + 120px);
  }
}
@media (min-width: 1600px) {
  .alert {
    padding-top: 183px;
  }
}
.alert__wrapper {
  display: grid;
  position: relative;
  padding-top: 100px;
}
@media (min-width: 768px) {
  .alert__wrapper {
    padding-top: 120px;
  }
}
@media (min-width: 1600px) {
  .alert__wrapper {
    padding-top: 190px;
  }
}
.alert__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 69px;
  height: 70px;
  background-image: url("../img/alert-success-hand.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .alert__wrapper::before {
    width: 88px;
    height: 90px;
  }
}
@media (min-width: 1600px) {
  .alert__wrapper::before {
    width: 146px;
    height: 148px;
  }
}
.alert__text {
  max-width: 340px;
  margin-bottom: 20px;
  font-family: "Krona One";
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .alert__text {
    margin-bottom: 30px;
    max-width: 650px;
    font-size: 26px;
    line-height: 34px;
  }
}
@media (min-width: 1600px) {
  .alert__text {
    max-width: 1000px;
    margin-bottom: 55px;
    font-size: 40px;
    line-height: 50px;
  }
}
.alert__button {
  justify-self: center;
}
@media (min-width: 768px) {
  .alert__button {
    height: 60px;
    padding: 0 50px;
  }
}
@media (min-width: 1600px) {
  .alert__button {
    height: 70px;
    padding: 0 60px;
  }
}

[data-alert] {
  display: none;
}

body.alert-show [data-alert] {
  display: grid;
}

[data-parallax] {
  transition: transform 0.2s linear;
}

.work-with {
  position: relative;
}
.work-with__title {
  display: inline-block;
  margin-bottom: 30px;
  font-family: "Krona One";
  font-size: 36px;
  line-height: 45px;
  color: #fff;
}
@media (min-width: 1200px) {
  .work-with__title {
    margin-bottom: 45px;
    font-size: 50px;
    line-height: 62px;
  }
}
@media (min-width: 1600px) {
  .work-with__title {
    margin-bottom: 50px;
    font-size: 60px;
    line-height: 75px;
  }
}
.work-with__nav {
  display: flex;
  justify-content: space-between;
  width: 90px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .work-with__nav {
    position: absolute;
    top: 20px;
    right: 0;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .work-with__nav {
    top: 25px;
  }
}
@media (min-width: 1600px) {
  .work-with__nav {
    top: 35px;
    width: 120px;
  }
}
.work-with__nav-item {
  width: 30px;
  height: 16px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("../img/work-with-arrow.svg");
}
@media (min-width: 1600px) {
  .work-with__nav-item {
    width: 40px;
    height: 20px;
  }
}
.work-with__nav-next {
  transform: rotate(180deg);
}
.work-with__items {
  display: flex;
  align-items: center;
  height: 48px;
  width: 100%;
  margin-left: -25px;
}
@media (min-width: 768px) {
  .work-with__items {
    margin-left: -30px;
  }
}
@media (min-width: 992px) {
  .work-with__items {
    margin-left: -35px;
  }
}
@media (min-width: 1200px) {
  .work-with__items {
    height: 65px;
    margin-left: -3px;
  }
}
@media (min-width: 1600px) {
  .work-with__items {
    height: 90px;
  }
}
.work-with__item {
  padding: 5px 0;
  position: relative;
  border-left: 1px solid #fff;
}
@media (min-width: 768px) {
  .work-with__item {
    padding: 10px 0;
  }
}
.work-with__item img {
  max-width: 110px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .work-with__item img {
    max-width: 130px;
  }
}
@media (min-width: 1600px) {
  .work-with__item img {
    max-width: 150px;
  }
}

.card {
  display: grid;
  padding-top: 30px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid #222;
  border-radius: 20px;
  background-color: #fff;
  color: #000;
  transition: box-shadow 0.3s;
}
@media (min-width: 1200px) {
  .card {
    padding-bottom: 30px;
  }
}
@media (min-width: 1600px) {
  .card {
    padding-top: 50px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.card:hover,
.card--active {
  box-shadow: 8px 8px 0px #222;
}
@media (min-width: 1600px) {
  .card:hover,
  .card--active {
    box-shadow: 10px 10px 0px #222;
  }
}
.card__title {
  margin: 0;
  margin-bottom: 15px;
  font-family: "Krona One";
  font-size: 20px;
  line-height: 25px;
}
@media (min-width: 1200px) {
  .card__title {
    font-size: 22px;
    line-height: 28px;
  }
}
.card__text {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 1200px) {
  .card__text {
    font-size: 18px;
    line-height: 22px;
  }
}
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
.card__date {
  font-size: 14px;
  line-height: 14px;
  color: #124efe;
}
@media (min-width: 1200px) {
  .card__date {
    font-size: 16px;
    line-height: 16px;
  }
}
.card__button {
  width: 42px;
  height: 39px;
  background-image: url("../img/arrow-right-transparent.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: background-image 0.3s;
}
@media (min-width: 1600px) {
  .card__button {
    width: 62px;
    height: 58px;
  }
}
.card:hover .card__button {
  background-image: url("../img/arrow-right-black.svg");
}

.accordion {
  border: 1px solid #222;
  border-radius: 20px;
}
.accordion__item {
  display: grid;
  padding: 13px 15px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .accordion__item {
    padding: 15px;
  }
}
@media (min-width: 992px) {
  .accordion__item {
    padding: 16px 20px;
  }
}
@media (min-width: 1600px) {
  .accordion__item {
    padding: 18px 30px;
  }
}
.accordion__item:not(:last-child) {
  border-bottom: 1px solid #222;
}
.accordion__question {
  position: relative;
  padding-right: 20px;
  font-family: "Krona One";
  font-size: 14px;
  line-height: 18px;
  color: #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media (min-width: 1600px) {
  .accordion__question {
    font-size: 18px;
    line-height: 22px;
  }
}
.accordion__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 19px;
  height: 11px;
  background-image: url("../img/accordion-arrow.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.accordion__answer {
  display: none;
  padding-top: 20px;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  animation: fade-answer 0.2s linear;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media (min-width: 1600px) {
  .accordion__answer {
    padding-top: 35px;
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 22px;
  }
}
.accordion__answer p:not(:last-child) {
  margin-bottom: 10px;
}
@media (min-width: 1600px) {
  .accordion__answer p:not(:last-child) {
    margin-bottom: 15px;
  }
}
.accordion__item--expanded > .accordion__answer {
  display: block;
}
.accordion__item--expanded > .accordion__question::after {
  transform: translateY(-50%) rotate(180deg);
}

@keyframes fade-answer {
  0% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}
.button-launch {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 30px 25px;
  background-color: #124efe;
  border-radius: 20px;
  box-shadow: 8px 8px 0px #000;
  font-family: "Krona One";
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
}
@media (min-width: 992px) {
  .button-launch {
    padding: 35px 65px;
    font-size: 22px;
  }
}
@media (min-width: 1600px) {
  .button-launch {
    padding: 38px 100px;
    font-size: 30px;
  }
}
.button-launch:hover {
  box-shadow: -8px -8px 0px #000;
  transform: translate(5px, 5px);
}

.form-subscribe {
  display: grid;
  row-gap: 20px;
}
@media (min-width: 576px) {
  .form-subscribe {
    width: 400px;
  }
}
@media (min-width: 1200px) {
  .form-subscribe {
    width: 475px;
  }
}
.form-subscribe__label {
  display: grid;
  row-gap: 20px;
}
.form-subscribe__label-text {
  justify-self: start;
  font-family: "Krona One", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  line-height: 24px;
}
.form-subscribe__input {
  height: 55px;
  color: #000;
}
@media (min-width: 576px) {
  .form-subscribe__input {
    width: 320px;
  }
}
@media (min-width: 992px) {
  .form-subscribe__input {
    width: 100%;
    height: 60px;
  }
}
.form-subscribe__input::-moz-placeholder {
  color: #000;
}
.form-subscribe__input::placeholder {
  color: #000;
}
.form-subscribe__submit {
  justify-self: start;
  margin-top: 0;
  padding: 0 50px;
}

.journey {
  position: relative;
  border-radius: 60px;
  background-color: #222;
  overflow: hidden;
}
.journey::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 400px;
  height: 1360px;
  background-image: url("../img/how-work-line-side.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media (min-width: 576px) {
  .journey::before {
    left: 4px;
    width: 620px;
    height: 1110px;
    background-image: url("../img/how-work-line-side@576px.svg");
  }
}
@media (min-width: 768px) {
  .journey::before {
    top: 230px;
    left: -38px;
    width: 950px;
    height: 1290px;
    z-index: 1;
    background-image: url("../img/how-work-line-side@768px.svg");
  }
}
@media (min-width: 992px) {
  .journey::before {
    top: 40px;
    left: 0;
    width: 100%;
    height: 830px;
    background-image: url("../img/how-work-line-side@992px.svg");
  }
}
@media (min-width: 1200px) {
  .journey::before {
    top: 50px;
    height: 880px;
    background-image: url("../img/how-work-line-side@1200px.svg");
  }
}
@media (min-width: 1600px) {
  .journey::before {
    top: 70px;
    height: 970px;
    background-image: url("../img/how-work-line-side@1920px.svg");
  }
}
.journey__wrapper {
  position: relative;
  display: grid;
  padding: 80px 50px;
  overflow-y: hidden;
}
@media (min-width: 576px) {
  .journey__wrapper {
    padding: 80px 36px;
  }
}
@media (min-width: 768px) {
  .journey__wrapper {
    padding: 90px 50px;
  }
}
@media (min-width: 992px) {
  .journey__wrapper {
    position: relative;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .journey__wrapper {
    padding: 110px 0;
  }
}
@media (min-width: 1600px) {
  .journey__wrapper {
    padding-top: 150px;
    padding-bottom: 230px;
  }
}
.journey__title {
  margin-bottom: 40px;
  font-family: "Krona One";
  font-size: 34px;
  line-height: 42px;
  color: #fff;
}
@media (min-width: 768px) {
  .journey__title {
    max-width: 500px;
    margin-bottom: 60px;
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 992px) {
  .journey__title {
    max-width: unset;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .journey__title {
    font-size: 50px;
    line-height: 62px;
  }
}
@media (min-width: 1600px) {
  .journey__title {
    max-width: 680px;
    font-size: 60px;
    line-height: 75px;
  }
}
.journey__image {
  width: 250px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px;
}
@media (min-width: 576px) {
  .journey__image {
    margin-bottom: 45px;
  }
}
@media (min-width: 768px) {
  .journey__image {
    width: 350px;
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .journey__image {
    position: absolute;
    top: 290px;
    left: 90px;
    width: 350px;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .journey__image {
    top: 325px;
    width: 360px;
  }
}
@media (min-width: 1600px) {
  .journey__image {
    top: 415px;
    left: 110px;
    width: 430px;
  }
}
.journey__items {
  display: grid;
  row-gap: 50px;
}
@media (min-width: 768px) {
  .journey__items {
    row-gap: 70px;
  }
}
@media (min-width: 992px) {
  .journey__items {
    grid-column: 2/3;
    grid-row: 1/4;
    padding-left: 74px;
  }
}
@media (min-width: 1200px) {
  .journey__items {
    padding-left: 80px;
  }
}
@media (min-width: 1600px) {
  .journey__items {
    row-gap: 90px;
  }
}
.journey__item {
  display: grid;
  row-gap: 10px;
}
@media (min-width: 1200px) {
  .journey__item {
    row-gap: 15px;
  }
}
@media (min-width: 1600px) {
  .journey__item {
    row-gap: 20px;
  }
}
.journey__item-title {
  font-family: "Krona One";
  font-size: 18px;
  line-height: 22px;
  color: #124efe;
}
@media (min-width: 768px) {
  .journey__item-title {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (min-width: 1200px) {
  .journey__item-title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (min-width: 1600px) {
  .journey__item-title {
    font-size: 26px;
    line-height: 32px;
  }
}
.journey__item-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -36px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
}
@media (min-width: 768px) {
  .journey__item-title::before {
    left: -48px;
  }
}
@media (min-width: 1200px) {
  .journey__item-title::before {
    top: 5px;
    left: -38px;
  }
}
@media (min-width: 1600px) {
  .journey__item-title::before {
    top: 5px;
    left: -45px;
  }
}
.journey__item-text {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}
@media (min-width: 768px) {
  .journey__item-text {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (min-width: 1200px) {
  .journey__item-text {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 1600px) {
  .journey__item-text {
    font-size: 22px;
    line-height: 26px;
  }
}

.quiz {
  display: grid;
  animation: fade-in 0.3s linear;
}
.quiz__stage {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  row-gap: 5px;
  align-items: center;
  margin-bottom: 50px;
}
@media (min-width: 576px) {
  .quiz__stage {
    width: 360px;
  }
}
@media (min-width: 768px) {
  .quiz__stage {
    width: 450px;
  }
}
@media (min-width: 1600px) {
  .quiz__stage {
    width: 550px;
    margin-bottom: 80px;
  }
}
.quiz__range {
  grid-column: 1/-1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 5px;
  border-radius: 3px;
  background: #d9d9d9;
  outline: none;
  --background-size-track: 25%;
  transition: background-size 0.3s;
}
.quiz__range:focus {
  box-shadow: none;
}
.quiz__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.quiz__range::-moz-range-thumb {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.quiz__range::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, #124efe, #124efe), #d9d9d9;
  background-size: var(--background-size-track, 0%) 100%;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
}
.quiz__range::-moz-range-track {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, #124efe, #124efe), #d9d9d9;
  background-size: var(--background-size-track, 0%) 100%;
  background-repeat: no-repeat;
  -moz-transition: background-size 0.3s;
  transition: background-size 0.3s;
}
.quiz__value {
  font-family: "Krona One";
  font-size: 16px;
  line-height: 16px;
  color: #000;
}
@media (min-width: 992px) {
  .quiz__value {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (min-width: 1600px) {
  .quiz__value {
    font-size: 20px;
    line-height: 20px;
  }
}
.quiz__back {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding-left: 25px;
  border-radius: 50px;
  font-family: "Krona One";
  font-size: 20px;
  line-height: 1.2;
  background-image: url("../img/arrow-back.svg");
  background-size: 11px 20px;
  background-position: 0 center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.3s;
}
.quiz__form-item {
  display: grid;
  animation: fade-in 0.3s linear;
}
@media (min-width: 768px) {
  .quiz__form-item {
    width: 605px;
  }
}
@media (min-width: 992px) {
  .quiz__form-item {
    position: relative;
    grid-template-columns: 605px auto;
    justify-content: space-between;
    width: unset;
  }
}
@media (min-width: 1200px) {
  .quiz__form-item {
    grid-template-columns: 650px auto;
    justify-content: space-between;
  }
}
@media (min-width: 1600px) {
  .quiz__form-item {
    grid-template-columns: 740px auto;
  }
}
.quiz__form-item-title {
  margin-bottom: 25px;
  font-family: "Krona One";
  font-size: 26px;
  line-height: 36px;
}
@media (min-width: 576px) {
  .quiz__form-item-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .quiz__form-item-title {
    margin-bottom: 35px;
    font-size: 30px;
    line-height: 40px;
  }
}
@media (min-width: 992px) {
  .quiz__form-item-title {
    font-size: 34px;
    line-height: 44px;
  }
}
@media (min-width: 1600px) {
  .quiz__form-item-title {
    font-size: 40px;
    line-height: 50px;
  }
}
.quiz__form-item-fields {
  display: grid;
  row-gap: 25px;
}
@media (min-width: 768px) {
  .quiz__form-item-fields {
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    -moz-column-gap: 25px;
    column-gap: 25px;
  }
}
@media (min-width: 1600px) {
  .quiz__form-item-fields {
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
  }
}
@media (min-width: 768px) {
  .quiz__form-item-fields .form__radio {
    justify-self: unset;
  }
}
.quiz__form-item-figure {
  position: relative;
  display: none;
}
@media (min-width: 992px) {
  .quiz__form-item-figure {
    display: block;
    grid-column: 2/3;
    grid-row: 1/4;
    margin-top: -102px;
  }
}
@media (min-width: 1600px) {
  .quiz__form-item-figure {
    margin-top: -132px;
  }
}
.quiz__form-submit {
  justify-self: start;
  width: 230px;
}

@media (min-width: 992px) {
  .quiz-figure-cube {
    height: 260px;
  }
}
@media (min-width: 1200px) {
  .quiz-figure-cube {
    height: 390px;
  }
}
@media (min-width: 1600px) {
  .quiz-figure-cube {
    height: 455px;
  }
}

@media (min-width: 992px) {
  .quiz-figure-cube__image:nth-child(1) {
    width: 228px;
    height: 170px;
  }
}
@media (min-width: 1200px) {
  .quiz-figure-cube__image:nth-child(1) {
    width: 350px;
    height: 260px;
  }
}
@media (min-width: 1600px) {
  .quiz-figure-cube__image:nth-child(1) {
    width: 400px;
    height: 300px;
  }
}

@media (min-width: 992px) {
  .quiz-figure-cube__image:nth-child(2) {
    width: 195px;
    height: 150px;
    margin-top: -60px;
    margin-left: 90px;
  }
}
@media (min-width: 1200px) {
  .quiz-figure-cube__image:nth-child(2) {
    width: 270px;
    height: 210px;
    margin-top: -85px;
    margin-left: 130px;
  }
}
@media (min-width: 1600px) {
  .quiz-figure-cube__image:nth-child(2) {
    width: 340px;
    height: 260px;
    margin-top: -105px;
    margin-left: 160px;
  }
}

@media (min-width: 992px) {
  .quiz-figure-puzzle {
    width: 330px;
    height: 330px;
  }
}
@media (min-width: 1200px) {
  .quiz-figure-puzzle {
    width: 400px;
    height: 400px;
  }
}
@media (min-width: 1600px) {
  .quiz-figure-puzzle {
    width: 600px;
    height: 600px;
  }
}

@media (min-width: 992px) {
  .quiz-figure-puzzle__image {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .quiz-figure-puzzle__image {
    position: relative;
    top: -25px;
    right: -30px;
  }
}
@media (min-width: 1600px) {
  .quiz-figure-puzzle__image {
    top: -40px;
  }
}

@media (min-width: 992px) {
  .quiz-figure-circle {
    width: 330px;
    height: 330px;
  }
}
@media (min-width: 1200px) {
  .quiz-figure-circle {
    width: 400px;
    height: 400px;
  }
}
@media (min-width: 1600px) {
  .quiz-figure-circle {
    width: 600px;
    height: 600px;
  }
}

@media (min-width: 992px) {
  .quiz-figure-circle__image {
    position: relative;
    top: -55px;
    right: -45px;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1600px) {
  .quiz-figure-circle__image {
    top: -100px;
    right: -80px;
  }
}

@media (min-width: 992px) {
  .quiz-figure-setup {
    width: 300px;
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .quiz-figure-setup {
    width: 385px;
    height: 385px;
  }
}
@media (min-width: 1600px) {
  .quiz-figure-setup {
    width: 450px;
    height: 450px;
  }
}

.quiz-figure-setup__image {
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .quiz-figure-chat {
    width: 300px;
    height: 200px;
  }
}
@media (min-width: 1200px) {
  .quiz-figure-chat {
    width: 400px;
    height: 265px;
  }
}
@media (min-width: 1600px) {
  .quiz-figure-chat {
    width: 515px;
    height: 335px;
  }
}

.quiz-figure-chat__image {
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .quiz-figure-chat__image {
    position: relative;
    margin-top: 50px;
  }
}

.join-telegram {
  position: relative;
  font-family: "Krona One";
  padding-right: 30px;
  font-size: 17px;
  line-height: 21px;
  color: #000;
}
@media (min-width: 576px) {
  .join-telegram {
    font-size: 20px;
    line-height: 24px;
  }
}
.join-telegram::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../img/join-telegram.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.join-telegram__link {
  color: #124efe;
  transition: text-shadow 0.2s ease-in;
}

.join-telegram:hover .join-telegram__link {
  text-shadow: 1px 1px #000;
}

.footer {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .footer__wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    justify-content: space-between;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
@media (min-width: 992px) {
  .footer__wrapper {
    -moz-column-gap: 200px;
    column-gap: 200px;
  }
}
@media (min-width: 1600px) {
  .footer__wrapper {
    -moz-column-gap: 330px;
    column-gap: 330px;
  }
}
.footer__header {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer__header {
    grid-column: 1/-1;
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .footer__header {
    margin-bottom: 70px;
  }
}
@media (min-width: 1200px) {
  .footer__header {
    margin-bottom: 90px;
  }
}
@media (min-width: 1600px) {
  .footer__header {
    margin-bottom: 100px;
  }
}
.footer__logo {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .footer__logo .logo {
    width: 300px;
    height: 40px;
  }
}
.footer__slogan {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .footer__slogan {
    max-width: 600px;
    font-size: 24px;
    line-height: 30px;
  }
}
@media (min-width: 992px) {
  .footer__slogan {
    max-width: unset;
  }
}
.footer__subscribe {
  margin-bottom: 50px;
}
.footer__join-telegram {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .footer__join-telegram {
    grid-column: 1/2;
    grid-row: 3/4;
    margin-bottom: 0;
  }
}
.footer__nav {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media (min-width: 576px) {
  .footer__nav {
    width: 400px;
  }
}
@media (min-width: 768px) {
  .footer__nav {
    width: auto;
  }
}
@media (min-width: 1600px) {
  .footer__nav {
    width: 440px;
  }
}
.footer__nav-item {
  display: grid;
  row-gap: 35px;
}
@media (min-width: 992px) {
  .footer__nav-item {
    row-gap: 40px;
  }
}
.footer__nav-title {
  font-family: "Krona One", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 18px;
  color: #000;
}
@media (min-width: 768px) {
  .footer__nav-title {
    font-size: 18px;
  }
}
.footer__menu {
  display: grid;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .footer__menu {
    row-gap: 35px;
  }
}
.footer__menu-item {
  font-size: 16px;
  color: #000;
}
@media (min-width: 768px) {
  .footer__menu-item {
    font-size: 18px;
  }
}
.footer__menu-link {
  color: inherit;
}
.footer__menu-link:hover {
  color: #124efe;
}
.footer__cellar {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #000;
}
@media (min-width: 576px) {
  .footer__cellar {
    display: grid;
    grid-template-columns: repeat(2, auto);
    align-items: center;
  }
}
@media (min-width: 768px) {
  .footer__cellar {
    grid-column: 1/-1;
    grid-template-columns: 220px auto auto;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .footer__cellar {
    grid-template-columns: repeat(3, auto);
    margin-top: 60px;
    padding-top: 30px;
  }
}
@media (min-width: 1200px) {
  .footer__cellar {
    margin-top: 70px;
    padding-top: 40px;
  }
}
@media (min-width: 1600px) {
  .footer__cellar {
    margin-top: 90px;
    padding-top: 40px;
  }
}
.footer__copyright {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 16px;
}
@media (min-width: 576px) {
  .footer__copyright {
    grid-column: 1/-1;
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .footer__copyright {
    grid-column: unset;
    margin-bottom: 0;
  }
}
.footer__cellar-nav {
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .footer__cellar-nav {
    -moz-column-gap: 60px;
    column-gap: 60px;
  }
}
.footer__cellar-nav-item {
  font-size: 16px;
  color: #000;
}
@media (min-width: 1200px) {
  .footer__cellar-nav-item {
    font-size: 18px;
  }
}
.footer__cellar-nav-item:hover {
  color: #124efe;
}
.footer__made-in {
  margin-top: 25px;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}
@media (min-width: 576px) {
  .footer__made-in {
    justify-self: end;
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .footer__made-in {
    justify-self: unset;
  }
}
.footer__made-in-link {
  color: #000;
}
.footer__made-in-link:hover {
  color: #124efe;
}

.p-home__launch-wrapper {
  display: grid;
  row-gap: 45px;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-home__launch-wrapper {
    grid-auto-flow: column;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
@media (min-width: 1200px) {
  .p-home__launch-wrapper {
    -moz-column-gap: 90px;
    column-gap: 90px;
  }
}
@media (min-width: 1600px) {
  .p-home__launch-wrapper {
    -moz-column-gap: 120px;
    column-gap: 120px;
  }
}

.promo {
  margin-bottom: 30px;
  padding-top: 40px;
}
@media (min-width: 768px) {
  .promo {
    margin-bottom: 90px;
  }
}
@media (min-width: 1200px) {
  .promo {
    margin-bottom: 150px;
  }
}
@media (min-width: 1600px) {
  .promo {
    margin-bottom: 200px;
    padding-top: 90px;
  }
}
.promo__title {
  margin-bottom: 30px;
  padding-right: 95px;
  font-family: "Krona One";
  font-size: 24px;
  line-height: 34px;
}
@media (min-width: 576px) {
  .promo__title {
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .promo__title {
    margin-bottom: 70px;
    font-size: 36px;
    line-height: 54px;
  }
}
@media (min-width: 992px) {
  .promo__title {
    max-width: 760px;
    margin-bottom: 0;
    font-size: 38px;
    line-height: 56px;
  }
}
@media (min-width: 1600px) {
  .promo__title {
    max-width: 900px;
    font-size: 46px;
    line-height: 72px;
  }
}
.promo__anim {
  position: relative;
  display: grid;
  justify-content: center;
  row-gap: 60px;
  height: 400px;
  margin-top: -60px;
  margin-right: -15px;
  pointer-events: none;
}
@media (min-width: 414px) and (-webkit-device-pixel-ratio: 2) {
  .promo__anim {
    height: 450px;
  }
}
@media (min-width: 375px) and (-webkit-device-pixel-ratio: 3) {
  .promo__anim {
    height: 400px;
  }
}
@media (min-width: 414px) and (-webkit-device-pixel-ratio: 3) {
  .promo__anim {
    height: 427px;
  }
}
@media (min-width: 390px) and (-webkit-device-pixel-ratio: 3) {
  .promo__anim {
    margin-right: -30px;
  }
}
@media (min-width: 428px) and (-webkit-device-pixel-ratio: 3) {
  .promo__anim {
    margin-right: -44px;
  }
}
@media (min-width: 576px) {
  .promo__anim {
    margin-right: -35px;
    height: 600px;
  }
}
@media (min-width: 768px) {
  .promo__anim {
    height: 400px;
    margin-top: -120px;
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .promo__anim {
    height: 680px;
    margin-top: -200px;
    margin-left: -125px;
    margin-right: -125px;
  }
}
@media (min-width: 1200px) {
  .promo__anim {
    height: 810px;
    margin-top: -280px;
    margin-left: -150px;
    margin-right: -150px;
  }
}
@media (min-width: 1600px) {
  .promo__anim {
    height: 1040px;
    margin-top: -350px;
    margin-left: -200px;
    margin-right: -200px;
  }
}
.promo__anim-stream {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about {
  margin-bottom: 100px;
}
.about__wrapper {
  display: grid;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .about__wrapper {
    grid-template-columns: 375px 1fr;
    -moz-column-gap: 25px;
    column-gap: 25px;
  }
}
@media (min-width: 992px) {
  .about__wrapper {
    grid-template-columns: 400px 1fr;
  }
}
@media (min-width: 1200px) {
  .about__wrapper {
    grid-template-columns: 500px 1fr;
    -moz-column-gap: 35px;
    column-gap: 35px;
  }
}
@media (min-width: 1600px) {
  .about__wrapper {
    grid-template-columns: 650px 1fr;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
.about__item {
  display: grid;
  align-content: center;
  justify-content: start;
  padding: 25px;
  border: 2px solid #000;
  border-radius: 50px;
  background-color: #fff;
  box-shadow: 10px 10px 0 #000;
}
.about__link {
  height: 275px;
  font-family: "Krona One";
  font-size: 34px;
  line-height: 42px;
  color: #000;
  transition: box-shadow 0.3s;
}
@media (min-width: 768px) {
  .about__link {
    height: auto;
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 992px) {
  .about__link {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1200px) {
  .about__link {
    font-size: 50px;
    line-height: 62px;
  }
}
@media (min-width: 1600px) {
  .about__link {
    padding-left: 80px;
    padding-right: 80px;
    font-size: 60px;
    line-height: 75px;
  }
}
.about__link:hover {
  box-shadow: -10px -10px 0 #000;
}
.about__link-airplane {
  position: relative;
  justify-self: start;
}
.about__link-airplane::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -42px;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background-image: url("../img/about-link-airplane.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: right 0.3s;
}
@media (min-width: 768px) {
  .about__link-airplane::after {
    right: -50px;
    width: 45px;
    height: 45px;
  }
}
@media (min-width: 1200px) {
  .about__link-airplane::after {
    right: -65px;
    width: 60px;
    height: 60px;
  }
}
@media (min-width: 1600px) {
  .about__link-airplane::after {
    right: -80px;
    width: 70px;
    height: 70px;
  }
}
.about__link:hover .about__link-airplane::after {
  right: -50px;
}
@media (min-width: 768px) {
  .about__link:hover .about__link-airplane::after {
    right: -58px;
  }
}
@media (min-width: 1200px) {
  .about__link:hover .about__link-airplane::after {
    right: -73px;
  }
}
@media (min-width: 1600px) {
  .about__link:hover .about__link-airplane::after {
    right: -88px;
  }
}
.about__text {
  padding-top: 90px;
  padding-bottom: 90px;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}
@media (min-width: 768px) {
  .about__text {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (min-width: 992px) {
  .about__text {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .about__text {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 1600px) {
  .about__text {
    padding-left: 80px;
    padding-right: 80px;
    font-size: 24px;
    line-height: 28px;
  }
}
.about__text p {
  margin-bottom: 20px;
}
@media (min-width: 1600px) {
  .about__text p {
    margin-bottom: 25px;
  }
}

.how-work {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .how-work {
    margin-bottom: 90px;
  }
}
@media (min-width: 1200px) {
  .how-work {
    margin-bottom: 150px;
  }
}
@media (min-width: 1600px) {
  .how-work {
    margin-bottom: 200px;
  }
}
.how-work__wrapper {
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 80px;
  background-color: #222;
  overflow: hidden;
}
@media (min-width: 768px) {
  .how-work__wrapper {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1600px) {
  .how-work__wrapper {
    padding-top: 120px;
  }
}
.how-work__wrapper::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 360px;
  height: 1230px;
  background-image: url("../img/how-work-line-side.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media (min-width: 576px) {
  .how-work__wrapper::before {
    width: 575px;
    height: 1082px;
    background-image: url("../img/how-work-line-side@576px.svg");
  }
}
@media (min-width: 768px) {
  .how-work__wrapper::before {
    top: 150px;
    left: -20px;
    width: 767px;
    height: 1034px;
    background-image: url("../img/how-work-line-side@768px.svg");
  }
}
@media (min-width: 992px) {
  .how-work__wrapper::before {
    top: 87px;
    left: -59px;
    width: 990px;
    height: 863px;
    background-image: url("../img/how-work-line-side@992px.svg");
  }
}
@media (min-width: 1200px) {
  .how-work__wrapper::before {
    top: 87px;
    left: -111px;
    width: 1274px;
    height: 880px;
    background-image: url("../img/how-work-line-side@1200px.svg");
  }
}
@media (min-width: 1600px) {
  .how-work__wrapper::before {
    top: 130px;
    left: -285px;
    width: 1920px;
    height: 930px;
    background-image: url("../img/how-work-line-side@1920px.svg");
  }
}
.how-work__content {
  position: relative;
  display: grid;
  padding-left: 20px;
  padding-bottom: 70px;
}
@media (min-width: 992px) {
  .how-work__content {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
@media (min-width: 1200px) {
  .how-work__content {
    -moz-column-gap: 60px;
    column-gap: 60px;
  }
}
@media (min-width: 1600px) {
  .how-work__content {
    -moz-column-gap: 90px;
    column-gap: 90px;
  }
}
.how-work__title {
  position: relative;
  margin-bottom: 60px;
  font-family: "Krona One";
  font-size: 36px;
  line-height: 45px;
  color: #fff;
}
@media (min-width: 768px) {
  .how-work__title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 992px) {
  .how-work__title {
    grid-column: 2/3;
  }
}
@media (min-width: 1200px) {
  .how-work__title {
    font-size: 50px;
    line-height: 62px;
  }
}
@media (min-width: 1600px) {
  .how-work__title {
    margin-bottom: 80px;
    font-size: 60px;
    line-height: 75px;
  }
}
.how-work__image {
  width: 265px;
  height: 265px;
  margin: 0 auto;
  margin-bottom: 55px;
}
@media (min-width: 768px) {
  .how-work__image {
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .how-work__image {
    width: 100%;
    height: auto;
    margin: 0;
    margin-left: -30px;
  }
}
.how-work__items {
  position: relative;
  display: grid;
  row-gap: 75px;
}
.how-work__item {
  position: relative;
  display: grid;
  row-gap: 10px;
  color: #fff;
}
@media (min-width: 768px) {
  .how-work__item {
    row-gap: 20px;
    max-width: 420px;
  }
}
.how-work__item:nth-child(1) {
  padding-top: 55px;
}
.how-work__item:nth-child(2) {
  padding-top: 60px;
}
.how-work__item:nth-child(3) {
  padding-top: 50px;
}
.how-work__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.how-work__item:nth-child(1)::before {
  width: 46px;
  height: 53px;
  background-image: url("../img/how-work-item-1.svg");
}
.how-work__item:nth-child(2)::before {
  width: 32px;
  height: 48px;
  background-image: url("../img/how-work-item-2.svg");
}
.how-work__item:nth-child(3)::before {
  width: 47px;
  height: 35px;
  background-image: url("../img/how-work-item-3.svg");
}
.how-work__item-title {
  margin: 0;
  font-family: "Krona One";
  font-size: 18px;
  line-height: 22px;
}
@media (min-width: 768px) {
  .how-work__item-title {
    font-size: 22px;
    line-height: 28px;
  }
}
.how-work__item-title::before {
  content: "";
  position: absolute;
  top: 60px;
  left: -28px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
}
@media (min-width: 768px) {
  .how-work__item-title::before {
    left: -48px;
  }
}
@media (min-width: 1600px) {
  .how-work__item-title::before {
    top: 60px;
    left: -70px;
  }
}
.how-work__item-text {
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .how-work__item-text {
    font-size: 18px;
    line-height: 22px;
  }
}
.how-work__work-with {
  margin-top: 80px;
}

.last-news {
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .last-news {
    margin-bottom: 90px;
  }
}
@media (min-width: 1200px) {
  .last-news {
    margin-bottom: 130px;
  }
}
@media (min-width: 1600px) {
  .last-news {
    margin-bottom: 200px;
  }
}
.last-news__wrapper {
  display: grid;
  position: relative;
}
.last-news__title {
  margin-bottom: 40px;
  font-family: "Krona One";
  font-size: 36px;
  line-height: 45px;
}
@media (min-width: 768px) {
  .last-news__title {
    margin-bottom: 60px;
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 1200px) {
  .last-news__title {
    margin-bottom: 80px;
    font-size: 50px;
    line-height: 60px;
  }
}
@media (min-width: 1600px) {
  .last-news__title {
    margin-bottom: 100px;
    font-size: 60px;
    line-height: 70px;
  }
}
.last-news__items {
  display: grid;
  row-gap: 20px;
}
@media (min-width: 576px) {
  .last-news__items {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (min-width: 768px) {
  .last-news__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1600px) {
  .last-news__items {
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 40px;
  }
}
.last-news__item-all-news {
  position: relative;
  justify-self: end;
  margin-top: 70px;
  font-size: 18px;
  line-height: 22px;
  color: #000;
  border: 2px solid transparent;
  transition: border 0.3s;
}
@media (min-width: 768px) {
  .last-news__item-all-news {
    position: absolute;
    top: 30px;
    right: 0;
    margin-top: 0;
    font-size: 22px;
    line-height: 26px;
  }
}
@media (min-width: 1200px) {
  .last-news__item-all-news {
    top: 40px;
    font-size: 24px;
    line-height: 28px;
  }
}
.last-news__item-all-news:hover {
  border-bottom: 2px solid #000;
}
.last-news__item-all-news::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 75px;
  height: 30px;
  background-image: url("../img/arrow-folded.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .last-news__item-all-news::before {
    top: -35px;
    left: -35px;
    width: 100px;
    height: 40px;
  }
}
@media (min-width: 1200px) {
  .last-news__item-all-news::before {
    top: -40px;
    left: -55px;
    width: 120px;
    height: 45px;
  }
}

.p-single__main {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .p-single__main {
    padding-top: 75px;
  }
}
@media (min-width: 992px) {
  .p-single__main {
    padding-top: 80px;
  }
}
@media (min-width: 1600px) {
  .p-single__main {
    padding-top: 130px;
  }
}
.p-single__promo {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-single__promo {
    margin-bottom: 70px;
  }
}
@media (min-width: 992px) {
  .p-single__promo {
    margin-bottom: 90px;
  }
}
@media (min-width: 1200px) {
  .p-single__promo {
    margin-bottom: 120px;
  }
}
@media (min-width: 1600px) {
  .p-single__promo {
    margin-bottom: 170px;
  }
}
.p-single__promo-col-2 {
  display: grid;
  row-gap: 20px;
}
@media (min-width: 992px) {
  .p-single__promo-col-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}
.p-single__promo-title {
  margin-bottom: 20px;
  font-family: "Krona One";
  font-size: 36px;
  line-height: 45px;
}
@media (min-width: 768px) {
  .p-single__promo-title {
    margin-bottom: 25px;
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 992px) {
  .p-single__promo-title {
    max-width: 830px;
  }
}
@media (min-width: 1200px) {
  .p-single__promo-title {
    max-width: 1100px;
    margin-bottom: 35px;
    font-size: 50px;
    line-height: 60px;
  }
}
@media (min-width: 1600px) {
  .p-single__promo-title {
    max-width: 1300px;
    margin-bottom: 45px;
    font-size: 60px;
    line-height: 70px;
  }
}
@media (min-width: 992px) {
  .p-single__promo-col-2 .p-single__promo-title {
    max-width: unset;
  }
}
.p-single__promo-text {
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 576px) {
  .p-single__promo-text {
    max-width: 400px;
  }
}
@media (min-width: 768px) {
  .p-single__promo-text {
    max-width: 540px;
    font-size: 18px;
    line-height: 22px;
  }
}
@media (min-width: 1200px) {
  .p-single__promo-text {
    max-width: 750px;
    font-size: 22px;
    line-height: 26px;
  }
}
@media (min-width: 1600px) {
  .p-single__promo-text {
    max-width: 1200px;
    font-size: 32px;
    line-height: 38px;
  }
}
.p-single__promo-text p:not(:last-child) {
  margin-bottom: 10px;
}
@media (min-width: 1600px) {
  .p-single__promo-text p:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .p-single__promo-col-2 .p-single__promo-title {
    max-width: unset;
  }
}
.p-single__promo-image {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-single__promo-image {
    max-width: 70%;
  }
}
@media (min-width: 992px) {
  .p-single__promo-image {
    max-width: 80%;
  }
}
@media (min-width: 1200px) {
  .p-single__promo-image {
    max-width: 90%;
  }
}

.p-blog__promo {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-blog__promo {
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .p-blog__promo {
    margin-bottom: 60px;
  }
}
@media (min-width: 1600px) {
  .p-blog__promo {
    margin-bottom: 70px;
  }
}
.blog {
  display: grid;
  row-gap: 50px;
}
@media (min-width: 1600px) {
  .blog {
    row-gap: 75px;
  }
}
.blog__items {
  display: grid;
  row-gap: 20px;
}
.blog__items:first-child {
  padding-bottom: 50px;
  border-bottom: 1px solid #222;
}
@media (min-width: 1600px) {
  .blog__items:first-child {
    padding-bottom: 75px;
  }
}
@media (min-width: 768px) {
  .blog__main {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (min-width: 992px) {
  .blog__main {
    grid-template-columns: 2fr 1fr;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 30px;
  }
}
@media (min-width: 1600px) {
  .blog__main {
    -moz-column-gap: 60px;
    column-gap: 60px;
    row-gap: 40px;
  }
}
.blog__item article {
  display: grid;
}
.blog__item-main {
  display: grid;
  margin-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
  border-radius: 20px;
  border: 1px solid #222;
  box-shadow: 10px 10px 0 #222;
  color: #000;
  overflow: hidden;
}
@media (min-width: 768px) {
  .blog__item-main {
    grid-column: 1/-1;
  }
}
@media (min-width: 992px) {
  .blog__item-main {
    grid-column: unset;
    grid-row: span 2;
    margin-bottom: 0;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 1600px) {
  .blog__item-main {
    padding-left: 35px;
    padding-right: 35px;
  }
}
.blog__item-main-header {
  display: grid;
  row-gap: 25px;
  padding: 40px 20px;
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 35px;
  background-color: #124efe;
}
@media (min-width: 768px) {
  .blog__item-main-header {
    padding: 60px 20px;
  }
}
@media (min-width: 992px) {
  .blog__item-main-header {
    margin-left: -25px;
    margin-right: -25px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 1600px) {
  .blog__item-main-header {
    margin-left: -35px;
    margin-right: -35px;
    margin-bottom: 45px;
    padding-left: 35px;
    padding-right: 35px;
  }
}
.blog__item-main-title {
  margin: 0;
  font-family: "Krona One";
  font-size: 24px;
  line-height: 30px;
  color: #fff;
}
@media (min-width: 768px) {
  .blog__item-main-title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1200px) {
  .blog__item-main-title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 1600px) {
  .blog__item-main-title {
    font-size: 54px;
    line-height: 68px;
  }
}
.blog__item-main-date {
  font-size: 14px;
  line-height: 14px;
  color: #fff;
}
@media (min-width: 768px) {
  .blog__item-main-date {
    font-size: 16px;
    line-height: 16px;
  }
}
.blog__item-main-text {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}
@media (min-width: 768px) {
  .blog__item-main-text {
    font-size: 18px;
    line-height: 22px;
  }
}
.blog__item-main-button {
  justify-self: center;
  align-self: end;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 20px 50px;
  border-radius: 45px;
  border: 1px solid #222;
  font-size: 18px;
  line-height: 1.2;
  color: #222;
  transition: background-color 0.3s, color 0.3s;
}
@media (min-width: 576px) {
  .blog__item-main-button {
    justify-self: end;
  }
}
.blog__item-main-button:hover {
  border-color: #124efe;
  background-color: #124efe;
  color: #fff;
}
.blog__item-main:hover > .blog__item-main-button {
  border-color: #124efe;
  background-color: #124efe;
  color: #fff;
}
@media (min-width: 768px) {
  .blog__news {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (min-width: 992px) {
  .blog__news {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1600px) {
  .blog__news {
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 40px;
  }
}
.blog__news-more {
  justify-self: center;
  margin-top: 40px;
  padding: 25px 60px;
}
@media (min-width: 768px) {
  .blog__news-more {
    grid-column: 1/-1;
  }
}
@media (min-width: 1600px) {
  .blog__news-more {
    margin-top: 60px;
  }
}

.p-post__promo {
  justify-content: space-between;
}
.p-post__promo-image {
  width: 80%;
}
@media (min-width: 576px) {
  .p-post__promo-image {
    width: 40%;
  }
}
@media (min-width: 992px) {
  .p-post__promo-image {
    width: 300px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .p-post__promo-image {
    width: 350px;
  }
}
@media (min-width: 1600px) {
  .p-post__promo-image {
    width: 400px;
  }
}
.p-post__content {
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 992px) {
  .p-post__content {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (min-width: 1600px) {
  .p-post__content {
    font-size: 20px;
    line-height: 24px;
  }
}
.p-post__content a {
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s;
}
.p-post__content a:hover {
  border-bottom: 2px solid #124efe;
}
.p-post__content p {
  font-size: inherit;
  line-height: inherit;
}
.p-post__content p:not(:last-child) {
  margin-bottom: 15px;
}
@media (min-width: 1600px) {
  .p-post__content p:not(:last-child) {
    margin-bottom: 20px;
  }
}
.p-post__content h2,
.p-post__content h3,
.p-post__content h4,
.p-post__content h5,
.p-post__content h6 {
  font-family: "Krona One";
  margin-top: 20px;
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .p-post__content h2,
  .p-post__content h3,
  .p-post__content h4,
  .p-post__content h5,
  .p-post__content h6 {
    margin-top: 25px;
    margin-bottom: 10px;
  }
}
@media (min-width: 1600px) {
  .p-post__content h2,
  .p-post__content h3,
  .p-post__content h4,
  .p-post__content h5,
  .p-post__content h6 {
    margin-top: 30px;
    margin-bottom: 15px;
  }
}
.p-post__content h2 {
  font-family: "Krona One";
  font-size: 18px;
  line-height: 20px;
}
.p-post__content h3 {
  font-size: 17px;
  line-height: 19px;
}
.p-post__content h4 {
  font-size: 16px;
  line-height: 18px;
}
.p-post__content ul {
  display: grid;
  justify-content: start;
  row-gap: 3px;
  padding-left: 30px;
  list-style-type: square;
}

@media (min-width: 768px) {
  .p-post-faq__promo {
    margin-bottom: 50px;
  }
}
@media (min-width: 1600px) {
  .p-post-faq__promo {
    margin-bottom: 70px;
  }
}
.p-post-faq__have-questions {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .p-post-faq__have-questions {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .p-post-faq__have-questions {
    margin-top: 80px;
  }
}
@media (min-width: 1200px) {
  .p-post-faq__have-questions {
    margin-top: 100px;
  }
}
@media (min-width: 1600px) {
  .p-post-faq__have-questions {
    margin-top: 140px;
  }
}

.pricing {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .pricing {
    margin-bottom: 100px;
  }
}
@media (min-width: 1600px) {
  .pricing {
    margin-bottom: 150px;
  }
}
.pricing__items {
  position: relative;
  display: grid;
  row-gap: 40px;
  padding-top: 140px;
}
@media (min-width: 576px) {
  .pricing__items {
    padding-top: 200px;
  }
}
@media (min-width: 768px) {
  .pricing__items {
    padding-top: 240px;
  }
}
@media (min-width: 992px) {
  .pricing__items {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 30px;
    column-gap: 30px;
    padding-top: 300px;
  }
}
@media (min-width: 1200px) {
  .pricing__items {
    -moz-column-gap: 50px;
    column-gap: 50px;
    padding-top: 360px;
  }
}
@media (min-width: 1600px) {
  .pricing__items {
    grid-template-columns: repeat(2, 620px);
    -moz-column-gap: 200px;
    column-gap: 200px;
    padding-top: 470px;
  }
}
.pricing__item {
  position: relative;
  display: grid;
  padding: 35px 15px;
  background-color: #fff;
  border: 1px solid #222;
  border-radius: 20px;
  transition: box-shadow 0.3s;
  cursor: default;
}
@media (min-width: 768px) {
  .pricing__item {
    padding: 45px 30px;
  }
}
@media (min-width: 1600px) {
  .pricing__item {
    padding: 50px 70px;
  }
}
.pricing__item:hover {
  box-shadow: -8px 8px 0 #222;
}
.pricing__item:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #000;
}
@media (min-width: 992px) {
  .pricing__item:nth-child(1)::before {
    top: 40px;
    right: 40px;
    width: 35px;
    height: 35px;
  }
}
@media (min-width: 992px) {
  .pricing__item:nth-child(1) {
    position: relative;
    top: -65px;
  }
}
.pricing__item-header {
  display: grid;
}
@media (min-width: 768px) {
  .pricing__item-header {
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .pricing__item-header {
    grid-auto-flow: row;
    justify-content: start;
    row-gap: 20px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1600px) {
  .pricing__item-header {
    row-gap: 25px;
  }
}
.pricing__item-title {
  margin-bottom: 25px;
  font-family: "Krona One";
  font-size: 30px;
  line-height: 38px;
  color: #124efe;
}
@media (min-width: 768px) {
  .pricing__item-title {
    margin-bottom: 0;
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 1600px) {
  .pricing__item-title {
    font-size: 44px;
    line-height: 54px;
  }
}
.pricing__item-price {
  margin-bottom: 22px;
  font-family: "Krona One";
  font-size: 40px;
  line-height: 50px;
  color: #000;
}
@media (min-width: 768px) {
  .pricing__item-price {
    margin-bottom: 0;
  }
}
@media (min-width: 1600px) {
  .pricing__item-price {
    font-size: 58px;
    line-height: 72px;
  }
}
.pricing__item-lists {
  display: grid;
  row-gap: 20px;
  padding-bottom: 30px;
}
@media (min-width: 576px) {
  .pricing__item-lists {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .pricing__item-lists {
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    padding-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .pricing__item-lists {
    grid-template-columns: unset;
    justify-content: start;
    row-gap: 30px;
  }
}
.pricing__item-lists-title {
  font-family: "Krona One";
  font-size: 24px;
  line-height: 30px;
}
@media (min-width: 576px) {
  .pricing__item-lists-title {
    grid-column: span 2;
  }
}
@media (min-width: 992px) {
  .pricing__item-lists-title {
    grid-column: unset;
  }
}
@media (min-width: 1600px) {
  .pricing__item-lists-title {
    font-size: 28px;
    line-height: 34px;
  }
}
.pricing__item-list {
  display: grid;
  row-gap: 5px;
  font-size: 18px;
  line-height: 22px;
}
@media (min-width: 1600px) {
  .pricing__item-list {
    font-size: 20px;
    line-height: 24px;
  }
}
.pricing__item-list span {
  position: relative;
  padding-left: 10px;
}
.pricing__item-list span::before {
  content: "•";
  margin-right: 4px;
}
@media (min-width: 992px) {
  .pricing__item-list:last-child {
    justify-content: center;
  }
}
.pricing__item-button {
  justify-self: center;
  padding: 30px 50px;
  font-size: 20px;
  border-radius: 10px;
}
@media (min-width: 1600px) {
  .pricing__item-button {
    font-size: 22px;
    padding: 35px 60px;
  }
}
.pricing__lamp {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}
.pricing__lamp::before {
  content: "";
  position: absolute;
  top: 0;
  right: -15px;
  z-index: 1;
  width: 230px;
  height: 115px;
  background-image: url("../img/pricing-lamp.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media (min-width: 576px) {
  .pricing__lamp::before {
    right: -18px;
    width: 330px;
    height: 165px;
  }
}
@media (min-width: 768px) {
  .pricing__lamp::before {
    right: -24px;
    width: 430px;
    height: 215px;
  }
}
@media (min-width: 992px) {
  .pricing__lamp::before {
    right: -16px;
    width: 570px;
    height: 285px;
  }
}
@media (min-width: 1200px) {
  .pricing__lamp::before {
    right: -140px;
    width: 760px;
    height: 450px;
  }
}
@media (min-width: 1600px) {
  .pricing__lamp::before {
    right: -235px;
    width: 1020px;
    height: 515px;
  }
}
.pricing__lamp::after {
  content: "";
  position: absolute;
  top: 57px;
  right: 170px;
  width: 185px;
  height: 150px;
  background-image: url("../img/pricing-lamp-shine.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.3s linear;
}
@media (min-width: 576px) {
  .pricing__lamp::after {
    top: 83px;
    right: 255px;
    width: 265px;
    height: 215px;
  }
}
@media (min-width: 768px) {
  .pricing__lamp::after {
    top: 110px;
    right: 330px;
    width: 350px;
    height: 280px;
  }
}
@media (min-width: 992px) {
  .pricing__lamp::after {
    top: 130px;
    right: 435px;
    width: 460px;
    height: 370px;
  }
}
@media (min-width: 1200px) {
  .pricing__lamp::after {
    top: 217px;
    right: 510px;
    width: 560px;
    height: 450px;
  }
}
@media (min-width: 1600px) {
  .pricing__lamp::after {
    top: 240px;
    right: 610px;
    width: 820px;
    height: 660px;
  }
}
.pricing__item:nth-child(1):hover + .pricing__item + .pricing__lamp::after {
  opacity: 1;
}
@media (min-width: 992px) {
  .pricing__item:nth-child(2):hover + .pricing__lamp::after {
    top: 100px;
    right: 480px;
    opacity: 1;
    transform: rotate(-70deg);
    transform-origin: right top;
  }
}
@media (min-width: 1200px) {
  .pricing__item:nth-child(2):hover + .pricing__lamp::after {
    top: 150px;
    right: 540px;
  }
}
@media (min-width: 1600px) {
  .pricing__item:nth-child(2):hover + .pricing__lamp::after {
    top: 180px;
    right: 650px;
  }
}

.add-services__title {
  margin-bottom: 30px;
  font-family: "Krona One";
  font-size: 36px;
  line-height: 45px;
  color: #000;
}
@media (min-width: 768px) {
  .add-services__title {
    margin-bottom: 60px;
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 992px) {
  .add-services__title {
    margin-bottom: 70px;
  }
}
@media (min-width: 1200px) {
  .add-services__title {
    margin-bottom: 80px;
    font-size: 50px;
    line-height: 62px;
  }
}
@media (min-width: 1600px) {
  .add-services__title {
    margin-bottom: 90px;
    font-size: 60px;
    line-height: 75px;
  }
}
.add-services__items {
  display: grid;
  row-gap: 40px;
}
@media (min-width: 576px) {
  .add-services__items {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 35px;
    column-gap: 35px;
    row-gap: 60px;
  }
}
@media (min-width: 768px) {
  .add-services__items {
    grid-template-columns: repeat(2, 270px);
    -moz-column-gap: 90px;
    column-gap: 90px;
  }
}
@media (min-width: 992px) {
  .add-services__items {
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
  }
}
.add-services__item {
  display: grid;
}
.add-services__item-image {
  margin-bottom: 10px;
  align-self: end;
}
@media (min-width: 1600px) {
  .add-services__item-image {
    margin-bottom: 20px;
  }
}
.add-services__item-price {
  margin-bottom: 20px;
  font-family: "Krona One";
  font-size: 24px;
  line-height: 30px;
}
@media (min-width: 1600px) {
  .add-services__item-price {
    font-size: 28px;
    line-height: 34px;
  }
}
.add-services__item-text {
  font-size: 18px;
  line-height: 22px;
}
@media (min-width: 1600px) {
  .add-services__item-text {
    font-size: 24px;
    line-height: 28px;
  }
}
.add-services__arrow {
  justify-self: center;
  width: 90px;
  height: 135px;
}
@media (min-width: 576px) {
  .add-services__arrow {
    align-self: center;
  }
}
@media (min-width: 1600px) {
  .add-services__arrow {
    width: 120px;
    height: 170px;
  }
}
.add-services__info {
  display: grid;
  row-gap: 30px;
  margin-top: 50px;
  margin-bottom: 60px;
  margin-left: -15px;
  margin-right: -15px;
  padding: 70px 20px;
  background-color: #222;
  border-radius: 60px;
}
@media (min-width: 576px) {
  .add-services__info {
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    row-gap: 50px;
    margin-right: -18px;
    margin-left: -18px;
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media (min-width: 768px) {
  .add-services__info {
    grid-template-columns: repeat(3, auto);
    row-gap: 60px;
    margin-top: 75px;
    margin-right: -24px;
    margin-left: -24px;
    border-radius: 80px;
  }
}
@media (min-width: 992px) {
  .add-services__info {
    margin-top: 90px;
    margin-right: -16px;
    margin-left: -16px;
    border-radius: 80px;
  }
}
@media (min-width: 1200px) {
  .add-services__info {
    margin-bottom: 130px;
  }
}
@media (min-width: 1600px) {
  .add-services__info {
    margin-top: 130px;
    margin-bottom: 150px;
    margin-left: -235px;
    margin-right: -235px;
    padding-left: 235px;
    padding-right: 235px;
  }
}
.add-services__info-item {
  display: grid;
  row-gap: 10px;
}
.add-services__info-item:nth-child(2n) {
  justify-self: end;
}
@media (min-width: 576px) {
  .add-services__info-item:nth-child(2n) {
    justify-self: start;
    row-gap: 15px;
  }
}
.add-services__info-item-price {
  font-family: "Krona One";
  font-size: 20px;
  line-height: 25px;
  color: #124efe;
}
@media (min-width: 992px) {
  .add-services__info-item-price {
    font-size: 24px;
    line-height: 30px;
  }
}
.add-services__info-item-text {
  font-size: 20px;
  line-height: 24px;
  color: #fff;
}
@media (min-width: 992px) {
  .add-services__info-item-text {
    font-size: 24px;
    line-height: 28px;
  }
}
.add-services__desc {
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .add-services__desc {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (min-width: 992px) {
  .add-services__desc {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 1200px) {
  .add-services__desc {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (min-width: 1600px) {
  .add-services__desc {
    font-size: 24px;
    line-height: 28px;
  }
}
.add-services__desc p:not(:last-child) {
  margin-bottom: 15px;
}

.p-launch__infograph {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .p-launch__infograph {
    margin-bottom: 70px;
  }
}
@media (min-width: 1200px) {
  .p-launch__infograph {
    margin-bottom: 110px;
  }
}
@media (min-width: 1600px) {
  .p-launch__infograph {
    margin-bottom: 130px;
  }
}
.p-launch__infograph-wrapper {
  display: grid;
  justify-content: center;
  align-items: start;
}
.p-launch__infograph-image {
  width: 100vw;
}
.p-launch__infograph-text {
  margin-top: 25px;
  text-align: center;
  font-size: 14px;
}
@media (min-width: 768px) {
  .p-launch__infograph-text {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .p-launch__infograph-text {
    margin-top: 40px;
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  .p-launch__infograph-text {
    margin-top: 100px;
    font-size: 22px;
  }
}
.p-launch__journey {
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .p-launch__journey {
    margin-bottom: 90px;
  }
}
@media (min-width: 1200px) {
  .p-launch__journey {
    margin-bottom: 120px;
  }
}
@media (min-width: 1600px) {
  .p-launch__journey {
    margin-bottom: 180px;
  }
}
.p-launch__launch-wrapper {
  display: grid;
}
.p-launch__launch .button-launch {
  font-size: 20px;
}
@media (min-width: 768px) {
  .p-launch__launch .button-launch {
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  .p-launch__launch .button-launch {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  .p-launch__launch .button-launch {
    font-size: 40px;
  }
}
@media (min-width: 1600px) {
  .p-launch__launch .button-launch {
    font-size: 50px;
  }
}

.p-launch-vc__promo {
  position: relative;
  margin-bottom: 60px;
}
@media (min-width: 576px) {
  .p-launch-vc__promo {
    margin-bottom: 80px;
  }
}
@media (min-width: 768px) {
  .p-launch-vc__promo {
    grid-template-columns: 375px auto;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-top: 20px;
    margin-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .p-launch-vc__promo {
    grid-template-columns: 500px auto;
    margin-top: 40px;
    margin-bottom: 150px;
  }
}
@media (min-width: 1200px) {
  .p-launch-vc__promo {
    grid-template-columns: 600px auto;
    margin-top: 60px;
    margin-bottom: 250px;
    padding-top: 100px;
  }
}
@media (min-width: 1600px) {
  .p-launch-vc__promo {
    grid-template-columns: 800px auto;
    margin-top: 100px;
    margin-bottom: 300px;
  }
}
.p-launch-vc__promo-image {
  margin-top: -35px;
}
@media (min-width: 768px) {
  .p-launch-vc__promo-image {
    position: absolute;
    top: -100px;
    right: -50px;
    width: 480px;
    height: 360px;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .p-launch-vc__promo-image {
    right: 0;
  }
}
@media (min-width: 1200px) {
  .p-launch-vc__promo-image {
    top: -115px;
    right: -75px;
    width: 750px;
    height: 570px;
  }
}
@media (min-width: 1600px) {
  .p-launch-vc__promo-image {
    width: 850px;
    height: 640px;
  }
}

.launch-vc-way {
  margin-bottom: 50px;
}
@media (min-width: 576px) {
  .launch-vc-way {
    margin-bottom: 70px;
  }
}
@media (min-width: 768px) {
  .launch-vc-way {
    margin-bottom: 90px;
  }
}
@media (min-width: 1200px) {
  .launch-vc-way {
    margin-bottom: 130px;
  }
}
@media (min-width: 1600px) {
  .launch-vc-way {
    margin-bottom: 200px;
  }
}
@media (min-width: 768px) {
  .launch-vc-way__wrapper {
    display: grid;
    grid-template-columns: 370px 1fr;
    -moz-column-gap: 40px;
    column-gap: 40px;
    align-items: start;
  }
}
@media (min-width: 992px) {
  .launch-vc-way__wrapper {
    grid-template-columns: 460px 1fr;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media (min-width: 1200px) {
  .launch-vc-way__wrapper {
    grid-template-columns: 580px 1fr;
    -moz-column-gap: 70px;
    column-gap: 70px;
  }
}
@media (min-width: 1600px) {
  .launch-vc-way__wrapper {
    grid-template-columns: 720px 1fr;
    -moz-column-gap: 90px;
    column-gap: 90px;
  }
}
.launch-vc-way__title {
  margin-bottom: 30px;
  font-family: "Krona One";
  font-size: 34px;
  line-height: 42px;
}
@media (min-width: 768px) {
  .launch-vc-way__title {
    margin-bottom: 35px;
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 992px) {
  .launch-vc-way__title {
    margin-bottom: 45px;
  }
}
@media (min-width: 1200px) {
  .launch-vc-way__title {
    margin-bottom: 55px;
    font-size: 50px;
    line-height: 62px;
  }
}
@media (min-width: 1600px) {
  .launch-vc-way__title {
    margin-bottom: 65px;
    font-size: 60px;
    line-height: 75px;
  }
}
.launch-vc-way__image {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media (min-width: 576px) {
  .launch-vc-way__image {
    width: 320px;
    height: 220px;
  }
}
@media (min-width: 768px) {
  .launch-vc-way__image {
    width: 100%;
    height: auto;
    margin: 0;
  }
}
.launch-vc-way__items {
  display: grid;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .launch-vc-way__items {
    row-gap: 40px;
    grid-column: 2/3;
    grid-row: 1/4;
  }
}
@media (min-width: 992px) {
  .launch-vc-way__items {
    align-self: end;
  }
}
@media (min-width: 1200px) {
  .launch-vc-way__items {
    row-gap: 45px;
  }
}
@media (min-width: 1600px) {
  .launch-vc-way__items {
    row-gap: 50px;
  }
}
.launch-vc-way__item {
  display: grid;
  row-gap: 10px;
}
.launch-vc-way__item-title {
  font-family: "Krona One";
  font-size: 22px;
  line-height: 26px;
}
@media (min-width: 992px) {
  .launch-vc-way__item-title {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (min-width: 1600px) {
  .launch-vc-way__item-title {
    font-size: 30px;
    line-height: 36px;
  }
}
.launch-vc-way__item-text {
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .launch-vc-way__item-text {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (min-width: 1600px) {
  .launch-vc-way__item-text {
    font-size: 24px;
    line-height: 28px;
  }
}

.launch-vc-infograph__tagline {
  margin: 40px 0;
  font-family: "Krona One";
  font-size: 18px;
  line-height: 22px;
  text-align: center;
}
@media (min-width: 768px) {
  .launch-vc-infograph__tagline {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (min-width: 992px) {
  .launch-vc-infograph__tagline {
    width: 750px;
    justify-self: center;
    margin: 60px 0;
  }
}
@media (min-width: 1200px) {
  .launch-vc-infograph__tagline {
    width: 1000px;
    margin: 90px 0;
    font-size: 30px;
    line-height: 38px;
  }
}
@media (min-width: 1600px) {
  .launch-vc-infograph__tagline {
    width: 1100px;
    margin: 120px 0;
    font-size: 34px;
    line-height: 42px;
  }
}

.p-launch-synd__promo {
  row-gap: 50px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .p-launch-synd__promo {
    grid-template-columns: 390px 1fr;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .p-launch-synd__promo {
    grid-template-columns: 450px 1fr;
    -moz-column-gap: 100px;
    column-gap: 100px;
  }
}
@media (min-width: 1200px) {
  .p-launch-synd__promo {
    grid-template-columns: 560px 1fr;
    margin-bottom: 170px;
  }
}
@media (min-width: 1600px) {
  .p-launch-synd__promo {
    grid-template-columns: 740px 1fr;
    margin-bottom: 230px;
  }
}
.p-launch-synd__promo-title {
  display: grid;
  justify-content: start;
}
.p-launch-synd__promo-title span {
  padding: 0 10px;
  border-radius: 70px;
  background-color: #124efe;
}
@media (min-width: 576px) {
  .p-launch-synd__promo-image {
    width: 300px;
  }
}
@media (min-width: 768px) {
  .p-launch-synd__promo-image {
    width: auto;
  }
}
@media (min-width: 992px) {
  .p-launch-synd__promo-image {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .p-launch-synd__journey-wrapper {
    padding-bottom: 130px;
  }
}
@media (min-width: 1200px) {
  .p-launch-synd__journey-wrapper {
    padding-bottom: 150px;
  }
}
@media (min-width: 1600px) {
  .p-launch-synd__journey-wrapper {
    padding-bottom: 200px;
  }
}
@media (min-width: 576px) {
  .p-launch-synd__journey .journey__image {
    width: 350px;
  }
}
@media (min-width: 992px) {
  .p-launch-synd__journey .journey__image {
    top: 280px;
    left: 40px;
    width: 450px;
  }
}
@media (min-width: 1200px) {
  .p-launch-synd__journey .journey__image {
    top: 340px;
    left: 0;
    width: 480px;
  }
}
@media (min-width: 1600px) {
  .p-launch-synd__journey .journey__image {
    top: 420px;
    width: 530px;
  }
}

.launch-synd-solution {
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .launch-synd-solution {
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .launch-synd-solution {
    margin-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .launch-synd-solution {
    margin-bottom: 170px;
  }
}
@media (min-width: 1600px) {
  .launch-synd-solution {
    margin-bottom: 230px;
  }
}
.launch-synd-solution__wrapper {
  display: grid;
}
@media (min-width: 768px) {
  .launch-synd-solution__wrapper {
    grid-template-columns: 340px 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
@media (min-width: 992px) {
  .launch-synd-solution__wrapper {
    grid-template-columns: 400px 1fr;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
@media (min-width: 1200px) {
  .launch-synd-solution__wrapper {
    grid-template-columns: 500px 1fr;
    -moz-column-gap: 70px;
    column-gap: 70px;
  }
}
@media (min-width: 1600px) {
  .launch-synd-solution__wrapper {
    grid-template-columns: 730px 1fr;
    -moz-column-gap: 70px;
    column-gap: 70px;
  }
}
.launch-synd-solution__title {
  margin-bottom: 30px;
  font-family: "Krona One";
  font-size: 32px;
  line-height: 40px;
}
@media (min-width: 768px) {
  .launch-synd-solution__title {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .launch-synd-solution__title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 1200px) {
  .launch-synd-solution__title {
    font-size: 50px;
    line-height: 62px;
  }
}
@media (min-width: 1600px) {
  .launch-synd-solution__title {
    font-size: 60px;
    line-height: 75px;
  }
}
.launch-synd-solution__text {
  font-size: 16px;
  line-height: 20px;
}
.launch-synd-solution__text p:not(:last-child) {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .launch-synd-solution__text {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (min-width: 1200px) {
  .launch-synd-solution__text {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (min-width: 1600px) {
  .launch-synd-solution__text {
    font-size: 24px;
    line-height: 28px;
  }
}

.p-launch-pf__promo {
  margin-bottom: 70px;
}
@media (min-width: 992px) {
  .p-launch-pf__promo {
    margin-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .p-launch-pf__promo {
    margin-bottom: 140px;
    padding-top: 40px;
  }
}
@media (min-width: 1600px) {
  .p-launch-pf__promo {
    margin-bottom: 200px;
  }
}
@media (min-width: 1200px) {
  .p-launch-pf__promo-image {
    max-width: 100%;
    margin-right: -50px;
  }
}

.p-faq__promo-image {
  display: none;
}
@media (min-width: 992px) {
  .p-faq__promo-image {
    display: block;
  }
}
.p-faq__search {
  margin-top: 20px;
  display: grid;
  row-gap: 15px;
}
@media (min-width: 576px) {
  .p-faq__search {
    width: 400px;
  }
}
@media (min-width: 992px) {
  .p-faq__search {
    grid-template-columns: 1fr auto;
    width: 100%;
    -moz-column-gap: 10px;
    column-gap: 10px;
    margin-top: 30px;
  }
}
@media (min-width: 1600px) {
  .p-faq__search {
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-top: 40px;
  }
}
@media (min-width: 1600px) {
  .p-faq__search-input {
    height: 70px;
  }
}
.p-faq__search-button {
  justify-self: start;
  padding-left: 50px;
  padding-right: 50px;
}
@media (min-width: 992px) {
  .p-faq__search-button {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media (min-width: 1600px) {
  .p-faq__search-button {
    height: 70px;
    padding-left: 70px;
    padding-right: 70px;
  }
}

.faq__items {
  display: grid;
  row-gap: 20px;
  margin-bottom: 50px;
}
@media (min-width: 576px) {
  .faq__items {
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .faq__items {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-bottom: 70px;
  }
}
@media (min-width: 992px) {
  .faq__items {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 80px;
  }
}
.faq__item-button {
  width: auto;
  height: auto;
  padding: 0;
  background-image: none;
  font-family: "Krona One";
  font-size: 16px;
  line-height: 16px;
  color: #124efe;
}
@media (min-width: 1600px) {
  .faq__item-button {
    font-size: 18px;
    line-height: 18px;
  }
}
.faq__accordion {
  margin-bottom: 70px;
}
@media (min-width: 992px) {
  .faq__accordion {
    margin-bottom: 90px;
  }
}
@media (min-width: 1200px) {
  .faq__accordion {
    margin-bottom: 100px;
  }
}
@media (min-width: 1600px) {
  .faq__accordion {
    margin-bottom: 130px;
  }
}
.faq__accordion-title {
  margin-bottom: 20px;
  font-family: "Krona One";
  font-size: 20px;
  line-height: 24px;
  color: #000;
  text-align: center;
}
@media (min-width: 768px) {
  .faq__accordion-title {
    margin-bottom: 25px;
    font-size: 22px;
    line-height: 26px;
  }
}
@media (min-width: 1600px) {
  .faq__accordion-title {
    margin-bottom: 40px;
    font-size: 24px;
    line-height: 30px;
  }
}
.faq__have-questions {
  display: grid;
  row-gap: 30px;
}
.faq__have-questions-text {
  justify-self: center;
  width: 305px;
  font-family: "Krona One";
  font-size: 24px;
  line-height: 30px;
  text-align: center;
}
@media (min-width: 576px) {
  .faq__have-questions-text {
    width: 450px;
  }
}
@media (min-width: 768px) {
  .faq__have-questions-text {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .faq__have-questions-text {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (min-width: 1200px) {
  .faq__have-questions-text {
    font-size: 34px;
    line-height: 40px;
  }
}
@media (min-width: 1600px) {
  .faq__have-questions-text {
    font-size: 40px;
    line-height: 46px;
  }
}
.faq__have-questions-button {
  justify-self: center;
}
@media (min-width: 992px) {
  .faq__have-questions-button {
    height: 65px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1600px) {
  .faq__have-questions-button {
    height: 70px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

.p-search__title {
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 30px;
}
@media (min-width: 1200px) {
  .p-search__title {
    margin-bottom: 40px;
    font-size: 30px;
    line-height: 38px;
  }
}
@media (min-width: 1600px) {
  .p-search__title {
    margin-bottom: 50px;
    font-size: 34px;
    line-height: 42px;
  }
}
.p-search__title span {
  color: #ccc;
}
.p-search__items {
  display: grid;
  row-gap: 25px;
}
@media (min-width: 768px) {
  .p-search__items {
    row-gap: 30px;
  }
}
@media (min-width: 1600px) {
  .p-search__items {
    row-gap: 35px;
  }
}
.p-search__item {
  display: grid;
  row-gap: 5px;
}
.p-search__item-link {
  justify-self: start;
  color: #124efe;
}
.p-search__item-link:hover {
  color: #5e87fe;
}
.p-search__item-title {
  font-size: 16px;
  line-height: 18px;
}
@media (min-width: 1200px) {
  .p-search__item-title {
    font-size: 18px;
    line-height: 22px;
  }
}
.p-search__item-text {
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 1200px) {
  .p-search__item-text {
    font-size: 18px;
    line-height: 22px;
  }
}

@media (min-width: 768px) {
  .p-contact-us__promo {
    grid-template-columns: 1.2fr 0.8fr;
    -moz-column-gap: 20px;
    column-gap: 20px;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .p-contact-us__promo {
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media (min-width: 1600px) {
  .p-contact-us__promo {
    grid-template-columns: 850px 490px;
    justify-content: space-between;
  }
}
.p-contact-us__promo-image {
  width: 85%;
}
@media (min-width: 576px) {
  .p-contact-us__promo-image {
    width: 285px;
  }
}
@media (min-width: 768px) {
  .p-contact-us__promo-image {
    width: 100%;
  }
}

.contact-team {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .contact-team {
    margin-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .contact-team {
    margin-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .contact-team {
    margin-bottom: 130px;
  }
}
@media (min-width: 1600px) {
  .contact-team {
    margin-bottom: 230px;
  }
}
@media (min-width: 992px) {
  .contact-team__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 60px;
    column-gap: 60px;
  }
}
.contact-team__title {
  margin-bottom: 20px;
  font-family: "Krona One";
  font-size: 36px;
  line-height: 45px;
}
@media (min-width: 576px) {
  .contact-team__title {
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .contact-team__title {
    margin-bottom: 30px;
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 1200px) {
  .contact-team__title {
    font-size: 50px;
    line-height: 62px;
  }
}
@media (min-width: 1600px) {
  .contact-team__title {
    font-size: 60px;
    line-height: 75px;
  }
}
.contact-team__text {
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .contact-team__text {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (min-width: 992px) {
  .contact-team__text {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 1200px) {
  .contact-team__text {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (min-width: 1600px) {
  .contact-team__text {
    font-size: 24px;
    line-height: 28px;
  }
}
.contact-team__text p:not(:last-child) {
  margin-bottom: 10px;
}
.contact-team__items {
  display: grid;
  row-gap: 35px;
  margin-top: 50px;
  margin-right: -15px;
  padding-right: 15px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.contact-team__items::-webkit-scrollbar {
  display: none;
}
@media (min-width: 576px) {
  .contact-team__items {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-right: -18px;
    padding-right: 18px;
  }
}
@media (min-width: 768px) {
  .contact-team__items {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 30px;
    column-gap: 30px;
    margin-right: 0;
    padding-right: 0;
    overflow: unset;
  }
}
@media (min-width: 992px) {
  .contact-team__items {
    grid-column: 1/-1;
    margin-top: 70px;
  }
}
@media (min-width: 1600px) {
  .contact-team__items {
    -moz-column-gap: 50px;
    column-gap: 50px;
    margin-top: 90px;
  }
}
.contact-team__item {
  padding-bottom: 6px;
}
@media (min-width: 992px) {
  .contact-team__item {
    position: relative;
    padding-bottom: 0;
  }
}
.contact-team__item-image {
  border-radius: 20px;
  transition: box-shadow 0.3s;
  width: 100%;
  max-height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 992px) {
  .contact-team__item-image {
    width: 100%;
    height: 350px;
  }
}
@media (min-width: 1200px) {
  .contact-team__item-image {
    height: 420px;
  }
}
@media (min-width: 1600px) {
  .contact-team__item-image {
    height: 520px;
  }
}
.contact-team__item:hover .contact-team__item-image {
  box-shadow: 8px 8px 0 #222;
}
@media (min-width: 992px) {
  .contact-team__item:hover .contact-team__item-image {
    box-shadow: 10px 10px 0 #222;
  }
}
.contact-team__info {
  display: grid;
  row-gap: 5px;
  margin-top: 15px;
}
@media (min-width: 992px) {
  .contact-team__info {
    margin-top: 20px;
  }
}
@media (min-width: 1200px) {
  .contact-team__info {
    row-gap: 7px;
  }
}
@media (min-width: 1600px) {
  .contact-team__info {
    row-gap: 10px;
    margin-top: 25px;
  }
}
.contact-team__info-name {
  font-family: "Krona One";
  font-size: 18px;
  line-height: 22px;
  color: #000;
}
@media (min-width: 992px) {
  .contact-team__info-name {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 1200px) {
  .contact-team__info-name {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (min-width: 1600px) {
  .contact-team__info-name {
    font-size: 24px;
    line-height: 28px;
  }
}
.contact-team__info-position {
  font-size: 18px;
  line-height: 22px;
  color: #000;
}
@media (min-width: 992px) {
  .contact-team__info-position {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 1200px) {
  .contact-team__info-position {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (min-width: 1600px) {
  .contact-team__info-position {
    font-size: 24px;
    line-height: 28px;
  }
}
.contact-team__item-more {
  margin-top: 20px;
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}
@media (min-width: 992px) {
  .contact-team__item-more {
    display: none;
  }
}
.contact-team__item-details {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  row-gap: 20px;
  align-content: start;
  width: 100%;
  height: 100%;
  padding: 20px 15px;
  padding-top: 50px;
  background-color: #fff;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.contact-team__item-details::-webkit-scrollbar {
  display: none;
}
@media (min-width: 992px) {
  .contact-team__item-details {
    position: absolute;
    left: calc(100% + 30px);
    row-gap: 15px;
    width: 300px;
    height: auto;
    min-height: 350px;
    padding-top: 20px;
    border-radius: 20px;
    border: 1px solid #000;
    box-shadow: 10px 10px 0 #222;
  }
}
@media (min-width: 1200px) {
  .contact-team__item-details {
    width: 360px;
    min-height: 420px;
  }
}
@media (min-width: 1600px) {
  .contact-team__item-details {
    left: calc(100% + 50px);
    row-gap: 25px;
    width: 450px;
    min-height: 520px;
    padding: 30px 20px;
  }
}
.contact-team__item-details.open {
  display: grid;
  animation: fade-in 0.3s both;
}
.contact-team__item {
  position: relative;
}
@media (min-width: 992px) {
  .contact-team__item:hover .contact-team__item-details {
    display: grid;
    animation: fade-in 0.3s both;
  }
}
@media (min-width: 992px) {
  .contact-team__item:nth-child(3n):hover .contact-team__item-details {
    left: auto;
    right: calc(100% + 30px);
  }
}
@media (min-width: 1600px) {
  .contact-team__item:nth-child(3n):hover .contact-team__item-details {
    left: auto;
    right: calc(100% + 50px);
  }
}
.contact-team__item-details-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  color: #000;
}
@media (min-width: 576px) {
  .contact-team__item-details-title {
    font-size: 26px;
    line-height: 30px;
  }
}
@media (min-width: 768px) {
  .contact-team__item-details-title {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (min-width: 992px) {
  .contact-team__item-details-title {
    font-size: 26px;
    line-height: 30px;
  }
}
@media (min-width: 1600px) {
  .contact-team__item-details-title {
    font-size: 36px;
    line-height: 40px;
  }
}
.contact-team__item-details-text {
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 576px) {
  .contact-team__item-details-text {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (min-width: 768px) {
  .contact-team__item-details-text {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  .contact-team__item-details-text {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (min-width: 1600px) {
  .contact-team__item-details-text {
    font-size: 22px;
    line-height: 26px;
  }
}
.contact-team__item-details-text p:not(:last-child) {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .contact-team__item-details-text p:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media (min-width: 1600px) {
  .contact-team__item-details-text p:not(:last-child) {
    margin-bottom: 20px;
  }
}
.contact-team__item-details-cancel {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 25px;
  height: 25px;
  background-image: url("../img/cross.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .contact-team__item-details-cancel {
    top: 25px;
    right: 25px;
    width: 35px;
    height: 35px;
  }
}
@media (min-width: 992px) {
  .contact-team__item-details-cancel {
    display: none;
  }
}

.contact-backers {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .contact-backers {
    margin-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .contact-backers {
    margin-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .contact-backers {
    margin-bottom: 130px;
  }
}
@media (min-width: 1600px) {
  .contact-backers {
    margin-bottom: 230px;
  }
}
@media (min-width: 992px) {
  .contact-backers__wrapper {
    display: grid;
    grid-template-columns: 350px 470px;
    justify-content: space-between;
    align-items: center;
    row-gap: 60px;
  }
}
@media (min-width: 1200px) {
  .contact-backers__wrapper {
    grid-template-columns: 410px 540px;
    row-gap: 70px;
  }
}
@media (min-width: 1600px) {
  .contact-backers__wrapper {
    grid-template-columns: 500px 650px;
    row-gap: 90px;
  }
}
.contact-backers__title {
  margin-bottom: 20px;
  font-family: "Krona One";
  font-size: 36px;
  line-height: 45px;
}
@media (min-width: 576px) {
  .contact-backers__title {
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .contact-backers__title {
    margin-bottom: 30px;
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 992px) {
  .contact-backers__title {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .contact-backers__title {
    font-size: 50px;
    line-height: 62px;
  }
}
@media (min-width: 1600px) {
  .contact-backers__title {
    font-size: 60px;
    line-height: 75px;
  }
}
.contact-backers__text {
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .contact-backers__text {
    max-width: 460px;
    font-size: 18px;
    line-height: 22px;
  }
}
@media (min-width: 992px) {
  .contact-backers__text {
    max-width: unset;
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 1200px) {
  .contact-backers__text {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (min-width: 1600px) {
  .contact-backers__text {
    font-size: 24px;
    line-height: 28px;
  }
}
.contact-backers__slider {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .contact-backers__slider {
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .contact-backers__slider {
    grid-column: 1/-1;
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .contact-backers__slider .work-with__items {
    margin-left: -55px;
  }
}
@media (min-width: 1200px) {
  .contact-backers__slider .work-with__items {
    margin-left: -45px;
  }
}
@media (min-width: 1600px) {
  .contact-backers__slider .work-with__items {
    margin-left: -65px;
  }
}
.contact-backers__slider .work-with__item {
  border-color: #000;
}
.contact-backers__slider .work-with__nav {
  margin-top: 5px;
  margin-bottom: 0;
  filter: brightness(0%);
}
@media (min-width: 768px) {
  .contact-backers__slider .work-with__nav {
    position: static;
    top: unset;
    margin-top: 25px;
  }
}

.contact-feedback {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .contact-feedback {
    margin-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .contact-feedback {
    margin-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .contact-feedback {
    margin-bottom: 130px;
  }
}
@media (min-width: 1600px) {
  .contact-feedback {
    margin-bottom: 230px;
  }
}
.contact-feedback__wrapper {
  position: relative;
  padding-top: 150px;
}
@media (min-width: 768px) {
  .contact-feedback__wrapper {
    padding-top: 0;
    padding-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .contact-feedback__wrapper {
    padding-bottom: 0;
  }
}
.contact-feedback__title {
  margin-bottom: 30px;
  padding-right: 10px;
  font-family: "Krona One";
  font-size: 36px;
  line-height: 45px;
}
@media (min-width: 576px) {
  .contact-feedback__title {
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .contact-feedback__title {
    max-width: 590px;
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 992px) {
  .contact-feedback__title {
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .contact-feedback__title {
    max-width: 750px;
    margin-bottom: 60px;
    font-size: 50px;
    line-height: 62px;
  }
}
@media (min-width: 1600px) {
  .contact-feedback__title {
    max-width: 840px;
    margin-bottom: 80px;
    font-size: 60px;
    line-height: 75px;
  }
}
@media (min-width: 576px) {
  .contact-feedback__form {
    width: 390px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .contact-feedback__form {
    grid-template-columns: repeat(2, 1fr);
    width: 565px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .contact-feedback__form {
    width: 660px;
  }
}
@media (min-width: 1600px) {
  .contact-feedback__form {
    -moz-column-gap: 25px;
    column-gap: 25px;
    row-gap: 25px;
    width: 800px;
  }
}
@media (min-width: 768px) {
  .contact-feedback__form-textarea {
    grid-column: 1/-1;
  }
}
@media (min-width: 768px) {
  .contact-feedback__form-submit {
    justify-self: start;
    width: 230px;
  }
}
.contact-feedback__image {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  width: 130px;
  height: 130px;
  background-image: url("../img/contact-feedback-airline.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: rotate(-20deg);
  filter: drop-shadow(3px 3px 0 #000);
}
@media (min-width: 768px) {
  .contact-feedback__image {
    top: unset;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    transform: rotate(60deg);
    filter: drop-shadow(5px 5px 0 #000);
  }
}
@media (min-width: 992px) {
  .contact-feedback__image {
    bottom: unset;
    top: 50px;
    right: 10px;
    width: 330px;
    height: 330px;
    transform: rotate(0deg);
    filter: drop-shadow(7px 7px 0 #000);
  }
}
@media (min-width: 1200px) {
  .contact-feedback__image {
    top: 70px;
    width: 400px;
    height: 400px;
  }
}
@media (min-width: 1600px) {
  .contact-feedback__image {
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
  }
}

.contact-come {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .contact-come {
    margin-bottom: 60px;
  }
}
@media (min-width: 1200px) {
  .contact-come {
    margin-bottom: 80px;
  }
}
@media (min-width: 1600px) {
  .contact-come {
    margin-bottom: 140px;
  }
}
@media (min-width: 768px) {
  .contact-come__wrapper {
    display: grid;
    grid-template-columns: 340px 340px;
    justify-content: space-between;
    row-gap: 60px;
  }
}
@media (min-width: 992px) {
  .contact-come__wrapper {
    grid-template-columns: 360px 550px;
  }
}
@media (min-width: 1200px) {
  .contact-come__wrapper {
    grid-template-columns: 400px 650px;
  }
}
@media (min-width: 1600px) {
  .contact-come__wrapper {
    grid-template-columns: 490px 870px;
  }
}
.contact-come__title {
  margin-bottom: 25px;
  font-family: "Krona One";
  font-size: 36px;
  line-height: 45px;
}
@media (min-width: 576px) {
  .contact-come__title {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .contact-come__title {
    margin-bottom: 0;
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 1200px) {
  .contact-come__title {
    font-size: 50px;
    line-height: 62px;
  }
}
@media (min-width: 1600px) {
  .contact-come__title {
    margin-bottom: 20px;
    font-size: 60px;
    line-height: 75px;
  }
}
.contact-come__content {
  display: grid;
  row-gap: 35px;
  margin-bottom: 50px;
}
@media (min-width: 576px) {
  .contact-come__content {
    grid-template-columns: 335px auto;
    align-items: start;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .contact-come__content {
    grid-template-columns: unset;
    margin-bottom: 0;
  }
}
@media (min-width: 1600px) {
  .contact-come__content {
    row-gap: 50px;
  }
}
.contact-come__content-item {
  display: grid;
  justify-content: start;
  row-gap: 10px;
}
.contact-come__content-item a {
  border: 2px solid transparent;
  transition: border 0.3s;
}
.contact-come__content-item a:hover {
  border-bottom: 2px solid #000;
}
.contact-come__content-item-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #000;
}
@media (min-width: 1200px) {
  .contact-come__content-item-title {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 1600px) {
  .contact-come__content-item-title {
    font-size: 24px;
    line-height: 28px;
  }
}
.contact-come__content-item-text {
  font-size: 18px;
  line-height: 22px;
  color: #000;
}
@media (min-width: 1200px) {
  .contact-come__content-item-text {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 1600px) {
  .contact-come__content-item-text {
    font-size: 24px;
    line-height: 28px;
  }
}
.contact-come__map {
  position: relative;
  border-radius: 20px;
  box-shadow: 8px 8px 0 #222;
  height: 380px;
  overflow: hidden;
}
@media (min-width: 576px) {
  .contact-come__map {
    height: 285px;
  }
}
@media (min-width: 768px) {
  .contact-come__map {
    grid-column: 1/-1;
    height: 400px;
  }
}
@media (min-width: 992px) {
  .contact-come__map {
    grid-column: 2/3;
    grid-row: 1/4;
  }
}
@media (min-width: 1200px) {
  .contact-come__map {
    height: 450px;
  }
}
@media (min-width: 1600px) {
  .contact-come__map {
    height: 600px;
  }
}
.contact-come__map-stream {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-notice__wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 15px;
  column-gap: 15px;
}
@media (min-width: 768px) {
  .contact-notice__wrapper {
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (min-width: 1200px) {
  .contact-notice__wrapper {
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media (min-width: 1600px) {
  .contact-notice__wrapper {
    -moz-column-gap: 70px;
    column-gap: 70px;
  }
}
.contact-notice__text {
  font-size: 16px;
  line-height: 20px;
  color: #000;
}
@media (min-width: 768px) {
  .contact-notice__text {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (min-width: 1200px) {
  .contact-notice__text {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 1600px) {
  .contact-notice__text {
    font-size: 24px;
    line-height: 28px;
  }
}
.contact-notice__text p:not(:last-child) {
  margin-bottom: 10px;
}
@media (min-width: 1600px) {
  .contact-notice__text p:not(:last-child) {
    margin-bottom: 15px;
  }
}
.contact-notice__icon {
  width: 30px;
  margin-top: -5px;
}
@media (min-width: 768px) {
  .contact-notice__icon {
    margin-top: -20px;
    width: 50px;
  }
}
@media (min-width: 1200px) {
  .contact-notice__icon {
    width: 70px;
  }
}
@media (min-width: 1600px) {
  .contact-notice__icon {
    width: 100px;
  }
}

.p-quiz__main {
  margin: 0;
  padding-top: 50px;
}
@media (min-width: 768px) {
  .p-quiz__main {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .p-quiz__main {
    padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  .p-quiz__main {
    padding-top: 150px;
  }
}
@media (min-width: 1600px) {
  .p-quiz__main {
    padding-top: 200px;
  }
}
.p-quiz .footer {
  display: none;
}

/* Temporarily */
.add-services__desc {
  padding-top: 40px;
}

@media (min-width: 768px) {
  .add-services__desc {
    padding-top: 60px;
  }
}

@media (min-width: 1200px) {
  .add-services__desc {
    padding-top: 80px;
  }
}

@media (min-width: 1600px) {
  .add-services__desc {
    padding-top: 100px;
  }
}

.p-launch-pf__launch {
}

.p-launch-pf__launch-button {
  padding: 30px 40px;
  text-align: center;
}

@media (min-width: 412px) {
  .p-launch-pf__launch-button {
    padding: 30px 80px;
  }
}

@media (min-width: 992px) {
  .p-launch-pf__launch-button {
    padding: 30px 25px;
    text-align: left;
  }
}

.default-page h1,
.default-page h2,
.default-page h3,
.default-page h4,
.default-page h5,
.default-page h6 {
  margin-bottom: 20px;
}

.default-page p:not(:last-child) {
  margin-bottom: 10px;
}

.default-page ul {
  list-style: disc;
  margin: 20px 0;
  padding-left: 25px;
}

/* Change strong to span */
/* .pricing__item-list span {
  position: relative;
  padding-left: 10px;
  font-weight: normal;
}
.pricing__item-list span::before {
  content: "•";
  margin-right: 4px;
} */
