@charset "UTF-8";

@font-face {
  font-family: Rubik;
  font-display: swap;
  src: url("../fonts/Rubik-Bold.woff2") format("woff2"), url("../fonts/Rubik-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Rubik;
  font-display: swap;
  src: url("../fonts/Rubik-ExtraBold.woff2") format("woff2"), url("../fonts/Rubik-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: Rubik;
  font-display: swap;
  src: url("../fonts/Rubik-Medium.woff2") format("woff2"), url("../fonts/Rubik-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Rubik;
  font-display: swap;
  src: url("../fonts/Rubik-Regular.woff2") format("woff2"), url("../fonts/Rubik-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Rubik;
  font-display: swap;
  src: url("../fonts/Rubik-SemiBold.woff2") format("woff2"), url("../fonts/Rubik-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

/* Указываем box sizing */

html {
  height: 100%;
  scroll-behavior: smooth;
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input:focus-visible {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #12332C;
  font-size: 18px;
  font-family: Rubik;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}

ul,
ol {
  list-style-position: inside;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

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

.content {
  padding: 100px 0;
}

.title {
  color: #111;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 50px;
}

/*alert*/

.box-size {
  box-sizing: border-box;
}

.alert--fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
  display: flex;
}

.alert--width {
  width: 400px;
}

.alert--img__item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alert--img__item {
  display: none;
  flex-shrink: 0;
}

.alert--active .active {
  display: block;
}

.alert--warning .warning {
  display: block;
}

.alert--error .error {
  display: block;
}

.alert--content {
  position: relative;
  z-index: 12;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 30px;
  color: #333333;
  margin-bottom: 10%;
}

.alert--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 11;
  top: 0px;
  left: 0px;
}

.alert-text {
  margin-top: 15px;
  text-align: center;
}

.alert--active .active path {
  fill: #4ad395;
}

.alert--warning .warning path {
  fill: #e5e75d;
}

.alert--error .error path {
  fill: #f81919;
}

.alert--title {
  font-size: 28px;
  font-weight: 500;
}

.alert--subtitle {
  font-weight: 400;
  font-size: 20px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #ccbbbb;
}

.alert--x {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.alert--x svg {
  width: 100%;
  height: 100%;
}

.alert--x svg path {
  fill: #968787;
  transition: all 0.3s ease;
}

.alert--x:hover path {
  fill: black;
}

/*alert*/

/*formLoader*/

.form_loader {
  position: fixed;
  display: none;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
  position: absolute;
  width: 350px;
  max-width: 90%;
  left: 50%;
  top: 45%;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.form_loader_animate {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.form_loader_animate:after {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  /*margin: 8px;*/
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #C53364 transparent #C53364 transparent;
  -webkit-animation: loader-animate 1.2s linear infinite;
          animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
  font-size: 20px;
  text-align: center;
}

@-webkit-keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*formLoader*/

.burger {
  position: relative;
  z-index: 1;
  display: none;
  cursor: pointer;
}

.burger__dot {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #12332C;
  position: relative;
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.burger__dot--line {
  background-color: transparent;
}

.burger__dot--line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #12332C;
  border-radius: 5px;
  transition: width 0.3s ease;
  transform-origin: 2.5px 2.5px;
}

.burger__dot--left-top::before {
  transform: rotate(45deg);
}

.burger__dot--right-bottom::before {
  transform: rotate(-135deg);
}

.burger__dot--right-top::before {
  transform: rotate(135deg);
}

.burger__dot--left-bottom::before {
  transform: rotate(-45deg);
}

.burger._opened .burger__dot--line::before {
  width: 18px;
}

.burger._opened .burger__dot--aside {
  background-color: transparent;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: #fff;
  border-bottom: 3px solid #12332C;
}

.header__container {
  display: flex;
  align-items: center;
  padding: 25px 0;
}

.header__logo {
  width: 180px;
  height: 60px;
  flex-shrink: 0;
}

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

.header__nav {
  margin-left: auto;
  margin-right: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 60px;
}

.header__nav-link {
  font-size: 18px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.header__nav-link:hover {
  color: #76993D;
}

.header__nav-link.active {
  color: #76993D;
}

.header__socials {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.header__socials-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.header__socials-item:hover {
  color: #76993D;
}

.header__socials-item svg {
  flex-shrink: 0;
}

.header-space {
  padding-top: 113px;
}

.footer {
  margin-top: auto;
  background: #12332C;
}

.footer__container {
  padding: 50px 0;
  display: flex;
  align-items: flex-start;
}

.footer__col {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-right: 100px;
}

.footer__col span {
  font-size: 14px;
  color: #ffffff;
}

.footer__logo {
  width: 200px;
  height: 50px;
  flex-shrink: 0;
}

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

.footer__nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.footer__nav-title {
  color: #76993D;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.footer__nav-list li {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 16px;
  gap: 10px;
  max-width: 300px;
  line-height: 125%;
}

.footer__nav-list li svg {
  flex-shrink: 0;
}

.footer__nav-list li a {
  transition: 0.2s ease-in-out;
}

.footer__nav-list li a:hover {
  color: #76993D;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
}

.footer__bot {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bot-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 14px;
  color: #ffffff;
}

.footer__bot-container a,
.footer__bot-container span {
  opacity: 0.5;
}

.footer__bot-container a {
  transition: 0.2s ease-in-out;
}

.footer__bot-container a:hover {
  color: #76993D;
}

.breadcrumbs__container {
  padding: 50px 0;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  overflow: auto;
}

.breadcrumbs__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.breadcrumbs__list-item {
  position: relative;
}

.breadcrumbs__list-item:not(:last-child) {
  margin-right: 28px;
}

.breadcrumbs__list-item:not(:last-child)::before {
  position: absolute;
  content: "/";
  top: 50%;
  transform: translateY(-50%);
  right: -18px;
}

.breadcrumbs__list-link {
  white-space: nowrap;
  font-size: 14px;
  color: #12332C;
  transition: 0.2s ease-in-out;
}

.breadcrumbs__list-link:hover {
  color: #76993D;
}

.breadcrumbs__list-link.active {
  pointer-events: none;
  color: #76993D;
}

.hero {
  background: url("../img/bg-section.png") center/cover no-repeat, #76993D;
}

.hero__container {
  padding: 80px 0;
}

.hero__slider {
  height: 500px;
}

.hero__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  color: #ffffff;
  padding: 0 16px;
}

.hero__slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__slide-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero__slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__slide-title {
  position: relative;
  z-index: 1;
  max-width: 554px;
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero__slide-text {
  position: relative;
  z-index: 1;
  max-width: 515px;
  font-size: 18px;
  font-weight: 500;
  line-height: 122%;
}

.hero__arrows {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  right: 50px;
  bottom: 32px;
  z-index: 2;
}

.hero__arrow {
  display: flex;
}

.hero__pagination.swiper-pagination-clickable {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  z-index: 3;
  width: auto;
  display: flex;
  gap: 10px;
}

.hero__pagination.swiper-pagination-clickable .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
  transition: 0.2s ease-in-out;
}

.hero__pagination.swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.about__container {
  padding: 200px 0;
  background: url("../img/about-bg.png") right center/contain no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.about__left {
  display: flex;
  flex-direction: column;
  width: 48%;
}

.about__items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.about__item {
  display: flex;
  align-items: center;
  gap: 35px;
  border-radius: 20px;
  padding: 20px 40px;
  background: rgba(118, 153, 61, 0.1);
  transition: 0.2s ease-in-out;
}

.about__item:hover {
  background: rgba(118, 153, 61, 0.4);
}

.about__item:hover .about__item-title {
  color: #12332C;
}

.about__item svg {
  flex-shrink: 0;
}

.about__item-col {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.about__item-title {
  color: #111;
  font-size: 25px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.about__item-text {
  color: #12332C;
  font-size: 14px;
  line-height: 158%;
}

.about__images {
  width: 48%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

.about__img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about__img::before {
  display: block;
  content: "";
}

.about__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__img::before {
  padding-top: 130%;
}

.about__link {
  align-self: center;
  margin-top: 30px;
}

.benefits {
  background: url("../img/bg-section.png") center/cover no-repeat, #76993D;
}

.benefits__container {
  padding: 120px 0;
}

.benefits__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

.benefits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  background: #FFF;
  padding: 40px;
  color: #12332C;
  transition: 0.2s ease-in-out;
}

.benefits__item:hover {
  background: #12332C;
  color: #ffffff;
}

.benefits__item-img {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}

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

.benefits__item-title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 105%;
  margin-bottom: 20px;
}

.benefits__item-text {
  text-align: center;
  font-size: 14px;
  line-height: 142%;
}

.company__container {
  padding-bottom: 50px;
}

.company__image {
  margin-bottom: 50px;
  border-radius: 25px;
  overflow: hidden;
  height: auto;
}

.company__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.company__title {
  margin-bottom: 30px;
}

.company__text {
  color: #12332C;
  font-size: 14px;
  line-height: 180%;
}

.work__container {
  padding-top: 50px;
  padding-bottom: 100px;
}

.work__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.work__item {
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 20px;
  background: rgba(118, 153, 61, 0.1);
}

.work__item-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 20px;
}

.work__item-desc {
  font-size: 14px;
  line-height: 142%;
}

.catalog__container {
  padding-bottom: 100px;
}

.catalog__btns {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 45px 40px;
  border-radius: 20px;
  border: 1px solid #DCDCDC;
  background: rgba(118, 153, 61, 0.1);
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.catalog__btns-item {
  padding: 15px;
  width: 280px;
  border-radius: 10px;
  background: #12332C;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
}

.catalog__btns-item.download {
  color: #12332C;
  border: 1px solid #12332C;
  background: rgba(18, 51, 44, 0.09);
}

.catalog__btns-item:hover {
  transform: scale(1.05);
}

.catalog__form {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding-bottom: 50px;
}

.catalog__form-col {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.catalog__form-col span {
  font-size: 18px;
  font-weight: 500;
}

.catalog__form-col select {
  width: 230px;
  border-radius: 6px;
  border: 1px solid #DCDCDC;
  background: #FFF;
  padding: 10px 20px;
  font-size: 14px;
  appearance: none;        /* Убираем стандартную стрелку */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('../img/select-arrow.png'); /* твоя иконка */
  background-repeat: no-repeat;
  background-position: right 12px center;  /* позиция */
  background-size: 20px;
  padding-right: 30px;  
}

.catalog__reset {
  padding: 12px 30px;
  border-radius: 10px;
  background: #12332C;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
  align-self: flex-end;
}

.catalog__reset:hover {
  background: #76993D;
}

.catalog__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

.catalog__item {
  display: flex;
  align-items: flex-start;
  border-radius: 20px;
  border: 1px solid #E3E3E3;
  background: #FFF;
  padding: 30px;
  gap: 30px;
}

.catalog__item-img {
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(118, 153, 61, 0.1);
  padding: 15px;
}

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

.catalog__item-col {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  width: 100%;
  height: 100%;
}

.catalog__item-tag {
  font-size: 12px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(18, 51, 44, 0.2);
  align-self: flex-start;
}

.catalog__item-tag.in-stock {
  background: rgba(215, 39, 39, .2);
  color: #D72727;
}

.catalog__item-name {
  font-size: 18px;
  font-weight: 500;
  line-height: 111%;
}

.catalog__item-desc {
  font-size: 14px;
  line-height: 130%;
}

.catalog__item-link {
  padding: 8px 50px;
  border-radius: 20px;
  background: #76993D;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  align-self: flex-end;
  transition: 0.2s ease-in-out;
  margin-top: auto;
}

.catalog__item-link:hover {
  background: #12332C;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.pagination li {
  display: flex;
  flex-shrink: 0;
}

.pagination li:not(.arrow) a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 51, 44, 0.2);
  font-size: 14px;
  transition: 0.2s ease-in-out;
}

.pagination li.active a {
  background: #76993D;
  color: #fff;
}

.pagination li:not(.arrow) a:hover {
  background: #12332C;
  color: #fff;
}

.service__container {
  padding-bottom: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 48%;
}

.service__text {
  font-size: 14px;
  line-height: 180%;
}

.service__link {
  margin-top: 30px;
  border-radius: 10px;
  background: #12332C;
  padding: 15px 80px;
  color: #FFF;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
}

.service__link:hover {
  background: #76993D;
}

.service__img {
  width: 48%;
  height: auto;
  border-radius: 20px;
}

.service__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.deliv__container {
  padding-top: 60px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
}

.deliv__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  width: 100%;
}

.deliv__item {
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 20px;
  background: rgba(118, 153, 61, 0.1);
  padding: 30px;
  transition: 0.2s ease-in-out;
}

.deliv__item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.deliv__item-img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.deliv__item-col {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.deliv__item-title {
  font-size: 18px;
  font-weight: 500;
}

.deliv__item-desc {
  font-size: 14px;
  line-height: 130%;
}

.deliv__link {
  -ms-grid-row-align: center;
      align-self: center;
  margin-top: 50px;
  border-radius: 10px;
  background: #12332C;
  padding: 15px 80px;
  color: #FFF;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
}

.deliv__link:hover {
  background: #76993D;
}

.contact__container {
  padding-bottom: 100px;
}

.contact__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 400px 1fr;
  grid-template-columns: 400px 1fr;
  grid-gap: 30px;
}

.contact__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 15px;
  border-radius: 20px;
  background: #F1F5EC;
  padding: 30px;
}

.contact__item a,
.contact__item span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.contact__item a {
  transition: 0.2s ease-in-out;
}

.contact__item a:hover {
  color: #76993D;
}

.contact__item-title {
  font-size: 18px;
  font-weight: 500;
}

.contact__item-socials {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact__item-socials a {
  display: flex;
}

.contact__map {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
}

.feedback {
  background: #F1F5EC;
}

.feedback__container {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feedback form {
  width: 100%;
  max-width: 350px;
}

.feedback__title {
  text-align: center;
}

.feedback__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.feedback__form input,
.feedback__form textarea {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #DCDCDC;
  background: #FFF;
  padding: 10px 20px;
  font-size: 14px;
  resize: none;
  outline: none;
}

.feedback__form textarea {
  height: 100px;
}

.feedback__submit {
  border-radius: 10px;
  background: #12332C;
  padding: 15px 80px;
  color: #FFF;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
  border: none;
  outline: none;
  cursor: pointer;
}

.feedback__submit:hover {
  background: #76993D;
}

.politics__container {
  padding-bottom: 100px;
}

.politics__title {
  text-align: center;
}

.politics__text {
  font-size: 14px;
  line-height: 180%;
}

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

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  display: none;
}

.modal.active {
  display: flex;
}

.modal__block {
  position: relative;
  width: 100%;
  max-width: 530px;
  margin: 0 16px;
  border-radius: 15px;
  background: #F1F5EC;
  padding: 45px 100px;
}

.modal__block-close {
  position: absolute;
  top: 30px;
  right: 30px;
}

.fixed-btns {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  z-index: 9;
}

.fixed-btns a {
  display: flex;
}

@media (max-width: 1420px) {
  .content {
    padding: 75px 0;
  }
}

@media (max-width: 1360px) {
  .container {
    max-width: 1240px;
  }
}

@media (max-width: 1240px) {
  .container {
    max-width: 992px;
  }

  .content {
    padding: 50px 0;
  }

  .title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .header__container {
    padding: 15px 0;
  }

  .header__logo {
    width: 140px;
    height: 40px;
  }

  .header__nav-list {
    gap: 30px;
  }

  .header__nav-link {
    font-size: 16px;
  }

  .header-space {
    padding-top: 78px;
  }

  .hero__slide-title {
    font-size: 32px;
  }

  .hero__slide-text {
    font-size: 16px;
  }

  .benefits__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1200px) {
  .alert--width {
    width: 370px;
  }

  .alert--content {
    padding: 25px;
  }

  .alert--img__item svg {
    width: 75px;
    height: 75px;
  }

  .alert-text {
    margin-top: 10px;
  }

  .alert--title {
    font-size: 24px;
  }

  .alert--subtitle {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  body {
    font-size: 16px;
  }

  .burger {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (5px)[3];
    grid-template-columns: repeat(3, 5px);
    justify-content: space-between;
    width: 25px;
    row-gap: 5px;
    -moz-column-gap: 5px;
         column-gap: 5px;
    margin-left: 20px;
    margin-right: 0;
  }

  .header__logo {
    margin-right: auto;
  }

  .header__nav {
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 3px solid #12332C;
    display: none;
  }

  .header__nav.active {
    display: block;
  }

  .header__nav-list {
    flex-direction: column;
    padding: 40px 0;
  }

  .header__socials-item {
    font-size: 12px;
  }

  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer__col {
    margin-right: 0;
    align-items: center;
  }

  .footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer__nav-list {
    align-items: center;
  }

  .footer__nav-list li {
    max-width: unset;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer__bot-container {
    flex-direction: column;
    row-gap: 20px;
  }

  .breadcrumbs__container {
    padding: 30px 0;
  }

  .about__container {
    flex-direction: column;
    row-gap: 30px;
    padding: 100px 0;
  }

  .about__left {
    width: 100%;
  }

  .about__item {
    padding: 15px 20px;
    gap: 15px;
  }

  .about__item-title {
    font-size: 20px;
  }

  .about__images {
    width: 100%;
    grid-gap: 15px;
  }

  .benefits__container {
    padding: 100px 0;
  }

  .work__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .catalog__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .deliv__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .fixed-btns {
    top: unset;
    transform: unset;
    bottom: 16px;
  }

  .fixed-btns a {
    width: 45px;
    height: 45px;
  }

  .fixed-btns a svg {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 992.9px) {
  .container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .catalog__reset {
    align-self: flex-start;
  }
  .catalog__btns {
    padding: 25px;
  }

  .catalog__btns-item {
    width: 100%;
  }

  .catalog__form {
    flex-direction: column;
  }

  .service__container {
    flex-direction: column;
    row-gap: 50px;
  }

  .service__left {
    width: 100%;
  }

  .service__img {
    width: 100%;
  }

  .contact__block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .contact__map {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .hero__slide-title {
    font-size: 26px;
  }

  .hero__arrows {
    display: none;
  }

  .benefits__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .benefits__item-title {
    font-size: 20px;
  }

  .modal__block {
    padding: 25px;
  }

  .modal__block-close {
    right: 10px;
    top: 10px;
  }
}

@media (max-width: 500px) {
  .alert--content {
    width: 92%;
  }

  .alert--img__item svg {
    width: 60px;
    height: 60px;
  }

  .alert--title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .catalog__item {
    flex-direction: column;
  }

  .catalog__item-link {
    width: 100%;
  }
}

.politics__text ul,
.politics__text ol {
    list-style-position: outside !important;
    margin-left: 25px;
    padding-left: 15px;
}

.politics__text ul {
    list-style-type: disc !important;
}

.politics__text ul ul {
    list-style-type: circle !important;
}

.politics__text ul ul ul {
    list-style-type: square !important;
}

.modal-product-name {
    font-size: 22px;
    font-weight: 700;
    margin: 15px 0 5px;
    color: #12332C;
}

.modal-product-desc {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.8;
    margin-bottom: 20px;
}

.fixed-btns {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.fixed-btns a {
    display: block;
    margin-top: 10px;
    transition: .3s ease;
}

.fixed-btns a:not(.fixed-btn-mail) {
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
}

.fixed-btns.active a:not(.fixed-btn-mail) {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}


.footer-address {
    transition: 0.3s;
    cursor: pointer;
}

.footer-address:hover {
    color: #76993D;
}
