*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  flex: 1;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "HelveticaNeueCyr";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #141213;
  background-color: #000000;
  min-width: 320px;
}

.container {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}

button {
  border: none;
  background-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

a:focus,
a:active {
  outline: none;
  box-shadow: none;
}

ul,
ol {
  list-style: none;
}

/* --------------general------------------ */

.section {
  padding: 62px 0;
}

.section-title {
  color: #FFFCF3;
  font-family: "Trafika Sans v1";
  font-size: 56px;
  line-height: 64px;
  font-weight: 400;
  margin-bottom: 16px;
}

.white-box,
.transparent-box {
  border-radius: 32px;
  padding: 32px;
}

.white-box {
  background: #FFFCF3;
}

.transparent-box {
  border: 1px solid #FFFCF3;
}

/* --------------general------------------ */

/* --------------header------------------ */

.header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1000;
  top: 32px;
  transition: all .2s linear 0s;
}

.header.scrolled {
  top: 16px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px;
  border-radius: 64px;
  background: #FFFCF3;
  border: 1px solid #000000;
  position: relative;
}

.header__logo {
  display: block;
  width: 142px;
  height: 60px;
}

.header__nav-items {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__nav-link {
  color: #505050;
  font-size: 14px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 64px;
  background: transparent;
  transition: all 0.2s linear 0s;
}

.header__nav-link.active,
.header__nav-link:hover {
  background: #F6F3E8;
}

.header__contact-link {
  color: #FFFCF3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 64px;
  background: #D90704;
  border: 1px solid #D90704;
  height: 56px;
  padding: 12px 16px;
  white-space: nowrap;
  transition: all .2s linear 0s;
}

.header__contact-link:hover {
  color: #141213;
  background: transparent;
}

.header__burger-toggle {
  font-family: Inter;
  display: none;
  padding: 12px 16px 12px 44px;
  border-radius: 64px;
  background: #D90704;
  border: 1px solid #D90704;
  height: 56px;
  color: #FFFCF3;
  font-size: 16px;
  line-height: 20px;
  position: relative;
  transition: all .1s linear 0s;
}

.header__burger-toggle.opened {
  background-color: transparent;
  color: #141213;
}

.header__burger-toggle::before {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/menu-open.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.header__burger-toggle.opened::before {
  background-image: url(../img/menu-close.svg);
}

.overlay {
  display: none;
  position: fixed;
  z-index: 500;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  left: 0;
  top: 0;
}

.overlay.view {
  background-color: rgba(255, 255, 255, 0.3);
}

.overlay.open {
  display: block;
}

.mobile-menu {
  display: none;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: all .1s linear 0s;
  position: absolute;
  z-index: 1000;
  left: 0;
  top: 90px;
  border-radius: 32px;
  padding: 16px;
  background: #FFFCF3;
  width: 100%;
  height: calc(100vh - 135px);
  overflow-y: auto;
  border: 1px #000000 solid;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu.in {
  opacity: 1;
  transform: none;
}

.mobile-menu .header__nav {
  margin-bottom: 24px;
}

.mobile-menu .header__nav-items {
  padding: 60px 0;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu .header__nav-link {
  color: #141213;
  font-family: "Trafika Sans v1";
  font-size: 40px;
  line-height: 48px;
  background: none;
  padding: 0;
}

.mobile-menu .header__nav-link.active {
  color: #D90704;

}

@media (max-width: 835px) {
  .header__nav.desk-nav {
    display: none;
  }

  .header__contact-link {
    display: none;
  }

  .mobile-menu .header__contact-link {
    display: flex;
  }

  .header__burger-toggle {
    display: block;
  }
}

/* --------------header------------------ */

/* --------------top------------------ */

.section.top-section {
  padding-top: 123px;
}

.top-section__inner {
  display: flex;
  justify-content: space-between;
  column-gap: 14px;
}

.top-section__images {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  column-gap: 14px;
}

.top-section__image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  overflow: hidden;
  width: 50%;
}

.top-section__image img {
  height: 100%;
  transform: scale(1.01);
}

.top-img_wrapper {
  border-radius: 32px;
  overflow: hidden;
  width: 50%;
}

.top-img_wrapper img {
  height: 100%;
  transform: scale(1.01);
}

.top-section__title-block {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-end;
}

.top-section__icon {
  width: 100px;
  height: 100px;
}

.top-section__titleBox .top-section__title {
  margin-bottom: 16px;
}

.top-section__title {
  color: #141213;
  font-family: "Trafika Sans v1";
  font-size: 72px;
  font-weight: 400;
  line-height: 111%;
}

.top-section__title span {
  color: #D90704;
}

.top-section__link {
  color: #FFFCF3;
  font-family: Inter;
  border-radius: 56px;
  background: rgba(20, 18, 19, 0.56);
  padding: 22px 24px 22px 76px;
  height: 64px;
  position: relative;
  width: fit-content;
  white-space: nowrap;
  transition: all 0.3s ease-in-out 0s;
}

.top-section__link::before {
  transition: all 0.3s ease-in-out 0s;
  position: absolute;
  content: '';
  left: -1px;
  top: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #FFFCF3;
  background-color: #D90704;
  background-image: url(../img/arrow-narrow-down.svg);
  background-repeat: no-repeat;
  background-position: center center;
  transform: rotate(270deg);
}

.top-section__link:hover {
  padding: 22px 76px 22px 24px;
}

.top-section__link:hover::before {
  left: calc(100% - 64px);
  transform: rotate(360deg);
}

/* --------------top------------------ */

/* --------------services------------------ */

.services__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.services__wrapp-icon {
  display: block;
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
}

.services__item-title {
  font-family: "Trafika Sans v1";
  font-size: 42px;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 16px;
}

/* --------------services------------------ */

/* --------------about------------------ */

.about-item-1 h2.section-title {
  margin-left: 0;
}

.about__text {
  color: #FFFCF3;
  opacity: 0.6;
}

.about__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}

.about__items-item:first-child {
  border-radius: 32px;
  border: 1px solid #FFFCF3;
  background: #141213;
}

.about__item-title {
  color: #D90704;
  font-family: "Trafika Sans v1";
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 16px;
}

.about-item-3 .about__item-title span {
  padding-left: 72px;
  position: relative;
}

.about-item-3 .about__item-title span::before {
  position: absolute;
  content: '';
  width: 62px;
  height: 55px;
  left: 0;
  top: 30%;
  background-image: url(../img/under.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.about__item-title span {
  font-size: 124px;
  font-weight: 400;
  line-height: 114px;
  font-family: "Trafika Sans v1";
}

.about-item-1 {
  grid-row: 1 / 3;
}

.about-item-4 {
  grid-column: 2 / 4;
}

/* --------------about------------------ */

/* ----------------advantages---------------- */

.advantages__item:not(:last-child) {
  margin-bottom: 16px;
}

.advantages__item-header {
  display: flex;
  align-items: center;
  column-gap: 24px;
  margin-bottom: 32px;
}

.advantages__item-header picture {
  max-width: 100px;
  width: 100%;
}

.advantages__item-icon {
  width: 100px;
  height: 100px;
}

.advantages__item-title {
  color: #141213;
  font-family: "Trafika Sans v1";
  font-size: 42px;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 16px;
}

.advantages__subtitle {
  color: #141213;
}

.advantages__item-body {
  border-radius: 24px;
  background: #000;
  padding: 24px;
}

.advantages__item-question {
  display: block;
  color: #FFFCF3;
  font-family: "Trafika Sans v1";
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 16px;
}

.advantages__question-box:not(:last-child) {
  margin-bottom: 12px;
}

.advantages__item-short {
  color: #D90704;
  font-family: "Trafika Sans v1";
  font-size: 24px;
  font-style: normal;
  line-height: 28px;
  margin-bottom: 4px;
}

.advantages__item-long {
  color: #FFFCF3;
}

/* ----------------advantages---------------- */

/* ----------------stages---------------- */

.stages__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stages__item-icon {
  width: 100px;
  height: 100px;
}

.stages__item-title {
  margin: 24px 0 16px;
  font-family: "Trafika Sans v1";
  font-size: 42px;
  font-weight: 400;
  line-height: 50px;
}

/* ----------------stages---------------- */

/* ----------------packages---------------- */

.packages__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.packages__item {
  transition: all .2s ease-in-out 0s;
}

.packages__items .packages__item:hover {
  transform: translateY(-8px);
}

@media (max-width: 768px) {
  .packages__items .packages__item:hover {
    transform: none;
  }
}

.packages__item-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
}

.packages__item-title {
  font-family: "Trafika Sans v1";
  font-size: 42px;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 16px;
}

.packages__item-info {
  margin-bottom: 24px;
}

.packages__item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.packages__item-price {
  font-family: "Trafika Sans v1";
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
  padding: 8px 8px 8px 12px;
  border-radius: 70px;
  border: 1px solid #000;
  height: 48px;
}

.packages__item-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 64px;
  background: #D90704;
  border: 1px solid #D90704;
  color: #FFFCF3;
  font-size: 14px;
  font-weight: 550;
  line-height: 18px;
  padding: 12px 16px;
  height: 48px;
  transition: all .2s linear 0s;
}

.packages__item-buy:hover {
  background: transparent;
  color: #141213;
}

/* ----------------packages---------------- */

/* ----------------information---------------- */

.information__inner {
  display: flex;
  align-items: stretch;
  column-gap: 16px;
}

.information__info {
  max-width: 411px;
  border-radius: 32px;
  border: 1px solid #FFFCF3;
  background: #141213;
  padding: 32px;
}

.information__text {
  color: #FFFCF3;
  opacity: 0.6;
}

.information__image {
  border-radius: 32px;
  overflow: hidden;
}

.information__image img {
  height: 100%;
}


/* ----------------information---------------- */

/* ----------------price-list---------------- */

.price-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all .2s ease-in-out 0s;
}

.price-list__item:not(:last-child) {
  margin-bottom: 16px;
}

.price-list__items .price-list__item:hover {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .price-list__items .price-list__item:hover {
    transform: none;
  }
}

.price-list__info {
  font-family: "Trafika Sans v1";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}

.price-list__info-name,
.slash {
  color: #FFFCF3;
}

.price-list__info-conditions {
  color: #D90704;
}

.price-list__buy-block {
  display: flex;
  align-items: center;
  gap: 24px;
}

.price-list__price {
  border-radius: 70px;
  border: 1px solid #FFFCF3;
  height: 48px;
  padding: 8px 8px 8px 12px;
  color: #FFFCF3;
  font-family: "Trafika Sans v1";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}

.price-list__buy {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFCF3;
  font-size: 14px;
  font-weight: 550;
  line-height: 18px;
  padding: 12px 16px;
  border-radius: 64px;
  border: 1px solid #D90704;
  height: 48px;
  transition: all .2s linear 0s;
}

.price-list__buy:hover {
  background: #D90704;
  color: #FFFCF3;
}

/* ----------------price-list---------------- */

/* ----------------mob-proxy---------------- */

.proxy__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.residental-items {
  grid-template-columns: repeat(4, 1fr);
}

.proxy__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 24px;
  transition: all .2s ease-in-out 0s;
}

.residental-items .proxy__item:hover,
.proxy__items .proxy__item:hover {
  transform: translateY(-8px);
}

@media (max-width: 768px) {

  .residental-items .proxy__item:hover,
  .proxy__items .proxy__item:hover {
    transform: none;
  }
}

.proxy__item-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
}

.proxy__item-title {
  font-family: "Trafika Sans v1";
  font-size: 42px;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 16px;
}

.proxy__item-countries {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.proxy__item-country {
  border-radius: 31px;
  background: #141213;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 32px;
}

.proxy__country-flag {
  width: 16px;
}

.proxy__country-name {
  color: #FFFCF3;
  font-family: HelveticaNeueCyr;
  font-size: 14px;
  white-space: nowrap;
}

.proxy__item-down {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.proxy__price-block {
  border-radius: 70px;
  border: 1px solid #000;
  height: 48px;
  padding: 8px 8px 8px 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.proxy__item-price {
  color: #141213;
  font-family: "Trafika Sans v1";
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
}

.proxy__price-text {
  border-radius: 31px;
  background: #141213;
  padding: 8px;
  color: #FFFCF3;
  font-size: 14px;
  line-height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proxy__item-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFCF3;
  font-size: 14px;
  font-weight: 550;
  line-height: 18px;
  padding: 12px 16px;
  border-radius: 64px;
  background-color: #D90704;
  border: 1px solid #D90704;
  height: 48px;
  transition: all .2s linear 0s;
}

.proxy__item-buy:hover {
  color: #141213;
  background: transparent;
}

/* ----------------mob-proxy---------------- */

/* ----------------contacts---------------- */

.contacts {
  padding-bottom: 16px;
}

.contacts__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacts__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contacts__item-info {
  display: flex;
  align-items: center;
  gap: 16px;

  position: relative;
}

.contacts__icon {
  width: 48px;
  height: 48px;
}

.contacts__item-text {
  color: #FFFCF3;
  font-family: "Trafika Sans v1";
  font-size: 42px;
  font-weight: 400;
  line-height: 50px;
  cursor: pointer;
  transition: all .2s linear 0s;
}

.contacts__item-text:hover {
  color: #D90704;
  cursor: pointer;
}

.contacts__item-link {
  border-radius: 50%;
  border: 1px solid #D90704;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .1s linear 0s;
  cursor: pointer;
}

.contacts__item-link img {
  transform: rotate(225deg);
  width: 24px;
  height: 24px;
  transition: all .1s linear 0s;
}

.contacts__item-link:hover {
  background-color: #D90704;
}

.contacts__item-link:hover img {
  transform: rotate(270deg);
}

.toast {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 9px;
  position: absolute;
  z-index: 1;
  left: 34%;
  bottom: 57px;
  font-size: 14px;
}

.toast.show {
  visibility: visible;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
  from {
    bottom: 40px;
    opacity: 0;
  }

  to {
    bottom: 57px;
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    bottom: 57px;
    opacity: 1;
  }

  to {
    bottom: 40px;
    opacity: 0;
  }
}

/* ----------------contacts---------------- */

/* ----------------footer---------------- */

.footer {
  padding-bottom: 122px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 32px;
  border: 1px solid #FFFCF3;
  padding: 32px;
  background: #141213;
}

.footer__overmine {
  border-radius: 24px;
  background: #FFFCF3;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.footer__overmine-logo {
  max-width: 158px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.footer__overmine-logo::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 9px;
  height: 10px;
  background-image: url(../img/reg.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.footer__overmine-copy {
  text-align: center;
}

.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.footer__nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFCF3;
  font-size: 14px;
  font-weight: 550;
  line-height: 18px;
  height: 42px;
  padding: 12px 16px;
  border-radius: 64px;
  transition: all 0.2s linear 0s;
  ;
}

.footer__nav-link.active,
.footer__nav-link:hover {
  background: #000;
}

/* ----------------footer---------------- */

/* ----------------@media---------------- */

@media (max-width:1174px) {
  .proxy__items.residental-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:1113px) {
  .top-section__title {
    font-size: 65px;
  }
}

@media (max-width:1052px) {
  .packages__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:1024px) {
  .about__items {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .about-item-1 {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .about-item-4 {
    grid-column: 1 / 3;
  }

  .stages__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .stages__item:nth-child(3) {
    grid-column: 1 / 3;
  }
}

@media (max-width:997px) {
  .top-section__title {
    font-size: 50px;

  }

  .price-list__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .slash {
    display: none;
  }

  .proxy__items {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width:838px) {
  .advantages__item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width:768px) {
  .section {
    padding: 50px 0;
  }

  .top-section__inner {
    flex-direction: column;
    row-gap: 16px;
  }

  .top-section__images {
    max-height: 412px;
  }

  .top-section__image {
    width: 100%;
    max-height: 412px;
  }

  .top-section__title-block {
    width: 100%;
  }

  .services__items {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }

  .about__item-title span {
    font-size: 90px;
    line-height: 90px;
  }

  .about-item-3 .about__item-title span {
    padding-left: 49px;
  }

  .about-item-3 .about__item-title span::before {
    background-size: contain;
    width: 45px;
    top: 22%;
  }

  .contacts__item-text {
    font-size: 29px;
    line-height: 40px;
  }

  .information__inner {
    flex-direction: column-reverse;
    gap: 16px;
  }

  .information__info {
    max-width: 100%;
  }

  .information__image {
    height: 304px;
  }

  .footer {
    padding-bottom: 0;
  }
}

@media (max-width: 670px) {
  .stages__items {
    grid-template-columns: repeat(1, 1fr);
  }

  .stages__item:nth-child(3) {
    grid-column: auto;
  }

  .price-list__item {
    flex-direction: column;
    align-items: flex-start;
  }

  .proxy__items.residental-items {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 620px) {
  .footer__inner {
    flex-direction: column;
  }

  .footer__nav,
  .footer__overmine {
    width: 100%;
  }
}

@media (max-width: 598px) {
  .about__item-title span {
    font-size: 64px;
    line-height: 72px;
  }

  .about-item-3 .about__item-title span {
    padding-left: 31px;
  }

  .about-item-3 .about__item-title span::before {
    background-size: contain;
    width: 30px;
    top: 11%;
  }

  .packages__items {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 521px) {
  .about__items {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
  }

  .about-item-1,
  .about-item-4 {
    grid-column: auto;
    grid-row: auto;
  }

  .about__items .about-item-1 {
    border: none;
    background: transparent;
    padding-bottom: 0;
  }

  .contacts__item-text {
    font-size: 20px;
    line-height: 24px;
  }

  .contacts__item-info {
    gap: 10px;
  }
}

@media (max-width:430px) {
  .header {
    top: 16px;
  }

  .container {
    padding: 0;
  }

  .section.top-section {
    padding-top: 109px;
  }

  .section {
    padding: 40px 0;
  }

  .top-section__title {
    font-size: 40px;
  }

  .top-img-1 {
    display: none;
  }

  .top-img_wrapper {
    width: 100%;
    max-height: 440px;
  }

  .section-title {
    margin-left: 16px;
    font-size: 40px;
    line-height: 48px;
    padding-right: 16px;
  }

  .white-box,
  .transparent-box {
    padding: 16px;
  }

  .services__wrapp-icon {
    width: 80px;
    height: 80px;
  }

  .services__item-title {
    font-size: 32px;
    line-height: 40px;
  }

  .advantages__item-title {
    font-size: 32px;
    line-height: 40px;
  }

  .advantages__item-question {
    font-size: 24px;
    line-height: 32px;
  }

  .advantages__item-icon {
    width: 64px;
    height: 64px;
  }

  .stages__item-icon {
    width: 80px;
    height: 80px;
  }

  .stages__item-title {
    font-size: 32px;
    line-height: 40px;
  }

  .packages__item-icon {
    width: 80px;
    height: 80px;
  }

  .packages__item-title {
    font-size: 32px;
    line-height: 40px;
  }

  .information__info {
    padding: 16px;
    background: transparent;
    border: none;
  }

  .information__info h2.section-title {
    margin-left: 0;
  }

  .proxy__item-icon {
    width: 80px;
    height: 80px;
  }

  .proxy__item-title {
    font-size: 32px;
    line-height: 40px;
  }

  .footer__inner {
    padding: 16px;
  }
}

@media (max-width:362px) {
  .contacts__item-text {
    font-size: 16px;
  }
}

/* ----------------@media---------------- */