*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Gilroy';
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

input {
  border: none;
  outline: none;
}

button {
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

img {
  user-select: none;
}

:root {
  --dark-color: #2A2A2A;
  --green-color: #006833;
  --red-color: #E42132;
  --hover-color: #960E1A;
  --white-color: #fff;
}

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

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all .5s;
}

.header.scrolled {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
    transition: all .5s;
}

.header.scrolled .nav-contacts a{
  color: var(--dark-color);
  transition: all .5s;
}


.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 23px;
  padding-bottom: 23px;
  transition: all .5s;
}


.header.scrolled .nav {
  padding-top: 16px;
  padding-bottom: 16px;
  transition: all .5s;

}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 94px;
}

.nav-menu__items {
  display: flex;
  gap: 54px;
}


.nav-menu__item a {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.32px;
  color: var(--dark-color);
  transition: all .5s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  border-width: 0;
}

.nav-menu__item a:hover {
  color: var(--green-color);
  transition: all .5s;
  border-bottom: 1px solid var(--green-color);
  border-width: 100%;
}

.nav-menu__item.active a {
  color: var(--green-color);
  transition: all .5s;
  border-bottom: 1px solid var(--green-color);
  border-width: 100%;
}


.nav-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: right;
}

.nav-contacts .mail {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 19.5px */
  letter-spacing: 0.3px;
  text-decoration-line: underline;
  color: var(--dark-color);
}

.nav-contacts .phone {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 23.4px */
  letter-spacing: 0.36px;
  color: var(--dark-color);
}

.home-page__header .nav-contacts .mail {
  color: var(--white-color);
}

.home-page__header .nav-contacts .phone {
  color: var(--white-color);
}

.main {
  padding-top: 11rem;
  position: relative;
}

.main-screen {
  padding-bottom: 50px;
}

.main-screen__decor__image {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  /* width: 50%; */
}

.main-screen__decor__image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.main-screen__inner {
  max-width: 650px;
  margin-top: 36px;
}

h1 {
  font-size: clamp(32px, 5vw, 50px);
  font-style: normal;
  font-weight: 800;
  line-height: 120%; /* 60px */
  text-transform: uppercase;
  color: var(--green-color);
}

.main-screen__inner-info h1 {
  margin-bottom: 45px;
}

.main-screen__inner-info p {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.36px;
  color: var(--dark-color);
  margin-bottom: 37px;
}

.main-screen__inner-info__button {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 18.2px */
  letter-spacing: 0.28px;
  text-transform: uppercase;
  color: var(--white-color);
  padding: 17px 30px;
  background-color: var(--red-color);
  transition: all .5s;
  border-radius: 5px;
  display: block;
  max-width: fit-content;
}

.main-screen__inner-info__button:hover {
  background-color: var(--hover-color);
  transition: all .5s;
}

.main-screen__inner-show-off__items {
  margin-top: 9rem;
  display: flex;
  align-items: center;
  gap: 94px;
  padding-left: 77px;
}

.main-screen__inner-show-off__item {
  display: flex;
  align-items: center;
  position: relative;
}

.main-screen__inner-show-off__item__img {
  margin-right: 15px;
}

.main-screen__inner-show-off__item__num {
  margin-right: 7px;
  font-size: clamp(24px 5vw, 36px) ;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 50.4px */
  letter-spacing: 0.72px;
  color: var(--green-color);
}

.main-screen__inner-show-off__item__text {
  font-size: clamp(9px, 1vw, 12px) ;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 12px */
  text-transform: uppercase;
  max-width: 82px;
  color: var(--green-color);
}

.main-screen__inner-show-off__item:first-child .main-screen__inner-show-off__item__text {
  max-width: 62px;
}

.main-screen__inner-show-off__item::before {
  position: absolute;
  left: -5rem;
  top: -2.5rem;
  font-size: clamp(58px, 5vw, 85px);
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 85px */
  letter-spacing: 1.7px;
  color: #E5F0EB;
  z-index: -1;
}

.main-screen__inner-show-off__item:first-child::before {
  content: '40';
}

.main-screen__inner-show-off__item:last-child::before {
  content: '100';
}

section:not(:first-child) {
  margin-top: 100px;
}

.product {
  margin-top: 60px;
}



h2 {
  font-size: clamp(26px, 5vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 41.6px */
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: var(--dark-color);
  margin-bottom: 70px;
}

.category-items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.category-item {
  grid-column: span 4;
  height: 340px;
  overflow: hidden;
}

.category-item:first-child {
  grid-column-start: 1;
  grid-column-end: 7;
}

.category-item:nth-child(2) {
  grid-column-start: 7;
  grid-column-end: 13;
}

.category-item a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #F5F5F5 7.5%, #EEE 100%);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 45px;
  transition: all .5s;
}

.decor-layout {
  width: 355px;
  height: 355px;
  background-color: var(--red-color);
  position: absolute;
  left: -16%;
  top: -60%;
  border-radius: 50%;
  transition: all .5s;
  opacity: 0;
}

.category-item a:hover .decor-layout{
  left: 0;
  top: 0;
  border-radius: 0;
  opacity: 1;
  width: 100%;
  height: 100%;
  transition: all .5s;
}

.category-item__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: all .5s;
}

.category-item a:hover .category-item__info .category-item__name{
  color: var(--white-color);
  transition: all .5s;
}

.category-item a:hover .category-item__info  .category-item__count {
  color: var(--white-color);
  transition: all .5s;
}


.category-item__name {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  letter-spacing: 0.36px;
  color: var(--green-color);
  max-width: 200px;
}


.category-item__count {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.28px;
  color: var(--dark-color);
}

.category-item__image {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0px;
  bottom: -6px;
  max-width: 100%;
  height: auto;
  max-height: 326px;
}

.category-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about h2 {
  color: var(--red-color);
}

.about-inner__trademark {
  display: flex;
  align-items: center;
  gap: 30px;
}

.about-inner__trademark-separator {
  height: 105px;
  background-color: var(--green-color);
  width: 2px;
  border-radius: 50px;
}

.about-inner__trademark-info__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  letter-spacing: 0.36px;
  color: var(--green-color);
  margin-bottom: 22px;
}

.about-inner__trademark-info__subtitle {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 18.2px */
  letter-spacing: 0.28px;
  color: var(--green-color);
  max-width: 513px;
}

.about-inner__items {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.about-inner__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-inner__item-info {
  max-width: 546px;
}

.about-inner__item-info p {
  margin-bottom: 30px;
  color: var(--dark-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.36px;
}

.about-inner__item-info p a {
  color: var(--green-color);
  text-decoration: underline;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.36px;
}

.slider-homepage1, .slider-homepage2, .slider-homepage3 {
  width: 473px;
  height: 473px;
  border-radius: 50%;
  position: relative;
}

.slider-homepage1 .splide__slide,
.slider-homepage2 .splide__slide,
.slider-homepage3 .splide__slide {
  transition: all 1s;
}

.slider-homepage1 .splide__slide img,
.slider-homepage2 .splide__slide img,
.slider-homepage3 .splide__slide img {
  transition: all 1s;
}

.slider-homepage1 .splide__slide.is-active:hover img, .slider-homepage2 .splide__slide.is-active:hover img, .slider-homepage3 .splide__slide.is-active:hover img{
  transform: scale(1.2);
  transition: all 1s;
}

.slider-homepage1 .splide__track, 
.slider-homepage2 .splide__track,
.slider-homepage3 .splide__track {
  border-radius: 50%;
}


.slider-homepage1::before {
  position: absolute;
  content: '';
  width: 126%;
  height: 100%;
  left: -8rem;
  top: -9rem;
  z-index: -1;
  background-image: url('../img/s1.svg');
  background-repeat: no-repeat;
}

.slider-homepage2::before {
  position: absolute;
  content: '';
  width: 126%;
  height: 105%;
  right: -9rem;
  bottom: -3rem;
  z-index: -1;
  background-image: url('../img/s2.svg');
  background-repeat: no-repeat;
}


.slider-homepage3::before {
  position: absolute;
  content: '';
  width: 101%;
  height: 105%;
  right: -2rem;
  top: -6rem;
  z-index: -1;
  background-image: url('../img/s3.svg');
  background-repeat: no-repeat;
}


.slider-homepage1 .splide__slide,
.slider-homepage2 .splide__slide,
.slider-homepage3 .splide__slide {
  width: 473px;
  height: 473px;
  border-radius: 50%;
}

.slider-homepage1 .splide__slide img,
.slider-homepage2 .splide__slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.slider-homepage3 .splide__slide img {
  object-fit: contain;
  width: 54%;
  height: 80%;
}

.slider-homepage1 .splide__pagination,
.slider-homepage3 .splide__pagination {
  bottom: -2.5em;
}

.slider-homepage2 .splide__pagination {
  bottom: initial;
  top: -2.5em;
}

.slider-homepage1 .splide__pagination li .splide__pagination__page,
.slider-homepage2 .splide__pagination li .splide__pagination__page,
.slider-homepage3 .splide__pagination li .splide__pagination__page{
  background: linear-gradient(90deg, #F5F5F5 7.5%, #EEE 100%);
  width: 9px;
  height: 9px;
}



.slider-homepage1 .splide__pagination li .splide__pagination__page.is-active,
.slider-homepage3 .splide__pagination li .splide__pagination__page.is-active {
  background: var(--red-color);
  transform: scale(1);
}

.slider-homepage2 .splide__pagination li .splide__pagination__page.is-active {
  background: var(--green-color);
  transform: scale(1);
}

.slider-homepage1-thumb .splide__pagination {
  bottom: 2.5em;
  display: flex;
}

.slider-homepage1-thumb .splide__pagination li .splide__pagination__page,
.slider-homepage2-thumb .splide__pagination li .splide__pagination__page,
.slider-homepage3-thumb .splide__pagination li .splide__pagination__page{
  background: #2a2a2a5e;
  width: 9px;
  height: 9px;
}

.slider-homepage1-thumb .splide__pagination li .splide__pagination__page.is-active,
.slider-homepage2-thumb .splide__pagination li .splide__pagination__page.is-active,
.slider-homepage3-thumb .splide__pagination li .splide__pagination__page.is-active {
  background: var(--red-color);
  transform: scale(1);
}

.about-inner__item-slider-thumb-first__popup,
.about-inner__item-slider-thumb-second__popup,
.about-inner__item-slider-thumb-third__popup {
  position: fixed;
  z-index: 12;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-inner__item-slider-thumb-first,
.about-inner__item-slider-thumb-second {
  max-width: 850px;
  width: 100%;
  height: 530px;
  position: relative;
}

.about-inner__item-slider-thumb-third {
  max-width: 700px;
  width: 100%;
  padding: 20px 60px;
  /* background: linear-gradient(90deg, #F5F5F5 7.5%, #EEE 100%); */
  position: relative;
}

.about-inner__item-slider-thumb-first .close-btn,
.about-inner__item-slider-thumb-second .close-btn,
.about-inner__item-slider-thumb-third .close-btn {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 2;
  cursor: pointer;
}

.about-inner__item-slider-thumb-third .close-btn svg rect{
  fill: var(--dark-color);
}

.about-inner__item-slider-thumb-first .splide__slide,
.about-inner__item-slider-thumb-second .splide__slide {
  max-width: 850px;
  width: 100%;
  height: 530px;
}

.about-inner__item-slider-thumb-third .splide__slide {
  max-width: 700px;
  width: 100%;
  max-height: 650px;
}

.about-inner__item-slider-thumb-first .splide__slide img,
.about-inner__item-slider-thumb-second .splide__slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.about-inner__item-slider-thumb-third .splide__slide img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.about-inner__item-slider-thumb-first__popup,
.about-inner__item-slider-thumb-second__popup,
.about-inner__item-slider-thumb-third__popup {
  opacity: 0;
  transform: scale(0);
  transition: all .5s;
  overflow: auto;
}

.about-inner__item-slider-thumb-first__popup.active,
.about-inner__item-slider-thumb-second__popup.active,
.about-inner__item-slider-thumb-third__popup.active {
  opacity: 1;
  transform: scale(1);
  transition: all .5s;
}

.overlay {
  background-color: #000000cf;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  display: none;
}

.splide:not(.is-overflow) .splide__pagination {
  display: flex;
}

.overlay.active {
  display: block;
}

.slider-homepage1 .splide__slide,
.slider-homepage2 .splide__slide,
.slider-homepage3 .splide__slide {
  cursor: pointer;
}

.slider-homepage3 .splide__slide {
  background: linear-gradient(90deg, #F5F5F5 7.5%, #EEE 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}


body.lock {
  overflow: hidden;
}

.about-inner__item:nth-child(2) {
  flex-direction: row-reverse;
}


.callback {
  background-color: var(--green-color);
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.cbd{
  background-repeat: no-repeat;
  max-width: 500px;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: -11rem;
  transition: all .1s;
}

.callback h2 {
  color: var(--white-color);
  max-width: 521px;
  margin-bottom: 40px;
}

.callback-inner__image {
  position: absolute;
  right: 0;
  bottom: -2rem;
}

.callback-inner {
  max-width: 506px;
}

.callback-inner-form__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.36px;
  margin-bottom: 80px;
  color: var(--white-color);
}

.callback-inner-form__input-group {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.callback-inner-form__input-group__input-wrapper {
  height: 51px;
  position: relative;
}

.callback-inner-form__input-group__input-wrapper:first-child:before {
  content: '*';
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  letter-spacing: 0.36px;
  color: var(--red-color);
}

.callback-inner-form__input-group__input-wrapper:nth-child(2):before {
  content: '*';
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  letter-spacing: 0.36px;
  color: var(--red-color);
}

.callback-inner-form__input-group__input-wrapper input {
  border: none;
  border-bottom: 1px solid var(--white-color);
  background-color: transparent;
  outline: none;
  width: 100%;
  height: 100%;
  padding-left: 25px;
  color: var(--white-color);
}

.callback-inner-form__input-group__input-wrapper input::placeholder {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  letter-spacing: 0.36px;
  color: #3A8F64;
}

.callback-inner-form__send {
  height: 51px;
  width: 100%;
  color: var(--white-color);
  background-color: var(--red-color);
  transition: all .5s;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 18.2px */
  letter-spacing: 0.28px;
  text-transform: uppercase;
  margin-top: 47px;
  border-radius: 5px;
  cursor: pointer;
}

.callback-inner-form__send:hover {
  background-color: #7E0914;
}

.callback-inner-form__agreed {
  margin-top: 26px;
}

.callback-inner-form__agreed  p{
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.28px;
  color: var(--white-color);
  max-width: 470px;
}

.callback-inner-form__agreed  p a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.28px;
  text-decoration-line: underline;
  color: var(--white-color);
}

footer {
  margin-top: 200px;
  padding-bottom: 50px;
}

footer.footer-homepage {
  margin-top: 100px;
}

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

.footer-nav__menu-items {
  display: flex;
  gap: 40px;
}

.footer-nav__menu-item a {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  letter-spacing: 0.36px;
  color: var(--dark-color);
}

.footer-nav__contacts {
  display: flex;
  gap: 68px;
}

.footer-nav__contacts .email {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  letter-spacing: 0.36px;
  text-decoration-line: underline;
  color: var(--dark-color);
}

.footer-nav__contacts .phone {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  letter-spacing: 0.36px;
  color: var(--dark-color);
}

.footer-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 41px;
}

.priacy {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.28px;
  text-decoration-line: underline;
  color: var(--dark-color);
}

.all-rghts {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.28px;
}

.created {
  display: flex;
  gap: 7px;
  align-items: center;
}

.created span {
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 13px; /* 130% */
  letter-spacing: 0.2px;
  max-width: 60px;
  text-align: right;
}

.nav-contacts.mobile {
  display: none;
}


.nav-menu__mobile {
  display: none;
}

.burger {
  display: none;
}

.main-screen__decor__image.mobile {
  display: none;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bread-separator {
  margin-left: 10px;
}

.breadcrumbs a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.28px;
  color: var(--dark-color);
}

.breadcrumbs-item span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.28px;
  color: var(--dark-color);
}

.category-catalog-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
}

.category-catalog-item {
  background: linear-gradient(90deg, #F5F5F5 7.5%, #EEE 100%);
  text-align: center;
  width: 100%;
  height: 274px;
}

.category-catalog-item a {
  padding: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all .5s;
}

.category-catalog-item__body {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.decor-layout__catalog {
  width: 100%;
  height: 355px;
  background-color: var(--red-color);
  position: absolute;
  left: 0;
  top: -17rem;
  border-radius: 50%;
  transition: all .5s;
  opacity: 0;
}

.category-catalog-item a:hover .decor-layout__catalog {
  left: 0;
  top: 0;
  border-radius: 0;
  opacity: 1;
  width: 100%;
  height: 100%;
  transition: all .5s;
}


.category-catalog-item__body-title {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 18.2px */
  letter-spacing: 0.28px;
  color: var(--green-color);
  max-width: 160px;
  transition: all .5s;
}

.category-catalog-item__body-img {
  height: 100%;
  max-height: 146px;
  max-width: 169px;
  width: 100%;
}

.category-catalog-item__body-img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.category-catalog-item__body-count {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.28px;
  transition: all .5s;
}

.category-catalog-item a:hover .category-catalog-item__body-title,
.category-catalog-item a:hover .category-catalog-item__body-count {
  color: var(--white-color);
}

.product h2 {
  color: var(--red-color);
  font-size: 26px;
  margin-bottom: 30px;
}

.category-header h1 {
  font-size: 32px;
  margin-bottom: 80px;
  color: var(--dark-color);
}

.category-header__description {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.36px;
  color: var(--dark-color);
}


.product-row-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.36px;
  color: var(--dark-color);
  margin-bottom: 50px;
}

.product-row-cart__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 40px;
}

.product-row-cart__items .product-row-cart__item .product-row-cart__item-image{
  position: relative;
  overflow: hidden;
}

.product-row-cart__items .product-row-cart__item:hover .decor-layout {
  left: 0;
  top: 0;
  border-radius: 0;
  opacity: 1;
  width: 100%;
  height: 100%;
  transition: all .5s;
}

.product-row-cart__items .product-row-cart__item:hover .product-row-cart__item-weight {
  color: var(--white-color);
  transition: all .5s;
}

.product-row-cart__items .product-row-cart__item:nth-child(4n+0) {
  grid-column: span 2;
}

.product-row-cart__item-image {
  height: 261px;
  width: 100%;
  position: relative;
  background: linear-gradient(90deg, #F5F5F5 7.5%, #EEE 100%);
}

.product-row-cart__item-image img {
  position: absolute;
  left: 0;
  bottom: 0;
  object-fit: contain;
  width: fit-content;
  height: auto;
  max-width: 355px;
  max-height: 261px;
}

.product-row-cart__item-weight {
  position: absolute;
  top: 12px;
  right: 17px;
  font-size: 7px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 9.1px */
  letter-spacing: 1.4px;
  text-transform: uppercase;
  z-index: 2;
}

.product-row-cart__item-name {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: clamp(24px, 5vw, 26px);
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 33.8px */
  letter-spacing: 0.52px;
  color: var(--dark-color);
}

.product-row-cart__item-life {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.3px;
  color: var(--dark-color);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  line-clamp: 6;
  box-orient: vertical;
  
}

.product-row-cart__item-life span {
  color: var(--dark-color);
  font-size: 18px;
  font-style: normal;
  /* font-weight: 600; */
  line-height: 130%; /* 23.4px */
  letter-spacing: 0.36px;
  display: flex;
  align-items: center;
  gap: 5px;
}




.product-row-cart__item-life__count {
  color: var(--dark-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 23.4px */
  letter-spacing: 0.36px;
}

.product-row:not(:first-child) {
  margin-top: 60px;
}

section.inside-page {
  margin-top: clamp(26px, 5vw, 50px);
}

.news h2 {
  color: var(--green-color);
}

.news-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  
}

.news-item {
  background: linear-gradient(90deg, #F5F5F5 7.5%, #EEE 100%);
  width: 100%;
  position: relative;
  transition: all .5s;
  max-width: 426px;
  width: 100%;
  
}

.news-item__image {
  overflow: hidden;
}

.news-item:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--red-color);
  opacity: 0;
  transition: all .5s;
}

.news-item:hover::before {
  opacity: 1;
  transition: all .5s;
}

.news-item:hover .news-item__body-name,
.news-item:hover .news-item__body-description {
  color: var(--white-color);
  transition: all .5s;
}

.news-item img {
  transition: all .5s;
}

.news-item:hover img {
  transform: scale(1.2);
  transition: all .5s;
}


.news-item a{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* .news-item:first-child {
  grid-column: span 2;
}

.news-item:last-child {
  grid-column: span 2;
} */

.news-item__image {
  width: 100%;
  height: 407px;
  min-width: 407px;
  max-width: 426px;
  overflow: hidden;
}

.news-item__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.news-item__body {
  padding: 30px;
}

.news-item__body-name {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  letter-spacing: 0.36px;
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  box-orient: vertical;
  color: var(--green-color);
}

.news-item__body-description {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.28px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
}

.news-pagination {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  margin-top: 50px;
}

.news-pagination__items {
  display: flex;
  align-items: center;
  gap: 30px;
}

.news-pagination__item {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  letter-spacing: 0.36px;
}

.news-pagination__item.active a {
  color: var(--red-color);

}

.news-pagination__item.active b {
  color: var(--red-color);
}

.news-pagination__item a {
  color: var(--green-color);
}

.news-pagination__arrow-right,
.news-pagination__arrow-left {
  display: flex;
  align-items: center;
}

.single-post__content {
  max-width: 955px;
}

.single-post__content h2{
  color: var(--green-color);
}

.single-post__content p {
  margin-bottom: 30px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 30.8px */
  letter-spacing: 0.44px;
  color: var(--dark-color);
  display: block;
}

.single-post__content img {
  margin-top: 30px;
  margin-bottom: 30px;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
  height: 500px;
  background-color: #E9E9E9;
}

.single-post__content h6 {
  padding-top: 30px;
  margin-bottom: 40px;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 30.8px */
  letter-spacing: 0.44px;
  color: var(--green-color);
  display: block;
}

.single-post {
  position: relative;
}

.post-decor {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.post-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 120px;
}

.next-post,
.prev-post {
  display: flex;
  align-items: center;
  gap: 30px;
}

.next-post svg,
.prev-post svg {
  max-width: 100%;
}

.next-post span,
.prev-post span {
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 30.8px */
  letter-spacing: 0.44px;
  color: var(--red-color);
} 

.about-page {
  position: relative;
}

.about-decor {
  position: absolute;
  right: 0;
  top: 21%;
  transform: translateY(-25%);
  z-index: -1;
}

.about-decor2 {
  position: absolute;
  right: 0;
  top: 21%;
  transform: translateY(-25%);
  z-index: -1;
}

.about-content {
  max-width: 960px;
}

.about-page h2 {
  color: var(--red-color);
}

.about-content p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.36px;
  color: var(--dark-color);
  margin-bottom: 30px;
}

.about-content p a {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.36px;
  text-decoration-line: underline;
  color: var(--green-color);
}

.about-content img {
  margin-top: 30px;
  margin-bottom: 60px;
  max-width: 100%;
}

.video {
  margin-top: 60px;
  margin-bottom: 60px;
}

.about-img-row {
  display: flex;
  gap: 20px;
}

.about-img-row img {
  max-width: 100%;
}

.video {
  position: relative;
}

.fake-overlay {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.video-popup {
  position: fixed;
  z-index: 12;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0);
  transition: all .5s;
  overflow: auto;
}

.video-popup.active {
  opacity: 1;
  transform: scale(1);
  transition: all .5s;
}

.video-popup-inner .close-btn {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 2;
  cursor: pointer;
}

.video-popup-inner {
  max-height: 780px;
  max-width: 1400px;
  width: 100%;
  position: relative;
  transition: all .5s;
}

.map-wrapper {
  width: 100%;
  height: 232px;
  /* margin-bottom: 28px; */
}

.contacts-breads .breadcrumbs {
  transform: translateY(28px);
}

.map-wrapper iframe {
  height: 237px;
}

.map-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.contacts-page__item-label {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.36px;
  color: #2A2A2A;
}

.contacts-page__item__info {
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 30.8px */
  letter-spacing: 0.44px;
  max-width: 394px;
}

.contacts-page__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contacts-page__item-department-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contacts-page__item-department__label {
  margin-bottom: 15px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  letter-spacing: 0.36px;
}

.mb15 {
  margin-bottom: 15px;
}

.contacts-page {
  position: relative;
}

.decor-contacts-page {
  position: absolute;
  right: 0;
  top: -97px;
}

.privacy-page h2 {
  color: var(--red-color);
}

.privacy-page {
  position: relative;
}

.privacy-page__content {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.decor-contacts-page {
  top: 50%;
  transform: translateY(-50%);
}

.contacts-page .decor-contacts-page {
  top: 0;
  transform: translateY(-4rem);
}

.privacy-page__content p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.36px;
  color: var(--dark-color);
}

.notFound-page h2 {
  color: var(--red-color);
  margin-bottom: 33px;
}

.notFound-page p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.36px;
  color: var(--dark-color);
  margin-bottom: 45px;
}

.back-link {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 301px;
  width: 100%;
  height: 51px;
  background-color: var(--green-color);
  transition: all .5s;
  border-radius: 5px;
  color: var(--white-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 18.2px */
  letter-spacing: 0.28px;
  text-transform: uppercase;
}

.back-link:hover {
  transition: all .5s;
  background-color: #024724;
}

.notFound-page__inner {
  position: relative;
}

.notFound-page {
  position: relative;
  min-height: 480px;
}

.notFound-decor{
  position: absolute;
  right: 0;
  top: -6rem;
}

.notFound-decor img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.thank-popup h2{
  color: var(--red-color);
  margin-bottom: 34px;
}

.thank-popup p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.36px;
}

.thank-popup__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  left: 0;
  top: 0;
  z-index: 12;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0);
  transition: all .5s;
}



.thank-popup .close-btn {
  position: absolute;
  top: 5em;
  right: 17%;
  z-index: 13;
  cursor: pointer;
}

.thank-popup .container {
  width: 100%;
}

.thank-decor {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
  display: flex;
  justify-content: flex-end;
}

.thank-popup.active {
  opacity: 1;
  transform: scale(1);
  transition: all .5s;
}

.splide__arrows {
  display: none;
}

.slider-homepage1 .splide__pagination, .slider-homepage3 .splide__pagination {
  position: relative;
  bottom: 0;
  gap: 20px;
}

.homeSlider1-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
  bottom: -3.5em;
  height: 50px;
}

.homeSlider1__arrow--prev,
.homeSlider1__arrow--next {
  cursor: pointer;
  height: 50px;
  display: flex;
  align-items: center;
}

.homeSlider2__arrow--prev,
.homeSlider2__arrow--next {
  cursor: pointer;
  height: 50px;
  display: flex;
  align-items: center;
}

.homeSlider3__arrow--prev,
.homeSlider3__arrow--next  {
  cursor: pointer;
  height: 50px;
  display: flex;
  align-items: center;
}

.homeSlider2-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
  top: -3.5em;
  height: 50px;
}

.slider-homepage2 .splide__pagination {
  position: relative;
  top: 0;
  gap: 20px;
}

.homeSlider3-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
  bottom: -3.5em;
  height: 50px;
}

.slider-homepage3 .splide__pagination {
  position: relative;
  bottom: 0;
  gap: 20px;
}

.about-inner__item-slider-thumb-first, .about-inner__item-slider-thumb-second {
  padding-left: 50px;
    padding-right: 50px;
}

.thumbnail1__arrow--prev {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 50px;
}

.thumbnail1__arrow--next {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 50px;
}

.thumbnail2__arrow--prev {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 50px;
}

.thumbnail2__arrow--next {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 50px;
}

.thumbnail3__arrow--prev {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 50px;
}

.thumbnail3__arrow--next {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 50px;
}

.thumbnail1__arrow--next,
.thumbnail1__arrow--prev {
  cursor: pointer;
}

.thumbnail2__arrow--next,
.thumbnail2__arrow--prev {
  cursor: pointer;
}

.thumbnail3__arrow--next,
.thumbnail3__arrow--prev {
  cursor: pointer;
}

.about-inner__item-slider-thumb-first .close-btn, .about-inner__item-slider-thumb-second .close-btn, .about-inner__item-slider-thumb-third .close-btn {
  right: 80px;
}

.about-inner__item-slider-thumb-first .splide__slide img, .about-inner__item-slider-thumb-second .splide__slide img {
  object-fit: contain;
}

.about-inner__item-slider-thumb-first__popup .close-btn, .about-inner__item-slider-thumb-second__popup .close-btn, .about-inner__item-slider-thumb-third__popup .close-btn {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}

.love-container {
  position: absolute;
  right: 9rem;
  bottom: 10rem;
  width: 177px;
  height: 177px;
  border-radius: 50%;
}

.love-pulse {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 65%;
  height: 65%;
  top: 50%;
  transform: translateY(-50%);
  animation: pulse-animation 2.5s infinite;
  border-radius: 50%;
}

img.love {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px #e4213242;
  }
  50% {
    box-shadow: 0 0 0 20px #e4213242;
  }
  100% {
    box-shadow: 0 0 0 0px #e4213242;
  }
}

.close-menu {
  z-index: 2;
}

.nav-menu__mobile-inner .logo {
  z-index: 2;
  position: relative;
}

.nav-menu__mobile-inner .nav-menu__items {
  z-index: 2;
  position: relative;
}

.nav-contacts.mobile {
  z-index: 2;
  position: relative;
}

.boxOn {
	
  right: -10rem;
  transition: all .5s;
}
/* 
@keyframes flipped {
	0% {transform: rotateY(0deg);}
	50% {transform: rotateY(90deg);}
	100% {transform: rotateY(0deg);}
} */

.header.scrolled a.logo{
  height: 38px;
  overflow: hidden;
}

.header.scrolled .nav-contacts.desktop .mail {
  display: none;
}

.header.scrolled #bx_incl_area_1_1 {
  display: none;
}

.header.scrolled .nav-contacts.desktop #bx_incl_area_1 {
  display: none;
}

.about-page {
  overflow: hidden;
}

.product {
  margin-top: 100px;
}

.single-slider .splide__slide {
  max-width: 300px;
  width: 100%;
  height: 300px;
  cursor: pointer;
}

.single-slider .splide__slide img {
  background-color: transparent;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.single-slider .splide__pagination li .splide__pagination__page,
.single-slider-thumbnails .splide__pagination li .splide__pagination__page{
  background: linear-gradient(90deg, #F5F5F5 7.5%, #EEE 100%);
}

.single-slider .splide__pagination li .splide__pagination__page.is-active,
.single-slider-thumbnails .splide__pagination li .splide__pagination__page.is-active{
  background: var(--red-color);
  transform: scale(1);
}

.single-slider  .splide__pagination {
  position: relative;
  bottom: 0;
}

.single-slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 124px;
  margin-top: 35px;
}

.single__arrow--prev,
.single__arrow--next {
  cursor: pointer;
}

.single-slider-thumb__popup {
  position: fixed;
  z-index: 12;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0);
  transition: all .5s;
  overflow: auto;
}

.single-slider-thumb__popup.active {
  opacity: 1;
  transform: scale(1);
  transition: all .5s;
}

.single-thumb__arrow--next,
.single-thumb__arrow--prev {
  cursor: pointer;
}

.close-btn {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}

.single-slider-thumbnails {
  max-width: 850px;
  width: 100%;
  max-height: 530px;
  position: relative;
  padding-left: 50px;
  padding-right: 50px
}

.single-slider-thumbnails .splide__slide {
  text-align: center;
  max-height: 600px;
}

.single-slider-thumbnails .splide__slide img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.single-thumb__arrow--prev {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 50px;
}

.single-thumb__arrow--next {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 50px;
}


@media (min-width: 1700px) {
  .love-container {
      right: 22rem;
  }

  .category-item__image {
    max-width: 50%;
  }


}

@media(max-width: 1800px) {
  .container {
    max-width: 1550px;
  }

  .thank-decor img {
    max-width: 80%;
  }

  .thank-decor img {
    max-height: 665px;
  }

}

@media(max-width: 1700px) {
  .container {
    max-width: 1450px;
  }

  .main-screen__decor__image {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    max-width: 930px;
  }

  .love-container {
    right: 16rem;
  }

  .category-item__image {
    width: 64%;
  }

  .news-item__image {
    height: 357px;
    width: 357px;
    min-width: 300px;
  }

}

@media(max-width: 1500px) {
  .contacts-page .decor-contacts-page {
    max-width: 730px;
    height: 828px;
  }

  .contacts-page .decor-contacts-page img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .container {
    max-width: 1350px;
  }

  .video-popup-inner{
    width: 90%;
  }

  .main-screen__decor__image.desktop {
    position: absolute;
    right: 0;
    top: 0px;
    z-index: -1;
    max-width: 872px;
    height: 872px;
  }

  .main-screen__decor__image.desktop img {
    object-position: left;
    object-fit: cover;
  }

  .love-container {
    right: 10rem;
  }

  .news-item__image {
    height: 332px;
    width: 332px;
    min-width: 300px;
  }

 


}
@media(max-width: 1400px) {
  .container {
    max-width: 1300px;
  }

  .category-item__image {
    width: 70%;
  }

  .callback-inner__image {
    width: 50%;
  }

  .callback-inner__image img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

  .footer-nav__contacts {
    gap: 30px;
  }

  .single-post__content {
    max-width: 800px;
  }

  .privacy-page__content {
    max-width: 800px;
  }

  .main-screen__decor__image img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

  .main-screen__decor__image .love-container {
    width: 177px;
    height: 177px;
  }

  .category-item__name {
    font-size: 16px;
    max-width: 143px;
  }

  .main-screen__decor__image.desktop {
    max-width: 776px;
    height: 849px;
  }

  .love-container {
    right: 5rem;
  }

  .news-item__image {
    height: 319px;
    width: 319px;
    min-width: 300px;
  }

  .single-slider .splide__slide {
    height: 249px;
  }
}

@media(max-width: 1300px) {
  .container {
    max-width: 1200px;
  }

  .nav-menu__items {
    gap: 30px;
  }

  .nav-inner {
    gap: 70px;
  }

  .main-screen__inner-info p {
    max-width: 300px;
  }

  .main-screen__decor__image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }



  .footer-nav__contacts {
    flex-direction: column;
    gap: 20px
  }

  .single-post__content {
    max-width: 650px;
  }

  .about-content {
    max-width: 650px;
  }

  .about-img-row  {
    flex-direction: column;
  }

  .privacy-page__content {
    max-width: 650px;
  }

  .main-screen__inner-info h1 {
    font-size: clamp(32px, 5vw, 44px);
    max-width: 461px;
  }

  .news-item__image {
    height: 294px;
    width: 294px;
    min-width: initial;
  } 

  .single-slider .splide__slide {
    height: 199px;
  }

}

@media(max-width: 1200px) {
  .contacts-page .decor-contacts-page {
    max-width: 600px;
  }
  .slider-homepage1, .slider-homepage2, .slider-homepage3 {
    width: 350px;
    height: 350px;
  }

  .slider-homepage1 .splide__slide, .slider-homepage2 .splide__slide, .slider-homepage3 .splide__slide {
    width: 350px;
    height: 350px;
  }

  .slider-homepage1::before {
    background-size: contain;
    left: -6rem;
    top: -5rem;
  }

  .slider-homepage2::before {
    background-size: contain;
    right: -6.5rem;
    bottom: -4.8rem;
    width: 136%;
    height: 126%;
  }
  

  .slider-homepage3::before {
    background-size: contain;
    right: 0rem;
    top: -5rem;
  }

  .about-inner__item-slider-thumb-third .splide__slide {
    height: 450px;
  }

  .about-inner__item-slider-thumb-first .splide__slide, .about-inner__item-slider-thumb-second .splide__slide {
    height: 450px;
  }

  .about-inner__item-slider-thumb-first__popup.active, .about-inner__item-slider-thumb-second__popup.active, .about-inner__item-slider-thumb-third__popup.active {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-inner__item-slider-thumb-first, .about-inner__item-slider-thumb-second {
    height: 450px;
  }

  .product-row-cart__item-image img {
    position: absolute;
    left: 0;
    bottom: 0;
    object-fit: contain;
    width: fit-content;
    height: auto;
    max-width: 270px;
    max-height: 261px;
  }

  .news-items {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-item:first-child {
    grid-column: span 1;
  }

  .news-item:last-child {
    grid-column: span 1;
  }

  .about-decor {
    display: none;
  }

  .about-decor2 {
    display: none;
  }

  .decor-contacts-page {
    max-width: 600px;
    height: 500px;
  }
  

  .decor-contacts-page img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

  .notFound-decor {
    max-width: 400px;
  }

  .main-screen__decor__image {
    display: none;
  }

  .nav-menu__items.desktop {
    display: none;
  }
  .nav-contacts.desktop {
    display: none;
  }

  .nav-contacts.mobile {
    display: flex;
  }

  .nav-menu__mobile {
    display: flex;
    flex-direction: column;
  }

  .burger {
    display: block;
    cursor: pointer;
  }

  .header-inner {
    position: relative;
  }

  .nav-menu__mobile {
    position: absolute;
    top: -100vh;
    opacity: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(105deg, #006833 0%, rgba(0, 104, 51, 0.72) 145.66%);
    height: calc(100vh - 0px);
    overflow: auto;
    transition: all .5s;
  }

  .nav-menu__mobile.active {
    top: 0;
    opacity: 1;
    transition: all .5s;
  }

  .nav-menu__mobile-inner {
    padding: 60px 20px;
    position: relative;
  }

  .nav-menu__mobile-inner::before  {
    content: '';
    position: absolute;
    background-image: url('../img/mbg.svg');
    background-repeat: no-repeat;
    left: 0;
    top: 10rem;
    width: 100%;
    height: 100%;
  }

  .nav-menu__items {
    flex-direction: column;
    gap: 40px;
    margin-top: 80px;
  }

  .nav-menu__item a {
    font-size: 26px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%; /* 31.2px */
    text-transform: uppercase;
    color: var(--white-color);
  }


  .nav-contacts.mobile {
    text-align: left;
    gap: 40px;
    margin-top: 90px;
  }

  .header .nav-contacts a.mail {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 31.2px */
    letter-spacing: 0.48px;
    text-decoration-line: underline;
    color: var(--white-color);
  }

  .header .nav-contacts a.phone {
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%; /* 28.8px */
    text-transform: uppercase;
    color: var(--white-color);
  }

  .header.scrolled .nav-contacts a {
    color: var(--white-color);
  }

  .header.scrolled .nav-contacts a {
    color: var(--white-color);
  }


  .close-menu {
    position: absolute;
    right: 15px;
    top: 40px;
  }

  .nav-inner {
    width: 100%;
  }

  .nav {
    padding-bottom: 16px;
  }

  .main-screen__inner-info h1 {
    max-width: 100%;
  }

  .main-screen__inner-info p {
    max-width: 100%;
  }

  .homeSlider1-nav {
    gap: 40px;
  }

  .homeSlider3-nav {
    gap: 40px;
  }

  .nav-menu__item.active a {
    color: var(--white-color);
  }

  .category-item__image {
    max-height: initial;
  }

  .news-item__image {
    height: 390px;
    width: 390px;
    min-width: initial;
  } 


}



@media(max-width: 1050px) {



  .main {
    padding-top: 7rem;
  }

  .main-screen__inner-show-off__items {
    margin-top: 7rem;
  }

  /* section:not(:first-child) {
    margin-top: 50px;
  } */

  .about-inner__item {
    flex-direction: column;
    gap: 100px;
  }

  .about-inner__trademark {
    margin-bottom: 50px;
  }

  .about-inner__item-info {
    max-width: 100%;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 25px;
  }

  .about-inner__item:nth-child(2) {
    flex-direction: column;
  }

  .main-screen__inner-info h1 {
    max-width: 700px;
  }

  .category-catalog-items {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .post-decor {
    display: none;
  }

  .single-post__content {
    max-width: 100%;
  }

  .about-img-row {
    gap: 0;
  }

  .about-img-row img:first-child {
    margin-bottom: 0;
  }

  .about-img-row img:last-child {
    margin-top: 0;
  }

  .thank-decor {
    position: relative;
    transform: translateY(0);
    top: 0;
  }

  .thank-decor img {
    max-width: 100%;
  }

  .category-item__image {
    width: 58%;
  }

  .category-item__image {
    width: 58%;
  }

  .news-item {
    max-width: 100%;
  }

  .news-item__image {
    height: 497px;
    width: 497px;
    min-width: initial;
    max-width: initial;
  } 
  
  .single-slider .splide__slide {
    height: 300px;
  }
  
}

@media(max-width: 992px) {

  .contacts-breads .breadcrumbs {
    transform: translateY(0);
    /* margin-top: ; */
  }

  .contacs-main {
    display: flex;
    flex-direction: column;
  }

  .contacts-breads {
    order: 1;
    margin-left: 0;
    margin-bottom: 25px
  }

  .contacts-page .decor-contacts-page {
    max-width: 100%;
    height: 500px;
  }

  .contacs-main .map-wrapper {
    order: 2;
  }

  .contacs-main #bx_incl_area_3 {
    order: 3;
  }

  .contacs-main .contacts-page.inside-page {
    order: 3;
  }
  .product-row-cart__item-image img {
    max-width: 340px;
  }

  .product-row-cart__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-row-cart__items .product-row-cart__item:nth-child(4n+0) {
    grid-column: span 1;
  }

  .decor-contacts-page {
    position: relative;
    top: 0;
    margin-top: 70px;
  }

  .privacy-page .decor-contacts-page {
    display: none;
  }

  .notFound-decor {
    position: relative;
    max-width: 100%;
    top: 0;
    margin-top: 30px;
  }

  .notFound-page__inner {
    text-align: center;
  }

  .notFound-page p {
    text-align: center;
  }

  .back-link {
    max-width: 100%;
  }

  .contacts-page .decor-contacts-page {
    transform: translateY(0rem);
  }

  .category-catalog-item {
    background: linear-gradient(154deg, #FAFAFA 18.16%, #EAEAEA 82.64%);
  }

  .product-row-cart__item-image {
    background: linear-gradient(154deg, #FAFAFA 18.16%, #EAEAEA 82.64%);
  }

  .category-item a {
    background: linear-gradient(154deg, #FAFAFA 18.16%, #EAEAEA 82.64%);
  }

  .thank-popup__wrapper {
    flex-direction: column;
  }

  .thank-decor {
    position: absolute;
    bottom: 0;
    top: initial;
    left: 0;
    right: 0;
    margin: 0 auto;
    justify-content: center;
  }

  .thanks-text {
    margin-bottom: 18rem;
  }

  .thank-decor img {
    max-width: 100%;
    max-height: 400px;
  }

  .thank-popup .close-btn {
    top: 2.5rem;
    right: 1.5rem;
  }

  .thank-popup h2 {
    text-align: center;
  }

  .thank-popup p {
    text-align: center;
  }

  .news-item__image {
    height: 48vw;
    width: 100%;
    min-width: initial;
    max-width: initial;
  } 
}

@media(max-width: 768px) {

  .contacts-page .decor-contacts-page {
    height: 345px;
  }

  section.callback {
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 300px;
    margin-top: 100px;
  }


  .cbd {
    width: 100%;
    height: 40%;
    position: absolute;
    right: 0;
    top: initial;
    bottom: 0;
  }

  .about-inner__item {
    gap: 50px;
  }

  .about-inner__item-slider-thumb-first, .about-inner__item-slider-thumb-second {
    width: 90%;
  }

  .main-screen__inner-show-off__items {
    margin-top: 5rem;
  }

  .main-screen__inner-info h1 {
    margin-bottom: 40px;
  }

  .main-screen__inner-info p {
    margin-bottom: 40px;
  }

  .category-items {
    grid-template-columns: 1fr;
  }

  .category-item:first-child {
    grid-column-start: 1;
    grid-column-end: 1;
  }

  .category-item:nth-child(2) {
    grid-column-start: 1;
    grid-column-end: 1;
  }

  .category-item {
    grid-column: span 1;
  }

  .category-item__name {
    max-width: 228px;
  }

  .about-inner__item-slider-thumb-third {
    width: 90%;
  }
  
  .about-inner__item-slider-thumb-first .close-btn, .about-inner__item-slider-thumb-second .close-btn, .about-inner__item-slider-thumb-third .close-btn {
    top: 20px;
    right: 20px;
  }

  .callback-inner__image {
    width: 80%;
  }

  .callback .container{
    position: relative;
    z-index: 2;
  }

  .post-navigation {
    flex-direction: column;
    gap: 50px;
    margin-top: 60px;
  }

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

  .decor-contacts-page img {
    object-fit: cover;
  }

  .category-item__image {
    width: 50%;
  }


  .category-item__image {
    max-height: 326px;
  }

  .category-header h1 {
    margin-bottom: 50px;
  }

  .category-header__description {
    font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.28px;
  }
  
  
}

@media(max-width: 650px) {
  .main-screen__decor__image.mobile {
    display: block;
    position: relative;
  }

  .main-screen__decor__image.desktop {
    display: none;
  }

  .footer-nav__menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-copy {
    flex-wrap: wrap;
  }

  .priacy {
    width: 100%;
  }

  .main-screen__decor__image {
    width: 100%;
  }
  


  .main-screen__inner-show-off__item::before {
    left: -3rem;
    top: -1.5rem;
  }

  section.about {
    padding-bottom: 50px;
    overflow: hidden;
  }

  section.callback {
    margin-top: 50px;
  }

  .about-inner__trademark-image svg {
    max-width: 100%;
  }

  .about-inner__trademark-separator {
    height: 214px;
  }

  .main-screen__inner-show-off__item__img {
    margin-right: 5px;
  }

  .nav-inner {
    justify-content: space-between;
    gap: 0;
  }

  .nav-inner .logo img {
    width: 185px;
  }

  .product-row-cart__items {
    grid-template-columns: repeat(1, 1fr);
  }

  .category-catalog-items {
    grid-template-columns: repeat(2, 1fr);
  }


  .category-catalog-item:nth-child(5n+0) {
    grid-column: span 2;
  }

  .main-screen__inner-info__button {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  footer {
    margin-top: 100px;
  }

  footer.footer-homepage {
    margin-top: 50px;
  }

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

  .news-pagination {
    gap: 30px;
    justify-content: center;
  }

  .news-pagination__arrow-right svg,
  .news-pagination__arrow-left svg {
    max-width: 100%;
  }

  .news-pagination__items {
    max-width: 169px;
    overflow: hidden;
  }

  .video {
    height: 300px;
  }

  .yt-wrap iframe {
    height: 300px;
  }

  .about-content img {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .video {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .about-content img {
    object-fit: cover;
    height: 220px;
  }

  .video-container iframe {
    height: 300px;
  }

  .decor-contacts-page {
    height: 345px;
    max-width: 100%;
  }

  .map-wrapper {
    height: 345px;
  }

  .map-wrapper iframe {
    height: 345px;
  }

  .map-wrapper img {
   object-position: center;
  }

  .thumbnail1-nav, 
  .thumbnail2-nav,
  .thumbnail3-nav {
    display: none;
  }

  .about-inner__item-slider-thumb-first, .about-inner__item-slider-thumb-second {
    padding-left: 0;
    padding-right: 0;
  }

  .slider-homepage1::before {
    left: -4rem;
  }

  .homeSlider1-nav {
    gap: 30px;
  }

  .main-screen__decor__image.mobile {
    position: relative;
  }

  .main-screen__decor__image.mobile .love-mob{
    position: absolute;
    width: 38vw;
    height: 38vw;
    bottom: 10rem;
    /* right: 2rem; */
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 65%;
    height: 65%;
    top: 50%;
    transform: translateY(-50%);
  }

  .love-pulse {
    width: 50%;
    height: 50%;
  }

  section.category {
    margin-top: 0;
  }

  .main-screen__inner-show-off__items {
    margin-bottom: 70px;
  }

  .homeSlider3-nav {
    gap: 30px;
  }

  .slider-homepage1::before {
    top: -5.5rem;
    left: -2rem;
  }

  .container.fluid {
    padding-left: 0;
    padding-right: 0;
  }

  .cont {
    padding-left: 20px;
    padding-right: 20px;
  }

  .news-item__body {
    padding: 30px 20px;
  }


  .main-screen__inner-show-off__items {
    padding-left: 70px;
    gap: 57px;
  }

  .category-item__image {
    width: 60%;
  }

  .category-header  {
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-row-cart__item-name {
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-row-cart__item-life {
    padding-left: 20px;
    padding-right: 20px;
  }

  .news-item__image {
    height: 94vw;
    width: 100%;
    min-width: initial;
    max-width: initial;
  }  

  .single-slider .splide__slide {
    height: 290px;
  } 

  .single-slider-nav {
    gap: 25px;
  }
  
}


@media(max-width: 400px) {
  .main-screen__inner-show-off__items {
    padding-left: 70px;
    gap: 57px;
  }

  .main-screen__inner-show-off__item::before {
    left: -3rem;
  }

  .slider-homepage1::before {
    left: -3rem;
  }

  .news-item__image {
    height: 90vw;
    width: 100%;
    min-width: initial;
    max-width: initial;
  }  
}


@media(max-width: 375px) {
  .main-screen__inner-show-off__items {
    padding-left: 20px;
    gap: 25px;
  }

  .main-screen__inner-show-off__item::before {
    left: -1rem;
  }

  .slider-homepage1, .slider-homepage2, .slider-homepage3 {
    width: 300px;
    height: 300px;
  }

  .slider-homepage1 .splide__slide, .slider-homepage2 .splide__slide, .slider-homepage3 .splide__slide {
    width: 300px;
    height: 300px;
  }

 .about-inner__trademark {
  flex-direction: column;
 }

 .about-inner__trademark-separator {
  width: 105px;
  height: 2px;
 }

 .single-slider .splide__slide {
  height: 280px;
}  
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.eot');
  src: local('Gilroy Regular'), local('Gilroy-Regular'),
      url('../fonts/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-Regular.woff2') format('woff2'),
      url('../fonts/Gilroy-Regular.woff') format('woff'),
      url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-ExtraboldItalic.eot');
  src: local('Gilroy Extrabold Italic'), local('Gilroy-ExtraboldItalic'),
      url('../fonts/Gilroy-ExtraboldItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-ExtraboldItalic.woff2') format('woff2'),
      url('../fonts/Gilroy-ExtraboldItalic.woff') format('woff'),
      url('../fonts/Gilroy-ExtraboldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.eot');
  src: local('Gilroy Bold'), local('Gilroy-Bold'),
      url('../fonts/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-Bold.woff2') format('woff2'),
      url('../fonts/Gilroy-Bold.woff') format('woff'),
      url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Black.eot');
  src: local('Gilroy Black'), local('Gilroy-Black'),
      url('../fonts/Gilroy-Black.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-Black.woff2') format('woff2'),
      url('../fonts/Gilroy-Black.woff') format('woff'),
      url('../fonts/Gilroy-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Light.eot');
  src: local('Gilroy Light'), local('Gilroy-Light'),
      url('../fonts/Gilroy-Light.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-Light.woff2') format('woff2'),
      url('../fonts/Gilroy-Light.woff') format('woff'),
      url('../fonts/Gilroy-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Semibold.eot');
  src: local('Gilroy Semibold'), local('Gilroy-Semibold'),
      url('../fonts/Gilroy-Semibold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-Semibold.woff2') format('woff2'),
      url('../fonts/Gilroy-Semibold.woff') format('woff'),
      url('../fonts/Gilroy-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.eot');
  src: local('Gilroy Medium'), local('Gilroy-Medium'),
      url('../fonts/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-Medium.woff2') format('woff2'),
      url('../fonts/Gilroy-Medium.woff') format('woff'),
      url('../fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-MediumItalic.eot');
  src: local('Gilroy Medium Italic'), local('Gilroy-MediumItalic'),
      url('../fonts/Gilroy-MediumItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-MediumItalic.woff2') format('woff2'),
      url('../fonts/Gilroy-MediumItalic.woff') format('woff'),
      url('../fonts/Gilroy-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-BlackItalic.eot');
  src: local('Gilroy Black Italic'), local('Gilroy-BlackItalic'),
      url('../fonts/Gilroy-BlackItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-BlackItalic.woff2') format('woff2'),
      url('../fonts/Gilroy-BlackItalic.woff') format('woff'),
      url('../fonts/Gilroy-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-UltraLight.eot');
  src: local('Gilroy UltraLight'), local('Gilroy-UltraLight'),
      url('../fonts/Gilroy-UltraLight.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-UltraLight.woff2') format('woff2'),
      url('../fonts/Gilroy-UltraLight.woff') format('woff'),
      url('../fonts/Gilroy-UltraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-RegularItalic.eot');
  src: local('Gilroy Regular Italic'), local('Gilroy-RegularItalic'),
      url('../fonts/Gilroy-RegularItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-RegularItalic.woff2') format('woff2'),
      url('../fonts/Gilroy-RegularItalic.woff') format('woff'),
      url('../fonts/Gilroy-RegularItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-SemiboldItalic.eot');
  src: local('Gilroy Semibold Italic'), local('Gilroy-SemiboldItalic'),
      url('../fonts/Gilroy-SemiboldItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-SemiboldItalic.woff2') format('woff2'),
      url('../fonts/Gilroy-SemiboldItalic.woff') format('woff'),
      url('../fonts/Gilroy-SemiboldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-HeavyItalic.eot');
  src: local('Gilroy Heavy Italic'), local('Gilroy-HeavyItalic'),
      url('../fonts/Gilroy-HeavyItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-HeavyItalic.woff2') format('woff2'),
      url('../fonts/Gilroy-HeavyItalic.woff') format('woff'),
      url('../fonts/Gilroy-HeavyItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Extrabold.eot');
  src: local('Gilroy Extrabold'), local('Gilroy-Extrabold'),
      url('../fonts/Gilroy-Extrabold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-Extrabold.woff2') format('woff2'),
      url('../fonts/Gilroy-Extrabold.woff') format('woff'),
      url('../fonts/Gilroy-Extrabold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-BoldItalic.eot');
  src: local('Gilroy Bold Italic'), local('Gilroy-BoldItalic'),
      url('../fonts/Gilroy-BoldItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-BoldItalic.woff2') format('woff2'),
      url('../fonts/Gilroy-BoldItalic.woff') format('woff'),
      url('../fonts/Gilroy-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-UltraLightItalic.eot');
  src: local('Gilroy UltraLight Italic'), local('Gilroy-UltraLightItalic'),
      url('../fonts/Gilroy-UltraLightItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-UltraLightItalic.woff2') format('woff2'),
      url('../fonts/Gilroy-UltraLightItalic.woff') format('woff'),
      url('../fonts/Gilroy-UltraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-LightItalic.eot');
  src: local('Gilroy Light Italic'), local('Gilroy-LightItalic'),
      url('../fonts/Gilroy-LightItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-LightItalic.woff2') format('woff2'),
      url('../fonts/Gilroy-LightItalic.woff') format('woff'),
      url('../fonts/Gilroy-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Heavy.eot');
  src: local('Gilroy Heavy'), local('Gilroy-Heavy'),
      url('../fonts/Gilroy-Heavy.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-Heavy.woff2') format('woff2'),
      url('../fonts/Gilroy-Heavy.woff') format('woff'),
      url('../fonts/Gilroy-Heavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Thin.eot');
  src: local('Gilroy Thin'), local('Gilroy-Thin'),
      url('../fonts/Gilroy-Thin.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-Thin.woff2') format('woff2'),
      url('../fonts/Gilroy-Thin.woff') format('woff'),
      url('../fonts/Gilroy-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-ThinItalic.eot');
  src: local('Gilroy Thin Italic'), local('Gilroy-ThinItalic'),
      url('../fonts/Gilroy-ThinItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gilroy-ThinItalic.woff2') format('woff2'),
      url('../fonts/Gilroy-ThinItalic.woff') format('woff'),
      url('../fonts/Gilroy-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}