@charset "utf-8";
/* CSS Document */

/*--------RESET-CSS--------*/
body {
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	padding:0;
	background:#0b0c15;
	color:#fff;
	text-align:center;
	font-family: 'Plus Jakarta Sans';
	font-weight:300;
	}
div, ul, h1, h2, h3, h4, h5, li, p, img, form, input, textarea {margin: 0;padding: 0;}
header, section, footer, aside, nav, main, article, figure {display: block;}
table, tr, td {border: 0;}
a {outline: none;color: inherit;text-decoration: none;}
img {border: none; height:auto;}
li {list-style: none;}
* {box-sizing: border-box;}
.img-full {max-width: 100%;}
.clearall {
	clear: both;
	font-size: 1px;
	line-height: 1px;
	height: 1px;
	}
.wrapper{ overflow: hidden;}

/*--------fonts--------*/
@font-face {
	font-family: 'Plus Jakarta Sans';
	src: url('PlusJakartaSans-Light.woff2') format('woff2'),
	url('PlusJakartaSans-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
	}
@font-face {
	font-family: 'Plus Jakarta Sans';
	src: url('PlusJakartaSans-ExtraBold.woff2') format('woff2'),
	url('PlusJakartaSans-ExtraBold.woff') format('woff');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
	}
@font-face {
	font-family: 'Plus Jakarta Sans';
	src: url('PlusJakartaSans-Regular.woff2') format('woff2'),
	url('PlusJakartaSans-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	}


/*--------MAIN-CSS--------*/
.container {
	width:1170px;
	margin:0 auto;
	padding:0;
	position:relative;
	}

/*--------Header--------*/
.header{
	float: left;
	width: 100%;
	margin-bottom:120px;
	position:relative;
	z-index:3;
	}
.header__fixed{
	float:left;
	width:100%;
	height:120px;
	padding:35px 0;
	margin-top:-120px;
	top:120px;
	position:relative;
	}
.fixed-nav .header__fixed{
	position: fixed;
	z-index: 11;
	background:#0b0c15;
	-webkit-transition: margin .3s ease-out;
	transition: margin .3s ease-out;
	margin-top:0;
	top:0;
	-webkit-box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	}	
.header__inner{
	float:left;
	width:100%;
	display:flex;
	align-items:center;
	justify-content:space-between;
	}

.header__logo{
	width:220px;
	color:#fff;
	font-size:22px;
	line-height:22px;
	font-weight:800;
	margin-top:-6px;
	white-space:nowrap;
	}

ul.header__menu{
	width:auto;
	margin-top:-2px;
	}
ul.header__menu li{
	float:left;
	margin:0 20px;
	padding:0 2px;
	position:relative;
	}
ul.header__menu li a{
	color:#fff;
	font-size:16px;
	line-height:16px;
	font-weight:400;
	}
/*ul.header__menu li:after{
	content:'';
	width:1px;
	background:#b0d7d9;
	top:6px;
	bottom:3px;
	position:absolute;
	right:0;
	}	
ul.header__menu li:last-child:after{display:none;}*/

ul.header__menu li a::after{
	content: '';
	position:absolute;
	width: 100%;
	height: 2px;
	left: 0;
	bottom: -5px;
	background-color: #fff;
	border-radius: 5px;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.2s;
	}
ul.header__menu li a:hover::after, ul.header__menu li a.active::after {
	transform-origin: left;
	transform: scaleX(1);
	}
.header__right{
	width:220px;
	display:flex;
	align-items:center;
	justify-content: space-between;
	}
.header__user{
	width:20px;
	}
.header__user img{
	display:block;
	margin:0 auto;
	max-width:100%;
	}
a.header__button{
    float: right;
	width:160px;
	height:50px;
	border-radius:10px;
	color:#fff;
    font-size:18px;
    line-height:46px;
	font-weight:800;
	letter-spacing:0.5px;
	/*background: rgb(255,188,14);
	background: linear-gradient(90deg, rgba(255,188,14,1) 0%, rgba(255,229,0,1) 100%);*/
	background:#ff0000;
	}


/*--------MENU-ICON-MOBILE--------*/
.menu-icon-mobile{
    cursor: pointer;
    position:absolute;
    right:15px;
    top:12px;
	z-index:16;
	height:25px;
	}
.menu-icon-mobile button{
	outline: none;
    -webkit-appearance: none;
	background: none;
	padding:0;
    cursor: pointer;
	border: none;
	}
.menu-icon-mobile span{
	color:#000;
	display:inline-block;
	vertical-align:top;
	font-size:16px;
	font-weight:300;
	margin-top:4px;
	margin-right:5px;
	}
.bar1, .bar2, .bar3 {
	width:25px;
	height:3px;
	background-color: #fff;
	transition: 0.4s;
	-webkit-border-radius: 4px 4px 4px 4px;
	border-radius: 4px 4px 4px 4px;
	}
.bar2{margin:4px 0;}
.dl-active .bar1 {
	-webkit-transform: rotate(-45deg) translate(-5px, 5px);
	transform: rotate(-45deg) translate(-5px, 5px);
	background:#fff;
	}
.dl-active .bar2 {opacity: 0;}
.dl-active .bar3 {
	-webkit-transform: rotate(45deg) translate(-5px, -5px);
	transform: rotate(45deg) translate(-5px, -5px);
	background:#fff;
	}	
.mobile-menu{
	left:0;
	position:fixed;
	top:0;
	background:#060715;
	z-index:10;
	right:0;
	bottom:0;
	overflow:scroll;
	display:none;
	}
.mobimenu-top{ top:0;}	
.mobile-menu li{
	float:left;
	width:100%;
	text-align:center;
	}
.mobile-menu li a{
	float:left;
	width:100%;
	padding:15px 20px;
	font-size:18px;
	color:#fff;
	font-weight:400;
	}
.mobile-menu li a.header__logo{
	font-size:22px;
	line-height:22px;
	font-weight:800;
	text-align:left;
	padding:35px 10px;
	}
.mobile-menu li a.header__button{
    float: none;
	display:inline-block;
	vertical-align:top;
	width:160px;
	height:50px;
	color:#fff;
    font-size:18px;
    line-height:46px;
	font-weight:800;
	letter-spacing:0.5px;
	padding:0;
	margin-top:30px;
	}

/*--------BANNER--------*/
.banner{
	float:left;
	width:100%;
	overflow:hidden;
	position:relative;
	background:url(../images/banner-background.jpg) no-repeat center center #0a0b16;
	background-size:cover;
	}
.banner:after {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    width: 85%;
    height: 130%;
    transform: translateX(-50%);
    background: url(../images/circle.png) no-repeat center center;
    background-size: contain;
	transition: all 0.5s ease;
	animation:open 4s ease 1;
	}
@keyframes open{
	0%{ transform: translate(-50%, -80%);}
	100%{ transform:translate(-50%, 0);}
}
.banner .lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: 1.5s all ease;
	}

.line__container{
	position: relative;
    width: 100%;
    height: 1px;
    margin-bottom: 5px;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,0.1) 96%, rgba(255,255,255,0) 100%);
	}
.line__container:nth-child(1) {
    position: absolute;
    top: 10%;
    left: 0;
    transform: rotate(90deg);
	}
.line__container:nth-child(2) {
    position: absolute;
    top: 10%;
    left: 4.5%;
    transform: rotate(75deg);
	}
.line__container:nth-child(3) {
    position: absolute;
    top: 10%;
    right: 4.5%;
    transform: rotate(105deg);
	}
.line__container:nth-child(4) {
    position: absolute;
    top: 10%;
    left: 9.5%;
    transform: rotate(60deg);
	}
.line__container:nth-child(5) {
    position: absolute;
    top: 10%;
    right: 9.5%;
    transform: rotate(120deg);
	}
.line__container:nth-child(6) {
    position: absolute;
    top: 10%;
    left: 15.8%;
    transform: rotate(45deg);
	}
.line__container:nth-child(7) {
    position: absolute;
    top: 10%;
    right: 15.8%;
    transform: rotate(135deg);
	}
.line__container:nth-child(8) {
    position: absolute;
    top: 10%;
    left: 25%;
    transform: rotate(30deg);
	}
.line__container:nth-child(9) {
    position: absolute;
    top: 10%;
    right: 25%;
    transform: rotate(150deg);
	}
.line__container:nth-child(10) {
    position: absolute;
    top: 10%;
    left: 48.5%;
    transform: rotate(15deg);
	}
.line__container:nth-child(11) {
    position: absolute;
    top: 10%;
    right: 48.5%;
    transform: rotate(165deg);
	}
.animated__line{
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 100%);
    animation: moveLine 3s linear infinite;
	}
.line__container:nth-child(8) .animated__line{ animation-delay:0.1s;}
.line__container:nth-child(9) .animated__line{ animation-delay:0.1s;}
.line__container:nth-child(10) .animated__line{ animation-delay:0.5s;}
.line__container:nth-child(11) .animated__line{ animation-delay:0.5s;}
@keyframes moveLine {
	0% { left: 0; opacity:1;}
	85% { opacity:1;}
	100% { left: 100%; opacity:0;}
	}
.banner__inner{
	float:left;
	width:100%;
	padding:50px 0 180px;
	display:flex;
	align-items:center;
	flex-direction:column;
	position:relative;
	z-index:1;
	}
.banner__top_text{
	width:auto;
	color:#fff;
	font-size:16px;
	line-height:24px;
	font-weight:400;
	letter-spacing:0.5px;
	padding:5px 35px 8px;
	border-radius:50px;
	background: rgb(208,29,112);
	background: linear-gradient(90deg, rgba(208,29,112,1) 0%, rgba(248,115,65,1) 100%);
	}
.banner__heading{
	width:auto;
	color:#fff;
	font-size:65px;
	line-height:79px;
	font-weight:800;
	letter-spacing:1px;
	margin-top:30px;
	}
.banner__text2{
	width:auto;
	color:#fff;
	font-size:24px;
	line-height:34px;
	font-weight:300;
	margin-top:35px;
	}
.scroll_to{
	position:absolute;
	bottom:10px;
	left:50%;
	width:200px;
	height:70px;
	margin-left:-100px;
	}
.scroll_to span{
	display:block;
	margin:0 auto;
	width:1px;
	height:100%;
	background:#85868a;
	}

.button__box{
	float:left;
	width:100%;
	margin-top:50px;
	}
.common__button{
	display:inline-block;
	vertical-align:top;
	width:200px;
	height:70px;
	text-align:center;
	border-radius: 10px;
    color: #fff;
    font-size: 20px;
    line-height: 66px;
    font-weight: 800;
	letter-spacing:0.5px;
	background: #ff0000;
    /*background: rgb(255, 188, 14);
    background: linear-gradient(90deg, rgba(255, 188, 14, 1) 0%, rgba(255, 229, 0, 1) 100%);*/
	}



/*--------SECTION-1--------*/
.section1{
	float:left;
	width:100%;
	padding:80px 0 150px;
	background:#0a0b16;
	position:relative;
	}
.heading__left{
	float:left;
	width:65%;
	text-align:left;
	}
.common__heading{
	font-size:52px;
	line-height:62px;
	font-weight:800;
	letter-spacing:1px;
	}
.common__text{
	font-size:20px;
	line-height:26px;
	font-weight:300;
	margin-top:35px;
	}
.s1__slider_row{
	float:left;
	max-width:1545px;
	}
.s1__slide_col{
	width:370px !important;
	background:#0a0b16;
	padding:35px 80px 60px 35px;
	margin-top:60px;
	margin-right:25px;
	text-align:left;
	border:1px solid #f1ce5b;
	border-radius:4px;
	}
.s1__slide_col2 { border-color:#146ef5;}
.s1__slide_col3 { border-color:#52eda6;}
.s1__slide_col4 { border-color:#ed52cb;}

.s1__col_icon{
	float:left;
	width:52px;
	}
.s1__col_head{
	float:left;
	width:100%;
	margin-top:50px;
	font-size:50px;
	line-height:50px;
	font-weight:800;
	}
.s1__col_text{
	float:left;
	width:100%;
	margin-top:25px;
	font-size:26px;
	line-height:38px;
	font-weight:300;
	}

/*--------SECTION-2--------*/
.section2{
	float:left;
	width:100%;
	padding:40px 0 120px;
	background:#0a0b16;
	position:relative;
	}
.s2__inner{
	float:left;
	width:100%;
	margin-top:50px;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	row-gap:30px;
	}
.s2__col{
	width:32%;
	text-align:left;
	border:1px solid #2f3643;
	border-radius:10px;
	padding:30px 40px 35px 30px;
	background: rgb(8,8,10);
    background-image: radial-gradient(farthest-side at 100% 100%, rgba(31,35,46,1), rgba(8,8,10,1));
	}
.s2__col img{
	float:left;
	width:39px;
	}
.s2__col_head{
	float:left;
	width:100%;
	color:#fff;
	font-size:30px;
	line-height:40px;
	font-weight:800;
	margin-top:30px;
	}
.s2__col_text{
	float:left;
	width:100%;
	color:#fff;
	font-size:18px;
	line-height:28px;
	font-weight:300;
	margin-top:30px;
	}

/*--------SECTION-3--------*/
.section3{
	float:left;
	width:100%;
	padding:40px 0 140px;
	background:#0a0b16;
	position:relative;
	}
.s3__row{
	float:left;
	width:100%;
	margin-top:50px;
	display:flex;
	flex-wrap:wrap;
	row-gap:45px;
	justify-content:space-between;
	}
.s3__col{
	width:22%;
	background:#fff;
	overflow:hidden;
	position:relative;
	border-radius:20px;
	}
.s3__col img{
	float:left;
	width:100%;
	}
.s3__col p{
	position:absolute;
	bottom:30px;
	left:50%;
	transform:translateX(-50%);
	color:#000;
	font-size:24px;
	line-height:24px;
	font-weight:800;
	white-space:nowrap;
	}
	
/*--------SECTION-4--------*/
.section4{
	float:left;
	width:100%;
	padding:20px 0 80px;
	background:#0a0b16;
	position:relative;
	}
.s4__inner{
	display:inline-block;
	vertical-align:top;
	width:860px;
	max-width:100%;
	}
.s4__row{
	float:left;
	width:100%;
	margin-top:80px;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	}
.s4__col{
	width:48%;
	}
.s4__col_top{
	float:left;
	width:100%;
	height:30px;
	border:2px solid #ff5245;
	border-bottom:none;
	border-radius:20px 20px 0 0;
	}
.s4__col_green .s4__col_top{
	border:2px solid #6dac19;
	border-bottom:none;
	}
.s4__top_name{
	display:inline-block;
	vertical-align:top;
	font-size:16px;
	line-height:26px;
	font-weight:800;
	text-transform:uppercase;
	padding:4px 25px 8px;
	margin-top:-20px;
	border-radius:50px;
	background: rgb(255,124,83);
	background: linear-gradient(90deg, rgba(255,124,83,1) 0%, rgba(255,83,69,1) 100%);
	}
.s4__col_green .s4__col_top .s4__top_name{
	background: rgb(153,205,84);
	background: linear-gradient(90deg, rgba(153,205,84,1) 0%, rgba(109,173,25,1) 100%);
	}
.s4__box{
	float:left;
	width:100%;
	margin-top:15px;
	overflow:hidden;
	border-radius:20px;
	}
.s4__box_top{
	float:left;
	width:100%;
	position:relative;
	}
.s4__box_text{
	float:left;
	width:100%;
	background:#ff5245;
	font-size:18px;
	line-height:26px;
	font-weight:800;
	letter-spacing:0.5px;
	text-transform:uppercase;
	padding:10px 20px 14px;
	}
.s4__box_green .s4__box_text{background:#6dac19;}
.s4__box_head{
	float:left;
	width:100%;
	font-size:50px;
	line-height:50px;
	font-weight:800;
	letter-spacing:1px;
	text-transform:uppercase;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	padding:50px 20px 65px;
	background: rgb(255,82,69);
	background: linear-gradient(90deg, rgba(255,82,69,1) 0%, rgba(255,125,83,1) 100%);
	}
.s4__box_green .s4__box_head{
	background: rgb(109,172,25);
	background: linear-gradient(90deg, rgba(109,172,25,1) 0%, rgba(152,205,83,1) 100%);
	}
.s4__box_icon{
	width:70px;
	height:70px;
	border-radius:10px;
	position:absolute;
	bottom:-35px;
	left:50%;
	margin-left:-35px;
	background:#fff;
	border:2px solid #ff684c;
	display: grid;
    place-items: center;
	}
.s4__box_green .s4__box_icon{ border-color:#84bd37;}
.s4__box_icon img{
	display:block;
	margin:0 auto;
	width:43px;
	max-width:100%;
	}
.s4__box_bottom{
	float:left;
	width:100%;
	background:#fff;
	padding:55px 25px 50px 30px;
	}
.s4__box_about{
	float:left;
	width:100%;
	color:#000;
	font-size:20px;
	line-height:30px;
	font-weight:300;
	}
.s4__box_list{
	float:left;
	width:100%;
	margin-top:20px;
	}
.s4__box_list li{
	float:left;
	width:100%;
	margin-top:8px;
	color:#000;
	font-size:18px;
	line-height:30px;
	font-weight:400;
	text-align:left;
	padding-left:45px;
	padding-bottom:5px;
	background:url(../images/s4-left-check.png) no-repeat 0px 2px;
	background-size:30px;
	}
.s4__box_green .s4__box_list li{
	background:url(../images/s4-right-check.png) no-repeat 0px 2px;
	background-size:30px;
	}


/*--------SECTION-5--------*/
.section5{
	float:left;
	width:100%;
	padding:50px 0 80px;
	background:#0a0b16;
	position:relative;
	}
.section5:after{
	content:'';
	position:absolute;
	top:0;
	left:50%;
	width:1px;
	height:80px;
	background:#85868a;
	}
.s5__inner{
	float:left;
	width:100%;
	border-radius:16px;
	padding:50px 65px 70px;
	background: url(../images/s5-bg.jpg) no-repeat center center #05050b;
	background-size:cover;
	display:flex;
	align-items:center;
	justify-content:space-between;
	}
.s5__left{
	width:52%;
	text-align:left;
	}
.s5__link{
	display:inline-block;
	vertical-align:top;
	margin-top:50px;
	color:#4378ff;
	font-size:20px;
	line-height:20px;
	font-weight:300;
	text-decoration:underline;
	text-underline-offset: 3px;
    text-decoration-thickness: 2px;
	text-decoration-color:#1e387b;
	}
.s5__right{
	width:42%;
	padding-top:30px;
	}
.s5__form{
	float:left;
	width:100%;
	}
.s5__input{
	float:left;
	width:100%;
	margin-bottom:8px;
	border:1px solid #393939;
	border-radius:4px;
	overflow:hidden;
	}
.s5__input input, .s5__input textarea{
	float:left;
	width:100%;
	height:55px;
	-webkit-appearance:none;
	border:none;
	outline:none;
	background:#1a1a1f;
	padding:14px 50px 18px 22px;
	font-family: 'Plus Jakarta Sans';
	color:#a9a9a9;
	font-size:16px;
	line-height:16px;
	font-weight:300;
	}
.s5__input textarea{
	resize:none;
	min-height:100px;
	padding-top:18px;
	}
.s5__button{
	float:left;
	width:200px;
	height:65px;
	border:none;
	outline:none;
	margin-top:25px;
	padding:20px 10px 25px;
	cursor:pointer;
	border-radius:10px;
	font-family: 'Plus Jakarta Sans';
	color:#fff;
	font-size:20px;
	line-height:20px;
	font-weight:800;
	letter-spacing:0.5px;
	/*background: rgb(255, 188, 14);
    background: linear-gradient(90deg, rgba(255, 188, 14, 1) 0%, rgba(255, 229, 0, 1) 100%);*/
	background:#ff0000;
	}

/*--------FOOTER--------*/
.footer{
	float:left;
	width:100%;
	background:#0a0b16;
	padding:40px 0;
	border-top:1px solid #222;
	}
.footer__logo{
	display:inline-block;
	vertical-align:top;
	margin-bottom:20px;
    color: #fff;
    font-size: 22px;
    line-height: 22px;
    font-weight: 800;
	}
.footer__text{
	float:left;
	width:100%;
	margin-top:10px;
	font-size:16px;
	line-height:24px;
	font-weight:300;
	}
.footer__text a{
	display:inline-block;
	vertical-align:middle;
	padding:0 10px;
	}


/*--------COMMON--------*/
.showTab, .showMob{ display:none;}
.showDesk{ display:block;}
.hideDesk{ display:none;}
	

/*--------Media-Querry--------*/

@media only screen and (max-width:1200px){
.container{width:1004px;}

.header { margin-bottom: 110px;}
.header__fixed { height: 110px; padding: 30px 0; margin-top: -110px; top: 110px;}
.banner__inner { padding: 40px 0 140px;}
.banner__heading { font-size: 50px; line-height: 66px;}

.section1 { padding: 60px 0 120px;}
.common__heading { font-size: 46px; line-height: 56px;}
.s1__slide_col { width: 320px !important; padding: 35px 30px 40px 30px; margin-top: 50px; margin-right: 20px;}
.s1__col_head { font-size: 45px; line-height: 45px;}
.s1__col_text { margin-top: 25px; font-size: 24px; line-height: 36px;}

.s2__col { padding: 30px 15px 35px 30px;}

.section3 { padding: 40px 0 120px;}

.section4 { padding: 20px 0 60px;}

.section5 { padding: 50px 0 60px;}

}


@media only screen and (max-width:1023px){
.container{width:750px;}

.showDesk{display: none;}
.showTab{display: block;}

.header { margin-bottom: 85px;}
.header__fixed { height: 85px; padding: 20px 0; margin-top: -85px; top: 85px;}
.header__inner { padding-right:60px;}
a.header__button { width: 150px; height: 45px; font-size: 16px; line-height: 41px;}

.banner:after { width: 100%;}
.banner__inner { padding: 20px 0 80px;}
.banner__top_text { letter-spacing: 0; padding: 5px 20px 8px;}
.banner__heading { font-size: 40px; line-height: 54px;}
.banner__text2 { font-size: 20px; line-height: 30px; margin-top: 30px;}
.button__box { margin-top: 40px;}
.common__button { height: 60px; font-size: 20px; line-height: 58px;}
.scroll_to { height: 50px;}

.section1 { padding: 40px 0 100px;}
.common__heading { font-size: 36px; line-height: 46px;}
.common__text { font-size: 18px; margin-top: 25px;}
.s1__slide_col { width: 240px !important; padding: 25px 15px 30px 15px; margin-top: 40px; margin-right: 15px;}
.s1__col_icon { width: 45px;}
.s1__col_head { font-size: 32px; line-height: 32px; margin-top:40px;}
.s1__col_text { margin-top: 25px; font-size: 20px; line-height: 30px;}

.section2 { padding: 40px 0 100px;}
.s2__col { padding: 25px 10px 25px 15px;}
.s2__col_head { font-size: 24px; line-height: 34px;}

.section3 { padding: 40px 0 100px;}
.s3__row { margin-top: 40px; row-gap: 25px;}
.s3__col { width: 23%;}
.s3__col p { bottom: 25px; font-size: 20px; line-height: 20px;}

.s4__row { margin-top: 60px;}
.s4__col { width: 49%;}
.s4__box_head { font-size: 40px; padding: 50px 20px 70px;}
.s4__box_bottom { padding: 55px 15px 40px 20px;}
.s4__box_about { font-size: 19px; line-height: 29px;}
.s4__box_list { margin-top: 10px;}
.s4__box_list li { margin-top: 10px; font-size: 19px; line-height: 27px; padding-left: 30px; background-size: 20px; background-position:0 4px;}
.s4__box_green .s4__box_list li { background-size: 20px;  background-position:0 4px;}

.section5 { padding: 40px 0 60px;}
.section5:after { top: 10px; height: 50px;}
.s5__inner { padding: 30px 30px 50px;}
.s5__left { width: 45%;}
.s5__right { width: 46%; padding-top: 20px;}
.s5__button { width: 180px; height: 60px; margin-top: 25px; padding: 18px 10px 23px; font-size: 18px;}
}

@media only screen and (max-width:767px){
.container{width:100%; padding:0 15px; max-width:600px; box-sizing:border-box;}

.showDesk{display:none;}
.showMob{display:block;}
.hideMob{ display:none;}

.header { margin-bottom: 60px;}
.header__fixed { height: 60px; padding: 18px 0; margin-top: -60px; top: 60px;}
.header__inner { padding-right: 45px;}
.header__logo { width: 178px; font-size: 18px; margin-top:-4px;}
.header__right { width: 20px;}
.header__user img { position: relative; z-index: 10;}
.menu-icon-mobile { top: 1px;}
.mobile-menu li a.header__logo { font-size: 18px; padding: 20px 15px;}

.banner .lines { top: -10px;}
.banner__inner { padding: 20px 0 40px;}
.banner__top_text { padding: 4px 15px 10px; font-size:14px; line-height:18px;}
.banner__heading { font-size: 26px; line-height: 36px; margin-top: 15px;}
.banner__text2 { font-size: 18px; line-height: 26px; margin-top: 20px;}
.button__box { margin-top: 30px;}
.common__button { height: 55px; font-size: 18px; line-height: 53px;}
.scroll_to { display:none;}

.section1 { padding: 40px 0 40px;}
.heading__left { width: 100%; text-align:center;}
.common__heading { font-size: 26px; line-height: 38px;}
.common__text { font-size:16px; line-height:26px; margin-top:16px;}
.s1__slider_row { width: 100%; margin-top:35px; display: flex; flex-wrap: wrap; justify-content: space-between; row-gap:20px;}
.s1__slide_col { width: 48% !important; padding: 20px 15px 25px 15px; margin-top: 0; margin-right: 0;}
.s1__col_icon { width: 40px;}
.s1__col_head { font-size: 22px; line-height: 22px; margin-top: 30px;}
.s1__col_text { font-size: 16px; line-height: 26px;}

.section2 { padding: 40px 0 40px;}
.s2__col { width:100%; padding: 30px 20px 35px 20px;}
.s2__inner { margin-top: 35px; row-gap: 25px;}

.section3 { padding: 40px 0 40px;}
.s3__row { margin-top: 30px; row-gap: 15px;}
.s3__col { width: 48%;}

.section4 { padding: 40px 0 40px;}
.s4__row { margin-top: 50px; row-gap: 50px;}
.s4__col { width: 100%;}
.s4__box_head { font-size: 35px; padding: 30px 20px 60px;}
.s4__box_bottom { padding: 50px 15px 30px 15px;}
.s4__box_about { font-size: 18px; line-height: 28px;}
.s4__box_list li { font-size: 18px; line-height: 26px;}

.section5:after{ display:none;}
.s5__inner { padding: 20px 20px 40px; flex-wrap:wrap;}
.s5__left { width: 100%;}
.s5__right { width: 100%; padding-top: 0; margin-top:30px;}
.s5__link { margin-top: 30px; font-size: 18px; line-height: 18px;}

.footer { padding: 25px 0;}
.footer__logo { font-size: 20px; line-height: 20px; margin-bottom:10px;}
.footer__text a { padding: 0 5px; margin-top:-6px;}
.footer__text { font-size: 14px;}

}