@import url("https://fonts.googleapis.com/css2?family=Allerta+Stencil&family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap");

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #111010;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.main {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

.container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn-style1 {
  display: inline-block;
  position: relative;
  padding: 7px 17px;
  background: linear-gradient(90deg, #FF5A00 3.13%, #FF8847 59.46%, #FF5A00 97.19%);
  border-radius: 4px;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  z-index: 1;
}

.btn-style1:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(266.92deg, #FF5A00 -3.85%, #FF8847 96.99%);
  transition: opacity 0.4s ease-out;
  z-index: 2;
  opacity: 0;
}

.btn-style1:hover:after {
  opacity: 1;
}

.btn-style1 span {
  position: relative;
  z-index: 3;
}

.btn-style2 {
  display: flex;
  justify-content: center;
  font-size: 16px;
  line-height: 22px;
  color: #FF5E06;
  padding: 7px 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #FF5A00 !important;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn-style2:hover {
  background: rgba(255, 90, 0, 0.1);
}

.title {
  font-weight: 700;
  font-size: 36px;
  line-height: 49px;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 999;
}

.header__inner {
  padding: 10px 0;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.header__menu {
  margin-left: auto;
}

.header__list {
  display: flex;
  gap: 24px;
}

.header__item {
  font-size: 14px;
  line-height: 19px;
}

.header__item a {
  color: #000;
  transition: color 0.3s;
}

.header__item a:hover {
  color: #FF8847;
}

.header__logo {
  max-width: 117px;
  width: 100%;
}

.hero {
  margin-bottom: 70px;
  position: relative;
}

.hero::after {
  position: absolute;
  content: "";
  background: url("../img/logo-bg.png") no-repeat center;
  background-size: cover;
  width: 557px;
  height: 538px;
  top: 80px;
  left: 55px;
  z-index: -1;
}

.hero::before {
  position: absolute;
  content: "";
  background: url("../img/img-bg.png") no-repeat center;
  background-size: cover;
  width: 707px;
  height: 610px;
  top: 0;
  right: 0;
  z-index: -1;
}

.hero__inner {
  padding-top: 190px;
  padding-bottom: 160px;
  position: relative;
}

.hero__title {
  margin-bottom: 32px;
}

.hero__text {
  max-width: 490px;
  width: 100%;
  margin-bottom: 32px;
}

.hero__text--mb {
  display: none;
}

.hero__colum {
  display: flex;
  gap: 30px;
}

.hero__btn {
  max-width: 200px;
  width: 100%;
  display: flex;
  justify-content: center;
  border: 1px solid transparent;
  padding: 9px 0;
}

.hero__img--1 {
  position: absolute;
  top: 350px;
  left: 570px;
}

.hero__img--2 {
  position: absolute;
  top: 125px;
  left: 530px;
}

.hero__img--3 {
  position: absolute;
  top: 100px;
  left: 900px;
}

.catalog {
  padding-bottom: 80px;
}

.catalog__title {
  margin-bottom: 32px;
}

.catalog .slider {
  padding: 15px;
}

.catalog__slide {
  max-width: 282px;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  padding-bottom: 24px;
}
.catalog__slide:hover{
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.35);
}
.catalog__img {
  margin-bottom: 24px;
}

.catalog__slide-title {
  hyphens: manual;
  word-break: break-word;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  text-align: center;
  margin-bottom: 16px;
  padding: 0 15px;
}

.catalog__slide-text {
  hyphens: manual;
  word-break: break-word;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #363131;
  margin-bottom: 24px;
  padding: 0 15px;
}

.catalog__slide-btn {
  max-width: 250px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 7px 0;
  margin: 0px auto;
  margin-top: auto !important;
}

.swiper-button-prev,
.swiper-button-next {
  top: 45px;
  width: 32px;
  height: 32px;
  background: #FF5A00;
  border-radius: 6px;
  color: #fff;
}

.swiper-button-prev {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 60px);
}

.swiper-button-disabled {
  width: 32px;
  height: 32px;
  color: #fff;
  background: #D4D5D4;
  border-radius: 6px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
  font-weight: 700;
  transform: translateX(-50%, 50%);
}

.steps {
  padding: 85px 0;
  background: #FDFDFD;
  margin-bottom: 80px;
}

.steps__inner {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
}

.steps__colum {
  width: 100%;
}

.steps__title {
  margin-bottom: 32px;
}

.steps__text {
  max-width: 588px;
  width: 100%;
  margin-bottom: 32px;
}

.steps__btn {
  padding: 9px 14px;
}

.about {
  padding: 60px 0;
  background: #FDFDFD;
}

.about__inner {
  display: flex;
  align-items: center;
  gap: 100px;
  justify-content: space-between;
}

.about__colum {
  width: 100%;
}

.about__title {
  margin-bottom: 32px;
}

.about__text {
  margin-bottom: 32px;
}

.about__btn {
  padding: 9px 14px;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(2, 183px);
  grid-gap: 30px;
}

.about__item {
  max-width: 183px;
  width: 100%;
  min-height: 171px;
  max-height: 171px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: #00494B;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  color: #FDFDFD;
  padding: 0 20px;
}

.about__item::after {
  position: absolute;
  content: "E";
  font-family: "Allerta Stencil";
  font-style: normal;
  font-weight: 400;
  font-size: 128px;
  line-height: 164px;
  color: #FDFDFD;
  opacity: 0.2;
}

.about__item:nth-child(1) {
  margin-top: 70px;
}

.about__item:nth-child(2)::after {
  content: "L";
}

.about__item:nth-child(3)::after {
  content: "E";
}

.about__item:nth-child(4) {
  margin-top: -70px;
}

.about__item:nth-child(4)::after {
  content: "N";
}

.contact {
  padding: 50px 0;
  background: #F1F1E6;
}

.contact__inner {
  display: flex;
  gap: 25px;
}

.contact__colum {
  width: 100%;
}

.contact__colum:nth-child(2) {
  padding-top: 107px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.contact__title {
  font-weight: 400;
  font-size: 36px;
  line-height: 49px;
  margin-bottom: 35px;
}

.contact__form-title {
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
}

.contact__form-title span {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #EB3030;
}

.contact__input,
.contact__textarea {
  width: 100%;
  outline: none;
  background: #FFFFFF;
  border: 1px solid #E2D3D0;
  border-radius: 6px;
  margin-bottom: 25px;
  padding: 12px 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.contact__form {
  display: flex;
  flex-direction: column;
}

.contact__btn {
  outline: none;
  border: none;
  max-width: 160px;
  width: 100%;
  cursor: pointer;
}

.contact__text+.contact__text {
  margin-top: 8px;
}

.contact__text {
  color: #111010;
}

.contact__img--1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.contact__img--2 {
  position: absolute;
  right: -10px;
  top: 107px;
  z-index: 1;
}

.footer {
  background: #00494B;
  padding: 8px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1345px) {
  .hero::after {
    display: none;
  }
}

@media (max-width: 1215px) {
  .contact__img--2 {
    top: 140px;
  }

  .hero__img--2 {
    left: 500px;
  }

  .hero__img--1 {
    left: 520px;
  }

  .hero__img--3 {
    left: 840px;
  }
}

@media (max-width: 1180px) {
  .catalog__slide-btn {
    max-width: 200px;
  }

  .hero__img--3 {
    display: none;
  }
}

.header__burger {
  display: none;
}

.steps__btn--mobile,
.about__btn--mobile {
  display: none;
}

@media (max-width: 1020px) {
  .header__burger {
    display: flex;
    align-items: center;
  }

  .header__burger-btn {
    display: inline-block;
    position: relative;
    width: 32px;
    height: 32px;
    background: #C4C4C4;
    border-radius: 2px;
    transition: all 0.3s;
  }

  .header__burger-btn::after {
    position: absolute;
    content: "";
    background: #000;
    width: 22px;
    height: 2px;
    top: 9px;
    right: 0;
    left: 0;
    margin: 0 auto;
    border-radius: 2px;
  }

  .header__burger-btn::before {
    position: absolute;
    content: "";
    background: #000;
    width: 22px;
    height: 2px;
    bottom: 9px;
    right: 0;
    left: 0;
    margin: 0 auto;
    border-radius: 2px;
  }

  .header__burger-btn span {
    position: absolute;
    background: #000;
    width: 22px;
    height: 2px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    border-radius: 2px;
  }

  .header__burger-btn.active::after {
    transform: rotate(-45deg);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }

  .header__burger-btn.active::before {
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }

  .header__burger-btn.active span {
    display: none;
  }

  .header__burger-panel {
    display: none;
    position: fixed;
    padding-top: 150px;
    top: 61px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 888;
    box-shadow: 5px 0px 4px rgba(0, 0, 0, 0.25) inset;
  }

  .header__burger-panel.active {
    display: block;
  }

  .header__burger-menu {
    margin-bottom: 95px;
  }

  .header__burger-list {
    text-align: center;
  }

  .header__burger-link {
    color: #000;
  }

  .header__burger-text {
    display: block;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #000;
    text-align: center;
  }

  .header__burger-text+.header__burger-text {
    margin-top: 20px;
  }

  .header__burger-item+.header__burger-item {
    margin-top: 35px;
  }

  .header__inner {
    gap: 10px;
  }

  .header__menu {
    display: none;
  }

  .hero {
    overflow: hidden;
    background: #F1F1E6;
    margin: 0;
  }

  .hero__inner {
    padding-top: 100px;
    padding-bottom: 220px;
  }

  .hero::before {
    z-index: 0;
  }

  .title {
    max-width: 230px;
    width: 100%;
    font-size: 18px;
    line-height: 25px;
  }

  .hero__title {
    max-width: 230px;
    width: 100%;
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 16px;
  }

  .hero__text {
    max-width: 210px;
    width: 100%;
  }

  .hero__text--pc {
    display: none;
  }

  .hero__text--mb {
    display: block;
  }

  .hero__colum {
    flex-direction: column;
    gap: 24px;
  }

  .hero__img--1 {
    max-width: 156px;
    width: 100%;
    left: 120px;
    top: 420px;
    z-index: 3;
  }

  .hero__img--2 {
    max-width: 162px;
    width: 100%;
    left: 0;
    top: auto;
    bottom: 50px;
    z-index: 1;
  }

  .hero__img--3 {
    max-width: 140px;
    width: 100%;
    display: block;
    left: clamp(13.75rem, 2.841rem + 48.48vw, 18.75rem);
    top: auto;
    bottom: 170px;
    z-index: 2;
  }

  .catalog__title {
    margin-bottom: 24px;
    margin-top: 0;
  }

  .catalog {
    padding: 20px 0;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 18px;
    height: 18px;
    border-radius: 3px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 8px;
  }

  .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 35px);
  }

  .catalog__slide {
    max-width: 156px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding-bottom: 16px;
  }

  .catalog__img {
    margin-bottom: 16px;
  }

  .catalog__slide-title {
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 8px;
  }

  .catalog__slide-text {
    font-size: 11px;
    line-height: 16px;
    padding: 0 8px;
  }

  .catalog__slide-btn {
    max-width: 125px;
    margin-top: auto;
  }

  .catalog .slider {
    max-width: 340px;
    width: 100%;
    padding: 10px;
  }

  .steps,
  .about {
    padding: 25px 0;
    margin: 0;
  }

  .steps__inner,
  .about__inner {
    flex-direction: column;
  }

  .steps__title,
  .about__title {
    margin-bottom: 16px;
  }

  .steps__text,
  .about__text {
    font-size: 14px;
    line-height: 19px;
    margin: 0;
  }

  .steps__btn--pc,
  .about__btn--pc {
    display: none;
  }

  .steps__btn--mobile,
  .about__btn--mobile {
    display: block;
  }

  .steps__img {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .steps__btn {
    margin: 0 auto;
    text-align: center;
  }

  .about__inner {
    gap: 0;
  }

  .about__grid {
    grid-template-columns: repeat(2, 134px);
    grid-gap: 20px;
    justify-content: center;
  }

  .about__item {
    min-height: 125px;
    max-height: 125px;
    font-size: 13px;
    line-height: 18px;
  }

  .about__item::after {
    font-size: 92px;
    line-height: 1;
  }

  .about__btn--mobile {
    grid-column-start: 1;
    grid-column-end: 3;
    text-align: center;
  }

  .contact__colum:nth-child(2) {
    display: none;
  }

  .contact {
    padding: 30px 0;
  }

  .contact__title {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 50px;
  }

  .contact__btn {
    max-width: 100%;
  }

  .product__inner {
    flex-direction: column;
  }

  .product__img img {
    margin: 0 auto;
  }

  .product__title {
    font-size: 21px !important;
    line-height: 22px !important;
    margin-bottom: 20px !important;
  }

  .description__title {
    font-size: 18px !important;
    line-height: 22px !important;
  }

  .description__text {
    font-size: 14px !important;
    line-height: 19px !important;
  }
}

.product {
  margin-top: 100px;
  margin-bottom: 30px;
}

.product__inner {
  display: flex;
  gap: 30px;
}

.product__colum {
  width: 100%;
}

.product__img img {
  width: 100%;
}

.product__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 49px;
  margin-bottom: 40px;
}

.product__text {
  max-width: 340px;
  width: 100%;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 25px;
}

.product__form {
  max-width: 465px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.product__form-title {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 5px;
}

.product__form-title span {
  color: #EB3030;
}

.product__input {
  outline: none;
  background: #FFFFFF;
  border: 1px solid #E2D3D0;
  border-radius: 6px;
  margin-bottom: 25px;
  padding: 12px 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.description {
  margin-bottom: 30px;
}

.description__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
  margin-bottom: 24px;
}

.description__text {
  font-size: 20px;
  line-height: 27px;
	
	td{
		border: 1px solid #0000005c;
        padding: 3px 18px;
	}
}

.swiper-backface-hidden .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/*# sourceMappingURL=style.css.map */