@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope/Manrope-SemiBold.woff2"), url("fonts/Manrope/Manrope-SemiBold.woff");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato/Lato-Regular.woff2"), url("fonts/Lato/Lato-Regular.woff");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato/Lato-SemiBold.woff2"), url("fonts/Lato/Lato-SemiBold.woff");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato/Lato-Black.woff2"), url("fonts/Lato/Lato-Black.woff");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

:root {
  --indent: 100px;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 150%;
  color: #333;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  width: -moz-max-content;
  width: max-content;
  color: #333;
  text-decoration: none;
  display: block;
}
a:hover {
  color: #E83832;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

button {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  background: unset;
  border: none;
  display: block;
}

input, textarea {
  width: 320px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 150%;
  color: #999;
  border: 0;
  padding: 16px 30px;
  margin: 0 0 10px;
  display: block;
}

textarea {
  min-width: 100%;
  max-width: 100%;
  min-height: 82px;
  max-height: 200px;
}

.btn {
  font-size: 16px;
  color: #FAFCFF;
  background: #E83832;
  padding: 16px 32px;
  transition: 0.3s;
  cursor: pointer;
}
.btn:hover {
  color: #FAFCFF;
  opacity: 0.7;
  transition: 0.3s;
}
.btn--border {
  color: #FAFCFF;
  background: unset;
  border: 1px solid;
  margin: 20px 0 0;
}
.btn--border:hover {
  color: #E83832;
  background: #FAFCFF;
  opacity: 1;
}
.btn--center {
  width: -moz-max-content;
  width: max-content;
  margin: 70px auto 0;
}
.btn--disable {
  background: #999;
  border: 0;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.btn--disable:hover {
  color: #FAFCFF;
  background: #999;
  opacity: 1;
  cursor: default;
}

h1, h2, h3, .h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  line-height: 130%;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
  padding: 100px 0 70px;
}
h2.white {
  color: #fff;
}
h2.not_p {
  padding: 0;
}
h2.center {
  text-align: center;
}

.title {
  padding: 100px 0 70px;
  margin: 150px 0 0;
}

h3, .h3 {
  font-size: 20px;
  line-height: 150%;
  margin: 30px 0 20px;
}

.wrapper {
  display: flex;
  align-items: center;
}
.wrapper.jc {
  justify-content: space-between;
}

@keyframes shows {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showLeft {
  0% {
    margin-left: -15px;
    opacity: 0;
  }
  100% {
    margin-left: 0;
    opacity: 1;
  }
}
@keyframes showRight {
  0% {
    margin-right: -15px;
    opacity: 0;
  }
  100% {
    margin-right: 0;
    opacity: 1;
  }
}
header {
  width: 100%;
  background: #F8F9FB;
  padding: 50px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
header.fixed {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  padding: 30px 0;
}
header_page {
  background: #F8F9FB;
}

.logo img {
  width: 100%;
}

nav {
  display: flex;
}
nav a {
  margin: 0 20px;
}

.burger_menu {
  display: none;
}

.main {
  background: #F8F9FB;
  padding: 180px 0 100px;
  position: relative;
}
.main .container {
  position: relative;
}

.offer {
  width: calc(100% - 620px);
  position: relative;
  animation: showLeft 1s forwards;
}
.offer * {
  position: relative;
  z-index: 1;
}
.offer::after {
  content: "";
  width: 260px;
  height: 300px;
  background: url(image/icons/bg_offer.svg) no-repeat;
  background-size: cover;
  position: absolute;
  top: -30px;
  right: 100px;
  z-index: 0;
  opacity: 0;
  animation: showLeft 1s 0.8s forwards;
}
.offer p {
  margin: 40px 0 60px;
}

.image__main {
  width: 570px;
  animation: showRight 1s forwards;
}

.webs {
  display: grid;
}
.webs_2 {
  display: none;
}
.webs img {
  width: 26px;
  height: 26px;
}
.webs--header {
  grid-template-columns: repeat(2, auto);
  gap: 20px;
}
.webs--header img {
  width: 36px;
  height: 36px;
}
.webs--footer {
  grid-template-columns: repeat(3, 48px);
  gap: 40px;
  position: unset;
  transform: unset;
}
.webs--footer a {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.webs--footer a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.webs--footer img {
  width: 21px;
  height: 21px;
}

.quote {
  margin-top: var(--indent);
}

.text__quote {
  width: 690px;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  padding: 0 20px;
  margin: 0 auto;
  display: block;
}

.services .btn--center {
  opacity: 0;
}
.services .btn--center.animate_page {
  animation: shows 1s forwards;
}

.wrapper__services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.box__services {
  background: #F8F9FB;
  display: flex;
  justify-content: space-between;
  position: relative;
  opacity: 0;
}
.box__services img {
  width: 230px;
  height: 230px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.box__services:nth-child(2n-1).animate_page {
  animation: showLeft 1s forwards;
}
.box__services:nth-child(2n).animate_page {
  animation: showRight 1s forwards;
}

.text__services {
  width: 340px;
  padding: 0 0 30px 30px;
  position: relative;
  z-index: 1;
}

.link_more {
  font-weight: 600;
  color: #E83832;
  margin: 30px 0 0;
  display: flex;
  align-items: center;
}
.link_more::after {
  content: "";
  width: 30px;
  height: 12px;
  background: url(image/icons/arrow.svg) no-repeat;
  background-size: cover;
  margin: 0 0 0 20px;
  display: block;
  transition: 0.3s;
}
.link_more:hover::after {
  margin: 0 0 0 25px;
  transition: 0.3s;
}

.wrapper__pluses {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  justify-content: space-between;
}

.box__pluses {
  opacity: 0;
}
.box__pluses.animate_page:nth-child(1) {
  animation: shows 1s forwards;
}
.box__pluses.animate_page:nth-child(2) {
  animation: shows 1s 0.2s forwards;
}
.box__pluses.animate_page:nth-child(3) {
  animation: shows 1s 0.4s forwards;
}

.map {
  width: 100%;
  height: 480px;
  background: #999;
  position: relative;
  opacity: 0;
}
.map.animate_page {
  animation: shows 1s forwards;
}
.map.full {
  height: 100vh;
}
.map iframe {
  width: 100%;
  height: 100%;
}

.btn--map {
  position: absolute;
  top: 0;
  left: 0;
}

.info_map {
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zones_map {
  margin: 0 30px 0 0;
  display: grid;
  gap: 15px;
}
.zones_map.animate_page {
  animation: showLeft 1s forwards;
}
.zones_map p {
  display: flex;
  align-items: center;
}
.zones_map p::before {
  content: "";
  width: 16px;
  height: 16px;
  background: #177bc9;
  margin: 0 10px 0 0;
  display: block;
}
.zones_map p:nth-child(2)::before {
  background: #1bad03;
}
.zones_map p:nth-child(3)::before {
  background: #ff931e;
}
.zones_map p:nth-child(4)::before {
  background: #ed4543;
}
.zones_map span {
  width: calc(100% - 26px);
}

.text__info_map {
  background: #F8F9FB;
  padding: 30px;
}
.text__info_map.animate_page {
  animation: showRight 1s forwards;
}
.text__info_map ul {
  list-style-type: disc;
  padding-left: 25px;
}

.cost__price {
  display: grid;
  grid-template-columns: 300px auto;
  gap: 30px;
  align-items: flex-start;
  opacity: 0;
}
.cost__price--single {
  grid-template-columns: 1fr;
}
.cost__price.animate_page {
  animation: shows 1s forwards;
}

.nav__price {
  background: #F8F9FB;
  padding: 0 0 0 20px;
  display: grid;
  grid-template-columns: 1fr;
}
.nav__price span {
  padding: 12px 20px;
  cursor: pointer;
}
.nav__price span:hover {
  color: #E83832;
}
.nav__price span.active {
  color: #FAFCFF;
  background: #E83832;
  position: relative;
}
.nav__price span.active::after {
  content: "";
  width: 20px;
  height: 100%;
  background: #E83832;
  position: absolute;
  top: 0;
  left: -20px;
}

.content__price {
  display: none;
}
.content__price.active {
  display: block;
}
.content__price img {
  width: 100%;
  cursor: pointer;
}
.content__price p {
  margin: 25px 0 0;
}
.content__price .btn {
  margin: 30px 0 0;
}

.stages {
  background: #F8F9FB;
  padding-bottom: var(--indent);
  margin-top: var(--indent);
}

.list__stages {
  width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 100px;
}

.item__stages {
  width: 600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.item__stages span {
  width: 160px;
  height: 160px;
  font-size: 96px;
  font-weight: 900;
  color: #E83832;
  line-height: 145px;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  background: #fff;
  border-radius: 50%;
  display: block;
  order: 1;
}
.item__stages h3 {
  margin-top: 0;
}
.item__stages:not(:last-child)::after {
  content: "";
  width: 120px;
  height: 135px;
  background: url(image/icons/curve.svg) no-repeat;
  background-size: cover;
  position: absolute;
  top: calc(100% - 18px);
  right: 130px;
  transform: scale(-1, 1);
}
.item__stages:nth-child(2n-1) {
  margin-left: auto;
}
.item__stages:nth-child(2n-1) span {
  order: 0;
}
.item__stages:nth-child(2n-1)::after {
  left: 130px;
  transform: scale(1);
}

.text__stages {
  width: calc(100% - 210px);
}

.list__why {
  width: 570px;
  margin: 0 0 0 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  opacity: 0;
}
.list__why.animate_page {
  animation: showLeft 1s forwards;
}
.list__why.animate_page::after {
  animation: shows 1s 1.4s forwards;
}
.list__why::after {
  content: "";
  width: 6px;
  height: calc(100% - 70px);
  background: #E83832;
  position: absolute;
  top: 0;
  left: -48px;
  z-index: -1;
  opacity: 0;
}

.item__why {
  position: relative;
  opacity: 0;
}
.item__why.animate_page {
  animation: showLeft 1s forwards;
  animation-delay: calc(var(--i) * 0.2s);
}
.item__why::after {
  content: "";
  width: 30px;
  height: 30px;
  background: radial-gradient(50% 50% at 50% 50%, #E83832 0%, #C82823 100%);
  box-shadow: -4px -4px 4px 0 rgba(0, 0, 0, 0.25) inset;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -60px;
}
.item__why h3 {
  margin-top: 0;
}

.image__why {
  width: 560px;
  margin-left: auto;
  opacity: 0;
}
.image__why.animate_page {
  animation: showRight 1s forwards;
}

.connect {
  background: url(image/bg_form.jpg) no-repeat center;
  background-size: cover;
  padding: 80px 0;
  margin-top: calc(var(--indent) + 115px);
  position: relative;
}
.connect::after {
  content: "";
  width: 347px;
  height: 254px;
  background: url(image/fly.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: -115px;
  left: 70px;
  opacity: 0;
}
.connect.animate_page::after {
  animation: showLeft 1s forwards;
}
.connect .wrapper {
  width: 80%;
  margin: 0 auto;
}

.text__connect {
  margin-left: 187px;
  position: relative;
  opacity: 0;
}
.text__connect.animate_page {
  animation: showLeft 1s 0.2s forwards;
}
.text__connect::after {
  content: "";
  width: 137px;
  height: 125px;
  background: url(image/icons/quotes.svg) no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: -187px;
}
.text__connect p {
  color: #fff;
  margin: 25px 0 0;
}

.form__connect {
  opacity: 0;
}
.form__connect.animate_page {
  animation: showRight 1s 0.2s forwards;
}

.down__connect {
  width: 320px;
  color: #FAFCFF;
}
.down__connect a {
  color: #FAFCFF;
}
.down__connect a:hover {
  color: #FAFCFF;
}

.portfolio .btn--center {
  opacity: 0;
}
.portfolio .btn--center.animate_page {
  animation: shows 1s forwards;
}

.wrapper__port {
  display: grid;
  grid-template: repeat(3, 220px)/repeat(9, 1fr);
  gap: 30px;
}

.box__port {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.box__port.animate_page {
  animation: shows 1.5s forwards;
  animation-delay: calc(var(--i) * 0.1s);
}
.box__port:nth-child(1), .box__port:nth-child(6), .box__port:nth-child(8) {
  grid-column: span 3;
}
.box__port:nth-child(3), .box__port:nth-child(4), .box__port:nth-child(9) {
  grid-column: span 2;
}
.box__port:nth-child(2), .box__port:nth-child(5), .box__port:nth-child(7) {
  grid-column: span 4;
}

footer {
  font-size: 14px;
  color: #999;
  background: #F8F9FB;
  padding: 40px 0;
  margin-top: var(--indent);
}

.up__footer,
.down__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.down__footer {
  margin: 40px 0 0;
}

.links__footer a {
  color: #999;
  margin-left: auto;
}
.links__footer a:hover {
  color: #E83832;
}

.box__modal {
  width: 500px;
  background: #fff;
  padding: 40px;
}

.caption__modal {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  line-height: 48px;
  text-align: center;
}

.form__modal:not(.form__connect) {
  width: 100%;
  margin: 30px 0 0;
}
.form__modal:not(.form__connect) input, .form__modal:not(.form__connect) textarea {
  width: 100%;
  color: #999;
  line-height: 24px;
  border: 1px solid #999;
  padding: 16px 32px;
  margin: 0 0 20px;
}
.form__modal:not(.form__connect) input.btn, .form__modal:not(.form__connect) textarea.btn {
  color: #fff;
  margin: 10px 0 0;
  border: 0;
}

.down__modal, .down__connect {
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  margin: 20px 0 0;
}
.down__modal a, .down__connect a {
  text-decoration: underline;
  display: inline;
}

.modal--image .box__modal {
  width: 90%;
  background: unset;
  padding: 0;
}
.modal--image .box__modal img {
  width: 100%;
}

.text__about {
  width: 740px;
}

.list__about {
  width: 100%;
  margin: 10px 0 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 60px;
}
.list__about h3 {
  color: #E83832;
}

.wrapper__ask {
  display: flex;
  justify-content: space-between;
}

.list__ask {
  width: 740px;
}

.item__ask {
  width: 100%;
  background: #fff;
  border: 1px solid #333;
}
.item__ask:not(:last-child) {
  margin: 0 0 20px;
}
.item__ask.active .caption__ask::after {
  transform: rotate(-180deg);
}
.item__ask p {
  padding: 0 32px 16px;
  display: none;
}

.caption__ask {
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.caption__ask::after {
  content: "";
  width: 12px;
  height: 31px;
  background: url(image/icons/chevron.svg) no-repeat;
  background-size: cover;
  display: block;
}
.caption__ask h3 {
  margin: 0;
}
.caption__ask span {
  width: calc(100% - 33px);
  margin: 0 10px 0 0;
  display: block;
}

.form__ask h3 {
  margin-top: 0;
}
.form__ask .btn {
  margin: 40px 0 0;
}

.list__contacts {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 60px;
}
.list__contacts a {
  display: flex;
  align-items: center;
}
.list__contacts a:hover {
  opacity: 0.7;
}
.list__contacts a img {
  width: 21px;
  height: 21px;
}
.list__contacts span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.list__contacts h3 {
  color: #E83832;
  margin: 0 0 0 20px;
}

.content_404 {
  margin: 200px 0 0;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
.content_404 img {
  width: 100%;
}
.content_404 h2 {
  padding: 0 0 40px;
}

@media (max-width: 1199.98px) {
  a:hover {
    color: #333;
  }
  .btn:hover {
    opacity: 1;
  }
  .btn--border:hover {
    color: #FAFCFF;
    background: unset;
  }
  nav a {
    margin: 0 10px;
  }
  .offer {
    width: calc(100% - 370px);
  }
  .image__main {
    width: 320px;
  }
  .webs a:hover {
    opacity: 1;
  }
  .box__services img {
    width: 130px;
    height: 130px;
  }
  .connect .wrapper {
    width: 100%;
  }
  .links__footer a:hover {
    color: #999;
  }
  .caption__modal {
    font-size: 26px;
    line-height: 39px;
  }
  .form__modal:not(.form__connect) input, .form__modal:not(.form__connect) textarea {
    font-size: 16px;
    padding: 16px 32px;
  }
  .modal--image .box__modal {
    width: 80%;
  }
  .wrapper__ask {
    display: block;
  }
  .form__ask {
    margin: 40px 0 0;
  }
  .list__contacts a:hover {
    opacity: 1;
  }
}
@media (max-width: 991.98px) {
  :root {
    --indent: 80px;
  }
  h1 {
    font-size: 40px;
  }
  .title {
    padding: 80px 0 50px;
    margin: 110px 0 0;
  }
  h2 {
    font-size: 28px;
    padding: 80px 0 50px;
  }
  .btn--center {
    margin: 50px auto 0;
  }
  header {
    padding: 30px 0;
  }
  nav {
    background: #F8F9FB;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
    padding: 20px 40px 20px 20px;
    display: none;
    position: absolute;
    top: calc(100% + 40px);
    right: 0;
  }
  nav a {
    margin: 5px 0;
  }
  .burger_menu {
    display: block;
  }
  .main {
    padding: 160px 0 80px;
  }
  .offer p {
    margin: 30px 0 40px;
  }
  .webs--header img {
    width: 26px;
    height: 26px;
  }
  .webs_1 {
    display: none;
  }
  .webs_2 {
    display: grid;
  }
  .text__quote {
    font-size: 20px;
  }
  .wrapper__services {
    gap: 20px;
  }
  .wrapper__pluses {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .info_map {
    display: block;
  }
  .zones_map {
    margin: 0 0 30px;
  }
  .cost__price {
    grid-template-columns: 1fr;
  }
  .nav__price {
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .nav__price span.active::after {
    display: none;
  }
  .list__stages {
    width: 100%;
    gap: 30px;
  }
  .item__stages span {
    width: 120px;
    height: 120px;
    font-size: 72px;
    line-height: 115px;
    order: 0;
  }
  .item__stages:nth-child(2n-1) {
    margin-left: 0;
  }
  .item__stages:not(:last-child)::after {
    display: none;
  }
  .text__stages {
    width: calc(100% - 150px);
  }
  .image__why {
    display: none;
  }
  .connect {
    margin-top: calc(var(--indent) + 65px);
  }
  .connect .wrapper {
    flex-direction: column;
  }
  .form__connect {
    margin: 40px 0 0;
  }
  .wrapper__port {
    grid-template: repeat(3, 130px)/repeat(9, 1fr);
    gap: 20px;
  }
  footer {
    padding: 30px 0;
  }
  .down__footer {
    margin: 30px 0 0;
  }
  .content_404 {
    margin: 160px 0 0;
  }
}
@media (max-width: 767.98px) {
  .main .wrapper {
    flex-direction: column;
  }
  .offer {
    width: 100%;
    order: 1;
    margin: 30px 0 0;
  }
  .offer::after {
    display: none;
  }
  .image__main {
    width: 100%;
  }
  .text__quote {
    width: 100%;
  }
  .wrapper__services {
    grid-template-columns: 1fr;
  }
  .wrapper__pluses {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .item__stages {
    width: 100%;
  }
  .modal--image .box__modal {
    width: 90%;
  }
  .close__modal {
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
  }
  .text__about {
    width: 100%;
  }
  .list__about {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .list__ask {
    width: 100%;
  }
  .list__contacts {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 575.98px) {
  :root {
    --indent: 60px;
  }
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 30px;
  }
  .title {
    padding: 60px 0 40px;
  }
  h2 {
    font-size: 24px;
    padding: 60px 0 40px;
  }
  h3, .h3 {
    font-size: 18px;
    margin: 20px 0 10px;
  }
  .btn {
    font-size: 14px;
    padding: 14px 28px;
  }
  .btn--center {
    margin: 30px auto 0;
  }
  .main {
    padding: 140px 0 60px;
  }
  .offer p {
    margin: 25px 0 30px;
  }
  .text__quote {
    font-size: 18px;
  }
  .text__services {
    padding-bottom: 20px;
  }
  .link_more {
    margin: 15px 0 0;
  }
  .map {
    height: 360px;
  }
  .info_map {
    margin: 30px 0;
  }
  .text__info_map {
    padding: 20px;
  }
  .nav__price span {
    padding: 10px 15px;
  }
  .item__stages span {
    width: 60px;
    height: 60px;
    font-size: 30px;
    line-height: 56px;
  }
  .text__stages {
    width: calc(100% - 80px);
  }
  .list__why {
    gap: 30px;
  }
  .connect {
    padding: 60px 0;
    margin-top: calc(var(--indent) + 35px);
  }
  .connect::after {
    width: 200px;
    height: 140px;
    top: -65px;
    left: 50px;
  }
  .text__connect {
    margin-left: 0;
  }
  .text__connect::after {
    left: 0;
    opacity: 0.6;
  }
  .wrapper__port {
    grid-template: repeat(3, 130px)/repeat(2, 1fr);
  }
  .box__port:nth-child(-n+8) {
    grid-column: unset;
  }
  .box__port:nth-child(9) {
    display: none;
  }
  footer {
    font-size: 12px;
  }
  .box__modal {
    width: calc(100% - 30px);
    padding: 30px;
  }
  .caption__modal {
    font-size: 22px;
    line-height: 33px;
  }
  .form__modal:not(.form__connect) {
    margin: 20px 0 0;
  }
  .form__modal:not(.form__connect) input, .form__modal:not(.form__connect) textarea {
    font-size: 14px;
    line-height: 21px;
    padding: 14px 20px;
    margin: 0 0 15px;
  }
  .form__modal:not(.form__connect) input.btn, .form__modal:not(.form__connect) textarea.btn {
    margin: 5px 0 0;
  }
  .down__modal, .down__connect {
    font-size: 12px;
    line-height: 18px;
    margin: 15px 0 0;
  }
  .item__ask p {
    padding: 0 28px 14px;
  }
  .caption__ask {
    padding: 14px 28px;
  }
  .form__ask .btn {
    margin: 30px 0 0;
  }
  .content_404 {
    text-align: center;
    grid-template-columns: 1fr;
  }
  .content_404 img {
    width: 60%;
    margin: 0 auto;
  }
  .content_404 .btn {
    margin: 0 auto;
  }
}
@media (max-width: 480.98px) {
  input {
    width: 100%;
  }
  h1 {
    font-size: 26px;
  }
  .title {
    margin: 80px 0 0;
  }
  header {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }
  header.fixed {
    padding: 20px 0;
  }
  .logo {
    width: 140px;
  }
  nav {
    width: 100%;
    padding: 10px 40px 10px 15px;
    top: calc(100% + 20px);
    right: 0;
  }
  nav a {
    margin: 5px 0;
  }
  .main {
    padding: 120px 0 60px;
  }
  .text__services {
    width: calc(100% - 130px);
    padding: 0 20px 20px;
  }
  .text__services a {
    width: auto;
  }
  .box__pluses img {
    width: 50px;
    height: 50px;
  }
  .text__connect, .form__connect {
    width: 100%;
  }
  .up__footer, .down__footer {
    flex-direction: column;
  }
  .webs--footer {
    margin: 20px 0 0;
  }
  .down__footer {
    text-align: center;
    margin: 20px 0 0;
  }
  .links__footer a {
    margin: 0 auto;
  }
  .content_404 {
    margin: 120px 0 0;
  }
  .down__connect {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */