﻿@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Rubik:wght@500&family=Yellowtail&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa&display=swap');

body {
	font-size:15px;
	font-family: 'Poppins', sans-serif;
	color: #777777;
}

h1, h2, h3, h4 {
	margin:10px 0;
	font-family: 'Comfortaa', cursive;
}

h3 {
	color: #515151;
	font-size:1.5em;
	font-weight: 600;
	padding-bottom:10px;
}
h1 {
	color:#515151;
	font-size: 45px;
	padding-bottom: 25px;
	line-height:50px;
	text-align: center;
	margin: 15px 0;
	padding: 0px;
	text-transform:capitalize;
}

h1 span {
	color:#a2cc41;
	font-family: 'Yellowtail', cursive;
}

p {
	color: #777777;
	line-height: 30px;
	font-size: 15px;
}

p span {
	font-weight: 600;
	font-size: 1.2em;
	font-style: italic;
}


hr {
	margin-bottom: 1rem;
	border: 0;
    border-top-color: currentcolor;
    border-top-style: none;
    border-top-width: 0px;
	border-top: 1px solid rgba(0,0,0,.1);
}

.more-info {
	color: #1e7694;
	border:1px solid #1e7694;
	border-radius: 25px;
	padding: 10px 25px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.more-info:hover {
	color:#000;
	text-decoration: none;
	border:1px solid #a2cc41;
}

.top-space {
	margin: 15px 0;
}

.list-style {
	list-style-image: url(../img/bullet.png);
	margin-top: 15px;
	padding: 0 0 0 25px;
}
.list-style li {
	padding: 5px 0;
}

.clr {
	clear:both;
}

.no-padd {
	padding: 0px;
}

/*========Welcome Section=========*/

#welcome {
	padding: 1.0em 0 7.0em;
}

#welcome p {
	text-align:left;
	padding: 0px 0;
}

#welcome h1 {
	font-size: 40px;
	margin-bottom: 20px;
	text-align: left;
}

#welcome h1 span {
	color:#a2cc41;
}

/*===Company Section===*/

#Company {
	/*padding: 0 0 7.0em;*/
	margin-top: 100px;
}

#Company h1 {
	color: #fff;
	margin-bottom:15px;
}

.Company-box {
	text-align: center;
	padding:20px 20px 20px 20px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.10);
}
.Company-box h3 {
	text-align: center;
	margin: 20px 0 0px;
}

.Company-box p {
	text-align: center;
	font-size: 16px;
	margin: 10px 0 30px;
}

/*========Product Section=========*/

#product {
	background: #eff2f7;
	padding: 6.0em 0 4.0em;
}

/*========Service Section=========*/

#service {
	padding: 7.0em 0 4.0em;
}

#service h1 {
	font-size: 40px;
	text-align: center;
}

.service-box {
    margin-bottom: 2rem;
	padding: 2rem 2rem;
	transition: all 0.5s ease-in-out 0s;
	text-align: center;
	 border:1px solid #fff;
}

.service-box h3 {
	text-transform: capitalize;
}
.service-box p {
	text-align: center;
}
.service-box:hover {
    border:1px solid #a2cc41;
	border-radius: 15px;
}
.service-box .service-icon {
    transition: all 0.5s ease-in-out 0s;
	width:50px;
	height:50px;
	margin: 0 auto 20px;
	line-height: 50px;
}
.service-box:hover .service-icon {
    transform: translateY(-10px);
}
.service-box:hover .service-icon .font-icon {
    color:#a2cc41;
}
.font-icon {
    display: inline-block;
    font-size: 4.5rem;
    color: #1e7694;
    transform-origin: center;
    transition: all 0.5s ease-in-out 0s;line-height: 73px;
}
.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

/*========Welcome Section=========*/

#what-we {
	padding: 3em 0 7.0em;
}

#what-we p {
	text-align:left;
	padding: 0px 0;
}

#what-we h1 {
	font-size: 40px;
	margin-bottom: 20px;
	text-align: left;
}


.box-images-parallax {
	position: relative;
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
}
.box-images-parallax .front-element {
	margin-left: 40px;
	position: relative;
	/*margin-top: -20px;*/
	z-index: 2;
}
.box-images-parallax .back-element {
	position: absolute;
	left: 0;
	bottom: -20px;
	z-index: 1;
}

/*--------------
Animation
--------------*/

.slide-top {
	-webkit-animation: slide-top 5s linear infinite alternate both;
	animation: slide-top 5s linear infinite alternate both;
}
 @-webkit-keyframes slide-top {
 0% {
 -webkit-transform: translateY(0);
 transform: translateY(0);
}
 100% {
 -webkit-transform: translateY(-80px);
 transform: translateY(-80px);
}
}
@keyframes slide-top {
 0% {
 -webkit-transform: translateY(0);
 transform: translateY(0);
}
 100% {
 -webkit-transform: translateY(-80px);
 transform: translateY(-80px);
}
}
.slide-down {
	-webkit-animation: slide-down 3s linear infinite alternate both;
	animation: slide-down 3s linear infinite alternate both;
}
 @-webkit-keyframes slide-down {
 0% {
 -webkit-transform: translateY(70px);
 transform: translateY(70px);
}
 100% {
 -webkit-transform: translateY(30px);
 transform: translateY(30px);
}
}
@keyframes slide-down {
 0% {
 -webkit-transform: translateY(70px);
 transform: translateY(70px);
}
 100% {
 -webkit-transform: translateY(30px);
 transform: translateY(30px);
}
}

@-webkit-keyframes MOVE-BG {
0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
	100% {
    -webkit-transform: translateX(88px);
    transform: translateX(88px);
}
}
@media (max-width: 768px) {
    #what-we {
        padding: 4em 0 7.0em !important;
    }
}