@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@200;300;400;500;600;700;800&display=swap");
:root {
--body-bg-color:#F3F3F3;
--body-font: "Roboto", sans-serif;
--body-color: #314359;
--button-bg-color: #FE2979;
--button-bg-hover:rgba(255, 0, 131,1);
--button-color: #FFFFFF;
}
/* comment for update */
body {
 background-color: var(--body-bg-color);
 font-family: var(--body-font);
 font-size: 18px;
 letter-spacing:1.2px;
 color: var(--body-color);
 -ms-hyphens: auto;
 -webkit-hyphens: auto;
 word-wrap: break-word;
 overflow-x: hidden;
}
::selection {
    background: var(--bs-gray);
    color: #fff;
}
a{
  cursor: pointer;
  text-decoration: none;
  color: var(--button-bg-color);
  background-repeat: repeat-y;
  background-size: 0% 0em;
  background-position: 0 65%;
  transition: 600ms ease;
  padding: 2px;
}
a:hover{
  background-image: : -moz-linear-gradient(135deg, rgba(255,0,131,1) 0%, rgba(254,41,121,1) 100%);
  background-image: -webkit-linear-gradient(135deg, rgba(255,0,131,1) 0%, rgba(254,41,121,1) 100%);
  background-image: linear-gradient(135deg, rgba(255,0,131,1) 0%, rgba(254,41,121,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff0083",endColorstr="#fe2979",GradientType=1);
  background-size: 100% 1em;
  color: #fff;
}
ul {
  list-style-type: none;
}
h2{
  font-weight: 500;
  font-size: 1.8em;
  padding-bottom: 10px;
  position: relative;
}
h2::after{
    content: "";
    display: block;
    border-radius: 3px;
    bottom: -3px;
    left: 0px;
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: rgba(63, 39, 173, 1);
}
p {
	line-height: 150%;
}

h2.text_center::after{
    content: "";
    display: block;
    border-radius: 3px;
    width: 17%;
    left: 0;
    right: 0;
    position: absolute;
    bottom: -3;
    height: 4px;
    margin: 0 auto;
    background-color: rgba(63, 39, 173, 1);
}
section{
  margin: 4em 0 4em 0;
}
header{
  width: 100%;
  position: fixed;
  letter-spacing:1.2px;
  z-index: 1;
  padding-top: 1em;
}
.header_in{
    background: #1e2457;
    position: fixed;
    animation-name: fadeInZp;
    animation-duration: 1s;
    z-index: 100;
}
.header_in:before{
  content: "";
  -webkit-box-shadow: 0 5px 8px rgb(48 80 117 / 20%);
    box-shadow: 0 5px 8px rgb(48 80 117 / 20%);
    position: absolute;
    top: 0;
    right: -10000px;
    bottom: 0;
    left: -10000px;
    z-index: -2;
}
@keyframes fadeInZp {
 from {
  opacity: 0;
  top: -50px;
 }

 to {
  opacity: 1;
  top: 0;
 }

}
.header_in_dop{
    background: #F3F3F3;
    position: fixed;
    animation-name: fadeInZp;
    animation-duration: 1s;
    z-index: 100;
}
.header_in_dop:before{
  content: "";
  -webkit-box-shadow: 0 5px 8px rgb(48 80 117 / 20%);
    box-shadow: 0 5px 8px rgb(48 80 117 / 20%);
    position: absolute;
    top: 0;
    right: -10000px;
    bottom: 0;
    left: -10000px;
    z-index: -2;
}
 #header_pages{
   width: 100%;
   position: fixed;
 }
#header_pages a{
  color: var(--body-color);
}
#header_pages .call_back{
  color: var(--button-bg-color);
  transition: 600ms ease;
}
#header_pages .call_back:hover{
  color: #fff;
}
.content{
  margin-bottom: 1rem;
}
.header_wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navLogo{
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.9em;
  font-weight: 700;
}
.navLogo img{
  width: 73px;
  padding: 0;
}
.navLogo a{
  display: flex;
  background: none;
  align-items: center;
  padding: 0px;
  color: #fff;
}
.mobile_phone_top{
  display: none;
}
.nav_menu{
  display: flex;
  align-items: center;
  flex-direction: row;
  text-align: center;
}
.nav_menu li{
  padding: 1em 0.5em 0 0.5em;
  font-size: 1rem;
}
.nav_menu a{
    color:#ffff;
    font-weight:600;
    -webkit-transition: all 0.2s ease-in;
    text-transform:uppercase;
}
.nav_menu a:hover{
  color: var(--button-bg-color)!important;
  background-image: none !important;
}
.nav_menu a::after {
    display: block;
    margin: 0 auto;
    width: 0;
    height: 2px;
    background-color: var(--button-bg-color);
    content: "";
    opacity: 0;
    -webkit-transition: width 0.6s, opacity 0.8s;
    -moz-transition: width 0.6s, opacity 0.8s;
    transition: width 0.6s, opacity 0.8s;
}
.nav_menu a:hover::after,
.nav_menu a:focus::after {
  opacity: 1;
  width: 100%;
}
.navTrigger {
    display: none;
}
.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    right: 30px;
    top: 0;
    bottom: 0;
}
.navTrigger i {
    background-color: #fff;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}
#navTrigger_pages i{
  background-color: var(--body-color) !important;
}
#nav_pages a:hover{
  color: var(--button-bg-color) !important;
}
.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}
.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}
.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}
@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}
@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}
@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}
@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}
@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}
@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}
@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}
@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}
@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}
@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}
@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}
@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}
@keyframes navLinkFadeIn{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}
@keyframes navLinkFadeOut{
    from{
        opacity: 1;
        transform: translateX(0px);
    }
    to{
        opacity: 0;
        transform: translateX(50px);
    }
}
.phone_top{
  display: flex;
  flex-direction: column;
  font-weight: 600;
  margin: 0 0 20px 0;
}
.phone{
  color: #fff;
}
.call_back{
  text-align: center;
  border: 1px solid;
}
.call_back:hover{
  color: #ffff;
}
.hero{
  background: url(../img/bg_hero.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  height: auto;
  color: #fff;
  background-color: #222;
}
.hero .inner{
  background: linear-gradient(131deg, rgba(32,10,74,0.85) 8.79%, rgba(63,39,173,0.85) 54.53%, rgba(92,66,222,0.85) 91.52%);
  height: 100%;
  box-sizing: border-box;
  padding: 7em 0 5em 0;
}
.hero h1{
  font-size: calc(2.5rem + 8 * (100vw - 320px) / 880);
}
.hero p{
  font-size: calc(1.2rem + 6 * (100vw - 320px) / 880);
  padding: 1em 0 1em 0;
}
a.more_button {
  max-width: 314px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  background: var(--button-bg-color);
  padding: 0.5em 0.8em;
  border-radius: 3px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 5px;
}
a.product_btn{
  font-size: 1rem;
  margin-top: 10px;
}
a.form {
  width: 100%;
}
a.more_button:hover{
  background: rgba(255, 0, 131,1);
  -webkit-appearance: none;
  -moz-box-shadow: 0 15px 30px rgba(255, 0, 131, 0.5);
  -webkit-box-shadow: 0 15px 30px rgb(255 0 131 / 40%);
  box-shadow: 0 15px 30px rgb(255 0 131 / 40%);
}
a.more_button:active{
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  box-shadow: 0 0 0 rgb(26 26 26 / 50%);
}
button.more_button{
  max-width: 314px;
  width: 100%;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  background: var(--button-bg-color);
  text-transform: uppercase;
  padding: 0.5em 0.8em;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-align: center;
  border: none;
}
button.more_button:hover{
  background: rgba(255, 0, 131,1);
  -webkit-appearance: none;
  -moz-box-shadow: 0 15px 30px rgba(255, 0, 131, 0.5);
  -webkit-box-shadow: 0 15px 30px rgb(255 0 131 / 40%);
  box-shadow: 0 15px 30px rgb(255 0 131 / 40%);
}
button.more_button:active{
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  box-shadow: 0 0 0 rgb(26 26 26 / 50%);
}
.label{
  display: flex;
  padding-top: 2em;
  flex-wrap: wrap;
}
.label_mobile{
  display: none;
}
.label span{
  font-size: 0.9em;
  font-weight: 700;
  padding-left: 0.8em;
}
.label a{
	color:#fff;
}
.label_mobile a{
	color:#fff;
}
.label_mobile span{
	font-size: 0.9em;
    font-weight: 700;
    padding-left: 0.8em;
}
.label_iteam{
    padding-right: 2rem;
    padding-bottom: 1rem;
}
.label_iteam svg{
	margin-top:8px;
}
.video {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease-out;
}
.video-play-button {
  position: absolute;
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}
.fa-play-circle {
  position: absolute;
  font-size: 5rem;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: all 200ms;
  color: #fff
}
.fa-play-circle:hover{
  color: var(--button-bg-color);
}
.video a:hover{
    background-image: none !important;
}
.video img {
  position: relative;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
}
.catalog{
  width: 90%;
  margin: 0 auto;
  margin:-3em auto 0em;
  background: #fff;
  box-shadow: 0rem 0.3rem 1rem 0.1rem rgb(0 0 0 / 35%);
  border-radius: 20px;
}
.catalog_content{
  padding: 2.38em 0 2.2em 0;
  justify-items: center;
  display: grid;
  grid-template-columns: repeat( auto-fill, minmax(300px, 1fr) );
  gap: 25px;
  -webkit-animation: slideY 0.6s both;
  animation: slideY 0.6s both;

}
.catalog_content_text{
	padding-top: 3rem;
}
.catalog_content_text_p{
	padding-top: 1rem;
}
.catalog_content_text a{
  text-decoration: underline;
}
.catalog_content_text span{
  color: rgba(63, 39, 173, 1);
  font-weight: 500;
}
.catalog_content_text .fas{
  color: rgba(63, 39, 173, 1);
}
.catalog_card_content{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: #F3F3F3;
  border-radius: 5px;
  width: calc(25% - 20px);
  min-width: 260px;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
}
.catalog_card_content img{
  max-width: 99px;
  margin: 0 auto;
  height: 80px;
}
.catalog_card_content h3{
  color: var(--body-color);
  font-size: 0.9rem;
  margin-top: 5px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: uppercase;
  height: 80px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.catalog-table{
  font-size: 0.78rem;
  margin: 1rem 0;
}
.catalog-table th, .catalog-table td {
    padding: 0.5rem;
    border: 1.5px solid #525252;
  }
.catalog_card_content_price{
  margin: 10px 0 0 0;
  text-align: center;
}
.catalog_card_content_price span{
  color: #3F27AD;
  font-size: 1rem;
  font-weight: 600;
}
.working_card{
  -webkit-animation: slideY 0.6s both;
  animation: slideY 0.6s both;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  justify-content: space-evenly;
}
.working_card_item{
    width: 320px;
    padding: 15px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 1px 1px 7px 5px rgb(27 19 57 / 8%);
    margin: 10px;
}
.working_card_item_image{
  flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
}
.working_card_item_content{
	padding-left: 10px;
	font-size: 1.2rem;
	line-height: 1.5;
}
.center{
  text-align: center;
}
.advantages_cards{
  display: flex;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
  text-align: center;
}
.advantages_cards_wrapper{
  position: relative;
  width: 15%;
  box-sizing: border-box;
  min-width: 150px;
  text-align: center;
  vertical-align: middle;
  margin: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.advantages_cards_icon{
  padding-bottom: 10px;
  max-width: 107px;
}
.advantages_cards_content{
  font-weight: 500;
}
.frames{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.frame{
  border: solid 3vmin;
  border-image:linear-gradient(131deg, rgb(32,10,74), rgba(63,39,173), rgba(92,66,222) ) 1;
  border-radius: 2px;
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 25%) inset, 0 5px 10px 5px rgb(0 0 0 / 25%);
  box-sizing: border-box;
  display: inline-block;
  margin: 40px 20px;
  height: 100%;
  padding: 3vmin;
  position: relative;
  text-align: center;
}
.frame a{
  padding: 0;
}
.sert_1{
  max-width: 386px;
  cursor: zoom-in;
}
.sert_2{
  max-width: 233px;
  cursor: pointer;
}
.si_number{
  display: flex;
  margin: 40px 0;
}
.si_number_card{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.si_number_card_circle{
  position: relative;
  flex-shrink: 0;
  width: 71px;
  height: 71px;
  border: 3px solid #fff;
  border-radius: 9px;
  background-color: #fff;
  box-shadow: 1px 1px 7px 2px hsl(0deg 0% 100% / 30%);
  color: #1e2457;
  margin-bottom: 10px;
}
.si_number span{
  font-size: 2em;
  font-weight: 700;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: linear-gradient(131deg, rgba(32,10,74,1) 8.79%, rgba(63,39,173,1) 54.53%, rgba(92,66,222,1) 91.52%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.si_number_card p{
  text-align: left;
}
.rus_akred{
    margin: 30px 0 30px 0;
    display: flex;
    justify-content: center;
}
.rus_akred img{
  max-width: 190px;
}
.blank_blank{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 35px 0;
}
.blank_blank_circle{
  background-color: #EBEEF1;
  width: 260px;
  height: 260px;
  position: relative;
  border-radius: 50%;
  margin-bottom: 25px;
}
.blank_blank_circle img{
  position: absolute;
  top: -4%;
  left: 7%;
  max-width: 221px;
}
.blank_form{
  margin: 0 25px;
  max-width: 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
}
.blank_form a{
  font-weight: 600;
  text-decoration: underline;
}
.karta_img{
  align-self: center;
  height: auto;
  margin-bottom: 5rem;
  max-width: 500px;
  position: absolute;
  width: 100%;
}
.karta_content{
  padding-top: 180px;
  position: relative;
}
.online_form{
  background-color: #EBEEF1;
  border-bottom: 3px solid rgba(23, 59, 95, 0.3);
}
.online_form_container{
  width: 100%;
  max-width: 1440px;
  margin: 0px auto;
  /* padding: 0px 60px; */
}
.form_inputs{
  display: flex;
}
.field_input{
  margin: 0px 20px 0px 0px;
  max-width: 314px;
  width: 100%;
  display: block;
}
.form_panel{
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  height: 50px;
  outline: none;
  padding: 0px 17px 0px 13px;
  border: none;
  border-radius: 5px;
}
.title_form{
  font-weight: 600;
  font-size: 28px;
  margin: 0px 0px 26px;
}
.file{
  padding: 45px 0px 65px 222px;
  background: url(../img/file.svg) 19px 45px no-repeat;
}
.footer_header{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer_header h3{
  font-weight: 700;
}
.footer_header img{
  padding-right: 1.5rem;;
}
.block_footer{
  display: flex;
  margin: 2rem 0;
}
.footer_header{
  margin-bottom: 2rem;
  margin-left: 12px;
}
.icon_footer{
  margin-right: 1rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  background-color: #ffff;
  font-size: 1.5rem;
}
.icon_footer i{
  display: inline-block;
  vertical-align: middle;
  color: var(--button-bg-color);
  line-height: 60px;
}
.footer_content span{
  color: #ADADAD;
  font-size: 0.9rem;
}
.footer_content a{
  padding: 0;
  margin: 0 !important;
}
#map{
  width: 100%;
  height: 100%;
}
.ymaps-2-1-79-ground-pane{
  filter: grayscale(100%);
}
.footer_end{
  background-color: #EBEEF1;
  margin: 4em 0 0em 0;
}
.footer_end_content{
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer_end_content a{
    color: var(--body-color);
    font-weight: 600;
}
.order h1{
  text-align: center;
  margin: 0 0 2rem 0;
}
#zayvka{
  display: flex;
  flex-direction: column;
  max-width: 38em;
  padding: 3em 3em 3em 3em;
  margin: 0em auto;
  background-color: #fff;
  border-radius: 4.2px;
  box-shadow: 0px 3px 10px -2px rgb(0 0 0 / 20%);
}
/*Page Contact-form*/
#zayvka input[type="text"], #zayvka input[type="email"], #zayvka input[type="tel"], #zayvka input[type="url"], #zayvka textarea, #zayvka button[type="submit"] {
  font:400 12px/16px "Open Sans", Helvetica, Arial, sans-serif;
}
#zayvka {
	background:#F9F9F9;
	width: 80%;
	padding-bottom: 30px;
}
#zayvka h3 {
	color: rgba(255, 0, 131,1);
	display: block;
	font-size: 30px;
	font-weight: 400;
}
#zayvka h4 {
	margin:5px 0 15px;
	display:block;
	font-size:16px;
	font-weight: 500;
	line-height: 1.8;
}
fieldset {
	display: flex;
	justify-content: center;
	border: medium none !important;
	margin: 10px 0;
	min-width: 100%;
	padding: 0;
	width: 100%;
}
#zayvka input[type="text"], #zayvka input[type="email"], #zayvka input[type="tel"], #zayvka input[type="url"], #zayvka textarea {
	width:100%;
	border:1px solid #CCC;
	background:#FFF;
	margin:0 0 5px;
	padding:10px;
}
#zayvka input[type="text"]:hover, #zayvka input[type="email"]:hover, #zayvka input[type="tel"]:hover, #zayvka input[type="url"]:hover, #zayvka textarea:hover {
	-webkit-transition:border-color 0.3s ease-in-out;
	-moz-transition:border-color 0.3s ease-in-out;
	transition:border-color 0.3s ease-in-out;
	border:1px solid #AAA;
}
#zayvka textarea {
	height:100px;
	max-width:100%;
  resize:none;
}
#zayvka button[type="submit"] {
	cursor:pointer;
	width:100%;
	border:none;
	color:#FFF;
	margin:1rem 0;
	padding:10px;
	font-size:15px;
}
#zayvka button[type="submit"]:hover {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
  background: rgba(255, 0, 131,1);
}
#zayvka button[type="submit"]:active {
  box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5);
}
#zayvka input:focus, #zayvka textarea:focus {
	outline:0;
	border:1px solid #999;
}
::-webkit-input-placeholder {
 color:#888;
}
:-moz-placeholder {
 color:#888;
}
::-moz-placeholder {
 color:#888;
}
:-ms-input-placeholder {
 color:#888;
}
.form_radio{
  display: flex;
  align-items: center;
  margin: 0 0 5px;
  padding: 10px;
  justify-content: space-between;
}
.form_radio_choise{
  display: block;
}
.form_radio_choise input{
  margin-right: 0.5rem;
}
.form_radio_choise_label{
  display: inline-block;
  margin-left: 1rem;
}
.success_page {
        width: 80%;
        max-width: 38em;
        background: white;
        padding: 60px;
        border-radius: 4px;
        display: inline-block;
        margin: 0 auto;
        text-align: center;
        box-shadow: 0px 3px 10px -2px rgb(0 0 0 / 20%);
      }
.success_page i{
  color: rgba(255, 0, 131,1);
  font-size: 100px;
  line-height: 200px;
  margin-left:-15px;
}
.error_page {
        width: 80%;
        max-width: 38em;
        background: white;
        padding: 60px;
        border-radius: 4px;
        display: inline-block;
        margin: 0 auto;
        text-align: center;
        box-shadow: 0px 3px 10px -2px rgb(0 0 0 / 20%);
      }
.error_page i{
  color: red;
  font-size: 100px;
  line-height: 200px;
  margin-left:-15px;
}
@media screen and (max-width:1200px) {
  .wrapper{
       font-size: 16px;
  }
  .label_iteam {
    padding-top: 20px;
  }
  .nav_menu li{
  padding: 1em 0.5em 0 0.5em;
  font-size: 0.8rem;
  }
}
@media screen and (max-width:992px) {
  .wrapper{
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
  }
  .phone_top{
  display: none !important;
  }
  .mobile_phone_top{
  display: flex;
  flex-direction: column;
  font-size: 34px;
  margin: 0 10px 0 10px;
  }
  .mobile_phone_top a{
  color: #fff;
  }
  .mobile_phone_top a:hover{
  background: none;
  color: var(--button-bg-color);
  }
  .navTrigger {
  display: block;
  margin-right: 20px;
  }
  .nav_menu {
  position: absolute;
  right: 0px;
  height: 100vh;
  top: 89px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  flex-direction: column;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.5s ease-in;
  background: linear-gradient(131deg, rgba(32,10,74,1) 8.79%, rgba(63,39,173,1) 54.53%, rgba(92,66,222,1) 91.52%);
  }
  .nav_menu li a {
  display: flex;
  margin: 15px 15px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  }

  .nav_menu a:hover::after, .nav_menu a:focus::after {
  opacity: 1;
  width: 0;
  }
  .nav_menu-active{
  transform: translateX(0%);
  }
  #nav_pages a{
    color: #fff !important;
  }
  .si_number_card{
  display: block;
  width: 50%;
  margin: 20px 0 20px 0px;
  }
  .video{
  padding-top: 30px;
  }
  .file{
  padding-left: 30px;
  background-size: 25px;
  background-position: 0px 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px){
    .label {
      display: none;
    }
    .label_mobile{
      display: flex;
      flex-wrap: wrap;
      width: 100%
    }
    .label_mobile img{
      padding-right: 1rem;
    }
}
@media screen and (max-width: 788px){
    .blank_form{
      margin-bottom: 1rem;
    }
  }
@media screen and (max-width: 768px) {
      .working_card{
        margin-top: 20px;
      }
      .label{
        padding-top: 1em;
      }
      .form_inputs{
        flex-direction: column;
      }
      .field_input{
        margin: 0px 0px 18px;
      }
    }
@media screen and (max-width:576px){
    .si_number_card{
      width: 100%;
    }
    .catalog_card_content h3{
    	font-size:0.8rem;
    }
    .label{
      padding-top: 1em;
    }

  }
  #overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  #overlay img {
    margin: 0;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 5px;
  }
  @media screen and (min-width: 768px) {
    #overlay img {
     width: auto;
     height: 100vh;
    }
  }
  @media screen and (min-width: 1200px) {
    #overlay img {
     width: auto;
     height: 100vh;
    }
  }

  #nextButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
  }
  #nextButton:hover {
    opacity: 0.7;
  }
  @media screen and (min-width: 768px) {
    #nextButton {
      font-size: 3em;
    }
  }

  #prevButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
  }
  #prevButton:hover {
    opacity: 0.7;
  }
  @media screen and (min-width: 768px) {
    #prevButton {
      font-size: 3em;
    }
  }
  #exitButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    position: absolute;
    top: 15px;
    right: 15px;
  }
  #exitButton:hover {
    opacity: 0.7;
  }
  @media screen and (min-width: 768px) {
    #exitButton {
      font-size: 3em;
    }
  }
  /*Виджет*/
.wptwa-container *{
    -webkit-box-sizing:border-box;
    -khtml-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -ms-box-sizing:border-box;
    box-sizing:border-box;
}
.wptwa-container{
    position:fixed;
    top:auto;
    left:auto;
    bottom:50px;
    right:18px;
    font-size:16px;
    line-height:1.4em;
    max-width:400px;
    max-height:100%;
    z-index:100000;
}
.wptwa-container.left-side{
	right:auto;
	left:0;
}
.wptwa-container p:first-child{
	margin-top:0;
}
.wptwa-container p:last-child{
	margin-bottom:0;
}
.wptwa-container a{
	text-decoration:none;
}
.wptwa-container .wptwa-clearfix:before,
.wptwa-container .wptwa-clearfix:after{
	content:'';
	display:block;clear:both;
}
.wptwa-container .wptwa-box{
    text-align:left;
    background:white;
    border:1px solid #f5f5f5;
    box-shadow:3px 3px 3px rgba(0, 0, 0, .02);
    padding:20px 20px 10px;
    margin:0 auto;
    position:relative;
    border-radius:6px 6px 0 0;
    display:none;
    transition:all .2s;
}
.wptwa-container .wptwa-box.show{
	display:block;
}
.wptwa-container .wptwa-box:before,
.wptwa-container .wptwa-box:after{
        content:'';
        position:absolute;
        bottom:-7px;
        right:22px;
        width:13px;
        height:13px;
        background:white;
        transform:rotate(45deg);
        z-index:1;
        border:1px solid #f5f5f5;
        box-shadow:3px 3px 3px rgba(0, 0, 0, .02);
}
.wptwa-container.left-side .wptwa-box:before,
.wptwa-container.left-side .wptwa-box:after{
	right:auto;
	left:22px;
}
.wptwa-container .wptwa-box:before{
	z-index:2;
	box-shadow:none;
	background:white;
	transform:none;
	bottom:0;
	width:19px;
	right:17px;
	border-color:white;
}
.wptwa-container .wptwa-box ul{
	list-style:none;
	padding:0;
	margin-top:15px;
}
.wptwa-container .wptwa-account{
	color:inherit;
	display:block;
	padding:10px 10px;
	margin:0 -30px -1px;
	border-radius:10px;
	position:relative;
	z-index:3;
}
.wptwa-container .wptwa-account:not(:last-child):after{
	content:'';
	display:block;
	background:#f5f5f5;
	height:1px;
	width:100%;
	max-width:calc(100% - 20px);
	position:absolute;
	bottom:0;
	left:10px;
}
.wptwa-container .wptwa-account:first-child{
	margin-top:-10px;
}
.wptwa-container .wptwa-account:last-child{
	margin-bottom:0;
	border-bottom:none;
}
.wptwa-container .wptwa-account:hover{
	background:#E0E0E0;
	border-color:transparent;
}
.wptwa-container .wptwa-account .wptwa-face{
	width:40px;
	height:40px;
	margin:0 auto;
	position:relative;
}
.wptwa-container .wptwa-account .wptwa-face.no-image:after{
	content:none;
}
.wptwa-container .wptwa-account .wptwa-info{
	position:relative;
	top:2px;color:inherit;
	float:right;
	width:calc(100% - 55px);
}
.wptwa-container .wptwa-account .wptwa-title{
	font-size:11px;
	line-height:100%;
	opacity:.5;
}
.wptwa-container .wptwa-account .wptwa-name{
	font-weight:bold;
	display:block;
}
.wptwa-container .wptwa-account .wptwa-name:only-child{
	position:relative;
	top:10px;
}
.wptwa-container .wptwa-account img{
	width:100%;
	height:100%;
	display:block;
	border-radius:50px;
	overflow:hidden;
	position:relative;
	z-index:2;
	
}
.wptwa-container .wptwa-handler{
	display:inline-block;
	vertical-align:top;
	text-decoration:none;
	color:white;
	background:#fff;
	padding:15px 15px;
	border-radius:50px;
	line-height:120%;
	white-space:nowrap;
	text-align:center;
	transition:all .3s;
	position:relative;
	margin:20px 20px 60px 20px;
	z-index: 3;
	z-index:3;
}
.wptwa-container .circled-handler .wptwa-handler{
	width:60px;
	height:60px;
	box-shadow:0 1px 6px rgba(0, 0, 0, .06), 0 2px 20px rgba(0, 0, 0, .16);
}
.wptwa-container .circled-handler .wptwa-handler:hover{
	box-shadow:0 2px 8px rgba(0, 0, 0, .09), 0 4px 20px rgba(0, 0, 0, .24);
}
.wptwa-container .wptwa-handler:hover{
	box-shadow:3px 3px 3px rgba(0, 0, 0, .05);
	cursor:pointer;
}
.wptwa-container .wptwa-box ul a{
	padding:7px 14px;
	background:#445963;
}
.wptwa-container .wptwa-handler img{
	width:28px;
	fill:#fff;
	display:inline-block;
	vertical-align:top;
	margin:0;
	position:absolute;
	top:50%;
	left:50%;
	transform:translateY(-50%) translateX(-50%) scale(1.7);
}
/*.wptwa-container.circled-handler svg{*/
/*	margin:0;*/
/*	position:absolute;*/
/*	top:50%;*/
/*	left:50%;*/
/*	transform:translateY(-50%) translateX(-50%) scale(1.7);*/
/*}*/
/*.wptwa-handler i{*/
/*    font-size:28px;*/
/*}*/
.pulse-button {
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.5);
  -webkit-animation: pulse 2.5s infinite;
}
.pulse-button:hover {
  -webkit-animation: none;
}
@-webkit-keyframes pulse {
  0% {
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  70% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);0);
  }
  100% {
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
/*Виджет end*/

/*page service*/
  .hero_service{
    background: url(../img/desktop.svg) no-repeat;
    background-size: cover;
    background-position: bottom;
    margin-bottom: 20px;
  }

  .wave-bg {
    padding-bottom: 80px;
    background-image: url(../img/bg-element-waves.png);
    background-position: 0 60%;
    background-size: contain;;
    background-repeat: no-repeat;
}

.blue {
    padding-top: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    background-color: #1e2457;
    color: #fff;
}

.dotes{
    background: url(../img/dotes.svg) no-repeat;
    background-position: 100% 100%;
}
.wave-1{
    background: url(../img/waves-1.svg) no-repeat;
    background-position: 60%,0;
    background-size: cover;
}
.order_service2{
    padding: 8em 0 4em 0;
    margin:0;
}
.card_link:hover{
    background-image:none !important;
}
.success_wrapper{
    padding: 8em 0 4em 0;
    margin:0;
}
.home-zigzag-description li{
        list-style: disc;
}
/*-------------------------------------------
  -- Owl Carousel
-------------------------------------------*/
.owl-slider{
    margin: 50px 0;
}
.owl-carousel .owl-item img{
    cursor: grab;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.5;
    max-width: 100px;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  background-color: #000;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}

.owl-dots {
  text-align: center;
  padding-top: 15px;
}
.owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background-color: #ccc;
  margin: 0 3px;
}
.owl-dots button.owl-dot.active {
  background-color: #314359;
}
.owl-dots button.owl-dot:focus {
  outline: none;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}
#carousel span {
    font-size: 70px;
    position: relative;
    top: -5px;
}
.owl-nav button:focus {
    outline: none;
}

.contract{
    border-top: 3px solid rgba(23, 59, 95, 0.3);
    padding-top:50px;
}

    .dismissButton {
    background-color: #fff;
    border: 1px solid #dadce0;
    color: #1a73e8;
    border-radius: 4px;
    font-family: Roboto,sans-serif;
    font-size: 14px;
    height: 36px;
    cursor: pointer;
    padding: 0 24px;
}
.dismissButton:active {
    background-color: rgba(66,133,244,.16);
    border: 1px solid #d2e2fd;
    -webkit-box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}
.dismissButton:hover {
    background-color: rgba(66,133,244,.04);
    border: 1px solid #d2e3fc;
}
.popup-fade_allert:before{
    content: '';
	background: #000;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.7;
	z-index: 2;
}

#cookie_note{
    display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;
    max-width: 100%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    z-index: 99;
}

#cookie_note p{
    margin: 0;
    font-size: 0.7rem;
    text-align: left;
    color: black;
}

.cookie_accept{
    width:100%;
}
@media (min-width: 576px){
    #cookie_note.show{
        display: flex;
    }
}

@media (max-width: 575px){
    #cookie_note.show{
        display: block;
        text-align: left;
    }
}
