/*============= ALIGNES ===============*/

.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
    /*margin-left: calc(-1 * (1920px - 1170px) / 2) !important;*/
    /*margin-right: calc(-1 * (1920px - 1170px) / 2) !important;*/
  }
}

:root{
  --primary: #F8BF3A;
  --head: #252830;
  --main_text: #515359;
  --card: #FFFFFF;
  --bg_light: #F0F0F0;
  --bg_dark: #C7C8CA;
  --stroke: #A7A7A7;
  --accent: #3A3D44;
  --accent_2: #17BD5C;
  --accent_3: #ED1B2F;
  /* --vk: #0077FF;
  --tg: #229ED9;
  --wp: #25D366; */
  --btn: #1C1C1E;
  --base_transition: all 0.3s ease-in;
  --medium_transition: all 0.5s ease-in;
  --transparent: rgba(0,0,0,0);
}
/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  box-sizing: inherit;
}

body {
  background-color: var(--bg_light);
  max-width: 1920px;
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
  /*-webkit-box-shadow: 0 0 20px 5px #747474;*/
  /*box-shadow: 0 0 20px 5px #747474;*/
  padding: 0 25px;

}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, p, .p1, .p2, .p3, .numbers, .button_text, a{
  font-family: 'Inter', sans-serif;
  line-height: 130%;
  color: var(--head);
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .button_text{
  font-weight: 600;

}
h6, .h6, h3, .h3{
  line-height: 140%;
}
h1, .h1{
  font-size: 54px;
}
h2, .h2{
  font-size: 46px;
}
h3, .h3{
  font-size: 36px;
}
h4, .h4{
  font-size: 30px;
}
h5, .h5{
  font-size: 24px;
}
h6, .h6{
  font-size: 16px;
}


p, .p1, .p2, .p3, .numbers{
  font-weight: 400;
}
p, .p1{
  font-size: 22px;
}
.p2{
  font-size: 16px;
}
.p3{
  font-size: 14px;
}

.numbers{
  line-height: 100%;
  font-size: 50px;
}
.button_text{
  line-height: 125%;
  font-size: 14px;
}

a{
  text-decoration: none;
}

#header ::marker {
  content: '';
}


main.foned {
  position: relative;
  overflow: hidden;
  z-index: 999;
}
main.foned:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.breadcrumbs {
  padding: 20px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: #DFDFDF;
}
.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.breadcrumbs span.current-item {
  color: #121212;
}

.container {
  max-width: 1410px;
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  background: var(--primary);
  border: 1px solid var(--primary);
  outline: none;
  color: var(--btn);
  cursor: pointer;
  transition: all 0.3s ease-in;
  border-radius: 30px;
  padding: 16px 35px;
  width: fit-content;
}
.btn:hover {
  background: var(--main_text);
  border: 1px solid var(--main_text);
  color: var(--primary);
  transition: all 0.3s ease-in;
}

.rewiews-values .values{
  display: block !important;
  color: #000;
}

.btn.black_btn {
  background: var(--btn);
  border: 1px solid var(--btn);
  color: var(--card);
  transition: all 0.3s ease-in;
}
.btn.black_btn:hover {
  background: transparent;
  border: 1px solid var(--btn);
  color: var(--btn);
  transition: all 0.3s ease-in;
}

.btn.black_btn.invert {
  background: transparent;
  border: 1px solid var(--btn);
  color: var(--btn);
  transition: all 0.3s ease-in;
}
.btn.black_btn.invert:hover {
  background: var(--btn);
  border: 1px solid var(--btn);
  color: var(--card);
  transition: all 0.3s ease-in;
}

.btn.white_btn {
  background: var(--card);
  border: 1px solid var(--card);
  color: var(--btn);
  transition: all 0.3s ease-in;
}
.btn.white_btn:hover {
  background: transparent;
  border: 1px solid var(--card);
  color: var(--card);
  transition: all 0.3s ease-in;
}

.btn.white_btn.invert {
  background: transparent;
  border: 1px solid var(--card);
  color: var(--card);
  transition: all 0.3s ease-in;
}
.btn.white_btn.invert:hover {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--btn);
  transition: all 0.3s ease-in;
}
/* 
.btn svg {
  transition: all 0.3s ease-in;
  margin-right: 10px;
}
.btn svg path {
  transition: all 0.3s ease-in;
}
.btn:hover {
  color: #fff;
  background-color: #f6c4df;
  letter-spacing: 1px;
}
.btn:hover svg path {
  fill: rgba(18, 223, 236, 0.5);
}
.btn:focus {
  letter-spacing: normal;
}
.btn.invert {
  background-color: #f6c4df;
  color: #fff;
} */

#main,
#primary {
  min-height: 75vh;
}

.m_text_color{
  color: var(--main_text);
}

.uppercase{
  text-transform: uppercase;
}

.theme-modal .subtitle{
  margin-top: 5px;
  max-width: 400px;
  margin-bottom: 60px;
}

/*============ HEADER =================*/
#header{
  background-color: var(--card);
  padding-top: 5px;
  padding-bottom: 15px;
  border-radius: 0px 0px 15px 15px;
  position: fixed;
  width: 100%;
  z-index: 99;
  max-width: 1860px;
  margin: 0 auto;
  left: 50%;
  margin-left: -930px;
  margin-top: -152px;
}

main{
  margin-top: 152px;
}

@media(max-width: 1890px){
  #header{
    background-color: var(--card);
    padding-top: 5px;
    padding-bottom: 15px;
    border-radius: 15px 15px 15px 15px;
    position: fixed;
    width: 100%;
    z-index: 10;
    max-width: 1860px;
    margin: 0 auto;
    left: auto;
    margin-left: -25px;
    margin-top: -152px;
  }
}
@media(max-width: 1000px){
#header{
  margin-top: -112px;
}

main{
  margin-top: 112px;
}
}

@media(max-width: 750px){
  #header{
    margin-left: -10px;
  }
  }
  @media(max-width: 510px){
    #header{
      margin-top: -100px;
    }
    
    main{
      margin-top: 90px;
    }
    }
#header .container{
  padding: 0 25px;
}

#header .header_bottom{
  padding-top: 15px;
}

#header .header_bottom .menuTop{
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
#header .header_bottom .menuTop a{
  transition: var(--base_transition);
  font-weight: 600;
  font-size: 14px;
  line-height: 125%;
}

#header .header_bottom .menuTop a:hover{
  color: var(--primary);
  transition: var(--base_transition);
}
#header .logo{
  max-width: 195px;
}

#header .logo img{
  max-width: 195px;
  object-fit: contain;
}

#header .header_top{
  display: flex;
  justify-content: space-between;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--bg_light);
  gap: 15px;
}

.yandex_rewiews{
  padding: 10px;
  background-color: var(--bg_light);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: fit-content;
}

.yandex_rewiews .yandex_rewiews_bottom{
  display: flex;
  gap: 5px;
  vertical-align: middle;
  
}
.yandex_rewiews .h6{
  margin-right: 5px;
}
.yandex_rewiews .p3{
  margin: auto 0;
}
.yandex_rewiews svg{
  margin: auto 0;
}

#header .header_top{
  .logo, .yandex_rewiews, .work_time, .con-holder, .btns_holder, .burger{
    margin: auto 0;
  }
}

#header .header_top .con-holder{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#header .header_top .btns_holder{
  display: flex;
  gap: 20px;
}
.soc-holder{
  display: flex;
  gap: 5px;
  margin: auto 0;
}

.soc-holder .soc{
  display: block;
  height: auto;
  border: 1px solid var(--bg_light);
  border-radius: 100px;
  max-height: 53px;
  transition: var(--base_transition);
  background-color: var(--card);
}
.soc-holder .soc:hover{
  background-color: var(--primary);
  transition: var(--base_transition);
  border: 1px solid var(--primary);
}

.soc-holder .soc svg{
  margin: 14px;
}
.soc-holder .soc svg path{
  transition: var(--base_transition);
}
.soc-holder .soc:hover svg path{
  fill: var(--head);
  transition: var(--base_transition);
}

/*================ MOBILE MNU =============*/
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 40px;
  width: 40px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
}
#header .burger.open_menu span {
  background-color: var(--btn);
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
  z-index: 5;
}
#header .burger.open_menu.clicked {
  background-color: var(--primary);
}
#header .burger.open_menu.clicked span {
  background-color: #fff;
}
#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: var(--card);
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
}
#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transform: rotate(45deg);
  display: block;
  color: #D12D26;
}
#header #mobile-mnu a {
  font-size: 16px;
  line-height: 1;
  color: var(--head);
  font-weight: 450;
  transition: var(--base_transition);
}
#header #mobile-mnu a:hover {
  color: var(--primary);
  transition: var(--base_transition);
}
#header #mobile-mnu .logo-holder {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#header #mobile-mnu .logo__holder img {
  max-height: 60px;
}
#header #mobile-mnu .menuTop {
  list-style-type: none;
  margin-bottom: 10px;
}
#header #mobile-mnu .menuTop li {
  margin-bottom: 10px;
}
#header #mobile-mnu .menuTop li a {
  font-size: 16px;
  line-height: 1;
  color: var(--head);
  font-weight: 450;
  transition: var(--base_transition);
}
#header #mobile-mnu .menuTop li a:hover {
  color: var(--primary);
  transition: var(--base_transition);
}
#header #mobile-mnu .menuTop li.active a {
  color: var(--primary);
}
#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  width: 100%;
}
#header #mobile-mnu .adresses__holder:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url("../images/map.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
#header #mobile-mnu .adresses__holder p {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}
#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
#header #mobile-mnu .email__holder .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}
#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--primary);
}
#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}
#header #mobile-mnu .phones__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
#header #mobile-mnu .phone {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--primary);
}
#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}
#header #mobile-mnu .soc__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
}
#header #mobile-mnu .soc__holder .soc__item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #3A899A;
  transition: background-color .3s ease-in;
}
#header #mobile-mnu .soc__holder .soc__item:hover {
  background-color: #609FA8;
}
#header #mobile-mnu.opened {
  transform: translateX(0);
}

#header #mobile-mnu .soc-holder{
  margin: 0;
  margin-top: 20px;
}

@media (max-width: 1300px){
  #header .header_top .work_time{
    display: none;
  }
}

@media (max-width: 1150px){
  #header .header_top .btns_holder .soc-holder{
    display: none;
  }
}

@media (max-width: 1000px){
  #header .burger.open_menu {
    display: flex;
  }
  #header .header_top .yandex_rewiews{
    display: none;
  }
  #header .header_bottom{
    display: none;
  }
  #header .header_top{
    border-bottom: none;
    padding: 0;
  }
  #header{
    padding: 15px 0;
  }
}

#header #mobile-mnu .phones-holder{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media (max-width: 800px){
  #header .header_top .btns_holder{
    display: none;
  }
  #header .header_top .con-holder .email{
    display: none;
  }
  #header .header_top .con-holder .phone{
    font-size: 18px;
  }
}
@media (max-width: 510px){
  #header .header_top .con-holder .phone{
    font-size: 16px;
  }
  #header .logo img{
    max-width: 120px;
  }
}

@media (max-width: 400px){
  #header .logo img{
    max-width: 90px;
  }
  #header .header_top .con-holder .email{
    display: none;
  }
  #header .header_top .con-holder .phone{
    font-size: 14px;
  }
  #header .header_top{
    gap: 8px;
  }
}


/*============ FOOTER ===============*/
#footer{
  background-color: var(--head);
  padding: 30px 0;
  border-radius: 15px 15px 0px 0px;
}

#footer .p3{
  color: var(--card);
  opacity: 0.7;
  margin: auto 0;
}

#footer .container{
  display: flex;
  justify-content: space-between;
  padding: 0 25px;
}

#footer .container .dev{
  vertical-align: middle;
  transition: var(--base_transition);
}

#footer .container .dev svg{
  margin-left: 8px;
  position: relative;
  top: 3px;
}

#footer .container .dev svg path{
  fill: var(--card);
}

#footer .container .privacy{
  text-decoration: underline;
  transition: var(--base_transition);
}

#footer .container .privacy:hover, 
#footer .container .dev:hover{
  opacity: 1;
  transition: var(--base_transition);
}

@media (max-width: 830px){
  #footer .container{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0 auto;
    width: fit-content;
  }
}


/* ============== MODAL ============= */
.theme-modal {
	display: none;
}
.theme-modal.fancybox__content {
  width: 690px;
  padding: 60px 80px;
  border-radius: 15px;
}
.theme-modal.fancybox__content .f-button.is-close-btn svg path {
  transition: all .3s ease-in;
  stroke: transparent;
}
.theme-modal.fancybox__content .f-button.is-close-btn:hover svg path {
  stroke: transparent;
  fill: var(--primary);
  transition: all .3s ease-in;
}
.fancybox__backdrop {
background: rgba(35, 38, 46, 0.9) !important;
}
input.error,
.form textarea.error {
  border-color: var(--error) !important;
}
.fancybox__content>.f-button.is-close-btn{
  width: 12px;
  height: 12px;
  top: 30px !important;
  right: 30px !important;
}

.fancybox__content>.f-button.is-close-btn{
  display: none;
}

.fancybox__content>.f-button.is-close-btn.my_btn{
  display: flex;
  width: 12px;
  height: 12px;
}

.fancybox__content>.f-button.is-close-btn.my_btn svg{
  width: 12px;
  height: 12px;
}

.fancybox__content h3{
  margin-bottom: 60px;
}

.fancybox__content .form.form-v2{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fancybox__content .form.form-v2 .form_bottom{
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}

.swiper {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 550px){
  .theme-modal.fancybox__content {
    padding: 30px 40px;
  }
  .fancybox__content h3, .fancybox__content .h3{
    margin-bottom: 30px;
    font-size: 25px;
  }
  .fancybox__content .form.form-v2 .form_bottom{
    flex-direction: column-reverse;
    gap: 10px;
  }
  .fancybox__content .form.form-v2 .form_bottom .privacy-polic{
    max-width: none;
  }
  .fancybox__content .form.form-v2 .form_bottom .btn{
    width: 100%;
  }
  .fancybox__content>.f-button.is-close-btn{
    top: 20px !important;
    right: 20px !important;
  }
}

@media (max-width: 360px){
  .fancybox__content h3, .fancybox__content .h3{
    font-size: 22px;
  }
}




input{
  border: 0;
  background-color: var(--bg_light);
  padding: 16px 25px;
  border-radius: 500px;
  width: 100%;
  border: solid 1px transparent;
  cursor: pointer;
  transition: var(--base_transition);
  color: var(--main_text);
  border-bottom: 1px solid var(--stroke);
}

input::placeholder{
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 130%;
  font-size: 14px;
  transition: var(--base_transition);
}

.input_part{
  margin-bottom: 20px;
}
.input_part{
  gap: 20px;
}

  .privacy-polic {
  color: var(--main_text);
  /* margin-top: 20px; */
  max-width: 260px;
  
}
  .privacy-polic a{
  text-decoration: underline;
  color: var(--main_text);
}
input {outline:none;}
.form  input:hover, .form  input:focus, .form  input:active{
  color: var(--head);
  border-bottom: 1px solid var(--head);
}
.form  input:hover::placeholder, .form  input:focus::placeholder, .form  input:active::placeholder{
  color: var(--head);
  transition: var(--base_transition);
}


.form input.error{
  color: red;
  border: none;
  border-bottom: 1px solid red;
}


.privacy-policy .page-title{
  font-size: 48px;
}

.privacy-policy .wp-block-heading{
  margin-top: 20px;
}

.breadcrumbs span, .breadcrumbs, .breadcrumbs span.current-item{
  color: var(--head);
}

.privacy-policy .content{
  margin-bottom: 80px;
}

.privacy-policy .container{
  padding: 0;
}

.breadcrumbs{
  padding-top: 0;
}

.error404 .breadcrumbs{
  display: none;
}

.error_container{
  display: flex;
  justify-content: end;
  border-radius: 15px;
}

.error_container h2{
  color: var(--card);
}

.er_404{
  background-color: var(--accent);
  color: var(--primary);
  font-size: 100px;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 10px;
  transform: rotate(-3deg);
  line-height: 130px;
  display: inline-block;
  width: fit-content;
  position: relative;
  letter-spacing: 2px;
}

.error_container .img_404{
  max-width: 785px;
  height: 580px;
  margin: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.error_container .img_404 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.error_content{
  max-width: 751px;
  margin-top: 60px;
  margin-left: 30px;
  width: 100%;
}

.error_content h2{
  margin: 30px 0;
}



/* ============= MEDIA QUERIES =========== */
@media (max-width: 1560px){
  .error_container{
    justify-content: space-between;
  }
  .error_content{
    max-width: 560px;
  }
}

@media (max-width: 1200px){
  .error_container{
    flex-direction: column;
    margin-bottom: 30px;
    gap: 30px;
  }
  .error_container .img_404 {
    max-width: none;
    width: auto;
    height: 300px;
}
.error_content{
  margin: 0 auto;
  margin-top: 60px;
}
.error_content .btn{
  margin: 0 auto;
}
.er_404{
  margin: 0 auto;
  display: block;
}
}

@media (max-width: 750px){
  body{
    padding: 0 10px;
  }
  #header .container{
    padding: 0 12px;
  }
  #footer .container{
    padding: 0 12px;
  }
  .privacy-policy .page-title{
    font-size: 26px;
  }
  .privacy-policy .wp-block-heading{
    font-size: 24px;
  }
  .privacy-policy .content p{
    font-size: 18px;
  }
  .privacy-policy .content{
    margin-bottom: 40px;
  }
}

@media (max-width: 700px){
  .error_content h2{
    font-size: 30px;
    text-align: center;
  }
  .error_content{
    margin-top: 30px;
  }
}

@media (max-width: 500px){
  .error_container .img_404 {
    height: 200px;
}
.er_404{
    font-size: 80px;
    line-height: 100px;
}
.error_content h2{
  font-size: 23px;
}
}

.fancybox__container{
  /* background-color: rgba(81, 83, 89, 0.9); */
}
.is-compact .fancybox__content>.f-button.is-close-btn{
  background-color: transparent;
}
/*# sourceMappingURL=main.css.map */
