:root {
	--blue: #A7C5DF;
	--white: #fff;
	--gray: #F7F9FC;
	--black: #252525;
}

html{
  scroll-behavior: smooth;
}

body {
	background: #EEF2F5;
  font-family: "Mulish", serif;

}

.main_wrapper {
	width: 100%;
	max-width: 590px;
	margin: 0 auto;
}

*,
*:before, 
*:after {
	box-sizing: border-box;
}

.container {
	max-width: 590px;
	margin: 0 auto;
	padding: 7px 20px 7px 20px;
}



.header {
	
}

h1,h2,h3 {
	margin: 0;
	padding: 0;
}

.header_inner {
	padding: 15px 20px 20px 20px;
	/*height: 650px;*/
	background-color: var(--white);
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.header__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__logo {
	width: 102px;
	height: auto;
}

.header__nav ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style: none;
	font-size: 1.1rem;
	font-weight: 600; 
}

.header__nav ul > li {
	margin-right: 2.5rem;
}

.header__nav ul > li:nth-child(3) {
	margin-right: 2.5rem;
}

.header__nav-item a, .header__phone a {
	text-decoration: none;
	color: var(--black);
	cursor: pointer;
}

.header__phone a {
	display: flex;
	align-items: center;
}


.header__phone {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-mob {
	display: none;
}

/*Меню бургер*/

.nav-mob {
/*	display: flex;
	justify-content: flex-end;*/
	display: none;
}

.menu-mob {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 15px;
	background-color: #f8fafd;
	z-index: 55;
	transform: translateX(-100%);
	transition: transform 0.5s; 
}

.menu-mob ul {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 30%;
}

	.menu-mob ul > li {
    list-style-type: none; 
	}

	.menu-mob ul > a {
	    background-color: #2196F3;
	    text-decoration: none;
	    color: var(--white);
	    padding: 25px 70px; 
	    border-radius: 50px;
	    width: 80%;
	    margin-bottom: 10px;
	    text-align: center;
	    font-size: 1.2rem;
	}

.menu-mob.active {
	transform: translateX(0);
}

.menu-mob li {
	list-style-type: none; 
}

.menu-btn {
	width: 48px;
	height: 42px;
	position: relative;
	z-index:56;
	overflow: hidden;
}

.menu-btn span {
	background-color: #222222;	
	/*width: 45px;*/
	width: 30px;
	height: 3px;
	position: absolute;
	top: 50%;
	transition: all 0.5s;
}

.menu-btn span:nth-of-type(2) {
	top: calc(50% - 9px);
}
.menu-btn span:nth-of-type(3) {
	top: calc(50% + 9px);
}

/* Меняем гамбургер иконку, когда меню открыто */
.menu-btn.active span:nth-of-type(1) {
  display: none;
}
.menu-btn.active span:nth-of-type(2) {
  top: 50%;
  transform: translate(-10%, 0%) rotate(45deg);  
}
.menu-btn.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-10%, 0%) rotate(-45deg); 
}




.header_callback-btn {
	background-color: var(--blue);
	padding: 12px;
	color: var(--black);
}

.header_lang-btn {
	background-color: var(--black);
	padding: 4px;
	margin-left: 8px;
	color: var(--white);
}



.header_content_mob {
	margin-top: 5px;
	margin-bottom: 5px;
}

.title_white {
	font-size: 44px;
	font-weight: 500;
	color: var(--white);
	text-transform: uppercase;
}

.title_black {
	font-size: 44px;
	font-weight: 500;
	color: var(--black);
	text-transform: uppercase;
}

.title-h2 {
	font-size: 44px;
	font-weight: 500;
	color: var(--black);
}

.title-h3 {
	font-size: 25px;
	font-weight: 500;
	color: var(--black);
	line-height: 1.2;
}

.paragraph {
	font-size: 20px;
	font-weight: 600;
	color: #252525;
}

.white {
	color: var(--white);
}

.uppercase {
	text-transform: uppercase;
}



.header_mob {
	display: none;
}

.specifications-inner {
	display: flex;
	flex-direction: row;
	padding: 20px 0;
}

.specifications-inner-left, .specifications-inner-right {
	width: 48%;
}

.specifications-inner-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.specifications-item {
	font-size: 20px;
	font-weight: 500;
	color: var(--black);
	text-transform: uppercase;
	list-style: none;
	margin-bottom: 23px;
    border-top: 2px solid #000;
    padding: 15px 0 0 0;

    margin-right: 20px;
}

.specifications-item span {
	font-weight: 800;
}

.video-btn {
	display: inline-block;
	background-color: var(--blue);
	padding: 12px 16px;
	color: var(--black);

	font-size: 28px;
	font-weight: 500;
}

.specifications-inner-left a {
	display: inline-block;
	text-decoration: none;
}


.header_img-items {
	width: 100%;
	display: flex;
	justify-content: space-around;
	flex-direction: row;
}


.header_img-item img {
	width: 48px;
	height: 48px;
	margin-right: 10px;
}

.header_img-item {
	margin-right: 20px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.header_img-item p {
	font-size: 20px;
	font-weight: 600;
	color: var(--black);
	text-transform: uppercase;
}


.manipel_inner {
	background-color: var(--black);
	border-radius: 15px;
	padding: 40px 20px 0;

	height: 650px;
	overflow: hidden;
}

.manipel_img {
	position: absolute;
	bottom: -5px;
	width: 100%;
	left: 0;
	z-index: 1;
}

.manipel_img img, .manipel_img_mob img {
	width: 100%;
}


.manipel_inner p {
	width: 67%;
	font-size: 18px;
	font-weight: 600;
}

.manipel_inner p > span {
	font-weight: 800;
}

.manipel_content {
	position: absolute;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	bottom: 5.1vw;
}

.manipel_content-hours {
	display: flex;
	align-items: center;
}

.manipel_content-hours:nth-child(1) {
	margin-bottom: 20px;
}

.manipel_content-hours img {
	width: 65px;
	height: 65px;
	margin-right: 20px;
}

/*.manipel_content-title {
	font-size: calc(30px + 3vw);
	font-weight: 600;
}*/

.manipel_content-subtitle, .manipel_content-title {
	font-size: calc(35px);
	font-weight: 400;
}

.manipel_content-block {
	display: flex;
	flex-direction: column;
}

.manipel_img_mob {
	display: none;
}

.applicators_inner {
	display: flex;
	width: 100%;
	justify-content: space-between;
	padding-top: 20px;
	padding-bottom: 30px; 
}

.applicators_inner-item {
	width: 23%;
	background-color: #E0E9F1;
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	padding: 20px 20px 0 20px;
}

.applicators_item-title {
	font-size: 32px;
	font-weight: 500;
	color: #252525;
	margin-bottom: 10px;
}

.applicators_item-text {
	font-size: 14px;
	font-weight: 600;
	color: #252525;
}

.applicators_inner-img {
	width: 100%;
	overflow: hidden;
	display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.wavelength {
	position: relative;
}

hr.decorative {
	border: none;
	border-top: 2px	dashed var(--white);
	position: absolute;
	z-index: 3;
	right: 20px;
	left: 20px;
}

.wavelength_inner {
	background-color: var(--black);
	color: var(--white);
	border-radius: 15px;
	padding: 40px 20px 0;
	position: relative;
	overflow: hidden;
	padding-bottom: 40px;
}

.wavelength_item-img {
	position: absolute;
	bottom: 0;
	right: 10%;
	height: 100%;
	z-index: 1;
}

.wavelength_item-img_mob {
	display: none;
}

.wavelength_inner p {
	width: 60%;
}

.wavelength_inner-item {
	position: relative;
	width: 100%;
	padding-bottom: 7px;

	display: flex;
	justify-content: flex-start;
	margin-top: 50px;
	z-index: 2;
}

.wavelength_item-title {
	font-size: 44px;
	font-weight: 600;
	color: var(--blue);
	margin-right: 50px;
}

.wavelength_item-text {
	font-size: 20px;
	font-weight: 400;
	color: var(--white);
	display: flex;
	align-items: center;
}

.delivery_inner {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	min-height: 300px;
}

.delivery_inner-item {
	width: 49%;
	background-color: #E0E9F1;
	padding: 50px 10px 0 35px;
	border-radius: 12px;
}

.delivery_inner-item .title-h2 {
	line-height: 1.1;
	margin-bottom: 15px;
}

.delivery_inner-item .paragraph {
	margin-bottom: 25px;
}

.delivery-background .container img {
	width: 100%;

}

.delivery-background-img {
	background: url(../image/background-delivery.jpg);
	border-radius: 10px;
	height: 410px;
	background-repeat: no-repeat;
	background-size: 1400px 410px;
	background-position: 50% 50%;
}

.trust_inner {
	margin-top: 15px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.trust_inner-item {
	width: 23%;
	background-color: #E0E9F1;
	padding: 20px 10px 20px 20px;
	position: relative;
}

.trust_inner-item a {
	color: #107edc;
}

.trust_inner-item:nth-child(3) {
	padding-top: 235px;
}

.trust_img {
	width: 100%;
}

.trust_img_abs-1 {
	position: absolute;
	bottom: 0;
	width: 100%;
	right: 0;
}

.trust_img_abs-2 {
	position: absolute;
	 top: 0;
	width: 100%;
	right: 0;
}

.trust_item-title {
	font-size: 32px;
	font-weight: 600;
	color: #252525;
	margin: 10px 0 10px 0;
}

.trust_item-text {
	font-size: 16px;
	font-weight: 500;
	color: #252525;
}

.trust_item-text span {
	font-size: 16px;
	font-weight: 800;
	color: #252525;
	text-transform: uppercase;
}

.trust_icone {
	width: 50px;
	height: 50px;
}

.trust_inner-content {
	background-color: #E0E9F1;
}

.feedback {
	margin: 20px 0;
	width: 100%;
}

.feedback_inner {
	display: flex;
	flex-direction: column; 
	justify-content: space-between;
	border-radius: 10px;
	background-color: #e0e9f1;
	padding: 50px 35px 0 35px;
}

.feedback_inner-left, .feedback_inner-right {
	width: 100%;
}

.feedback_inner-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.feedback_inner-left > .title-h2 {
	line-height: 1.2;
	margin-bottom: 5px;
	text-transform: uppercase;
	font-size: 32px;
}

.feedback_inner-left > .title-h3 {
	font-size: 25px;
}

.feedback_inner-right-form > .title-h3 {
	text-transform: uppercase;
}

.feedback_inner-left > .text-p, .feedback_inner-right-form > .text-p {
	line-height: 1.5;
	font-size: calc(0.65rem + 0.75vw);
	font-weight: 400;
}

.feedback_inner-right {
	display: flex;
	justify-content: center;
	padding: 25px 0;
}

.feedback_inner-right-form {
	background-color: var(--white);
	width: 80%;
	border-radius: 10px;
	text-align: center;
	padding: 20px 15px;
}

.feedback_inner-right form {

}







#contact-form {
}

#contact-form fieldset {
	border: none; 
	display: flex;
	flex-direction: column;
	align-items: center;
}

#contact-form fieldset > input {
    width: 80%;
    height: 50px;
    border: solid 1px #8e8e8e;
    padding: 3px 20px;
    margin-top: 17px;
    border-radius: 10px;
}

#contact-form fieldset > input:focus {
	outline: none;
}

#contact-form fieldset > input::placeholder {
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 8px;
    color: #595656;
}

input[type~="text"], input[type~="tel"] {
	font-size: 22px;
	font-weight: 500;
}


#contact-form fieldset > input:nth-child(4) {
	text-align: center;
 	margin: 20px auto;
	    font-size: calc(12px + 0.2vw);
    font-weight: 700;
	color: #252525;
	background-color: var(--blue);
	padding: 11px 0;
	text-decoration: none;
	border: none;
	text-transform: uppercase;
 }



 

 .questions_inner {
 	display: flex;
 	justify-content: space-between;
 	background-color: #A7C5DF;
 	border-radius: 10px;
 	padding: 0px 10px 0 35px;
 	flex-wrap: wrap;
 	color: var(--black);
 }

  .questions_inner a {
 	color: var(--black);
 	text-decoration: none;
 }

 .questions_inner-contacts {
 	padding-top: 4vw;
 	width: 48%;
 }

  .questions_inner-contacts > .title-h2 {
  	margin-bottom: 10px;
  }

  .questions_inner-contacts > .text-p {
  	font-size: calc(0.65rem + 0.7vw);
  	font-weight: 600;
  	margin-bottom: 25px;
  }

  .questions_inner-contacts > .text-p span {
  	font-weight: 800;
  	text-transform: uppercase;
  }

  .questions_map {
  	width: 48%;
  }

  .questions_map iframe {
  	width: 100%;
  	height: 100%;
  }

  .footer {
  	width: 100%;
  	color: var(--white);
  }

  .footer_inner {
  	display: flex;
  	justify-content: space-between;
  	flex-wrap: wrap;
  	background-color: #a7c5df;
  }

  .footer__logo {
	    width: 15vw;
        height: auto;
	}

  .copyright {
  	display: flex;
  	align-items: center;
  	max-width: 280px;
  	text-align: center;
    line-height: 1.3;
    font-size: calc(0.6rem + 0.5vw);
    font-weight: 500;
	color: #000;
  }

  .footer_social {
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	margin-right: 20px;
  }

   .footer_social img {
   	width: 28px;
   	height: auto;
   	margin-right: 10px;
  }
   
   .footer_social img:nth-child(4) {
   	margin-right: 0px;
  }






.blue-btn {
	display: inline-block;
	margin-top: 40px;
    width: 73%;
    text-align: center;
    padding: 14px 5px;
    background: var(--blue);
    border-radius: 50px;
    font-size: calc(0.5rem + 0.9vw);
    font-weight: 700;
    text-transform: uppercase;
    animation-name: cena-laser;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

a .blue-btn  {
	text-decoration: none;
}

@keyframes cena-laser {
    from {
        box-shadow: 0px 17px 20px rgba(66, 141, 255, 0.32);
        letter-spacing: 0.05em;
    }
    50% {
        box-shadow: 0px 5px 5px rgba(66, 141, 255, 0.32);
        letter-spacing: 0.1em;
    }
    to {
        box-shadow: 0px 17px 20px rgba(66, 141, 255, 0.32);
        letter-spacing: 0.05em;
    }
}




.bottom_a {
    position: fixed;
    bottom: 22px;
    margin: auto;
    width: 100%;
    padding: 0px 10px;
}

.uk-position-fixed {
    position: fixed !important;
    z-index: 10;
}

    .bottom_a a {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
    }

.svyaz {
    background-color: #0074fc;
    color: #fff;
    border: 0px;
    box-shadow: 0 2px 3px #adadad;
}

.svyaz {
        justify-content: center;
		align-items: center;
        position: fixed;
        z-index: 100;
        bottom: 100px;
        right: 40px;
        padding: 18px 32px;
        text-align: center;
        text-decoration: none;
        font-size: 0.8rem;
        line-height: 1.45;
    }

    .svyaz::after {
        animation-delay: 1.25s;
    }

    .svyaz::after, .svyaz::before {
        content: '';
        position: absolute;
        border: 2px solid #0074fc;
        left: -20px;
        opacity: 0;
        right: -20px;
        top: -20px;
        bottom: -20px;
        border-radius: 50%;
        animation: svyaz 2.5s linear infinite;
    }

.svyaz::after,
.svyaz::before {
  content: '';
  position: absolute;
 border: 2px solid #0074fc;
  left: -20px;
  opacity: 0;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: svyaz 2.5s linear infinite;
}

.svyaz::after {
  animation-delay: 1.25s;
}

@keyframes svyaz {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}




/*перенос стилей респонсив*/



/*1022*/
  .header__nav {
    display: none;
  }
  
  .nav-mob {
    display: block;
    margin-left: 20px;
  }

  .header_inner {
      background: none;
      height: auto;
  }

  .header__top_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .header_img {
    display: block;
    width: 100%;
    height: 650px;
    background: url(../image/background-header.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 100%;
  }



  .header {
    display: none;
  }

  .header_mob {
    display: block;
  }

  .specifications-inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .specifications-inner-left, .specifications-inner-right {
    width: 100%;
  }

  .specifications-inner-right {
    margin-top: 40px;
  }

  .specifications-item {
    margin-right: 0;
  }

/*  .manipel_inner {
      height: 950px;
  }

  .manipel_inner p {
      width: 60%;
  }

  .manipel_content {
    bottom: 22%;
  }

  .manipel_content-hours:nth-child(1) {
      margin-bottom: 56px;
  }

  .manipel_img {
    display: none;
  }

  .manipel_img_mob {
    display: block;
  }

  .manipel_img_mob {
    position: absolute;
    bottom: -5px;
    width: 96%;
    left: 0;
    z-index: 1;
  }*/

  .applicators_inner {
    flex-wrap: wrap;
  }

  .applicators_inner-item {
    width: 49%;
    margin-bottom: 20px;
  }

/*end 1022*/










  .header {
    display: none;
  }

  .header_mob {
    display: block;
  }




    .header_callback {
      display: none;
  }

    .title_black, .title_white, .title-h2 {
        font-size: 34px;
        text-align: center;
        font-weight: 700;
    }
	
    .title_black-h1 {
        font-size: 30px;
        text-align: center;
        font-weight: 500;
		font-family: ui-monospace;
		font-style: italic;
		text-transform: uppercase;
		margin-top: 10px;
		line-height: 1.4;
    }

    .title_black-h1 span {
        font-weight: 800;
		font-size: 28px;
		color: #1838b8;
		font-family: "Mulish", serif;
		font-style: normal;
    }
	
    .title_black-h1-s500 {
        font-weight: 800;
		font-size: 30px;
		color: #1838b8;
		font-family: "Mulish", serif;
		font-style: normal;
    }

    .title_black span {
        font-weight: 800;
		font-size: 28px;
		color: #696d87;
    }

    .header_rewards {
    	display: flex;
    	justify-content: center;
    	align-items: center;
    }

    .header_rewards img {
    	width: 85%;
    }

    .specifications-inner-right {
        margin-top: 5px;
    }

    .blue-btn {
    	    margin: 22px auto 15px;
        	display: block;
        	font-size: 24px;
        	width: 90%;
        	padding: 20px 5px;
    	}

  	.manipel {
  		margin-top: 15px;
  		background: url(../image/background-manipel_mob.jpg);
  		background-repeat: no-repeat;
  		background-size: cover;
  		border-radius: 15px;
  		padding: 10px 0px 0 20px;

  		height: 650px;
  		position: relative;
  		overflow: hidden;
  	}

	.manipel_inner {
		background-color: transparent !important;
	    color: var(--black);
	    border-radius: 15px;
	    padding: 0px 0px 0;
	    height: 650px;
	    position: relative;
	    overflow: hidden;
	}

	.manipel_items p {
		margin: 0;
		font-size: 25px;
	}

	.manipel_items p > span {
		text-transform: uppercase;
		font-weight: 700;
	}


	.manipel_item {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		margin-top: 12px;
	}

	.manipel_item img {
		width: 22px;
		height: 22px;
		margin-right: 20px;
	}

	.manipel_img_mob {
		bottom: -3px;
	}

  .manipel_content {
      /*bottom: 20%;*/
      bottom: 33%;
  }

  .manipel_content-hours:nth-child(1) {
      margin-bottom: 16px;
  }

	.link-btn {
		    text-decoration: none;
		}

	.manipel_all {
		position: absolute;
		bottom: -8px;
		z-index: 14;
		left: 0;
	}

	.manipel_all img {
		width: 100%;
	}

  .applicators_inner  {
    padding: 20px 0;
  }

	.applicators_inner .title_black {
		margin: 10px auto;
	}

	.applicators_text {
		font-size: 24px;
		font-weight: 500;
		/*margin-bottom: 10px;*/
	}

  .applicators_text span {
        font-weight: 800;
    }
	
.characteristics_text {
	font-size: 16px;
}
	

	.applicators_item {
		margin-top: 15px;
		padding: 15px 0 15px 0;
		background-color: #E0E9F1;
		width: 100%;
		display: flex;
		justify-content: flex-start;
		border-radius: 10px;
	}

	.applicators_img {
		width: 25%;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
	}

	.applicators_img img {
		width: 92px;
		height: auto;
	}

	.applicators_item-content {
		width: 75%;
	}

	.applicators_item-content h2 {
		margin: 7px;
		font-size: 36px;
		font-weight: 600;
	}

	.applicators_item-content p {
		margin: 7px;
		font-size: 20px;
		font-weight: 400;
	}

  .wavelanght {
    padding: 20px 0;
  }

	.wavelanght .title_black {
		/*margin-bottom: 20px;*/
	}

  .wavelanght-img {
    width: 50%;
    margin: 0 auto;
  }

  .wavelanght-img img {
    width: 100%;
    height: auto;
  }

  .applicators_text {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .interface_inner {
  	padding: 0 0 20px 0;
  }

  .interface_img {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .interface_img img {
    width: 100%;
    height: auto;
  }

  .ouroffer {
    margin: 20px 20px;
    background-color: #E0E9F1;
    padding-bottom: 20px;
    border-radius: 15px;
  }

  .ouroffer_inner {
    background-color: #E0E9F1;
  }

  .ouroffer_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*margin-top: 20px;*/
    padding: 30px 30px 0px;
    background-color: #E0E9F1;
    /*margin-bottom: 20px;*/
    border-radius: 20px;
  }

  .ouroffer_item-title {
    font-size: 30px;
    font-weight: 700;
    margin: 15px 0;
  }

  .ouroffer_img {
    margin-top: 20px;
    width: 100%;
    height: auto;
    border-radius: 50px;
  }

  .ouroffer_img img {
    width: 100%;
    height: auto;
  }

  .rewards_slider_06 {
    width: 50%;
    height: auto;
  }

    .slider__items {
      counter-reset: slide;
    }

    .slider__item {
      counter-increment: slide;
    }

    .slider__item>div::before {
      content: counter(slide);
      position: absolute;
      top: 10px;
      right: 20px;
      color: #fff;
      font-style: italic;
      font-size: 32px;
      font-weight: bold;
    }


/*INDICATOR_WRAPPER_CLASS
INDICATOR_ITEM_CLASS
INDICATOR_ITEM_CLASS_ACTIVE
*/

.slider__indicator {
    flex: 0 1 auto;
    width: 30px;
    height: 24px;
    margin-right: 3px;
    margin-left: 3px;
    /*background-color: #1318c600;*/
    /*background-color: #1318c6;*/
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    cursor: pointer;
}

  .choose {
    margin-bottom: 20px;
    }

  .choose > .container > .title_black {
    margin-bottom: 20px;
  }

  .accordion {
    transition: transform 1.5s; 
  }

  .tab-title {
    font-size: 32px;
    color: #000;
  }

  .tab-content {

  }

  .tab-content > .title_black {
    font-weight: 500;
  }

  .tab-content > .title_black span {
    font-weight: 700;
  }

  .income_table {
  	margin-top: 20px;
  	width: 100%;
  	font-size: 18px;
  	font-weight: 500;
  	border: 1px solid #000;
  	border-collapse: collapse;
  	color: #000;
  }

  .income_table span {
  	font-weight: 800;
  }

  .income_table td {
  	padding: 19px 8px;
  	border: 1px solid #000;
  }

  .income_tr-title {
  	font-weight: 800;
  	border-bottom: 3px solid #000;
  }

  .income_td-title {
  	background-color: #E0E9F1;
  }

  .center {
    text-align: center;
  }

  .left {
    text-align: left;
  }

  .bold {
    font-weight: 800;
  }

  .border-top-bold {
    border-top: 3px solid #000;
  }

  .border-bottom-bold {
    border-bottom: 3px solid #000;
    background-color: #fff;
  }

  .background-white {
    background-color: #fff;
  }

  .income_img {
    width: 100%;
    height: auto;
  }

  .income_img img {
    width: 100%;
    height: auto;
  }

  .questions-title {
        font-size: 25px;
        text-align: center;
        font-weight: 700;
  }

  .questions-txt {
        font-size: calc(8px + 0.8vw);
        text-align: center;
        font-weight: 700;
        margin: 25px auto;
  }








	.footer_inner {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.footer_social {
		margin-top: 20px;
		margin-bottom: 20px;
		width: 120px;
	}

	.footer__logo {
		margin: 20px 0px;
	    width: 16vw;
	    height: auto;
	}

	.questions_inner {
	    padding: 0px 10px 0 15px;
	}

	.popup-window {
	    width: 90%;
	}

	.btn-popup {
	    min-width: 200px;
	    width: 90%;
	}
/*конец стили респонсив*/
















































/*Попап*/

/* Popup  */
.popup-overlay {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgb(5 40 84 / 90%);
	z-index: 15;
	display: none;
	backdrop-filter: blur(3px);
}
.popup-window {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	visibility: hidden;
	z-index: 110;
	transition: all .3s;
	background: #223b7e;
	padding: 3em;
	border-radius: 10px;
	width: 35em;
	min-width: 15em;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.popup-window.active {
	transform: translate(-50%, -50%) scale(1);
	visibility: visible;
}
.close-popup {
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	display: block;
	overflow: visible;
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}
.close-popup::before, .close-popup::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 1px;
	display: block;
	width: 20px;
	height: 1px;
	border-bottom: 1px solid #fff;
	transform: rotate(45deg);
}
.close-popup::after {
	left: 0;
	transform: rotate(-45deg);
}


/* Buttons */
.btn-popup {
	margin-top: 30px;
	display:inline-flex;
	padding:0.9em 2em;
	position:relative;
	text-align:center;
	transition: 0.25s;
	justify-content: center;
	align-items: center;
	border-radius: 5rem;
	color:#fff;
	text-transform: uppercase;
	line-height: 1;
	min-width: 30rem;
	font-size: 1.6rem;
}
.btn-popup:hover {
	cursor:pointer;
	transition: 0.25s;
	background: #0b4793;
}
.btn-popup:active {
	background: #3b66d9;
}
.btn-popup--light-blue {
	background: #2e81ff;
}
.btn-popup--round {
	padding:1.8em;
	width:5rem;
	height:5rem;
}
.btn-popup--round .fa {
	color:#fff;
	font-size: 3rem;
}

.text--white {color:var(--white);}

.popup-title {
	margin-bottom: 1em;
    display: block;
    font-size: 1.5rem;
    line-height: 1.2;
	color: var(--white);
	text-transform: uppercase;
	text-align: center;
}

.popup__content p {
	color: var(--white);
	text-transform: uppercase;
	text-align: center;
}


.form-flex {
	display: flex;
	justify-content: center;
}

input, textarea {
    width: 100%;
    border: 1px solid transparent;
    outline: none;
    resize: none;
}

.input-wrapper input, .input-wrapper textarea {
    background-color: transparent;
    height: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 14px;
    display: block;
}

input, button, select {
    -moz-appearance: none;
    appearance: none;
}

input::placeholder {
  color: var(--white);
  font-size: 1.2em;
}

input:-webkit-autofill {
    transition: all 5000s ease-in-out 0s;
}


/*Акордеон*/

   .tab input, .tab-content { display: none; }
   .tab {
    font: 0.8rem/1.2 Arial, sans-serif; /* Параметры шрифта */
    border: 1px solid #e9eaec; /* Параметры рамки */
    border-radius: 3px; /* Скругляем уголки */
    color: #848994; /* Цвет текста */
    margin-bottom: 10px; /* Расстояние между пунктами */
   }
   .tab-title {
    padding: 10px; /* Поля вокруг текста */
    display: block; /* Блочный элемент */
    /*text-transform: uppercase; /* Все буквы заглавные */*/
/*    font-size: 32px;*/
    font-weight: 500; /* Жирное начертание */
    cursor: pointer; /* Вид курсора */
	text-align: center;
   }
   .tab-title::after {
    content: '+'; /* Выводим плюс */
    float: right; /* Размещаем по правому краю */
   }
   .tab-content {
    padding: 10px 5px; /* Поля вокруг текста */
   }
   .tab :checked + .tab-title {
    background-color: #50a2de; /* Цвет фона */
    border-radius: 15px 15px 0 0; /* Скругляем уголки */
    color: #fff; /* Цвет текста */
	text-align: center;
   }
   .tab :checked + .tab-title::after {
    content: '−'; /* Выводим минус */
   }
   .tab :checked ~ .tab-content {
    display: block; /* Показываем содержимое */
   }

  



  /* Слайдер */
      .slider__container {
      position: relative;
      /*margin-left: 200px;*/
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .slider {
    	width: 100%;
      /*max-width: 310px;*/
      /*flex: 0 0 310px;*/
      margin-left: unset;
      margin-right: unset;
    }

    /* дополнительные стили для этого примера */
    .slider__items {
      counter-reset: slide;
    }

    .slider__item {
      counter-increment: slide;
      display: flex;
      background-color: #eee;
    }

    .slider__item::before {
      content: counter(slide);
      position: absolute;
      top: 10px;
      right: 20px;
      color: #fff;
      font-style: italic;
      font-size: 32px;
      font-weight: bold;
    }

    .slider img {
      max-width: 100%;
      height: auto;
      border-radius: 20px;
    }

    .slider__thumbnails {
    	margin-top: 25px;
      /*position: absolute;*/
      display: flex;
      /*flex-flow: column wrap;*/
      align-content: center;
      /*width: 180px;*/
      /*left: -175px;*/
      /*top: 0;*/
      height: 100%;
      display: flex;
      /*flex-direction: row;*/
      justify-content: space-between;
    }

    .slider__thumbnails-item {
      line-height: 0;
      max-width: 31%;
      margin: 0 10px 10px 0;
      opacity: .5;
      border-radius: 8px;
      overflow: hidden;
      transition: 0.15s opacity ease-in-out;
    }

    .slider__thumbnails-item.active {
      opacity: 1;
    }

    .slider__thumbnails-item:hover {
      opacity: 1;
    }

    .slider__thumbnails-item>img {
      display: inline-block;
      width: 100%;
      height: auto;
    }




/*слайдер видео*/
.applicators_video{
	position: relative;
	width: 100%;
	height: 80vh;
}
.applicators_video video{
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.applicators_video .navigation{
	position: absolute;
	padding: 1px;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	width: 150px;
}

.applicators_video .navigation li{
	list-style: none;
	cursor: pointer;
	border-radius: 4px;
	margin: 1px;
	border: 1px solid #fff;
	opacity: 0.7;
}

.navigation li.active {
    border: 2px solid blue; /* Пример: синяя рамка для активной миниатюры */
    box-shadow: 0 0 10px rgba(0, 0, 255, 0.5); /* Пример: синяя тень */
}

.applicators_video .navigation li img{
	transition: 0.5s;
	width: 100px;
	height: 104px;
}
.applicators_video .navigation li img:hover{
	height: 120px;
	width: 120px;
	border: 2px solid #fff;
}







.applicators_video {
    position: relative; /* Необходимо для позиционирования кнопок внутри секции */
    /* Убедитесь, что у вас есть подходящие размеры и overflow для section */
}

.nav-button {
    position: absolute;
    top: 50%; /* Центрируем по вертикали */
    transform: translateY(-50%); /* Точная подстройка для вертикального центрирования */
    background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный черный фон */
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10; /* Убедитесь, что кнопки поверх видео */
    border-radius: 5px; /* Немного скругленные углы */
    transition: background-color 0.3s ease; /* Плавное изменение цвета при наведении */
}

.nav-button:hover {
    background-color: rgba(0, 0, 0, 0.7); /* Чуть темнее при наведении */
}

.prev-button {
    left: 10px; /* Отступ от левого края */
}

.next-button {
    right: 10px; /* Отступ от правого края */
}

/* Опционально: скрываем кнопки на мобильных, если основной способ навигации - свайп */
@media (max-width: 768px) {
    .nav-button {
 /*       display: none; */
    }
	
	.applicators_video .navigation li img {
		width: 60px;
		height: 64px;
	}
		
	.applicators_video .navigation li img:hover{
		height: 60px;
		width: 60px;
	}
}

@media (max-width: 480px) {
	.applicators_video .navigation li img {
		width: 30px;
		height: 34px;
	}
		
	.applicators_video .navigation li img:hover{
		height: 30px;
		width: 30px;
	}
}