:root{
	--blackColor:	#000000;
	--whiteColor: 	#ffffff;
	--textColor: 	#4C4C4C;
	--accentColor2: 	#717070;
	--accent:		#F2F2F2;
}
/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Inter';
	src:url('../fonts/Inter-Regular.ttf');
    font-weight:normal;
    font-style:normal;
}
@font-face {
	font-family:'Inter';
	src:url('../fonts/Inter-Bold.ttf');
    font-weight:bold;
    font-style:normal;
}
@font-face {
	font-family:'Inter';
	src:url('../fonts/Inter-SemiBold.ttf');
    font-weight:600;
    font-style:normal;
}
/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	background-color: var(--whiteColor);
	color: var(--textColor);
	font-family: "Inter",sans-serif;
	font-size: 20px;
	line-height: normal;
	margin-bottom: 70px;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color: inherit;
	text-decoration:none;
}
a:hover {
	text-decoration: underline;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid var(--blackColor);
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.cover_div_btn{
	display: flex;
  margin-right: 0;
  justify-content: center;
  max-width: 424px;
  margin-left: auto;
}
.div_btn a{
	position: relative;
	font-size: 16px;
}
.div_btn .check{
	text-decoration: underline;
}
.div_btn .check:hover{
	text-decoration: none;
}
.div_btn{
	text-align: center;
	max-width: 200px;
  float: right;
  padding-left: 0px;
/*  margin-left: 40px;*/
/*  margin-right: 135px;*/
}
.tarifs_about_text {
  margin-top: 70px;
}
.wrapper{
	display: flex;
	flex-flow: column;
	min-height: 100vh;
	position: relative;
}
.container {
	max-width:100%;
	width: 1470px;
	margin:0 auto;
	padding: 0 15px;
}
.container.large{
	width: 100%;
	max-width:1920px;
}
.d-flex{
	display: flex;
}
.a-center{
	align-items: center;
}
.j-between{
	justify-content: space-between;
}
.j-center{
	justify-content: center;
}
.text-center{
	text-align: center;
}
/* header */
.header {
	padding: 10px 0;
	position: relative;
	z-index: 10;
}
.header .btn{
	margin-left: 40px;
}
.header .social{
	margin-left: 130px;
}
.social a{
	font-size: 0;
}
.social a+a{
	margin-left: 25px;
}
/* logo */
.logo {

}
.logo-img {

}
/* nav */
.nav {
	margin-left: auto;
}
.nav > ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}
.nav > ul > li{
	margin: 0 .75em;
	position: relative;
}
.nav > ul > li a{
	text-decoration: none;
	position: relative;
	display: inline-block;
}
.nav > ul > li > a::after{
	content: '';
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: -2px;
	background-color: var(--textColor);
	transform: translateY(7px);
	opacity: 0;
	transition: all .5s ease;
}
.nav > ul > li:hover > a::after{
	opacity: 1;
	transform: translateY(0);
}
.nav > ul > li ul{
	position: absolute;
	list-style-type: none;
	margin: 0;
	padding: 0;
	visibility: hidden;
	opacity: 0;
	left: 0;
	top: 100%;
}
.nav > ul > li ul li a{
	margin-top: 15px;
}
.nav > ul > li:hover ul{
	visibility: visible;
	opacity: 1;
}
.nav > ul > li.menu-item-has-children{
	padding-right: 24px;
}
.nav > ul > li.menu-item-has-children:before{
	content: '';
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -12px;
	width: 24px;
	height: 24px;
	background-image: url(../img/Expand_down.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.nav > ul > li.pll-parent-menu-item{
	margin-left: 2.25em;
}

/* sidebar */
.sidebar {

}
/* footer */
.footer {
	padding-top: 20px;
	margin-top: auto;
	border-top: 2px solid var(--accent);
}

.btn{
	text-decoration: none;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	height: 3em;
	border-radius: .4em;
	background-color: var(--accentColor2);
	color: var(--whiteColor);
	padding: 0 .75em;
	min-width: 11.5em;
	border: none;
	transition: all .3s ease;
	text-decoration: none;
}
.btn.white{
	background-color: var(--accentColor2);
	color: 	var(--accent);
}
.btn:hover{
	opacity: 0.7;
	text-decoration: none;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/
main>section{
	margin-bottom: 70px;
}
.section-title{
	margin: 0 0 40px;
	text-align: center;
	font-size: 2.1em;
	font-weight: 600;
}
.section-intro{
	background-color: var(--accent);
	color: var(--textColor);
	position: relative;
	overflow: hidden;
	padding: 80px 0;
/*	min-height: calc(100vh - 80px);*/
}
.section-intro img{
	position: absolute;
	top: 0;
	left: 52.5%;
	width: 47.5%;
	height: 100%;
	object-fit: cover;
}
.section-intro .btn.white{
	background-color: #F65326;
	box-shadow: 3px 2px 6px rgba(0,0,0,0.4);
}
.section-programm .btn{
	background-color: #F65326;
	box-shadow: 3px 2px 6px rgba(0,0,0,0.4);
}
.section-reviews .btn{
	background-color: #F65326;
	box-shadow: 3px 2px 6px rgba(0,0,0,0.4);
}
.section-plans .btn{
	background-color: #F65326;
	box-shadow: 3px 2px 6px rgba(0,0,0,0.4);
}
.section-intro .col{
	width: 51.5%;
}
.section-intro h1{
	font-size: 2.5em;
	margin: 0 0 28px;
}
.section-intro p{
	margin: 20px 0 0;
}
.prog-list{
	margin-bottom: 55px;
}
.prog-list .item{
	position: relative;
}
.prog-list .item:before{
	content:'';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: var(--accent);
	opacity: 0.5;
}
.prog-list .item:last-child::before{
	display: none;
}
.prog-list .item .item-title{
	display: flex;
	align-items: center;
	padding: .9em 0;
	cursor: pointer;
}
.prog-list .item .item-text{
	display: none;
}
.prog-list .item .item-text .inner{
	padding-bottom: .9em;
}
.prog-list .item .item-text .inner>p{
	margin: 0;
	font-weight: 600;
}
.prog-list .item .item-text ol{
	margin: 20px 0 0;
	padding: 0;
	columns: 3;
	/*counter-reset: item;*/
	min-height:140px;
	list-style-type: none;
}
.prog-list .item .item-text ol li{
	margin-bottom: 20px;
	/*display: inline-block;*/
	break-inside: avoid-column;
}
.prog-list .item .item-text ol li span{
	color: var(--accentColor2);
}
/*.prog-list .item .item-text ol li:before {
            content: counter(item) ". ";
            counter-increment: item;
            color: var(--accent);
}*/
.prog-list .item .item-title p{
	margin: 0;
	font-size: 1.4em;
	font-weight: 600;
	margin-right: auto;
}
.prog-list .item .item-title a{
	display: inline-block;
    background-color: #F65326;
    color: var(--whiteColor);
    margin-right: 20px;
    font-size: 18px;
    border-radius: 8px;
    padding: 3px 14px;
    min-width: 125px;
    text-align: center;
}
.prog-list .item .item-title a:hover{
	text-decoration: none;
	opacity: 0.7;
}
.prog-list .item .item-title span{
	display: inline-block;
	background-color:var(--accentColor2);
	color: var(--whiteColor);
	margin-right: 20px;
	font-size: 18px;
	border-radius: 8px;
	padding: 3px 14px;
}
.prog-list .item .item-title span:nth-last-child(3){
	width: 135px;
	text-align: center;
}
.prog-list .item .item-title span:nth-last-child(2){
	width: 160px;
	text-align: center;
}
.prog-list .item .item-title .counter{
	/*margin-left: auto;*/
}
.plans-table table{
	width: 100%;
	text-align: center;
}
.plans-table th{
	font-size: 1em;
	font-weight: 600;
}
.plans-table th:first-child,
.plans-table td:first-child{
	text-align: left;
	max-width: 320px;
}
.plans-table td{
	padding: 10px 0;
	border-bottom: 1px solid var(--accentColor2);
}
.plans-table tr:nth-last-child(2) td,
.plans-table tr:last-child td{
	border-bottom: none;
}
.plans-table tr:last-child td{
	vertical-align: top;
}
.plans-table td:first-child span{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	min-width:30px;
	margin-right: 10px;
	font-size: 0;
	background-color: var(--accentColor2);
	vertical-align: bottom;
}

.plans-table .price{
	margin: 0 0 15px;
	font-size: 2em;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.plans-table .price span{
	font-size: .65em;
	position: relative;
	display: inline-block;
	color:rgba(76, 76, 76, 0.70);
}
.plans-table .price span:after{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	top: 50%;
	height: 1px;
	background: #F31616;
}
.gallery-images .row{
	display: grid;
	grid-gap: 10px;
	grid-template-columns: 1fr 1fr 1fr;
	margin-bottom: 10px;
}
.gallery-images{
	margin-bottom: 50px;
}
.gallery-images .row .item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/*.gallery-images .row:nth-child(odd) .item:nth-child(2),
.gallery-images .row:nth-child(odd) .item:nth-child(3){
	grid-row: span 2;
}
.gallery-images .row:nth-child(even) .item:nth-child(1),
.gallery-images .row:nth-child(even) .item:nth-child(2){
	grid-row: span 2;
}*/
.faq-list{
	margin-bottom: 50px;
}
.faq-list .item .item-title{
	padding: .9em 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.5em;
	color:var(--textColor);
	font-weight: 600;
	cursor: pointer;
}
.faq-list .item .item-title svg{
	min-width: 40px;
	margin-left: 15px;
}
.faq-list .item{
	position: relative;
}
.faq-list .item:before{
	content:'';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: var(--accent);
	opacity: 0.5;
}
.faq-list .item:last-child::before{
	display: none;
}
.faq-list .item .item-text{
	display: none;
}
.faq-list .item .item-text .inner{
	padding-bottom: 23px;
}
.accordeon .item-title.active svg path:first-child{
	display: none;
}


.section-about .col:first-child{
	width: 555px;
	margin-right: 20px;
	min-width:555px;
	max-width:50%;
	font-size: 0;
}
.section-about .col:first-child img{
	border-radius: 8px;
}
.section-about .col p{
	margin: 20px 0;
}
.seciton-form{
	position: relative;
	color: var(--whiteColor);
	padding: 42px 0;
}
.seciton-form:before{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-image: url(../img/form-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -2;
}
.seciton-form:after{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	background-color: var(--textColor);
	opacity: .9;
}
.form-title{
	font-size: 1.8em;
	font-weight: normal;
	margin: 0 60px 0 0;
	width: 534px;

}
.seciton-form .input-wrap{
	width: 200px;
	margin-right: 60px;
}
.seciton-form .input-wrap:last-child{
	width: 250px;
	margin-right: 0;
}
.seciton-form .input-wrap input{
	width: 100%;
	display: block;
	color: var(--whiteColor);
	border-bottom: 1px solid var(--whiteColor);
	border-top-width: 0;
	border-left-width: 0;
	border-right-width: 0;
	background: none;
	padding: 3px 15px;
	font-size: 0.8em;
}
.seciton-form .btn{
	background-color: var(--whiteColor);
	color:var(--textColor);
}
.section-programm svg path,
.section-faq svg path{
	stroke:var(--accentColor2);
}

header svg path,
footer svg path,
.social a svg path{
	fill:var(--accentColor2);
}

.slick-arrow svg path{
	stroke:var(--accentColor2);
}

.reviews-slider .item  svg path{
	fill:var(--accentColor2);
}

.seciton-form .input-wrap input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--whiteColor);
}
.seciton-form .input-wrap input::-moz-placeholder { /* Firefox 19+ */
  color: var(--whiteColor);
}
.seciton-form .input-wrap input:-ms-input-placeholder { /* IE 10+ */
  color: var(--whiteColor);
}
.seciton-form .input-wrap input:-moz-placeholder { /* Firefox 18- */
  color: var(--whiteColor);
}

.reviews-slider{
	margin: 0 0 50px;
	padding: 0 55px;
}
.slick-dots{
	list-style-type: none;
	margin: 30px 0 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.slick-dots li{
	margin-right: 14px;
	margin-left: 14px;
}
.slick-dots button{
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	color: inherit;
}
.slick-dots .slick-active button{
	color: var(--accent);
}
.slick-arrow{
	border: none;
	background: none;
	padding: 0;
	font-size: 0;
	position: absolute;
	top: calc(50% - 27px);
	transform: translateY(-50%);
}
.slick-arrow.slick-prev{
	left: 0;
}
.slick-arrow.slick-next{
	right: 0;
}
.reviews-slider .item .col{
	width: calc(50% - 15px);
}
.reviews-slider .item .col:first-child{
	font-size: 0;
}
.video-container{
	position: relative;
	padding-bottom: 56.25%;
}
.video-container .youtube{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.video-container .youtube img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.youtube .play-button {
	display: block;
	width: 90px;
	height: 60px;
	background-color: #333;
	box-shadow: 0 0 30px rgba( 0,0,0,0.6 );
	z-index: 1;
	opacity: 0.8;
	border-radius: 6px;
}
.youtube .play-button,
.youtube .play-button:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d( -50%, -50%, 0 );
}
.youtube .play-button:before {
	content: "";
	border-style: solid;
	border-width: 15px 0 15px 26.0px;
	border-color: transparent transparent transparent #fff;
}
.reviews-slider .item .col:first-child iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
.reviews-slider .item .text{
	padding-left: 15px;
	border-left: 3px solid var(--accent);
	margin-bottom: auto;
}
.reviews-slider .item .text>*:first-child{
	margin-top: 0;
}
.reviews-slider .item .text>*:last-child{
	margin-bottom: 0;
}
.reviews-slider .item .col:last-child{
	display: flex;
	flex-flow: column;
}
.reviews-slider .item .name{
	font-size: 1.2em;
	font-weight: 600;
	margin-right: 10px;
}
.reviews-slider .item .name span{
	font-weight: normal;
	font-size: .6em;
}
.reviews-slider .item .col:last-child .d-flex{
	align-items: flex-end;
}
.reviews-slider .item .col:last-child a{
	margin-left: 10px;
}
/*------------------------------------*\
    MODAL
\*------------------------------------*/

.modal,
.modal-box {
  z-index: 900;
}

.modal-sandbox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
}

.modal {
  display: none; 
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(0,0,0);
  background: rgba(0,0,0,.8);
  overflow: auto;
}

.modal-box {
  position: relative;
  width: 600px;
  max-width: 95%;
  margin: 100px auto;
  animation-name: modalbox;
  animation-duration: .4s;
  animation-timing-function: cubic-bezier(0,0,.3,1.6);
}


.modal-body {
  background: var(--whiteColor);
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

/* Close Button */
.close-modal {
  text-align: right;
  cursor: pointer;
}
.modal-body>.close-modal{
	position: absolute;
	top: 0;
	right: 0;
}

/* Animation */
@-webkit-keyframes modalbox {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}

@keyframes modalbox {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}


.form-wrap .col:first-child{
	font-size: 0;
	width: 282px;
	min-width:282px;
}
.form-wrap .col:first-child img{
	width: 100%;
	height: 100%;
	object-fit: cover
}
.single-col p{
	margin: 0;
}
.single-col{
	padding: 35px 40px;
}
.form-wrap .col:last-child{
	width: 100%;
	padding: 35px 20px;
}
.modal-title{
	margin: 0 0 50px;
	font-size: 1.4em;
	font-weight: 600;
}
.single-col input,
.form-wrap input{
	display: block;
	width: 100%;
	max-width:200px;
	margin: 0 0 18px;
	border-top-width: 0;
	border-left-width: 0;
	border-right-width: 0;
	background: none;
	padding: 3px 15px;
	border-bottom: 1px solid var(--accent);
}
.single-col input{
	margin-right: auto;
	margin-left: auto;
	max-width: 300px;
}
.single-col .btn,
.form-wrap .btn{
	margin-top: 50px;
}
.form-wrap .social{
	margin-top: 20px;
	width: 200px;
	justify-content: center;
}
.wpcf7-not-valid-tip{
	display: none;
}
.wpcf7 form .wpcf7-response-output{
	display: none;
}
input[aria-invalid="true"]{
	border-bottom-color: red !important;
}
/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

.mob-menu-toggle,
.mob-menu{
	display: none;
}
.mob-menu{
	position: absolute;
	top: 68px;
	width: 100%;
	left: 0;
	background-color: var(--whiteColor);
	z-index: 10;
}
.mob-menu .inner{
	padding: 1em .75em 2em;
}
.mob-menu .nav > ul{
	flex-direction: column;
	align-items: flex-start;
}
.mob-menu .nav > ul > li{
	margin: 0 0 1em;
}
.mob-menu .nav > ul > li.pll-parent-menu-item{
	margin: 2em 0 0;
}
.mob-menu .nav > ul > li.pll-parent-menu-item>a{
	display: none;
}
.mob-menu .nav > ul > li ul{
	position: static;
	display: flex;
	visibility: visible;
	opacity: 1;
}
.mob-menu .nav > ul > li ul li a{
	margin: 0 1em 0 0;
}
.mob-menu .social{
	margin-top: 2em;
}
.mob-menu .nav > ul > li.menu-item-has-children{
	padding: 0;
}
.mob-menu .nav > ul > li.menu-item-has-children:before{
	display: none;
}
/* Icon 1 */

.mob-menu-toggle {
  width: 40px;
  height: 21px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  background: none;
  padding: 0;
  border: none;
  font-size: 0;
}

.mob-menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--accentColor2);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.mob-menu-toggle span:nth-child(1) {
  top: 0px;
}

.mob-menu-toggle span:nth-child(2) {
  top: 9px;
}

.mob-menu-toggle span:nth-child(3) {
  top: 18px;
}

.mob-menu-toggle.open span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.mob-menu-toggle.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.mob-menu-toggle.open span:nth-child(3) {
  top: 9px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.video_rew a{
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
  background-color: #F65326;
  color: var(--whiteColor);
  padding: 20px 0;
  border-radius: .4em;
  cursor: pointer;
  animation: pulse 1.3s infinite;
  font-size: .8em;
  width: 100%;
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
}
.video_rew a:hover{
	text-decoration: none;
}
.video_rew .btn{
	transform: translateY(0%);
	color: var(--textColor);
	background-color: var(--whiteColor);
	animation: 2s tremor ease-out infinite;
}
.al_discount{
	text-align: right;
	color: #F65326;
	margin-right: 60px
}
@keyframes tremor {
    0%{
        transform: translateY(-4%);
    }
     2% {
        transform: translateY(0%);
    }
     3% {
        transform: translateY(4%);
    }
    50%{
        left: 0px;
        transform: translateY(0%);
    } 
    100% {
        left: 0px;
        transform: translateY(0%);
    }
}
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(246,83,38, 0.7);
	}

	70% {
		box-shadow: 0 0 0 20px rgba(246,83,38, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(246,83,38, 0);
	}
}


.additional_btns{
	margin-top: 15px;
}
.additional_btns .btn{
	max-width: 184px;
}


@media only screen and (max-width:1660px) {
	.cover_div_btn{
		max-width: 304px;
	}
	body{
		font-size: 16px;
	}
	.container{
		width: 1170px;
	}
	.header .social{
		margin-left: 30px;
	}
}
@media only screen and (max-width:1199px){
	.cover_div_btn {
	  max-width: 26.75%;
	}
	.mob-menu-toggle{
		display: block;
	}
	.header nav,
	.header .social{
		display: none;
	}
	.header .d-flex{
		justify-content: space-between;
	}
	.header .btn{
		margin-left: 0;
	}
	.section-intro{
		min-height:0;
	}
	.section-about .col:first-child{
		width: 400px;
		min-width: 400px
	}
	.seciton-form .container>.d-flex{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.form-title{
		width: 100%;	
		margin: 0 0 1em;
		text-align: center;	
	}
}
@media only screen and (max-width:1023px){
	.div_btn .check{
		display: block;
		margin-top: 10px;
	}
	.cover_div_btn {
	  max-width: 31.3%;
	}
	.div_btn a{
		font-size: 13px;
	}
	.al_discount{
		margin-right: 140px;
	}
	body{
		font-size: 14px;
	}
	.header .btn{
		display: none;
	}
	.mob-menu{top: 53px;}
	.plans-table tr:last-child td .btn{
		min-width: 0;
		padding: 0 2em;
		font-size: .7em;
	}
	.plans-table th:first-child, .plans-table td:first-child{
		max-width:230px
	}
	.seciton-form .input-wrap{
		width: auto;
	}
	.section-about .d-flex{
		flex-direction: column;
	}
	.section-about .col:last-child,
	.section-about .col:first-child{
		width: 100%;
	}
	.section-about .col:first-child{
		margin: 0;
		min-width: 0;
		max-width:100%;
		text-align: center;
	}
	.prog-list .item .item-title span,
	.prog-list .item .item-title a{
		font-size: 14px;
		margin-right: 10px;
	}
	.prog-list .item .item-title span:nth-last-child(2){
		width: 130px;
	}
	.prog-list .item .item-title p{
		max-width: 280px;
	}
	.prog-list .item .item-title span:nth-last-child(3){
		width: 110px;
	}
}
@media only screen and (max-width: 767px) {
	.cover_div_btn{
		max-width: none;
		justify-content: flex-end;
		margin-top: 10px;
	}
	.div_btn a{
		font-size: 11px;
		display: block;
	}
	.al_discount{
		margin-right: 0px;
	}
	.prog-list .item .item-title{
		flex-wrap: wrap;
		position: relative;
	}
	.prog-list .item .item-title svg{
		position: absolute;
		top: 0.4em;
		right: 0;
	}
	.prog-list .item .item-title .counter{
		margin-left: 0;
	}
	.prog-list .item .item-title p{
		max-width: 100%;
		width: calc(100% - 40px);
		margin-bottom: 10px;
	}
	.prog-list .item .item-title span{
		/*order: 2;*/
	}
	.plans-table{
		width: 100%;
		overflow-x: auto;
	}
	.plans-table table{
		min-width: 738px;
	}
	.plans-table th:nth-child(2), .plans-table td:nth-child(2){
		max-width: 100px;
		width: 100px;
	}
	.logo img{
		display: block;
		max-width: 195px;
	}
	.plans-table th:last-child, .plans-table td:last-child{
		max-width: 100px;
		width: 100px;
	}
	.section-plans .container{
		padding-left: 5px;
		padding-right: 5px;
	}
	.plans-table th:first-child, .plans-table td:first-child{
		max-width: none;
		font-size: .8em;
	}
	.plans-table th{
		font-size: 0.75em;
	}
	.plans-table td:first-child span{
		width: 24px;
		height: 24px;
		min-width: 24px;
		padding: 3px;
		display: none;
	}
	.plans-table td svg{
		width: 30px;
		height: 30px;
	}
	.plans-table .price{
		font-size: 1.4em;
	}
	.plans-table tr:last-child td .btn{
		padding: 0 1.5em;
		font-size: 0.8em;
	}
	.wpcf7-form>.d-flex{
		flex-direction: column;
	}
	.section-intro img{
		width: 100%;
		left: 0;
		z-index: -2;
	}
	.section-intro{
		background: none;
		padding: 2em 0;
	}
	.section-intro:before{
		content:'';
		display: block;
		position: absolute;
		z-index: -1;
		background-color: var(--accent);
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0.9;
	}
	.section-intro .col{
		width: 100%;
		min-width: 0;
	}
	main>section{
		margin-bottom: 3em;
	}
	.section-title{
		margin-bottom: 1em;
	}
	.prog-list .item .item-text ol{
		columns:2
	}
	.form-wrap .col:first-child{
		width: 120px;
		min-width: 120px;
	}
	.gallery-images .row{
		grid-template-columns: repeat(3,1fr);
		grid-gap: 5px;
		margin-bottom: 5px;
	}
	.seciton-form .input-wrap{
		margin: 0 0 30px;
	}
	.seciton-form .input-wrap:last-child{
		text-align: center;
		margin-bottom: 0;
	}
	.section-intro h1 br{
		display: none;
	}
	.reviews-slider{
		padding: 0 35px;
	}
	.reviews-slider .item>.d-flex{
		flex-direction: column;
	}
	.reviews-slider .item .col:last-child,
	.reviews-slider .item .col:first-child{
		width: 100%;
	}
	.reviews-slider .item .text{
		padding-top: 15px;
		margin-bottom: 15px;
	}
	.slick-dots li{
		margin-left: 5px;
		margin-right: 5px;
	}
	.footer .pages,
	.footer .container>.d-flex{
		display: flex;
		flex-direction: column;
	}
	.footer .pages {
		margin: 20px 0;
		justify-content: center;
		align-items: center;
	}
	.footer .pages a+a{
		margin-top: 10px;
	}
	.plans-table td{
		padding: 5px 0;
	}
	.prog-list .item .item-title span:nth-last-child(3),
	.prog-list .item .item-title span:nth-last-child(2){
		width: auto;
	}
	.prog-list .item .item-title a{
		min-width: 0;
	}
}
@media only screen and (max-width:600px){
 .video_rew a{
    transform: translate(-50%,0) rotate(-0deg);
    top: auto;
    bottom: -2px;
    left: 50%;
    width: 96%;
    text-align: center;
  }
 .video_rew a .btn{
		padding: 0;
		background-color: transparent;
		display: inline;
		color: var(--whiteColor);
		height: auto;
		animation: none;
	}
	.plans-table th:first-child, .plans-table td:first-child{
		width: 40%;
		max-width: 40%;
	}
	.plans-table tr:last-child td .btn{
		padding: 0 1em;
	}
	.prog-list .item .item-title span,
	.prog-list .item .item-title a{
		font-size: 12px;
		margin-right: 10px;
	}
	header .logo a{
		max-width: 44px;
  	display: block;
  	overflow: hidden;
	}
	.header .d-flex{
		display: flex;
		margin-left: 0;
	}
}



/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
