

.wrapper{
    max-width: 1200px;
    margin: auto;
    box-shadow: 0 0 5px 0 #ccc;
    height: 100%;    
}



/************************************/
/****        Reusable          *****/
/***********************************/

.clearfix{
    clear:both;
}

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	}

.separator{
    height: 5px;
    width: 100%;
    background-color: #92cd62;
}

.lead {
    margin: 60px 0;
}

.lead p{
    font-size: 20px;
    text-align: center;
    padding: 20px 40px ;
}

.lead p a{
    text-decoration: none;
    font-weight: bold;
    color: #92CD62;
}

.lead p a:hover{
    text-decoration: underline;
}


h2{
    margin: 60px 0 30px;
    text-align: center;
    font-family: 'Lato';
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 300;
}

h2:after{
    display: block;
    width: 20%; 
    margin-left: 40%;
    border-bottom: 5px solid #92cd62;
    padding-bottom: 20px;
    content:" ";
}

.red{
    color: #FDF137;
    font-weight: bold;
    
}


/************************************/
/****          Logo            *****/
/***********************************/


.header{
    height: 120px;
    padding: 0 40px;
}



.header .logo img{
    height: 60px;
    margin-top: 30px;

}


.logo{

    float: left;
}



.mobile-nav-icon{
    display: none;
    font-size: 45px;
    float: right;
    margin-top: 30px;
}

.mobile-nav-icon i{
    color: #92cd62;
}

.nav{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    height: 60px;
    padding-top: 50px;
    

}

.nav-item{
    flex-basis: auto;
    margin-left: 15%;
    height: 30px;
    vertical-align: middle;
    text-align: center;
    font-family: 'lato';
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 3px solid rgba(146, 205, 98, 0);
    transition: border 1s;
}


.nav-item:hover{
    border-bottom: 3px solid #92cd62;
    transition: border 1s;
}


/************************************/
/****        Hero Box          *****/
/***********************************/


.hero{
    height: 450px;
    padding-top: 150px;
    background: url(img/bnr.png);
    background-size: cover;
    width: 100%;
    overflow: hidden;
      
}

.hero-text{
    background: #92cd62;
    width: 40%;
    padding: 20px;
}

.hero-text h3{
    text-transform: uppercase;
    color: #fff;
    font-size: 30px;
    margin-bottom: 10px;
    font-family: 'lato';
    font-weight: 700;
}

.hero-text p{
    text-transform: uppercase;
    color: #fff;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 1px;
    font-family: 'lato';
}


/************************************/
/****       Media frame        *****/
/***********************************/




.iframe{
    width: 560px;
    margin: 50px auto 0;
}

.iframe iframe{
    border-radius: 5px;
    border: 5px solid #797979;
    width: 560px;
    height: 315px;
}



/************************************/
/****         Bullets          *****/
/***********************************/


.bullets{
    background: #f4f4f4;
    padding-bottom: 60px;
}

.bullets h2{
    margin-bottom: 100px;
}

.bullets h3{
    text-align: center;
    text-transform: uppercase;
    color: #92cd62;

}


.listing i{
    font-size: 100px;
    display: block;
    text-align: center;
    padding: 10px;
    color: #2590c9;
    color: #92cd62;
}



.listing p span{
    border-radius: 5px; 
    color: white; 
    background: #07FFFD;
    font-weight: bold;
    display: block;
    width: 100%;
    padding: 15px 30px;
    margin-bottom: 30px;
}


/*
.listing:nth-of-type(2) p span{ background: #06E8A6}
.listing:nth-of-type(2) i{ color: #06E8A6; }

.listing:nth-of-type(3) p span{ background:#06FF6E;}
.listing:nth-of-type(3) i{ color: #06FF6E ; }
*/




.listing p{
    padding: 20px 40px;
    font-size: 18px;
    text-align: center;    
    font-family: 'lato';
    font-weight: 300;
}



/************************************/
/****          Why us           *****/
/***********************************/

.details .lead{
    padding: 10px 40px;
}

.details .lead p{
    text-align: left;   
    font-size: 18px;
    line-height: 24px;
}

.details p:nth-of-type(3) {
    display: block;
    text-align: center;
}

.details p img{
    border-radius: 10px;
}

/************************************/
/****           form            *****/
/***********************************/

.form{
    padding: 50px 0;
    background: linear-gradient(90deg, #2590c9, #1b76aa)
}

.form h3{
    color: white;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}


.form input[type='text']{ background-image: url('img/man-user.png') }
.form input[type='email']{ background-image: url('img/close-envelope.png') }


.form input[type="text"],
.form input[type="email"]{
    width: 100%;
    height: 60px;
    border: 2px solid #ccc;
    padding: 10px 40px 10px 10px;
    font-size: 24px;
    transition: box-shadow 0.5s;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: 97% 50%;
}

.form input[type="text"]:focus,
.form input[type="email"]:focus{
    border: 0;
    box-shadow: 0 0 15px 2px white;
    transition: box-shadow 0.5s;
}

.form input[type="submit"]{
    width: 80%;
    margin: 0 10%;
    height: 60px;
    background: #92cd62;
    font-weight: bold;
    font-size: 20px;
    border: 0;
    color: #fefefe;
    box-shadow: 0 0 0 0;
    cursor: pointer;
    transition: box-shadow 0.5s;
    text-transform: uppercase;
    font-family: 'lato';
}

.form input[type="submit"]:hover{
    box-shadow: 0 0 15px 0 white;
    transition: box-shadow 0.5s;
}

/************************************/
/****           footer          *****/
/***********************************/

.footer{
    height: 60px;
    background: #92cd62;
    color: #Fefefe;
    font-size: 14px;
    text-align: center;
    line-height: 60px;
    vertical-align: middle;
    font-weight: 400;

}

