/* --------------------------------------------------------------
# Add Fonts
-------------------------------------------------------------- */

@font-face {
  font-family: 'MontR';
  src: url('../fonts/Mont/MontRegular.woff2') format('woff2'),
    url('../fonts/Mont/MontRegular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MontSB';
  src: url('../fonts/Mont/MontSemiBold.woff2') format('woff2'),
    url('../fonts/Mont/MontSemiBold.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'OswaldEL';
  src: url('../fonts/Oswald/OswaldExtraLight.woff2') format('woff2'),
    url('../fonts/Oswald/OswaldExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ManropeR';
  src: url('../fonts/Manrope/Manrope-Regular.woff2') format('woff2'),
    url('../fonts/Manrope/Manrope-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ManropeSB';
  src: url('../fonts/Manrope/Manrope-Semibold.woff2') format('woff2'),
    url('../fonts/Manrope/Manrope-Semibold.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* --------------------------------------------------------------
# Animation Styles
-------------------------------------------------------------- */

@-webkit-keyframes rotating

/* Safari and Chrome */
  {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*  ------ */

@keyframes myPulse {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }

  /*25% { transform: scale(0.88);opacity: 0.7;}*/
  50% {
    transform: scale(1);
    opacity: 0.8;
  }

  /*75% { transform: scale(0.96);opacity: 0.9;}*/
  100% {
    transform: scale(1.05);
    opacity: 0;
  }
}

/*  ------ */

@keyframes myH {
  0% {
    transform: scaleX(0);
    transform-origin: 100% 100%;
  }

  100% {
    transform: scaleX(1);
    transform-origin: 100% 100%;
  }
}


/* --------------------------------------------------------------
# Common Styles
-------------------------------------------------------------- */

::-webkit-input-placeholder {
  color: #1a1a1a;
}

:-moz-placeholder {
  color: #1a1a1a;
  opacity: 1;
}

::-moz-placeholder {
  color: #1a1a1a;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #1a1a1a;
}

::-ms-input-placeholder {
  color: #1a1a1a;
}

::placeholder {
  color: #1a1a1a;
}

body {
  background-color: #151515;
  font-family: 'ManropeR';
  font-size: 17px;
  color: #ffffff;
  line-height: 1.3;
}

body img {
  height: auto;
}

body a,
body a:active,
body a:focus,
body button,
body button:active,
body button:focus,
body input,
body input:active,
body input:focus {
  text-decoration: none;
  transition: color 300ms ease-in-out;
  outline: none;
}

.site-wrapper {
  overflow-x: hidden;
  position: relative;
}

.container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.container__row {
  padding: 0 15px;
  max-width: 1170px;
  width: 100%;
}

.is-open-menu {
  overflow: hidden;
}


/* Container width media

@media (max-width: 1200px) {
	.container__row {
	    width: 1000px;
	}
}

@media (max-width: 1030px) {
	.container__row {
		width: 100%;
	}
}
*/

/* --------------------------------------------------------------
# Header Styles
-------------------------------------------------------------- */

.header {
  background-color: #292929;
  display: flex;
  align-items: stretch;
  align-content: stretch;
  justify-content: space-between;
  border-bottom: 1px solid #484848;
  position: fixed;
  width: 100%;
  z-index: 101;
  transition: all .4s ease;
  top: 0;
  left: 0;
  right: 0;
}

.header__mobile {
  width: 100%;
  display: flex;
}

.header__mobile > button {
  display: none;
  margin: 30px 0 0 0;
}

.header__mobile.open > button {
  display: inline-block;
}

.header__left {
  padding-left: 35px;
  display: flex;
  align-items: center;
  width: 100%;
}

.header__left > a {
  display: flex;
}

.header__left > a img {
  max-height: 70px;
}

.header__left .header__hamburger {
  cursor: pointer;
  background-color: transparent;
  border: 0;
  outline: none;
  padding: 0;
  margin: 0 30px 0 0;
  display: none;
}

.header__hamburger img {
  width: 34px;
}

.header__left ul {
  list-style-type: none;
  padding: 0;
  margin: 0 30px 0 80px;
  display: flex;
  justify-content: space-between;
  width: 470px;
}

.header__left .header__mobile.open ul {
  width: auto;
  max-width: none;
  min-width: auto;
}

.header__hamburger_close {
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 24px;
}

.header__mobile.open {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #292929;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.header__left .header__mobile.open ul a {
  font-size: 20px;
}

.header__left .header__mobile.open .header__hamburger_close {
  display: flex;
}

.header__left .header__mobile.open ul {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.header__left .header__mobile.open ul li {
  margin: 7px 0;
}

.header__left ul a {
  font-size: 17px;
  color: #686868;
  padding: 4px;
  position: relative;
  line-height: 22px;
  display: inline-block;
  transition: color 300ms ease-in-out;
  font-weight: 600;
}

.header__left ul a.active,
.header__left ul a:hover {
  color: #ffffff;
}

.header__left ul a:after {
  content: '';
  width: 23px;
  height: 1px;
  bottom: -10px;
  left: 4px;
  background-color: #fff;
  position: absolute;
  opacity: 0;
  transition: all 300ms ease-in-out;
}

.header__left ul a.active:after,
.header__left ul a:hover:after {
  opacity: 1;
  bottom: 0;
}

.header__right {
  display: flex;
  align-items: stretch;
  width: 100%;
  justify-content: flex-end;
}

.header__messenger,
.header__right > a {
  display: flex;
  align-items: center;
  border-left: 1px solid #484848;
  padding: 35px 40px;
  font-size: 17px;
  color: #686868;
  font-weight: 600;
  line-height: 1em;
}

.header__right > a {
  background-color: #1c1c1c;
}

.header__right a:hover {
  color: #ffffff;
}

.header__messenger a {
  margin: 0 0 0 13px;
  display: flex;
}

.header__messenger a:last-child {
  display: none;
}

.header__messenger img {
  width: 24px;
  transition: all 300ms ease-in-out;
}

.header__messenger img:hover {
  filter: grayscale(100%);
}

.header__right > a img {
  margin: 0 13px 0 0;
}

.hide {
  transform: translateY(-100%);
  transition: all .4s ease;
}

/* --------------------------------------------------------------
# Offer Styles
-------------------------------------------------------------- */

.offer {
  padding: 135px 0 10px;
}

.offer__cols {
  display: flex;
}

.offer__left {
  width: 100%;
  max-width: 580px;
  min-width: 580px;
  padding: 70px 0 0 0;
  position: relative;
  z-index: 2;
}

.offer h1 {
  font-family: 'OswaldEL';
  font-style: normal;
  font-size: 58px;
  line-height: 66px;
  color: #ffffff;
  font-weight: 200;
  margin: 0;
  position: relative;
}

.offer h1:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #151515;
  width: 100%;
  height: 110%;
  animation: myH 1700ms cubic-bezier(0.36, 0, 0.66, -0.56) 700ms 1 reverse forwards;
}

.offer h2 {
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  margin: 24px 0 40px;
  position: relative;
}

.offer h2:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #151515;
  width: 100%;
  height: 110%;
  animation: myH 2200ms cubic-bezier(0.36, 0, 0.66, -0.56) 2000ms 1 reverse forwards;
}

.offer__left button {
  border: 2px solid #ffbc3a;
  border-radius: 300px;
  background-color: transparent;
  font-weight: 700;
  font-size: 17px;
  color: #ffbc3a;
  display: flex;
  align-items: center;
  padding: 14px 24px;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  width: 100%;
  max-width: 240px;
}

.offer__left button:hover {
  border: 2px solid #ffffff;
  color: #fff;
}

.offer__left button img {
  transition: all 300ms ease-in-out;
  width: 50px;
}

.offer__left button span {
  margin: 0 0 0 16px;
}

.offer__left button:hover img {
  animation: rotating 3s linear infinite;
}

.offer__left > img {
  position: absolute;
  top: -40px;
  left: -590px;
  transition: transform 30s cubic-bezier(.31, .19, .50, .50);
}

.offer__left > img:hover {
  transform: rotate(720deg);
}

.offer__right {
  width: 100%;
  position: relative;
  z-index: 1;
}

.offer__right img {
  max-width: none;
  width: 900px;
  margin: 0 0 0 -300px;
  height: auto;
}

.offer__img,
.offer__img--mobile {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
  transition: 3s
}

.offer__img:hover {
  opacity: 1;
}

.offer__right-mobile {
  display: none;
  width: 60%;
  position: relative;
  margin: 30px 0;
}

.offer__img--click {
  opacity: 1;
}



/* --------------------------------------------------------------
# Services Styles
-------------------------------------------------------------- */

.services {
  padding: 0 0 60px 0;
}

.services__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
}

.services__item {
  background-image: linear-gradient(180deg, #ffbc3a, transparent 22%);
  width: 28.5%;
  padding-top: 1px;
  padding-right: 1px;
  padding-bottom: 1px;
  padding-left: 1px;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.services__block {
  background-image: linear-gradient(180deg, #1a1a1a, #151515 100%);
  padding: 40px 35px 35px 35px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
}

.services__title {
  font-size: 25px;
  text-align: left;
  margin: 0;
}

.services__subtitle {
  color: rgba(255, 255, 255, 0.5);
  margin: 4px 0 36px;
  font-size: 16px;
  text-align: left;
  line-height: 25px;
}

.yellow__button {
  padding: 29px 52px;
  border-radius: 500px;
  width: auto;
  background-color: #ffbc3a;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  font-family: 'ManropeSB';
  position: relative;
  z-index: 2;
  font-size: 17px;
  border: 2px solid #ffbc3a;
}

.yellow__button:hover {
  background-color: #ffffff;
  border: 2px solid #fff;
}

.decor1 {
  position: absolute;
  z-index: 1;
  top: -5px;
  left: -642px;
}


/* --------------------------------------------------------------
# Procent Styles
-------------------------------------------------------------- */

.procent {
  padding: 0 0 50px;
}

.procent__row {
  position: relative;
  max-width: 1090px;
}

.decor2 {
  position: absolute;
  z-index: 1;
  right: -336px;
  top: -105px;
}

.section__title {
  font-size: 37px;
  margin: 0;
}

.section__subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  margin: 12px 0 0 0;
}

.gradient-yell {
  background: linear-gradient(180deg, #FFBC3A 40%, rgba(255, 188, 58, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}


/* --------------------------------------------------------------
# Cases Styles
-------------------------------------------------------------- */

.cases__row {
  position: relative;
  width: calc(100% + 420px);
  margin: 0 0 0 -210px;
}

.cases__row .swiper {
  position: relative;
  z-index: 2;
}

.cases__row .swiper {
  position: relative;
  z-index: 1;
}

.cases .cases__buttons > div:after {
  display: none;
}

.cases .cases__buttons > div,
.cases .cases__buttons > div {
  right: auto;
  width: auto;
  height: auto;
  top: 30%;
}

.cases .cases__buttons img {
  max-width: 24px;
  width: 100%;
}

.cases .cases__buttons .swiper-button-prev {
  left: 32%;
}

.cases .cases__buttons .swiper-button-next {
  right: 32%;
}

.cases__item {
  width: 100%;
  max-width: 740px;
}

.cases__block {
  font-size: 23px;
  background-color: transparent;
  border-radius: 30px;
  padding: 45px 45px 65px 45px;
}

.cases__img {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin: 0 0 25px 0;
  display: flex;
  align-items: center;
}

.cases__title span,
.cases__price span {
  color: #ffbc3a;
}

.cases__desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 17px;
  margin: 15px 0 20px;
}

.cases__desc p {
  margin: 0 0 15px;
}

.cases__desc p:last-child {
  margin: 0;
}

.cases__price {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-size: 20px;
}

.cases__img > a {
  display: flex;
  width: 100%;
  height: auto;
  align-items: center;
}

.cases__img a img:first-child {
  position: relative;
  z-index: 1;
  width: 100%;
}

.cases__img a img:last-child {
  position: absolute;
  z-index: 2;
  top: -10%;
  left: 50%;
  width: 46px;
  height: auto;
  margin: -23px 0 0 -23px;
  transition: all 300ms ease-in-out;
}

.cases__img a:hover img:last-child {
  top: 50%;
}

.cases .container__row {
  width: 100%;
  padding: 0;
  max-width: 100%;
}

.cases .swiper-slide {
  opacity: .3;
  transition: all 300ms ease-in-out;
  z-index: 1;
}

.cases .swiper-slide.swiper-slide-active {
  opacity: 1;
  z-index: 2;
}

.cases .swiper-slide.swiper-slide-active:before,
.cases .swiper-slide.swiper-slide-active:after {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  background-color: transparent;
  position: absolute;
  z-index: 2;
}

.cases .swiper-slide.swiper-slide-active:before {
  right: 100%;
}

.cases .swiper-slide.swiper-slide-active:after {
  left: 100%;
}

.cases .swiper-slide.swiper-slide-active .cases__block {
  background-color: #1a1a1a;
}

.cases__pagination {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  margin: 40px 0 0 0;
}

.cases .cases__pagination .swiper-pagination-bullet {
  display: inline-block;
  height: 3px;
  width: 100%;
  max-width: 70px;
  background-color: #2f2f2f;
  border-radius: 0;
  opacity: 1;
  transition: all 300ms ease-in-out;
  margin: 0 11px;
}

.cases .cases__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  display: inline-block;
  height: 3px;
  width: 100%;
  max-width: 170px;
  background-color: #ffbc3a;
  border-radius: 0;
}


/* --------------------------------------------------------------
# Order Styles
-------------------------------------------------------------- */

.order {
  padding: 100px 0 80px;
}

.order__row {
  position: relative;
}

.order__wrapper {
  padding: 1px;
  background-image: linear-gradient(180deg, #ffbc3a, transparent 100%);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.order__block {
  background: #1a1a1a;
  border-radius: 30px;
  padding: 40px 70px 40px 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order__txt {
  font-size: 32px;
  margin: 0 80px 0 70px;
}

.order__txt span {
  color: #ffbc3a;
}

.order__block img {
  max-width: 180px;
  display: inline-block;
  transition: all 300ms ease-in-out;
}

.order__block img:hover {
  transform: rotate(42deg);
}


.order__wr,
.consultation__wr {
  width: 100%;
  max-width: 240px;
  position: relative;
}

.order__block .yellow__button,
.consultation__block .yellow__button {
  box-shadow: 0px 5px 120px rgba(255, 188, 58, 0.5);
  z-index: 2;
}

.order__block .order__wr:before,
.consultation__block .consultation__wr:before {
  content: '';
  position: absolute;
  width: 106.5%;
  height: 132%;
  border: 2px solid rgba(255, 188, 58, 0.5);
  border-radius: 300px;
  top: -15px;
  left: -15px;
  animation: myPulse 3s linear 0s infinite normal forwards;
  z-index: 1;
}

.order__block .order__wr:after,
.consultation__block .consultation__wr:after {
  content: '';
  position: absolute;
  width: 119.3%;
  height: 174%;
  border: 2px solid rgba(255, 188, 58, 0.09);
  border-radius: 300px;
  top: -32px;
  left: -31px;
  animation: myPulse 3s linear 0s infinite normal forwards;
  z-index: 1;
}

.decor3 {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: -590px;
}

.decor4 {
  position: absolute;
  z-index: 1;
  top: 53px;
  right: -412px;
}


/* --------------------------------------------------------------
# Price Styles
-------------------------------------------------------------- */

.price__wrapper {
  margin: 40px 0 0 0;
}

.price__block {
  position: relative;
}

.price__item {
  font-size: 27px;
  background-color: transparent;
  border-radius: 30px;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

.price__img {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin: 0 0 35px 0;
  display: flex;
}

.price__img > a {
  display: flex;
  width: 100%;
  height: auto;
}

.price__img a img:first-child {
  position: relative;
  z-index: 1;
  width: 100%;
}

.price__img a img:last-child {
  transition: 1s;
}

.price__img a:hover img:last-child {
  transform: scale(1.2);
}

.price__info {
  padding: 0 20px;
}

.price__h {
  font-size: 21px;
  position: relative;
  margin: 0;
}

.price__h:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #ffbc3a;
}

.price__desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 21px;
  margin: 23px 0 10px;
}

.price__price {
  font-size: 24px;
}

.price .price__buttons > div:after {
  display: none;
}

.price .price__buttons > div,
.price .price__buttons > div {
  right: auto;
  width: auto;
  height: auto;
  top: 30%;
}

.price .price__buttons img {
  max-width: 24px;
  width: 100%;
}

.price .price__buttons .swiper-button-prev {
  left: -8%;
}

.price .price__buttons .swiper-button-next {
  right: -8%;
}


/* --------------------------------------------------------------
# Result Styles
-------------------------------------------------------------- */

.result {
  padding: 100px 0 80px;
}

.result__wrapper {
  padding: 1px;
  background-image: linear-gradient(180deg, #ffbc3a, transparent 100%);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.result__block {
  background-color: #1a1a1a;
  padding: 60px 70px 60px 65px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.result__title {
  font-size: 32px;
  text-align: center;
  max-width: 640px;
  margin: 0 0 25px 0;
}

.result__title span {
  color: #ffbc3a;
}


/* --------------------------------------------------------------
# Develop Styles
-------------------------------------------------------------- */

.develop .section__title {
  max-width: 740px;
  margin: 0 0 40px 0;
}

.develop .section__title span {
  color: #ffbc3a;
}

.develop__wrapp {
  position: relative;
}

.develop__img {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.develop__img img {
  width: 100%;
}

.develop__gallery {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  transition: all 300ms ease-in-out;
}

.develop__gallery.open {
  padding: 0 0 20px 0;
}

.develop__item {
  overflow: hidden;
  border-radius: 30px;
  overflow: hidden;
  display: none;
  width: 47%;
  margin: 0 70px 70px 0;
  transition: all 300ms ease-in-out;
  opacity: .8;
}

.develop__gallery .develop__item:nth-child(2n) {
  margin: 0 0 70px 0;
}

.develop__gallery.open .develop__item,
.develop__gallery .develop__item:nth-child(-n+4) {
  display: block;
  opacity: 1;
}

.develop__overlay {
  background-color: rgb(27 27 27 / 90%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 100%;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 300ms ease-in-out;
}

.develop__item:hover .develop__overlay {
  opacity: 1;
}

.develop__content {
  padding: 40px;
  height: auto;
}

.develop__h {
  font-size: 24px;
  margin: 0;
}

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

.develop__links {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.develop__links span {
  display: inline-block;
  margin: 8px 0 0 0;
  font-size: 10px;
  color: rgb(255 255 255 / 50%);
  text-align: right;
}

.develop__links.right {
  display: flex;
  align-items: flex-end;
}

.develop__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin: 10px 0 20px;
}

.develop__item button,
.develop__item a {
  padding: 16px 20px;
  font-size: 14px;
}

.develop__more {
  display: flex;
  justify-content: center;
  padding: 10px;
  margin: 0 0 30px 0;
  white-space: nowrap;
}

.develop__read {
  color: #ffbc3a;
  font-size: 27px;
  display: inline-block;
  border-bottom: 1px dashed #ffbc3a;
  padding: 0 0 6px 0;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.develop__read:hover {
  color: #fff;
  border-bottom: 1px dashed #fff;
}


/* --------------------------------------------------------------
# Consultation Styles
-------------------------------------------------------------- */

.consultation {
  padding: 80px 0 0 0;
}

.consultation__row {
  position: relative;
}

.consultation__wrapper {
  padding: 1px;
  background-image: linear-gradient(180deg, #ffbc3a, transparent 100%);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.consultation__block {
  background-color: #1a1a1a;
  padding: 60px 70px 60px 65px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.consultation__title {
  font-size: 34px;
  text-align: left;
  max-width: 390px;
}

.consultation__title span {
  color: #ffbc3a;
}

.consultation__img img:first-child {
  width: 130px;
}

.consultation__img img:last-child {
  display: none;
}

.consultation__block .yellow__button {
  box-shadow: 0px 5px 120px rgb(255 188 58 / 50%);
  z-index: 2;
}

.consultation__row .decor3 {
  position: absolute;
  z-index: 1;
  top: -111px;
  left: -1078px;
}

.consultation__row .decor4 {
  position: absolute;
  z-index: 1;
  top: -18px;
  right: -969px;
}


/* --------------------------------------------------------------
# About Styles
-------------------------------------------------------------- */

.about {
  background-image: url(../img/about-bkg.png);
  position: relative;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0 30px;
}

.about:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #151515 6.16%, rgba(21, 21, 21, 0) 100%);
  z-index: 1;
}

.about > div {
  position: relative;
  z-index: 2;
}

.about__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 50px 0;
}

.about__row .section__title,
.about__row .section__subtitle {
  text-align: center;
}

.about .gradient-yell {
  white-space: nowrap;
}

.about__row .section__subtitle {
  max-width: 810px;
}

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

.about__item {
  display: flex;
  width: 45%;
  margin: 0 0 40px 0;
  align-items: flex-start;
}

.about__item img {
  margin: 6px 30px 0 0;
  width: 60px;
}

.about__h {
  font-size: 22px;
  margin: 0 0 10px 0;
}

.about__text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

.about__year {
  display: flex;
  justify-content: center;
  margin: 20px 0 70px 0;
}

.about__year-txt {
  font-size: 22px;
  text-align: center;
  max-width: 860px;
  opacity: .5;
}

.about__year-txt span {
  color: #ffbc3a;
}

.about__team-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about__team-block {
  width: 30%;
  margin: 0 0 40px 0;
}

.about__team-block img {
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
}

.about__team-h {
  font-size: 23px;
  margin: 20px 0 10px;
}

.about__team-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

/* Card Flip  */

.card {
  position: relative;
  width: 100%;
  height: auto;
  perspective: 500px;
  margin: 0 auto;
}

.front {
  position: relative;
  transition: transform 700ms;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
}

.back {
  position: absolute;
  width: 100%;
  height: auto;
  transition: transform 700ms;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: rotateY(180deg);
  top: 0;
  display: flex;
  align-items: center;
}

.card:hover .front {
  transform: rotateY(180deg);
}

.card:hover .back {
  transform: rotateY(360deg);
}

/* --------------------------------------------------------------
# Warranty Styles
-------------------------------------------------------------- */

.warranty {
  padding: 110px 0 90px;
}

.warranty__block {
  background-color: #1a1a1a;
  border-radius: 30px;
  padding: 26px;
  display: flex;
  align-items: center;
}

.warranty__block img {
  width: 490px;
  margin: -40px 60px -40px 0;
}

.warranty__info {
  max-width: 410px;
}

.warranty__info h2 {
  font-size: 37px;
  margin: 0;
}

.warranty__info p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 23px;
  margin: 12px 0 0 0;
  line-height: 30px;
}


/* --------------------------------------------------------------
# Reviews Styles
-------------------------------------------------------------- */

.reviews {
  padding: 10px 0 70px 0;
}

.reviews__block {
  background-color: #1a1a1a;
  border-radius: 30px;
}

.reviews__block .swiper {
  margin: 0 0 0 -90px;
  width: calc(100% + 180px);
}

.reviews__title {
  margin: 0 0 30px 0;
  font-size: 37px;
}

.reviews__item {
  display: flex;
  align-items: center;
  padding: 40px 150px 40px 0;
}

.reviews__img-wrapper {
  padding: 2px;
  background-image: linear-gradient(180deg, #ffbc3a, transparent 70%);
  border-radius: 3000px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-width: 240px;
  margin: 0 60px 0 0;
}

.reviews__img {
  display: flex;
  width: 100%;
  padding: 12px;
  background-color: #151515;
  border-radius: 30000px;
  align-items: center;
}

.reviews__img img {
  width: 100%;
}

.reviews__name,
.reviews__text {
  text-align: left;
}

.reviews__name {
  font-size: 23px;
  margin: 0 0 15px 0;
}

.reviews__text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 23px;
}

.reviews__pagination {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  margin: 30px 0 0 0;
}

.reviews .reviews__pagination .swiper-pagination-bullet {
  display: inline-block;
  height: 3px;
  width: 100%;
  max-width: 90px;
  background-color: #2f2f2f;
  border-radius: 0;
  opacity: 1;
  transition: all 300ms ease-in-out;
  margin: 0 11px;
}

.reviews .reviews__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ffbc3a;
}


/* --------------------------------------------------------------
# Footer Styles
-------------------------------------------------------------- */

.footer {
  background-color: #111111;
  padding: 50px 0;
}

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

.footer__col {
  width: 33.3%;
}

.footer__left {
  display: flex;
}

.footer__center {
  margin-top: 22px;
  margin-bottom: 22px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 15px;
}

.footer__center a {
  margin: 0;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer__logo {
  margin: 0 40px 0 0;
  display: inline-block;
}

.footer__logo img {
  width: 130px;
}

.footer__menu {
  list-style-type: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  flex-direction: column;
}

.footer__menu li {
  margin: 0 0 10px 0;
}

.footer__menu li:last-child {
  margin: 0;
}

.footer__menu a {
  font-size: 17px;
  color: #686868;
  padding: 4px;
  position: relative;
  line-height: 22px;
  display: inline-block;
  transition: color 300ms ease-in-out;
  font-weight: 600;
}

.footer__menu a:after {
  content: '';
  width: 23px;
  height: 1px;
  bottom: -10px;
  left: 4px;
  background-color: #fff;
  position: absolute;
  opacity: 0;
  transition: all 300ms ease-in-out;
}

.footer__menu a.active,
.footer__menu a:hover {
  color: #ffffff;
}


.footer__menu a.active:after,
.footer__menu a:hover:after {
  opacity: 1;
  bottom: 0;
}

.footer__pol {
  color: #686868;
  font-size: 17px;
  text-align: center;
  margin: 0 0 0 0;
  transition: color 300ms ease-in-out;
}

.footer__pol:hover {
  color: #fff;
}

.yellow__button-dark {
  padding: 29px 52px;
  border-radius: 500px;
  width: auto;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  font-family: 'ManropeSB';
  position: relative;
  z-index: 2;
  font-size: 17px;
  border: 2px solid #ffbc3a;
}

.yellow__button-dark:hover {
  ;
  background-color: #ffbc3a;
  color: #1a1a1a;
}

.footer__messenger {
  display: flex;
  align-items: center;
  margin: 16px 0 10px;
}

.footer__messenger a {
  margin: 0 0 0 15px;
}

.footer__messenger a img {
  width: 24px;
}

.footer__links a {
  display: flex;
  align-items: center;
  font-size: 17px;
  color: #686868;
  font-weight: 600;
  line-height: 1em;
  transition: color 300ms ease-in-out;
}

.footer__links a:hover {
  color: #fff;
}

.footer__links a img {
  margin: 0 13px 0 0;
}


/* --------------------------------------------------------------
# Popus Styles
-------------------------------------------------------------- */

.fancybox-content {
  background: transparent;
  padding: 0;
}

.form__wrapper {
  width: 100%;
  max-width: 350px;
  background-color: #151515;
  color: #ffffff;
  font-size: 20px;
  border-radius: 30px;
  padding: 40px 30px;
}

.form__title {
  text-align: center;
  color: #ffbc3a;
}

.form__title span {
  display: block;
  font-size: 17px;
  margin: 5px 0 20px 0;
  line-height: 21px;
  color: #fff;
}

.form__form input,
.form__form input:focus,
.form__form input:active {
  outline: none;
}

.form__form input[type="text"],
.form__form input[type="tel"] {
  border: 2px solid #ffbc3a;
  display: inline-block;
  width: 100%;
  border-radius: 300px;
  font-size: 17px;
  padding: 13px;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  outline: none;
  transition: all 300ms ease-in-out;
}

.form__form input[type="submit"] {
  border: 2px solid #ffbc3a;
  display: inline-block;
  width: 100%;
  border-radius: 300px;
  font-size: 17px;
  padding: 23px;
  color: #1a1a1a;
  margin: 0;
  outline: none;
  background-color: #ffbc3a;
  transition: all 300ms ease-in-out;
  font-family: 'ManropeSB';
  cursor: pointer;
}

.form__form input[type="submit"]:hover {
  border: 2px solid #fff;
  color: #1a1a1a;
  background-color: #fff;
}

.form__form input.error {
  border: 2px solid red !important;
}

.form__thank {
  text-align: center;
  font-size: 14px;
  display: none;
  margin: 10px 0 0 0
}


/* --------------------------------------------------------------
# Media Styles
-------------------------------------------------------------- */

@media (max-width: 1399px) {
  .cases__row {
    width: calc(100% + 700px);
    margin: 0 0 0 -350px;
  }

  .reviews__block .swiper {
    margin: 0;
    width: 100%;
  }

  .reviews__item {
    padding: 40px 30px 30px 30px;
  }
}


@media (max-width: 1329px) {

  .header__left ul {
    margin: 0 20px 0 30px;
    width: 400px;
  }

  .header__left ul a {
    font-size: 16px;
  }

  .header__messenger,
  .header__right > a {
    font-size: 16px;
  }

}


@media (max-width: 1199px) {

  .header__left .header__hamburger {
    display: flex;
  }

  .header__mobile {
    display: none;
  }

  .header__left {
    width: auto;
  }

  .offer__right img {
    margin: 0 0 0 -370px;
  }

  .services__block {
    padding: 20px 15px 15px 15px;
  }

  .services__item {
    width: 31%;
  }

  .services__title {
    font-size: 20px;
  }

  .services__subtitle {
    margin: 4px 0 26px;
    font-size: 15px;
    line-height: 22px;
  }

  .services .yellow__button {
    padding: 22px 0;
    width: 100%;
    max-width: 254px;
  }

  .order__block,
  .result__block,
  .consultation__block {
    padding: 30px 55px 30px 55px;
  }

  .order__txt {
    font-size: 27px;
  }

  .order__block img {
    max-width: 160px;
  }

  .decor3 {
    top: -111px;
    left: -829px;
  }

  .price .price__buttons .swiper-button-prev {
    left: 1%;
  }

  .price .price__buttons .swiper-button-next {
    right: 1%;
  }

  .order,
  .result,
  .warranty {
    padding: 80px 0 70px;
  }

  .develop__item {
    width: 48.1%;
    margin: 0 40px 40px 0;
  }

  .develop__gallery .develop__item:nth-child(2n) {
    margin: 0 0 40px 0;
  }

  .consultation {
    padding: 50px 0 0 0;
  }

  .about__item {
    width: 48%;
    margin: 0 0 30px 0;
  }

  .offer .container__row {
    overflow-x: hidden;
  }

  .header__left {
    padding-left: 15px;
  }

  .header__messenger,
  .header__right > a {
    padding: 25px 15px;
    font-size: 16px;
  }

  .reviews__wrapper,
  .price__row,
  .cases {
    padding: 0 15px;
  }

}

@media (max-width: 1099px) {

  .offer__right img {
    width: 840px;
    margin: 0 0 0 -380px;
  }

  .order__txt {
    font-size: 24px;
    margin: 0 50px 0 50px;
  }

  .order__block img {
    max-width: 140px;
  }

  .decor3 {
    top: -123px;
    left: -976px;
  }

  .decor4 {
    top: -4px;
    right: -631px;
  }

  .result__title {
    font-size: 30px;
    max-width: 600px;
  }

  .develop__item {
    width: 47.9%;
  }

  .consultation__title,
  .warranty__info h2,
  .section__title,
  .reviews__title {
    font-size: 30px;
  }

  .warranty__info p {
    font-size: 20px;
    line-height: 27px;
  }

  .footer__left {
    flex-direction: column;
  }

}


@media (max-width: 991px) {

  .header__left > a img {
    max-height: 56px;
  }

  .offer__left {
    max-width: 390px;
    min-width: 390px;
  }

  .offer h1 {
    font-size: 38px;
    line-height: 46px;
  }

  .offer h2 {
    font-size: 18px;
  }

  .offer__right img {
    width: 760px;
    margin: 0 0 0 -310px;
  }

  .section__title {
    font-size: 30px;
  }

  .section__subtitle {
    font-size: 22px;
  }

  .cases__row {
    width: calc(100% + 620px);
    margin: 0 0 0 -310px;
  }

  .decor2 {
    right: -462px;
    top: -147px;
  }

  .order__block,
  .consultation__block {
    flex-direction: column;
  }

  .order__txt {
    font-size: 24px;
    margin: 30px 0 45px;
    text-align: center;
  }

  .order {
    padding: 50px 0 60px;
  }

  .order__block,
  .consultation__block {
    padding: 30px 60px 50px 55px;
  }

  .order__block img:hover {
    transform: rotate(131deg);
  }

  .develop .section__title {
    max-width: 560px;
  }

  .develop__item {
    width: 47.2%;
  }

  .consultation__title {
    max-width: 100%;
  }

  .about__item {
    width: 49%;
  }

  .about__h {
    font-size: 18px;
    margin: 0 0 10px 0;
    line-height: 22px;
  }

  .warranty__block img {
    width: 230px;
  }

  .reviews__img-wrapper {
    min-width: 170px;
    margin: 0 40px 0 0;
  }

  .footer__col {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer__pol {
    margin: 30px 0 40px 0;
  }

  .footer__right {
    flex-direction: column;
    align-items: center;
  }

  .consultation {
    padding: 30px 0 0 0;
  }

  .about {
    padding: 70px 0 30px;
  }

  .consultation__img img:first-child {
    display: none;
  }

  .consultation__img img:last-child {
    width: 130px;
    display: block;
    margin: 0px 0 40px 0;
  }

}


@media (max-width: 866px) {
  .result__block-right {
    margin: 35px 0;
  }

  .order__block,
  .result__block,
  .consultation__block {
    padding: 5px 10px 5px 10px;
  }
}

@media (max-width: 767px) {

  .header__messenger > span,
  .header__right > a {
    display: none;
  }

  .header__messenger,
  .header__right > a {
    padding: 25px 10px;
  }

  .header__messenger a:last-child {
    display: flex;
  }

  .header__messenger a {
    margin: 0 5px;
  }

  .header__hamburger img {
    width: 30px;
  }

  .offer__right > img:first-child {
    display: none;
  }

  .offer__img {
    display: none;
  }

  .offer__right-mobile {
    display: block;
  }

  .offer__right img:last-child {
    display: flex;
    width: 100%;
    margin: 0;
  }

  .offer__cols {
    flex-direction: column;
  }

  .offer__right img {
    width: 60%;
    margin: 30px 0;
  }

  .offer__img--mobile {
    display: flex;
    width: 100% !important;
    margin: 0 !important;
  }

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

  .offer__left {
    max-width: 100%;
    min-width: 100%;
    padding: 20px 0 0 0;
  }

  .services__row {
    justify-content: center;
  }

  .services__item {
    width: 100%;
    margin: 0 0 50px 0;
    max-width: 330px;
  }

  .services__block {
    padding: 30px 25px 25px 25px;
  }

  .services__subtitle {
    font-size: 19px;
    line-height: 25px;
  }

  .services {
    padding: 0;
  }

  .services__title,
  .develop__read {
    font-size: 22px;
  }

  .result__title,
  .section__title,
  .consultation__title,
  .warranty__info h2,
  .reviews__title {
    font-size: 26px;
  }

  .section__subtitle {
    font-size: 20px;
  }

  .cases__row {
    width: 100%;
    margin: 0;
  }

  .cases__block {
    font-size: 22px;
    padding: 25px 35px 35px 35px;
  }

  .order {
    padding: 70px 0 60px;
  }

  .cases .cases__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    max-width: 130px;
  }

  .order,
  .result,
  .warranty {
    padding: 50px 0 60px;
  }

  .order {
    padding: 70px 0 70px;
  }

  .develop__gallery .develop__item,
  .develop__gallery .develop__item:nth-child(2n) {
    width: 100%;
    margin: 0 0 50px 0;
  }

  .develop__gallery .develop__item:last-child {
    margin: 0;
  }

  .consultation__title {
    text-align: center;
  }

  .about__item {
    width: 100%;
  }

  .about__year {
    margin: 20px 0 50px 0;
  }

  .about__year-txt {
    font-size: 18px;
  }

  .about__team-block {
    width: 100%;
    margin: 0 0 50px 0;
  }

  .about {
    padding: 60px 0 0;
  }

  .warranty__block {
    flex-direction: column;
  }

  .warranty__block img {
    width: 250px;
    margin: -40px 0 50px 0;
  }

  .reviews__item {
    padding: 30px;
    flex-direction: column;
  }

  .reviews__img-wrapper {
    min-width: 0;
    margin: 0 0 20px 0;
    max-width: 200px;
  }

  .reviews__name {
    font-size: 22px;
    text-align: center;
  }

  .reviews__text {
    text-align: center;
  }

  .warranty {
    padding: 70px 0 50px;
  }

  .cases .cases__buttons .swiper-button-prev {
    left: 1%;
  }

  .cases .cases__buttons .swiper-button-next {
    right: 1%;
  }

}


@media (max-width: 515px) {

  .order__block,
  .result__block,
  .consultation__block {
    padding: 25px 0;
  }

  .result__block-left {
    margin-right: 0 !important;
  }

  .result__arrow {
    width: 27px;
    top: 64px !important;
    right: 15px !important;

  }

  .result__block-left .result__h {
    font-size: 16px;
    width: 215px;
    margin-bottom: 25px;
  }

  .result__btn--border:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .result__buttons {
    display: flex;
    flex-direction: column;
  }

  .result__btn-whatsapp {
    margin-right: 0 !important;
    margin-bottom: 10px;
  }
}

@media (max-width: 479px) {

  .header__left .header__hamburger {
    margin: 0 20px 0 0;
  }

  .header__left > a img {
    max-height: 50px;
  }

  .header__messenger,
  .header__right > a {
    padding: 18px 10px;
  }

  .header__left > a img {
    max-height: 46px;
  }

  .offer__left {
    padding: 0;
  }

  .offer h1 {
    font-size: 27px;
    line-height: 32px;
  }

  .offer h2 {
    font-size: 16px;
    margin: 20px 0 24px;
  }

  .offer__left button img {
    width: 40px;
  }

  .offer__left button span {
    margin: 0 0 0 12px;
  }

  .offer__left button {
    font-size: 15px;
    padding: 10px;
    max-width: 200px;
  }

  .services__title,
  .develop__read {
    font-size: 18px;
  }

  .services__subtitle {
    font-size: 16px;
    line-height: 20px;
  }

  .services__item {
    margin: 0 0 30px 0;
  }

  .section__subtitle {
    font-size: 18px;
    line-height: 23px;
  }

  .procent {
    padding: 0 0 40px;
  }

  .cases__block {
    font-size: 20px;
    padding: 15px;
  }

  .cases__desc {
    font-size: 16px;
  }

  .cases__pagination {
    margin: 30px 0 0 0;
  }

  .order {
    padding: 40px 0 60px;
  }

  .price__info {
    padding: 0;
  }

  .price__h {
    font-size: 19px;
  }

  .price__desc {
    font-size: 18px;
    margin: 23px 0 5px;
  }

  .price__price {
    font-size: 20px;
  }

  .order__block,
  .result__block,
  .consultation__block {
    padding: 20px 20px 26px 20px;
  }

  .develop__gallery .develop__item,
  .develop__gallery .develop__item:nth-child(2n) {
    margin: 0 0 30px 0;
  }

  .about__item img {
    margin: 0 20px 0 0;
    width: 40px;
  }

  .about__h {
    font-size: 16px;
    margin: 0 0 6px 0;
    line-height: 20px;
  }

  .about__text {
    font-size: 14px;
  }

  .about__team-desc {
    font-size: 15px;
  }

  .about__team-h {
    font-size: 20px;
    margin: 15px 0 10px;
  }

  .warranty {
    padding: 60px 0 50px;
  }

  .warranty__block {
    padding: 15px;
  }

  .warranty__info p {
    font-size: 15px;
    line-height: 18px;
  }

  .reviews__img-wrapper {
    max-width: 70%;
  }

  .reviews__name {
    font-size: 20px;
    margin: 0 0 10px 0;
  }

  .reviews__text {
    font-size: 15px;
    line-height: 18px;
  }

  .reviews {
    padding: 10px 0 50px 0;
  }

  .footer {
    padding: 30px 0;
  }

  .footer .yellow__button-dark {
    font-size: 15px;
    padding: 21px;
    max-width: 200px;
    width: 100%;
  }

  .footer__logo img {
    width: 110px;
  }

  .footer__logo {
    margin: 0;
  }

  .footer__menu li {
    margin: 0 0 6px 0;
  }

  .footer__menu a {
    font-size: 14px;
    line-height: 15px;
  }

  .footer__pol {
    margin: 20px 0 24px 0;
    font-size: 14px;
  }

  .footer__links a,
  .footer__right {
    font-size: 14px;
  }

  .warranty__block img {
    margin: -40px 0 30px 0;
    width: 190px;
  }

  .yellow__button {
    font-size: 15px;
    padding: 21px;
    width: 100%;
  }

  .order__wr,
  .consultation__wr {
    display: flex;
    justify-content: center;
    max-width: 200px;
  }

  .order__block .order__wr:before,
  .consultation__block .consultation__wr:before {
    width: 106.5%;
    height: 119%;
    top: -8px;
    left: -9px;
  }

  .order__block .order__wr:after,
  .consultation__block .consultation__wr:after {
    width: 117%;
    height: 150%;
    top: -18px;
    left: -20px;
  }

  .decor2 {
    right: -448px;
    top: -168px;
  }

  .order__txt {
    margin: 20px 0 30px;
  }

  .consultation__img img:last-child {
    width: 80px;
    margin: 0 0 30px 0;
  }

  .develop__read {
    font-size: 15px;
    padding: 0 0 4px 0;
  }

  .consultation {
    padding: 10px 0 0 0;
  }

  .result .yellow__button,
  .services .yellow__button,
  .header__mobile.open > button {
    max-width: 200px;
  }

  .order__block img {
    max-width: 90px;
  }

  .result {
    padding: 30px 0 40px;
  }

  .about {
    padding: 50px 0 0;
  }

  .result__title,
  .section__title,
  .consultation__title,
  .warranty__info h2,
  .reviews__title,
  .order__txt {
    font-size: 24px;
    line-height: 24px;
  }

  .develop__content {
    padding: 10px 16px;
  }

  .develop__item button,
  .develop__item a {
    padding: 10px 10px;
    font-size: 10px;
    width: auto;
  }

  .develop__desc {
    font-size: 13px;
    margin: 6px 0 14px;
  }

  .develop__h {
    font-size: 20px;
  }

}


/* Min Width */

@media (min-width: 1400px) {

  .offer h1:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #151515;
    width: 100%;
    height: 110%;
    animation: myH 1700ms cubic-bezier(0.36, 0, 0.66, -0.56) 700ms 1 reverse forwards;
  }

  .offer h2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #151515;
    width: 100%;
    height: 110%;
    animation: myH 2200ms cubic-bezier(0.36, 0, 0.66, -0.56) 2000ms 1 reverse forwards;
  }

}

@media (min-width: 481px) {

  .footer .footer__right .yellow__button-dark {
    padding: 24px 38px;
  }

}

.result__block {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.result__block-left {
  position: relative;
  max-width: 500px;
  margin-right: 15px;
}

.result__h {
  font-size: 20px;
  width: 400px;
  margin-bottom: 25px;
}

.result__arrow {
  position: absolute;
  top: 23px;
  right: -17px;
}

.result__block-right {
  display: flex;
  padding: 10px 15px;
  background: linear-gradient(106.39deg, rgba(25, 25, 25, 0) 0%, #191919 52.12%, rgba(25, 25, 25, 0) 100.07%);
  align-items: center;
}

.result__block-right img {
  width: 100px;
}

.result__text {
  margin-top: 10px;
}

.result__text > p {
  margin: 0;
  max-width: 270px;
  font-size: 16px;
}

/* .result__block-left::before {
	position: absolute;
	content: "";
	background-image: url("../img/Vector_4.svg");
	background-repeat: no-repeat;
	width: 100px;
  height: 100px;
	right: -4px;
	top: 26px;
} */


.result__buttons {
  display: flex;
}

.result__buttons a {
  display: inline-flex;
  position: relative;
  padding: 0;
  width: 175px;
  height: 63px;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding-left: 25px;
  cursor: pointer;
  border-radius: 5px;
  z-index: 999;
  font-size: 16px;
}

.result__btn--border {
  position: relative;
}

.result__btn--border:first-child {
  margin-right: 20px;
}

.result__btn--border::before {
  content: '';
  display: block;
  position: absolute;
  top: -6px;
  left: -7px;
  width: 212px;
  height: 73px;
  border-width: 1px;
  border-radius: 5px;
  opacity: 0.4;
  background-position: center center;
  border-color: #e7e7e7;
  border-style: solid;
}

.result__btn--border::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -7px;
  border-radius: 5px;
  display: block;
  opacity: 0.1;
  width: 213px;
  height: 73px;
  background-position: center center;
  background-color: #e7e7e7;

}

.result__btn-whatsapp {
  background-color: #53cc68;
  border-color: #53cc68;
  margin-right: 10px;
  background: linear-gradient(180deg, #60EA79 0%, #3CA54E 100%);
  box-shadow: inset 0px 0px 18.0842px rgba(255, 255, 255, 0.51);
}

.result__btn-telegram {
  background-color: #26a1dd;
  border-color: #26a1dd;
  background: linear-gradient(180deg, #29B3F8 0%, #1C83B6 100%);
  box-shadow: inset 0px 0px 18.0842px rgba(255, 255, 255, 0.51);
}

.result__btn-whatsapp::before {
  position: absolute;
  content: "";
  background-image: url("../img/whatsapp.svg");
  width: 32px;
  height: 32px;
  left: 30px;
  top: 15px;
}

.result__btn-telegram::before {
  position: absolute;
  content: "";
  background-image: url("../img/telegram.svg");
  width: 36px;
  height: 32px;
  left: 32px;
  top: 15px;
}



/* --------------------------------------------------------------
# Footer Styles
-------------------------------------------------------------- */

.footer {
  background-color: #111111;
  padding: 50px 0;
}

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

.footer__col {
  width: 25.3%;
}

.footer__col--left {
  width: 43.3%;
}

.footer__left {
  display: flex;
}

.footer__center {
  margin-top: 22px;
  margin-bottom: 22px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 15px;
}

.footer__center a {
  margin: 0;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer__logo {
  margin: 0 40px 0 0;
  display: inline-block;
}

.footer__logo img {
  width: 130px;
}

.footer__menu {
  list-style-type: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  flex-direction: column;
}

.footer__menu li {
  margin: 0 0 10px 0;
}

.footer__menu li:last-child {
  margin: 0;
}

.footer__menu a {
  font-size: 17px;
  color: #686868;
  padding: 4px;
  position: relative;
  line-height: 22px;
  display: inline-block;
  transition: color 300ms ease-in-out;
  font-weight: 600;
}

.footer__menu a:after {
  content: "";
  width: 23px;
  height: 1px;
  bottom: -10px;
  left: 4px;
  background-color: #fff;
  position: absolute;
  opacity: 0;
  transition: all 300ms ease-in-out;
}

.footer__menu a.active,
.footer__menu a:hover {
  color: #ffffff;
}

.footer__menu a.active:after,
.footer__menu a:hover:after {
  opacity: 1;
  bottom: 0;
}

.footer__pol {
  color: #686868;
  font-size: 17px;
  text-align: start;
  transition: color 300ms ease-in-out;
}

.footer__pol:hover {
  color: #fff;
}

.yellow__button-dark {
  padding: 29px 52px;
  border-radius: 500px;
  width: auto;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  font-family: "ManropeSB";
  position: relative;
  z-index: 2;
  font-size: 17px;
  border: 2px solid #ffbc3a;
}

.yellow__button-dark:hover {
  background-color: #ffbc3a;
  color: #1a1a1a;
}

.footer__messenger {
  display: flex;
  align-items: center;
  margin: 16px 0 10px;
}

.footer__messenger a {
  margin: 0 0 0 15px;
}

.footer__messenger a img {
  width: 24px;
}

.footer__links a {
  display: flex;
  align-items: center;
  font-size: 17px;
  color: #686868;
  font-weight: 600;
  line-height: 1em;
  transition: color 300ms ease-in-out;
}

.footer__links a:hover {
  color: #fff;
}

.footer__links a img {
  margin: 0 13px 0 0;
}

.footer__item {
  color: #686868;
  font-size: 16px;
  text-align: center;
  transition: color 0.3 ease-in-out;
}

a.footer__item:hover {
  color: #fff;
}

@media (min-width: 1200px) {
  .footer__item {
    font-size: 18px;
    text-align: start;
  }
}

.footer__bottom {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

@media (min-width: 1200px) {
  .footer__bottom {
    justify-content: flex-start;
  }
}

.footer__bottom img {
  max-width: 500px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer__items {
    display:flex;
    flex-direction: column;
    align-items: center;
}


@media (min-width: 1200px) {
 .footer__items {
    align-items: start;
}
}


@media (min-width: 481px) {
  .footer .footer__right .yellow__button-dark {
    padding: 24px 38px;
  }
}



