@import url('https://fonts.googleapis.com/css2?family=Lato&family=Righteous&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	outline: none;
}
body{
	font-family: 'Lato', sans-serif;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Righteous', cursive;
}
.container{
	max-width: 1280px;
	margin: 0 auto;
}
header {
    padding: 20px 15px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
}
img{
	max-width: 100%;
}
.col_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo_sec {
    max-width: 100px;
}
button.button_style {
    cursor: pointer;
    background: #4eb849;
    color: #fff;
    padding: 10px 30px;
    font-size: 15px;
    border: 2px solid #4eb849;
    border-radius: 5px;
    transition: 0.3s ease all;
    position: relative;
    overflow: hidden;
}
button.button_style:hover{
	background: #366d34;
	border: 2px solid #366d34;
}
button.button_style:before {
    content: '';
    position: absolute;
    left: -120px;
    top: 0;
    width: 100%;
    height: 100%;
    background: hsl(0deg 0% 100% / 20%);
    transform: rotate(-35deg);
    transition: 0.4s ease all;
    transition-delay: 0.1s;
    filter: blur(10px);
}
button.button_style:hover:before{
	left: 120px;
}
.banner {
    background-image: linear-gradient(#fff, #f4f5ff);
    padding: 50px 30px;
    margin-top: 20px;
}
.banner_col {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.banner_form {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
}
.banner_left {
    width: calc(100% - 500px);
    padding-right: 30px;
}
.banner_form section {
    background: #fff;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
    padding: 30px;
}
.banner_form section h2 {
    text-align: center;
    color: #4eb849;
    margin-bottom: 10px;
}
.banner_form section p {
    text-align: center;
    margin-bottom: 15px;
    font-size: 19px;
    color: #707070;
}
.banner_form section form {
    display: flex;
    flex-wrap: wrap;
}
.form_full {
    width: 98%;
    display: flex;
    flex-direction: column;
    margin: 0 1% 20px;
}
.form_half {
    width: 48%;
    margin: 0 1% 20px;
}
.banner_form form label {
    color: #4b4b4b;
}
.banner_form form input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    font-size: 16px;
    margin-top: 5px;
}
.banner_form form input[type="submit"] {
    cursor: pointer;
    background: #4eb849;
    color: #fff;
    padding: 10px 30px;
    font-size: 15px;
    border: 2px solid #4eb849;
    border-radius: 5px;
    transition: 0.3s ease all;
    position: relative;
    overflow: hidden;
    width: 98%;
    margin: 0 1% 20px;
}
.banner_form form input[type="submit"]:hover {
    background: #366d34;
    border: 2px solid #366d34;
}
.banner_left h1 {
    font-size: 46px;
    margin-bottom: 30px;
}
.banner_left h1 span {
    color: #4eb849;
}
.banner_left img {
	width: 100%;
    max-width: 550px;
}
.banner_form aside a {
    color: #4eb849;
    font-size: 23px;
    text-decoration: none;
}
.banner_form aside{
	text-align: center;
}
.ems_content {
    max-width: 1100px;
    margin: 0 auto 0px;
}
.ems {
    background-image: linear-gradient(#f4f5ff, #fff);
    padding: 50px 30px;
}
.ems h5 {
    text-align: center;
    margin-bottom: 10px;
    color: #4eb849;
}
.ems h2 {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}
.ems>p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 35px;
    color: #4b4b4b;
}
.ems h3 {
    text-align: center;
    margin: 30px 0;
    font-size: 20px;
}
.ems_col {
    display: flex;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 30px auto 0;
}
.ems_each_col {
    width: 48%;
    margin: 0 1% 20px;
}
.ems_each_col figure {
    width: 80px;
    height: 80px;
    background: white;
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
}
.ems_each_col h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.ems_each_col p{
    font-size: 18px;
    margin-bottom: 35px;
    color: #4b4b4b;
}
.free_trail {
    background: #fff9ec;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
}
.free_trail:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 450px;
    height: 100%;
    background: url(../images/footerLeft.webp);
    background-position: center left;
    background-size: contain;
    background-repeat: no-repeat;
}
.free_trail:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 450px;
    height: 100%;
    background: url(../images/footerRight.webp);
    background-position: center right;
    background-size: contain;
    background-repeat: no-repeat;
}
.free_trail_content {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.8);
    padding: 20px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 40%);
}
.free_trail_content h2 {
    margin-bottom: 20px;
    color: #363636;
}
.free_trail_content button {
    width: 250px;
    background: #4eb849;
    border: 0;
    color: #fff;
    padding: 20px 15px;
    font-size: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s ease all;
    position: relative;
}
.free_trail_content button:hover {
    background: #366d34;
}
.free_trail_content button:before {
    content: '';
    position: absolute;
    left: -220px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: hsl(0deg 0% 100% / 20%);
    transform: rotate(-35deg);
    transition: 0.4s ease all;
    transition-delay: 0.1s;
    filter: blur(10px);
}
.free_trail_content button:hover:before {
    left: 220px;
}
.free_trail_content ul {
    display: flex;
    justify-content: center;
    list-style: none;
}
.free_trail_content ul li {
    font-size: 14px;
    padding: 0 10px 0 10px;
    position: relative;
}
.free_trail_content ul li:before{
	content: '\f00c';
    font-family: 'fontawesome';
    color: #4eb849;
    margin-right: 5px;

}
.solution_sec {
    padding: 50px 30px;
}
.solution_sec ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.solution_sec ul li {
    padding: 20px 30px;
    font-size: 23px;
    border-bottom: 5px solid rgb(78 184 73 / 50%);
    margin: 0 15px;
    cursor: pointer;
    text-align: center;
    transition: 0.5s ease all;
}
.solution_sec ul li:hover {
	border-bottom: 5px solid rgb(78 184 73 / 100%);
}
.solution_col {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.solution_col figure {
    width: 450px;
    position: relative;
}
.solution_col figure:before {
    content: '';
    position: absolute;
    left: -10px;
    top: -10px;
    width: 100px;
    height: 100px;
    background: #4eb849;
}
.solution_col figure:after {
    content: '';
    position: absolute;
    right: -10px;
    bottom: -7px;
    width: 100px;
    height: 100px;
    background: #4eb849;
}
.solution_col figure img {
    position: relative;
    z-index: 1;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
}
.solution_col figcaption {
    width: calc(100% - 450px);
    padding-right: 25px;
}
.solution_col figcaption h3 {
    font-size: 34px;
    margin-bottom: 20px;
}
.solution_col figcaption p {
    font-size: 17px;
    color: #494949;
}
.solution_sec li.active_col {
    color: #4eb849;
    border-bottom: 5px solid rgb(78 184 73) !important;
    font-weight: 800;
}
.sol_block{
	display: none;
}
#sec_1_solution{
	display: block;
}
footer {
    display: flex;
    justify-content: center;
    padding: 25px;
    background: #181818;
}
footer p{
    color: #fff;
    text-align: center;
}
.popup_form {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    padding: 35px;
    display: none;
    align-items: center;
    top: 0;
    overflow-y: auto;
    transition: 0.3s ease all;
}
.popup_form .banner_form{
	top: 50%;
    position: relative;
    transform: translateY(-50%);
}
.popup_form_active {
    display: block !important;
}
.close_popup {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 10px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
    border-radius: 50%;
    transition: 0.7s ease all;
    cursor: pointer;
}
.close_popup:hover{
	transform: rotate(360deg);
}
.testimonials {
    background: #4eb849;
    padding: 50px 30px;
}
.testimonials h2 {
    color: #fff;
    font-size: 27px;
    text-align: center;
    margin-bottom: 25px;
}
ul.testimonials_slider {
    display: flex;
    list-style: none;
}
.testimonials ul li {
    text-align: center;
    background: #fff;
    padding: 25px;
    border-radius: 5px;
}
.testimonials ul li p {
    color: #272727;
    font-style: italic;
    line-height: 1.5;
    position: relative;
}
.testimonials ul li p span{
    position: relative;
    z-index: 1;
}
.testimonials ul li p:before {
    content: '';
    position: absolute;
    left: 0;
    top: -10px;
    width: 60px;
    height: 60px;
    background-image: url(../images/close.png);
    z-index: 0;
    background-position: center;
    background-size: 100%;
    opacity: 0.3;
    transform: rotate(180deg);
}
.testimonials ul li p:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 60px;
    height: 60px;
    background-image: url(../images/close.png);
    z-index: 0;
    background-position: center;
    background-size: 100%;
    opacity: 0.3;
}
.testimonials ul li h4 {
    margin: 15px 0 5px;
    font-size: 22px;
}
.testimonials ul li h6 {
    font-size: 14px;
    color: #4eb849;
}
.our_partners {
    background: #fff;
    padding: 50px 30px;
}
.our_partners h2 {
    text-align: center;
    color: #4eb849;
    font-size: 30px;
    margin-bottom: 25px;
}
.our_partners a.bx-pager-link {
    background: #4eb849 !important;
}
.our_partners .bx-wrapper .bx-pager.bx-default-pager a:hover,.our_partners .our_partners .bx-wrapper .bx-pager.bx-default-pager a.active, .our_partners .bx-wrapper .bx-pager.bx-default-pager a:focus {
    background: #fff !important;
    border: 2px solid #4eb849 !important;
}
.our_partners img {
    width: 100%;
}
@media screen and (max-width: 1000px) {
	.banner_left {
	    width: 100%;
	    padding-right: 0;
	    text-align: center;
	    margin-bottom: 0px;
	    order: 2;
	}
	.banner_form {
	    margin: 0 auto 30px;
	    order: 1;
	}
}
@media screen and (max-width: 780px) {
	.banner {
	    padding: 30px 15px;
	}
	.banner_left h1 {
	    font-size: 35px;
	    max-width: 500px;
	    margin: 0 auto 30px;
	}
	.ems_each_col {
	    width: 98%;
	    margin: 0 1% 20px;
	    text-align: center;
	}
	.ems_each_col figure{
		max-width: 80px;
		margin: 0 auto 15px;
	}
	.ems {
    	padding: 30px 15px;
	}
	.solution_sec {
	    padding: 30px 15px;
	}
	.solution_col figcaption {
	    width: 100%;
	    padding-right: 0;
	    margin-bottom: 0px;
	    text-align: center;
	    order: 2;
	}
	.solution_col figure {
	    width: 100%;
	    position: relative;
	    max-width: 450px;
	    margin: 0 auto 35px;
	}
	.solution_sec {
		padding: 30px 15px;
	}
    .testimonials {
        background: #4eb849;
        padding: 30px 15px;
    }
    .our_partners {
        padding: 30px 15px;
    }
}
@media screen and (max-width: 550px) {
	.form_half {
	    width: 98%;
	}
	.popup_form .banner_form {
	    top: 0;
	    position: relative;
	    transform: translateY(0%);
	}
}