:root {
	--main-fone: #0F0B27;
	--text-color: #fff;
	--accent-color: #0F1FAD;
	--scroll-color: #5992FF;
	--accent-text-color: #2f7bc0;
	--ml: 15px;
	--mr: 15px;
	--ml-minus: -15px;
	--mr-minus: -15px;
}

input,
textarea,
button,
select,
a {
	-webkit-tap-highlight-color: transparent;
}

* {
	-webkit-tap-highlight-color: transparent;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

ul[class],
ol[class] {
	padding: 0;
}

html {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd,
pre {
	margin: 0;
}

ul[class],
ol[class] {
	list-style: none;
}

body {
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.5;
	margin: 0;
}

textarea,
input:not([type="hidden"]),
button {
	outline: 0;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

fieldset {
	margin: 0;
	padding: 0;
	border: none;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

b,
strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}

@media (prefers-reduced-motion: reduce) {

	*,
	::before,
	::after {
		animation-delay: -1ms !important;
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
		background-attachment: initial !important;
		scroll-behavior: auto !important;
		transition-delay: 0s !important;
		transition-duration: 0.001s !important;
	}
}

img {
	max-width: 100%;
	height: auto;
}

.visually-hidden {
	visibility: hidden;
	position: absolute;
	clip: rect(0, 0, 0, 0);
	transform: scale(0, 0);
	opacity: 0;
	pointer-events: none;
	user-select: none;
	height: 0;
	overflow: hidden;
	padding: 0;
	border: none;
	outline: none;
	box-shadow: none;
}

.container {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 15px;
}

div[class$="__row"] {
	display: flex;
	flex-wrap: wrap;
	margin-left: var(--ml-minus);
	margin-right: var(--mr-minus);
}

*[class$="__col"] {
	margin-left: var(--ml);
	margin-right: var(--mr);
}

body {
	font-family: "Montserrat";
	font-weight: normal;
	font-style: normal;
	color: var(--text-color);
	font-size: 16px;
	background: #fefefe;
	overflow-x: hidden;
}

html {
	overflow-x: hidden;
}

html,
.wrapper {
	height: 100%;
}

.wrapper {
	display: flex;
	flex-direction: column;
}

.main-page,
.inner-page {
	flex-grow: 1;
}


a {
	text-decoration: none;
	color: inherit;
}


::-webkit-scrollbar-button {
	background-repeat: no-repeat;
	width: 6px;
	height: 0px;
	background-color: var(--scroll-color);
}

::-webkit-scrollbar-track {
	/* box-shadow: -7px 0px 26px 1px #c7c7c7;
	background-color: rgba(255, 255, 255, 0.2); */
}

::-webkit-scrollbar-thumb {
	border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
	-webkit-border-radius: 10px 10px 10px 10px;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--scroll-color);
}

::-webkit-scrollbar-thumb:hover {
	background-color: #fff;
}

::-webkit-resizer {
	background-repeat: no-repeat;
	width: 7px;
	height: 0px;
}

::-webkit-scrollbar {
	width: 10px;
}

.title {
	font-weight: 700;
	font-size: 32px;
	color: #fff;
	margin-bottom: 15px;
}

.title--center {
	margin-bottom: 60px;
	text-align: center;
}

.btn-tab {
	font-family: inherit;
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.44);
	border-radius: 50px;
	padding: 10px 40px;
    background: linear-gradient(90deg, rgba(73, 123, 223, 0.6) 50%, rgba(36, 182, 77, 0.6) 99.5%) 0% 0% / 100% 100%;
	transition: background 0.3s ease-in-out;
}

.btn-tab:hover,
.btn-tab.active {
	background: rgba(59, 125, 255, 0.3);
}

.btn-small {
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 5px;
	padding: 6px 16px;
	width: 105px;
	height: 29px;
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	font-family: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	transition: background 0.3s ease-in-out;
}

.btn-small:hover {
	background: rgba(59, 125, 255, 0.3);
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.fade-in-text {
	opacity: 0;
	animation: fadeIn 2s forwards;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.slide-up-text {
	opacity: 0;
	animation: slideUp 1s forwards;
}

/* accardion */

button.accordion {
	width: 100%;
	background-color: transparent;
	border: none;
	outline: none;
	display: flex;
	align-items: center;
	cursor: pointer;
	justify-content: space-between;
	text-align: left;
	font-weight: 400;
	font-size: 24px;
	line-height: 25px;
	font-family: inherit;
	color: #fff;
	padding: 0 0 23px;
}


button.accordion::after {
	content: '';
	background-image: url(../image/svg/open.svg);
	background-repeat: no-repeat;
	background-position: center;
	width: 27px;
	height: 27px;
	margin-right: 5px;
	border-radius: 5px;
	flex-shrink: 0;
	margin-left: 20px;

}

button.accordion.is-open::after {
	content: '';
	background-image: url(../image/svg/close.svg);
}

.accordion__content {
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 150%;
	color: #fff;
	max-height: 0;
	transition: max-height 0.3s ease-in-out;
	overflow: hidden;
	border-bottom: 1px solid #fff;
}

.accordion__inner {
	color: #fff;
	font-weight: 400;
	font-size: 14px;
	line-height: 19px;
	padding-bottom: 20px;
}

.wrapper-item-acc {
	margin-bottom: 25px;
}

/* accardion end*/

/* section */

.section {
	overflow: hidden;
}

@media(min-width: 1101px) {
	.section {
		display: flex;
	}
}

.section__content {
	flex: 0 0 100%;
	display: flex;
}

.section__container {
	max-width: 1230px;
	padding: 0 15px;
	display: flex;
	align-items: center;
}

.section__body {
	padding: 50px 0px 50px 0;
}

@media(min-width: 1101px) {
	.section__body {
		padding: 50px 20px 50px 0;
		width: 50%;
	}
}

@media(min-width: 1101px) {
	.section__image {
		flex: 0 0 50%;
		position: relative;
		padding: 0 0 45% 0;
		transform: translate(0%, 0);
	}

	.section__image img {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		object-fit: cover;
		object-position: center;
	}
}

.section__image img {
	max-width: 100%;
}

@media(min-width: 1230px) {
	.section__image {
		flex: 0 0 calc(100vw - (((100vw - 1230px) / 2) + ((1230px - 30px) * 0.5) + 15px));
	}
}

/* before and after show */



.image-comparison {
	margin: 20px auto 41px;
	overflow: hidden;
	height: 555px;
}

.image-comparison img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left;
}

.image-comparison .images-container {
	position: relative;
	display: flex;
}

.image-comparison .images-container .before-image {
	position: absolute;
	top: 0;
	width: 50%;
}

.image-comparison .slider {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

.image-comparison .slider-line {
	position: absolute;
	height: 100%;
	width: 4px;
	background: #fff;
	left: 50%;
	transform: translateX(-50%);
}

.image-comparison .slider-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 60px;
	color: #fff;
	transform: translate(-50%, -50%) rotateZ(90deg);
}


/* before and after show end */


/* burger */

.stop-scroll {
	overflow: hidden;
  }

.burger {
	position: relative;
	width: 30px;
	height: 20px;
	display: none;
	border: none;
	padding: 0;
	background-color: transparent;
	cursor: pointer;
}

.burger__line {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 2px;
	background-color: #fff;
	transform: translateY(-50%);
	transition: opacity 0.3s ease-in-out;
}

.burger::before,
.burger::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, bottom 0.3s ease-in-out;
}

.burger::before {
	top: 0;
}

.burger::after {
	bottom: 0;
}

.burger--active .burger__line {
	opacity: 0;
}

.burger--active::before {
	top: 50%;
	transform: rotate(45deg);
}

.burger--active::after {
	bottom: auto;
	top: 50%;
	transform: rotate(-45deg);
}


@media(max-width:1050px) {
	.burger {
		display: block;
		z-index: 115;
	}

	.header-page__logo {
		z-index: 115;
	}
}

/* burger end */

/* select */
.select {
    position: relative;
    margin-bottom: 1rem;
}

.select:after {
    content: "";
    display: block;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #fff transparent transparent transparent;
    pointer-events: none;

    position: absolute;
    top: 50%;
    right: 1rem;
    z-index: 1;
    margin-top: -3px;
}

.select select {
    display: block;
    width: 100%;
    font-family: inherit;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 50px;
    padding: 10px 40px 10px 20px;
    background: rgba(255, 255, 255, 0.13);
    -webkit-appearance: none;
    appearance: none;
}

.select select:focus {
    outline: 0;
    border-color: #0891e6;
}


.select select option {
	color: #000; /* Цвет текста для option */
}

select select option:hover {
	color: #fff; /* Цвет текста для hover option */
}



.select-tab {

}
/* select */

@keyframes fadeInLeft {
	0% {
	   transform: translateX(-100%);
	}
	100% {
	   transform: translateX(0);
	}
 }
