/*
Theme Name: Aprova
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=Lato:300,300i,400,400i,700,700i,900,900i&amp;display=swap');
@import url('https://fonts.googleapis.com/css?family=Abril+Fatface&amp;display=swap');


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

/*------------------------------------------------------------------------------
/ 2. Typography Settings
------------------------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6{
    color: #be9359;
    font-weight: 400;
    margin: 0 0 15px;
    font-family: 'Abril Fatface', cursive;
}
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: #be9359;
    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
------------------------------------------------------------------------------*/
.barber_btn{
    border: 2px solid #be9359;
    font-size: 18px;
    font-weight: 700;
    background: transparent;
    color: #be9359;
    height: 55px;
    text-align: center;
    padding: 18px 56px;
    display: inline-block;
    line-height: .8;
    letter-spacing: 0;
    position: relative;
    border-radius: 3px;
    z-index: 1;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    text-transform: uppercase;
    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;
}
.barber_btn span {
    position: relative;
    z-index: 2;
}
.barber_btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #be9359;
    opacity: 0;
    -webkit-transform: scale3d(0.6, 0.6, 1);
    transform: scale3d(0.6, 0.6, 1);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.barber_btn:hover:after {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}
.barber_btn:hover{
    color: #fff;
}

/*------------------------------------------------------------------------------
/ 5. Section Settings
------------------------------------------------------------------------------*/
.barber_sec_title{
    position: relative;
    font-size: 60px;
    line-height: 75px;
    color: #be9359;
    margin: 0 0 59px;
}
.barber_sec_title span{
    position: relative;
    left: 0;
    right: 0;
    bottom: -16px;
    margin: auto;
    display: block;
    width: 173px;
    height: 3px;
    background: #be9359;
}
.sec_desc{
    margin: 0 0 35px;
}
.white{
    color: #fff;
}