* {
  padding: 0px;
  margin: 0px;
  border: 0px;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

ol>li {
	list-style-type: decimal;
	padding-left: 10px;
	margin-left: 20px;
}
ol ul li {
	list-style: inside;
}

img {
  vertical-align: top;
  max-width: 100%;
}

video {
	max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

body {
  scroll-behavior: smooth;
  font-family: "Open Sans", Arial, sans-serif;
}

body.locked {
  overflow: hidden;
}

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

.intro {
	display:none;
}	
.title {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.23;
  color: #2c84d2;
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 75px;
  padding: 0 20px;
  padding-top: 5px;
  background-color: #2c84d2;
  -webkit-box-shadow: rgba(0, 0, 0, 0) 0px 1px 3px;
          box-shadow: rgba(0, 0, 0, 0) 0px 1px 3px;
  z-index: 10;
}

.nav.fixed__nav {
  background-color: rgba(44, 133, 210, 0.492);
  -webkit-transition: background-color 0.3s ease 0s;
  -o-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.menu__item:nth-child(4) .menu__item-link::after {
  content: none;
}

.menu__item.regbutton {
    padding: 6px 12px 10px 12px;
    background: darkred;
    border-radius: 10px;
}
@media (max-width:992px) {
	.menu__item.regbutton {
		padding:0;
	}
	.regbutton .menu__item-link {
		color:white;
		background:none;
		border: none;
		width: initial;
	}
}

.menu__item-link {
  position: relative;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.menu__item-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20%;
  opacity: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #ffffff;
  -webkit-box-shadow: inset 0px -1px 0px 0px #ffffff;
  box-shadow: inset 0px -1px 0px 0px #ffffff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu__item-link:hover::after {
  opacity: 1;
  bottom: -1px;
}

.logo__img {
  max-width: 170px;
  width: 170px;
  height: auto;
}

.nav__info {
  display: none;
}

.nav__info-img {
  max-width: 270px;
  width: 100%;
  height: auto;
}

.nav__info-text {
  max-width: 311px;
  width: 100%;
  font-size: 22px;
  line-height: 34px;
  font-weight: 500;
  color: #ffffff;
}

.nav__info-title span {
  font-weight: 600;
  text-transform: uppercase;
}

.hero {
  height: 100vh;
}

.hero__inner {
  position: relative;
}

.hero__img-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../img/hero-bg.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.hero__img {
  display: none;
}

.hero__arrow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero__arrow svg {
  position: absolute;
  bottom: -95vh;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  right: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: heroArrow 1.5s infinite ease;
          animation: heroArrow 1.5s infinite ease;
}

@-webkit-keyframes heroArrow {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes heroArrow {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.presentation {
  padding: 45px 0;
}

.presentation__video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.presentation__video-iframe {
  width: 960px;
  height: 540px;
}

.turkey-product {
  position: relative;
  padding: 45px 0;
}

.turkey-product::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 3px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #2c84d2;
  opacity: 0.5;
}

.turkey-product__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.turkey-product__desc {
  max-width: 547px;
  width: 100%;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
  color: #000000;
}

.turkey-product__desc span {
  line-height: 14px;
  font-weight: 600;
  color: #0c84d2;
}

.turkey-product__video {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 560px;
          flex: 0 1 560px;
}

.turkey-product__video-iframe {
  max-width: 560px;
  width: 100%;
  height: 315px;
}

.quality-certificates {
  position: relative;
  padding: 45px 0;
}

.quality-certificates::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 3px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #2c84d2;
  opacity: 0.5;
}

.quality-certificates__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.quality-certificates__images {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 560px;
          flex: 0 1 560px;
}

.quality-certificates__img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.quality-certificates__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 560px;
          flex: 0 1 560px;
  margin: auto;
}

.quality-certificates__item {
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  color: #000000;
}

.quality-certificates__item p {
  opacity: 0.85;
}

.quality-certificates__item span {
  font-weight: 600;
  color: #0c84d2;
}

.eco-friendly-products {
  position: relative;
  padding: 45px 0;
}

.eco-friendly-products::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 3px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #2c84d2;
  opacity: 0.5;
}

.eco-friendly-products__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.eco-friendly-products__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 560px;
          flex: 0 1 560px;
}

.eco-friendly-products__desc {
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  color: #000000;
  opacity: 0.85;
}

.eco-friendly-products__desc span {
  font-weight: 600;
  color: #0c84d2;
  opacity: 1;
}

.eco-friendly-products__desc:not(:last-child) {
  margin-bottom: 20px;
}

.eco-friendly-products__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 560px;
          flex: 0 1 560px;
  margin: auto 0;
}

.eco-friendly-products__img img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.soapnuts {
  position: relative;
  padding: 45px 0;
}

.soapnuts::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 3px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #2c84d2;
  opacity: 0.5;
}

.soapnuts__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.soapnuts__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 560px;
          flex: 0 1 560px;
  margin: auto 0;
}

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

.soapnuts__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 560px;
          flex: 0 1 560px;
}

.soapnuts__desc {
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  color: #000000;
  opacity: 0.85;
}

.soapnuts__desc span {
  font-weight: 600;
  color: #0c84d2;
  opacity: 1;
}

.soapnuts__desc:not(:last-child) {
  margin-bottom: 20px;
}

.soapnuts__footer {
  margin-top: 100px;
}

.soapnuts__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.soapnuts__item-img {
  display: inline-block;
  margin-bottom: 20px;
  max-width: 260px;
  width: 100%;
  height: auto;
}

.soapnuts__item-desc {
  padding: 0 20px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
}

.soapnuts__item-desc:not(:last-child) {
  margin-bottom: 20px;
}

.soapnuts__item-desc span {
  color: #0c84d2;
  font-weight: 600;
}

.soapnuts__item-desc--green {
  color: #0ad167;
  font-weight: 600;
}

.reviews {
  position: relative;
  padding: 45px 0;
}

.reviews::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 3px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #2c84d2;
  opacity: 0.5;
}

.reviews__title {
  text-align: center;
  font-size: 43px;
}

.reviews__slider {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: auto;
}

.reviews__slider:hover .reviews__slider-img::after {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.reviews__slider:hover .reviews__slider-img::before {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.reviews__slider-play {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: none;
}

.reviews__slider-img {
  position: relative;
}

.reviews__slider-img img {
  max-width: 660px;
  width: 100%;
  height: auto;
}

.reviews__slider-img::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #2ad167;
  cursor: pointer;
  z-index: 1;
}

.reviews__slider-img::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #ffffff;
  z-index: 2;
}

.reviews__slider-video {
  max-width: 660px;
  width: 100%;
  height: auto;
}

.reviews__video-iframe {
  max-width: 660px;
  width: 100%;
  height: 100%;
}

.reviews__videos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
		gap:20px;
}
.reviews__videos .iframe {
}

.purchase {
  position: relative;
  padding: 45px 0;
}

.purchase::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 3px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #2c84d2;
  opacity: 0.5;
}

.purchase__title {
  margin-bottom: 100px;
}

.purchase__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

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

.purchase__item {
  width: 100%;
}

.purchase__item:not(:last-child) {
  margin-right: 20px;
}

.purchase__item:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  width: 70px;
  height: 60px;
  border-width: 2px;
  border-color: #2c84d2;
  background: #2c84d2;
  border-radius: 50%;
}

.purchase__item span {
  color: #0c84d2;
  font-weight: 600;
}

.purchase__item-title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.35;
  color: #2c84d2;
}

.purchase__item-desc {
  font-size: 17px;
  line-height: 1.55;
  font-weight: 300;
  color: #000000;
}

.purchase__item-consult {
  margin-top: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #0ad167;
}

.purchase__item-consult-link {
  display: block;
  text-decoration: underline;
  font-size: 20px;
  font-weight: 600;
  color: #0ad167;
}

.purchase__item-consult-link:hover {
  text-decoration: underline;
}

.purchase__item-text {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 300;
  color: #000000;
}

.purchase__footer {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}

.purchase__footer-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2ad167;
  border: 2px solid #2ad167;
  background-color: #fff;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  text-align: center;
  line-height: 60px;
  font-size: 16px;
  padding-left: 60px;
  padding-right: 60px;
  -webkit-appearance: none;
  font-weight: 700;
  background: none;
  cursor: pointer;
}

.purchase__footer-link:hover {
  background-color: #2ad167;
  color: #fff;
  border-color: #fff;
}

.purchase__slider-container {
  margin-bottom: 60px;
}

.purchase__slider {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: auto;
}

.purchase__slider img {
  max-width: 860px;
  width: 100%;
  height: auto;
}

.purchase__slider:hover .purchase__slider-img::after {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.purchase__slider:hover .purchase__slider-img::before {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.purchase__slider-img {
  position: relative;
}

.purchase__slider-img img {
  max-width: 860px;
  width: 100%;
  height: auto;
}

.purchase__slider-img::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #2ad167;
  cursor: pointer;
  z-index: 1;
}

.purchase__slider-img::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #ffffff;
  z-index: 2;
}

.purchase__slider-video {
  max-width: 860px;
  width: 100%;
  height: auto;
}

.purchase__video-iframe {
  max-width: 860px;
  width: 100%;
  height: 100%;
}

.purchase__pay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}

.purchase__pay-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.purchase__pay-video {
  width: 100%;
  height: auto;
}

.purchase__pay-iframe {
  width: 100%;
  height: 30vw;
}

.purchase__pay-text {
  margin: 20px 0;
  text-align: center;
  color: #0c84d2;
  font-weight: 600;
}

.marketing {
  position: relative;
  padding: 45px 0;
}

.marketing::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 3px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #2c84d2;
  opacity: 0.5;
}

.marketing__up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-bottom: 60px;
}

.marketing__video {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  height: auto;
}

.marketing__video-iframe {
  width: 100%;
  height: 315px;
}

.marketing__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  margin: auto;
}

.marketing__title {
  margin-bottom: 40px;
}

.marketing__desc {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
}

.marketing__desc span {
  font-weight: 600;
  color: #0c84d2;
}

.marketing__down {
  margin-bottom: 30px;
}

.marketing__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.marketing__slider-img img {
  max-width: 960px;
  width: 100%;
  height: 100%;
}

.remedy {
  padding: 45px 0;
}

.remedy__list {
  margin-bottom: 60px;
}

.remedy__item {
  text-align: center;
}

.remedy__item:not(:last-child) {
  margin-bottom: 30px;
}

.remedy__item-title-decor {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.remedy__item-title-decor::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 3px;
  width: 100%;
  background-color: #2c84d2;
}

.remedy__item-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
  padding: 0 30px;
  background-color: #fff;
  font-weight: 600;
  font-size: 43px;
  line-height: 67px;
  color: #2c84d2;
  z-index: 2;
}

.remedy__item-link {
  display: inline-block;
  margin-bottom: 30px;
  height: 44px;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 44px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  border: 2px solid #ffffff;
  background-color: #2c84d2;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}

.remedy__item-link:hover {
  background-color: #ffffff;
  color: #2c84d2;
  border-color: #2c84d2;
}

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

.remedy__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.remedy__website {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  color: #2ad167;
  border: 2px solid #2ad167;
  background-color: #fff;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  text-align: center;
  font-size: 16px;
  padding-left: 60px;
  padding-right: 60px;
  -webkit-appearance: none;
  font-weight: 700;
  background: none;
  cursor: pointer;
}

.remedy__website:hover {
  background-color: #2ad167;
  color: #fff;
  border-color: #fff;
}

.remedy__telegram {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  color: #2c84d2;
  border: 2px solid #2c84d2;
  background-color: #fff;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  text-align: center;
  font-size: 16px;
  padding-left: 60px;
  padding-right: 60px;
  -webkit-appearance: none;
  font-weight: 700;
  background: none;
  cursor: pointer;
}

.remedy__telegram:hover {
  background-color: #2c84d2;
  color: #fff;
  border-color: #fff;
}

.remedy__telegram-two {
  width: 87px;
  height: 87px;
}

.remedy__telegram-two img {
  width: 87px;
  height: 87px;
}

.footer {
  padding: 45px 0;
}

.footer__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding-left: 40px;
}

.footer__list::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  height: 100%;
  width: 10px;
  background-color: #2ad167;
}

.footer__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
  text-align: center;
}

.footer__item-text {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
}

.footer__item-text--left {
  text-align: left;
}

.footer__item-text--green {
  line-height: 47px;
  font-weight: 400;
  font-size: 30px;
  color: #2ad167;
  white-space: nowrap;
}

.footer__item-text--green span {
  display: block;
}

.footer__item-tel {
  line-height: 40px;
  font-size: 26px;
  font-weight: 400;
  color: #2ad167;
}

.footer__item-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin: 10px 0;
}

.footer__item-social img {
  width: 60px;
  height: 60px;
}

.footer__item-img {
  max-width: 160px;
  width: 100%;
  height: auto;
}

@media (max-width: 991.98px) {
  .nav {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    padding: 25px 20px;
  }

  .menu {
    display: grid;
    grid-template-columns: repeat(2, 200px);
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .menu__item-link {
    width: 200px;
    height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #2c84d2;
    font-size: 19px;
    line-height: 1.55;
    border-width: 3px;
    border-radius: 10px;
    background-color: #ffffff;
    border-color: #2c84d2;
    border-style: solid;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  }

  .menu__item-link::after {
    content: none;
  }

  .menu__item-link:hover {
    background-color: #2c84d2;
    background-image: none;
    border-color: #ffffff;
    color: #ffffff;
  }

  .logo {
    display: none;
  }

  .nav__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 25px;
  }

  .hero {
    padding: 15px 0;
    height: auto;
  }

  .hero__img-container {
    position: static;
    background: none;
    height: auto;
  }

  .hero__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 100%;
  }

  .hero__arrow {
    display: none;
  }

  .presentation {
    padding: 30px 0;
  }

  .presentation__video-iframe {
    max-width: 780px;
    width: 100%;
    height: 56vw;
  }

  .turkey-product {
    padding: 50px 0;
  }

  .turkey-product__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    row-gap: 20px;
  }

  .turkey-product__video {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    width: calc(100% + 40px);
    margin-right: -20px;
    margin-left: -20px;
  }

  .turkey-product__video-iframe {
    max-width: 100%;
    height: 56vw;
  }

  .quality-certificates {
    padding: 50px 0;
  }

  .quality-certificates__inner {
    -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;
    text-align: center;
    row-gap: 20px;
  }

  .quality-certificates__images {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  .quality-certificates__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  .eco-friendly-products {
    padding: 50px 0;
  }

  .eco-friendly-products__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    row-gap: 20px;
  }

  .eco-friendly-products__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  .eco-friendly-products__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  .soapnuts {
    padding: 50px 0;
  }

  .soapnuts__inner {
    -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;
    text-align: center;
    row-gap: 20px;
  }

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

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

  .soapnuts__list {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .reviews {
    padding: 50px 0;
  }

  .purchase {
    padding: 50px 0;
  }

  .purchase__title {
    margin-bottom: 30px;
    text-align: center;
  }

  .purchase__lists {
    grid-template-columns: repeat(1, 1fr);
  }

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

  .marketing {
    padding: 50px 0;
  }

  .marketing__up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    text-align: center;
  }

  .remedy__item-title {
    line-height: 47px;
    font-size: 30px;
  }

  .remedy__website {
    padding: 0 20px;
  }

  .remedy__telegram {
    padding: 0 20px;
  }

  .remedy__telegram-two {
    display: none;
  }

  .footer__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 20px;
  }

  .footer__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 25%;
            flex: 0 1 25%;
  }

  .footer__item:nth-child(1) {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .footer__item:nth-child(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .footer__item:nth-child(3) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .footer__item:nth-child(4) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .footer__item-text {
    font-size: 19px;
    line-height: 24px;
  }

  .footer__item-text--left {
    text-align: center;
  }

  .footer__item-text--green {
    font-size: 25px;
    line-height: 39px;
  }

  .footer__item-tel {
    font-size: 19px;
    line-height: 24px;
  }

  .footer__item-social img {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 991.98px) and (max-width: 479.98px) {
  .menu__item-link {
    width: 130px;
    height: 48px;
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  .intro {
  	display:block;
  }
  .nav__info {
    -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;
  }

  .nav__info-img {
    max-width: 340px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .nav__info-text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 460px;
    text-align: center;
    line-height: 29px;
    font-size: 20px;
  }

  .nav__info-title span {
    display: block;
  }

  .presentation {
    padding: 15px 0;
  }

  .soapnuts__list {
    grid-template-columns: repeat(1, 1fr);
  }

  .purchase__footer-link {
    padding: 0 20px;
    font-size: 14px;
  }

  .remedy__item-title {
    line-height: 34px;
    font-size: 22px;
  }

  .remedy__socials {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    margin-bottom: 0;
  }

  .remedy__website {
    max-width: 350px;
    width: 100%;
    font-size: 14px;
  }

  .remedy__telegram {
    max-width: 350px;
    width: 100%;
    font-size: 14px;
  }

  .footer {
    padding-top: 0;
  }

  .footer__list {
    padding-left: 10px;
  }

  .footer__list::after {
    content: none;
  }

  .footer__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }

  .footer__item:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    position: relative;
    color: #ffffff;
    padding: 5px 0;
  }

  .footer__item:nth-child(1)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    left: -30px;
    bottom: 0;
    width: 120%;
    height: 100%;
    background-color: #2ad167;
    z-index: -1;
    overflow: hidden;
  }

  .footer__item:nth-child(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .footer__item:nth-child(3) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .footer__item:nth-child(4) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

@media (max-width: 479.98px) {
  .title {
    font-size: 32px;
  }

  .nav {
    padding: 25px 0;
  }

  .menu {
    grid-template-columns: repeat(2, 130px);
  }

  .purchase__footer-link {
    line-height: 2;
  }

  .marketing__video-iframe {
    height: 50vw;
  }

  .remedy__item-title {
    line-height: 25px;
    font-size: 16px;
  }

  .remedy__website {
    line-height: 2;
  }

  .remedy__telegram {
    line-height: 2;
  }
}