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

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
}

html {
  scroll-behavior: smooth;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

body {
  background: #434343;
  font-family: "TT Squares";
  color: #fff;
}

input, textarea {
  font-family: "TT Squares";
}

.wrapper {
  width: 1180px;
  margin: 0 auto;
}

.top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.top_line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 0.06rem solid rgb(255, 255, 255);
}

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

.shedule {
  color: rgb(255, 255, 255);
  font-size: 1.13rem;
  font-weight: 400;
}

.top_number {
  color: rgb(255, 255, 255);
  font-size: 1.13rem;
  font-weight: 400;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.socials .social {
  width: 27px;
  height: 27px;
  -o-object-fit: contain;
     object-fit: contain;
}

.top_nav ul {
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
}
.top_nav ul li a {
  color: rgb(255, 255, 255);
  font-size: 1.13rem;
  font-weight: 400;
  text-decoration: none;
}

header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 0.06rem solid rgb(255, 255, 255);
}

.logo {
  width: 112px;
  height: 56px;
  background: url(../img/svg/logo.svg) center no-repeat;
  background-size: contain;
}

.header_nav ul {
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
}
.header_nav ul li a {
  color: rgb(255, 255, 255);
  font-size: 1.13rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.header_nav ul li a:hover {
  text-decoration: underline;
}

.main_section {
  height: 679px;
  background: linear-gradient(1.08deg, rgba(0, 0, 0, 0) 48.42%, rgba(0, 0, 0, 0.8) 76.99%), linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/main.jpg) center no-repeat;
  background-size: cover;
  margin-bottom: 33px;
}
.main_section .wrapper {
  min-height: 679px;
  max-height: 679px;
  height: 100dvh;
  padding-top: 186px;
}

.main_title {
  color: rgb(255, 255, 255);
  font-size: 2.81rem;
  font-weight: 400;
  text-transform: uppercase;
  max-width: 726px;
  margin-bottom: 16px;
}

.main_subtitle {
  color: rgb(255, 255, 255);
  font-size: 1.38rem;
  font-weight: 400;
  max-width: 876px;
  margin-bottom: 67px;
}

.main_grid {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 104px;
}

.main_grid_item {
  color: rgb(255, 255, 255);
  font-size: 1.13rem;
  font-weight: 400;
  text-decoration-line: underline;
}

.section_title {
  padding-bottom: 24px;
  border-bottom: 1px solid #fff;
  color: rgb(255, 255, 255);
  font-size: 1.38rem;
  font-weight: 400;
  margin-bottom: 37px;
}

.catalog_section {
  margin-bottom: 120px;
}

.catalog_grid {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.catalog_item {
  width: calc(25% - 15px);
  background: #fff;
  min-height: 249px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.catalog_item:hover .catalog_sub {
  height: auto;
  visibility: visible;
  opacity: 1;
}

.catalog_img {
  width: 100%;
  height: 146px;
  border-radius: 20px;
  overflow: hidden;
}
.catalog_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.catalog_title_and_sub {
  padding: 0 20px;
  padding-bottom: 23px;
  width: 100%;
  margin-top: 44px;
}

.catalog_title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  color: rgb(67, 67, 67);
  font-size: 1.13rem;
  font-weight: 700;
  height: 40px;
  text-decoration: none;
}
.catalog_title::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/svg/arrow.svg) center no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

.catalog_sub {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3px;
  opacity: 0;
  visibility: hidden;
  height: 0;
  position: absolute;
  background: #fff;
  width: 100%;
  left: 0;
  padding: 20px;
  padding-top: 0;
}
.catalog_sub a {
  color: rgb(67, 67, 67);
  font-size: 0.88rem;
  font-weight: 400;
  text-decoration-line: underline;
}

.akcii_section {
  overflow: hidden;
  margin-bottom: 75px;
}

.arrows_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.akcii_slider_container {
  position: relative;
}
.akcii_slider_container .swiper-slide {
  width: auto;
  height: auto;
}
.akcii_slider_container .swiper-slide .akcii_slide {
  display: flex;
  width: 876px;
  height: 301px;
}
.akcii_slider_container .swiper-slide .akcii_slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pp, .nn {
  position: static;
  transform: none;
  width: 175px;
  height: 15px;
  margin: 0;
}
.pp::after, .nn::after {
  display: none;
}

.pp {
  transform: rotate(180deg);
}

.product {
  width: 296px;
  height: 287px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.product_top {
  height: 118px;
  width: 100%;
  flex-shrink: 0;
}

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

.buy {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  color: rgb(103, 193, 94);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration-line: underline;
}

.product_shield_and_buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 14px;
  width: 100%;
  padding-right: 15px;
}

.product_shield {
  width: 129px;
  color: rgb(255, 255, 255);
  font-size: 0.75rem;
  font-weight: 400;
  padding: 3px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #FA7A31;
}

.product_bottom {
  padding: 20px 32px 15px 20px;
}

.product_bottom {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.product_title {
  color: rgb(67, 67, 67);
  font-size: 1.13rem;
  font-weight: 700;
  text-decoration: none;
  height: 50px;
  padding-bottom: 10px;
  border-bottom: 1px solid #FA7A31;
  width: 100%;
}

.product_hark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.product_hark {
  gap: 5px;
}
.product_hark .hark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.product_hark .hark div:first-child {
  color: rgb(67, 67, 67);
  font-size: 0.75rem;
  font-weight: 400;
}
.product_hark .hark div:last-child {
  color: rgb(250, 122, 49);
  font-size: 0.75rem;
  font-weight: 400;
}

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

.price_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.price_title {
  color: rgb(67, 67, 67);
  font-size: 0.5rem;
  font-weight: 700;
}

.price {
  color: rgb(250, 122, 49);
  font-size: 0.88rem;
  font-weight: 700;
}

.order {
  color: rgb(67, 67, 67);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration-line: underline;
}

.top_section {
  overflow: hidden;
  margin-bottom: 83px;
}

.products_slider .swiper-slide {
  width: auto;
  height: auto;
}

.news {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 44px;
}

.news_content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 16px;
  width: 248px;
}

.news_top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.news_date {
  color: rgb(255, 255, 255);
  font-size: 0.5rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.news_title {
  color: rgb(255, 255, 255);
  font-size: 1.13rem;
  font-weight: 700;
  line-height: 1.31rem;
  text-decoration: none;
  margin-bottom: 16px;
  height: 42px;
}

.news_txt {
  color: rgb(255, 255, 255);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1rem;
  height: 64px;
}

.news_more {
  color: rgb(255, 255, 255);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 0.88rem;
}

.news_img {
  width: 249px;
  height: 189px;
  flex-shrink: 0;
}
.news_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.news_section {
  margin-bottom: 60px;
}

footer .wrapper {
  padding: 30px 0;
  border-top: 1px solid #fff;
}

.footer_top {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.f_logo_and_contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.f_logo_and_contacts .logo {
  margin-bottom: 23px;
}

.f_contacts_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
}

.f_contacts_title {
  color: rgb(250, 122, 49);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.f_contacts_txt {
  color: rgb(255, 255, 255);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 0.88rem;
}
.f_contacts_txt a {
  color: inherit;
}

.slogan {
  color: rgb(255, 255, 255);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 0.88rem;
  text-transform: uppercase;
  margin-top: 18px;
}

.f_nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.f_nav_links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
}
.f_nav_links a {
  color: rgb(250, 122, 49);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.25rem;
  text-decoration: none;
}
.f_nav_links a:hover {
  text-decoration: underline;
}

.f_nav_title {
  color: rgb(255, 255, 255);
  font-size: 1.13rem;
  font-weight: 700;
  line-height: 2.81rem;
  text-decoration: none;
}

.f_contacts_items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}

.f_socials_and_mult {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.top.sticky, .top.active {
  padding-bottom: 15px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/main.jpg) center top no-repeat;
  background-size: cover;
}

.sticky {
  position: sticky;
}

.crosh {
  padding: 16px 0;
}
.crosh ul {
  list-style: none;
  margin: 0;
}
.crosh ul li {
  display: inline-block;
}
.crosh ul li a {
  color: rgb(255, 255, 255);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  gap: 5px;
}
.crosh ul li a::after {
  content: "";
  width: 5px;
  height: 5px;
  background: #FA7A31;
  border-radius: 50%;
}
.crosh ul li:last-child a {
  color: rgb(250, 122, 49);
}
.crosh ul li:last-child a::after {
  display: none;
}

.main_product_title {
  color: rgb(255, 255, 255);
  font-size: 1.13rem;
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 35px;
}

.product_main_grid {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 38px;
}

.product_main_sliders_wrapper {
  width: 296px;
  overflow: hidden;
}

.product_main_big_slider .swiper-slide {
  width: auto;
  height: auto;
}
.product_main_big_slider .big_img {
  width: 100%;
  height: 257px;
  -o-object-fit: cover;
     object-fit: cover;
}

.product_main_thumbs_slider_wrapper {
  margin-top: 18px;
}

.thumbs_slider .swiper-slide {
  width: auto;
  height: auto;
}

.small_img {
  width: 75px;
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
}

.nexttt, .prevvv {
  width: 76px;
}

.product_main_thumbs_slider_wrapper .arrows_container {
  margin-top: 18px;
}

.product_main_announcement {
  color: rgb(255, 255, 255);
  font-size: 1.13rem;
  font-weight: 700;
  line-height: 1.25rem;
  max-width: 603px;
  margin-bottom: 40px;
}

.hark {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 75px;
}
.hark span {
  width: 87px;
}
.hark span:first-child {
  color: rgb(255, 255, 255);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.25rem;
}
.hark span:last-child {
  color: rgb(250, 122, 49);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.product_harki {
  padding-top: 19px;
  border-top: 1px solid #FA7A31;
  display: inline-block;
}

.product_main_bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
.product_main_bottom .price_title {
  color: rgb(255, 255, 255);
  font-family: TT Squares;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25rem;
}
.product_main_bottom .price_container {
  gap: 3px;
}
.product_main_bottom .price {
  color: rgb(250, 122, 49);
  font-family: TT Squares;
  font-size: 2.19rem;
  font-weight: 700;
  line-height: 1.25rem;
}

.wa_and_order {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.main_btn {
  height: 27px;
  background: #fff;
  min-width: 129px;
  padding: 0 20px;
  color: rgb(250, 122, 49);
  font-family: TT Squares;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.main_product_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 19px 0;
}

.main_product_section {
  margin-bottom: 80px;
}

.burger {
  display: none;
}

.hidden_menu {
  display: none;
}

.mobile {
  display: none;
}

@media screen and (max-width: 1180px) {
  .mobile {
    display: block;
  }
  section > * {
    width: 100%;
  }
  html, body {
    min-width: 100%;
  }
  body > * > * * {
    max-width: 100%;
  }
  .wrapper {
    width: 95% !important;
  }
  .top_line {
    display: none;
  }
  header nav {
    display: none;
  }
  .main_title {
    font-size: 2.3em;
  }
  .main_section .wrapper {
    min-height: none;
    max-height: none;
    height: auto;
    padding-bottom: 30px;
    padding-top: 116px;
  }
  .main_section {
    height: auto;
  }
  .main_grid {
    gap: 10px;
    justify-content: space-between;
  }
  .catalog_grid {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }
  .catalog_item {
    width: 100%;
  }
  .catalog_sub {
    display: none;
  }
  .akcii_slider_container .swiper-slide .akcii_slide {
    height: auto;
  }
  .news_grid {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
  }
  .news {
    gap: 15px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .news_img {
    order: -1;
    width: 100%;
  }
  .news {
    width: 100%;
  }
  .news_content {
    width: 100%;
  }
  .footer_top {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }
  .f_logo_and_contacts {
    align-items: center;
  }
  .slogan {
    text-align: center;
  }
  .f_nav {
    align-items: center;
  }
  .f_nav_links {
    align-items: center;
  }
  .f_contacts_items {
    align-items: center;
  }
  .f_contacts_item {
    align-items: center;
  }
  .f_socials_and_mult {
    align-items: center;
    gap: 20px;
  }
  .product_main_grid {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }
  .product_main_sliders_wrapper {
    width: 100%;
  }
  .product_main_big_slider .swiper-slide {
    width: 100%;
  }
  .product_main_big_slider .big_img {
    height: auto;
    aspect-ratio: 1/1;
  }
  .product_main_thumbs_slider_wrapper .arrows_container {
    display: none;
  }
  .hark span {
    width: 50%;
  }
  .product_harki {
    width: 100%;
  }
  .product_main_bottom {
    margin-top: 30px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
  .wa_and_order {
    width: 100%;
    justify-content: space-between;
  }
  .burger {
    display: block;
    width: 60px;
    height: 30px;
    position: relative;
  }
  .burger span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #FA7A31;
  }
  .burger span:nth-child(2) {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .burger span:nth-child(3) {
    bottom: 0;
    left: 0;
  }
  .burger.active span {
    background: #FA7A31;
  }
  header.active .burger span {
    background: #FA7A31;
  }
  .burger {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  .burger span {
    transition: all 0.2s ease-in-out;
  }
  .burger.active span:nth-child(1) {
    top: 50%;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    top: auto;
    top: 50%;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 100%;
  }
  .hidden_menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #434343;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-in-out;
  }
  .hidden_menu.active {
    opacity: 1;
    visibility: visible;
  }
  .hidden_menu .wrapper {
    height: 100%;
    overflow: auto;
    padding-top: 110px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
  nav ul {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start;
    gap: 10px !important;
  }
  nav ul li a {
    text-align: start;
  }
  body.fixed {
    overflow: hidden;
  }
}/*# sourceMappingURL=styles.css.map */
.crosh ul li a{
    padding-right: 5px;
}
.main_products_section{
    margin-bottom: 100px;
}
.main_products_grid{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}
.main_products_grid .product{
    width: calc(100% / 4 - 10px * 3 / 4);
}
.akcii_grid{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}
.akcii_grid .akcii_slide{
    width: calc(100% / 2 - 5px);
}
.akcii_grid .akcii_slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.main_txt_img{
    width: 300px;
    height: auto;
    float: left;
    margin-right: 25px;
    margin-bottom: 25px;
}
.main_txt p + p{
    margin-top: 20px;
}
.main_txt ul{
    margin: 0 20px;
    margin-left: 25px;
}
.main_txt h2, .main_txt h3{
    font-size: 1.6em;
    margin-bottom: 20px;
}
.null{
    clear: both;
}
.main_txt_section{
    margin-bottom: 100px;
}
.figure_abs{
    position: absolute;
    top: 500px;
    right: -450px;
    z-index: -1;
}
main{
    overflow: hidden;
    position: relative;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal__container {
  padding: 30px;
  max-width: 100%;
  width: 558px;
  height: 650px;
  max-height: 100vh;
  overflow-y: auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: url(../img/frm_bg.jpg)center no-repeat;
  background-size: cover;
  position: relative;
}
.order{
  cursor: pointer;
}
.modal_subtitle{
  margin-top: 20px;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
.close_modal{
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.modal_form_wrapper form{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
}
.modal_form_wrapper{
  margin-top: 57px;
}
.modal_form_wrapper form input{
  width: 411px;
  height: 68px;
  background: none;
  border: 1px solid #fff;
  padding: 0 38px;
  font-family: 'TT Squares';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.form_btn{
  font-family: 'TT Squares';
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  text-decoration-line: underline;
  color: #FFFFFF;
  width: 100%;
}
.modal_form_wrapper form input::placeholder{
  color: #fff;
}
.modal_title{
  font-style: normal;
  font-weight: 400;
  font-size: 45px;
  color: #FFFFFF;
  text-align: center;
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before { content: "\2715"; }

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0,0,0,.8);
}

.modal__btn {
  font-size: .875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  background-color: #e6e6e6;
  color: rgba(0,0,0,.8);
  border-radius: .25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform .25s ease-out;
  transition: transform .25s ease-out;
  transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}



/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}

@keyframes mmfadeOut {
    from { opacity: 1; }
      to { opacity: 0; }
}

@keyframes mmslideIn {
  from { transform: translateY(15%); }
    to { transform: translateY(0); }
}

@keyframes mmslideOut {
    from { transform: translateY(0); }
    to { transform: translateY(-10%); }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}
.product_img{
  cursor: pointer;
}
.product_main_sliders_wrapper{
  flex-shrink: 0;
}
.main_product_content{
  width: 100%;
}
.product_main_big_slider .swiper-slide{
  width: 100%;
}
@media screen and (min-width:1181px) {
  .catalog_item{
    width: calc(100% / 5 - 20px * 4 / 5);
  }
}
@media screen and (max-width:1180px) {
    .main_products_grid .product{
        max-width: 100%;
        width: 296px;
    }
    .main_txt_img{
        margin-right: 0;
        width: 100%;
    }
}
@media screen and (max-width:640px) {
    .main_products_grid .product{
        max-width: 100%;
        width: 100%;
    }
    .akcii_grid .akcii_slide{
        width: 100%;
    }
}