@font-face {
    font-family: 'Geologica';
    src: url('../font/Geologica-Medium.eot');
    src: local('../font/Geologica Medium'), local('../font/Geologica-Medium'),
        url('../font/Geologica-Medium.eot?#iefix') format('embedded-opentype'),
        url('../font/Geologica-Medium.woff2') format('woff2'),
        url('../font/Geologica-Medium.woff') format('woff'),
        url('../font/Geologica-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geologica';
    src: url('../font/Geologica-Light.eot');
    src: local('../font/Geologica Light'), local('../font/Geologica-Light'),
        url('../font/Geologica-Light.eot?#iefix') format('embedded-opentype'),
        url('../font/Geologica-Light.woff2') format('woff2'),
        url('../font/Geologica-Light.woff') format('woff'),
        url('../font/Geologica-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geologica';
    src: url('../font/Geologica-ExtraLight.eot');
    src: local('../font/Geologica ExtraLight'), local('../font/Geologica-ExtraLight'),
        url('../font/Geologica-ExtraLight.eot?#iefix') format('embedded-opentype'),
        url('../font/Geologica-ExtraLight.woff2') format('woff2'),
        url('../font/Geologica-ExtraLight.woff') format('woff'),
        url('../font/Geologica-ExtraLight.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geologica';
    src: url('../font/Geologica-Regular.eot');
    src: local('../font/Geologica Regular'), local('../font/Geologica-Regular'),
        url('../font/Geologica-Regular.eot?#iefix') format('embedded-opentype'),
        url('../font/Geologica-Regular.woff2') format('woff2'),
        url('../font/Geologica-Regular.woff') format('woff'),
        url('../font/Geologica-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
:root {
  --white:#FFFFFF;
  --blue_light:#AAF0FF;
  --blue:#00ADD7;
  --blue2:#29BADD;
  --white:#FFFFFF;

  --dark:#101010;
  --dark_light:#343435;
  --dark_light2: #8C92A8;
  --violet:#8C3FFF;
  --green:#00CF57;

  --bg_light1:#F2F3F8;
  --bg_light2:#F2F3F8;

  --transition100: 100ms ease-in-out;
  --transition300: 300ms ease-in-out;

  --placeholder_color: #818181;
  --red_main: #E1554B;
    --red_accent: #C93E34;
	--red_bg: #F2E0DE;
}
* {padding: 0;	margin: 0; -webkit-tap-highlight-color:transparent;}
*, *:before, *:after {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
:focus, :active, a:focus, a:active {outline: none;}
html, body {
	width: 100%;
	min-height: 100%;
	font-size: 100%;
	line-height: 1;
	-webkit-text-size-adjust: none
}
input, button, textarea, select {
	font-family: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	border-radius: 0;
}
input[type="tel"]::placeholder,
input[type="mail"]::placeholder,
input[type="text"]::placeholder {
  font-size:16px;
  color: var(--placeholder_color);
  font-weight:300;
}
textarea::placeholder{
	 font-size:16px;
  color: var(--placeholder_color);
  font-weight:300;
}
[type="email"],
[type="tel"],
input[type="text"]{
  font-size:16px;
  font-weight:300;
}
input[type="text"].error:hover,
input[type="text"].error:focus,
input[type="text"].error{
	border: 1px solid var(--red_main);
	background: var(--red_bg);
	color: var(--red_main);
}
ul{list-style-type:none;}
button{border:none;}
input:error {box-shadow: none;}
input::-ms-clear {display: none;}
button::-moz-focus-inner {padding: 0; border: 0;}
button, .button, input[type="button"], input[type=submit] {cursor: pointer;}
button[disabled], input[disabled] {cursor: default;}
a, a:hover, a:visited {text-decoration: none;}
img {vertical-align: top; max-width: 100%;height: auto;}

*{
  scrollbar-width: thin;
  scrollbar-color: var(--dark) var(--bg_light2);
}

*::-webkit-scrollbar {
    width: 6px!important;
}
*::-webkit-resizer {
    background-repeat: no-repeat;
    width: 6px!important;
    height: 0px;
}

*::-webkit-scrollbar-button {
    background-repeat: no-repeat;
    width: 6px!important;
    height: 0px;
}

*::-webkit-scrollbar-thumb {
    background: var(--dark);
    border-width: 0px!important;
    border-color:var(--bg_light2);
    border-radius: 0px!important;
}

*::-webkit-scrollbar-track {
    background: var(--bg_light2);
}
section{overflow:hidden;}
.heading-h1{
	font-weight: bold;
    font-size: 32px;
    line-height: 42px;
}
.heading-h2{
	font-weight:bold;
    font-size: 26px;
    line-height: 34px;
}
.heading-h3{
	font-size: 20px;
	line-height:28px;
    font-weight:500;
}
.has-arrow-mini{
	gap:10px;
}
.arrow-mini {
    position: relative;
    width: 16px;
    min-width: 16px;
    height: 16px;
    overflow: hidden;
    display: flex;
}
.arrow-mini:after {
    left: -100%;
    bottom: -100%;
}
.arrow-mini:before {
    top: 0;
    right: 0;
}
.arrow-mini:after,
.arrow-mini:before {
    content: '';
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: var(--transition300);
    background-size: 100%;
}
.btn__blue .arrow-mini:after{
	background: url(/wp-content/themes/main/opros/image/arrow-up.svg) no-repeat;
}
.btn__blue .arrow-mini:before{
    background: url(/wp-content/themes/main/opros/image/arrow-up-white.svg) no-repeat;
}
.btn__black .arrow-mini:after{
	background: url(/wp-content/themes/main/opros/image/arrow-up.svg) no-repeat;
}
.btn__black .arrow-mini:before{
    background: url(/wp-content/themes/main/opros/image/arrow-up-white.svg) no-repeat;
}
.btn__white .arrow-mini:after{
	background: url(/wp-content/themes/main/opros/image/arrow-up.svg) no-repeat;
}
.btn__white .arrow-mini:before{
    background: url(/wp-content/themes/main/opros/image/arrow-up.svg) no-repeat;
}
body {
	font-family:'Geologica';
	font-size:16px;
	line-height:120%;
	font-weight:300;
	color: var(--dark);
}
header .btn__black{
	padding: 0 30px!important;
}
header .btn__blue:hover{
	background:var(--white)!important;
}
.header__logo img{
	max-height:60px;
}
.btn__blue,.btn__white,.btn__black{
	display:inline-flex;
	align-items:center;
	height: 60px;
    border-radius: 30px;
	text-transform: uppercase;
	transition: var(--transition300);
	white-space: nowrap;
	position:relative;
	overflow:hidden;
	font-size: 14px;
}
.btn__blue{
	background:var(--blue);
	color:var(--white);
	padding: 0 50px;
}
.btn__white{
	color:var(--dark);
	padding: 0 30px;
    display: inline-flex;
    align-items: center;
    background: var(--white);
    height: 60px;
    border-radius: 30px;
    text-transform: uppercase;
}
.btn__black{
	background:var(--dark);
	color:var(--white);
	padding: 0 30px;
	border:2px solid var(--dark);
}
.btn__soc{
	display: flex;
    align-items: center;
    background-color: var(--blue2);
    height: 40px;
    padding: 0 20px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 300;
    gap: 10px;
	position:relative;
	overflow:hidden;
	font-size: 14px;
}
.btn__soc:before,
.btn__white:before,
.btn__black:before,
.btn__blue:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 0;
    height: 0;
    -webkit-transition: width .3s ease, height .3s ease;
    transition: width .3s ease, height .3s ease;

}
.btn__soc:before,
.btn__blue:before{
    background:var(--blue_light);
	opacity:0.2;
}
.btn__black:before{
    background:var(--white);
	opacity:0.2;
}
.btn__soc:hover:before,
.btn__blue:hover:before,
.btn__white:hover:before,
.btn__black:hover:before {
    width: 120%;
    height: 300px;
}
.btn__black:hover{
	color:var(--dark);
	background:var(--white);
}

.text_blue_light{
	color:var(--blue_light);
}
.text_white{
	color:var(--white);
}
.container, header {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}
.container{
    overflow: hidden;
}
.container-visible{
	max-width: 1440px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}
.space-between {
    display: flex;
    justify-content: space-between;
}
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    padding: 60px;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    display: flex;
    z-index: 1001;
    visibility: hidden;
}
.popup_show {
    overflow-y: auto;
}
/* header start */

header{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding-top:10px;
	padding-bottom:10px;
}
.header__menu ul{
	display:flex;
	align-items:center;
}
.header__menu a{
	color:var(--dark);
	font-weight: 500;
	text-transform: uppercase;
}

.header__logo img{
	max-width:60px;
	height:auto;
}
.head-language:after{
	content:'';
	display:flex;
    width: 12px;
    height: 12px;
    background: url(/wp-content/themes/main/opros/image/arrow-mini-down.svg) no-repeat center;
}

.header-callme:after{
	content: '';
    display: flex;
    width: 24px;
    min-width: 24px;
    height: 24px;
    background: url(/wp-content/themes/main/opros/image/swiper_right-white.svg) no-repeat center;
    background-size: 100%;
}
/* header end */

/* footer start */
footer{
	background-color:var(--blue);
}
.footer_col4-bottom{
	display:flex;
	flex-direction:column;
}
.footer-links a{
	color:var(--white);
}
.footer__bottom{
	border-top:1px solid #0394B7;
}
.footer__bottom{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 40px;
}
.footer__bottom-left a{
	font-size:12px;
	color:var(--dark);
	margin-right:30px;
	transition: var(--transition100);
}
.footer__bottom-left a:hover{
	opacity:0.5;
}
.footer-title__text{
	font-weight:500;
	margin-bottom:30px;
	text-transform:uppercase;
}
.footer_col3 a span{
	font-weight: 100;
    opacity: 0.5;
}
.footer-links{
	display:flex;
	flex-direction:column;
}
.footer_col2 .footer-links{
	gap:20px;
}
.footer_col3 .footer-links{
	gap:10px;
}

footer .btn__white .burger__line{
	background: var(--dark);
}
footer .header-callme:after{
	background: url(/wp-content/themes/main/opros/image/swiper_right-dark.svg) no-repeat center;
}
.footer_col4-bottom{
	display:flex;
	flex-direction:column;
	margin-top:40px;
	gap: 30px;
    align-items: flex-end;
}
.footer_col4-bottom a{
	color:var(--dark);
}

.footer_col4-bottom a{
	font-weight:500;
}
/* footer end */
/* about section start*/
.section__about{
    background:var(--bg_light2);
	/* min-height:600px; */
}
.about__who{
    display: grid;
}
.about__who-left{
	display: flex;
    max-width: 500px;
    flex-direction: column;
    justify-content: center;
    gap: 80px;
}
.about__who-left{
	font-size:18px;
	line-height:24px;
}
.about__who-top{
	display:none;
	align-items:center;
	gap:30px;
	opacity: 0 !important;
}
.about__who-top>span:first-child{
	border-right:2px solid var(--blue);
	padding-right:30px;
}
.about__who-left p{
	margin-bottom:20px;
}
/* about section end*/
/* dis section start */
.about__who, .dis{
	gap:30px;
}
.dis-top-caption{
	/* background:var(--blue); */
	background-image: url(/wp-content/themes/main/opros/image/blue-bg.svg), linear-gradient(225deg, var(--blue2),  var(--blue));
	border-radius:20px;
	padding:50px 30px;
	color:var(--white);
	display:flex;
    justify-content: space-between;
	align-items: center;
}
.dis-top-caption .btn__black{
    background-image: radial-gradient(100% 100% at 50% 50%, var(--violet) 0%, var(--blue2) 100%);
    border-color: transparent!important;
    padding: 0 50px!important;
    height: 70px!important;
    font-weight: 500!important;
    border-radius: 40px!important;
	position:relative;
}
.dis-top-caption .btn__black:hover{
	border-color: transparent!important;
	color:var(--white)!important;
}


.dis-top-caption-left{
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width:480px;
}

.btn-question{
	background: var(--white);
    border-radius: 4px;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 62px;
	white-space: nowrap;
	cursor:pointer;
}
.dis-top{
	margin-bottom:80px;
	display:flex;
	flex-direction:column;
	gap:30px;
}
.dis-top-head-mini{
	text-transform:uppercase;
	color:var(--dark_light2);
}
.dis-top-more{
	color: var(--dark_light2);
    font-size: 14px;
}
.section__dis{
	background-color:var(--bg_light1);
}
.dis-bottom{
	display: flex;
    align-items: center;
    justify-content: space-between;
     gap: 20px;
    margin: 50px 0;
	background: var(--white);


	padding: 50px 30px;
    border-radius: 20px;
}
.dis{
	display: grid;
}
.dis-left{
	font-size:18px;
	line-height:24px;
}

.dis-left-head{
	margin-bottom:40px;
}
.dis-left {
    display: flex;
    max-width: 500px;
    align-items: center;
}
/* slider top start */
.slider__home{
	background-color:var(--dark);
}
/* .slider__home_bottom{
	background: url(/image/banner/head-bottom.png) no-repeat center;
    background-size: 100% 100%;
	padding-bottom: 6rem;
} */
.slider__caption-body {

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.slider__caption{
	display:flex;
	flex-direction:column;
}

.slider__caption{
	padding-left:2px;
}
.slider__dis-group span{
	background: #0F171F;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width:120px;
    border-radius: 30px;
	position:relative;
}
.slider__caption-btn a{
	position:relative;
}

.slider__dis-group span{
	animation: pulsecolor 3s cubic-bezier(0.9, 0.7, 0.5, 0.9) infinite;
}
.growing__body>div:first-child span{
	background: var(--bg_light1)!important;
	color:var(--dark)!important;
}
.growing__body>div:last-child span{
	position:relative;
	background: var(--violet)!important;
	margin:5px!important;
}
.growing__body>div:last-child span::after{
	background: var(--violet)!important;
	border-radius:50%!important;
}
.growing__body>div:last-child span::after,
.slider__dis-group span::after {
	animation: pulse 3s cubic-bezier(0.9, 0.7, 0.5, 0.9) infinite;
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--blue);
	border-radius:30px;
	z-index: -1;
}

.slider__caption-text>div{
	background:var(--dark);
	position:relative;
}
.slider__caption-text>div:nth-child(1){
	z-index:3;
}
.slider__caption-text>div:nth-child(2){
	z-index:2;
}
.slider__caption-text>div:nth-child(3){
	z-index:1;
}
/* fon sl start*/

/* fon sl end*/
.slider__thumb{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider__thumb::before {
	position: absolute;
  content: "";
  right:10px;
  top:0;
  width: 100%;
  height: 100%;
  /* background: var(--blue_light); */
  /* box-shadow: 0 4px 12px 0 var(--blue_light); */
  background: #010000;
  border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
  will-change: border-radius, transform, opacity;
  animation: sliderShape 5s linear infinite;
  display: block;
  z-index: -1;
  -webkit-animation: sliderShape 5s linear infinite;
}

/* slider top end */
/* growing start */
.growing-animation{
	display: flex;
    align-items: center;
	justify-content:space-between;
}
.growing-animation-right {
    width: 0;
    overflow: hidden;
}

.growing-carousel::-webkit-scrollbar {
	width: 0;
	height: 0;
}
.growing__top.container{
	overflow:visible;
}
.growing__top {
    position: relative;
}
.growing__case {
    min-height: 150px;
}

.growing-carousel{
	display: grid;
    grid-template-columns: repeat(5, 1fr);
	align-items:center;
	gap:30px;
	padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: absolute;
    top: 0;
    left: 0;
	overflow: auto;
}


.growing-carousel-item .growing-carousel-caption{
	font-size:24px;
	line-height:30px;
	padding:40px 30px;
	border-radius:20px;
}
.growing-carousel.start.aos-animate {
    animation-name: bswipe;
    animation-duration: 60s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
    animation-delay: 3s;
	animation-iteration-count: infinite;
}

.start .growing-animation-right{
	animation-name: bswipeitem;
	animation-duration:5s;
	animation-fill-mode: forwards;
	animation-timing-function:ease;
	animation-delay:7s;
}
.start .growing-carousel-item.animation {
    animation-name: bswipeitem2;
    animation-duration: 6s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: 7s;
}


.growing__top-all .light2 .growing-carousel-caption{
	background: var(--bg_light2);
	border:2px solid var(--bg_light2);
}
.growing__top-all .light .growing-carousel-caption{
	 background: var(--white);
	border:2px solid var(--bg_light2);
}
.growing__top-all .blue .growing-carousel-caption{
	background: var(--dark);
	border:2px solid var(--dark);
	color:var(--white);
}

.growing__body-container{
	display:flex;
	flex-direction:column;
	gap:10px;
}
.growing__body::-webkit-scrollbar{
	width: 0!important;
	height: 0!important;
}
.growing__body{
	display:grid;
	grid-template-columns: repeat(5, 1fr);
	gap:10px;
	align-items: flex-end;
	margin-top: 20px;
	margin-bottom: 0px;
	overflow-x: auto;
    overflow-y: hidden;
	padding-bottom:10px;
	-ms-overflow-style: none;
    scrollbar-width: none;
}
.growing__body .growing__col{
	min-width:270px;
}
.growing__graph-bottom{
	display:flex;
	flex-direction:column;
	position:relative;
	z-index:1;
	background: var(--white);
	gap: 15px;
	/* width: calc(100% - 30px); */
}
/* .growing__graph-bottom.aos-init.aos-animate{
	 margin-left: auto;
} */
.growing__graph-bottom .growing__graph-bottom-line{
	width:100%;
	height:3px;
	/* background:var(--blue); */
	background-image: linear-gradient(90deg, var(--blue) 0%, var(--violet) 100%);
	position:relative;
}
.growing__graph-bottom .growing__graph-bottom-line:after{
	content: '';
    display: flex;
    position: absolute;
    right: -12px;
    top: -15px;
    width: 34px;
    min-width: 34px;
    height: 34px;
    background: url(/wp-content/themes/main/opros/image/graph-right-violet.svg) no-repeat center;
    background-size: 100%;
}

.growing__graph-bottom .growing__graph-bottom-more{
	display:flex;
	align-items:center;
	justify-content:space-between;
}
.growing__col .growing__caption{
    border-radius: 20px;
    border: 2px solid var(--bg_light1);
    padding: 40px 20px;
	height: 100%;
	background:var(--bg_light2);
}

.growing__head{
	font-size: 20px;
    font-weight: 500;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.growing__description p{
	margin-bottom:20px;
}
.growing__body>.growing__col{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.growing__body>.growing__col:nth-child(1){
	height:340px;
}
.growing__body>.growing__col:nth-child(2){
	height:360px;
}
.growing__body>.growing__col:nth-child(3){
	height:380px;
}
.growing__body>.growing__col:nth-child(4){
	height:400px;
}
.growing__body>.growing__col:nth-child(5){
	height:420px;
}
.growing__body>.growing__col:nth-child(5) .growing__head{
	border-bottom: 2px solid var(--violet);
	color: var(--violet);
}
.growing__graph-all{
	display:flex;
	margin-top:80px;
	overflow: hidden;
}

.growing__graph-left{
	width: 40px;
	min-width:40px;
    display: flex;
	gap:10px;
}
.growing__graph-left-line{
	height:100%;
	width:3px;
	min-width:3px;
	background: var(--violet);
	position:relative;
}
.growing__graph-left-line:after{
	content: '';
    display: flex;
    position: absolute;
    left: -16px;
    top: -12px;
    width: 34px;
    min-width: 34px;
    height: 34px;
    background: url(/wp-content/themes/main/opros/image/graph-top.svg) no-repeat center;
    background-size: 100%;
}
.growing__graph-left-more{
	display:flex;
	flex-direction:column;
	justify-content: space-between;
	align-items: flex-start;
}
.growing__graph-left-more span{
	transform: rotate(-90deg);
    white-space: nowrap;
	max-width: 20px;
}
.growing__graph-left-top{
	margin-top:120px;
}
.growing__number{
	display:flex;
	margin-bottom:10px;
	justify-content:center;
}
.growing__number span{
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:50%;
	width:50px;
	height:50px;
	min-width:50px;
	background-color:var(--blue);
	color:var(--white);
	font-size:20px;
}
/* growing end */
/* section__height start*/
.section__height,.section__growing{
	     background-color: var(--blue2);
}
.height__all{
	display:flex;
	flex-direction:column;
	gap:30px;
	align-items: center;
	justify-content: space-between;
}
.height__all .height__caption{
	max-width:700px;
}
.height__img{
	width:150px;
	min-width:150px;
}
.height__col{
	 display: flex;
	background: var(--white);
    border-radius: 30px;
}
.height__title{
    margin-bottom: 15px;
}
.height__descr{
	font-size: 20px;
    line-height: 24px;
}
/* section__height end*/
.height__left img{
	border-radius: 30px;
}
.height__left,
.about__who-right-body,
.dis-right-body{
	border-radius: 30px;
    overflow: hidden;
    position: relative;
}
/* .height__left:before,
.about__who-right-body:before,
.dis-right-body:before {
    content: '';
    display: flex;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    transition: var(--transition300);
    background: var(--dark);
    opacity: 0.4;
} */

 /* popup start */
 .popup_show {
    overflow-y: auto;
}
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding:0px;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    display: flex;
    z-index: 1001;
    visibility: hidden;
}
.popup__box {
    position: relative;
    margin: auto;
    width: 100%;
    max-width:650px;
    background: var(--white);
    z-index: 9999;
	border-radius:20px;
    transform: scale(0);
    opacity: 0;
	padding: 40px;
}
.popup_show {
    overflow-y: auto;
}
.popup_show .popup__box {
    transition: transform 0.5s;
    transform: scale(1);
    opacity: 1;
}
.popup__overlay {
    position: fixed;
    top:0px;
    left:0px;
    width: 100%;
    height:100vh;
    background: rgba(30,48,69,0.6);
    z-index: 1000;
    transition: 0.5s;
    opacity: 0;
}
.popup_show .popup__overlay {
    opacity: 1;
}
.popup__close {
    position: absolute;
    top:40px;
    right:40px;
    width: 15.53px;
    height: 15.53px;
    cursor: pointer;
    padding:7px;
    box-sizing: content-box;
}
.popup_show .popup__close-icon {
    position: relative;
    height: 100%;
    transition: 0.3s;
}
.popup__close-icon:after, .popup__close-icon:before {
    content: '';
    display: block;
    width: 140%;
    left: -20%;
    position: absolute;
    top: 50%;
    height: 2px;
    background: var(--dark_light2);
}
.popup__close-icon:before {
    transform: translateY(-50%) rotate(-45deg);
}
.popup__close-icon:after {
    transform: translateY(-50%) rotate(45deg);
}
.popup__close:hover .popup__close-icon:before,
.popup__close:hover .popup__close-icon:after {
    background: var(--red_main);
}

.heading-popup-mini{
	font-size:18px;
	line-height:25.2px;
	margin-top: 12px;
}
.popup-form-item .btn-red{
	height:62px;
}
.popup-form-item.form-buttons{
	display:flex;
	justify-content:center;
}
.popup-agree{
	margin-top:12px;
	display:flex;
	justify-content:center;
	font-size:13px;
	line-height:18.2px;
	color: var(--text_light);
}
.popup-agree a{
	color:#89B5EC;
	margin-left:5px;
}
.feedback-form{
	display:flex;
	flex-direction:column;
	gap:10px;
	margin-top:30px;
}
.feedback-form input[type="email"],
.feedback-form input[type="tel"],
.feedback-form input[type="text"]{
	height: 42px;
    width: 100%;
    border: 1px solid var(--bg_light1);
    padding: 0 20px;
    border-radius: 4px;
}
.feedback-form .form-loader {
    align-items: center;
    background-color: #fffc;
    display: none;
    height: 100%;
    inset: 0;
    justify-content: center;
    position: absolute;
    width: 100%;
    z-index: 2;
}
.feedback-form .btn__blue{
	justify-content: center;
}
.wpcf7-list-item label {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 10px;
    position: relative;
    transition: opacity .2s ease;
}
.wpcf7-list-item label .wpcf7-list-item-label:after {
    border: 1px solid #818181;
    border-radius: 3px;
    content: "";
    flex: none;
    height: 22px;
    left: 0;
    position: absolute;
    top: 6px;
    width: 22px;
    will-change: transform;
}
.wpcf7-list-item label .wpcf7-list-item-label {
    padding-left: 32px;
    position: relative;
	font-size: 14px;
    line-height: 16px;
	letter-spacing: .01em;
	    min-height: 40px;
		max-width: 500px;
}
.wpcf7-list-item label .wpcf7-list-item-label:after {
    border: 1px solid #818181;
    border-radius: 3px;
    content: "";
    flex: none;
    height: 22px;
    left: 0;
    position: absolute;
    top: 6px;
    width: 22px;
    will-change: transform;
}
.wpcf7-list-item label .wpcf7-list-item-label:before {
    background-color: var(--blue);
    border-radius: 2px;
    content: "";
    height: 12px;
    left: 5px;
    opacity: 0;
    position: absolute;
    top: 11px;
    transition: opacity .1s ease;
    width: 12px;
}
.wpcf7-list-item label input[type=checkbox]:checked~.wpcf7-list-item-label:before {
    opacity: 1;
}
.button-round-blue {
   color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    background-color: var(--blue);
    border-radius: 30px;
    height: 60px;
    overflow: hidden;
    padding: 0px;
    position: relative;
}
.checkbox__text{
	color:var(--placeholder_color);
}
.checkbox__text a{
	color:var(--dark);
	text-decoration:underline;
}
/* popup end */
.slider__bottom{
	width:100%;
	height:100px;
}




/* fix 11.02.24 */
.growing__top.container{
	display:none;
}
@media (max-width: 767px) {
	.growing__body{
		grid-template-columns: repeat(1, 1fr);
		margin-top:0px;
	}
	.growing__body>.growing__col{
		height:auto!important;
	}
	.growing__graph-bottom,
	.growing__number {
		display: none;
	}
	.growing__graph-left-bottom{
		order: 1;
        margin-top: 70px;
	}
	.growing__graph-left-top{
		order:2;
	}
	.growing__graph-left-line:after{
		top:auto;
		bottom:-12px;
		left: -15px;
		transform: rotateX(180deg);
	}
}

.growing__swiper-container{
	padding-bottom:30px;
	padding-top:30px;
	overflow:visible!important;
}
.growing__swiper-container .growing__pagination {
	bottom:0;
	justify-content: center;
    width: 100%;
    gap: 5px;
	display:flex;
}
.growing__swiper-container .growing-carousel-caption{
	font-size: 20px;
    line-height: 28px;
    padding: 40px 30px;
    border-radius: 20px;
	min-height: 140px;
    display: flex;
    align-items: center;
}
.growing__swiper-container .swiper-button-next,
.growing__swiper-container .swiper-button-prev {
    min-width: 64px !important;
    width: 64px !important;
    height: 64px !important;
    border-radius: 50%;
    border: 1px solid var(--white);
	background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none !important;
    margin-top: -30px !important;
    top: 50%;
    transition: all 0.3s ease-in-out;
    box-shadow: none !important;
    overflow: hidden;
    z-index: 1 !important;
}
.growing__swiper-container .swiper-button-prev:hover:after,
.growing__swiper-container .swiper-button-prev:hover:before,
.growing__swiper-container .swiper-button-next:hover:after,
.growing__swiper-container .swiper-button-next:hover:before {
	transition: all 0.3s ease-in-out;
}
.growing__swiper-container .swiper-button-prev:after,
.growing__swiper-container .swiper-button-prev:before,
.growing__swiper-container .swiper-button-next:after,
.growing__swiper-container .swiper-button-next:before {
    content: '' !important;
    width: 16px;
    height: 16px;
    display: flex;
    transition: all 0.3s ease-in-out;
    position: absolute;
}
.growing__swiper-container .swiper-button-prev:before {
    background: url(/wp-content/themes/main/opros/image/swiper-prev-white.svg) no-repeat;
    right: -16px !important;
}
.growing__swiper-container .swiper-button-prev:after {
    background: url(/wp-content/themes/main/opros/image/swiper-prev-dark.svg) no-repeat;

}
.growing__swiper-container .swiper-button-next:before {
    background: url(/wp-content/themes/main/opros/image/swiper-next-white.svg) no-repeat;
    right: -16px !important;
}
.growing__swiper-container .swiper-button-next:after {
    background: url(/wp-content/themes/main/opros/image/swiper-next-dark.svg) no-repeat;

}
@media (any-hover: hover) {

	.growing__swiper-container .swiper-button-next:hover,
	.growing__swiper-container .swiper-button-prev:hover{
		background: var(--dark);
		border-color:var(--dark);
	}
	.growing__swiper-container .swiper-button-next:hover:before {
        left: calc(50% - 8px) !important;
    }
	.growing__swiper-container .swiper-button-next:hover:after {
        background: url(/wp-content/themes/main/opros/image/swiper-next-white.svg) no-repeat;
        right: -16px !important;
    }
	.growing__swiper-container .swiper-button-prev:hover:before {
        right: calc(50% - 8px) !important;
    }
	.growing__swiper-container .swiper-button-prev:hover:after {
        background: url(/wp-content/themes/main/opros/image/swiper-prev-white.svg) no-repeat;
        left: -16px !important;
    }
}
@media (min-width: 1630px) {
    .growing__swiper-container .swiper-button-prev {
        left: -84px !important;
    }
	.growing__swiper-container .swiper-button-next {
        right: -84px !important;
    }
}
@media (max-width: 1629px) {
	.growing__swiper-container .swiper-pager{
		display:none!important;
	}
	#growing__swiper{
		overflow:visible!important;
	}
}
.growing-carousel-caption .btn__white {
	width: 100%;
    justify-content: center;
}
.swiper-pagination-bullet-active,.swiper-pagination-bullet-active{
	background-color: var(--dark)!important;
}
.swiper-pagination-bullet {
    width: 24px!important;
    height: 10px!important;
    border-radius: 6px!important;
    background: var(--dark)!important;
}
.growing__top-all .growing-carousel-caption{
	border-width:1px!important;
}

nav.is-responsive.items-justified-right.wp-block-navigation.is-content-justification-right.is-layout-flex.wp-container-core-navigation-is-layout-1.wp-block-navigation-is-layout-flex {
    display: none;
}
#formsend .popup__box{
    max-width: 700px;
}
#formsend .popup-btn{
    margin-top:50px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
#formsend .popup-btn .btn-prev{
    color:var(--dark);
}
#formsend .popup-btn a{
    text-decoration:none;
}
.popup-link{
    text-decoration:none;
}

/* Правки для формы с опросом */
:root {
    --wp--preset--spacing--30: min(2.5rem, 3vw);
    --wp--preset--spacing--50: min(6.5rem, 8vw);
}
.ays-survey-container {
    max-width: 1440px !important;
}
.ays-survey-container * {
    font-weight: 300 !important;
    font-family: "Geologica", "Arial", sans-serif;
    line-height: 1.2;
}
.ays-survey-container .ays-survey-section .ays-survey-section-header {
    margin: 0;
    padding: 0;
    background-color: transparent !important;
    border-radius: 0;
}
.ays-survey-container .ays-survey-section .ays-survey-question {
    margin: 0;
    padding: 0 !important;
    background-color: transparent !important;
    border-radius: 0;
}
.ays-survey-container .ays-survey-section .ays-survey-question-title {
    margin-bottom: 0;
    padding-top: 0 !important;
    font-size: 20px!important;
}
.ays-survey-container .ays-survey-section .ays-survey-question-title p {
    color: var(--dark_light2) !important;
}
.ays-survey-container .ays-survey-section .ays-survey-question-required-icon {
    margin-top: 0;
    font-family: "Geologica", "Arial", sans-serif;
    color: var(--red_main);
    vertical-align: baseline;
}
.ays-survey-container .ays-survey-section .ays-survey-answer {
    display: block !important;
    min-height: auto !important;
    width: auto !important;
    min-width: auto !important;
    max-width: none !important;
    padding: 0 !important;
}
.ays-survey-container .ays-survey-section .ays-survey-other-answer-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 20px;
    max-width: 700px;
}
.ays-survey-container .ays-survey-section .ays-survey-other-answer-container .ays-survey-answer-label {
    flex-wrap: nowrap;
    flex-direction: row !important;
}
.ays-survey-container .ays-survey-section .ays-survey-answer-other-text {
    margin-top: 0 !important;
}
.ays-survey-container .ays-survey-section .ays-survey-answer-other-text .ays-survey-answer-other-input {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: 62px;
    padding: 0 20px;
    font-weight: 300;
    font-family: "Geologica", "Arial", sans-serif !important;
    font-size: 16px !important;
    background-color: var(--bg_blue-light) !important;
    border: 1px solid #e2e3e8 !important;
    border-radius: 10px;
    transition-duration: 0.2s;
}
.ays-survey-container .ays-survey-section .ays-survey-answer-other-text :is(.ays-survey-input-underline, .ays-survey-input-underline-animation) {
    height: 0;
}
.ays-survey-container .ays-survey-section .ays-survey-answer-label-content > span {
    margin-left: 0;
    font-family: "Geologica", "Arial", sans-serif;
    font-size: 19px !important;
    line-height: 1.375;
    word-break: break-word !important;
}
.ays-survey-container .ays-survey-section .ays-survey-section-desc {
    font-family: "Geologica", "Arial", sans-serif;
}
.ays-survey-container .ays-survey-section .ays-survey-question:is([data-type="short_text"], [data-type="email"]) [class^="ays-survey"] {
    width: 100% !important;
}
.ays-survey-container .ays-survey-section .ays-survey-question:is([data-type="short_text"], [data-type="email"]) .ays-survey-question-input {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    height: 62px !important;
    padding: 0 20px;
    font-weight: 300;
    font-family: "Geologica", "Arial", sans-serif !important;
    font-size: 16px !important;
    line-height: 1.2;
    background-color: #fff;
    border: 1px solid #e2e3e8 !important;
    border-radius: 10px;
    transition-duration: 0.2s !important;
}
.ays-survey-container .ays-survey-section .ays-survey-question-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--dark_light2);
    text-transform: uppercase;
    text-wrap: balance;
}
.ays-survey-container .ays-survey-section .ays-survey-question-header-content {
    display: block;
}
.ays-survey-container .ays-survey-section .ays-survey-answer-label {
    flex-wrap: nowrap !important;
    min-height: auto;
    padding: 0 !important;
    background-color: transparent !important;
    border: 0 !important;
}
.ays-survey-container .ays-survey-answer-star {
    gap: 10px;
    width: auto;
}
.ays-survey-container .ays-survey-answer-star .ays-survey-answer-label {
    gap: 0;
    padding: 0;
    font-size: 32px;
    line-height: 1;
    color: lightgrey;
    cursor: pointer;
}
.ays-survey-container .ays-survey-answer-star-radio {
    min-height: auto;
}
.ays-survey-container .ays-survey-answer-label i.ays-survey-star-icon::before {
    content: '';
    display: block;
    width: 34px;
    height: 34px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    fill: var(--text_light);
    transition: fill 0.3s;
}
.ays-survey-container .ays-survey-answer-label i.fa-star-o::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512' fill='%238C92A8'%3E%3Cpath d='M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z'%3E%3C/path%3E%3C/svg%3E");
}
.ays-survey-container .ays-survey-answer-label i.fa-star::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512' fill='%2300ADD7'%3E%3Cpath d='M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z'%3E%3C/path%3E%3C/svg%3E");
}
.ays-survey-container .ays-survey-answer-label i.ays-survey-star-icon.fa-star {
    transform: scale(1);
}
.ays-survey-container .ays-survey-section .ays-survey-question-validation-error {
    font-size: 16px;
}
.ays-survey-section.active-section > .ays-survey-section-header .ays-survey-section-desc {
    max-width: 700px;
    margin: 40px 0;
    padding: 5px 10px;
    font-size: 18px !important;
    line-height: 1.333 !important;
    color: var(--dark);
    text-transform: uppercase;
    border-left: 5px solid var(--dark);
}
.ays-survey-question-content {
    padding: 20px 0;
}
.ays-survey-question-answers.ays-survey-question-answers-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px;
}
.ays-survey-section-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 60px!important;
}
.ays-survey-section-button {
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
}
.ays-survey-section-button-container {
    overflow: visible !important;
    box-shadow: none !important;
}
.ays-survey-section-button-content {
    display: block !important;
}
.ays-survey-section-button {
    min-width: 160px !important;
    height: 60px !important;
    font-family: "Geologica", "Arial", sans-serif !important;
    font-size: 16px !important;
    color: var(--white) !important;
    background-color: var(--blue) !important;
    border-radius: 4px !important;
    transition: opacity 0.2s;
}
.ays-survey-results .ays-survey-section-buttons {
    margin-top: 30px !important;
}

@media screen and (hover: hover) {
    .ays-survey-section-button:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 640px) {
    .ays-survey-container .ays-survey-section .ays-survey-other-answer-container {
        flex-direction: column !important;
        align-items: stretch;
        width: 100% !important;
    }
    .ays-survey-container .ays-survey-section .ays-survey-answer-other-text .ays-survey-answer-other-input {
        height: 62px !important;
        font-size: 16px !important;
    }
    .ays-survey-section-button-container {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    .ays-survey-section-button {
        min-width: 120px !important;
    }
}


@media screen and (min-width: 992px) {
    .ays-survey-section {
        max-width: 50%;
        margin-inline: auto;
    }
}