@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);

:root {
  --White: #FFF
}

* {
  font-family: Montserrat, serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px
}

::-webkit-scrollbar-thumb {
  background: #1d4bc2;
  border-radius: 40px
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0)
}

::-webkit-scrollbar-horizontal {
  width: 8px;
  height: 8px
}

::-webkit-scrollbar-thumb:horizontal {
  background: #1d4bc2;
  border-radius: 40px
}

::-webkit-scrollbar-track:horizontal {
  background: rgba(0, 0, 0, 0)
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f3f5f8
}

main {
  flex: 1 0 auto;
  margin-top: 124px
}

@media(max-width:767px) {
  main {
    margin-top: 88px
  }
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%
}

@media(max-width:1352px) {
  .container {
    padding: 0 20px
  }
}

@media(max-width:767px) {
  .container {
    padding: 0 10px
  }
}

h1 {
  color: #181818;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 110%
}

h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  line-height: 120%
}

@media(max-width:1023px) {
  h1 {
    font-size: 32px
  }

  h2 {
    font-size: 24px
  }
}

@media(max-width:767px) {
  h1 {
    font-size: 24px
  }

  h2 {
    font-size: 20px
  }
}

a.link {
  transition: all .3s ease-in-out;
  text-decoration: none;
  display: block;
  position: relative;
  color: #181818;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%
}

a.link::before {
  content: "";
  display: block;
  height: 1px;
  width: 0;
  background-color: #1d4bc2;
  position: absolute;
  bottom: -1px;
  transition: all .3s ease-in-out
}

@media(min-width:1024px) {
  a.link:hover::before {
    width: 100%
  }

  a.link:hover {
    color: #1d4bc2 !important
  }
}

@media(max-width:1023px) {
  a.link {
    font-size: 12px
  }
}

.icon {
  height: 32px;
  width: 32px;
  position: relative;
  transition: all .3s ease-in-out
}

.icon__link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10
}

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

@media(min-width:1024px) {
  .icon:hover {
    transform: scale(1.2)
  }
}

@media(max-width:767px) {
  .icon {
    width: 24px;
    height: 24px
  }
}

.btn {
  height: 40px;
  padding: 0 20px;
  border-radius: 50px;
  background: #1d4bc2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  cursor: pointer;
  transition: all .3s ease-in-out;
  text-decoration: none;
}

@media(min-width:1024px) {
  .btn:hover {
    background: #06236d
  }
}

@media(max-width:1023px) {
  .btn {
    font-size: 12px;
    height: 38px
  }
}

input,
textarea {
  padding: 16px 24px;
  border-radius: 5px;
  border: 1px solid #dee2e6;
  background: #fff;
  color: #404549;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  width: 100%
}

textarea {
  height: 88px
}

input:focus,
textarea:focus {
  border-radius: 5px;
  border: 1px solid #1d4bc2;
  box-shadow: 0 4px 5px 0 rgba(33, 1, 38, .03) inset;
  outline: 0
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0 1000px #dee2e6 inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s
}

@media(max-width:767px) {

  input,
  textarea {
    font-size: 12px
  }
}

.slider-hide {
  visibility: hidden
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .07);
  background: #fff
}

.header-top {
  height: 52px;
  background: #f0f4fe
}

.header-top__wrapper {
  display: flex;
  gap: 40px;
  justify-content: end;
  align-items: center;
  height: 100%
}

.header-top__contacts {
  display: flex;
  gap: 5px;
  align-items: center
}

.header-top__contact {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 5px;
  align-items: center
}

.header-top__contact_icon {
  width: 100%;
  height: 20px
}

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

.header-bottom {
  height: 72px
}

.header-bottom__wrapper {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  height: 100%
}

.header-bottom__logo {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center
}

.header-bottom__logo_link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10
}

.header-bottom__logo_img {
  width: 115px;
  height: 30px
}

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

.header-bottom__logo_text {
  color: #06236d;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%
}

.header-bottom__menu>ul {
  list-style-type: none;
  display: flex;
  gap: 80px;
  align-items: center
}

.header-bottom__menu>ul>li>a {
  transition: all .3s ease-in-out;
  text-decoration: none;
  display: block;
  position: relative;
  color: #181818;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%
}

.header-bottom__menu>ul>li>a::before {
  content: "";
  display: block;
  height: 1px;
  width: 0;
  background-color: #1d4bc2;
  position: absolute;
  bottom: -1px;
  transition: all .3s ease-in-out
}

.header__hamburger {
  display: none
}

.header-bottom__menu>ul>li.menu-item-has-children {
  position: relative;
}

.header-bottom__menu>ul>li.menu-item-has-children::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 35px;
}

.header-bottom__menu>ul>li.menu-item-has-children>ul {
  position: absolute;
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.05);
  padding: 10px 20px 20px;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  left: -120px;
  top: 55px;
  display: none;
}

.header-bottom__menu>ul>li.menu-item-has-children>ul>li {
  border-bottom: 1px solid #DEE2E6;
}

.header-bottom__menu>ul>li.menu-item-has-children>ul>li>a {
  padding: 10px 0;
  color: var(--Black, #181818);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.header-bottom__menu>ul>li.menu-item-has-children>ul>li>a::after {
  content: url('assets/img/arrowmenu.svg');
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}

@media(min-width:1024px) {
  .header-bottom__menu>ul>li>a:hover::before {
    width: 100%
  }

  .header-bottom__menu>ul>li>a:hover {
    color: #1d4bc2 !important
  }

  .header-bottom__menu>ul>li.menu-item-has-children>ul>li>a:hover {
    color: #1d4bc2 !important
  }

  .header-bottom__menu>ul>li.menu-item-has-children>ul>li>a:hover::after {
    content: url('assets/img/arrowmenublue.svg');
  }

  .header-bottom__menu>ul>li.menu-item-has-children:hover>ul {
    display: flex;
  }
}

@media(max-width:1023px) {
  .header-top__wrapper {
    justify-content: space-between
  }

  .header-bottom__logo_img {
    width: 77px;
    height: 20px
  }

  .header-bottom__logo {
    gap: 10px
  }

  .header-bottom__logo_text {
    font-size: 16px
  }

  .header-bottom__menu>ul>li>a {
    font-size: 14px
  }
}

@media(max-width:767px) {

  .header-top__contact-mail,
  .header-top__contact_icon {
    display: none
  }

  .header-top__contact {
    grid-template-columns: 1fr
  }

  .header-top__wrapper {
    gap: 0
  }

  .header-top__contacts {
    gap: 2px;
    justify-content: space-between
  }

  .header-top {
    height: 44px
  }

  .header-bottom {
    height: 44px
  }

  .header-bottom__logo_text {
    font-size: 12px
  }

  .header-bottom__btn,
  .header-bottom__menu {
    display: none
  }

  .header__hamburger {
    display: block;
    height: 24px;
    width: 24px
  }

  .header__hamburger_close {
    display: none !important
  }

  .header__hamburger.active .header__hamburger_close {
    display: flex !important
  }

  .header__hamburger.active .header__hamburger_open {
    display: none !important
  }

  .header__hamburger_svg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
  }
}

.slider {
  height: 500px;
  position: relative;
  transition: all .3s ease-in-out
}

.slider__slide {
  display: grid !important;
  grid-template-columns: 800px 1fr;
  height: 100%
}

.slider .slide__descr {
  background: url(assets/img/slider_bg.png) center center no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center
}

.slider .slide__descr_wrapper {
  max-width: 600px;
  width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.slider .slide__descr_title {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  line-height: 100%
}

.slider .slide__descr_text {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%
}

.slider .slide__descr_text ul {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.slider .slide__descr_text ul li {
  margin-left: 25px
}

.slider .slide__img {
  width: 100%;
  height: 100%
}

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

.slider .slick-list,
.slider .slick-track {
  height: 100%
}

.slick-arrow::before {
  content: '' !important;
  display: none !important;
}

.slider .slick-arrow, .modal .slick-arrow, .photo .slick-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  height: 44px;
  width: 44px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: rgba(24, 24, 24, .5);
  cursor: pointer;
  transition: all .3s ease-in-out
}

.slider .slick-prev {
  left: 40px
}

.slider .slick-next {
  right: 40px
}

@media(min-width:1024px) {
	.slider .slick-arrow:hover, .modal .slick-arrow:hover, .photo .slick-arrow:hover {
    background: #181818
  }
}

@media(max-width:1023px) {
	.slider .slick-arrow:hover, .modal .slick-arrow:hover, .photo .slick-arrow:hover {
    background: rgba(24, 24, 24, .5);
  }
}


@media(max-width:1199px) {
  .slider__slide {
    grid-template-columns: 700px 1fr
  }

  .slider .slick-prev {
    left: 10px
  }

  .slider .slick-next {
    right: 10px
  }
}

@media(max-width:1023px) {
  .slider {
    height: 300px
  }

  .slider__slide {
    grid-template-columns: 500px 1fr
  }

  .slider .slide__descr_wrapper {
    max-width: 400px
  }

  .slider .slide__descr_title {
    font-size: 24px
  }

  .slider .slide__descr_text {
    font-size: 14px
  }
}

@media(max-width:767px) {
  .slider__slide {
    display: flex !important;
    flex-direction: column-reverse
  }

  .slider .slide__img {
    height: 150px
  }

  .slider {
    min-height: 400px;
    height: -moz-max-content;
    height: max-content
  }

  .slider .slide__descr {
    height: 250px
  }

  .slide__descr {
    padding: 10px
  }

  .slider .slick-arrow {
    top: 53px;
    transform: none
  }

  .slider .slide__descr_title {
    font-size: 20px
  }

  .slider .slide__descr_text ul {
    gap: 0
  }

  .slider .slide__descr_wrapper {
    gap: 10px
  }

  .slide__descr_btn {
    width: 100%
  }
}

.assortment {
  margin: 100px 0
}

.assortment__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.assortment__catalog {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center
}

.assortment__card {
  width: 413px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .05);
  position: relative;
  overflow: hidden
}

.assortment__card_link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10
}

.assortment__card_img {
  height: 133px;
  width: 100%;
  overflow: hidden
}

.assortment__card_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all .3s ease-in-out
}

.assortment__card_title {
  min-height: 27px;
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #181818;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  text-align: center;
  transition: all .3s ease-in-out
}

@media(min-width:1024px) {
  .assortment__card:hover .assortment__card_title {
    color: #1d4bc2
  }

  .assortment__card:hover .assortment__card_img img {
    transform: scale(1.1)
  }
}

@media(max-width:1023px) {
  .assortment {
    margin: 50px 0
  }
}

@media(max-width:767px) {

  .assortment__catalog,
  .assortment__wrapper {
    gap: 20px
  }

  .assortment__card_img {
    height: 106px
  }

  .assortment__card_title {
    padding: 10px;
    font-size: 16px
  }
}

.fact {
  padding: 100px 0;
  background: url(assets/img/fact_bg.png) center center no-repeat;
  background-size: cover
}

.fact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px
}

.fact__card {
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.fact__card_img {
  height: 180px;
  width: 100%
}

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

.fact__card_title {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 6px
}

.fact__card_text {
  color: #181818;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%
}

.fact__card_descr {
  color: #181818;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%
}

@media(max-width:1023px) {
  .fact {
    padding: 50px 0
  }

  .fact__wrapper {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .fact__card {
    max-width: 400px;
    justify-self: center
  }

  .fact__card_descr {
    font-size: 14px
  }
}

@media(max-width:767px) {
  .fact__card_img {
    height: 100px
  }

  .fact__card_img img {
    -o-object-fit: contain;
    object-fit: contain
  }

  .fact__card_text {
    font-size: 16px
  }

  .fact__card {
    padding: 10px
  }
}

.article {
  margin: 100px 0
}

.article__text {
  color: #06236d;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%
}

@media(max-width:1023px) {
  .article {
    margin: 50px 0
  }
}

@media(max-width:767px) {
  .article__text {
    font-size: 16px
  }
}

.connect {
  background: url(assets/img/connect_bg.png) center center no-repeat;
  background-size: cover;
  background-position: right;
  padding: 50px 0
}

.connect h2 {
  max-width: 485px
}

.connect__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center
}

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

.connect__contact {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 5px;
  align-items: center
}

.connect__contact_icon {
  width: 100%;
  height: 20px
}

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

.connect__contact_text {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%
}

.connect__contact_link.link {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  width: -moz-fit-content;
  width: fit-content
}

.connect__socials {
  display: flex;
  align-items: center;
  gap: 5px
}

.connect__social {
  height: 24px;
  width: 24px;
  position: relative
}

.connect__social_link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10
}

.connect__social img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: all .3s ease-in-out
}

.connect__form {
  border-radius: 10px;
  background: #fff;
  width: 500px;
  padding: 40px;

}

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

.connect__form_title_wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.connect__form_input_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.connect__form_title {
  color: #181818;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%
}

.connect__form_subtitle {
  color: #404549;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.connect__form_button {
  outline: 0;
  border: none;
  width: 100%
}

.connect__form_policy {
  color: #404549;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%
}

.connect__form_policy a {
  color: #1d4bc2;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease-in-out
}

@media(min-width:1024px) {
  .connect__social:hover img {
    transform: scale(1.1)
  }

  .connect__form_policy a:hover {
    color: #06236d
  }
}

@media(max-width:1199px) {
  .connect__wrapper {
    gap: 40px
  }
}

@media(max-width:1023px) {
  .connect__wrapper {
    display: flex;
    flex-direction: column
  }

  .connect__left {
    max-width: 485px
  }
}

@media(max-width:767px) {
  .connect__form {
    width: 100%;
    max-width: 500px
  }

  .connect__contact_link_wrap {
    white-space: normal !important
  }

  .connect__contact_text {
    font-size: 16px
  }

  .connect__contact_link.link {
    font-size: 16px
  }

  .connect__form {
    padding: 20px
  }

  .connect__form_title {
    font-size: 16px
  }

  .connect__form_subtitle {
    font-size: 12px;
  }
}

@media(max-width:760px) {
  .connect__form_input_wrapper {
    display: flex;
    flex-direction: column;
  }
}

.footer {
  background: #010818
}

.footer__top {
  display: flex;
  justify-content: space-between;
  padding: 40px 0
}

.footer__block {
  max-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.footer__copy {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%
}

.footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer__menu ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content
}

.footer__menu ul li a::before {
  content: "";
  display: block;
  height: 1px;
  width: 0;
  background-color: #1d4bc2;
  position: absolute;
  bottom: -1px;
  transition: all .3s ease-in-out
}

.footer__bottom {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #959ca4
}

.footer__policy.link {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  width: -moz-fit-content;
  width: fit-content
}

.teampro {
  display: flex;
  gap: 5px;
  align-items: center
}

.teampro span {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%
}

.teampro__link.link {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%
}

@media(min-width:1024px) {
  .footer__menu ul li a:hover::before {
    width: 100%
  }

  .footer__menu ul li a:hover {
    color: #1d4bc2 !important
  }
}

@media(max-width:1023px) {

  .footer__copy,
  .footer__menu ul li a,
  .footer__policy.link,
  .teampro span,
  .teampro__link.link {
    font-size: 12px
  }

  .footer__top {
    padding: 20px 0
  }
}

@media(max-width:767px) {
  .footer__menu {
    display: none
  }

  .footer__top {
    justify-content: center
  }

  .footer__block {
    max-width: 100%;
    width: 100%;
    text-align: center;
    align-items: center
  }

  .footer__copy {
    max-width: 180px
  }

  .footer__btn {
    width: 100%
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px
  }
}

.breadcrumbs_list {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px
}

.breadcrumbs_list li {
  color: #404549;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%
}

.breadcrumbs_list li a {
  color: #181818;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  text-decoration: none;
  transition: all .3s ease-in-out
}

.breadcrumbs_list li::after {
  content: "/";
  margin: 0 8px
}

.breadcrumbs_list li:last-child::after {
  content: "";
  margin: 0
}

.title {
  margin: 40px 0
}

.title__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.title__wrapper h1 {
  text-align: left
}

@media(min-width:1024px) {
  .breadcrumbs_list li a:hover {
    color: #1d4bc2
  }
}

.catalog {
  margin: 40px 0 100px
}

.catalog__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.catalog__tabs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.catalog__tab {
  white-space: nowrap;
  padding: 10px 20px;
  border-radius: 5px;
  background: #e9ecef;
  color: #181818;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  text-decoration: none;
  transition: all .3s ease-in-out
}

.catalog__tab.active {
  background: #1d4bc2;
  color: #fff
}

.catalog__tab:not(.active):hover {
  background: #f0f4fe
}

.catalog__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px
}

.catalog__card {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .05);
  padding: 10px 20px;
  position: relative;
  min-height: 120px
}

.catalog__card_link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10
}

.catalog__card_wrapper {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px
}

.catalog__card_img {
  width: 100%;
  height: 100%;
  min-height: 100px
}

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

.catalog__card_descr {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.catalog__card_title {
  color: #181818;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  transition: all .3s ease-in-out
}

.catalog__card_price {
  color: #1d4bc2;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%
}

.catalog__card_btn {
  color: #181818;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  transition: all .3s ease-in-out
}

.catalog__card_btn::before {
  content: "";
  display: block;
  height: 1px;
  width: 0;
  background-color: #1d4bc2;
  position: absolute;
  bottom: -1px;
  transition: all .3s ease-in-out
}

.catalog-content {
  margin: 100px 0
}

.catalog-content__wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px
}

.catalog-content__text {
  color: #404549;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.catalog-content__text b,
.catalog-content__text strong {
  font-weight: 600;
  display: inline
}

.catalog-content__text span {
  font-weight: 600;
  color: #1d4bc2
}

.catalog-content__text h2 {
  color: #181818;
  margin-bottom: 10px
}

.catalog-content__text ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.catalog-content__text ul li {
  margin-left: 26px;
  position: relative
}

.catalog-content__text ul li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #1d4bc2;
  position: absolute;
  left: -17px;
  top: 9px;
  border-radius: 2px
}

.catalog-content__text a {
	transition: all .3s ease-in-out;
    text-decoration: none;
    display: inline-block;
    position: relative;
    color: #181818;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
}

.catalog-content__text a::before {
  content: "";
  display: block;
  height: 1px;
  width: 0;
  background-color: #1d4bc2;
  position: absolute;
  bottom: -1px;
  transition: all .3s ease-in-out
}

@media(min-width:1024px) {
  .catalog-content__text a:hover::before {
    width: 100%
  }

  .catalog-content__text a:hover {
    color: #1d4bc2 !important
  }
}

.catalog-content__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px
}

.catalog-content__row-right .catalog-content__img {
  order: 1
}

.catalog-content__img {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 10px
}

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

@media(min-width:1024px) {
  .catalog__card:hover .catalog__card_title {
    color: #1d4bc2
  }

  .catalog__card:hover .catalog__card_btn {
    color: #1d4bc2 !important
  }

  .catalog__card:hover .catalog__card_btn::before {
    width: 100%
  }
}

@media(max-width:1023px) {
  .title {
    margin: 20px 0
  }

  .title__wrapper {
    gap: 20px
  }

  .catalog {
    margin: 20px 0 50px
  }

  .catalog__tab {
    font-size: 12px
  }

  .catalog__wrapper {
    gap: 20px
  }

  .catalog__card {
    padding: 10px
  }

  .catalog__card_wrapper {
    gap: 10px
  }

  .catalog__card_btn,
  .catalog__card_price,
  .catalog__card_title {
    font-size: 14px
  }

  .catalog-content {
    margin: 50px 0
  }

  .catalog-content__wrapper {
    gap: 50px
  }

  .catalog-content__text, .catalog-content__text a {
    font-size: 14px
  }

  .catalog-content__row {
    display: flex;
    flex-direction: column;
    gap: 40px
  }

  .catalog-content__img {
    height: 300px
  }

  .catalog-content__row-right .catalog-content__img {
    order: 0
  }
}

@media(max-width:767px) {
  .catalog__cards {
    grid-template-columns: 1fr
  }

  .title {
    margin: 10px 0 20px
  }

  .catalog__tabs {
    gap: 10px
  }

  .catalog__tab {
    padding: 5px 10px
  }

  .catalog__cards {
    gap: 20px
  }

  .catalog__card_wrapper {
    grid-template-columns: 50px 1fr
  }

  .catalog-content__img {
    height: 150px
  }

  .catalog-content__row {
    gap: 20px
  }

  .catalog-content__text h2 {
    margin-bottom: 0
  }
}

.tovar {
  margin: 40px 0 100px
}

.tovar__wrapper {
  display: grid;
  grid-template-columns: 350px minmax(auto, 700px);
  gap: 100px;
  align-items: center
}

.tovar__img {
  width: 100%;
  height: 350px
}

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

.tovar__info {
  display: flex;
  flex-direction: column;
  gap: 40px
}

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

.tovar__info_title {
  color: #181818;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%
}

.tovar__info_table {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center
}

.tovar__info_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.tovar__info_left {
  color: #404549;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%
}

.tovar__info_right {
  color: #1d4bc2;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%
}

.tovar__info_bottom {
  padding: 20px 0;
  border-top: 1px solid #dee2e6;
  display: flex;
  gap: 20px;
  align-items: center
}

.tovar__info_price {
  color: #181818;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  white-space: nowrap
}

.tovar__info_article {
  color: #404549;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%
}

.tovar-descr {
  margin: 100px 0
}

.tovar-descr__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px
}

.tovar-descr__block {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .05)
}

.tovar-descr__block-title {
  color: #181818;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%
}

.tovar-descr__block-text {
  color: #404549;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.tovar-descr__block-text b,
.tovar-descr__block-text strong {
  font-weight: 600
}

.tovar-same {
  margin: 100px 0
}

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

.tovar-same__title {
  color: #181818;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%
}

.tovar-same__slider .catalog__card {
  margin: 0 20px
}

.tovar-same__slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: rgba(240, 244, 254, .5);
  cursor: pointer;
  transition: all .3s ease-in-out;
  z-index: 10
}

.tovar-same__slider .slick-arrow svg path {
  transition: all .3s ease-in-out
}

.tovar-same__slider .slick-prev {
  left: -54px
}

.tovar-same__slider .slick-next {
  right: -54px
}

@media(min-width:1024px) {
  .tovar-same__slider .slick-arrow:hover {
    background: #06236d
  }

  .tovar-same__slider .slick-arrow:hover svg path {
    fill: #fff
  }
}

@media(max-width:1450px) {
  .tovar-same__slider .slick-next {
    right: -20px
  }

  .tovar-same__slider .slick-prev {
    left: -20px
  }
}

@media(max-width:1199px) {
  .tovar__wrapper {
    gap: 40px
  }
}

@media(max-width:1023px) {
  .tovar__wrapper {
    grid-template-columns: 150px 1fr
  }

  .tovar__img {
    height: 150px
  }

  .tovar__info_left,
  .tovar__info_right {
    font-size: 12px
  }

  .tovar {
    margin: 20px 0 50px
  }

  .tovar-descr {
    margin: 50px 0
  }

  .tovar-descr__wrapper {
    grid-template-columns: 1fr
  }

  .tovar-descr__block {
    padding: 20px;
    gap: 10px
  }

  .tovar-descr__block-text {
    font-size: 14px
  }

  .tovar-same {
    margin: 50px 0
  }

  .tovar-same__slider .catalog__card {
    margin: 0 10px
  }

  .tovar-same__slider .slick-next {
    right: -10px
  }

  .tovar-same__slider .slick-prev {
    left: -10px
  }
}

@media(max-width:767px) {
  .tovar__wrapper {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .tovar__info {
    gap: 20px
  }

  .tovar__info_title {
    font-size: 16px
  }

  .tovar__info_bottom {
    display: grid;
    grid-template-columns: calc(50% - 20px) 50%
  }

  .tovar__info_article {
    grid-column: 1/3
  }

  .tovar__info_btn {
    width: 100%
  }

  .tovar__info_price {
    font-size: 16px
  }

  .tovar-descr__wrapper {
    gap: 20PX
  }

  .tovar-descr__block-title,
  .tovar-same__title {
    font-size: 16px
  }

  .tovar-same .catalog__card_wrapper {
    grid-template-columns: 100px 1fr
  }
}

.contact {
  margin: 40px 0 100px
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px
}

.contact__left {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  overflow: hidden
}

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

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

.contact__title {
  color: #181818;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%
}

.contact__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #404549;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.contact__block {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 5px;
  align-items: center
}

.contact__block span {
  color: #404549;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%
}

.contact__block a {
  width: -moz-fit-content;
  width: fit-content;
  color: #181818;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%
}

.contact__phone {
  display: flex;
  align-items: center;
  gap: 5px
}

.contact__phones {
  display: flex;
  flex-direction: column;
  gap: 10px
}

@media(max-width:1199px) {
  .contact__wrapper {
    gap: 40px
  }
}

@media(max-width:1023px) {
  .contact__wrapper {
    display: flex;
    flex-direction: column
  }

  .contact__left {
    height: 300px;
    width: 100%
  }

  .contact {
    margin: 20px 0 50px
  }

  .contact__text {
    font-size: 14px
  }

  .contact__block a,
  .contact__block span {
    font-size: 14px
  }
}

@media(max-width:767px) {
  .contact__wrapper {
    gap: 20px
  }

  .contact__title {
    font-size: 16px
  }
}

.error {
  margin: 40px 0 100px
}

.error__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center
}

.error__img {
  width: 640px;
  height: 300px
}

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

.error__descr {
  max-width: 528px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center
}

.error__descr p {
  color: #59524f;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%
}

@media(max-width:1023px) {
  .error {
    margin: 20px 0 50px
  }

  .error__descr p {
    font-size: 14px
  }
}

@media(max-width:767px) {
  .error__img {
    width: 100%;
    height: auto
  }

  .error__wrapper {
    gap: 20px
  }
}

.privacy {
  margin: 40px 0 100px;
}

@media(max-width:1023px) {
  .privacy {
    margin: 20px 0 50px
  }
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-not-valid {
  border: 1px solid #DB2F2C !important;
}

.wpcf7-not-valid-tip {
  color: #DB2F2C;
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: none;
}

.wpcf7 form .wpcf7-response-output {
  padding: 0;
  margin: 5px 0 0;
  color: #DB2F2C;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

/* ******************************** */

.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, .8);
  width: 100%;
  height: 100%
}


.popup__wrapper {
  position: absolute;
  display: flex;
  justify-content: center;
  max-width: 500px;
  min-width: 500px;
  z-index: 100000;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%)
}

.popup__wrapper_2col {
  position: absolute;
  display: flex;
  justify-content: center;
  max-width: 720px;
  min-width: 720px;
  z-index: 100000;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 10px;
  background: #FFF;
  position: relative;
  width: 100%;
  padding: 40px;
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
}

.popup__img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.popup__form {
  border-radius: 10px;
  background: #FFF;
  position: relative;
  width: 100%;
  padding: 40px;
  position: relative
}

.popup__close {
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
  height: 44px;
  width: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup__close svg path {
  transition: all .3s
}

.popup__close:hover svg path {
  fill: #f76707
}

.popup.active {
  display: block
}

.popup__success {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.popup__success_img {
  width: 150px;
  height: 150px;
}

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

.popup__success_descr {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.popup__success_title {
  color: #181818;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}

.popup__success_text {
  color: #666;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

@media(min-width:1024px) {
  .popup__close:hover svg path {
    fill: #1D4BC2;
  }
}

@media(max-width:760px) {
  .popup__wrapper_2col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 90%;
    min-width: 320px;
    padding: 20px;
  }

  .popup__img {
    height: 100px;
  }
}

@media(max-width:667px) {
  .popup__form {
    width: 90%;
    padding: 20px;
    height: auto;
  }

  .popup__wrapper {
    width: 100%;
    min-width: 320px;
  }
}


.mobile-menu {
  position: fixed;
  z-index: 1000;
  background: #F3F5F8;
  padding: 10px;
  top: 88px;
  transition: all .3s ease-in-out;
  display: flex;
  flex-direction: column;
  right: -100%;
  width: 100vw;
  height: calc(100vh - 88px);
  gap: 20px;
}

.mobile-menu .menu-item-71>a {
  display: none;
}

.mobile-menu>ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.mobile-menu>ul>li>a {
  color: #181818;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  text-decoration: none;
  display: block;
}

.mobile-menu>ul>li>ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
}

.mobile-menu>ul>li>ul>li {
  border-bottom: 1px solid #DEE2E6;
}

.mobile-menu>ul>li>ul>li>a {
  padding: 10px 0;
  color: var(--Black, #181818);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.mobile-menu>ul>li>ul>li>a::after {
  content: url('assets/img/arrowmenu.svg');
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}

.mobile-menu.active {
  right: 0
}

.mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu__contact .header-top__contact,
.mobile-menu .header-top__contact-mail {
  display: grid;
  grid-template-columns: 20px 1fr;
}

.mobile-menu__contact .header-top__contact a {
  font-size: 14px;
}

.mobile-menu__contact .header-top__contacts {
  justify-content: flex-start;
}

.mobile-menu .header-top__contact_icon {
  display: block;
}

.mobile-menu .icon {
  width: 32px;
  height: 32px;
}

.mobile-menu .btn {
  width: 100%;
  height: 40px;
}

.lwpcngNotice-light .lwpcngNotice_accept {
  border: none;
  background: none;
}

.lwpcngNotice-light .lwpcngNotice_accept button {
  border: none;
  outline: none;
}

.lwpcngNotice_message {
  color: #404549;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.lwpcngNotice A {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  color: #181818 !important;
  transition: all .3s ease-in-out;
  width: fit-content;
  text-decoration: none;
  text-transform: lowercase;
}

.lwpcngNotice {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.lwpcngNotice_message {
  width: fit-content;
}

.lwpcngNotice-light .lwpcngNotice_accept {
  padding: 0;
  margin: 0;
}

.lwpcngNotice-light {
  background: rgba(255, 255, 255, .9);
}

@media(max-width:667px) {
  .lwpcngNotice {
    flex-direction: column;
    gap: 10px;
  }
}

@media(min-width:1024px) {
  .lwpcngNotice A:hover {
    color: #1d4bc2 !important;
  }
}

.thslider__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 100px;
}

.thslider__slider {
  max-width: 902px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#main-carousel .splide__slide {
  height: 600px;
}

#main-carousel .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#thumbnail-carousel .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#thumbnail-carousel .splide__slide {
  opacity: 0.6;
}

#thumbnail-carousel .splide__slide.is-active {
  opacity: 1;
}

.splide__track--nav>.splide__list>.splide__slide.is-active,
.splide__track--nav>.splide__list>.splide__slide {
  border: none !important;
}

.splide__arrow {
  height: 44px;
  width: 44px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: rgba(24, 24, 24, .5) !important;
  cursor: pointer;
  transition: all .3s ease-in-out
}

.splide__arrow.splide__arrow--prev {
  left: -40px
}

.splide__arrow.splide__arrow--next {
  right: -40px
}

@media(min-width:1024px) {
  .splide__arrow:hover {
    background: #181818 !important;
  }
}

@media(max-width:1023px) {
  .splide__arrow.splide__arrow--prev {
    left: -20px
  }

  .splide__arrow.splide__arrow--next {
    right: -20px
  }

  #main-carousel .splide__slide {
    height: 450px;
  }
}

@media(max-width:767px) {
  .splide__arrow.splide__arrow--prev {
    left: -10px
  }

  .splide__arrow.splide__arrow--next {
    right: -10px
  }

  #main-carousel .splide__slide {
    height: 350px;
  }

  .thslider__wrapper {
    padding: 0 0 50px;
  }
}


.gallery {
  margin: 40px 0 100px
}

.gallery__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
gap: 40px;
}

.gallery__item, .photo__item {
	width: 100%;
	height: 300px;
	overflow: hidden;
	cursor: pointer;
}

.gallery__wrapper .gallery__item, .photo__wrapper .photo__item {
	border-radius: 10px;
}

.gallery__item img, .photo__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}


@media(min-width:1024px) {
  .gallery__wrapper .gallery__item:hover img {
	  transform: scale(1.1);
  }
}


@media(max-width:1199px) {
	.gallery__wrapper {
	  grid-template-columns: 1fr 1fr;
	}
}

@media(max-width:1023px) {
  .contact {
    margin: 20px 0 50px
  }
}

@media(max-width:767px) {
  .gallery__wrapper {
    display: flex;
    flex-direction: column;
	gap: 20px;
  }
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8)
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    width: 60%;
    height: 80%;
	padding: 20px;
}
.modal-content .gallery__item img {
	object-fit: contain;
}

.modal .open-modal-btn {
    display: none
}

.modal .product__slide_for {
    height: 100%
}

.modal .close-modal-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 44px;
    width: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: rgba(24, 24, 24, .5);
    cursor: pointer;
    transition: all .3s ease-in-out;
	z-index: 10000;
}

.modal .close-modal-btn svg path {
    fill: #fff;
    transition: all .3s ease-in-out;
}


.modal-slider {
    height: 100%
}

.modal-slider .slick-list {
    height: 100%
}

.modal-slider .slick-track {
    height: 100%
}

.modal-slider .slick-arrow.slick-prev {
    left: -60px;
}

.modal-slider .slick-arrow.slick-next {
    right: -60px;
}

@media(max-width:1450px) {
    .modal-content {
        width: 80%
    }
}

@media(max-width:767px) {
    .modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0
    }

    .modal-content .product__slide_for img {
        -o-object-fit: contain;
        object-fit: contain
    }
	.modal-slider .slick-arrow.slick-prev {
    left: -20px;
}

.modal-slider .slick-arrow.slick-next {
    right: -20px;
}
}

@media(min-width:1281px) {
    .modal .close-modal-btn:hover {
         background: #181818;
    }
}

.photo {
  margin: 100px 0
}

@media(max-width:1023px) {
  .photo {
    margin: 50px 0
  }
}

.photo .slick-arrow.slick-prev {
    left: -50px;
}

.photo .slick-arrow.slick-next {
    right: -50px;
}

.photo__wrapper .slick-list {
  margin: 0 -20px;
}

.photo__wrapper .slick-slide {
  margin:0 20px; 
}

.modal-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.photo__item {
	height: 300px !important;
}

@media(max-width:1450px) {
	.photo .slick-arrow.slick-prev {
    	left: 0px;
	}

	.photo .slick-arrow.slick-next {
		right: 0px;
	}
}