/*
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=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i&amp;display=swap');
@import url('https://fonts.googleapis.com/css?family=Rufina:400,700&amp;display=swap');


body, html{
    margin: 0;
    padding: 0;
}
body{
    line-height: 28px;
    color: #777777;
    letter-spacing: 0;
    font-size: 16px;
    font-family: 'Rubik', 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: 500;
    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
------------------------------------------------------------------------------*/
.personal_btn{
    border: none;
    font-size: 15px;
    font-weight: 400;
    background: #333;
    color: #fff;
    height: 47px;
    text-align: center;
    padding: 18px 38px;
    display: inline-block;
    line-height: .8;
    letter-spacing: 0;
    position: relative;
    border-radius: 0;
    z-index: 1;
    cursor: pointer;
    outline: none;
    text-transform: uppercase;
    -webkit-transition: .6s;
    transition: .6s;
}
.personal_btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    border-radius: 0;
    background: #ff4a57;
    z-index: -1;
    -webkit-transition: .4s;
    transition: .4s;
}
.personal_btn::after {
    content: '';
    position: absolute;
    left: 0;
    border-radius: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: #ff4a57;
    z-index: -1;
    -webkit-transition: .4s;
    transition: .4s;
}
.personal_btn:hover, .personal_btn:focus {
    color: #fff;
}
.personal_btn:hover::after, .personal_btn:focus::after {
    height: 0;
}
.personal_btn:hover::before, .personal_btn:focus::before {
    height: 0;
}

/*------------------------------------------------------------------------------
/ 5. Section Settings
------------------------------------------------------------------------------*/
.personal_sec_title{
    font-size: 40px;
    line-height: 29px;
    font-weight: 700;
    color: #333333;
    background: #fff;
    font-family: 'Rufina', serif;
    display: inline-block;
    text-transform: uppercase;
    padding: 10px 14px 6px;
    margin: 0 0 70px;
}
.sec_desc{
    margin: 0 0 35px;
}
.white{
    color: #fff;
}
.bg_title_f9f9f9{
    background: #f9f9f9;
}