/*#region Tech*/
*,
::before,
::after
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root
{
    --black: #242424;
    --l-black: #333;
    --white: #fff;
    --l-grey: #efefef;
    --d-grey: #B2B1B9;
    --grey: #d9d9d9;
    --blue: #0f7cc1;
    --red: #c33734;
    --orange: #ffd523;
    --gradient-black: linear-gradient(0deg, rgba(46, 46, 46, 0.8), rgba(46, 46, 46, 0.8));
    --polygon-t-b: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
    --polygon-b: polygon(0 0%, 100% 0, 100% 100%, 0 90%);

    --flex-direction: row;

    --two-col: 50%;
    --three-col: calc(100% / 3);
    --four-col: 25%;
    --five-col: 20%;

    --px35: 35px;
    --px65: 65px;
}

body
{
    font-family: 'Montserrat', sans-serif;
    line-height: 1.15;
}

img,
video

{
    max-width: 100%;
    height: auto;
}
iframe
{
    max-width: 100%;
}
button
{
    cursor: pointer;
}


ul:not([class]),
ol:not([class])
{
	padding-left: 15px;
	margin-bottom: 15px;
	line-height: 1.5;
}

a
{
    color: var(--black);
}
a:hover
{
    color: var(--orange);
}

/*#endregion*/

/*#region Basic*/

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

p:not([class])
{
	margin-bottom: 15px;
	line-height: 1.5;
}
ul:not([class]),
ol:not([class])
{
	padding-left: var(--px35);
	margin-bottom: 15px;
	line-height: 1.5;
}
.header-bx,
h2:not([class])
{
    margin-bottom: var(--px35);
}
.header-bx--bg
{
    display: flex;
    align-items: stretch;
    background: var(--l-grey);
}
.header-bx__desc
{
    font-size: 17px;
}



.title,
h2:not([class])
{
    font-weight: 600;
    
}
.title--h1
{
    font-size: 46px;
    font-weight: bold;
    line-height: 1;
}
.title--h2
{
    font-size: 40px;
    font-weight: bold;
}
.title--h2,
.title--h1,
h2:not([class])
{
    display: flex;
    align-items: center;
    line-height: 1;
    text-transform: uppercase;
    
}
.title--h2-center
{
    text-align: center;
}
.sup-title
{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 90%;
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
    color: var(--d-grey);
}
.sup-title::before
{
    content: "";
    width: 50%;
    max-width: 250px;
    height: 4px;
    margin-right: 5px;
    background: var(--orange);
}
.list
{
    list-style: none
}
.list--row
{
    display: flex;
}
.row
{
    display: flex;
}
.list--row-center
{
    align-items: center;
    justify-content: center;
}

.btn
{
    display: inline-flex;
    justify-content: center;
    padding: 20px 40px;
    color: var(--black);
    line-height: 1;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    background: var(--orange);
    transition: .2s;
    text-decoration: none;
}
.btn--center
{
    display: inline-block;
}
.btn--full
{
    width: 100%;
}
.btn--small
{
    font-size: 14px;
    padding: 10px 20px;
}
.btn--large
{
    font-size: 22px;
}
.btn--red
{
    background: var(--red);
}
.btn:hover
{
    background: var(--black);
    color: var(--white);
}


.agree 
{
    display:none
}
.p-t-b
{
    padding: var(--px65) 0;
}
/*#endregion*/

/*#region Header*/
.header 
{
    position: relative;
    border-bottom: 2px solid var(--orange);
    
}
.header__primary
{
    background: var(--white);
    box-shadow: 0 -6px 40px rgb(0 0 0 / 20%);
}
.header__wrapper
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: var(--flex-direction);
    padding: 10px 0;
}
.header__logo
{
    display: flex;
    align-items: center;
    width: 20%;
}
.header__logo-link
{
    width: 110px;
}
.header .custom-logo-link img
{
    max-width: 150px;
}

.header__menu
{
    display: flex;
    align-items: center;
    width: 80%;
}
.header__btn
{
    padding: 10px 20px;
    white-space: nowrap;
    border: 0;
    border-radius: 5px;
}
.nav
{

}
.nav__list
{
    align-items: center;
    justify-content: center;
}
.nav__item
{
    padding: 0 5px;
}

.nav__link
{
    position: relative;
    display: inline-block;
    padding: 10px 5px;
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
    transition: .2s;
}

.nav__sub-menu  
{
    position: absolute;
    display: none;
    background: var(--black);
    list-style: none;
    z-index: 100;
}
.nav__item:hover .nav__sub-menu
{
    display: block;
}
.nav__sub-menu--level-1 a
{
    width: 100%;
}
.nav__item-btn,
.nav__item--active .nav__sub-menu .nav__link
{
    color: var(--white);
}
.nav__item:hover>.nav__link,
.nav__item:hover .nav__item-btn,
.nav__item--active .nav__link,
.nav__sub-menu .nav__link:hover
{
    color: var(--orange);
}

.header__mobile-btn
{
	display: none;
}
.header__mobile-toggle {
	width: 35px;
    height: 25px;
    border: none;
    background: transparent;
    position: relative;
    cursor: pointer;
  }
  .header__mobile-toggle:focus {
	outline: none;
  }
  .header__mobile-toggle--rotate:after, 
  .header__mobile-toggle--rotate:before,
.header__mobile-toggle--rotate span {
  width: 100%;
  height: 2px;
  border-radius: 100px;
  position: absolute;
  left: 0px;
  background: var(--black);
  transform: rotate(0deg);
  transition: all 0.4s;
}
.header__mobile-toggle--rotate:after, .header__mobile-toggle--rotate:before {
  content: "";
}
.header__mobile-toggle--rotate:after {
  top: 0px;
  margin-top: 0px;
}
.header__mobile-toggle--rotate:before {
  bottom: 0px;
  margin-bottom: 0px;
}
.header__mobile-toggle--rotate span {
  top: 45%;
  margin-top: 0;
}
.header__mobile-toggle--rotate.active:after {
  transform: rotate(135deg) translate(9px, -9px);
}
.header__mobile-toggle--rotate.active:before {
  transform: rotate(225deg);
  bottom: 50%;
  margin-bottom: -2px;
}
.header__mobile-toggle--rotate.active span {
  transform: rotate(135deg);
}
/*#endregion*/

/*#region Icon*/

@font-face {
    font-family: 'goodicon';
    src:  url('../fonts/goodicon.eot?a5wt8r');
    src:  url('../fonts/goodicon.eot?a5wt8r#iefix') format('embedded-opentype'),
      url('../fonts/goodicon.ttf?a5wt8r') format('truetype'),
      url('../fonts/goodicon.woff?a5wt8r') format('woff'),
      url('../fonts/goodicon.svg?a5wt8r#goodicon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
  }
  
  [class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'goodicon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
  
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .icon
  {
    margin-right: 5px;
    font-size: 18px;
    line-height: 1;
    color: var(--orange);
    
  }
  
  .icon-phone:before {
    content: "\e942";
  }
  .icon-envelop:before {
    content: "\e945";
  }
  .icon-location:before {
    content: "\e947";
  }
  .icon-amazon:before {
    content: "\ea87";
  }
  .icon-google:before {
    content: "\ea88";
  }
  .icon-facebook:before {
    content: "\ea90";
  }
  .icon-instagram:before {
    content: "\ea92";
  }
  .icon-yelp:before {
    content: "\ead7";
  }

  /*#endregion*/

/*#region Primary*/
.primary 
{
    position: relative;
}
.primary::before
{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}
.primary__wrapper 
{
    position: relative;
    padding: var(--px65) 0;
    width: 70%;
    z-index: 2;
}
.primary__sup-title 
{

}
.primary__title 
{
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}
.primary__desc 
{
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--white);
}
.primary__btn 
{

}

/*#endregion*/

/*#region Title Page*/
.title-page
{
    position: relative;
    padding: var(--px35) 0;
    background: url(https://shumka.cent.by/wp-content/uploads/2023/03/64f6cea8-5d7f-48fb-8bf5-31743102dc78.jpeg) no-repeat center center / cover;
}
.title-page::before
{
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    background-image: linear-gradient(70deg, #FFFFFF 55%, #2C2E4387 100%);
    z-index: 1;
}
.title-page__title
{
    position: relative;
    z-index: 2;
    color: var(--black)
}
/*#endregion*/
/*#region Modal*/
.overlay {

	opacity: 0;
	visibility: hidden;
	
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	z-index: 20;
	transition: .3s all;
 }
 
 

 
 .modal {
	
    position: relative;
	opacity: 0;
	visibility: hidden;
	width: 100%;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 150;
	overflow: auto;
	box-shadow: 0 3px 10px -.5px rgba(0, 0, 0, .2); 
	text-align: left;
	padding: 30px;
	border-radius: 3px;
	background-color: rgba(0, 0, 0, 0.4);
	transition: 0.3s all;
 }

 .modal--bg-color
 {
    background-color: rgba(0, 0, 0, 0.9);
 }
 .modal--medium
 {
    max-width: 750px;
	max-height: 600px;
 }
 .modal--large
 {
    max-width: 1000px;
	max-height: 600px;
 }
  .modal.active,
 .overlay.active{
	opacity: 1;
	visibility: visible;
 }
 
 
 .modal__cross {
	width: 15px;
	height: 15px;
	position: absolute;
	top: 20px;
	right: 20px;
	fill: var(--red);
	cursor: pointer;
    z-index: 10;
 }
 .modal__cross:hover
 {
    fill: var(--white);
 }

 .modal-bx
{
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 9;
}
.modal-bx--bg-color
{
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--orange);
    text-align: center;
}
.modal-bx__title 
{
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: 600;
    
}
.modal-bx__sub-title
{
    font-size: 14px;
    margin-bottom: 15px;
}
.modal-bx__form 
{
    display: flex;
    flex-direction: column;
}

.modal-bx__btn {
}
.modal__bg {
}
.modal__bg-img 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/*#endregion*/


/*#region Gallery*/
.gallery
{
    flex-wrap: wrap;
    margin-top: var(--px35);
    text-align: center;

}
.gallery__desc
{
    text-align: left;
}
.gallery__item
{
}
.gallery__single-list 
{
    margin-top: var(--px35);
    justify-content: flex-start;
    flex-wrap: wrap;
}
.gallery__single-item 
{
    display: flex;
    width: calc(var(--four-col));
    padding: 5px;
}
.gallery__single-item img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*#endregion*/

/*#region Youtube*/

.video-bx
{
    margin-top: var(--px35);
}
.video-bx__wrapper
{
    max-width: 640px;
    margin-top: var(--px35);
}
.video-bx__main-video 
{
    position: relative;
    margin-bottom: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
}
.play 
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
}
.play::before
{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 68px;
  height: 68px;
  margin: auto;
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg height='100%' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;' version='1.1' viewBox='0 0 512 512' width='100%' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:serif='http://www.serif.com/' xmlns:xlink='http://www.w3.org/1999/xlink'><path d='M501.299,132.766c-5.888,-22.03 -23.234,-39.377 -45.264,-45.264c-39.932,-10.701 -200.037,-10.701 -200.037,-10.701c0,0 -160.105,0 -200.038,10.701c-22.025,5.887 -39.376,23.234 -45.264,45.264c-10.696,39.928 -10.696,123.236 -10.696,123.236c0,0 0,83.308 10.696,123.232c5.888,22.03 23.239,39.381 45.264,45.268c39.933,10.697 200.038,10.697 200.038,10.697c0,0 160.105,0 200.037,-10.697c22.03,-5.887 39.376,-23.238 45.264,-45.268c10.701,-39.924 10.701,-123.232 10.701,-123.232c0,0 0,-83.308 -10.701,-123.236Z' style='fill:red;fill-rule:nonzero;'/><path d='M204.796,332.803l133.018,-76.801l-133.018,-76.801l0,153.602Z' style='fill:white;fill-rule:nonzero;'/></svg>");
  background-repeat: no-repeat;
} 

/*#endregion*/

/*#region Swiper*/

.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .swiper-pagination
  {
    position: relative!important;
    bottom: 0!important;
    margin-top: var(--px35);
  }

  /*#endregion*/
/*#region Promo*/
.promo 
{
    position: relative;
    margin-bottom: var(--px35);
}

.promo__wrapper
{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--px35);
    background: url(../img/header-title-bg.jpg) no-repeat center center / cover;
}
.promo__wrapper::before
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--black);
    opacity: .5;
    z-index: 1;
}
.promo__title 
{
    margin-bottom: 10px;
    max-width: 900px;
    font-size: 34px;
    text-transform: none;
    font-weight: bold;
    color: var(--white);
    
}
.promo__btn
{
    
}
.promo__title,
.promo__btn
{
    position: relative;
    z-index: 2;
}
/*#endregion*/

/*#region Who We Are*/
.who 
{
    
}
.who--grey-bg
{
    background: var(--l-grey);
}
.who__title
{
    line-height: 1.5;
}
.who__img-bx {
}
.who__img-link 
{
    width: 100%;
}
.who__img-desc
{
    margin-top: 15px;
}
.who__quantity 
{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    padding: 35px;
    background: var(--black);
}
.who__quantity-work 
{
    width: calc(var(--two-col) - 10px);
}
.who__quantity-number 
{
    color: var(--orange);
    font-size: 69px;
    line-height: 1;
}
.who__quantity-text 
{
    color: var(--white);
}
.who__quantity-succes 
{
    width: calc(var(--two-col) - 10px);
}
.who__quantity-work,
.who__quantity-succes
{
    display: flex;
    flex-direction: column;
    text-align: center;
}
.who__desc-bx {
}
.who__content 
{
    font-size: 18px;
}
/*#endregion*/

/*#region Tabs*/
/* Style the tab */
.tab {
    overflow: hidden;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    padding: 15px 20px;
    margin-right: 15px;
    font-size: 16px;
    font-weight: 600;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    background-color: var(--l-grey);
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 15px 10px;
}
.tabcontent:first-of-type
{
    display: block;
}
/*#endregion*/

/*#region Services*/

.services 
{

}
.services__list 
{
    margin-top: var(--px35);
    justify-content: space-between;
    flex-wrap: wrap;
}
.services__item 
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(var(--four-col) - 10px);
    margin-bottom: 10px;
    padding: 15px;
    border: 1px solid var(--grey);
    background: var(--l-grey);

}
.services__wrapper
{
    display: block;
    width: 100%;
    height: 100%;
    color: var(--black);
    text-decoration: none;
    transition: .3s;
}

.services__item:nth-child(even) .services__wrapper
{
    color: var(--white);
}
.services__img
{
    width: 70px;
}
.services__img,
.services__item-title,
.services__item-desc
{
    margin-bottom: 15px;
}
.services__item-title 
{
    font-size: 20px;
    text-transform: uppercase;
}
.services__item-desc 
{
    font-size: 17px;
    line-height: 1.5;
} 
.services__link 
{
    display: inline-flex;
    max-width: 110px;
    padding-bottom: 10px;
    font-size: 15px;
    line-height: 1;
    color: var(--black);
    border-bottom: 1px solid var(--black);
    text-decoration: none;
}
.services__item:nth-child(even)
{
    background: var(--black);
    color: var(--white);
} 
.services__item:nth-child(even) .services__link 
{
    color: var(--orange);
    border-bottom: 1px solid var(--orange);
} 
/*#endregion*/

/*#region Adv*/
.advantages 
{
    padding: var(--px65) 0;
    margin-bottom: var(--px65);
    background: var(--l-grey);
    
}
.advantages__list 
{
    position: relative;
    justify-content: space-between;
    flex-wrap: wrap;
}
.advantages__item 
{
    
}
.advantages__item:nth-child(even)
{
    background: var(--black);
    color: var(--white);
} 
.advantages__item--three
{
    width: calc(var(--three-col) - 10px);
}
.advantages__item--four
{
    padding: 10px;
    width: calc(var(--four-col) - 10px);
    border: 1px solid var(--grey);
    border-radius: 10px;
    background: var(--white);
}
.advantages__item-bx 
{
    
}
.advantages__item-title
{
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    
}

.advantages__desc 
{
    font-size: 17px;
    line-height: 1.2;
}

 
/*#endregion*/

/*#region Reviews*/


.reviews__list {
}
.reviews__item 
{
    border: 1px solid var(--grey);
    border-radius: 5px;
}
.reviews__wrapper 
{   
    width: 100%;
    height: 100%;
    
}
.reviews__item-name
{
    border-bottom: 1px solid var(--grey);
}
.reviews__item-desc 
{
    font-size: 14px;
    min-height: 95px;
}
.reviews__item-name,
.reviews__item-desc
{
    padding: 10px;
    font-size: 14px;
    line-height: 1;
    border-bottom: 1px solid var(--grey);
    text-align: left;
}
/*#endregion*/


/*#region Service*/
.service-content {
}
.service-content__header {
}
.service-content__title {
}
.service-content__desc {
}
.service-content__poster 
{
    position: relative;
    display: flex;
    flex-direction: column;
}
.service-content__tagline
{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 5px;
    text-align: center;
    background: rgb(249 202 22 / 60%);
    
}
.service-content__btn-list 
{
    justify-content: center;
    padding: var(--px35) 0;
}
.service-content__btn-item {
}
.service-content__btn-item + .service-content__btn-item
{
    margin-left: 15px;
}
.service-content__btn-link {
}
.service-content__content {
}
/*#endregion*/
/*#region two-col*/

.two-col
{
    display: flex;
    justify-content: space-between;
    flex-direction: var(--flex-direction);
}
.two-col__item 
{
    width: calc(var(--two-col) - 20px);
}
.two-col__item--center
{
    text-align: center;
}

/*#endregion*/
/*#region Mission*/
.mission
{
    background: var(--l-grey);
}
/*#endregion*/
/*#region Social*/
.mess {
}
.mess__item 
{
    margin-right: 10px;
}
.mess__item:last-child
{
    margin-right: 0;
}
.mess__link 
{
    text-decoration: none;
}
.mess__icon--small
{
    font-size: 18px;
    color: var(--black);
}
.mess__icon--big
{
    font-size: 22px;
    color: var(--orange);
}
/*#endregion*/

/*#region Team*/
.team
{
    background: var(--l-grey);
}
.team__list 
{
    justify-content: center;
    flex-wrap: wrap;
}
.team__item 
{
    width: var(--three-col);
    padding: 15px;
    
}
.team__wrapper 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid var(--grey);

}
.team__img 
{
    border-radius: 50%;
}
.team__name 
{
    margin-top: 35px;
    margin-bottom: 10px;
    font-size: 20px;
    text-transform: uppercase;
}
.team__position 
{
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
}
.team__experience 
{
    font-size: 14px;
}
/*#endregion*/

/*#region Desc*/
.desc,
.desc__wrapper
{
    margin-top: var(--px35);
}

/*#region*/

/*#region FAQ*/

.faq {
    width: 100%;
    position: relative;
  }
  .faq-questions 
  {
    margin-top: var(--px35);
    list-style: none;
    
  }
  .faq-questions, .faq-questions > li {
    width: 100%;
    display: block;
    
    
  }
  .faq-questions > li {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0em;
    text-align: left;
    border-bottom: 1px solid var(--l-grey);
  }

  .faq-questions > li .faq-answer, .faq-questions > li .faq-asnwer {  
    display: none;
  }
  .faq-questions > li .faq-answer:hover, .faq-questions > li .faq-asnwer:hover {
    color: var(--black);
  }
  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    text-align: left;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--black);
  }
  .faq-answer
  {
    padding-top: 20px;
    padding-bottom: 30px;
    font-weight: 300;
    font-size: 18px;
  }
  .faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--orange);
    background: var(--black);
    transition: .2s;  
  }
  .opened .faq-icon  {
    transform: rotate(45deg);
  }


/*#endregion*/

/*#region Contact Page*/

.contacts {
}
.contacts__title 
{
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1;
    color: var(--orange);
    text-transform: uppercase;
}
.contacts__wrapper
{
    align-items: center;
}
.contacts__list,
.contacts__address  
{
    margin-bottom: 15px;
}
.contacts__item 
{
    margin-bottom: 10px;
}
.contacts__item:last-child 
{
    margin-bottom: 0;
}
.contacts__link 
{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    text-decoration: none;
}
.contacts__address 
{

}
.contacts__address-item 
{
    display: flex;
    align-items: center;
    justify-content: center;
}
.contacts__address-desc {
}
.contacts__mess 
{
    justify-content: center;
}
.contacts__form-bx
{
    padding: 65px;
    background: var(--black);
}
.contacts__region 
{
    margin-bottom: var(--px35);
}
.contacts__region-list {
}
.contacts__region-item {
}
.contacts__region-title 
{
    margin-bottom: 15px;
    font-size: 28px;
}
.contacts__region-address 
{
    margin-bottom: 15px;
    font-size: 18px;
}
.contacts__region-img {
}

/*#endregion*/

/*#region Footer*/
.footer 
{
    position: relative;
    width: 100%;
    margin-top: var(--px35);
    background: var(--black);
    border-top: 5px solid var(--orange);
}
.footer__sub-footer
{
    
} 
.footer__wrapper 
{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--px35) 0;
    flex-direction: var(--flex-direction);
    z-index: 3;
    
    
}

.footer__item-info-bx 
{
    color: var(--white);
    width: 20%;
}
.footer__item-cat-bx 
{
    color: var(--white);
    width: 40%;
}
.footer__title
{
    margin-bottom: 15px;
    color: var(--orange);
}
.footer__info
{

}
.footer__logo-bx 
{
    display: flex;
    margin-bottom: 30px;
}
.footer__logo 
{
    margin-right: 10px;
}
.footer__contact-list 
{
    margin-bottom: 35px;
}
.footer__contact-item {
}
.footer__contact-link 
{
    font-weight: 400;
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
}

.footer__address
{
    max-width: 260px;
}
.footer__address-item
{   
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.footer__address-desc
{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--white);
    text-decoration: none;
}
.footer__icon
{
    margin-right: 10px;
}
.footer__menu-list
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: auto;
}
.footer__menu-list li
{
    width: calc(var(--two-col) - 10px);
    line-height: 1.3;
}
.footer__menu-list a
{
    color: var(--white);
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
}
.footer__copyright 
{
    padding: var(--px35) 0;
    color: var(--white);
    font-weight: 300;
    font-size: 17px;
    text-align: center;
    border-top: 1px solid var(--white);
}
.footer__copyright-list a 
{
    color: var(--white);
    text-decoration: none;
}
.footer__copyright-list a:hover,
.footer__menu-list a:hover 
{
    color: var(--orange);
}
.footer__copyright li
{
    margin-right: 10px;
}
.footer__copyright li:last-child
{
    margin-right: 0;
}

/*#endregion*/

/*#region Form*/


.app-form 
{
    position: relative;
    color: var(--white);
}
.app-form::before
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
} 
.app-form__wrapper
{
    position: relative;
    align-items: center;
}
.app-form__title-bx 
{
    margin-bottom: var(--px35);
    text-align: left;
}
.app-form__title 
{
    margin-bottom: 15px;
    font-size: 45px;
    font-weight: 800;
    line-height: 1.5;
}
.app-form__sub-title {
}
.app-form__form {
}


.form 
{
    
}
.form span
{
    color: #c33734;
}
.form label
{
    margin-bottom: 5px;
    font-weight: bold;
    text-transform: uppercase;
}
.form p
{
    margin-bottom: 0;
}
.form__row 
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: var(--flex-direction);
}
.form__row-field
{
    width: calc(var(--two-col) - 10px);
    padding: 10px 0;
}

.form__list
{
    padding: 10px 0;
}
.form__field
{
    width: 100%;
    max-width: 100%;
    padding: 15px 15px;
    margin: 5px 0;
    background-color: var(--white);
    border: 0;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1;
    color: var(--black);
    
}
.wpcf7-spinner
{
    position: absolute!important;
}
.wpcf7-list-item
{
    margin: 0!important;
    margin-right: 10px!important;
}
.form span.wpcf7-list-item-label
{
    color: var(--white);
    font-weight: 400;
    text-transform: initial;
}
/*#endregion*/

/*#region Logo&Btn*/

.logo-btn
{
    text-align: center;
    background: var(--l-grey);
}
.logo-btn .custom-logo-link
{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

/*#endregion*/

/*#region WC*/
.home-product
{
    margin-bottom: var(--px35);
}
.products-list
{
    justify-content: flex-start;
    flex-wrap: wrap;
}
.products-list__item
{
    width: var(--three-col);
    padding: 10px;
}
.product-category
{
    width: var(--four-col);
}
.products-list__item-bx
{
    position: relative;
    display: block;
    overflow: hidden;

}
.products-list__item-bx::before
{
    content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.0), rgba(0,0,0,0.90));
  z-index: 1;
}
.products-list__info-bx
{
    position: absolute;
    bottom: 0;
    padding: 35px;
    color: var(--white);
    z-index: 2;
}
.products-list__title
{
    margin-bottom: 5px;
}
.product-list__btn
{
    position: absolute;
    top: 15px;
    padding: 10px 15px;
    background: var(--white);
    z-index: 3;
    transition: .3s;
}
.products-list__item-bx img
{
    transition: all ease-in-out .45s;
}
.products-list__item-bx:hover img
{
    transform: scale(1.05);
}
.products-list__item-bx:hover .product-list__btn
{
    color: var(--black);
    background: var(--orange);
}

.product__header 
{
    padding: var(--px35) 0;
}
.product__title 
{
    margin-bottom: 15px;
    font-size: 36px;
}
.product__wrapper
{
    justify-content: space-between;
    flex-wrap: wrap;
}
.product__item
{
    width: calc(var(--two-col) - 10px);
}
.product__img
{
    width: 100%;
    max-width: 600px;
    height: 600px;
}
.product__img img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*#endregion*/

/*#region Media*/

@media (max-width: 1200px)
{
    .container
    {
        padding-left: 10px;
        padding-right: 10px;
    }
    .primary__wrapper
    {
        width: 70%;
    }
}
@media (max-width: 767px)
{
    :root
    {
        --flex-direction: column;
    }
    .header__logo {
        justify-content: space-between;
        width: 100%;
    }
    
    .header__menu
    {
        display: none;
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background: var(--l-black);
        z-index: 100;
    }
    .header__menu.active, 
    .header__mobile-btn
    {
        display: block;
        padding: 15px 0;
        text-align: center;
    }
    .header__mobile-btn
    {
        position: relative;
        margin-left: 15px;
        z-index: 101;
        
    }
    .header__mobile-toggle--rotate.active span
    {
        opacity: 0;
    }
    .header__mobile-toggle--rotate.active:after, 
    .header__mobile-toggle--rotate.active:before,
    .header__mobile-toggle--rotate.active span
    {
        background: var(--white);
    }
    .header__top-mess,
    .header__top-item--address
    {
        display: none;
    }
    .header__top-bar
    {
        justify-content: center;
    }
    .nav__list
    {
        flex-direction: column;
    }
    .nav__link
    {
        color: var(--white);
    }
    .header__link--email
    {
        font-size: 14px;
    }
    .header-bx__desc
    {
        margin-top: 15px;
    }
    .primary__wrapper
    {
        width: 100%;
    }
    .advantages__list
    {
        justify-content: center;
    }
    .advantages__item,
    .products-list__item,
    .product-category
    {
        width: calc(var(--two-col) - 10px);
        margin: 5px;
    }
    .advantages__icon
    {
        min-height: 45px;
        margin-bottom: 5px;
        padding-bottom: 5px;
    }
    .advantages__icon svg
    {
        width: 45px;
    }
    .two-col__item,
    .gallery-page__item 
    {
        width: 100%;
    }
    .gallery-page__item 
    {
        margin-bottom: 15px;
    }
    .gallery-page__item:last-child
    {
        margin-bottom: 0;
    }
    .product__item
    {
        width: 100%;
        margin-bottom: 15px;
    } 
    .service-content__poster img
    {
        min-height: 400px;
        object-fit: cover;
    }
    .footer__wrapper,
    .footer__logo-bx
    {
        align-items: center;
        justify-content: center;
    }
    .footer__item-info-bx,
    .footer__item-cat-bx,
    .footer__item-info-bx
    {
        width: 100%;
    }
    .footer__info,
    .footer__address,
    .footer__menu-list
    {
        margin: 0 auto;
        text-align: center;
    }
    .footer__address-item
    {
        justify-content: center;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .footer__address-item:last-child
    {
        margin-bottom: 0;
    }
    .footer__contact-list
    {
        margin-bottom: 5px;
    }
    .footer__logo-bx,
    .footer__item-cat-bx,
    .who__quantity
    {
        margin-bottom: 15px;
    }
    .footer__item-cat-bx
    {
        margin-top: 15px;
    }
    .footer__menu-list li
    {
        line-height: 2;
    }
    .form__row-field
    {
        width: 100%;
    }
    .footer__mess
    {
        justify-content: center;
        margin-top: 15px;
    }
    .footer__item-info-bx
    {
        text-align: center;
    }
}
@media (max-width: 600px)
{
    
    .header .custom-logo-link img
    {
        max-width: 180px;
    }
    .swiper-slide__wrapper
    {
        padding: 0 45px;
    }
    .services__item
    {
        width: 100%;
    }
    .service-content__btn-link
    {
        width: 100%;
        padding: 20px 10px;
    }
    
}
@media (max-width: 480px)
{
    .advantages__item,
    .products-list__item,
    .product-category
    {
        width: 100%;
    }
    .title--h1
    {
        font-size: 40px;
    }
    .title--h2
    {
        font-size: 36px;
    }
    .footer__menu-list
    {
        list-style: none;
    }
    .footer__menu-list li
    {
        width: 100%;
        margin-left: 0;
        line-height: 1.4;
    }
}
@media (max-width: 360px)
{
    .header__top-list
    {
        flex-direction: column;
    }
    .header__link--email
    {
        font-size: 12px;
    }
    .title--h1
    {
        font-size: 36px;
    }
    .title--h2 
    {
        font-size: 32px;
    }
}
/*#endregion*/

.woocommerce-loop-category__title
{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    text-align: center;
    font-size: 18px;
    font-weight: 400!important;
    min-height: 55px;
}

.product-category
{
    padding: 15px;
    transition: .3s;
}
.product-category a
{
    display: block;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: .3s;
}
.product-category a:hover
{
    box-shadow: 0px 5px 5px rgb(0 0 0 / 15%);
}
/*
.woocommerce-page.columns-3 ul.products li.product, .woocommerce.columns-3 ul.products li.product
{
    position: relative;
    min-height: 350px;
    z-index: 10;
}

.woocommerce-page.columns-3 ul.products li.product::before ,.woocommerce.columns-3 ul.products li.product::before
    {
      content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 4;
    }
.woocommerce-LoopProduct-link
{
    position: absolute;
    top: 0;
    width: 100%;
}
.woocommerce-loop-product__title

{
    position: absolute;
    bottom: 0;
    width: 100%;
    color: var(--white);
    padding: 35px!important;
    margin: 0!important;
    margin-bottom: 35px!important;
    font-size: 22px!important;
    z-index: 10;
}    
.price
{
    position: absolute;
    bottom: 0;
    width: 100%;
    color: var(--white)!important;
    margin-bottom: 35px!important;
    padding: 0 35px!important;
    font-size: 16px!important;
    z-index: 10;
}
.woocommerce ul.products li.product a img
{
    margin: 0;
}

.woocommerce ul.products li.product .button {
    display: inline-block;
    margin-top: 1em;
    position: relative;
    z-index: 10;
    background: var(--orange);
    border-radius: 0;
    font-weight: 300;
}

.product-category a {
    position: relative;
    z-index: 20;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title
{
    background: #fff;
}

*/

.page-title
{
    padding: var(--px35) 0;
}

.stock-status,
.quantity,
.single_add_to_cart_button
{
    display: none!important;
}

.button-qform
{
    background: var(--orange)!important;
    color: var(--black)!important;
    font-size: 26px!important;
    padding: 15px 35px!important;
    font-weight: 300;
    border: 0;
    border-radius: 10px!important;
}

.product-short-desc
{
    padding: var(--px35) 0;
}