@charset "UTF-8";
:root {
  --font-family: "circe", sans-serif;
  --second-family: "roboto", sans-serif;
  --krasnyy: #f51f03;
  --zelenyy: #00932c;
}

/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

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;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

/*--------------------*/
html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: #151515;
  height: 100%;
  font-size: 16px;
}
body.hidden {
  overflow: hidden;
}

.wrapper {
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page {
  flex: 1 0 auto;
  margin-top: 106px;
}
@media (max-width: 1100px) {
  .page {
    margin-top: 84px;
  }
}
@media (max-width: 480px) {
  .page {
    margin-top: 60px;
  }
}

._container {
  max-width: 1280px;
  padding: 0 15px;
  margin: 0 auto;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.06);
  padding: 26px 0;
}
@media (max-width: 1100px) {
  .header {
    padding: 15px 0;
  }
}
@media (max-width: 480px) {
  .header {
    padding: 10px 0;
  }
}
.header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .header__logo img {
    height: 40px;
  }
}
.header__content {
  display: flex;
  align-content: inherit;
  column-gap: 50px;
  align-items: center;
}
@media (max-width: 1100px) {
  .header__content {
    display: none;
  }
}

.header-hidden {
  display: none;
}
@media (max-width: 1100px) {
  .header-hidden {
    display: flex;
    align-items: center;
    column-gap: 15px;
    }
}
.header__items {
  display: flex;
  column-gap: 25px;
  align-items: flex-end;
}
@media (max-width: 1200px) {
  .header__items {
    column-gap: 15px;
  }
}
.header__item {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  color: #151515;
  position: relative;
}
@media (max-width: 1200px) {
  .header__item {
    font-size: 15px;
  }
}
.header__item::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background-color: var(--krasnyy);
  transition: 0.5s ease-in-out;
}
.header__item:hover::after {
  width: 100%;
}
.header__phone {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.header__phone span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  color: #151515;
  transition: 0.3s;
}
.header__phone:hover span {
  color: var(--krasnyy);
}

.menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px;
  transition: 0.8s;
  transform: translateX(-100%);
}
.menu.active {
  transform: translateX(0);
}
.menu__close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 40px;
  color: #bbb;
  cursor: pointer;
}
.menu .header__item {
  font-size: 17px;
}
.menu__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
}

.footer {
  padding: 25px 0;
  background: #f2f2f2;
}
.footer__contacts {
  display: flex;
  column-gap: 160px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 35px;
}
@media (max-width: 1150px) {
  .footer__contacts {
    column-gap: 40px;
  }
}
@media (max-width: 992px) {
  .footer__contacts {
    flex-direction: column;
    row-gap: 15px;
  }
}
.footer__body {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1150px) {
  .footer__body {
    flex-direction: column;
    row-gap: 30px;
  }
}
.footer__content {
  display: flex;
  column-gap: 100px;
}
@media (max-width: 992px) {
  .footer__content {
    column-gap: 50px;
  }
}
@media (max-width: 767px) {
  .footer__content {
    flex-direction: column;
    row-gap: 30px;
  }
}
.footer__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #151515;
  margin-bottom: 20px;
}
.footer__nav-items {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 50px;
  row-gap: 10px;
}
@media (max-width: 992px) {
  .footer__nav-items {
    column-gap: 30px;
  }
}
.footer__nav-items a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
  color: #555;
  transition: 0.3s;
}
.footer__nav-items a:hover {
  color: var(--krasnyy);
}
.footer__socials-items {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.footer__socials-items img {
  transition: 0.3s;
  border-radius: 50%;
}
.footer__socials-items img:hover {
  transform: scale(1.1);
}
.footer__foot {
  display: flex;
  align-items: center;
  column-gap: 5px;
  padding-top: 15px;
  margin-top: 35px;
  border-top: 1px solid #e4e4e4;
}
.footer__foot span {
  font-family: var(--font-family);
  font-weight: 350;
  font-size: 14px;
  color: #8f8f8f;
}
@media (max-width: 480px) {
  .footer__foot span {
    font-size: 12px;
  }
}
.footer__foot a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -1.5px;
}

.contact-footer {
  display: flex;
  align-items: flex-end;
  column-gap: 11px;
}
.contact-footer__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #8e8e8e;
  margin-bottom: 5px;
}
.contact-footer__text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #151515;
  transition: 0.3s;
}
.contact-footer__text:hover {
  color: var(--krasnyy);
}

section {
  margin-top: 90px;
}
@media (max-width: 480px) {
  section {
    margin-top: 60px;
  }
}

.button {
  padding: 16px 30px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
  border-radius: 60px;
  background-color: var(--zelenyy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.button:hover {
  box-shadow: 0 0 20px var(--zelenyy);
}

.main {
  margin-top: 0;
  height: calc(100vh - 106px);
  position: relative;
  background: #d9d9d9;
}
@media (max-width: 1100px) {
  .main {
    height: calc(100vh - 84px);
  }
}
@media (max-width: 992px) {
  .main {
    height: auto;
    padding: 50px 0;
  }
}
.main__arrows {
  display: flex;
  align-items: center;
  column-gap: 6px;
  position: absolute;
  left: 15px;
  bottom: 50px;
}
@media (max-width: 992px) {
  .main__arrows {
    position: initial;
  }
}
.main__arrow {
  cursor: pointer;
}
.main::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 60%;
  width: 50%;
  background: url("../images/main-left.svg") center/cover no-repeat;
}
.main::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 45%;
  background: url("../images/main-right.svg") center/cover no-repeat;
}
@media (max-width: 480px) {
  .main::after {
    display: none;
  }
}
.main__container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.main__body {
  display: flex;
  align-items: center;
  column-gap: 34px;
}
@media (max-width: 992px) {
  .main__body {
    display: block;
  }
}
.main__content {
  flex: 0 0 55%;
}
@media (max-width: 992px) {
  .main__content {
    margin-bottom: 30px;
  }
}
.main__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 50px;
  line-height: 110%;
  color: #151515;
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .main__title {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
.main__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: #666;
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .main__text {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.main__images {
  min-width: 0;
}

@media (max-width: 992px) {
	.main__images {
	  height: 300px;
	  margin-bottom: 20px;
	}	
}

.main__image {
	width: 100%;
	height: 100%;
}

.main__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 45px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #151515;
}
@media (max-width: 480px) {
  .title {
    font-size: 30px;
  }
}

.what__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 35px;
}
@media (max-width: 480px) {
  .what__top {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .what__top {
    flex-direction: column;
    row-gap: 15px;
    align-items: start;
  }
}
.what__more {
  display: flex;
  align-items: center;
  column-gap: 7px;
}
.what__more span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.03em;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--zelenyy);
}
.what__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 20px;
  grid-template-areas: "a b c" "a d f";
}
@media (max-width: 992px) {
  .what__items {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "a _" "b c" "d f";
  }
}
@media (max-width: 767px) {
  .what__items {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c" "d" "f";
    grid-template-rows: 250px 250px 250px 250px 250px;
  }
}
.what__item {
  position: relative;
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .what__item {
    padding: 20px;
  }
}
.what__item:first-child {
  grid-area: a;
  display: block;
}
.what__item:nth-child(2) {
  grid-area: b;
}
.what__item:nth-child(3) {
  grid-area: c;
}
.what__item:nth-child(4) {
  grid-area: d;
}
.what__item:nth-child(5) {
  grid-area: f;
}
.what__name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  flex-grow: 1;
}
@media (max-width: 992px) {
  .what__name {
    font-size: 22px;
  }
}
.what__name::after {
  content: "";
  display: block;
  border-radius: 13px;
  width: 22px;
  height: 2px;
  margin-top: 5px;
  background-color: #fff;
}
.what .what__name-black {
  color: #333;
}
.what .what__name-black::after {
  background-color: #333;
}
.what__arrow {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}
.what .what__arrow-green {
  background: rgba(0, 147, 44, 0.1);
}
.what .what__arrow-green svg path {
  fill: #00932C;
}
.what__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.what__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.advantages__title {
  margin-bottom: 35px;
}
@media (max-width: 480px) {
  .advantages__title {
    margin-bottom: 25px;
  }
}
.advantages__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 992px) {
  .advantages__items {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .advantages__items {
    grid-template-columns: 1fr;
  }
}
.advantages__item {
  padding: 35px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.06);
  background: #fff;
}
@media (max-width: 480px) {
  .advantages__item {
    padding: 25px 20px;
  }
}
.advantages__image {
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .advantages__image {
    margin-bottom: 25px;
  }
  .advantages__image img {
    width: 70px;
    height: 70px;
  }
}
.advantages__name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 133%;
  text-transform: uppercase;
  color: #151515;
  margin-bottom: 12px;
}
.advantages__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: #666;
}

.news__title {
  margin-bottom: 35px;
}
@media (max-width: 480px) {
  .news__title {
    margin-bottom: 25px;
  }
}
.news__items-wrapper {
  position: relative;
}
.news__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: 0.3s;
}
.news__arrow.swiper-button-disabled {
  opacity: 0.5;
}
.news__prev {
  left: -56px;
}
.news__next {
  right: -56px;
}
.news .swiper-wrapper {
  align-items: stretch;
}
.news__item {
  border: 1px solid #ededed;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news__image {
  position: relative;
  overflow: hidden;
  padding-bottom: 55%;
}
.news__image img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.news__content {
  flex-grow: 1;
  padding: 20px;
}
.news__date {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #666;
  margin-bottom: 7px;
}
.news__name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 128%;
  color: #151515;
  margin-bottom: 22px;
}
.news__link {
  display: flex;
  align-items: center;
  column-gap: 7px;
}
.news__link span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  line-height: 160%;
  letter-spacing: 0.03em;
  color: var(--zelenyy);
  display: inline-block;
  margin-top: 5px;
}
.news__pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  column-gap: 0px;
}
.news__pagination .swiper-pagination-bullet {
  transition: 0.3s;
}
.news__pagination .swiper-pagination-bullet-active {
  margin: 0;
  background: var(--krasnyy);
  border-radius: 10px;
  width: 34px;
}
.news__pagination.swiper-pagination-lock {
  display: none;
}

@media (max-width: 480px) {
  .charters__container {
    padding: 0;
  }
}
.charters__body {
  padding: 80px 50px;
  background: #f2f2f2;
  border-radius: 15px;
  position: relative;
}
@media (max-width: 992px) {
  .charters__body {
    padding: 60px 20px;
  }
}
@media (max-width: 480px) {
  .charters__body {
    padding: 60px 15px;
  }
}
.charters__title {
  margin-bottom: 35px;
}
@media (max-width: 480px) {
  .charters__title {
    margin-bottom: 25px;
    font-size: 28px;
  }
}
.charters__item {
  position: relative;
  overflow: hidden;
  display: block;
  padding-bottom: 144%;
}
.charters__item::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/border.png") center/100% no-repeat;
}
.charters__item img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  padding: 10px;
}
.charters__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: 0.3s;
}
.charters__arrow.swiper-button-disabled {
  opacity: 0.5;
}
.charters__prev {
  left: -56px;
}
.charters__next {
  right: -56px;
}
.charters__pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  column-gap: 0px;
}
.charters__pagination .swiper-pagination-bullet {
  transition: 0.3s;
}
.charters__pagination .swiper-pagination-bullet-active {
  margin: 0;
  background: var(--krasnyy);
  border-radius: 10px;
  width: 34px;
}
.charters__pagination.swiper-pagination-lock {
  display: none;
}

.brends__title {
  margin-bottom: 35px;
}
@media (max-width: 480px) {
  .brends__title {
    margin-bottom: 25px;
  }
}
.brends__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 767px) {
  .brends__items {
    gap: 5px;
  }
}
@media (max-width: 480px) {
  .brends__items {
    gap: 15px;
    grid-template-columns: 1fr 1fr;
  }
}
.brends__item img {
  width: 100%;
}

.about__body {
  display: flex;
  align-items: center;
  margin: 0 -45px;
}
@media (max-width: 992px) {
  .about__body {
    flex-direction: column;
    align-items: start;
    row-gap: 30px;
  }
}
.about__image {
  flex: 0 0 50%;
  padding: 0 45px;
}
.about__image img {
  width: 100%;
}
.about__content {
  flex: 1 0 50%;
  padding: 0 45px;
}
.about__title {
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .about__title {
    margin-bottom: 10px;
  }
}
.about__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #666;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .about__text {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.partners__title {
  margin-bottom: 35px;
}
@media (max-width: 480px) {
  .partners__title {
    margin-bottom: 25px;
  }
}
.partners__items-wrapper {
  position: relative;
}
.partners__item {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
}
.partners__item img {
  max-width: 100%;
  max-height: 100%;
}
.partners__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: 0.3s;
}
.partners__arrow.swiper-button-disabled {
  opacity: 0.5;
}
.partners__prev {
  left: -56px;
}
.partners__next {
  right: -56px;
}
.partners__pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  column-gap: 0px;
}
.partners__pagination .swiper-pagination-bullet {
  transition: 0.3s;
}
.partners__pagination .swiper-pagination-bullet-active {
  margin: 0;
  background: var(--krasnyy);
  border-radius: 10px;
  width: 34px;
}
.partners__pagination.swiper-pagination-lock {
  display: none;
}
.partners .partners__pagination {
  display: none;
}
@media (max-width: 992px) {
  .partners .partners__pagination {
    display: flex;
  }
}

.swiper-pagination-bullet {
  height: 5px;
  width: 5px;
}

.contacts__title {
  margin-bottom: 35px;
}
@media (max-width: 480px) {
  .contacts__title {
    margin-bottom: 25px;
  }
}
.contacts__items {
  display: grid;
  grid-template-columns: 335px 238px 282px 1fr;
  gap: 26px;
  margin-bottom: 30px;
}
@media (max-width: 1250px) {
  .contacts__items {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .contacts__items {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
  }
}
.contacts__map {
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
}
.contacts__map iframe,
.contacts__map div {
  width: 100%;
  height: 100%;
}

.contact {
  display: flex;
  column-gap: 14px;
  padding: 30px 20px;
  border-radius: 10px;
  border: 1px solid #efefef;
}
@media (max-width: 480px) {
  .contact {
    padding: 20px;
  }
}
.contact__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: #666;
  margin-bottom: 2px;
}
@media (max-width: 480px) {
  .contact__title {
    font-size: 14px;
  }
}
.contact__text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 133%;
  color: #151515;
  display: flex;
  flex-direction: column;
}

.contact__text a {
	color: #151515;
}

@media (max-width: 480px) {
  .contact__text {
    font-size: 16px;
  }
}

.news-page__title {
  margin-bottom: 35px;
}
@media (max-width: 480px) {
  .news-page__title {
    margin-bottom: 25px;
  }
}
.news-page__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .news-page__items {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .news-page__items {
    grid-template-columns: 1fr;
  }
}

.pagination {
  margin-top: 50px;
}
@media (max-width: 480px) {
  .pagination {
    margin-top: 30px;
  }
}
.pagination__body {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 33px;
}
@media (max-width: 480px) {
  .pagination__body {
    column-gap: 25px;
  }
}
@media (max-width: 480px) {
  .pagination__arrow svg {
    width: 35px;
    height: 35px;
  }
}
.pagination__pages {
  display: flex;
  align-items: center;
}
.pagination__page {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #4d4d4d;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: transparent;
}
@media (max-width: 480px) {
  .pagination__page {
    font-size: 14px;
    width: 22px;
    height: 22px;
  }
}
.pagination__page.active {
  color: #fff;
  background-color: var(--krasnyy);
}
.catalog {
  margin-top: 80px;
}
@media (max-width: 480px) {
  .catalog {
    margin-top: 50px;
  }
}
.catalog__container {
  display: flex;
  column-gap: 25px;
  align-items: start;
}
@media (max-width: 550px) {
  .catalog__container {
    flex-direction: column;
    row-gap: 30px;
    align-items: stretch;
  }
}
.catalog__nav {
  flex: 0 0 280px;
}
@media (max-width: 992px) {
  .catalog__nav {
    flex: 0 0 230px;
  }
}
.catalog__content {
  flex-grow: 1;
}
.catalog__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.02em;
  color: #151515;
  margin-bottom: 25px;
}
.catalog__title::after {
  content: "";
  display: block;
  border-radius: 13px;
  width: 22px;
  height: 2px;
  background: #333;
  margin-top: 5px;
}
.catalog__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1050px) {
  .catalog__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .catalog__items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.catalog__item {
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.catalog__image {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.catalog__image img {
  max-width: 100%;
  max-height: 100%;
}
.catalog__producer {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: #666;
  margin-bottom: 10px;
}
.catalog__name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 128%;
  color: #151515;
  margin-bottom: 10px;
  flex-grow: 1;
}
.catalog__bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.catalog__price {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: #555;
}
.catalog__price span {
  font-weight: 700;
}
.nav-catalog {
  border: 1px solid #e8e8e8;
}
.nav-catalog__title {
  display: flex;
  align-items: center;
  column-gap: 13px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #151515;
  padding: 20px 15px;
  border-bottom: 1px solid #e8e8e8;
}
.nav-catalog__title span {
  display: inline-block;
  margin-top: 4px;
}
.nav-catalog__items {
  display: flex;
  flex-direction: column;
}
.nav-catalog__items a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px;
  position: relative;
}
.nav-catalog__items a:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  left: 15px;
  bottom: 0;
  height: 1px;
  width: calc(100% - 30px);
  background-color: #e8e8e8;
}
.nav-catalog__items a span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  color: #151515;
}
.nav-catalog__items a.active {
  background: rgba(0, 147, 44, 0.062745098);
}
.nav-catalog__items a.active span {
  color: #00932C;
}
.nav-catalog__items a.active svg path {
  stroke: #00932C;
}

.product {
  margin-top: 50px;
}
@media (max-width: 480px) {
  .product {
    margin-top: 30px;
  }
}
.product__link {
  display: flex;
  align-items: center;
  column-gap: 7px;
  padding-bottom: 11px;
  border-bottom: 1px solid #dedede;
  margin-bottom: 55px;
}
@media (max-width: 480px) {
  .product__link {
    margin-bottom: 30px;
  }
}
.product__link span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8b8b8b;
}
@media (max-width: 480px) {
  .product__link span {
    font-size: 14px;
  }
}
.product__body {
  border-radius: 12px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.06);
  background: #fff;
  padding: 20px 20px 20px 20px;
  display: flex;
  align-items: center;
  display: grid;
  grid-template-columns: 519px auto;
  column-gap: 80px;
}
@media (max-width: 1200px) {
  .product__body {
    padding: 20px;
  }
}
@media (max-width: 1000px) {
  .product__body {
    grid-template-columns: auto;
    row-gap: 30px;
  }
}
.product__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
  border: 2px solid #f4f4f4;
  height: 520px;
  background-color: #fff;
  border-radius: 15px;
}

@media (max-width: 480px) {
  .product__image {
  	height: 400px;
  }	
}
.product__image img {
  max-width: 100%;
  max-height: 100%;
}
.product__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 34px;
  line-height: 110%;
  letter-spacing: 0.02em;
  color: #151515;
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .product__title {
    font-size: 27px;
  }
}
.product__title::after {
  content: "";
  display: block;
  border-radius: 13px;
  width: 22px;
  height: 2px;
  margin-top: 13px;
  background-color: #333;
}
.product__items {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 25px;
}
.product__item span:first-child {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #444;
}
.product__item span:last-child {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #444;
}
.product__price {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: var(--zelenyy);
  margin-bottom: 40px;
}
.news-single__title {
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .news-single__title {
    margin-bottom: 15px;
  }
}
.news-single__text {
  color: #666 !important;
  font-family: var(--font-family) !important;
  line-height: 150% !important;
  all: revert;
}

.fixed-items {
  position: fixed;
  right: 15px;
  bottom: 15px;
  display: flex;
  flex-direction: column;
  z-index: 99;
  row-gap: 10px;
}
@media (max-width: 480px) {
  .fixed-items {
    row-gap: 5px;
    right: 10px;
    bottom: 10px;
  }
}
.fixed-items img {
  height: 60px;
  width: 60px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 50%;
}
@media (max-width: 480px) {
  .fixed-items img {
    height: 45px;
    width: 45px;
  }
}

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: rgba(21, 21, 21, 0.3137254902);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: none;
}
.modal.active {
  display: flex;
}
@media (max-width: 480px) {
  .modal {
    padding: 0;
  }
}
.modal__body {
  max-height: 90%;
  max-width: 1216px;
  border-radius: 30px;
  background-color: #fff;
  padding: 50px;
  position: relative;
}
@media (max-width: 480px) {
  .modal__body {
    padding: 50px 20px;
  }
}
.modal__close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 30px;
  cursor: pointer;
}
.modal__title {
	margin-bottom: 25px;
}
@media (max-width: 480px) {
	.modal__title {
		margin-bottom: 15px;
	}
}
.modal__text {
  color: #7a7a7a;
  font-family: var(--font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .modal__text {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.modal__inputs {
  display: flex;
  margin: 0 -10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .modal__inputs {
    flex-direction: column;
    row-gap: 15px;
    margin-bottom: 20px;
  }
}
.modal__input {
  flex: 0 0 50%;
  padding: 0 10px;
}
.modal__input input {
  width: 100%;
  color: #151515;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 138.889%;
  background-color: transparent;
  padding: 10px 20px;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
}

#contactForm_forms_flash .close {
  display: none;
}
#contactForm_forms_flash p {
  color: green;
  font-family: var(--font-family);
  font-size: 22px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  #contactForm_forms_flash p {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
#contactForm_forms_flash h4 {
  color: #151515;
  font-family: var(--font-family);
  font-size: 22px;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  #contactForm_forms_flash h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
#contactForm_forms_flash ul {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  #contactForm_forms_flash ul {
    margin-bottom: 15px;
  }
}
#contactForm_forms_flash li {
  color: red;
  font-family: var(--font-family);
  font-size: 16px;
}
@media (max-width: 480px) {
  #contactForm_forms_flash li {
    font-size: 14px;
  }
}

.search__title {
	margin-bottom: 30px;
}
.search__items {
	 display: flex;
	 flex-direction: column;
	 row-gap: 60px;
}
 .search__item {
	 position: relative;
}
 .search__item:not(:last-child)::after {
	 content: "";
	 display: block;
	 width: 100%;
	 position: absolute;
	 bottom: -30px;
	 left: 0;
	 height: 1px;
	 background-color: rgba(212, 212, 212, 1);
}
 .item-search__image {
	 margin-bottom: 20px;
}
 .item-search__image img {
	 max-width: 100%;
}
 .item-search__title {
	 font-family: var(--font-family);
	 font-size: 24px;
	 font-weight: 500;
	 line-height: 28px;
	 letter-spacing: 0em;
	 text-align: left;
	 margin-bottom: 10px;
}
 .item-search__text {
	 font-family: var(--font-family);
	 font-size: 16px;
	 font-weight: 400;
	 line-height: 24px;
	 letter-spacing: 0px;
	 text-align: left;
	 color: rgba(68, 68, 68, 1);
	 margin-bottom: 20px;
}
 .item-search__link {
	 display: flex;
	 align-items: center;
	 column-gap: 10px;
}
 .item-search__link span {
	 font-family: var(--font-family);
	 text-transform: uppercase;
	 font-size: 16px;
	 font-weight: 700;
	 line-height: 19px;
	 letter-spacing: 0.06em;
	 color: var(--krasnyy);
}
 .item-search__link svg {
	 margin-top: -4px;
}
 .not-found {
	 font-family: var(--font-family);
	 font-size: 22px;
	 font-weight: 400;
	 line-height: 130%;
}
 @media (max-width: 480px) {
	 .not-found {
		 font-size: 16px;
	}
}
 .ss-search-form__input {
	 margin-bottom: 40px;
	 display: grid;
	 grid-template-columns: 500px auto;
	 column-gap: 10px;
}
 @media (max-width: 480px) {
	 .ss-search-form__input {
		 margin-bottom: 30px;
	}
}
 @media (max-width: 767px) {
	 .ss-search-form__input {
		 grid-template-columns: 1fr;
		 row-gap: 10px;
	}
}
 .ss-search-form__input input {
	 font-family: var(--font-family);
	 font-weight: 400;
	 font-size: 18px;
	 line-height: 133%;
	 color: #151515;
	 padding: 13px 15px;
	 border-radius: 10px;
	 width: 100%;
	 border: 1px solid #e4e4e4;
}
 @media (max-width: 480px) {
	 .ss-search-form__input input {
		 font-size: 15px;
		 padding: 10px 12px;
	}
}
 .ss-search-form__input input::placeholder {
	 color: #444;
}
 .ss-search-form__input button {
	 font-family: var(--font-family);
	 font-weight: 700;
	 font-size: 18px;
	 text-align: center;
	 color: #fff;
	 border-radius: 10px;
	 width: 220px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 background: var(--krasnyy);
	 transition: 0.5s;
}
 @media (max-width: 767px) {
	 .ss-search-form__input button {
		 height: 44px;
	}
}
 @media (max-width: 480px) {
	 .ss-search-form__input button {
		 font-size: 14px;
		 width: 140px;
		 height: 40px;
	}
}
 .ss-search-form__input button:hover {
	 box-shadow: 0 0 20px var(--krasnyy);
}

.header__search {
	display: flex;
    align-items: center;
    column-gap: 7px;
}

.header__search img {
	width: 30px;
	height: 30px;
}

.header__right {
	display: flex;
	align-items: center;
	column-gap: 20px;
}