html {
	overflow-x: unset !important;
}
body {
	margin: 0;
	padding: 0;
}
.black-scr {
	position: fixed;
	content: '';
	pointer-events: none;
	display: block;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	-webkit-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	opacity: 0;
	z-index: 0;
	background: rgba(0, 0, 0, 0.1);
}
body.open .black-scr {
	opacity: 1;
	z-index: 6;
}
.df {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}
.fd-col {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.wh40 {
	width: 40px;
	height: 40px;
}
body.send .black-scr {
	opacity: 1;
	z-index: 6;
	background: rgba(0, 0, 0, 0.2);
}
body.open {
	overflow-y: hidden;
	overflow-x: unset !important;
}
.wrap {
	max-width: 1920px;
	margin: 0 auto;
	overflow: hidden;
}
.container {
	width: 1080px;
	max-width: unset !important;
	margin: 0 auto;
}
li {
	display: block;
}

h1,
h2,
h3,
h4,
h5 {
	margin: 0;
	padding: 0;
	letter-spacing: 0 !important;
}
div,
p,
ul,
li,
span,
button,
input,
a,
form,
textarea {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

iframe {
    max-width: 100%;
}
.title-l {
	font-size: 31px !important;
	line-height: 42px !important;
}
textarea:active,
textarea:focus {
	outline: none;
}
input[type=text],
input[type=submit],
textarea {
	-webkit-appearance: none;
}
input {
	border: 0;
	outline: none;
}
.menu_btn {
	display: none;
}
.badge {
	font-weight: 700 !important;
	font-size: 12px !important;
	line-height: 20px !important;
	letter-spacing: 0.04em !important;
}
/* ----STARS---- */

.stars {
	width: 80px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex
}
.rating__star span {
	overflow: hidden;
	display: block;
	width: 100%;
	height: 100%;
	font-size: 0;
	line-height: 13px
}
.rating__star {
	display: inline-block;
	vertical-align: middle;
	width: 14px;
	height: 13px;
    margin-right: 4px;
	text-align: center;
	background: url('../img/svg/star-trans.svg') 0 1px no-repeat;
	-webkit-background-size: 100% 100%;
	-moz-background-size: 100%;
	background-size: 100%
}

/* -----------------------------Header---------------------------- */
.header {
	padding: 24px 0;
}
.header__wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.header__logo:hover {
	text-decoration: none;
}
.header__nav > ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header .container {
	z-index: 5 !important;
}
.header__nav > ul > li {
	position: relative;
}
.header__nav > ul > li > .sub-menu {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	flex-wrap: wrap;
	width: 1085px;
	opacity: 0;
	z-index: 8;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
	pointer-events: none;
	top: 90%;
	left: -332px;
	padding: 40px 20px 20px;
	visibility: hidden;
}
.header__nav > ul > li > .sub-menu::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
	height: calc(100% - 20px);
	-webkit-border-radius: 10px;
	   -moz-border-radius: 10px;
	        border-radius: 10px;
	-webkit-columns: 3;
	   -moz-columns: 3;
	        columns: 3;
	-webkit-box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.1);
		 box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.1);
		 background: #fff;
}
.header__nav > ul > li.transp a {
	opacity: .3;
}
.header__nav > ul > li.menu-item-has-children:hover > .sub-menu {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
}

.header__nav > ul > li > .sub-menu > li {
	padding: 20px;
	position: relative;
    flex-direction: column;
	z-index: 2;
	margin: 0;
}
.sub-menu > .menu-item-has-children > a {
    font-weight: bold;
    cursor: text;
    margin-bottom: 12px;
}
.sub-menu > .menu-item-has-children > a:after {
	display: none;
}
.col-10 > .sub-menu {
    display: flex;
    flex-wrap: wrap;
}
.col-10 > .sub-menu > li {
    width: 20%;
    margin-right: 0;
    padding-right: 16px;
}
.header__nav > ul > li > .sub-menu > li.col-10 {
    padding-right: 0;
}

.header__nav > ul > li > .sub-menu li > a {
	font-size: 14px;
	line-height: 150%;
	color: #032553;
	display: block;
}
.header__nav > ul > li > .sub-menu > li > a:hover {
	text-decoration: none;
}

.header__nav > ul > li > .sub-menu > li > .sub-menu > li:not(:last-child) {
	margin-bottom: 12px;
}
/* ---fixed header--- */

.wrap__head {
	height: 103px;
}
.header_fixed .header {
	background: #FFFFFF;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 6;
	padding: 24px 0;
}


.header_fixed .header__nav > ul > li > .sub-menu {
	padding-top: 56px;
}

/* ---main--- */
.main__txt {
	font-size: 21px;
	line-height: 33px;
	opacity: 0.5;
	width: 90%;
	color: #032553 !important;
}



/* ----ABOUT---- */
.about {
	padding: 302px 0 222px;
}
[data-readmore] {
	-webkit-transition: height 100ms;
	-o-transition: height 100ms;
	-moz-transition: height 100ms;
	transition: height 100ms;
	overflow: hidden;
	position: relative;
	margin-bottom: 0;
}
[data-readmore][data-readmore] {
	display: block;
	width: 100%;
}
[data-readmore][aria-expanded="false"]:after {
	content: '';
	position: absolute;
	bottom: 0;
	display: inline-block;
	width: 100%;
	height: 83px;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(241, 244, 248, 0)), to(#F1F4F8));
	background: -webkit-linear-gradient(top, rgba(241, 244, 248, 0) 0%, #F1F4F8 100%);
	background: -moz-linear-gradient(top, rgba(241, 244, 248, 0) 0%, #F1F4F8 100%);
	background: -o-linear-gradient(top, rgba(241, 244, 248, 0) 0%, #F1F4F8 100%);
	background: linear-gradient(180deg, rgba(241, 244, 248, 0) 0%, #F1F4F8 100%);;
}
[data-readmore] +[data-readmore-toggle] {
	font-weight: 700;
	font-size: 18px;
	line-height: 150%;
	color: #335EEA;
	margin-top: 44px;
	display: inline-block;
}
.about__txt p:not(:last-child) {
	margin-bottom: 8px;
}
.about__txt p {
	opacity: 0.7;
	font-size: 18px;
line-height: 150%;
}
.about__txt ul {
	padding-left: 20px;
	margin: 10px 0;
}
.about__txt ul li {
	display: list-item !important;
	opacity: 0.7;
}
.text__wrap ul {
	padding-left: 20px;
	margin: 10px 0;
}
.text__wrap ul li {
	color: #032553;
    opacity: 0.7;
	display: list-item !important;
	font-size: 18px;
}
.about__txt h3 {
	font-size: 24px;
	line-height: 150%;
	margin-bottom: 12px;
}
.about__txt h3:not(:first-child) {
	margin-top: 40px;
}
.about__page-adress {
	padding-top: 40px;
	border-top: 1px solid #DEE8F1;
	margin-top: 40px;
}

.about__txt ol {
	margin: 20px 0 40px;
	counter-reset: item;
}
.about__txt ol li {
	position: relative;
	color: #032553;
	opacity: 0.7;
}

.about__txt ol li::before {
    content: counter(item)'.';
     counter-increment: item; 
     position: absolute;
     display: block;
    left: -20px;
	top: 0;
	font-weight: 700;
}
/* ----cards--- */
.cards {
    padding: 94px 0px;
}
.cards__help::before {
	content: '';
	display: block;
	position: absolute;
	width: 317px;
	height: 177px;
	top: -51px;
    left: -94px;
	background: url('../img/cards-l.png') no-repeat 0 0 / cover;
}
.cards__help::after {
	content: '';
	display: block;
	position: absolute;
	width: 332px;
	height: 176px;
	top: -53px;
    right: -100px;
	background: url('../img/cards-r.png') no-repeat 0 0 / cover;
}
.cards-img {
	width: 40px;
	height: 40px;
	margin-left: auto;
	margin-right: auto;
}
.cards p {
	font-size: 16px !important;
	width: 90%;
	margin: 0 auto;
}

/* ----academ---- */

.academ {
	padding: 262px 0 ;
}


/* ---TABLE--- */


.table {
	padding: 96px 0 160px;
}
.table:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	width: 130%;
	height: 1px;
	background: #F4F7FB;
	left: -40px;
	-webkit-transform: rotateZ(-6deg);
	   -moz-transform: rotateZ(-6deg);
	    -ms-transform: rotate(-6deg);
	     -o-transform: rotateZ(-6deg);
	        transform: rotateZ(-6deg);
}
.table__card {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
	   -moz-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
	-webkit-border-radius: 20px;
	   -moz-border-radius: 20px;
	        border-radius: 20px;
	padding: 32px;
}

.table__tabs {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	margin-bottom: 21px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.table__tabs:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background: #EDEDED;
	bottom: 1px;
	left: 0;
	z-index: 1;
}
.table__tab {
	padding: 10px 20px;
	color: #335EEA;
	border: 1px solid transparent;
	font-weight: 600;
	font-size: 17px;
	line-height: 28px;
	position: relative;
	z-index: 2;
	cursor: pointer;
	-webkit-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	transition: color 0.3s ease;
}
.table__tab:hover {
	color: #000;
}
.table__tab.active {
	color: #000000;
	background: #FFFFFF;
	border: 1px solid #EDEDED;
	border-bottom-color: transparent;
	-webkit-border-radius: 6px 6px 0px 0px;
	   -moz-border-radius: 6px 6px 0px 0px;
	        border-radius: 6px 6px 0px 0px;
}
.table__labels {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 42px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.table__label {
	position: relative;
	font-weight: 700;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.03em;
	color: #032553;
	padding-left: 24px;
}
.table__label::before {
	content: '';
	display: block;
	position: absolute;
	width: 14px;
	height: 14px;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
	background: #B8B8B8;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
	        border-radius: 2px;
}
.table__label:nth-child(1):before {
	background: #335EEA
}
.table__label:not(:last-child) {
	margin-right: 50px;
}
.table__slider {
	display: none !important;
	padding-top: 50px;
}
.table__slider .slick-list {
	padding-top: 50px;
}
.table__slider .slick-track {
	display: -webkit-box !important;
	display: -webkit-flex !important;
	display: -moz-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
       -moz-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
}
.table__slider.active {
	display: block !important;
}
.table__wrap {
	position: relative;
}
.table__help {
	width: 100%;
}
.table__lines {
	padding-left: 62px;
	padding-bottom: 55px;
}
.table__lines li {
	width: 100%;
	height: 1px;
	background: rgba(3, 37, 83, 0.1);
	position: relative;
}
.table__lines li:not(:last-child) {
	margin-bottom: 55px;
}
.table__lines li span {
	position: absolute;
	font-weight: 700;
	font-size: 14px;
	line-height: 150%;
	color: #032553;
	opacity: 0.5;
	left: -62px;
	top: -10px;
}
.table__sliders {
	padding-left: 62px;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
}
.table__cols {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 12px;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	   -moz-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.table__col-l {
	position: relative;
	width: 54px;
	background: #335EEA;
	margin-right: 4px;
}
.table__col-r {
	width: 54px;
	background: #B8B8B8;
}
.table__slider .slick-slide:nth-child(1) .table__col-l {
	height: 80px;
}
.table__slider .slick-slide:nth-child(2) .table__col-l {
	height: 49px;
}
.table__slider .slick-slide:nth-child(3) .table__col-l {
	height: 62px;
}
.table__slider .slick-slide:nth-child(4) .table__col-l {
	height: 87px;
}
.table__slider .slick-slide:nth-child(1) .table__col-r {
	height: 128px;
}
.table__slider .slick-slide:nth-child(2) .table__col-r {
	height: 88px;
}
.table__slider .slick-slide:nth-child(3) .table__col-r {
	height: 73px;
}
.table__slider .slick-slide:nth-child(4) .table__col-r {
	height: 116px;
}
.table__slider-sec .slick-slide:nth-child(1) .table__col-l {
	height: 26px;
}
.table__slider-sec .slick-slide:nth-child(2) .table__col-l {
	height: 96px;
}
.table__slider-sec .slick-slide:nth-child(3) .table__col-l {
	height: 108px;
}
.table__slider-sec .slick-slide:nth-child(4) .table__col-l {
	height: 87px;
}
.table__slider-sec .slick-slide:nth-child(1) .table__col-r {
	height: 62px;
}
.table__slider-sec .slick-slide:nth-child(2) .table__col-r {
	height: 173px;
}
.table__slider-sec .slick-slide:nth-child(3) .table__col-r {
	height: 141px;
}
.table__slider-sec .slick-slide:nth-child(4) .table__col-r {
	height: 108px;
}
.table__slider-trd .slick-slide:nth-child(1) .table__col-l {
	height: 77px;
}
.table__slider-trd .slick-slide:nth-child(2) .table__col-l {
	height: 113px;
}
.table__slider-trd .slick-slide:nth-child(3) .table__col-l {
	height: 62px;
}
.table__slider-trd .slick-slide:nth-child(4) .table__col-l {
	height: 87px;
}
.table__slider-trd .slick-slide:nth-child(1) .table__col-r {
	height: 133px;
}
.table__slider-trd .slick-slide:nth-child(2) .table__col-r {
	height: 207px;
}
.table__slider-trd .slick-slide:nth-child(3) .table__col-r {
	height: 75px;
}
.table__slider-trd .slick-slide:nth-child(4) .table__col-r {
	height: 108px;
}
.table__col-info {
	position: absolute;
	top: -50px;
	color: #335EEA;
	text-align: center;
	font-weight: 700;
	font-size: 14px;
	line-height: 150%;
	right: 0;
	left: 0;
	margin: 0 auto;
}
.table__col-proc {
	font-weight: 800;
	font-size: 18px;
}
.table__cols-label {
	text-align: center;
	font-weight: 700;
	font-size: 14px;
	line-height: 150%;
	color: #032553;
}
.table__cols-time {
	opacity: 0.5;
}
.table__cols-label span {
	display: block;
}
.table__slide-wrap {
	padding: 0 60px;
}

/* ---orders--- */

.orders {
	padding: 187px 0 279px;
}
.orders__card {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.1);
	   -moz-box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.1);
	-webkit-border-radius: 10px;
	   -moz-border-radius: 10px;
	        border-radius: 10px;
	padding: 40px 48px;
}
.orders__card ul {
	-webkit-columns: 3;
	   -moz-columns: 3;
	        columns: 3;
	width: 100%;
}
.orders__card ul li {
	margin-bottom: 13px;
}
.orders__card ul li a {
	font-size: 18px;
	line-height: 150%;
	color: #032553;
	opacity: 0.7;
}
.shape-custom {
	color: #020B21;
}

/* ---use--- */

.use {
	padding: 80px 0 151px;
	background: #020B21;
}

.use:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	width: 130%;
	height: 1px;
	background: #1B2A4E;
	left: -40px;
	z-index: 2;
	-webkit-transform: rotateZ(-6deg);
	   -moz-transform: rotateZ(-6deg);
	    -ms-transform: rotate(-6deg);
	     -o-transform: rotateZ(-6deg);
	        transform: rotateZ(-6deg);
}
.btn-rounded-circle> span {
    font-size: 20px !important;
}
.use__line {
	position: relative;
	margin-bottom: 60px;
}
.use__line::before {
	content: '';
	display: block;
	position: absolute;
	width: 70%;
	height: 1px;
	background: #1B2A4E;
	top: 23px;
	right: 0;
	left: 0;
	margin: 0 auto;
}
/* ---price--- */

.price {
	padding: 205px 0 254px;
	background: #020B21;
}
.price p {
	opacity: 0.7;
	font-size: 18px;
	line-height: 1.5em;
}
.price__card {
	padding: 40px 24px 40px 32px;
	background: #07112C;
	-webkit-box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.1);
	   -moz-box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.1);
	-webkit-border-radius: 10px;
	   -moz-border-radius: 10px;
	        border-radius: 10px;
}

.price__title {
	font-weight: bold;
	font-size: 22px;
	line-height: 24px;
	margin-bottom: 16px;
}
.price__card ul {
	padding-bottom: 24px;
	margin-right: 8px;
	border-bottom: 1px solid rgba(237, 237, 237, 0.1);
	margin-bottom: 24px;
}
.price__card ul li {
	font-size: 16px !important;
	line-height: 150% !important;
}
.price__card ul li > span:first-child {
	opacity: 0.7;
}
.price__card ul li > span:last-child {
	width: 72px;
}
.price__total {
	font-weight: 800;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.price__badge {
	background: #82FF9D;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
	        border-radius: 5px;
	padding: 4px 12px;
	font-weight: 700 !important;
	font-size: 18px !important;
	line-height: 150% !important;
	color: #192230;
}
.price__card ul li > span:last-child span {
    font-size: 15px !important;
}
.review {
	padding: 100px 0 546px;
}
.review__help {
	position: absolute;
	left: 20px;
	top: 176px;
	max-width: 1480px;
}
.review__tit-text {
	font-size: 18px;
}
.review__wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin: -30px -19px;
}
.review__card-wrap {
	padding: 30px 19px;
}
.review__card {
	background: #FFFFFF;
	-webkit-border-radius: 10px;
	   -moz-border-radius: 10px;
	        border-radius: 10px;
	width: 363px;
	padding: 40px 32px;
	-webkit-box-shadow: 0px 10px 20px 1px rgba(0, 0, 0, 0.1);
	   -moz-box-shadow: 0px 10px 20px 1px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 10px 20px 1px rgba(0, 0, 0, 0.1);
}
.review__card:hover .review__btn {
	opacity: 1;
}
.review__top {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 16px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.review__left {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.review__img {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	width: 44px;
	height: 44px;
	overflow: hidden;
	margin-right: 16px;
}
.review__img img {
	width: 100%;
	height: 100%;
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
}
.review__name {
	font-weight: 700;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 5px;
	font-size: 16px;
	line-height: 24px;
	color: #032553;
}
.review__count {
	font-weight: 700;
	color: rgba(0, 0, 0, 0.15);
	font-size: 24px;
	line-height: 24px;
}
.review__card p {
	font-size: 16px;
	line-height: 150%;
	color: #032553;
	opacity: 0.7;
	margin-bottom: 16px;
	overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    height: 72px;  /*тут свое значение */
}
.review__btn {
	font-weight: 700;
	font-size: 16px;
	line-height: 150%;
	color: #032553;
	opacity: 0.7;
	-webkit-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}
.slick-slide:focus {
	outline: none;
	border: none;
}

/* ----faq---- */

.faq {
	padding: 96px 0 50px;
}
.faq__wrap {
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.1);
	   -moz-box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.1);
	-webkit-border-radius: 10px;
	   -moz-border-radius: 10px;
	        border-radius: 10px;
}
.faq__help {
	padding-bottom: 80px;
	border-bottom: 1px solid #D9E2EF;
}
.faq__card-wrap {
	padding: 0 40px 0 32px;
	cursor: pointer;
}
.faq__card {
	padding: 32px 0;
}
.faq__card-wrap:not(:last-child) {
	border-bottom: 1px solid #EDEDED;
}
.faq__title {
	position: relative;
	padding-right: 224px;
	font-weight: 700;
	font-size: 17px;
	line-height: 27px;
	color: #032553;
}
.faq__title::after {
	content: '';
	display: block;
	position: absolute;
	width: 10px;
	height: 6px;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background: url('../img/arrow.png') no-repeat 0 0 / cover;
}
.faq__title.open::after {
	-webkit-transform: rotateZ(180deg);
	   -moz-transform: rotateZ(180deg);
	    -ms-transform: rotate(180deg);
	     -o-transform: rotateZ(180deg);
	        transform: rotateZ(180deg);
}
.faq__card p {
	font-size: 17px;
	line-height: 27px;
	color: #032553;
	margin-top: 16px;
	display: none;
	max-width: 744px;
}

/* ----bottom__text---- */

.bottom__text {
	padding: 54px 0 96px;
}
.text__wrap .wp-block-columns {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.text__wrap .wp-block-column {
	width: 48.5%;
}
.text__wrap h2 {
	margin-bottom: 24px;
}
.text__wrap p {
	font-size: 18px;
	line-height: 150%;
	color: #032553;
	opacity: 0.7;
}
.text__wrap p:not(:last-child) {
	margin-bottom: 10px;
}
.text__wrap h3 {
	margin-bottom: 8px;
	font-weight: 700;
	font-size: 18px;
	line-height: 150%;
	color: #032553;
	opacity: 0.7;
}
.text__wrap h3:not(:first-child) {
	margin-top: 24px;
}
.text__wrap ol li {
	display: list-item;
	font-size: 18px;
    line-height: 150%;
    color: #032553;
    opacity: 0.7;
}
.text__wrap ol {
	padding-left: 20px;
}

/* ---footer--- */

.footer {
	padding: 0 0 48px;
}
.footer__wrap {
	padding: 96px 0;
	border-top: 1px solid #D9E2EF;
	border-bottom: 1px solid #D9E2EF;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.footer-inner .footer__wrap {
	border-top: none;
}
.footer__item {
	width: 22%;
}
.footer__title {
	font-weight: 700;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 19px;
	color: #4B6485;
}
.footer__item ul li a {
	font-size: 16px;
	line-height: 130%;
	color: #4B6485;
}
.footer__item ul li:not(:last-child) {
	margin-bottom: 16px;
}
.footer__bottom {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 48px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.footer__soc {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.footer__soc-item {
	width: 45px;
	height: 45px;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
	background: #F1F4F8;
	color: #4B6485;
	font-weight: 900;
	font-size: 18px;
	line-height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.footer__soc-item:hover {
	background: #E3EAF3;
	text-decoration: none;
}
.footer__soc-item:not(:last-child) {
	margin-right: 12px;
}
.footer__copy {
	font-size: 16px;
	line-height: 130%;
	color: #4B6485;
}
.cookies {
	display: none;
}

/* ----about__page---- */

.about__page {
	padding: 10px 0 140px;
}

/* ----contactus--- */

.contactus {
	padding: 128px 0 140px;
}
.contactus p {
	max-width: 677px;
	font-size: 21px;
	line-height: 33px;
	color: #7E90A8;
	margin: 0 auto 52px;
}
.contactus p a {
	text-decoration: underline;
}
.contactus p a:hover {
	text-decoration: none;
}
.form-control {
	resize: none;
}
.contactus__form {
	max-width: 774px;
	margin: 0 auto;
}

/* ----blog--- */

.blog__wrap	{
	margin-top: -24px;
	margin-bottom: 48px;
}
.blog__card {
	padding-top: 24px;
	padding-bottom: 24px;
}
.blog-articles {
	padding: 108px 0 140px;
}

.blog-info figure img {
	transition: box-shadow .25s ease,transform .25s ease,-webkit-transform .25s ease;
	margin-bottom: 1rem;
	-webkit-border-radius: .375rem!important;
	   -moz-border-radius: .375rem!important;
	        border-radius: .375rem!important;
	max-width: 100%;
    height: auto;
	line-height: 1;
}
.blog-info figure img:hover {
    -webkit-box-shadow: 0 2rem 5rem rgba(22,28,45,.1),0 .5rem 1rem -.75rem rgba(22,28,45,.05)!important;
       -moz-box-shadow: 0 2rem 5rem rgba(22,28,45,.1),0 .5rem 1rem -.75rem rgba(22,28,45,.05)!important;
            box-shadow: 0 2rem 5rem rgba(22,28,45,.1),0 .5rem 1rem -.75rem rgba(22,28,45,.05)!important;
    -webkit-transform: translate3d(0,-5px,0);
    -moz-transform: translate3d(0,-5px,0);
         transform: translate3d(0,-5px,0);
}
.blog-info figure figcaption {
	text-align: center!important;
	font-size: 15px;
	line-height: 24px;
	letter-spacing: 0.01em;
    color: #869ab8;
}
.blog-info figure:not(:last-child) {
	margin-bottom: 48px;
}
.blog-info .wp-block-gallery:not(:first-child) {
	margin-top: 40px;
}
.blog-info p {
	font-size: 17px;
	line-height: 27px;
}
.blog-info p:not(:last-child) {
	margin-bottom: 24px;
}
.blog-info h2 {
	margin-top: 3rem!important;
	font-weight: 600;
	margin-bottom: 1rem;
}
.blog-info ul,
.blog-info ol {
	padding-left: 40px;
	margin-bottom: 24px;
}
.blog-info ul li,
.blog-info ol li {
	display: list-item;
}
.blog-info ul li:not(:last-child),
.blog-info ol li:not(:last-child) {
	margin-bottom: 1rem;
}
.blog-info__slider {
	min-width: 862px;
	margin-left: -71px;
}
.blog-info h3 {
	margin-bottom: .5rem;
	font-weight: 600;
	margin-top: 3rem!important;
}
.blog-info blockquote {
	padding: 2.5rem 0!important;
	position: relative;
	margin: 40px 0;
}
.blog-info blockquote p {
	color: #6c8aec!important;
	text-align: center;
	letter-spacing: -.01em;
	line-height: 1.35;
	font-size: 1.9375rem;
}
.blog-info blockquote::before,
.blog-info blockquote:after {
	content: '';
	width: 100px;
	position: absolute;
	right: 0;
	left: 0;
	margin: 0 auto;
	height: 2px;
	background: #f1f4f8;
}
.blog-info blockquote::before {
	top: 0;
}
.blog-info blockquote::after {
	bottom: 0;
}
.blog-info .form-row {
	margin: 2.5rem -10px;
}
.blog-info .card {
	margin-top: 3rem;
	margin-bottom: 3rem;
}
.blog-info__botauth {
	margin-bottom: 6rem;
}
.blog-info .wp-block-embed iframe {
	width: 100%;
	height: 380px;
	-webkit-border-radius: .375rem!important;
	   -moz-border-radius: .375rem!important;
	        border-radius: .375rem!important;
}
.card-img-top img {
    width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.main-error {
	padding: 48px 0 100px;
	margin-bottom: 0;
}

.cookies {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
	   -moz-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
	padding: 26px 0;
	position: fixed;
	right: 0;
	bottom: -200px;
	left: 0;
	z-index: 7;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-transform: translateZ(0);
}

.cookies.show {
	display: block;
	bottom: 0;
}

.cookies__wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.cookies .btn {
    width: auto;
    height: auto;
	font-weight: 600;
	font-size: 15px;
	line-height: 24px;
	padding: 6px 18px;
}
.cookies p {
	font-weight: bold;
	font-size: 18px;
	line-height: 150%;
	color: #032553;
}

.list-check {
	padding-left: 0 !important;
}
.list-check li {
	display: block !important;
	position: relative;
	padding-left: 37px;
}
.list-check li::before {
	font-family: 'Feather' !important;
	content: '\e92b';
	display: block;
	position: absolute;
	left: 0;
	top: 4px;
	font-size: 75%;
	height: -webkit-calc(1em + .5rem);
	height: -moz-calc(1em + .5rem);
	height: calc(1em + .5rem);
    padding-left: .25rem;
    padding-right: .25rem;
    -webkit-border-radius: 10rem;
       -moz-border-radius: 10rem;
            border-radius: 10rem;
	background-color: rgba(66,186,150,.1);
    color: #42ba96;
}
.blocks-gallery-grid {
	padding: 0 !important;
}
.card-img-top {
    overflow: hidden;
}
.schema-how-to-step img {
	width: 100%;
	height: auto;
}
.wp-block-yoast-faq-block .schema-faq-answer {
	margin: 10px 0;
}
.discount {
    background: #A0FFB5;
    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
            border-radius: 10px;
    padding: 20px 24px;
    margin-top: 32px;
    max-width: 368px;
}
.discount_saving__percent {
    font-weight: bold;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: #1D582A;
}
.discount_saving__label {
    font-size: 10px;
    line-height: 150%;
    color: #1D582A;
    margin-top: 4px;
}
.discount_text {
    font-size: 14px;
    line-height: 21px;
    color: #1D582A;
}
.discount_saving {
    border-right: 1px solid #67E884;
    padding-right: 16px;
    margin-right: 16px;
}
.discount_icon {
    margin-left: 18px;
	-webkit-animation: icon 1s linear 0s infinite;
	   -moz-animation: icon 1s linear 0s infinite;
	     -o-animation: icon 1s linear 0s infinite;
	        animation: icon 1s linear 0s infinite;
}

.discount_text__anim {
	-webkit-animation: text 1s linear 0s infinite;
	   -moz-animation: text 1s linear 0s infinite;
	     -o-animation: text 1s linear 0s infinite;
	        animation: text 1s linear 0s infinite;
}
.hidden {
    display: none;
}

.language_switcher select {
	width: 100%;
	max-width: 224px;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
    padding: 15px;
    border: none;
    background: #D9E2EF;
    font-family: HKGroteskPro,serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    color: #4B6485;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
.language_switcher select:focus {
	border: none;
	outline: none;
}
.language_switcher {
	position: relative;
	max-width: 224px;
}
.language_switcher::after {
	content: '';
	display: block;
	position: absolute;
	top: 15px;
	right: 16px;
	width: 27px;
	height: 27px;
	background: url('../img/lang.png') no-repeat 0 0 / cover;
	pointer-events: none;
}
.disable_header_and_footer .about__page {
	padding-top: 50px;
}
.ez-toc {
    padding: 2rem;
    border-radius: 0.375rem;
    box-shadow: 0 1.5rem 4rem rgb(22 28 45 / 5%);
}
.ez-toc-title {
    font-size: 1.3125rem;
    font-weight: bold;
}
.ez-toc-list {
    padding: 0 !important;
    padding-top: 15px !important;
}
.ez-toc-link {
    color: #161c2d;
}
.ez-toc-list > li > a {
    display: block;
    font-weight: 500;
    padding: 6px 16px 6px 12px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.ez-toc-list a:hover {
    color: #161c2d;
    text-decoration: none;
    background: #F9F9F9;
}
.ez-toc-list > li > ul > li > a {
    padding: 4px 24px 4px 32px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.show-more {
    width: 240px;
    margin: 24px auto 0;
}
[data-sidebar] {
    margin-bottom: 96px;
}

@-webkit-keyframes text {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-moz-keyframes text {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-o-keyframes text {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes text {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes icon {
	0% {
		margin-left: 18px;
	}
	50% {
		margin-left: 11px;
	}
	100% {
		margin-left: 18px;
	}
}

@-moz-keyframes icon {
	0% {
		margin-left: 18px;
	}
	50% {
		margin-left: 11px;
	}
	100% {
		margin-left: 18px;
	}
}

@-o-keyframes icon {
	0% {
		margin-left: 18px;
	}
	50% {
		margin-left: 11px;
	}
	100% {
		margin-left: 18px;
	}
}

@keyframes icon {
	0% {
		margin-left: 18px;
	}
	50% {
		margin-left: 11px;
	}
	100% {
		margin-left: 18px;
	}
}