@font-face {
  font-family: 'Inter', sans-serif; 
  src: url("../fonts/Inter-Medium.otf") format("opentype"); 
  font-style: normal; 
  font-weight: 500; 
} 

@font-face {
  font-family: 'Inter', sans-serif; 
  src: url("../fonts/Inter-Light.otf") format("opentype"); 
  font-style: normal; 
  font-weight: 300; 
} 

@font-face {
  font-family: 'Inter', sans-serif; 
  src: url("../fonts/Inter-Regular.otf") format("opentype"); 
  font-style: normal; 
  font-weight: 400; 
} 

@font-face {
  font-family: 'Inter', sans-serif; 
  src: url("../fonts/Inter-SemiBold.otf") format("opentype"); 
  font-style: normal; 
  font-weight: 600; 
} 

@font-face {
  font-family: 'Inter', sans-serif; 
  src: url("../fonts/Inter-Bold.otf") format("opentype"); 
  font-style: bold; 
  font-weight: 700; 
} 

/*============= 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: 1920px !important;
    margin-left: calc(-1 * (1920px - 1170px) / 2) !important;
    margin-right: calc(-1 * (1920px - 1170px) / 2) !important;
  }
}


/* hovers */
.mainbanner-block .mainbanner-outer .mainbanner-inner .mainbanner_btn:hover{
  background-color:#fff;
  color:var(--main);
  box-shadow: 0px 0px 9px 0px rgba(255, 255, 255, 0.37) inset, 0px 27px 45px -21px rgba(109, 0, 0, 0.65), 0px 5px 0px -2px #fff;
  border-color:white;
}
.header .inner-header .header-btn .btn:hover{
  opacity:.8;
}
#header .nav-menu-element{
  transition: all .5s;
}
#header .nav-menu-element:hover{
  opacity:.8;
  transition: all .5s;
}
.catalog-block .tab-btn{
  transition: all .5s;
}
/* .stages-block .stages-inner .stages-item{
  transition: all .5s;
}
.stages-block .stages-inner .stages-item:hover{
  transition: all .5s;
}
.stages-block .stages-inner .stages-item:hover .item__subtitle{
  transition: all .5s;
}
.stages-block .stages-inner .stages-item .item__subtitle{
  transition: all .5s;
}
.stages-block .stages-inner .stages-item:hover .stages-item-inner .item__icon{
  transition: all .5s;
}
.stages-block .stages-inner .stages-item .stages-item-inner .item__icon{
  transition: all .5s;
} */
.catalog-block .tab-btn:hover{
  background:var(--main);
  color:white;
  transition: all .5s;
}
.catalog-block .tovar{
  transition:transform .5s;
}
.catalog-block .tovar:hover{
  transform:scale(1.02);
  transition:transform .5s;
}
.catalog-block .theme-modal .btn_download:hover svg path{
  stroke:white;
  fill:white;
  transition:0.2s;
}
.catalog-block .theme-modal .btn_download:hover{
  background:var(--main);
  color:white;
 
}
.catalog-block .theme-modal .btn_order:hover{
  opacity:.7;
}
.faq-block .category__item{
  transition: all .5s;
}
.faq-block .category__item:hover{
  background:var(--main);
  transition:all .5s;
}
.faq-block .category__item:hover .category__title{
  color:white !important;
  transition:all .5s;
}
.faq-toggle:hover svg path{
  fill:var(--main);
  transition:all .5s;
}
.faq.active svg path{
  fill:var(--main);
  transition: all .5s;
}
.reviews-block .review-item-inner .desc-all{
  transition:all .5s;
}
.reviews-block .review-item-inner .desc-all:hover{
  color:var(--main);
  transition:all .5s;
}
.contact-block .left-side .left-side-inner .items__column .item__value:hover, .contact-block .left-side .left-side-inner .items__column .item__value:hover a{
  color:var(--main);
  transition:all .5s;
}
.modal_btn:hover{
  opacity:.8;
}
.mainbanner-block .mainbanner-outer .mainbanner-inner .mainbanner_phone a:hover{
  opacity:.8;
  transition:all .5s;
}
/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}



.block-title {
  color: var(--darky);
  text-align: center;
  padding-top:100px;
  padding-bottom:50px;
}

.block-title::before {
  border-top: 4px solid var(--main);
  content: "";
  margin: 0 auto;
  position: absolute;
  z-index: -1;
  margin-top: 21px;
  max-width: 1170px;
  height: 4px;
  flex-shrink: 0;
  left:0;
  right:0;
}

.fixed{
  position:fixed;
  z-index:100;
}

.block-title{
  background: #f9f9f9;
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 48px */
  text-transform: uppercase;
}

.fancybox-content{
  background:transparent !important; 
}

:root {
  --main: #E10000;
  --secondary: #ffffff;
  --unactive: #F47E7C33;
  --black: #000000;
  --white_text: #FCFCFC;
  --darky: #221F1F;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  box-sizing: inherit;
}

body {
  background-color: #f9f9f9;
  max-width: 1920px;
  overflow-x: hidden;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 20px 5px #747474;
  box-shadow: 0 0 20px 5px #747474;
}

a {
  text-decoration: none;
  color: #121212;
  transition: all 0.3s ease-in;
}
a:hover {
  color: var(--main);
}

ul li {
  list-style-position: inside;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
  /*margin-bottom: 10px;*/
  list-style-type:none;
}
ul li::marker {
  color: #1F2F47;
}

ol li {
  list-style-position: inside;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
}

.content strong{
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
}

.content p{
  color: rgba(34, 31, 31, 0.60);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.16px;
}

h1.page-title {
  color: var(--darky);
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 48px */
  margin-bottom:40px;
  margin-top:40px;
  word-break: break-all;
}

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: 'Inter', 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 {
  
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 225px;
  width: 100%;
  height: 50px;
  background: transparent;
  border-radius: 5px;
  border: 1px solid var(--main);
  outline: none;
  font-family: 'Inter', sans-serif;
  color: var(--white_text);
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  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 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: 83vh;
}

/* ========================== HEADER ========================== */
header {
  position: absolute;
  width: 100%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
  z-index: 2;
  background-color: var(--main);
  max-width:1920px;
}

.header .inner-header{
  display:flex;
  flex-direction:row;
  justify-content: space-between;
  align-items:center;
}

.header .inner-header .phone__item {
  font-size: 18px;
  line-height: 1;
  color: #fff;
  font-weight: 450;
  white-space: nowrap;
}

@media (max-width: 350px) {
  .header .inner-header .phone__item {
    font-size: 16px;
  }
}

.header .inner-header .header-nav .header_nav_menu .header-menu{
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  width:100%;
  justify-content: space-between;
}

.header .inner-header .header-nav .header_nav_menu .header-menu .nav-menu-element a{
  color: var(--white_text);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.32px;
  text-transform: uppercase;
}

.header .inner-header .header-nav .header_nav_menu {
  width:100%;
}

.header .inner-header .header-logo{
  width:100%;
  height:100%;
  max-height:130px;
  max-width:89px;
}

.header .inner-header .header-logo img{
  width:100%;
  height:100%;
}

.header .inner-header .header-nav{
  display:flex;
  flex-direction:row;
  justify-content:space-between;
  justify-content: center;
  width: 50%;
  padding:0px 15px;
}

.header .inner-header .header-nav .nav__element{
  color: var(--white_text);
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-transform: uppercase;
}

.header .inner-header .header-btn .btn{
  position: relative;
  max-width:250px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 36px;
  background: var(--secondary);
  border: 1px solid var(--secondary);
  outline: none;
  font-family: "Inter", sans-serif;
  color: var(--main);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  cursor: pointer;
  transition: all 0.3s ease-in;
  border-radius: 10px;
  box-shadow: 0px 0px 9px 0px rgba(255, 255, 255, 0.37) inset, 0px 27px 45px -21px rgba(109, 0, 0, 0.65), 0px 5px 0px -2px #BF0000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
#header .nav-menu-element{
  position: relative;
}
#header .nav-menu-element.active{
  position:relative;
}

#header .inner-header .nav-menu-element:hover ::before{
  content:"";
  position:absolute;
  background:#FF5A5A;
  height:7px;
  display: block;
  width: -webkit-fill-available;
  bottom:-45px;
}

#header .inner-header .nav-menu-element.active::before{
  content:"";
  position:absolute;
  background:#FF5A5A;
  height:7px;
  display: block;
  width: -webkit-fill-available;
  bottom:-45px;
}

/*================ 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: #FFF;
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
}
#header .burger.open_menu.clicked {
  background-color: #D12D26;
}
#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(--main);
  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: #fff;
}
#header #mobile-mnu a {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}
#header #mobile-mnu a:hover {
  color: #D12D26;
}
#header #mobile-mnu .logo__holder {
  text-align: center;
  margin-bottom: 30px;
  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(--white_text);
  font-weight: 450;
}
#header #mobile-mnu .menuTop li a:hover {
  
}
#header #mobile-mnu .menuTop li.active a {
  color: var(--white_text);
}
#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;
  filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(66deg) brightness(106%) contrast(101%);
}
#header #mobile-mnu .adresses__holder p {
  font-size: 16px;
  line-height: 1;
  color: #fff;
  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: #fff;
  font-weight: 450;
}
#header #mobile-mnu .soc__holder .soc__item svg, #header #mobile-mnu .soc__holder .soc__item img{
  transform:scale(1.1);
}
#header #mobile-mnu .email__holder .email__item a{
  color: #fff;
}
#header #mobile-mnu .email__holder .email__item:hover {
  opacity:.8;
}

#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 .phones__holder a{
  color:#fff;
}
#header #mobile-mnu .phones__holder .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  font-weight: 450;
}
#header #mobile-mnu .phones__holder .phone__item:hover {
  opacity:.8;
}
#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}
#header #mobile-mnu .phones__holder .phone__item svg path{
  stroke:white;
}
#header #mobile-mnu .email__holder .email__item svg path{
  stroke:white;
}
#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: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  transition: background-color .3s ease-in;
}
#header #mobile-mnu .soc__holder .soc__item:hover {
  
}
#header #mobile-mnu.opened {
  transform: translateX(0);
}

@media(max-width: 1100px){
  .header .inner-header .header-nav{
    display:none;
  }
  #header .burger.open_menu{
    display:flex;   
  }
}

@media(max-width: 600px){
  .header .inner-header .header-btn .btn{
    display:none;
  }
}

/*============ FOOTER ===============*/
#footer {
  background: #151515;
}
#footer svg path{
  fill:white;
}
#footer .container .bot__line {
  display: flex;
  align-items: center;
  height: 60px;
  width: 100%;
  justify-content: space-between;
  margin-top: 10px;
}
#footer .container .bot__line .privacy {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-decoration-line: underline;
  color: #E0E0E0;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Inter", sans-serif;
}
#footer .container .bot__line .privacy:hover {
  color: white;
  opacity: 1;
}
#footer .container .bot__line .dev {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #E0E0E0;
  transition: 0.3s;
  font-family: "Inter", sans-serif;
}
#footer .container .bot__line .dev:hover {
  color: white;
  opacity: 1;
}
#footer .container .bot__line .dev span {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
/* ============== MODAL ============= */
.wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .ajax-loader {
  display: none;
}
.wpcf7 .wpcf7-spinner {
  display: none;
}

#catalog-block .theme-modal {
  height: 650px;
  width: 1170px;
  max-height: 90vh;
  max-width: 90vw;
  background-color: #fff;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform .3s ease-in;
  z-index: 15000;
}

#footer .theme-modal {
  height: 485px;
  width: 370px;
  max-height: 90vh;
  max-width: 90vw;
  background-color: #fff;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform .3s ease-in;
  z-index: 19999;
}
#footer .theme-modal.modal-open, #catalog-block .theme-modal.modal-open{
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

#modal-success, #modal-error{
  max-width:300px !important;
  max-height:150px !important;

}

#modal-success .title, #modal-error .title{
  margin-top:50px !important;
}

#modal-success .subtitle, #modal-error .title{
  text-align:center;
}

#modal-error .title{
  margin-top:8% !important;
}

#footer .theme-modal.modal-open .subtitle{
    color: var(--darky);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.32px;
    padding-bottom: 32px;
    opacity: .6;
}

#footer .theme-modal.modal-open .title{
  color: var(--darky);
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: 0.48px;
}
#footer .theme-modal .close-modal, #catalog-block .theme-modal .close-modal {
  position: absolute;
  right: -20px;
  top: -20px;
  font-size: 40px;
  font-weight: 750;
  color: #374957;
  cursor: pointer;
}

@media (max-width: 435px) {
  #footer .theme-modal .close-modal, #catalog-block .theme-modal .close-modal svg {
    max-width: 40px;
  }
}

.callback_inner{
  padding-left:34px;
  padding-right:36px;
  padding-bottom:48px;
  padding-top:33px;
}

.callback_title{
  color: var(--darky);
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: 0.48px;
  padding-bottom:9px;
}

.callback_subtitle{
  color: var(--darky);
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.32px;
  padding-bottom:32px;
  opacity:.6;
}

.wpcf7 input:focus{
  border:none;
}

.wpcf7 input[type="text"]{
  margin-bottom:30px;
  color: var(--darky);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.32px;
  border:0px;
  width:100%;
  border-bottom: 2px solid rgba(0, 0, 0, .1);
  padding-bottom:10px;
  opacity: 0.6;
  outline: none;
  background:transparent;
  cursor:pointer;
}

.swiper-button-disabled{
  opacity:.6;
}

.wpcf7 input[type="tel"]{
  margin-bottom:27px;
  color: var(--darky);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.32px;
  border:0px;
  width:100%;
  border-bottom: 2px solid rgba(0, 0, 0, .1);
  padding-bottom:10px;
  opacity: 0.6;
  outline: none;
  background:transparent;
  cursor:pointer;
}

.wpcf7-list-item-label{
  color: var(--darky);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  letter-spacing: 0.24px;
  opacity:0.3;
  position:absolute;
  width: 200px;
  margin-top:3px;
}

.wpcf7-list-item{
  margin:0px;
}

input[type="tel"].wpcf7-not-valid {
  border-bottom:2px solid red !important;
}

input[type="text"].wpcf7-not-valid {
  border-bottom:2px solid red !important;
}


.wpcf7-not-valid input[type="checkbox"]{
  border:2px solid red;
}

.wpcf7 input[type="checkbox"]:checked{
  background-image: url("../images/agree.png");
  background-size: contain;
  padding: 5px;
  background-repeat: no-repeat;
  background-origin: content-box;
  padding: 4px;
  padding-top: 6px;
}

.wpcf7 input[type="checkbox"]{
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: #F4F4F4;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right:14px;
  cursor:pointer;
  position:relative;
}

.wpcf7-list-item-label::after{
  content:none;
}

.wpcf7-list-item-label::before{
  content:none;
}

.modal_btn{
  display: inline-flex;
  padding: 15px 79px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor:pointer;
  border-radius: 10px;
  background:linear-gradient(283deg, #DE0000 7.15%, #FF2507 90.61%);
  box-shadow: 0px 0px 9px 0px rgba(255, 255, 255, 0.37) inset, 0px 27px 45px -21px rgba(109, 0, 0, 0.65), 0px 5px 0px -2px #BF0000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border:0px;
  margin-top:50px;
}

@media(max-width:450px){
  .modal_btn{
    padding:15px 29px;
    display:flex;
    margin-left:auto;
    margin-right:auto;
  }
  .callback_title{
    font-size:20px;
  }
  .callback_subtitle{
    font-size:14px;
  }
  #footer .theme-modal .close-modal{
    right:-10px;
  }
}



/* ============= 404 =========== */
.error-404{
  
}

 .breadcrumbs{
  padding-top:116px;
  padding-left:60px;
  
}

.breadcrumbs span{
  color: rgba(34, 31, 31, 0.60);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.16px;
}

.error-404 .shtorka{
  position: absolute;
  top:106px;
  z-index:-1;
  right:-40px;
}

.error-404 .error-inner{
  /*width:fit-content;*/
  /*margin-left:auto;*/
  display: flex;
  flex-direction: column;
  align-items:center;
  padding-top:17px;
}

.error-404 .error__title{
  color: var(--main);
  font-family: 'Inter', sans-serif;
  font-size: 344px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%; /* 495px */
  letter-spacing: 3.3px;
  width:fit-content;
  z-index:-2;
}

.error-404 .error__button{
  border-radius: 10px;
  border-radius: 10px;
background: linear-gradient(283deg, #DE0000 7.15%, #FF2507 90.61%);

box-shadow: 0px 0px 9px 0px rgba(255, 255, 255, 0.37) inset, 0px 27px 45px -21px rgba(109, 0, 0, 0.65), 0px 5px 0px -2px #BF0000;
  margin-bottom: 20px;
  color:white;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 15px 50px;
}

.error-404 .error__subtitle{
  color: rgba(34, 31, 31, 0.60);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.16px;
  margin-bottom: 34px;
  text-align:center;
}

.error-404 .error_container{
  max-width: 1115px;
  max-height: 736px;
  position:relative;
  margin-top:-70px;
  min-height: 83vh;
  margin-left:404px;
}

@media(max-width:784px){
  .error-404{
    
  }
}

@media(max-width:1620px){
  .error-404 .error_container{
    margin-left:104px;
  }
}

@media(max-width:1300px){
  .error-404 .error_container{
    margin-left:0px;
  }
}
@media(max-width:1200px){
  .error-404 .error__title{
    font-size:200px;
  }
  .error-404 .error_container{
    margin-left:0px;
  }
  .error-404 .error_container{
    padding-top: 100px;
    
  }
  .error-404 .error-inner{
    padding-right:100px;
  }
}
@media(max-width:800px){
  .error-404 .shtorka{
    right:-160px;
  }
}

@media(max-width:600px){
  .error-404 .error-inner{
    padding-right: 0px;
    margin-left: auto;
    margin-right: auto;
  }
  .error-404 .shtorka{
    right:-400px;
    z-index:-3;
  }
}

@media(max-width:415px){
  .error-404 .error__title{
    font-size:100px;
  }
}

/* ============= MEDIA QUERIES =========== */

@media(max-width:800px){
  .block-title{
    font-size: 30px;
    word-break: initial;
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .privacy-policy h1.page-title{
    font-size:23px;
    word-break:keep-all;
  }
  .block-title::before{
    margin-top:16px;
  }
  .block-title::before{
    margin-top:15px;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
}

@media(max-width:800px){
  .block-title{
    position: relative;
  }
}

@media(max-width:700px){
  .block-title{
    padding: 40px 0;
    position:relative;
  }
}

@media(max-width:500px){
  .block-title{
    font-size: 30px;
    display: block;
    max-width: fit-content;
    width: min-content;
    word-wrap: break-word;
    margin-left: auto;
    margin-right: auto;
  }
  .block-title::before{
    margin-top:15px;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
}

/*# sourceMappingURL=main.css.map */
