/* Olio By ThemeEaster */

/*  ==========================================================================
    Table of Contets
    ==========================================================================
    
    1.0 Common Styles
    2.0 Header Section
    3.0 Hero Section
    4.0 Promo Section
    5.0 Content Section
    6.0 Features Section
    7.0 Screenshot Section
    8.0 Team Section
    9.0 Pricing Section
    10.0 Testimonial Section
    11.0 Download Section
    12.0 Blog Section
    13.0 Subscribe Section
    14.0 Footer Section
    15.0 Scrool To Top
    
    ==========================================================================
    Olio App Landing Page
    ========================================================================== */

	@import url('https://fonts.googleapis.com/css?family=Poppins:400,600,700');
	
/*  ==========================================================================
    Common Styles
    ========================================================================== */
*{
	padding: 0;
	margin: 0;
}
body{
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    font-weight: 400;
    position: relative;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing:antialiased;
	color: #222;
}
h1{
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 25px;
    color: #fff;
    letter-spacing: -3px;
}
h2{
    font-size: 24px;
    color: #333;
    margin: 0 0 25px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}
h3,h4{
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.7;
    color: #222;
    letter-spacing: -0.025rem;
}
h3{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.025rem;
    line-height: 1.2;
}
h4{
    font-size: 16px;
}
h5,h6{
    font-size: 14px;
    margin: 0 0 10px;
}
img{
    border: none;
    outline:none;
    max-width: 100%;
}
ul{
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}
p, li, a, span{}
p{
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}
a, a:hover{
    text-decoration: none;
}
a:focus{
    outline: 0;
    text-decoration: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
   color: #f5f5f5 !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder{ /* Firefox 18- */
   color: #f5f5f5 !important;  
}

input::-moz-placeholder,
textarea::-moz-placeholder{  /* Firefox 19+ */
   color: #f5f5f5 !important;  
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder{  
   color: #f5f5f5 !important;  
}
button{
    border: none;
	background: none;
}
/* Helper Class */
.padding{
    padding: 100px 0;
}
.no-padding{
    padding: 0;
}
.padding-15{padding: 15px;}
.padding-20{padding: 20px;}

.bg-white{ background-color: #fff; }
.bg-grey{ background-color: #f4f9ff;}
.bg-dark{ background-color: #232323;}
.bd-top{ border-top: 1px solid #eaeaea;}
.bd-bottom{ border-bottom: 1px solid #eaeaea;}

.mb-10{ margin-bottom: 10px; }
.mb-15{ margin-bottom: 15px; }
.mb-20{ margin-bottom: 20px; }
.mb-25{ margin-bottom: 25px; }
.mb-30{ margin-bottom: 30px; }
.mb-35{ margin-bottom: 35px; }
.mb-40{ margin-bottom: 40px; }
.mb-45{ margin-bottom: 45px; }
.mb-50{ margin-bottom: 50px; }
.mb-55{ margin-bottom: 55px; }
.mb-60{ margin-bottom: 60px; }
.ml-15{ margin-left: 15px; }
.ml-20{ margin-left: 20px; }
.ml-25{ margin-left: 25px; }
.ml-30{ margin-left: 30px; }
.ml-35{ margin-left: 35px; }
.fz-28{ font-size: 28px; }
.fz-24{ font-size: 24px; }
.fz-22{ font-size: 22px; }
.fz-20{ font-size: 20px; }
.fz-18{ font-size: 18px; }
.fz-16{ font-size: 16px; }
.text-black{
    color: #333;
}
.text-white{
    color: #ffffff;
}
.align-left{
    text-align: left;
}
.align-right{
    text-align: right;
}
.align-center{
    text-align: center;
}
.fl-right{
    float: right;
}
.fl-left{
    float: left;
}
.display-table{
    width: 100%;
    height: 100%;
    display: table;
}
.table-cell{
    display: table-cell;
    vertical-align: middle;
}

.overlay{
    width: 100%;
    position: relative;
    z-index: 1;
}
.overlay:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}


/* ==========================================================================
   Team Section
   ========================================================================== */
.team-section{}
.team-box{}
.team-thumb{
    margin-bottom: 40px;
    position: relative;
}
.team-thumb img{
    border: 10px solid #f4f9ff;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    text-align: center;
}
.team-thumb:before{
    background: linear-gradient(-45deg, #2b18dd 0%, #56a2ff 50%, #51eca5 100%);
    content: "";
    width: 2px;
    height: 60px;
    position: absolute;
    left: calc( 50% - 1px );
    bottom: -20px;
    transition: all 0.3s ease-in-out;
}
.team-box:hover .team-thumb:before{
    bottom: -40px;
    height: 80px;
}
.team-box:hover .team-content{
    transform: translateY(20px);
}
.team-box:hover .team-social{
    transform: translateY(35px);
    visibility: visible;
    opacity: 1;
}
.team-content{
    position: relative;
    display: block;
    transition: all 0.3s ease-in-out;
}
.team-content h3{
    font-size: 16px;
    color: #555;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
    
}
.team-content span{
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    display: block;
}
.team-social{
    display: block;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
}
.team-social li{
    display: inline-block;
    margin-right: 10px;
}
.team-social li a{
    background-image: linear-gradient(-45deg, #2b18dd 0%, #56a2ff 50%, #51eca5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 15px;
}
