@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&display=swap");
:root {
  --font-family: "Oswald", sans-serif;
  --second-family: "Open Sans", sans-serif;
  --red: #a0020c;
}

/*Обнуление*/
* {
  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: 100.57px;
}


.footer__logo-inner{
	display: flex;
	gap: 10px;
	flex-direction: column;
}

@media (max-width: 1100px) {
  .page {
    margin-top: 78.42px;
  }
}
@media (max-width: 480px) {
  .page {
    margin-top: 68.67px;
  }
}

._container {
  max-width: 1246px;
  padding: 0 15px;
  margin: 0 auto;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 12px 0;
  background-color: #fff;
  box-shadow: 0 4px 6px 0 rgba(85, 85, 85, 0.1);
  z-index: 65;
}
@media (max-width: 1100px) {
  .header {
    padding: 10px 0;
  }
}
.header__body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 40px;
}
@media (max-width: 1100px) {
  .header__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.header__items {
  display: flex;
  column-gap: 40px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  .header__items {
    display: none;
  }
}
.header__items.header__items--last {
  column-gap: 20px;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .header__items.header__items--last {
    column-gap: 25px;
  }
}
.header__item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #151515;
  position: relative;
}
.header__item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--red);
  transition: width 0.5s ease-in-out;
}
.header__item:hover::after {
  width: 100%;
}
.header__logo {
  width: 118px;
}
@media (max-width: 1100px) {
  .header__logo {
    width: 90px;
  }
}
@media (max-width: 480px) {
  .header__logo {
    width: 75px;
  }
}
.header__logo img {
  width: 100%;
}
.header__phone {
  display: flex;
  align-items: center;
  column-gap: 3px;
}
.header__phone:hover span {
  color: var(--red);
}
.header__phone span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #151515;
  transition: 0.3s;
}
.header .header__mobile {
  display: none;
}
@media (max-width: 1100px) {
  .header .header__mobile {
    display: flex;
    align-items: center;
    column-gap: 20px;
  }
}

.menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 99;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  transform: translateX(-100%);
  transition: 0.8s;
}
.menu.active {
  transform: translateX(0);
}
.menu__close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 45px;
  cursor: pointer;
  color: #bbb;
  font-weight: 600;
}
@media (max-width: 480px) {
  .menu__close {
    font-size: 35px;
  }
}
.menu__logo img {
  width: 75px;
}
.menu__items {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  align-items: center;
}
.menu .header__item {
  font-size: 18px;
}

.button {
  padding: 13px 48px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  background: var(--red);
  border-radius: 10px;
  transition: 0.5s;
  display: inline-block;
  align-items: center;
  justify-content: center;
}
.button:hover {
  box-shadow: 0 0 20px var(--red);
}

section {
  margin-top: 90px;
}
@media (max-width: 480px) {
  section {
    margin-top: 60px;
  }
}

.main {
  height: calc(100vh - 100.57px);
  position: relative;
  margin-top: 0;
}
@media (max-width: 1100px) {
  .main {
    height: calc(100vh - 78.42px);
  }
}
@media (max-width: 480px) {
  .main {
    height: calc(100vh - 68.67px);
  }
}
.main::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 34, 34, 0.55);
}
.main__container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 64px;
  line-height: 121%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
  max-width: 775px;
}
@media (max-width: 767px) {
  .main__title {
    font-size: 40px;
  }
}
.main__text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
  max-width: 582px;
}
@media (max-width: 767px) {
  .main__text {
    font-size: 14px;
  }
}
.main__more {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: pulse 2s infinite;
}
@media (max-width: 767px) {
  .main__more {
    bottom: 10px;
  }
}
.main__video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(0.7);
    opacity: 0.2;
  }
  70% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(0.7);
    opacity: 0.2;
  }
}
#more {
  border-top: 80px solid transparent;
  margin-top: -80px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
@media (max-width: 480px) {
  #more {
    border-top: 60px solid transparent;
    margin-top: -60px;
  }
}

.title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 45px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: #151515;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .title {
    margin-bottom: 25px;
    font-size: 35px;
  }
}
.title::after {
  content: "";
  display: block;
  border-radius: 10px;
  width: 35px;
  height: 4px;
  background: var(--red);
  margin-top: 15px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.numbers__items {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 70px;
}
@media (max-width: 1300px) {
  .numbers__items {
    grid-template-columns: repeat(3, auto);
    row-gap: 40px;
  }
}
@media (max-width: 992px) {
  .numbers__items {
    grid-template-columns: repeat(2, auto);
    row-gap: 25px;
    justify-content: center;
    align-items: center;
    align-content: center;
  }
}
@media (max-width: 767px) {
  .numbers__items {
    grid-template-columns: repeat(1, auto);
    row-gap: 15px;
  }
}
.numbers__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.numbers__item:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 100%;
  background: url("../images/number.svg") center/cover no-repeat;
}
@media (max-width: 992px) {
  .numbers__item:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 992px) {
  .numbers__item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.numbers__number {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 55px;
  line-height: 182%;
  color: var(--red);
}
@media (max-width: 992px) {
  .numbers__number {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .numbers__number {
    font-size: 45px;
  }
}
.numbers__text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: #555;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .numbers__text {
    text-align: center;
  }
}

.catalog__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 1024px) {
  .catalog__items {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .catalog__items {
    grid-template-columns: 1fr;
  }
}
.catalog__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 44px 20px 25px;
  overflow: hidden;
}
.catalog__item::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.7);
}
.catalog__item:hover .catalog__icon img {
  transform: scale(0.9);
}
.catalog__item:hover .catalog__image img {
  transform: scale(1.1);
}
.catalog__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.catalog__icon {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}
.catalog__icon img {
  max-width: 100%;
  transition: 0.5s;
}
@media (max-width: 480px) {
  .catalog__icon img {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 480px) {
  .catalog__icon {
    margin-bottom: 20px;
  }
}
.catalog__name {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 124%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .catalog__name {
    font-size: 20px;
  }
}
.catalog__arrow {
  position: relative;
  z-index: 1;
}

.prod {
  padding: 105px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 480px) {
  .prod {
    padding: 60px 0;
  }
}
.prod::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.75);
}
.prod__container {
  position: relative;
  z-index: 1;
}
.prod__title {
  text-align: start;
  color: #fff;
  margin-bottom: 30px;
}
.prod__title::after {
  background-color: #fff;
  transform: translateX(0);
  margin-left: 0;
}
@media (max-width: 480px) {
  .prod__title {
    margin-bottom: 25px;
  }
}
.prod__text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #d6d6d6;
  max-width: 570px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.prod__button {
  margin-top: 28px;
}
@media (max-width: 480px) {
  .prod__button {
    margin-top: 25px;
  }
}

.news__items-wrapper {
  position: relative;
}
.news .swiper-slide {
  height: auto;
}
.news__item {
  border: 1px solid #e9e9e9;
  display: flex;
  height: 100%;
  flex-direction: column;
}
.news__image {
  position: relative;
  padding-bottom: 70%;
  overflow: hidden;
}
.news__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news__content {
  padding: 23px 20px 35px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .news__content {
    padding: 18px 15px 25px;
  }
}
.news__date {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #666;
  margin-bottom: 7px;
}
.news__name {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 133%;
  color: #151515;
  margin-bottom: 15px;
  flex-grow: 1;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  -ms-line-clamp: 2;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  display: -webkit-box;
  display: box;
  word-wrap: break-word;
  -webkit-box-orient: vertical;
  box-orient: vertical;
}
@media (max-width: 480px) {
  .news__name {
    font-size: 17px;
  }
}
.news__link {
  display: flex;
  align-items: center;
  column-gap: 7px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 133%;
  letter-spacing: 0.02em;
  color: var(--red);
}
@media (max-width: 480px) {
  .news__link {
    font-size: 17px;
  }
}
.news__link:hover {
  text-decoration: underline;
}
.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: -50px;
}
.news__next {
  right: -50px;
}

.sswiper-pagination {
  display: flex;
  justify-content: center;
  column-gap: 12px;
  margin-top: 30px;
}
.sswiper-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  opacity: 1;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transition: 0.3s;
  background-color: #d9d9d9;
}
.sswiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 10px;
  background-color: var(--red);
}
.sswiper-pagination.swiper-pagination-lock {
  margin-top: 0;
}

.about__body {
  display: flex;
  align-items: center;
  margin: 0 -50px;
}
@media (max-width: 992px) {
  .about__body {
    flex-direction: column;
    align-items: start;
    row-gap: 30px;
  }
}
.about__image {
  flex: 0 0 50%;
  padding: 0 50px;
}
.about__image img {
  width: 100%;
}
.about__content {
  flex: 1 0 50%;
  padding: 0 50px;
}
.about__title {
  margin-bottom: 30px;
  text-align: start;
}
@media (max-width: 480px) {
  .about__title {
    margin-bottom: 25px;
  }
}
.about__title::after {
  margin-left: 0;
  transform: translateX(0);
}
.about__text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #777;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media (max-width: 480px) {
  .about__text {
    font-size: 14px;
  }
}
.about__button {
  margin-top: 28px;
}
@media (max-width: 480px) {
  .about__button {
    margin-top: 24px;
  }
}

.partners__item {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E9E9E9;
  padding: 10px;
}
@media (max-width: 480px) {
  .partners__item {
    height: 80px;
  }
}
.partners__item img {
  max-width: 100%;
  max-height: 100%;
}

.footer {
  padding: 50px 0 20px;
  background-color: #F8F8F8;
}
@media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px;
  }
}
.footer__body {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__body {
    flex-direction: column;
    align-items: start;
    row-gap: 30px;
  }
}
.footer__logo {
  width: 220px;
}
.footer__logo img {
  width: 118px;
  margin-bottom: 25px;
}
.footer__logo span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #434343;
}
.footer__content {
  display: flex;
  column-gap: 80px;
}
@media (max-width: 992px) {
  .footer__content {
    column-gap: 50px;
  }
}
@media (max-width: 550px) {
  .footer__content {
    flex-direction: column;
    row-gap: 30px;
    align-items: start;
  }
}
.footer__nav {
  padding-right: 20px;
}
@media (max-width: 1024px) {
  .footer__nav {
    display: none;
  }
}
.footer__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #151515;
  margin-bottom: 11px;
  display: inline-block;
}
.footer__nav-items {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.footer__nav-items a {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 186%;
  color: #666;
}
.footer__catalog-items {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.footer__catalog-items a {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 186%;
  color: #666;
  white-space: nowrap;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  align-items: start;
}
.footer__address {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #666;
  margin-bottom: 8px;
  max-width: 350px;
}
.footer__phone {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 237%;
  color: #151515;
}
.footer__hours {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #666;
  display: inline-block;
  margin-top: 10px;
}
.footer__foot {
  display: flex;
  gap: 5px;
  align-content: inherit;
  padding-top: 17px;
  border-top: 1px solid #eaeaea;
  margin-top: 55px;
}
.footer__foot a {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .footer__foot {
    padding-top: 15px;
    margin-top: 30px;
  }
}
.footer__foot span {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 186%;
  color: #666;
}
@media (max-width: 480px) {
  .footer__foot span {
    font-size: 12px;
  }
}

.start {
  padding: 127px 0 45px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 0;
}
@media (max-width: 992px) {
  .start {
    padding: 100px 0 30px;
  }
}
@media (max-width: 480px) {
  .start {
    padding: 60px 0 20px;
  }
}
.start::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 34, 34, 0.7);
}
.start__container {
  position: relative;
  z-index: 1;
}
.start__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 50px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 480px) {
  .start__title {
    font-size: 38px;
  }
}

.leaders__items-wrapper {
  position: relative;
}
.leaders .swiper-slide {
  height: auto;
}
.leaders__item {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.leaders__image {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}
.leaders__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leaders__content {
  padding: 25px 20px 40px;
  border: 1px solid #e9e9e9;
  border-top: 0;
  flex-grow: 1;
}
.leaders__name {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  color: #151515;
  margin-bottom: 7px;
}
.leaders__text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #666;
}
.leaders__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: 0.3s;
}
.leaders__arrow.swiper-button-disabled {
  opacity: 0.5;
}
.leaders__prev {
  left: -50px;
}
.leaders__next {
  right: -50px;
}

.gallery__items-wrapper {
  position: relative;
}
.gallery__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 422px;
  gap: 32px;
}
@media (max-width: 1050px) {
  .gallery__item {
    grid-template-rows: 350px;
    gap: 20px;
  }
}
@media (max-width: 800px) {
  .gallery__item {
    grid-template-rows: 320px;
  }
}
@media (max-width: 767px) {
  .gallery__item {
    grid-template-columns: 1fr;
    grid-template-rows: 300px auto;
  }
}
@media (max-width: 480px) {
  .gallery__item {
    gap: 10px;
  }
}
.gallery__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 195px 195px;
  gap: 32px;
  height: 100%;
  width: 100%;
}
@media (max-width: 1050px) {
  .gallery__thumbs {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .gallery__thumbs {
    grid-template-rows: 200px 200px;
  }
}
@media (max-width: 480px) {
  .gallery__thumbs {
    grid-template-rows: 150px 150px;
    gap: 10px;
  }
}
.gallery__thumb {
	width: 100%;
	height: 100%;
}
.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: 0.3s;
}
.gallery__arrow.swiper-button-disabled {
  opacity: 0.5;
}
.gallery__prev {
  left: -50px;
}
.gallery__next {
  right: -50px;
}

.charters__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 29px;
}
@media (max-width: 1050px) {
  .charters__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .charters__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.charters__item {
  position: relative;
  overflow: hidden;
  padding-bottom: 130%;
  display: block;
}
.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;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 20px;
}
@media (max-width: 480px) {
  .charters__item img {
    padding: 10px;
  }
}

.news-page__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 992px) {
  .news-page__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 660px) {
  .news-page__items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.news-single__title {
  text-align: start;
}
.news-single__title::after {
  margin-left: 0;
  transform: translateX(0);
}
.news-single__text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #777;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.contacts__items {
  display: grid;
  gap: 25px;
  grid-template-columns: 1fr 230px 230px 1fr;
  margin-bottom: 27px;
}
@media (max-width: 480px) {
  .contacts__items {
    margin-bottom: 20px;
  }
}
@media (max-width: 1050px) {
  .contacts__items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 650px) {
  .contacts__items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.contacts__map {
  height: 430px;
}
@media (max-width: 480px) {
  .contacts__map {
    height: 370px;
  }
}
.contacts__map iframe,
.contacts__map div {
  height: 100%;
  width: 100%;
}

.contact {
  padding: 45px 25px;
  background: #f4f4f4;
}
@media (max-width: 480px) {
  .contact {
    padding: 30px 20px;
  }
}
.contact__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  text-transform: uppercase;
  color: #151515;
  margin-bottom: 12px;
}
.contact__text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #555;
}

.catalog-page {
  margin-top: 60px;
}
@media (max-width: 480px) {
  .catalog-page {
    margin-top: 30px;
  }
}
.catalog-page__body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 992px) {
  .catalog-page__body {
  	display: block;
  }
  .catalog-page__content {
  	margin-top: 25px;
  }
}
.catalog-page__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 30px;
  line-height: 135%;
  color: #151515;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .catalog-page__title {
    font-size: 27px;
  }
}
.catalog-page__title::after {
  content: "";
  display: block;
  border-radius: 10px;
  width: 35px;
  height: 4px;
  background: var(--red);
  margin-top: 15px;
}
.categories {
  padding: 28px 16px 18px;
  border: 1px solid #e5e5e5;
}
.categories__title {
  display: flex;
  align-items: center;
  column-gap: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 15px;
}
.categories__title span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #151515;
}
.categories__items {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.categories__item {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  color: #373636;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 9px;
  position: relative;
}
.categories__item.active {
  font-weight: 700;
}
.categories__item:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 1px;
  background-color: #e7e7e7;
}

.products {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1100px) {
  .products {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .products {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}
.products__item {
  padding: 18px 18px 40px;
  border: 1px solid #e5e5e5;
  transition: 0.5s;
  position: relative;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.products__item:hover {
  transform: scale(1.05);
  z-index: 1;
  cursor: pointer;
}
.products__image {
  height: 258px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .products__image {
    height: 200px;
  }
}
.products__image img {
  max-width: 100%;
  max-height: 100%;
}
.products__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  color: #151515;
  margin-top: 22px;
  margin-bottom: 20px;
}
.products__button {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--red);
  border-radius: 10px;
}

.product {
  margin-top: 100px;
}
@media (max-width: 992px) {
  .product {
    margin-top: 60px;
  }
}
@media (max-width: 480px) {
  .product {
    margin-top: 40px;
  }
}
.product__category {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 15px;
  color: #666;
}
.product__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 35px;
  line-height: 171%;
  color: #151515;
  margin-bottom: 17px;
}
.product__body {
  display: flex;
  align-items: center;
  margin: 0 -37px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .product__body {
    flex-direction: column;
    align-items: start;
    row-gap: 30px;
  }
}
.product__image-wrapper {
  flex: 0 0 50%;
  padding: 0 37px;
}
.product__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 40px;
}
.product__image img {
  max-width: 100%;
  max-height: 100%;
}
.product__content {
  flex: 1 0 50%;
  padding: 0 37px;
}
.product__info-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #151515;
  margin-bottom: 12px;
}
.product__info {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #666;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 30px;
}
.product__desc-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #151515;
  margin-bottom: 12px;
}
.product__desc {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #666;
}
@media (max-width: 480px) {
  .product__desc {
    font-size: 15px;
  }
}

.list {
  margin-top: 50px;
}
@media (max-width: 480px) {
  .list {
    margin-top: 30px;
  }
}
.list__container {
  max-width: 1330px;
}
.list__list {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.list__lis-item {
  background: #fff;
  padding: 30px 40px;
}
@media (max-width: 992px) {
  .list__lis-item {
    padding: 20px;
  }
}
.list__title {
  display: flex;
  align-items: center;
  column-gap: 15px;
  justify-content: space-between;
  cursor: pointer;
}
.list__title span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #151515;
  transition: 0.3s;
}
@media (max-width: 480px) {
  .list__title span {
    font-size: 18px;
  }
}
.list__title:hover span {
  color: var(--red);
}
.list__title svg {
  transition: 0.3s;
}
.list__title.active svg {
  transform: rotate(90deg);
}
.list__hidden {
  display: none;
}
.list__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 90px;
  padding-top: 25px;
  border-top: 1px solid #d1d1d1;
  margin-top: 26px;
}
@media (max-width: 480px) {
  .list__grid {
    column-gap: 40px;
  }
}
.list__items {
  display: flex;
  flex-direction: column;
  row-gap: 17px;
}
.list__item {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 111%;
  color: #666;
}
.list__item:first-child {
  font-weight: 700;
}
@media (max-width: 480px) {
  .list__item {
    font-size: 16px;
  }
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  padding: 10px;
  display: none;
}
.modal.active {
  display: flex;
}
.modal__body {
  background: #fff;
  width: 1252px;
  position: relative;
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: center;
}
@media (max-width: 1350px) {
  .modal__body {
    width: auto;
    display: block;
  }
}
.modal__close {
  position: absolute;
  right: 7px;
  top: 7px;
  cursor: pointer;
}
.modal__image img {
  width: 100%;
}
@media (max-width: 1350px) {
  .modal__image {
    display: none;
  }
}
.modal__content {
  padding: 60px;
}
@media (max-width: 767px) {
  .modal__content {
    padding: 30px 20px;
  }
}
.modal__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 45px;
  line-height: 120%;
  text-transform: uppercase;
  color: #151515;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .modal__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.modal__title::after {
  content: "";
  display: block;
  border-radius: 10px;
  width: 35px;
  height: 4px;
  background: var(--red);
  margin-top: 15px;
}
.modal__text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #777;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .modal__text {
    margin-bottom: 20px;
  }
}
.modal__inputs {
  display: grid;
  grid-template-columns: 228px 183px 228px;
  gap: 10px;
  margin-bottom: 30px;
}
@media (max-width: 819px) {
  .modal__inputs {
    grid-template-columns: 1fr;
  }
}
.modal__input input {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #555;
  padding: 13px 18px;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  width: 100%;
}
#modalForm_forms_flash .close {
  display: none;
}
#modalForm_forms_flash p {
  font-family: var(--font-family);
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 133%;
  color: green;
}
@media (max-width: 4800px) {
  #modalForm_forms_flash p {
    margin-bottom: 10px;
    font-size: 16px;
  }
}

.about--prod .about__body {
	align-items: start;
	margin: 0 -35px;
}

.about--prod .about__image {
	flex: 0 0 40%;
	padding: 0 35px;
}

.about--prod .about__content {
	flex: 0 0 60%;
	padding: 0 35px;
}

.about--prod .about__text {
	font-size: 16px;
}

.about__text ul {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
	padding-left: 40px;
}

@media (max-width: 480px) {
	.about__text ul {
		padding-left: 25px;
	}
}

.about__text ul li {
	list-style: disc;
}

.items {
	font-family: var(--second-family);
	min-width: 680px;
	width: 100%;
}

.items__item {
	display: grid;
	grid-template-columns: 173px 136px 1fr;
}

.items__name {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #151515;
	border: 1px solid #dedede;
	padding: 17px;
}

.items__size {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #151515;
	border: 1px solid #dedede;
	padding: 17px;
}

.items__text {
	font-weight: 400;
	font-size: 14px;
	line-height: 129%;

	border: 1px solid #dedede;
	padding: 17px;
}

.top-items {
	background: #a0020c;
	display: grid;
	grid-template-columns: 173px 136px 1fr;
	padding: 25px 15px;
	font-weight: 700;
	font-size: 16px;
	line-height: 150%;
	color: #fff;
}

.top-items__name {
	
}

.top-items__size {
	
}

.top-items__text {
	
}

@media (max-width: 992px) {
	.catalog-page__title {
		width: 100%;
		max-width: 100%;
	}
	.items-wrapper {
		overflow: auto;
		width: 100%;
	}
}

.form {
	
}

.form__container {
	
}

.form__body {
	display: grid;
	grid-template-columns: 1fr 2fr;
}

.form__image {
	
}

.form__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.form__content {
	padding: 100px 65px;
	background: #f3f3f3;
}

.form__title {
	text-align: start;
	margin-bottom: 29px;
}

.form__title::after {
	margin-left: 0;
	transform: translateX(0);
}

.form__text {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #777;
	margin-bottom: 24px;
	font-family: var(--second-family);
}

.form__inputs {
	margin-bottom: 30px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 520px;
	gap: 10px;
}

.form__input {
	
}

.form__input input {
	width: 100%;
	padding: 12px 18px;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #555;
	background-color: transparent;
	font-family: var(--second-family);
	border: 1px solid #E3E3E3;
	border-radius: 10px;
}

.form__button {
	
}

@media (max-width: 992px) {
	.form__content {
		padding: 50px 30px;
	}
}

@media (max-width: 767px) {
	.form__body {
		display: flex;
		flex-direction: column;
		align-items: start;
	}
	.footer__logo-inner{
	gap: 40px;
	flex-direction: row;
}
}

@media (max-width: 480px) {
	.form__content {
		padding: 30px 20px;
	}
	.form__inputs {
		grid-template-columns: 1fr;
	}
}

.header__langs {
	display: flex;
	align-items: center;
	column-gap: 15px;
}

.header__lang {
	font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #444;
  position: relative;
}

.header__lang:not(:last-child)::after {
	content: "/";
	display: block;
	position: absolute;
	top: 0;
	right: -10px;
	font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #444;
}

.header__lang.active {
	color: var(--red);
}







