/*
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. Fonts 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=Montserrat: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: 1.2px;
    font-size: 16px;
    font-family: 'Montserrat', 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: #333333;
    font-weight: 700;
    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: #333333;
    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 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
------------------------------------------------------------------------------*/
.hosting_btn{
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    height: 50px;
    padding: 19px 42px;
    background: #4300fb;
    border-radius: 3px;
    text-align: center;
    display: inline-block;
    line-height: .8;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    text-transform: uppercase;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
}
.hosting_btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    border-radius: 3px;
    background-image: linear-gradient(to right, #55008b, #4f0098, #4500a5, #3300b3, #0000c2);
    z-index: -1;
    -webkit-transition: .4s;
    transition: .4s;
}
.hosting_btn::after {
    content: '';
    position: absolute;
    left: 0;
    border-radius: 3px;
    bottom: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to right, #55008b, #4f0098, #4500a5, #3300b3, #0000c2);
    z-index: -1;
    -webkit-transition: .4s;
    transition: .4s;
}
.hosting_btn:hover, .hosting_btn:focus {
    color: #fff;
}
.hosting_btn:hover::after, .hosting_btn:focus::after {
    height: 0;
}
.hosting_btn:hover::before, .hosting_btn:focus::before {
    height: 0;
}
/*------------------------------------------------------------------------------
/ 5. Section Settings
------------------------------------------------------------------------------*/
.sec_title{
    font-size: 35px;
    line-height: 45px;
    color: #333333;
    letter-spacing: 2.6px;
    font-weight: 700;
    position: relative;
    margin: 0 0 11px;
}
.sec_title span{
    color: #4300fb;
}
.sec_bar{
    display: block;
    text-align: center;
    font-size: 15px;
    line-height: .8;
    color: #4300fb;
    margin-top: 24px;
    position: relative;
}
.sec_bar:before{
    width: 73px;
    height: 1px;
    background: #4300fb;
    position: absolute;
    left: 42.2%;
    bottom: 7px;
    content: '';
}
.sec_bar:after{
    width: 73px;
    height: 1px;
    background: #4300fb;
    position: absolute;
    right: 42.2%;
    bottom: 7px;
    content: '';
}
.sec_desc{
    margin: 0 0 45px;
}
.white{
    color: #fff;
}
.sec_bar.white{
    color: #fff;
}
.white:after{
    background: #fff;
}
.white:before{
    background: #fff;
}