/* --------------------------------- */
/* Css Styles                        */
/*---------------------------------- */

/**
    Cenky  - Portfolio Template 
    Author : Soonlabs
    Copyright 2019


/* Table of Content
==================================================

    1. Body and Core Css
    2. Home Page
    3. About Page
    4. Portfolio List
    5. News Page
    6. Contact Page
    7. Responsive
*/ 


p{
    line-height: 27px;
    font-size: 16px;
    line-height: 28px;
    opacity: .6;
    color: #000;
    margin-bottom: 0;
}

.down-arrow {
    fill: #fff;
}

hr{    
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    margin: 150px 0;
    width: 60%;
    margin-left:auto;
    margin-right:auto;
}

#preloader {
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 5000;
}

#preloader .logo{
  margin-bottom: 10px;
}

#preloader.loaded .loading-area {
    opacity: 0;
}

#preloader.loaded{
    visibility: hidden;
}

#preloader .loading-area {
    opacity: 1;
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #828282;
}

#preloader.loaded .left-side {
    transform: translateX(-100%);
    transition-delay: 1s;
}

#preloader .left-side {
    left: 0;
}

#preloader.loaded .right-side {
    transform: translateX(100%);
    transition-delay: 1s;
}

#preloader .right-side {
    right: 0;
}

#preloader .left-side, #preloader .right-side {
    background: #111;
    height: 100%;
    position: absolute;
    width: 50%;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}



.downbtn{
    display: inline-block;
    padding: 13px 16px 6px 16px;
    border-radius: 60px;
    float: left;
}

.downbtn svg{
    fill: #000;
}

.page-buttons{
    margin-top: 60px;
}

.page-buttons svg path{
    fill: #fff;
}

.page-buttons svg{
    width: 16px;
    height: 25px;
}


.logo-image img{
    max-width: 100%;
}

.demo img{
    width: 100%;
    border-radius: 4px;
}

section{
    padding: 0 90px;
}

.site-btn{
    background: #da0000;
    color: #fff;
    min-width: 160px;
    padding: 15px 40px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    transition: all ease 0.4s;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    display: inline-block;
    cursor: pointer;
    position: relative;
    overflow: hidden;  
    font-family: 'Poppins', sans-serif;
}

.site-btn:hover:before{
    transform: translateX(0);
}

.site-btn:before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.18);
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    transition: all ease 0.3s;
}

.site-btn:focus{
    outline: 0;
    color: #fff;
}

.site-btn:hover{
    color: #fff;
}

.hero{
    height: 100vh;
    background-size: cover;
    color: #fff;
    background-repeat: no-repeat;
}

.hero .title{
    font-size: 50px;
    line-height: 60px;
    letter-spacing: -1px;
    font-weight: 700;
}

.hero .outter{
    z-index: 1;
    position: relative;
}

.outter{
    width: 100%;
    display: table;
    height: 100%;
}

.inner{
    display: table-cell;
    vertical-align: middle;
}

.demo figure figcaption{
    color: #000;
    text-align: center;
    font-weight: 500;
    padding: 30px 0;
}

.demo{
    margin-bottom: 30px;
    transition:  all ease 0.5s;
    -webkit-transition:  all ease 0.5s;
    -moz-transition:  all ease 0.5s;
    -o-transition:  all ease 0.5s;
}

.demo:hover{
    transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    transition:  all ease 0.5s;
    -webkit-transition:  all ease 0.5s;
    -moz-transition:  all ease 0.5s;
    -o-transition:  all ease 0.5s;
}

.demo:hover > figure figcaption{
    opacity: .5;
    transition:  all ease 0.5s;
    -webkit-transition:  all ease 0.5s;
    -moz-transition:  all ease 0.5s;
    -o-transition:  all ease 0.5s;
}


.feature:hover > .icon{
    color: #da0000;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
}

.feature:hover > .icon i{
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
}

.feature .icon{
    width: 10%;
    float: left;
    color: #000;
    font-size: 34px;
    padding: 0;
    margin: 0;
    line-height: 40px;
}

.feature .text{
    width: 90%;
    float: left;
    padding-right: 60px;
    color: #000;
}

.feature .text h2{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature .text p{
    font-size: 14px;
    font-weight: 400;
    opacity: .6;
    line-height: 20px;
}



/*------------------------ Responsive ------------------------*/   


@media screen and (min-width: 1480px) {


.demos .row{
    margin-right: -30px;
    margin-left: -30px;
}

    .demos .col, .demos .col-1, .demos .col-10, .demos .col-11, .demos .col-12, .demos .col-2, .demos .col-3, .demos .col-4, .demos .col-5, .demos .col-6, .demos .col-7, .demos .col-8, .demos .col-9, .demos .col-lg, .demos .col-lg-1, .demos .col-lg-10, .demos .col-lg-11, .demos .col-lg-12, .demos .col-lg-2, .demos .col-lg-3, .demos .col-lg-4, .demos .col-lg-5, .demos .col-lg-6, .demos .col-lg-7, .demos .col-lg-8, .demos .col-lg-9, .demos .col-md, .demos .col-md-1, .demos .col-md-10, .demos .col-md-11, .demos .col-md-12, .demos .col-md-2, .demos .col-md-3, .demos .col-md-4, .demos .col-md-5, .demos .col-md-6, .demos .col-md-7, .demos .col-md-8, .demos .col-md-9, .demos .col-sm, .demos .col-sm-1, .demos .col-sm-10, .demos .col-sm-11, .demos .col-sm-12, .demos .col-sm-2, .demos .col-sm-3, .demos .col-sm-4, .demos .col-sm-5, .demos .col-sm-6, .demos .col-sm-7, .demos .col-sm-8, .demos .col-sm-9, .demos .col-xl, .demos .col-xl-1, .demos .col-xl-10, .demos .col-xl-11, .demos .col-xl-12, .demos .col-xl-2, .demos .col-xl-3, .demos .col-xl-4, .demos .col-xl-5, .demos .col-xl-6, .demos .col-xl-7, .demos .col-xl-8, .demos .col-xl-9 {
        padding-right: 30px;
        padding-left: 30px;
    }




}

@media screen and (min-width: 1680px) {

section{
    padding: 0 10%;
}

section.features{
    padding: 0 13%;
}


}



@media screen and (max-width: 1680px) {

    .feature .icon{
        width: 15%;
        float: left;
        font-size: 34px;
        padding: 0;
        margin: 0;
        line-height: 40px;
    }

    .feature .text{
        width: 85%;
        float: left;
        padding-right: 60px;
    }


}



@media screen and (max-width: 1200px) {


hr{
    width: 100%;
    margin-left:auto;
    margin-right:auto;
}

.hero{
    background-size: cover;
}

hr {
    border-top: 1px solid rgba(255, 255, 255, 0.30);
    margin: 100px 0;
}

.feature:nth-child(5), .feature:nth-child(6){
    margin-top: 60px;
}

.feature:nth-child(3){
    margin-bottom: 0px;
}



}




@media screen and (max-width: 768px) {

    section {
        padding: 0 40px;
    }

    .subhero-title {
        font-size: 60px;
    }

}

@media screen and (max-width: 500px) {


    .subhero-title {
        font-size: 50px;
    }

}


@media screen and (max-width: 480px) {

    .subhero-title {
        font-size: 38px;
    }

    header{
        padding: 20px;
    }

    header .buy{
        display: none;
    }

    .social li:last-child {
    margin-right: 0px;
}

.demo figure figcaption {
    padding: 20px 0;
}

.demo {
    margin-bottom: 10px;
}

hr {
    border-top: 1px solid rgba(255, 255, 255, 0.30);
    margin: 30px 0;
}

.feature .text {
    padding-right: 0px;

}

.features.top_120{
    margin-top: 60px;
    margin-bottom: 50px;
}

.feature {
    margin-bottom: 45px !important;
    margin-top: 0 !important;
}

hr.col-xs-6.bottom_120{
    margin-bottom: 45px;
}

section.buynow{
    padding: 0 20px;
}

footer {
    margin-top: 70px;
}

footer p{
    font-size: 13px;
}

}




@media screen and (max-width: 320px) {


    .subhero-title {
        font-size: 30px;
    }

}































