/*
Theme Name: Aprova
Theme URI: #
Author: Aprova
Author URI: #
Description: Aprova - MultiPurpose Creative HTML5 Responsive Template
Version: 1.0
License:
License URI:
*/

/*=======================================================================
[Table of contents]
=========================================================================

1. Font Settings
2. Typography Settings
3. Section Title Settings
4. Button Settings
5. Section Settings
*/

/*------------------------------------------------------------------------------
/ 1. Font Settings
------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Barlow:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

body, html{
    margin: 0;
    padding: 0;
	overflow-x:hidden;
}
body{
    line-height: 28px;
    color: #666666;
    letter-spacing: 0;
    font-size: 18px;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    transition: all ease 400ms;
    -webkit-transition: all ease 400ms;
    -moz-transition: all ease 400ms;
}

/*------------------------------------------------------------------------------
/ 2. Typography Settings
------------------------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6{
    color: #07001e;
    font-weight: 600;
    margin: 0 0 15px;
}
button:focus{
    outline: none;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none; 
    appearance: none;
    -moz-appearance: none;
    margin: 0; 
}
input[type="number"] {
    -moz-appearance: textfield !important;
}
a{
    color: #083791;
    text-decoration: none;
    transition: all ease 400ms;
    -webkit-transition: all ease 400ms;
    -moz-transition: all ease 400ms;
}
a:hover, a:focus{
    text-decoration: none;
    outline: 0;
}
a:focus{
    color: #fff;
}
ul,
ul li{
    margin: 0;
    padding: 0;
    list-style: none;
}

/*------------------------------------------------------------------------------
/ 3. Section Title Settings
------------------------------------------------------------------------------*/
.noPadding{
    padding: 0;
}
.noPaddingRight{
    padding-right: 0;
}
.noPaddingLeft{
    padding-left: 0;
}

/*------------------------------------------------------------------------------
/ 4. Button Settings
------------------------------------------------------------------------------*/
.constuction_btn{
    border: none;
    font-size: 15px;
    font-weight: 700;
    background: #ffc80b;
    color: #07001e;
    height: 50px;
    text-transform: uppercase;
    text-align: center;
    padding: 19px 41.1px;
    display: inline-block;
    line-height: .8;
    letter-spacing: 0;
    position: relative;
    border-radius: 0;
    z-index: 1;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
.constuction_btn span {
    position: relative;
    z-index: 2;
}
.constuction_btn::after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #07001e;
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}
.constuction_btn:hover:after {
    width: 100%;
    height: 100%;
}
.constuction_btn:hover{
    color: #fff;
}

/*------------------------------------------------------------------------------
/ 5. Section Settings
------------------------------------------------------------------------------*/
.cons_sub_title{
    font-size: 14px;
    line-height: .8;
    color: #666666;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 11px;
}
.cons_sec_title{
    font-size: 40px;
    line-height: 50px;
    color: #07001e;
    font-weight: 600;
    margin: 0 0 15px;
}
.sec_desc{
    margin: 0 0 46px;
}
.white{
    color: #fff;
}