@charset "UTF-8";

/* Указываем box sizing */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* Убираем внутренние отступы */

ul,
ol {
  padding: 0;
}

/* Убираем внешние отступы */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-weight: normal;
  font-size: 16px;
  font-style: normal;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/

ul,
ol {
  list-style: none;
}

/* Упрощаем работу с изображениями */

img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

/* Указываем понятную периодичность в потоке данных у article*/

article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

html {
  height: 100%;
}

body {
  font-size: 16px;
  min-height: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  color: #181e25;
}

body::-webkit-scrollbar {
  width: 10px;
  background-color: #fafafa;
}

body::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
  border-radius: 5px;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #7d7d7d;
}

.overflowHidden {
  overflow-y: hidden;
}

h1 {
  font-weight: 500;
  font-size: 48px;
  line-height: 120%;
  color: #181e25;
}

h2 {
  color: #181e25;
  font-weight: bold;
  font-size: 32px;
  line-height: 120%;
  position: relative;
  padding-bottom: 30px;
}

.green-title {
  position: absolute;
  top: -31px;
  left: -31px;
  font-weight: 800;
  font-size: 64px;
  line-height: 120%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #66b269;
  opacity: 0.25;
  z-index: -1;
}
.green-title__main{
  color: #181e25;
  font-weight: bold;
  font-size: 32px;
  line-height: 120%;
  position: relative;
  padding-bottom: 30px;
  display: block;
}
p {
  color: #181e25;
}

img {
  max-width: 100%;
}

.relative {
  position: relative;
}

.container {
  max-width: 1308px;
  position: relative;
  padding: 0 15px;
  margin: 0 auto;
}

.row-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.wrapper {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
}

.transparently {
  opacity: 0.5;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.main-banner {
  position: relative;
  min-height: 590px;
}

.main-banner__right {
  height: 590px;
  width: calc(100vw - 50% - 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  border-bottom-left-radius: 8px;
  overflow: hidden;
}

.main-banner__right img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.main-banner__left {
  padding-top: 40px;
  position: relative;
  z-index: 2;
}

.main-banner .plate {
  max-width: 690px;
  background: #ffffff;
  border: 1px solid #66b269;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04),
    0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04),
    0px 0px 1px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  padding: 25px 50px 38px;
  margin-left: 70px;
}

.main-banner .plate__title {
  font-weight: bold;
  font-size: 48px;
  line-height: 120%;
}

.main-banner .plate__description {
  font-weight: normal;
  font-size: 20px;
  line-height: 130%;
  padding-top: 15px;
}

.main-banner .plate .btn {
  margin-top: 30px;
  font-size: 18px;
}

.main-advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 655px;
  padding-right: 10px;
  margin: -15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 45px;
}

.main-advantages__item {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-advantages__value {
  font-weight: bold;
  font-size: 48px;
  line-height: 100%;
  color: #66b269;
  padding-right: 15px;
}

.main-advantages__text {
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
}

.main .garden {
  padding-top: 110px;
}

.main .garden .row-flex {
  margin: -15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.main .garden .row-flex .garden-column {
  -webkit-box-flex: 0;
  -ms-flex: 0 33.3333%;
  flex: 0 33.3333%;
}

.main .garden__item {
  height: 368px;
  position: relative;
  display: block;
  margin: 15px;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04),
    0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04),
    0px 0px 1px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  overflow: hidden;
  color: #181e25;
}

.main .garden__item:hover .garden__body {
  bottom: 0 !important;
}

.main .garden__item:hover .garden__raiting {
  right: 22px;
  top: 22px;
  opacity: 1;
}

.main .garden__item.with-colors .garden__body {
  bottom: -90px;
}

.main .garden__item.with-colors:hover .garden__colors {
  opacity: 1;
}

.main .garden__img {
  height: calc(100% - 80px);
  background-size: cover;
  background-position: center;
}

.main .garden__body {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -45px;
  width: 100%;
  padding: 15px 25px 72px;
  background-color: #fff;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.main .garden__name {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #000;
  margin-bottom: 5px;
}

.main .garden__price {
  font-weight: 800;
  font-size: 24px;
  line-height: 100%;
  color: #66b269;
}

.main .garden__price .old-price {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: #181e25;
  opacity: 0.5;
  padding-left: 10px;
}

.main .garden__btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background-color: #66b269;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 11px;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.main .garden__btn:hover {
  opacity: 0.8;
}

.main .garden__raiting {
  position: absolute;
  right: 22px;
  top: -70px;
  width: 60px;
  height: 60px;
  background: #ffcc18;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  border-radius: 50%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  opacity: 0;
}

.main .garden__raiting img {
  width: 17px;
  height: 16px;
  margin-left: 3px;
}

.main .garden__colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -7.5px;
  opacity: 0;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.main .garden__colors__item {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin: 7.5px;
  background-color: #eee;
}

.main .garden__colors__item.green {
  background-color: #005340;
}

.main .garden__colors__item.brown {
  background-color: #5e2027;
}

.main .garden__colors__item.dark-brown {
  background-color: #442e2a;
}

.main .calculate {
  padding-top: 100px;
}

.main .calculate h2 {
  padding-bottom: 20px;
}

.main .calculate__wrap {
  color: #fff;
  background: -o-linear-gradient(177.21deg, #54a657 5.54%, #66b269 97.81%);
  background: linear-gradient(272.79deg, #54a657 5.54%, #66b269 97.81%);
  border-radius: 10px;
  padding: 35px 109px 45px;
  margin-top: 30px;
  position: relative;
}

.main .calculate__wrap form {
  z-index: 2;
  position: relative;
}

.main .calculate__wrap .callback-form {
  top: -10px;
  position: relative;
}

/* .main .calculate__wrap:after {
  content: "";
  background-image: url(../img/vegetables.png);
  background-size: cover;
  position: absolute;
  right: -55px;
  bottom: -54px;
  width: 361px;
  height: 244px;
} */

.calculate__wrap__video{
  position: absolute;
  border-radius: 10px;
  right: -55px;
  bottom: -54px;
  width: 361px;
  height: 244px;
  z-index: 1000;
}
img.back_img{
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
img.play_video {
  /* content: "";
  background-image: url(../img/play_video.png);
  background-size: cover; */
  position: absolute;
  right: 42%;
  bottom: 45%;
  width: 50px;
  height: 50px;
}

.main .calculate__wrap .row-flex {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -12.5px -17.5px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.main .calculate__wrap .row-flex .col-4 {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 33.3333%;
  flex: 1 1 33.3333%;
  padding: 12.5px 17.5px;
}

.main .calculate__wrap .result-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
}

.main .calculate__wrap .result-price {
  font-weight: 800;
  font-size: 48px;
  line-height: 100%;
  padding-top: 10px;
}

.main .calculate__wrap .callback-form p {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #fff;
}

.main .calculate__wrap .callback-agree {
  padding-top: 16px;
  font-size: 14px;
  line-height: 150%;
}

.main .calculate__wrap .callback-agree a {
  color: #fff;
}

.main .calculate__wrap .callback-row {
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 692px;
  margin: -8.5px;
}

.main .calculate__wrap .callback__col {
  -webkit-box-flex: 0;
  -ms-flex: 0 50%;
  flex: 0 50%;
  padding: 8.5px;
}

.main .advantages {
  padding-top: 129px;
}

.main .advantages__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  z-index: 2;
  position: relative;
}

.main .advantages .row-flex {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -15px;
}

.main .advantages .col-4 {
  padding: 15px;
  -webkit-box-flex: 0;
  -ms-flex: 0 33.3333%;
  flex: 0 33.3333%;
}

.main .advantages__item {
  padding: 20px 30px;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04),
    0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04),
    0px 0px 1px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  height: 268px;
  position: relative;
  overflow: hidden;
}

.main .advantages__desc {
  padding-top: 10px;
  font-size: 16px;
  line-height: 20px;
  z-index: 2;
  position: relative;
}

.main .advantages__img {
  position: absolute;
}

.main .advantages .advent1 .advantages__img {
  right: 15px;
  bottom: 19px;
}

.main .advantages .advent2 .advantages__img {
  right: 19px;
  bottom: 24px;
}

.main .advantages .advent3 .advantages__img {
  right: 45px;
  bottom: 34px;
}

.main .advantages .advent4 .advantages__img {
  right: 40px;
  bottom: 32px;
}

.main .advantages .advent5 .advantages__img {
  right: 25px;
  bottom: 41px;
}

.main .advantages .advent6 .advantages__img {
  right: 35px;
  bottom: 35px;
}

.main .call {
  padding-top: 266px;
}

.main .call__wrap {
  padding: 55px 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: -o-linear-gradient(177.34deg, #56aa5a 8.98%, #66b269 97.82%);
  background: linear-gradient(272.66deg, #56aa5a 8.98%, #66b269 97.82%);
  border-radius: 10px;
  color: #fff;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
}

.main .call__wrap:before {
  content: "";
  background-image: url(../img/sadovnik.png);
  background-size: cover;
  position: absolute;
  left: -71px;
  bottom: 0;
  width: 493px;
  height: 497px;
}

.main .call__form {
  max-width: 726px;
  width: 100%;
}

.main .call__title {
  font-weight: bold;
  font-size: 36px;
  line-height: 100%;
  padding-bottom: 10px;
}

.main .call__desc {
  font-size: 20px;
  line-height: 100%;
  padding-bottom: 27px;
}

.main .call__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: -13px;
}

.main .call__row .col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 50%;
  flex: 0 50%;
  padding: 13px;
}

.main .call__agree {
  padding-top: 22px;
  font-size: 14px;
  line-height: 150%;
}

.main .call__agree a {
  color: #fff;
}

.main .garant {
  padding-top: 100px;
}

.main .garant p {
  font-size: 16px;
  line-height: 150%;
  opacity: 0.8;
  max-width: 1150px;
}

.main .garant .section-title {
  padding-bottom: 10px;
}

.main .garant__item {
  text-align: center;
  font-size: 20px;
  line-height: 130%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main .garant__ico {
  background: #66b269;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main .garant__text {
  padding-top: 18px;
}

.main .garant .row-flex {
  padding-top: 40px;
  margin: -15px;
}

.main .garant .col-3 {
  padding: 15px;
}

.main .dillers {
  margin-top: 100px;
  background: #f3c00b;
  padding: 50px 0 56px;
}

.main .dillers .section-title {
  padding-bottom: 10px;
}

.main .dillers p {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
}

.main .dillers .row-flex {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: -15px;
  padding-top: 27px;
}

.main .dillers .col-3 {
  padding: 15px;
  -webkit-box-flex: 0;
  -ms-flex: 0 25%;
  flex: 0 25%;
}

.main #main-map {
  height: 565px;
  position: relative;
}

.main #main-map .main-map__block {
  position: absolute;
  left: calc((100vw - 1308px) / 2);
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #e3e3e3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04),
    0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04),
    0px 0px 1px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  max-width: 406px;
  width: 100%;
  padding: 35px 30px 40px;
}

.main #main-map .main-map__block .main-map__info + .main-map__info {
  margin-top: 25px;
}

.main #main-map .main-map__block .main-map__info {
  font-family: Open Sans;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 140%;
}

.main #main-map .main-map__block .main-map__info__ico {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  margin-right: 10px;
  text-align: center;
}

.header {
  padding: 25px 0 32px;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04),
    0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04),
    0px 0px 1px rgba(0, 0, 0, 0.04);
  z-index: 999;
}

.header-logo img {
  max-width: 157px;
}

.header-address {
  padding-left: 64px;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
}

.header-address img {
  padding-right: 10px;
}

.header .mobile-menu {
  display: none;
}

.header .mobile-btn {
  display: none;
}

.header .mobile-btn .visuallyHidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.header .mobile-btn .checkbox1:checked + .for-checkbox1 > .hamburger1 > .bar1 {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 5%;
  -ms-transform-origin: 5%;
  transform-origin: 5%;
  width: 24px;
  top: 2px;
}

.header .mobile-btn .checkbox1:checked + .for-checkbox1 > .hamburger1 > .bar2 {
  -webkit-transform: translateX(-40px);
  -ms-transform: translateX(-40px);
  transform: translateX(-40px);
  background-color: transparent;
}

.header .mobile-btn .checkbox1:checked + .for-checkbox1 > .hamburger1 > .bar3 {
  -webkit-transform: translateX(40px);
  -ms-transform: translateX(40px);
  transform: translateX(40px);
  background-color: transparent;
}

.header .mobile-btn .checkbox1:checked + .for-checkbox1 > .hamburger1 > .bar4 {
  -webkit-transform-origin: 5%;
  -ms-transform-origin: 5%;
  transform-origin: 5%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 24px;
}

.header-phone {
  padding-left: 215px;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
}

.header-phone a {
  text-decoration: none;
  color: #181e25;
}

.header-callback {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: right;
}

.header-bottom {
  padding-top: 30px;
}

.header-menu__link {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #181e25;
  text-decoration: none;
  -webkit-transition: 0.4s all;
  -o-transition: 0.4s all;
  transition: 0.4s all;
  position: relative;
  z-index: 1;
}

.header-menu__link + a {
  margin-left: 35px;
}

.footer {
  margin-top: 40px;
}

.footer-top {
  padding: 25px 0;
}

.footer-top .row-flex {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer-top .footer-logo {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 10px;
}

.footer-top .footer-col:nth-child(2) {
  margin-right: 40px;
}

.footer-top .footer-col:nth-child(3) {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.footer-top .footer-contacts {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 265px;
  flex: 0 1 265px;
}

.footer-top .footer__address {
  font-size: 14px;
  text-decoration: underline;
}

.footer-top .footer__email a {
  font-size: 14px;
  color: #181e25;
  padding-top: 10px;
}

.footer-top .footer__callback {
  padding-top: 15px;
}

.footer-top .footer__callback .btn {
  width: 100%;
}

.footer-top .footer__phone {
  padding-top: 5px;
}

.footer-top .footer__phone a {
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: #181e25;
  font-family: Open Sans;
}

.footer-bottom {
  border-top: 1px solid #cfcfcf;
  font-size: 15px;
  font-family: Open Sans;
  padding: 15px 0;
}

.footer-bottom a {
  color: #181e25;
}

.footer__menu a {
  color: #181e25;
  font-size: 14px;
}

.footer__menu .bold {
  font-weight: bold;
}

/*Typography*/

.btn {
  padding: 13px 22px;
  background: #66b269;
  border-radius: 6px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.04em;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  text-align: center;
  cursor: pointer;
  position: relative;
  display: inline-block;
}

.btn:hover {
  background-color: #75b977;
}

.btn:active {
  background-color: #2d6e2f;
}

.left-branch {
  position: relative;
}

.left-branch:before {
  content: "";
  position: absolute;
  background-image: url(../img/branch.png);
  width: 384px;
  height: 670px;
  background-size: cover;
  z-index: -2;
  left: 0;
  top: 0;
}

.right-branch {
  position: relative;
}

.right-branch:before {
  content: "";
  position: absolute;
  background-image: url(../img/right-branch.png);
  width: 870px;
  height: 990px;
  background-size: cover;
  z-index: -2;
  right: 0;
  bottom: 0;
}

input[type="text"] {
  background: #ffffff;
  border-radius: 4px;
  border: none;
  padding: 0 15px;
  height: 45px;
  width: 100%;
}

input[type="text"]::-webkit-input-placeholder {
  color: #181e25;
}

input[type="text"]::-moz-placeholder {
  color: #181e25;
}

input[type="text"]:-ms-input-placeholder {
  color: #181e25;
}

input[type="text"]::-ms-input-placeholder {
  color: #181e25;
}

input[type="text"]::placeholder {
  color: #181e25;
}

input[type="submit"].btn {
  text-transform: none;
  border: none;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  width: 100%;
}

input[type="submit"].btn:hover {
  opacity: 0.8;
}

.btn-yellow {
  background: #ffcc18;
  border-radius: 4px;
  color: #181e25;
  border: none;
  padding: 15px;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 16px;
  line-height: 15px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}

.btn-yellow:hover {
  background-color: #ecb905;
}

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox + label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.custom-checkbox + label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  background: #ffffff;
  border-radius: 4px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.custom-checkbox:checked + label::before {
  border-color: #0b76ef;
  background-color: #0b76ef;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

/* стили при наведении курсора на checkbox */

.custom-checkbox:not(:disabled):not(:checked) + label:hover::before {
  border-color: #b3d7ff;
}

/* стили для активного состояния чекбокса (при нажатии на него) */

.custom-checkbox:not(:disabled):active + label::before {
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

/* стили для чекбокса, находящегося в фокусе */

.custom-checkbox:focus + label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */

.custom-checkbox:focus:not(:checked) + label::before {
  border-color: #80bdff;
}

/* стили для чекбокса, находящегося в состоянии disabled */

.custom-checkbox:disabled + label::before {
  background-color: #e9ecef;
}

/*End typography*/

/*Select style*/

.ss-main .ss-single-selected {
  padding: 0 15px;
  height: 45px;
  border: none;
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  color: #181e25;
}

.ss-main .ss-single-selected .ss-arrow span {
  border: solid #181e25;
  border-width: 0 1.5px 1.5px 0;
  padding: 4px;
}

.ss-content {
  border: none;
  background: #ffffff;
  -webkit-box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.06),
    0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.04),
    0px 0px 1px rgba(0, 0, 0, 0.04);
  border-radius: 0px 0px 4px 4px;
}

.ss-content .ss-list .ss-option {
  border-top: 1px solid #d0d3d6;
  color: #181e25;
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  padding: 10px 15px;
}

.ss-option:last-child:hover {
  border-radius: 0px 0px 4px 4px;
}

.ss-content .ss-list .ss-option.ss-highlighted,
.ss-content .ss-list .ss-option:hover {
  background-color: #81573e;
}

/*end select*/

/*Modal*/

.modal-product {
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04),
    0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04),
    0px 0px 1px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  max-width: 1060px;
  width: 100%;
}

.modal-product .product .row-flex {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.modal-product .product__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 470px;
  flex: 0 1 470px;
  height: 470px;
  background-size: contain;
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.modal-product .product__info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 30px;
}

.modal-product .product__title {
  font-weight: bold;
  font-size: 32px;
  line-height: 120%;
}

.modal-product .product__price {
  font-weight: 800;
  font-size: 24px;
  line-height: 100%;
  color: #66b269;
  padding-top: 10px;
}

.modal-product .product__price .old-price {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  opacity: 0.5;
  color: #181e25;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  padding-left: 15px;
}

.modal-product .product-char {
  padding-top: 15px;
}

.modal-product .product-char__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #a2a5a8;
  line-height: 100%;
}

.modal-product .product-colors {
  padding-top: 30px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  /* для элемента label связанного с .custom-radio */
  /* создание в label псевдоэлемента  before со следующими стилями */
  /* стили при наведении курсора на радио */
  /* стили для активной радиокнопки (при нажатии на неё) */
  /* стили для радиокнопки, находящейся в фокусе */
  /* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
  /* стили для радиокнопки, находящейся в состоянии checked */
}

.modal-product .product-colors__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.modal-product .product-colors .custom-radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.modal-product .product-colors .custom-radio + label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.modal-product .product-colors .custom-radio + label::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  background-color: #adb5bd;
  border-radius: 50%;
  margin-right: 15px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.modal-product .product-colors .green.custom-radio + label::before {
  background-color: #005340;
}

.modal-product .product-colors .brown.custom-radio + label::before {
  background-color: #5e2027;
}

.modal-product .product-colors .darkbrown.custom-radio + label::before {
  background-color: #442e2a;
}
.modal-product .product-colors .yellow.custom-radio + label::before {
  background-color: yellow;
}
.modal-product .product-colors .orange.custom-radio + label::before {
  background-color: orange;
}

.modal-product .product-colors .custom-radio:focus + label::before {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.modal-product
  .product-colors
  .custom-radio:focus:not(:checked)
  + label::before {
  border-color: none;
}

.modal-product .product-colors .custom-radio:checked + label::before {
  border: none;
  background-image: url(../img/accept-ico.svg);
}

.modal-product .product-amount {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  padding-top: 30px;
}

.modal-product .product-amount .btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 13px;
}

.modal-product .product-amount .c-input-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 9px 21px 9px 27px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
}

.modal-product .product-amount .c-input-number .c-input-number__buffer {
  padding-left: 20px;
  min-width: 10px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.modal-product .product-amount .c-input-number .c-input-number__measure {
  padding-right: 25px;
}

.modal-product .product-amount .c-input-number button {
  background-color: #fff;
  border: none;
  font-size: 24px;
  font-family: "Open Sans";
  cursor: pointer;
  outline: none;
  font-weight: 600;
}

.modal-product .product-amount .row-flex {
  padding-top: 15px;
}

.modal-product .fancybox-button {
  background-image: url(../img/close.svg);
  background-size: cover;
  width: 25px;
  height: 25px;
  top: 20px;
  right: 25px;
  opacity: 1;
}

.modal-product .fancybox-button svg {
  display: none;
}

.modal-product .product-callback {
  padding: 30px 54px 35px;
  background: #66b269;
  border-radius: 10px;
  margin-top: 30px;
}

.modal-product .product-callback .row-flex {
  margin: -10px;
}

.modal-product .product-callback .col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.3333%;
  flex: 0 0 33.3333%;
  padding: 10px;
}

.modal-product .product-callback .agree {
  color: #fff;
  font-size: 14px;
  line-height: 150%;
  margin-top: 16px;
}

.modal-product .product-callback .agree a {
  color: #fff;
}

.modal-product .similar-products {
  padding-top: 30px;
}

.modal-product .similar-products h2 {
  font-size: 24px;
  padding-bottom: 15px;
  line-height: 120%;
}

.modal-product .similar-products .row-flex {
  margin: -15px;
}

.modal-product .similar-products .col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.3333%;
  flex: 0 0 33.3333%;
  padding: 15px;
}

.modal-product .similar-products__item {
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04),
    0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04),
    0px 0px 1px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: #181e25;
}

.modal-product .similar-products__price {
  font-weight: 800;
  font-size: 24px;
  line-height: 100%;
  color: #66b269;
}

.modal-product .similar-products__price .old-price {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  opacity: 0.5;
  color: #181e25;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  padding-left: 5px;
}

.modal-product .similar-products__img {
  height: 271px;
  background-size: cover;
}

.modal-product .similar-products__body {
  padding: 17px 15px;
}

.modal-product .similar-products__title {
  font-size: 16px;
  line-height: 130%;
  padding-bottom: 10px;
}

/*end modal*/

@media screen and (max-width: 1399px) {
  .main .calculate__wrap:after {
    right: 25px;
    bottom: -32px;
    width: 274px;
    height: 184px;
  }
  .calculate__wrap__video {
    right: 15px;
    bottom: -54px;
    width: 361px;
    height: 244px;
  }

  .main .call {
    padding-top: 180px;
  }

  .main .call__wrap:before {
    width: 393px;
    height: 397px;
    left: 0;
  }

  .main #main-map .main-map__block {
    left: calc((100vw - 100% + 20px) / 2);
  }

  .right-branch:before {
    width: 410px;
    height: 490px;
  }
}

@media screen and (max-width: 1250px) {
  .main .calculate__wrap .callback-form {
    top: 0;
    padding-top: 20px;
  }

  .main .calculate__wrap {
    padding: 35px 109px 155px;
  }

  .calculate__wrap__video {
    right: 15px;
    bottom: -54px;
    width: 361px;
    height: 244px;
  }


  .main .calculate__wrap:after {
    display: none;
  }

  .main .call__wrap:before {
    display: none;
  }

  .main .call__form {
    max-width: 100%;
  }

  .header-phone {
    padding-left: 35px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
  }
}

@media screen and (max-width: 1080px) {
  .main-banner__right {
    display: none;
  }

  .main-advantages {
    max-width: 100%;
  }

  .main .dillers .row-flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .main .dillers .col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 50%;
    flex: 0 50%;
  }

  .header-address {
    display: none;
  }

  .header .mobile-menu {
    display: block;
    position: absolute;
    width: 100vw;
    height: calc(100vh - 89px);
    background-color: rgba(102, 178, 105, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    top: 67px;
    right: -100%;
    z-index: 99;
    -webkit-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    transition: 0.4s all ease;
    color: #fff;
  }

  .header .mobile-menu .mobile-links__item {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-bottom: 1px solid #399c3e;
    text-transform: uppercase;
  }

  .header .mobile-menu .mobile-contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 20px;
    font-size: 18px;
    font-weight: bold;
    margin: -10px -20px;
  }
  .mobile-contacts__item{
    margin-bottom: 10px;
  }
  .header .mobile-menu .mobile-contacts > div {
    padding: 10px 20px;
  }

  .header .mobile-menu .mobile-contacts > div img {
    -webkit-filter: brightness(1100%);
    filter: brightness(1100%);
    padding-right: 5px;
  }

  .header .mobile-menu .mobile-contacts a {
    color: #fff;
    text-decoration: none;
  }

  .header .mobile-menu.open-menu {
    right: 0;
  }

  .header .mobile-btn {
    display: block;
  }

  .header-hamburger {
    display: block;
    position: relative;
    width: 27px;
    height: 20px;
  }

  .header-hamburger .bar {
    padding: 0;
    width: 27px;
    height: 3px;
    background-color: #000;
    display: block;
    border-radius: 5px;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    position: absolute;
  }

  .header-hamburger .bar1 {
    top: 0;
  }

  .header-hamburger .bar2,
  .header-hamburger .bar3 {
    top: 9.5px;
  }

  .header-hamburger .bar4 {
    bottom: 0;
  }

  .header-phone {
    display: none;
  }

  .header-callback {
    display: none;
  }

  .header-bottom {
    display: none;
  }

  .left-branch:before {
    display: none;
  }

  .right-branch:before {
    display: none;
  }

  .modal-product .product__img {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 300px;
  }

  .modal-product .similar-products {
    display: none;
  }
}

@media screen and (max-width: 910px) {
  h2 .green-title {
    font-size: 56px;
    line-height: 120%;
    left: 0;
  }

  .container {
    padding: 0 30px;
  }

  .main-banner {
    min-height: auto;
  }

  .main-banner .plate {
    margin-left: 0;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
  }

  .main-banner .plate__title {
    font-size: 24px;
    line-height: 115%;
  }

  .main-banner .plate__description {
    font-size: 16px;
    line-height: 130%;
    padding-top: 10px;
  }

  .main-banner .plate .btn {
    font-size: 16px;
    margin-top: 20px;
  }

  .main .garden .row-flex .garden-column {
    -webkit-box-flex: 0;
    -ms-flex: 0 50%;
    flex: 0 50%;
  }

  .main .calculate__wrap {
    padding: 40px 15px 195px;
  }
  .calculate__wrap__video {
    right: 15px;
    bottom: -54px;
    width: 361px;
    height: 244px;
  }

  .main .advantages .col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }

  .main .call__wrap {
    padding: 20px 20px 30px;
  }

  .main .garant .row-flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .main .garant .col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }

  .main #main-map {
    height: 400px;
  }

  .main #main-map ymaps.ymaps-2-1-78-map {
    display: none;
  }

  .main #main-map .main-map__block {
    max-width: 100%;
  }

  .header {
    padding: 23px 0 26px;
  }

  .header-logo img {
    max-width: 125px;
  }

  .btn {
    font-size: 16px;
  }

  .modal-product {
    padding: 40px 15px 15px;
  }

  .modal-product .product .row-flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .modal-product .product__img {
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    margin-bottom: 20px;
  }

  .modal-product .product__info {
    padding-left: 0;
  }

  .modal-product .fancybox-button {
    top: 10px;
    right: 15px;
  }

  .modal-product .product-callback {
    padding: 15px;
  }

  .modal-product .product-callback .col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
}

@media screen and (max-width: 670px) {
  .main-banner .plate__description br {
    display: none;
  }

  .main-advantages__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .main-advantages__value {
    width: 76px;
    text-align: center;
  }

  .main .garden {
    padding-top: 90px;
  }

  .main .garden .row-flex .garden-column {
    -webkit-box-flex: 0;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }

  .main .garden__body {
    bottom: 0 !important;
  }

  .main .garden__raiting {
    right: 22px;
    top: 22px;
    opacity: 1;
  }

  .main .garden__colors {
    opacity: 1;
  }

  .main .calculate {
    padding-top: 80px;
  }

  .main .calculate__wrap .callback-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .main .calculate__wrap .callback__col {
    -webkit-box-flex: 0;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }

  .main .advantages .col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .main .call {
    padding-top: 80px;
  }

  .main .call__title {
    font-size: 29px;
    padding-bottom: 5px;
  }

  .main .call__desc {
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    padding-bottom: 20px;
  }

  .main .call__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -5px -13px;
  }

  .main .call__row .col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 100%;
    flex: 0 100%;
    padding: 5px 13px;
  }

  .main .garant {
    padding-top: 80px;
  }

  .main .garant .col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding-bottom: 50px;
  }

  .main .dillers {
    margin-top: 60px;
  }

  .main .dillers .row-flex {
    margin: -7.5px;
  }

  .main .dillers .col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 100%;
    flex: 0 100%;
    padding: 7.5px;
  }

  .main #main-map .main-map__block {
    left: calc((100vw - 100% + 60px) / 2);
    max-width: calc(100vw - 60px);
  }

  .footer .row-flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer-top .footer-logo {
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-top .footer-col:nth-child(2) {
    -webkit-box-flex: 0;
    -ms-flex: 0 50%;
    flex: 0 50%;
    margin-right: 0;
  }

  .footer-top .footer-col:nth-child(3) {
    -webkit-box-flex: 0;
    -ms-flex: 0 50%;
    flex: 0 50%;
  }

  .footer-top .footer-contacts {
    margin: auto;
    text-align: center;
    margin-top: 20px;
  }
}

@media screen and (max-width: 440px) {
  .modal-product .product-amount .btn {
    padding: 13px 15px;
    font-size: 15px;
  }
  .calculate__wrap__video{
    right: 10%;
    bottom: -65px;
    width: 80%;
    height: 184px;
  }

  .modal-product .product-amount .c-input-number {
    padding: 9px 11px 9px 17px;
  }

  .modal-product .product-amount .c-input-number .c-input-number__buffer {
    padding-left: 10px;
  }

  .modal-product .product-amount .c-input-number .c-input-number__measure {
    padding-right: 15px;
  }
}

@media screen and (max-width: 365px) {
  .container {
    padding: 0 15px;
  }
}
