::-webkit-input-placeholder {
  color: #999;
}

::-moz-placeholder {
  color: #999;
}

:-ms-input-placeholder {
  color: #999;
}

::-ms-input-placeholder {
  color: #999;
}

::placeholder {
  color: #999;
}

::-moz-selection {
  background-color: #e32652;
  color: #fff;
}

::selection {
  background-color: #e32652;
  color: #fff;
}

input,
textarea {
  outline: none;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #121a24;
  font-family: Nunito Sans,sans-serif;
  font-size: 1.7rem;
  height: 100%;
  line-height: 1.5;
  min-width: 320px;
  overflow-x: hidden;
  position: relative;
}

body.lock {
  overflow: hidden;
}

:root {
  scroll-behavior: auto;
}

html {
  font-size: 10px;
  height: 100%;
  scroll-behavior: auto;
}

.wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

main {
  will-change: transform;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.h2-1 {
  font-family: Nunito Sans,sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.0666666667;
}

main {
  -webkit-transition: all .1s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .1s cubic-bezier(.39, .575, .565, 1);
  transition: all .1s cubic-bezier(.39, .575, .565, 1);
}

.select-box {
  display: block;
  font-size: 2.5rem;
  max-width: 48.2rem;
  position: relative;
  width: 100%;
}

.select-box__current {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  color: #6a6a6a;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  font-weight: 400;
  height: 4.4rem;
  outline: none;
  padding-bottom: 1.7rem;
  padding-left: 2.8rem;
  padding-right: 2.8rem;
  position: relative;
}

.select-box__current:focus+.select-box__list {
  -webkit-animation-name: none;
  animation-name: none;
  opacity: 1;
}

.select-box__current:focus+.select-box__list .select-box__option {
  cursor: pointer;
}

.select-box__current:focus .select-box__icon {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.select-box__icon {
  position: absolute;
  right: 2.4rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
  width: 1.8rem;
}

.select-box__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.select-box__value:first-of-type .select-box__input-text {
  color: #fff;
}

.select-box__input {
  display: none;
}

.select-box__input:checked+.select-box__input-text {
  display: block;
}

.select-box__input-text {
  background-color: transparent;
  display: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.select-box__list {
  -webkit-animation-delay: .1s;
  animation-delay: .1s;
  -webkit-animation-duration: .1s;
  animation-duration: .1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: HideList;
  animation-name: HideList;
  -webkit-animation-timing-function: step-start;
  animation-timing-function: step-start;
  background-color: #fff;
  border: none;
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, .1);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, .1);
  font-size: 2rem;
  list-style: none;
  margin-top: 3px;
  opacity: 0;
  padding: 1.5rem 0 1rem;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.select-box__option {
  background-color: #fff;
  color: #3b4c61;
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0;
  padding: .5rem 2.8rem;
}

.select-box__option.--bt {
  border-top: 1px solid #cacaca;
  margin-bottom: -.3rem;
  padding-top: 1.3rem;
  position: relative;
}

.select-box__option:focus,
.select-box__option:hover {
  background-color: #fbfbfb;
  color: #363636;
}

@-webkit-keyframes HideList {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 1;
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
}

@keyframes HideList {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 1;
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
}

input[type=search]::-ms-clear {
  display: none;
  height: 0;
  width: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  height: 0;
  width: 0;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.input,
.textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  font-size: 1.8rem;
  height: 4.4rem;
  padding-bottom: 1.7rem;
  padding-left: 2.8rem;
  padding-right: 2.8rem;
  width: 100%;
}

.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.input::-moz-placeholder,
.textarea::-moz-placeholder {
  -moz-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  -ms-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.input::-ms-input-placeholder,
.textarea::-ms-input-placeholder {
  -ms-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.input::placeholder,
.textarea::placeholder {
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.input:focus::-webkit-input-placeholder,
.textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}

.input:focus::-moz-placeholder,
.textarea:focus::-moz-placeholder {
  opacity: 0;
}

.input:focus:-ms-input-placeholder,
.textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

.input:focus::-ms-input-placeholder,
.textarea:focus::-ms-input-placeholder {
  opacity: 0;
}

.input:focus::placeholder,
.textarea:focus::placeholder {
  opacity: 0;
}

.textarea {
  padding: 1.6rem 2.8rem;
  resize: none;
}

.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  color: #fff;
}

.input::-moz-placeholder,
.textarea::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  color: #fff;
}

.input:-moz-placeholder,
.textarea:-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.link {
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.5rem;
  position: relative;
}

.link:hover {
  color: #e32652;
}

.link:after {
  background: #434343;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  width: 100%;
}

.link:hover:after {
  width: 0;
}

img {
  height: auto;
  max-width: 100%;
}

a {
  color: #121a24;
  text-decoration: none;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

a:hover {
  color: #121a24;
  text-decoration: none;
}

.container-1310 {
  margin: 0 auto;
  max-width: 1430px;
  padding-left: 60px;
  padding-right: 60px;
}

.container-1352 {
  margin: 0 auto;
  max-width: 1472px;
  padding-left: 60px;
  padding-right: 60px;
}

.container-1460 {
  margin: 0 auto;
  max-width: 1615px;
  padding-left: 60px;
  padding-right: 60px;
}

.container-1600 {
  margin: 0 auto;
  max-width: 1720px;
  padding-left: 60px;
  padding-right: 60px;
}

.container {
  margin: 0 auto;
  max-width: 1520px;
  padding-left: 60px;
  padding-right: 60px;
}

.btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  background-color: #d9d9d9;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  color: #252525;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Nunito Sans,sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  justify-content: center;
  letter-spacing: normal;
  line-height: normal;
  padding: 0 0 .2rem;
  position: relative;
  text-shadow: none;
  text-transform: none;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.btn:hover {
  background-color: #f3f3f3;
}

.btn.--with-arrow {
  background: url(../images/dist/arrow_btn.svg) 64% 50%/3.2rem 1.4rem no-repeat;
  background-color: #d9d9d9;
  padding-right: 6.3rem;
}

.btn.--with-arrow:hover {
  background-color: #fff;
  background-position: 68% 50%;
}

svg {
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.svg-hidden {
  display: none;
}

.screen {
  background-color: #1e2225;
  color: #fff;
  height: -webkit-fill-available;
  min-height: 100vh;
}

.hero {
  background: url(../images/dist/screen-presentation-bg.svg) 50%/cover no-repeat;
  background-color: #121a24;
}

.hero h1 {
  color: #fff;
  font-family: Nunito Sans,sans-serif;
  font-size: 6rem;
  font-weight: 300;
  line-height: .8333333333;
  margin-bottom: 0;
  max-width: 83rem;
  text-align: right;
  text-transform: none;
}

.hero h1 span {
  display: block;
  -webkit-transform: translateY(250px);
  -ms-transform: translateY(250px);
  transform: translateY(250px);
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.hero h1 span:first-of-type {
  font-size: 3rem;
}

.hero .container-1352 {
  height: 100vh;
}

.hero__wrap-h1 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 12rem;
  overflow: hidden;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.hero__logo {
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
  margin-left: -7.9rem;
  max-width: 13rem;
  -webkit-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
  -o-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
  transition-timing-function: cubic-bezier(.39, .575, .565, 1);
  width: 100%;
}

.hero__logo a,
.hero__logo img {
  display: block;
  width: 100%;
}

.hero__logo img {
  opacity: 0;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.hero__wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  justify-content: space-between;
  padding-bottom: 13.2rem;
  padding-right: 5.7rem;
  padding-top: 11.9rem;
}

.proposal {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: url(../images/dist/proposal_bg.jpg) 50%/cover no-repeat;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  padding-top: .5rem;
}

.proposal__wrap {
  font-size: 1.6rem;
  padding-left: 15.1rem;
  padding-right: 24.5rem;
  width: 100%;
}

.proposal__wrap .h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.proposal__h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 4rem;
  max-width: 102.5rem;
}

.proposal__task {
  margin-bottom: 2.5rem;
  max-width: 80rem;
}

.proposal__task p {
  font-weight: 300;
}

.proposal__task p b {
  font-weight: 700;
}

.proposal__what {
  counter-reset: list 0;
  margin-bottom: 2.5rem;
}

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

.proposal__what ul li {
  counter-increment: list 1;
  font-weight: 300;
  margin-bottom: 1.3rem;
  padding-left: 5.8rem;
  position: relative;
}

.proposal__what ul li:before {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  background: #121a24;
  color: #fff;
  content: counter(list) ". ";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  font-weight: 800;
  height: 2.5rem;
  justify-content: center;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 4rem;
}

.proposal__what ul li a {
  color: #0065ff;
  text-decoration: underline;
}

.proposal__what-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}

.proposal__what-flex-left {
  max-width: 59rem;
  width: 100%;
}

.proposal__what-flex-right {
  max-width: 54rem;
  width: 100%;
}

.proposal__stages {
  margin-bottom: 4rem;
}

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

.proposal__stages ul li {
  font-weight: 300;
  margin-bottom: 1rem;
  padding-left: 3.6rem;
  position: relative;
}

.proposal__stages ul li:before {
  background: url(../images/dist/list_arrow.svg) 50%/contain no-repeat;
  content: "";
  height: 2.2rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 2.2rem;
}

.proposal__stages-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}

.proposal__stages-left {
  max-width: 42rem;
  width: 100%;
}

.proposal__stages-right {
  max-width: 67.2rem;
  width: 100%;
}

.proposal__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.proposal__info-item {
  background: #6b1f39;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 300;
  padding: 0 1.3rem;
}

.proposal__info-item span {
  font-weight: 300;
}

.proposal__info-item span span {
  font-weight: 400;
}

.stages {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: url(../images/dist/stages-bg.jpg) 50%/cover no-repeat;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  padding-top: .5rem;
}

.stages__wrap {
  font-size: 1.6rem;
  font-weight: 300;
  padding-left: 16.3rem;
  padding-right: 8.4rem;
  width: 100%;
}

.stages__wrap .h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.stages__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.4rem;
}

.stages__h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3.3rem;
}

.stages__left {
  max-width: 50%;
  width: 100%;
}

.stages__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 2rem;
}

.stages__item:last-of-type {
  margin-bottom: 0;
}

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

.stages__item p {
  margin-bottom: 0;
}

.stages__item .h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: .7rem;
}

.stages__price {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.6rem;
  margin-top: .9rem;
}

.stages__price p {
  font-weight: 400;
  margin-bottom: 0;
}

.stages__price span {
  font-size: 1.8rem;
  font-weight: 800;
  padding-left: .2rem;
}

.stages__right {
  max-width: 50%;
  width: 100%;
}

.last-stage p {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0;
}

.last-stage .stages__price p {
  font-size: 1.6rem;
}

.site-effective {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: url(../images/dist/site_effective_bg.jpg) 50%/cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  padding-top: .5rem;
}

.site-effective .container-1600 {
  width: 100%;
}

.site-effective__wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding-left: 5.1rem;
  position: relative;
}

.site-effective__h2 {
  font-family: Nunito Sans,sans-serif;
  font-size: 7rem;
  font-weight: 300;
  line-height: 1.0714285714;
  margin-bottom: 7.3rem;
  max-width: 89.5rem;
  opacity: 0;
  text-transform: none;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.site-effective__h2 span {
  display: block;
}

.site-effective__h2 span,
.site-effective__p1 {
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.site-effective__p1 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 2.6rem;
  max-width: 68.4rem;
  opacity: 0;
}

.site-effective__items {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-top: 9rem;
  padding-left: 5.1rem;
  padding-right: 8.8rem;
}

.site-effective__item {
  opacity: 0;
  text-align: center;
  -webkit-transition: all .2s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .2s cubic-bezier(.39, .575, .565, 1);
  transition: all .2s cubic-bezier(.39, .575, .565, 1);
  width: 100%;
}

.site-effective__item:first-of-type {
  max-width: 22.2rem;
}

.site-effective__item:nth-of-type(2) {
  max-width: 17.6rem;
}

.site-effective__item:nth-of-type(3) {
  max-width: 22.4rem;
}

.site-effective__item:nth-of-type(4) {
  max-width: 19.7rem;
}

.site-effective__item:nth-of-type(5) {
  max-width: 13.5rem;
}

.site-effective__item-icon {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  min-height: 78px;
  opacity: 0;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all .2s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .2s cubic-bezier(.39, .575, .565, 1);
  transition: all .2s cubic-bezier(.39, .575, .565, 1);
}

.site-effective__item-title {
  color: #b8c7de;
  font-size: 1.6rem;
  font-weight: 350;
  line-height: 1.5;
  margin-top: 2.5rem;
  opacity: 0;
  text-align: center;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all .3s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .3s cubic-bezier(.39, .575, .565, 1);
  transition: all .3s cubic-bezier(.39, .575, .565, 1);
}

.site-effective__wrap-svgs {
  opacity: 0;
  position: absolute;
  right: .8rem;
  top: -4.3rem;
  -webkit-transition: all .3s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .3s cubic-bezier(.39, .575, .565, 1);
  transition: all .3s cubic-bezier(.39, .575, .565, 1);
}

.site-effective__wrap-svgs img {
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.high-conversion {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: url(../images/dist/high_conversion_bg.jpg) 50%/cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 1.5rem;
}

.high-conversion .container-1600 {
  width: 100%;
}

.high-conversion__header {
  margin: 0 auto;
  max-width: 88.3rem;
  width: 100%;
}

.high-conversion__header .h2-1 {
  color: #2b2d2f;
  margin-bottom: .3rem;
  opacity: 0;
  text-align: center;
  text-transform: none;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.high-conversion-p1 {
  color: #121a24;
  opacity: 0;
  text-align: center;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.high-conversion__items {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-top: 9.2rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.high-conversion__item-link:first-of-type {
  max-width: 37rem;
  width: 100%;
}

.high-conversion__item-link:first-of-type .high-conversion__item-icon {
  left: .3rem;
  top: 2rem;
}

.high-conversion__item-link:first-of-type .high-conversion__item-text {
  left: 9.4rem;
  max-width: 39.8rem;
  position: relative;
}

.high-conversion__item-link:nth-of-type(2) {
  max-width: 44.5rem;
  width: 100%;
}

.high-conversion__item-link:nth-of-type(2) .high-conversion__item-icon {
  left: 3.4rem;
  max-width: 40.2rem;
  top: 2.5rem;
  width: 100%;
}

.high-conversion__item-link:nth-of-type(2) .high-conversion__item-text {
  left: 4.9rem;
  max-width: 47rem;
  position: relative;
}

.high-conversion__item-link:nth-of-type(3) {
  max-width: 42.4rem;
  width: 100%;
}

.high-conversion__item-link:nth-of-type(3) .high-conversion__item-icon {
  left: -1rem;
  top: 5.3rem;
}

.high-conversion__item-link:nth-of-type(3) .high-conversion__item-text {
  left: 7.1rem;
  max-width: 34rem;
  position: relative;
}

.high-conversion__item:hover .high-conversion__item-text-price-arrow {
  -webkit-transform: translateX(.5rem);
  -ms-transform: translateX(.5rem);
  transform: translateX(.5rem);
}

.high-conversion__item:hover .high-conversion__item-text-price-arrow svg {
  fill: #121a24;
}

.high-conversion__item:hover .high-conversion__item-icon {
  opacity: .85;
}

.high-conversion__item.--1 {
  opacity: 0;
  -webkit-transform: translate(-50px);
  -ms-transform: translate(-50px);
  transform: translate(-50px);
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.high-conversion__item.--2 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.high-conversion__item.--3 {
  opacity: 0;
  -webkit-transform: translate(50px);
  -ms-transform: translate(50px);
  transform: translate(50px);
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.high-conversion__item-icon {
  margin-bottom: 8.5rem;
  min-height: 32rem;
  position: relative;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.high-conversion__item-text {
  position: relative;
}

.high-conversion__item-text-title {
  margin-bottom: 2.7rem;
}

.high-conversion__item-text-title h3 {
  color: #121a24;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2272727273;
  margin-bottom: 0;
}

.high-conversion__item-text-p {
  margin-bottom: 1rem;
}

.high-conversion__item-text-p p {
  color: #3b4c61;
  margin-bottom: 0;
}

.high-conversion__item-text-price {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.high-conversion__item-text-price-num {
  color: #3b4c61;
  font-weight: 400;
}

.high-conversion__item-text-price-num span {
  font-family: Nunito Sans,sans-serif;
}

.high-conversion__item-text-price-arrow {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1.4rem;
  margin-left: 2.5rem;
  position: relative;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  width: 2.3rem;
  z-index: 2;
}

.high-conversion__item-text-price-arrow svg {
  fill: #7489a3;
  height: 100%;
  position: relative;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  width: 100%;
  z-index: 2;
}

.modernization-support {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: url(../images/dist/modernization_support_bg.jpg) 50%/cover no-repeat;
  color: #121a24;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  padding-top: 4.2rem;
}

.modernization-support .container-1352 {
  width: 100%;
}

.modernization-support .h2-1 {
  color: #2b2d2f;
  margin-bottom: 6.5rem;
  opacity: 0;
  text-align: center;
  text-transform: none;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.modernization-support__wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding-left: .5rem;
  padding-right: 11rem;
}

.modernization-support__text {
  max-width: 44.6rem;
  width: 100%;
}

.modernization-support__text-item {
  margin-bottom: 8.3rem;
  opacity: 0;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.modernization-support__text-item:last-of-type {
  margin-bottom: 0;
}

.modernization-support__text-item h3 {
  color: #121a24;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3636363636;
  margin-bottom: 2.7rem;
}

.modernization-support__text-item p {
  color: #3b4c61;
}

.modernization-support__photo {
  padding-top: 5.1rem;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.modernization-support__photo img {
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.epic-stages {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: url(../images/dist/epic_stages_bg.jpg) 50%/cover no-repeat;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  padding-top: 2.8rem;
}

.epic-stages .container-1352 {
  width: 100%;
}

.epic-stages .h2-1 {
  color: #fff;
  opacity: 0;
  text-align: center;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.epic-stages__wrap {
  -ms-grid-columns: 1fr 7.5rem 1fr 7.5rem 1fr;
  -ms-grid-rows: auto;
  display: -ms-grid;
  display: grid;
  gap: 1.5rem 7.5rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  margin-top: 6rem;
}

.epic-stages__wrap>:first-child {
  -ms-grid-column: 1;
  -ms-grid-row: 1;
}

.epic-stages__wrap>:nth-child(2) {
  -ms-grid-column: 3;
  -ms-grid-row: 1;
}

.epic-stages__wrap>:nth-child(3) {
  -ms-grid-column: 5;
  -ms-grid-row: 1;
}

.epic-stages__item {
  opacity: 0;
  position: relative;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.epic-stages__item-num {
  color: #fff;
  font-size: 20rem;
  font-weight: 700;
  line-height: 1.475;
  opacity: .08;
  position: absolute;
  text-transform: uppercase;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.epic-stages__item-num.--num-top {
  left: -5.5rem;
  top: -6.1rem;
}

.epic-stages__item-num.--num-bottom {
  bottom: -6.6rem;
  left: -5.8rem;
}

.epic-stages__item-icon {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3rem;
  min-height: 14.3rem;
  position: relative;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  z-index: 2;
}

.epic-stages__item-title {
  margin-bottom: 1.5rem;
}

.epic-stages__item-title h3 {
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.6363636364;
  text-transform: uppercase;
}

.epic-stages__item-text p {
  font-family: Nunito Sans,sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
}

.portfolio {
  background: url(../images/dist/portfolio_bg.jpg) 50%/cover no-repeat;
  padding-bottom: 10vh;
  padding-top: 10vh;
}

.portfolio .h2-1 {
  color: #fff;
  margin-bottom: 5vh;
  opacity: 0;
  text-align: center;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.portfolio__slider .swiper-wrapper {
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1) !important;
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1) !important;
  transition: all .45s cubic-bezier(.39, .575, .565, 1) !important;
}

.portfolio__slider a {
  cursor: crosshair;
  display: block;
  opacity: 0;
  position: relative;
  text-align: center;
  -webkit-transform: translate(100px, 100px);
  -ms-transform: translate(100px, 100px);
  transform: translate(100px, 100px);
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.portfolio__slider a:hover {
  opacity: .7;
}

.portfolio__slider a:hover .portfolio__slide-hover {
  width: 0;
}

.portfolio__slider a img {
  -o-object-fit: contain;
  object-fit: contain;
}

.portfolio__slider .portfolio__slide-hover {
  background: #212b37;
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: .6;
  position: absolute;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  width: 100%;
}

.portfolio__slider .swiper-pagination-bullet {
  background: #d9d9d9;
  height: 1.3rem;
  opacity: .4;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  width: 1.3rem;
}

.portfolio__slider .swiper-pagination-bullet-active {
  background: #d9d9d9;
  opacity: .6;
}

.swiper-container-horizontal.portfolio__slider>.swiper-pagination-bullets {
  bottom: -6rem;
}

.swiper-container-horizontal.portfolio__slider>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 .7rem;
}

.swiper-container-horizontal.portfolio__slider>.swiper-pagination-progressbar {
  bottom: -5rem;
  opacity: .7;
  top: auto;
}

.swiper-container.portfolio__slider {
  overflow: visible;
}

.portfolio-fancy .fancybox-button {
  background: #f6344b;
  color: #fff;
  height: 5.6rem;
  width: 5.6rem;
}

.portfolio-fancy .fancybox-navigation .fancybox-button--arrow_left,
.portfolio-fancy .fancybox-navigation .fancybox-button--arrow_right {
  background: #f6344b;
  color: #fff;
  height: 5.6rem;
  padding: .5rem;
  width: 5.6rem;
}

.portfolio-fancy.fancybox-is-open .fancybox-bg {
  background: #212b37;
  opacity: .98;
}

.footer-form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: url(../images/dist/footer_form_bg.jpg) 50%/cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 6rem;
}

.footer-form .container-1352 {
  width: 100%;
}

.footer-form .h2-1 {
  color: #fff;
  margin-bottom: 1.2rem;
  opacity: 0;
  text-align: center;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.footer-form__header {
  margin-bottom: 13.7rem;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.footer-form__header p {
  color: #c2c2c2;
  opacity: 0;
  text-align: center;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.footer-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-form__row.--row-1 {
  gap: 5rem;
  margin-bottom: 6.8rem;
}

.footer-form__row.--row-2 {
  gap: 5rem;
  margin-bottom: 11.7rem;
}

.footer-form__row.--row-3 {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5rem;
  justify-content: space-between;
  padding-left: 2.8rem;
}

.footer-form__row.--row-3 p {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.5;
}

.footer-form__row.--row-3 p .link {
  color: #ff63aa;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
}

.footer-form__row.--row-3 p .link:after {
  background: #ff63aa;
}

.footer-form__row.--row-3 .btn {
  height: 7.7rem;
  max-width: 48.2rem;
  width: 100%;
}

.footer {
  background: url(../images/dist/footer_bg.jpg) 50%/cover no-repeat;
  color: #000;
  position: relative;
}

.footer .container-1352 {
  width: 100%;
}

.footer .h2-1 {
  color: #fff;
  margin-bottom: 1.2rem;
  text-align: center;
}

.footer .h2-1,
.footer__wrap {
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.footer__wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  padding-bottom: 6.2rem;
}

.footer__wrap div {
  opacity: 0;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.footer__geo {
  color: #000;
  font-family: Nunito Sans,sans-serif;
  font-size: 3.3rem;
  font-weight: 400;
  line-height: 1.2121212121;
  margin-bottom: 4.1rem;
  opacity: 0;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.footer__phone {
  margin-bottom: .5rem;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.footer__phone a {
  color: #000;
  font-family: Nunito Sans,sans-serif;
  font-size: 3.3rem;
  font-weight: 300;
  line-height: 1.2121212121;
  position: relative;
}

.footer__phone a:hover {
  color: #e32652;
}

.footer__mail,
.footer__site {
  margin-bottom: .5rem;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.footer__mail a,
.footer__site a {
  color: #000;
  font-family: Nunito Sans,sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  position: relative;
}

.footer__mail a:hover,
.footer__site a:hover {
  color: #e32652;
}

.footer__logo {
  bottom: 3.1rem;
  position: absolute;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.footer__logo:hover {
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}

@media (max-width:1700px) {
  html {
    font-size: 9px;
  }

  .proposal .container-1600 {
    width: 100%;
  }
}

@media (max-width:1500px) {
  body {
    font-size: 1.7rem;
  }

  html {
    font-size: 8px;
  }

  .hero__logo {
    margin-left: 0;
  }

  .hero__wrap {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .proposal__wrap {
    font-size: 1.8rem;
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .stages__wrap {
    font-size: 1.7rem;
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .last-stage p {
    font-size: 1.5rem;
  }

  .last-stage .stages__price p {
    font-size: 1.7rem;
  }

  .site-effective__wrap {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .site-effective__wrap-svgs {
    right: -15rem;
    top: -3.3rem;
  }

  .site-effective__wrap-svgs img {
    max-width: 85%;
  }

  .high-conversion__wrap {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .high-conversion__items {
    padding-left: 0;
    padding-right: 0;
  }

  .high-conversion__item-link:first-of-type .high-conversion__item-icon {
    left: 0;
  }

  .high-conversion__item-link:first-of-type .high-conversion__item-text {
    left: 0;
  }

  .high-conversion__item-link:nth-of-type(2) .high-conversion__item-icon {
    left: 0;
  }

  .high-conversion__item-link:nth-of-type(2) .high-conversion__item-text {
    left: 0;
  }

  .high-conversion__item-link:nth-of-type(3) .high-conversion__item-icon {
    left: 0;
  }

  .high-conversion__item-link:nth-of-type(3) .high-conversion__item-text {
    left: 0;
  }

  .modernization-support__wrap {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .modernization-support__photo img {
    max-width: 85%;
  }

  .epic-stages__wrap {
    gap: 3rem 7.5rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .epic-stages__item-icon img {
    max-height: 12rem;
    max-width: 12rem;
  }

  .epic-stages__item-text p br {
    display: none;
  }

  .portfolio {
    padding-bottom: 14vh;
    padding-top: 14vh;
  }

  .swiper-container-horizontal.portfolio__slider>.swiper-pagination-bullets {
    bottom: -6rem;
  }

  .footer-form__header {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .footer-form__wrap {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .footer__wrap {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

@media (max-width:1400px) {
  html {
    font-size: 7.5px;
  }

  .container-1310 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .container-1352 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .container-1460 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .container-1600 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .stages__h2 {
    margin-bottom: 2.3rem;
  }

  .stages__item {
    margin-bottom: 1rem;
  }

  .site-effective__wrap-svgs {
    right: -23rem;
    top: 2rem;
  }

  .site-effective__wrap-svgs img {
    max-width: 75%;
  }

  .modernization-support__photo img {
    max-width: 75%;
  }

  .epic-stages__wrap {
    margin-top: 5rem;
  }
}

@media (max-width:1200px) {
  .wrapper {
    opacity: 1;
  }

  .proposal__wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .proposal__info-item {
    line-height: 1.1;
    padding: 1rem 1.3rem;
    text-align: center;
  }

  .proposal__info-item:first-of-type {
    max-width: 38rem;
  }

  .stages__wrap {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width:1110px) {
  .footer-form__row.--row-1 {
    gap: 3rem;
    margin-bottom: 4rem;
  }

  .footer-form__row.--row-2 {
    gap: 3rem;
    margin-bottom: 7rem;
  }
}

@media (max-width:1100px) {
  .wrapper {
    overflow-x: hidden;
  }

  .select-box {
    max-width: 32rem;
  }

  .screen {
    height: auto;
    min-height: auto;
  }

  .hero h1 span {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }

  .hero .container-1352 {
    height: -webkit-fill-available;
    min-height: 100vh;
    -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
    -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
    transition: all .45s cubic-bezier(.39, .575, .565, 1);
  }

  .hero__logo img {
    opacity: 1;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }

  .proposal {
    padding-bottom: 7rem;
    padding-top: 7rem;
  }

  .stages {
    padding-bottom: 7rem;
    padding-top: 7rem;
  }

  .site-effective {
    padding-bottom: 7rem;
    padding-top: 7rem;
  }

  .site-effective__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .site-effective__h2 {
    font-size: 6rem;
    margin-bottom: 4rem;
    max-width: 100%;
    opacity: 1;
  }

  .site-effective__p1 {
    max-width: 100%;
    opacity: 1;
  }

  .site-effective__items {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem .2rem;
    justify-content: center;
    margin-top: 5rem;
    padding-left: 0;
    padding-right: 0;
  }

  .site-effective__item {
    opacity: 1;
  }

  .site-effective__item:first-of-type {
    max-width: 33%;
  }

  .site-effective__item:nth-of-type(2) {
    max-width: 33%;
  }

  .site-effective__item:nth-of-type(3) {
    max-width: 33%;
  }

  .site-effective__item:nth-of-type(4) {
    max-width: 33%;
  }

  .site-effective__item:nth-of-type(5) {
    max-width: 33%;
  }

  .site-effective__item-icon {
    opacity: 1;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }

  .site-effective__item-title {
    opacity: 1;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }

  .site-effective__wrap-svgs {
    display: none;
    margin: 2rem 0;
    opacity: 1;
    position: relative;
    right: 0;
    top: 0;
  }

  .high-conversion {
    padding-bottom: 7rem;
    padding-top: 7rem;
  }

  .high-conversion__header .h2-1 {
    max-width: 100%;
    opacity: 1;
  }

  .high-conversion-p1 {
    max-width: 100%;
    opacity: 1;
  }

  .high-conversion__items {
    gap: 3rem;
  }

  .high-conversion__item.--1 {
    opacity: 1;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }

  .high-conversion__item.--2 {
    opacity: 1;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }

  .high-conversion__item.--3 {
    opacity: 1;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }

  .high-conversion__item-icon {
    min-height: 20rem;
  }

  .modernization-support {
    padding-bottom: 7rem;
    padding-top: 7rem;
  }

  .modernization-support .h2-1 {
    opacity: 1;
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .modernization-support__wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
  }

  .modernization-support__text-item {
    opacity: 1;
  }

  .modernization-support__photo img {
    max-width: 100%;
  }

  .epic-stages {
    padding-bottom: 7rem;
    padding-top: 7rem;
  }

  .epic-stages .h2-1 {
    margin-bottom: 20px;
    opacity: 1;
  }

  .epic-stages__wrap {
    -ms-grid-columns: (1fr)[2];
    -ms-grid-rows: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .epic-stages__wrap>:first-child {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
  }

  .epic-stages__wrap>:nth-child(2) {
    -ms-grid-column: 2;
    -ms-grid-row: 1;
  }

  .epic-stages__item {
    opacity: 1;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }

  .portfolio {
    padding-bottom: 14vh;
    padding-top: 10vh;
  }

  .portfolio .h2-1 {
    margin: 0 auto 1.2rem;
    max-width: 85%;
    opacity: 1;
  }

  .portfolio__slider a {
    opacity: 1;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }

  .portfolio__slider a img {
    height: auto;
  }

  .swiper-container-horizontal.portfolio__slider>.swiper-pagination-bullets {
    bottom: -5rem;
  }

  .footer-form {
    padding-bottom: 7rem;
    padding-top: 7rem;
  }

  .footer-form .h2-1 {
    margin: 0 auto 1.2rem;
    max-width: 85%;
    opacity: 1;
  }

  .footer-form__header {
    margin-bottom: 5rem;
  }

  .footer-form__header p {
    opacity: 1;
  }

  .footer-form__row.--row-3 {
    padding-left: 0;
  }

  .footer-form__row.--row-3 .btn {
    max-width: 32rem;
  }

  .footer__wrap {
    height: -webkit-fill-available;
    min-height: 100vh;
    padding-left: 0;
    padding-right: 0;
    -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
    -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
    transition: all .45s cubic-bezier(.39, .575, .565, 1);
  }

  .footer__wrap div {
    opacity: 1;
  }

  .footer__geo {
    opacity: 1;
  }
}

@media (max-width:960px) {
  .portfolio .h2-1 {
    margin-bottom: 5rem;
  }
}

@media (max-width:767px) {
  body {
    font-size: 15px;
  }

  body.lock {
    padding-right: 0;
  }

  html {
    font-size: 10px;
  }

  .select-box {
    font-size: 15px;
    max-width: 100%;
    width: 100%;
  }

  .select-box__current {
    font-size: 15px;
    height: 44px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .select-box__icon {
    right: 15px;
    width: 14px;
  }

  .select-box__list {
    font-size: 13px;
  }

  .select-box__option {
    font-size: 15px;
    padding: 5px 15px;
  }

  .select-box__option.--bt {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 8px;
  }

  .input,
  .textarea {
    font-size: 15px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .h2-1 {
    font-size: 23px;
    line-height: 1.3;
  }

  .container-1310 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container-1352 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container-1460 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container-1600 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .btn {
    font-size: 16px;
    height: 44px;
    line-height: 1;
    padding: 0;
  }

  .btn.--with-arrow {
    background: url(../images/dist/arrow_btn.svg) 64% 50%/2.2rem 1rem no-repeat;
    background-color: #d9d9d9;
    padding-left: 3rem;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero h1 span:first-of-type {
    font-size: 23px;
    padding-bottom: 5px;
  }

  .hero__logo {
    max-width: 37%;
  }

  .hero__wrap {
    padding: 80px 10px;
  }

  .proposal {
    -webkit-box-shadow: inset 0 0 0 2100px hsla(0, 0%, 100%, .5);
    box-shadow: inset 0 0 0 2100px hsla(0, 0%, 100%, .5);
    padding: 40px 0;
  }

  .proposal__wrap {
    font-size: 15px;
  }

  .proposal__wrap .h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .proposal__h2 {
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .proposal__task {
    margin-bottom: 10px;
  }

  .proposal__task p b {
    font-size: 16px;
  }

  .proposal__what {
    margin-bottom: 10px;
  }

  .proposal__what ul li {
    margin-bottom: 10px;
    padding-left: 50px;
  }

  .proposal__what ul li br {
    display: none;
  }

  .proposal__what ul li:before {
    font-size: 14px;
    height: 25px;
    width: 36px;
  }

  .proposal__what-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .proposal__stages {
    margin-bottom: 15px;
  }

  .proposal__stages ul li {
    padding-left: 50px;
  }

  .proposal__stages ul li:before {
    width: 36px;
  }

  .proposal__stages-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .proposal__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .proposal__info-item {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 8px 10px;
    text-align: left;
  }

  .proposal__info-item:last-of-type {
    margin-bottom: 0;
  }

  .stages {
    -webkit-box-shadow: inset 0 0 0 2100px hsla(0, 0%, 100%, .5);
    box-shadow: inset 0 0 0 2100px hsla(0, 0%, 100%, .5);
    padding: 40px 0 25px;
  }

  .stages__wrap {
    font-size: 15px;
  }

  .stages__wrap .h3 {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .stages__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .stages__h2 {
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .stages__left {
    max-width: 100%;
  }

  .stages__item {
    margin-bottom: 15px;
  }

  .stages__item:last-of-type {
    margin-bottom: 15px;
  }

  .stages__item ul {
    margin-bottom: 5px;
  }

  .stages__item p {
    margin-bottom: 5px;
  }

  .stages__price {
    gap: 20px;
  }

  .stages__price span {
    font-size: 16px;
  }

  .stages__right {
    max-width: 100%;
  }

  .last-stage p {
    font-size: 14px;
  }

  .last-stage .stages__price p {
    font-size: 16px;
  }

  .site-effective {
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .site-effective__wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .site-effective__h2 {
    font-size: 27px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .site-effective__p1 {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .site-effective__items {
    -ms-grid-columns: 1fr 20px 1fr;
    -ms-grid-rows: auto;
    display: -ms-grid;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    margin-top: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .site-effective__items>:first-child {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
  }

  .site-effective__items>:nth-child(2) {
    -ms-grid-column: 3;
    -ms-grid-row: 1;
  }

  .site-effective__item:first-of-type {
    max-width: 100%;
  }

  .site-effective__item:nth-of-type(2) {
    max-width: 100%;
  }

  .site-effective__item:nth-of-type(3) {
    max-width: 100%;
  }

  .site-effective__item:nth-of-type(4) {
    max-width: 100%;
  }

  .site-effective__item:nth-of-type(5) {
    max-width: 100%;
  }

  .site-effective__item-icon {
    margin: 0 auto;
    max-height: 50px;
    max-width: 50px;
    min-height: auto;
  }

  .site-effective__item-title {
    font-size: 13px;
    line-height: 16px;
  }

  .high-conversion {
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .high-conversion__wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .high-conversion__header {
    margin-bottom: 25px;
  }

  .high-conversion__header .h2-1 {
    line-height: 1.1;
    margin-bottom: 10px;
    text-align: left;
  }

  .high-conversion-p1 {
    text-align: left;
  }

  .high-conversion__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
  }

  .high-conversion__item-link {
    margin-bottom: 30px;
  }

  .high-conversion__item-link:last-of-type {
    margin-bottom: 0;
  }

  .high-conversion__item-link img {
    display: block;
    margin: 0 auto;
    max-width: 70%;
  }

  .high-conversion__item-link:first-of-type {
    max-width: 100%;
  }

  .high-conversion__item-link:first-of-type .high-conversion__item-icon {
    left: 0;
    max-width: 100%;
    top: 0;
  }

  .high-conversion__item-link:first-of-type .high-conversion__item-text {
    left: 0;
    max-width: 100%;
    top: 0;
  }

  .high-conversion__item-link:nth-of-type(2) {
    max-width: 100%;
  }

  .high-conversion__item-link:nth-of-type(2) .high-conversion__item-icon {
    left: 0;
    max-width: 100%;
    top: 0;
  }

  .high-conversion__item-link:nth-of-type(2) .high-conversion__item-text {
    left: 0;
    max-width: 100%;
    top: 0;
  }

  .high-conversion__item-link:nth-of-type(3) {
    max-width: 100%;
  }

  .high-conversion__item-link:nth-of-type(3) .high-conversion__item-icon {
    left: 0;
    max-width: 100%;
    top: 0;
  }

  .high-conversion__item-link:nth-of-type(3) .high-conversion__item-text {
    left: 0;
    max-width: 100%;
    top: 0;
  }

  .high-conversion__item-icon {
    margin-bottom: 20px;
    min-height: auto;
  }

  .high-conversion__item-text-title {
    margin-bottom: 5px;
  }

  .high-conversion__item-text-title h3 {
    font-size: 17px;
    line-height: 20px;
  }

  .high-conversion__item-text-price-arrow {
    margin-left: 10px;
  }

  .modernization-support {
    padding-bottom: 10px;
    padding-top: 40px;
  }

  .modernization-support .h2-1 {
    line-height: 1.1;
    margin-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }

  .modernization-support__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .modernization-support__text-item {
    margin-bottom: 30px;
  }

  .modernization-support__text-item h3 {
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 5px;
  }

  .modernization-support__photo {
    padding-top: 20px;
  }

  .modernization-support__photo img {
    display: block;
    margin: 0 auto;
    max-width: 70%;
  }

  .epic-stages {
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .epic-stages .h2-1 {
    margin-bottom: 35px;
    text-align: left;
  }

  .epic-stages__wrap {
    -ms-grid-columns: 1fr;
    -ms-grid-rows: auto;
    gap: 0;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    margin-top: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .epic-stages__wrap>:first-child {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
  }

  .epic-stages__item {
    margin-bottom: 35px;
  }

  .epic-stages__item:last-of-type {
    margin-bottom: 0;
  }

  .epic-stages__item-num {
    font-size: 135px;
    line-height: 1;
    opacity: .05;
  }

  .epic-stages__item-num.--num-bottom {
    bottom: auto;
    display: none;
    left: 0;
    top: 80px;
  }

  .epic-stages__item-icon {
    min-height: auto;
  }

  .epic-stages__item-icon img {
    max-height: 80px;
    max-width: 80px;
  }

  .epic-stages__item-title {
    margin-bottom: 0;
  }

  .epic-stages__item-title h3 {
    font-size: 17px;
    line-height: 21px;
    margin-bottom: 5px;
    text-transform: none;
  }

  .epic-stages__item-text p {
    font-size: 15px;
  }

  .portfolio {
    padding-bottom: 70px;
    padding-top: 40px;
  }

  .portfolio .h2-1 {
    margin-bottom: 20px;
    max-width: 100%;
  }

  .portfolio__slider a:hover {
    opacity: .9;
  }

  .portfolio__slider .portfolio__slide-hover {
    display: none;
  }

  .portfolio__slider .swiper-pagination-bullet {
    height: 1rem;
    width: 1rem;
  }

  .swiper-container-horizontal.portfolio__slider>.swiper-pagination-bullets {
    bottom: -40px;
  }

  .swiper-container-horizontal.portfolio__slider>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }

  .portfolio-fancy .fancybox-button {
    height: 4rem;
    width: 4rem;
  }

  .portfolio-fancy .fancybox-navigation .fancybox-button {
    top: calc(50% - 20px);
  }

  .portfolio-fancy .fancybox-navigation .fancybox-button--arrow_left,
  .portfolio-fancy .fancybox-navigation .fancybox-button--arrow_right {
    height: 4rem;
    width: 4rem;
  }

  .footer-form {
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .footer-form .h2-1 {
    margin-bottom: 5px;
    max-width: 100%;
  }

  .footer-form__header {
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-form__wrap {
    margin-top: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-form__row.--row-1 {
    gap: 15px;
    margin-bottom: 15px;
  }

  .footer-form__row.--row-2 {
    gap: 15px;
    margin-bottom: 15px;
  }

  .footer-form__row.--row-3 {
    gap: 15px;
  }

  .footer-form__row.--row-3 p {
    font-size: 14px;
  }

  .footer-form__row.--row-3 p .link {
    font-size: 14px;
  }

  .footer-form__row.--row-3 .btn {
    height: 5rem;
    max-width: 100%;
  }

  .footer__geo {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
  }

  .footer__phone a {
    font-size: 20px;
  }

  .footer__mail a,
  .footer__site a {
    font-size: 20px;
  }

  .footer__logo {
    max-width: 40px;
  }
}

@media (max-width:320px) {
  body {
    font-size: 14px;
  }

  .select-box__current {
    font-size: 14px;
  }

  .input,
  .textarea {
    font-size: 14px;
  }

  .h2-1 {
    font-size: 21px;
  }

  .hero h1 {
    font-size: 33px;
  }

  .hero h1 span:first-of-type {
    font-size: 21px;
  }

  .hero__wrap {
    padding: 50px 10px;
  }

  .proposal__h2 {
    font-size: 18px;
  }

  .site-effective__h2 {
    font-size: 23px;
  }

  .site-effective__p1 {
    font-size: 14px;
  }

  .site-effective__item-title {
    font-size: 12px;
    line-height: 14px;
  }

  .high-conversion__item-text-title h3 {
    font-size: 16px;
  }

  .modernization-support__text-item h3 {
    font-size: 16px;
  }

  .epic-stages__item-title h3 {
    font-size: 16px;
  }

  .epic-stages__item-text p {
    font-size: 14px;
  }

  .footer-form__row.--row-3 p {
    font-size: 14px;
    line-height: 1.2;
  }

  .footer-form__row.--row-3 p .link {
    font-size: 14px;
    line-height: 1.2;
  }

  .footer__geo {
    font-size: 20px;
  }

  .footer__phone a {
    font-size: 18px;
  }

  .footer__mail a,
  .footer__site a {
    font-size: 18px;
  }
}

@media (min-height:1100px) {
  html {
    font-size: 10.5px;
  }

  .portfolio {
    padding-bottom: 10vh;
    padding-top: 10vh;
  }

  .portfolio .h2-1 {
    margin-bottom: 5vh;
  }
}

@media (prefers-reduced-motion:no-preference) {
  :root {
    scroll-behavior: auto;
  }
}