@font-face {
  font-family: "Noah";
  src: url("../fonts/Noah-Bold.woff2") format("woff2"), url("../fonts/Noah-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noah";
  src: url("../fonts/Noah-Regular.woff2") format("woff2"), url("../fonts/Noah-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noah";
  src: url("../fonts/Noah-Medium.woff2") format("woff2"), url("../fonts/Noah-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noah";
  src: url("../fonts/Noah-ExtraBold.woff2") format("woff2"), url("../fonts/Noah-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth; 
}


button,
input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

button:focus {
  box-shadow: none !important;
}

*:focus {
  outline: none;
}

body {
  font: 400 16px "Noah", sans-serif;
  position: relative;
}

a {
  display: inline-block;
  font: inherit;
  color: inherit;
  transition: 300ms;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

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

a img {
  border: none;
  outline: none;
}

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

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

@media only screen and (max-width: 1340px) {
  .container {
    max-width: 944px;
  }
}
@media only screen and (max-width: 991px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
.checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.checkbox__inner {
  flex-shrink: 0;
  margin-right: 17px;
  width: 27px;
  height: 27px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .checkbox__inner {
    width: 24px;
    height: 24px;
  }
}
.checkbox__inner > span {
  width: 100%;
  height: 100%;
  border: 1px solid #c64830;
  border-radius: 50%;
  display: block;
}
.checkbox input {
  display: none;
}
.checkbox input:checked + span::before {
  position: absolute;
  top: 7px;
  left: 7px;
  display: block;
  content: "";
  width: 13px;
  height: 13px;
  background: #c64830;
  border-radius: 50%;
}
@media only screen and (max-width: 991px) {
  .checkbox input:checked + span::before {
    width: 11px;
    height: 11px;
  }
}
.checkbox__text {
  font-size: 20px;
  color: #000000;
}
@media only screen and (max-width: 991px) {
  .checkbox__text {
    font-size: 18px;
  }
}

.header {
  height: 106px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .header {
    height: 80px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__aside {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 55%;
}
@media only screen and (max-width: 1340px) {
  .header__aside {
    width: 74%;
  }
}
@media only screen and (max-width: 991px) {
  .header__aside {
    width: auto;
    flex-direction: column;
    align-items: flex-start;
  }
}
.header__logo {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .header__logo {
    height: 36px;
  }
}
.header__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  max-width: 266px;
  color: #000000;
}
@media only screen and (max-width: 1340px) {
  .header__text {
    display: none;
  }
}
.header__numbers {
  display: flex;
  align-items: center;
}
.header__icon {
  display: flex;
  align-items: flex-start;
  margin-right: 7px;
}
@media only screen and (max-width: 991px) {
  .header__info {
    font-size: 12px;
  }
}
.header__info span {
  font-weight: 700;
}
.header__socials {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .header__socials {
    margin-top: 10px;
  }
}
.header__icons {
  display: flex;
  align-items: center;
}
.header__icon {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  .header__icon {
    margin-right: 5px;
    width: 20px;
    height: 20px;
  }
}
.header__call {
  font-weight: 800;
  font-size: 20px;
}
@media only screen and (max-width: 991px) {
  .header__call {
    font-size: 16px;
  }
}

.showcase {
  background: url(../images/showcase-bg.png) 50% 50% no-repeat;
  background-size: cover;
  height: auto;
}
.showcase__inner {
  position: relative;
  padding-top: 35px;
  padding-bottom: 35px;
}
.showcase__img {
  position: absolute;
  bottom: 25px;
  right: 0;
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 1340px) {
  .showcase__img {
    bottom: 24%;
    width: 35%;
  }
}
@media only screen and (max-width: 991px) {
  .showcase__img {
    width: 71%;
    bottom: 0;
    position: relative;
    margin: 0 auto;
    margin-top: 34px;
  }
}
.showcase__title {
  font-weight: 800;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 35px;
  color: #ffffff;
}
@media only screen and (max-width: 991px) {
  .showcase__title {
    font-size: 26px;
    line-height: 32px;
  }
}
.showcase__list li {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-size: 24px;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .showcase__list li {
    font-size: 20px;
    margin-bottom: 23px;
    align-items: flex-start;
  }
}
.showcase__list li span {
  margin-left: 10px;
  display: block;
}
.showcase__list li:last-child {
  margin-bottom: 0;
}
.showcase__btn {
  display: flex;
  align-items: center;
  background: #c64830;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  max-width: 640px;
  position: relative;
  height: 80px;
  margin-top: 44px;
  font-weight: 800;
  font-size: 24px;
  color: #fff;
  padding-left: 29px;
}
@media only screen and (max-width: 991px) {
  .showcase__btn {
    padding-left: 20px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .showcase__btn > img {
    display: none;
  }
}
.showcase__btn span {
  display: block;
  margin-left: 10px;
}
.showcase__btn--img {
  position: absolute;
  right: 0;
  height: 102px;
  width: 146px;
}
@media only screen and (max-width: 991px) {
  .showcase__btn--img {
    position: relative;
    right: 0;
    width: 95px;
    height: 64px;
    flex-shrink: 0;
  }
}

.question__second {
  display: none;
}
.question__third {
  display: none;
}
.question__title {
  text-align: center;
  font-weight: 400;
  font-size: 32px;
  text-align: center;
  color: #000000;
  margin-bottom: 20px;
  margin-top: 50px;
}
@media only screen and (max-width: 991px) {
  .question__title {
    font-size: 24px;
    margin-bottom: 25px;
  }
}
.question__title span {
  display: block;
  font-weight: 700;
  color: rgb(57, 152, 71);
}
.question__label {
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  margin-bottom: 15px;
}
.question__progress {
  height: 16px;
  max-width: 625px;
  background: #d9d9d9;
  border-radius: 80px;
  margin-bottom: 31px;
}
.question__progress > div {
  height: 16px;
  border-radius: 80px;
}
.question__subtitle {
  font-weight: 800;
  font-size: 32px;
  color: #000000;
  margin-bottom: 35px;
}
@media only screen and (max-width: 991px) {
  .question__subtitle {
    font-size: 24px;
  }
}
.question form .checkbox {
  margin-bottom: 20px;
}
.question form .checkbox:last-child {
  margin-bottom: 0;
}
.question__btn {
  background: linear-gradient(180deg, #f46a4f 0%, #c64830 100%);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  width: 263px;
  height: 65px;
  color: #fff;
  border: none;
  font-size: 24px;
  line-height: 30px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 31px;
}
.question__btn2 {
  background: linear-gradient(180deg, #f46a4f 0%, #c64830 100%);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  width: 263px;
  height: 65px;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 24px;
  line-height: 30px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 31px;
}


@media only screen and (max-width: 991px) {
  .question__btn {
    width: 230px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 37px;
  }
}
.question-new {
  background: #f5fff7;
}
.question-new__inner {
  padding: 19px 0;
}
.question-new__title {
  font-weight: 700;
  font-size: 30px;
  color: #000000;
  margin-bottom: 26px;
}
@media only screen and (max-width: 991px) {
  .question-new__title {
    font-size: 24px;
    text-align: center;
  }
}
.question-new__items {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .question-new__items {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.question-new__item {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
@media only screen and (max-width: 991px) {
  .question-new__item img {
    height: 37px;
  }
}
.question-new__item span {
  display: block;
  margin-left: 10px;
  font-size: 20px;
  color: #000000;
}
@media only screen and (max-width: 991px) {
  .question-new__item span {
    font-size: 16px;
  }
}

.squad {
  margin-top: 50px;
  margin-bottom: 70px;
}
.squad__title {
  text-align: center;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .squad__title {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 25px;
  }
}
.squad__title span {
  font-weight: 700;
  color: #c64830;
  display: block;
}
@media only screen and (max-width: 991px) {
  .squad__container {
    margin: 0 -20px;
  }
}
.squad__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px 50px;
}
@media only screen and (max-width: 1340px) {
  .squad__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 991px) {
  .squad__items {
    display: flex;
    gap: 0;
  }
}
.squad__img {
  display: flex;
  align-items: flex-start;
  border-radius: 10px;
  margin-bottom: 30px;
}
.squad__img img {
  border-radius: 10px;
}
@media only screen and (max-width: 991px) {
  .squad__img img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
  }
}
.squad__text {
  text-align: center;
  font-size: 20px;
}
.squad__item {
  padding: 0 25px;
}
.squad .swiper-button-next,
.squad .swiper-button-prev {
  margin: 0;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
  display: none;
}
@media only screen and (max-width: 991px) {
  .squad .swiper-button-next,
.squad .swiper-button-prev {
    display: flex;
  }
}
.squad .swiper-button-next::after,
.squad .swiper-button-prev::after {
  display: none;
}
.squad .swiper-button-prev {
  transform: rotate(-180deg) translateY(50%);
  left: 0;
}

.benefit {
  background: #eaeaea;
  padding: 50px 0 60px 0;
}
@media only screen and (max-width: 767px) {
  .benefit {
    padding: 38px 0;
  }
}
@media only screen and (max-width: 767px) {
  .benefit .container {
    padding: 0;
  }
}
.benefit__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 48px;
}
@media only screen and (max-width: 767px) {
  .benefit__title {
    font-size: 24px;
    margin-bottom: 50px;
  }
}
.benefit__items {
  display: flex;
  justify-content: space-between;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .benefit__items {
    display: block;
  }
}
.benefit__item {
  width: 100%;
  margin-right: 24px;
}
@media only screen and (max-width: 1340px) {
  .benefit__item {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .benefit__item {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .benefit__item:last-child {
    margin-bottom: 0;
  }
}
.benefit__item:last-child {
  margin-right: 0;
}
.benefit__item:last-child .benefit__block {
  background-image: url(../images/vigoda-3.png);
  padding: 41px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (max-width: 1340px) {
  .benefit__item:last-child .benefit__block {
    padding: 30px 25px;
  }
}
@media only screen and (max-width: 991px) {
  .benefit__item:last-child .benefit__block {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .benefit__item:last-child .benefit__block {
    position: relative;
  }
  .benefit__item:last-child .benefit__block::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 45.31%);
  }
}
@media only screen and (max-width: 991px) {
  .benefit__item:last-child .benefit__block .benefit__head {
    max-width: 70%;
    z-index: 5;
  }
}
.benefit__item:nth-child(2) .benefit__block {
  background-image: url(../images/vigoda-2.png);
  padding: 48px 28px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (max-width: 1340px) {
  .benefit__item:nth-child(2) .benefit__block {
    padding: 30px 25px;
  }
}
.benefit__item:nth-child(2) .benefit__block .benefit__head {
  max-width: 224px;
}
@media only screen and (max-width: 991px) {
  .benefit__item:nth-child(2) .benefit__block .benefit__head {
    max-width: 70%;
    z-index: 5;
  }
}
@media only screen and (max-width: 767px) {
  .benefit__item:nth-child(2) .benefit__block {
    position: relative;
  }
  .benefit__item:nth-child(2) .benefit__block::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 45.31%);
  }
}
.benefit__item:nth-child(2) .benefit__block .benefit__text {
  margin-top: 10px;
  z-index: 5;
}
.benefit__item:nth-child(2) .benefit__item-block .benefit__head {
  max-width: 286px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .benefit__item:nth-child(2) .benefit__item-block .benefit__head {
    max-width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .benefit__item:nth-child(2) .benefit__item-block .benefit__text {
    max-width: 65%;
  }
}
.benefit__item:nth-child(2) .benefit__item-block .benefit__image {
  transform: none;
  top: 14px;
}
.benefit__item:nth-child(1) .benefit__block {
  background-image: url(../images/vigoda-1.png);
  padding: 28px 20px 30px 20px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.benefit__item:nth-child(1) .benefit__block .benefit__text {
  max-width: 178px;
  margin-top: 13px;
}
@media only screen and (max-width: 991px) {
  .benefit__item:nth-child(1) .benefit__block .benefit__text {
    max-width: 40%;
  }
}
@media only screen and (max-width: 767px) {
  .benefit__item:nth-child(1) .benefit__block .benefit__text {
    max-width: 55%;
  }
}
.benefit__item:nth-child(1) .benefit__block .benefit__head {
  max-width: 246px;
}
@media only screen and (max-width: 991px) {
  .benefit__item:nth-child(1) .benefit__block .benefit__head {
    max-width: 80%;
  }
}
@media only screen and (max-width: 991px) {
  .benefit__item:nth-child(1) .benefit__image {
    right: 45px;
  }
}
.benefit__item:nth-child(1) .benefit__item-block .benefit__text {
  margin-top: 9px;
}
@media only screen and (max-width: 767px) {
  .benefit__item:nth-child(1) .benefit__item-block .benefit__text {
    max-width: 50%;
  }
}
@media only screen and (max-width: 1340px) {
  .benefit__item:nth-child(1) .benefit__item-block .benefit__head {
    max-width: 180px;
  }
}
@media only screen and (max-width: 991px) {
  .benefit__item:nth-child(1) .benefit__item-block .benefit__head {
    max-width: 60%;
  }
}
.benefit__block {
  background-size: cover;
  background-position: center center;
  min-height: 340px;
}
@media only screen and (max-width: 1340px) {
  .benefit__block {
    min-height: 280px;
  }
}
@media only screen and (max-width: 991px) {
  .benefit__block {
    min-height: 175px;
  }
}
.benefit__head {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
@media only screen and (max-width: 1340px) {
  .benefit__head {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 991px) {
  .benefit__head {
    font-size: 24px;
    line-height: 30px;
  }
}
.benefit__text {
  font-size: 20px;
  line-height: 25px;
}
@media only screen and (max-width: 1340px) {
  .benefit__text {
    font-size: 16px;
    line-height: 22px;
    min-height: 44px;
  }
}
@media only screen and (max-width: 991px) {
  .benefit__text {
    font-size: 20px;
    line-height: 25px;
  }
}
.benefit__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 258px;
  height: 51px;
  background: #399847;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .benefit__btn {
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
    margin-top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .benefit__btn {
    margin-left: auto;
    margin-right: auto;
  }
}
.benefit__btn:hover {
  background: #30833c;
}
.benefit__item-block {
  position: relative;
  background: #c64830;
  padding: 26px 20px;
  min-height: 146px;
}
@media only screen and (max-width: 991px) {
  .benefit__item-block {
    min-height: 175px;
    padding: 28px 24px;
  }
}
.benefit__image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translate(0, -50%);
}
@media only screen and (max-width: 991px) {
  .benefit__image {
    right: 31px;
  }
}

/* material */
.material {
  background: url(../images/material-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 0 60px 0;
}
@media only screen and (max-width: 991px) {
  .material {
    padding: 50px 0 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  .material {
    padding: 50px 0 26px 0;
  }
}
.material__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 47px;
}
@media only screen and (max-width: 1340px) {
  .material__title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 991px) {
  .material__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}
.material__title span {
  color: #4caf50;
}
@media only screen and (max-width: 991px) {
  .material__title span {
    display: block;
  }
}
.material__items {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .material__items {
    flex-direction: column-reverse;
  }
}
.material__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 441px;
  min-width: 441px;
  margin-left: 95px;
}
@media only screen and (max-width: 1340px) {
  .material__image {
    min-width: 340px;
    width: 340px;
    margin-left: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .material__image {
    margin: 0 auto 35px auto;
  }
}
@media only screen and (max-width: 767px) {
  .material__image {
    min-width: auto;
    width: 211px;
  }
}
.material__head {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .material__head {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
  }
}
.material__list {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 58px;
}
@media only screen and (max-width: 991px) {
  .material__list {
    font-size: 20px;
    line-height: 24px;
    max-width: 285px;
    margin: 0 auto 17px auto;
  }
}
.material__info {
  font-size: 24px;
  line-height: 30px;
  max-width: 585px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .material__info {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.material__form {
  display: flex;
  margin-bottom: 22px;
}
@media only screen and (max-width: 991px) {
  .material__form {
    justify-content: center;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .material__form {
    flex-direction: column;
    align-items: center;
  }
}
.material__form input {
  width: 316px;
  height: 67px;
  background: #ffffff;
  border: 1px solid #868686;
  border-radius: 10px;
  padding: 0 20px;
  font-size: 24px;
  color: #000;
  margin-right: 12px;
}
@media only screen and (max-width: 1340px) {
  .material__form input {
    height: 60px;
    font-size: 20px;
    width: 280px;
  }
}
@media only screen and (max-width: 767px) {
  .material__form input {
    width: 264px;
    height: 56px;
    padding: 0 16px;
    margin: 0 auto 20px auto;
  }
}
.material__form input::-moz-placeholder {
  color: #a7a7a7;
}
.material__form input::-ms-input-placeholder {
  color: #a7a7a7;
}
.material__form input::placeholder {
  color: #a7a7a7;
}
.material__form button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 67px;
  border: 0;
  cursor: pointer;
  transition: 300ms;
  margin-left: 12px;
  width: 316px;
  background: #c64830;
  color: #fff;
  border-radius: 10px;
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 1340px) {
  .material__form button {
    width: 280px;
    height: 60px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .material__form button {
    width: 264px;
    height: 56px;
    margin: 15px auto 0;

  }
}
.material__form button:hover {
  background: #b1412b;
}
.material__end {
  font-size: 16px;
  color: #6d6d6d;
}
@media only screen and (max-width: 991px) {
  .material__end {
    text-align: center;
  }
}

/* sklad */
.sklad {
  padding: 50px 0;
}
@media only screen and (max-width: 991px) {
  .sklad {
    padding: 35px 0 50px 0;
  }
}
.sklad__title {
  text-align: center;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .sklad__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}
.sklad__title span {
  color: #399847;
  font-weight: 700;
  display: block;
}
.sklad__items {
  display: flex;
}
@media only screen and (max-width: 991px) {
  .sklad__items {
    display: block;
  }
}
.sklad__item {
  width: 100%;
  margin-right: 24px;
  height: 387px;
}
@media only screen and (max-width: 1340px) {
  .sklad__item {
    height: 324px;
  }
}
@media only screen and (max-width: 991px) {
  .sklad__item {
    margin-right: 0;
    margin-bottom: 25px;
  }
  .sklad__item:last-child {
    margin-bottom: 0;
  }
}
.sklad__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.sklad__item:last-child {
  margin-right: 0;
}

/* contacts */
.contacts {
  padding: 50px 0 60px 0;
  background: #f7f7f7;
}
@media only screen and (max-width: 991px) {
  .contacts {
    padding: 50px 0 0 0;
  }
}
.contacts__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .contacts__title {
    margin-bottom: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .contacts__title {
    font-size: 24px;
  }
}
.contacts__items {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 49px;
}
.contacts__map {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 636px;
  min-width: 636px;
  margin-left: 50px;
  height: 340px;
}
@media only screen and (max-width: 1340px) {
  .contacts__map {
    min-width: 500px;
    width: 500px;
    height: 300px;
  }
}
@media only screen and (max-width: 991px) {
  .contacts__map {
    min-width: auto;
    width: 100%;
    height: 320px;
    margin: 0;
  }
}
.contacts__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.contacts__map-mobile {
  display: none;
}
@media only screen and (max-width: 991px) {
  .contacts__map-mobile {
    display: flex;
  }
}
@media only screen and (max-width: 991px) {
  .contacts__map-desk {
    display: none;
  }
}
.contacts__block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .contacts__block {
    margin-bottom: 35px;
  }
}
.contacts__block:last-child {
  margin-bottom: 0;
}
.contacts__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 41px;
  background: #399847;
  border-radius: 50%;
  min-width: 41px;
  margin-right: 15px;
}
.contacts__text {
  font-size: 24px;
  font-weight: 700;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .contacts__text {
    font-size: 21px;
    margin-top: 8px;
  }
}
.contacts__subtext {
  font-size: 20px;
  line-height: 25px;
  max-width: 335px;
}
@media only screen and (max-width: 767px) {
  .contacts__subtext {
    font-size: 17px;
    line-height: 21px;
  }
}
.contacts .material__form {
  margin-left: 125px;
}
@media only screen and (max-width: 1340px) {
  .contacts .material__form {
    margin-left: 0;
    justify-content: center;
  }
}
@media only screen and (max-width: 991px) {
  .contacts .material__form {
    margin-bottom: 28px;
  }
}

/* footer */
.footer {
  background: #e6e6e6;
  padding: 22px 0 20px 0;
}
@media only screen and (max-width: 1340px) {
  .footer {
    padding: 32px 0;
  }
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 27px;
}
@media only screen and (max-width: 1340px) {
  .footer__top {
    display: block;
    margin-bottom: 30px;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  margin-right: 30px;
}
@media only screen and (max-width: 1340px) {
  .footer__logo {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.footer__logo img {
  width: 100%;
  height: 100%;
}
.footer__info {
  font-size: 16px;
  line-height: 20px;
  max-width: 266px;
}
@media only screen and (max-width: 1340px) {
  .footer__info {
    text-align: center;
  }
}
.footer__start {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1340px) {
  .footer__start {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.footer__adres {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 1340px) {
  .footer__adres {
    margin-bottom: 23px;
  }
  .footer__adres:last-child {
    margin-bottom: 0;
  }
}
.footer__adres-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  min-width: 20px;
}
.footer__adres-block {
  font-size: 16px;
  line-height: 20px;
}
.footer__adres-block p:first-child {
  margin-top: 3px;
}
.footer__adres-block p:last-child {
  font-weight: 700;
}
.footer__end {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1340px) {
  .footer__end {
    flex-direction: column-reverse;
  }
}
.footer__end-text {
  font-size: 14px;
  color: #9b9b9b;
}
@media only screen and (max-width: 1340px) {
  .footer__end-text {
    margin-top: 25px;
    text-align: center;
  }
}
.footer__contacts {
  display: flex;
  align-items: center;
}
.footer__social {
  margin-right: 12px;
  display: flex;
  align-items: center;
}
.footer__social li {
  margin-right: 8px;
}
.footer__social li:last-child {
  margin-right: 0;
}
.footer__social li a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__social li a:hover {
  transform: scale(1.1);
}
.footer__tel {
  font-size: 20px;
  font-weight: 800;
}
.footer__tel:hover {
  color: #4caf50;
}
