/*
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:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@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|Concert+One');

body, html{
    margin: 0;
    padding: 0;
}
body{
    line-height: 26px;
    color: #666666;
    letter-spacing: 0;
    font-size: 16px;
    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: #060221;
    font-weight: 400;
    margin: 0 0 15px;
    font-family: 'Concert One', 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: #060221;
    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
------------------------------------------------------------------------------*/
.restaurant_btn{
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #fc6a2a;
    border: 1px solid #fc6a2a;
    background: transparent;
    height: 45px;
    padding: 15px 38px;
    border-radius: 30px;
    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;
    transition-delay: 0s, 0s;
    transition-duration: 0.4s, 0.4s;
    transition-property: border-color, color;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    vertical-align: middle;
}
.restaurant_btn::before {
    background: #fc6a2a;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0px, -3em, 0px);
    transform-origin: 0 100% 0;
    transition: transform 0.4s ease 0s, opacity 0.4s ease 0s, background-color 0.4s ease 0s;
    width: 150%;
    z-index: -1;
}
.restaurant_btn:hover {
    border-color: #fc6a2a;
    color: #ffffff;
}
.restaurant_btn:hover::before{
    opacity: 1;
    transform: rotate3d(0, 0, 1, 0deg);
    transition-timing-function: cubic-bezier(0.3, 1, 0.3, 1);
}
/*------------------------------------------------------------------------------
/ 5. Section Settings
------------------------------------------------------------------------------*/
.rest_sub_title{
    font-size: 18px;
    line-height: .8;
    color: #fc6a2a;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 24px;
}
.rest_sec_title{
    font-size: 40px;
    line-height: 26px;
    color: #060221;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 18px;
}
.rest_sec_title span{
    color: #fc6a2a;
}
.sec_desc{
    font-size: 18px;
    margin: 0 0 38px;
}
.white{
    color: #fff;
}