@import url('https://fonts.googleapis.com/css?family=Lato|Lato');
@import url('bootstrapCustomization.css');
@import url('effects.css');
@import url('navbar.css');
body {
    overflow-x: hidden;
    height: 100%;
}

.text-white {
    color: white !important;
}


/*all transition types*/

#fixednav .navbar-fixed-top,
#fixednav li,
#fixednav img,
.mixed-bar {
    -webkit-transition: all 0.3s cubic-bezier(0.69, 1, 0.18, 1) 0s;
    -moz-transition: all 0.3s cubic-bezier(0.69, 1, 0.18, 1) 0s;
    -o-transition: all 0.3s cubic-bezier(0.69, 1, 0.18, 1) 0s;
    transition: all 0.3s cubic-bezier(0.69, 1, 0.18, 1) 0s;
}


/*push wrap class configure transifion on transform event*/

.push-wrap {
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.69, 1, 0.18, 1) 0s;
    -moz-transition: -moz-transform 0.3s cubic-bezier(0.69, 1, 0.18, 1) 0s;
    -o-transition: -o-transform 0.3s cubic-bezier(0.69, 1, 0.18, 1) 0s;
    transition: transform 0.3s cubic-bezier(0.69, 1, 0.18, 1) 0s;
}


/*modification on show-nav is active on push-wrap elements*/

.show-nav .push-wrap {
    -webkit-transform: translate(-300px, 0);
    -moz-transform: translate(-300px, 0);
    -ms-transform: translate(-300px, 0);
    -o-transform: translate(-300px, 0);
    transform: translate(-300px, 0);
}


/*mixed theme color of page*/

.mixed-color {
    background-color: #f71705;
    mix-blend-mode: multiply;
}

.mixed-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}


/*sidebar*/

#toogle-nav {
    width: 300px;
    height: 100%;
    position: fixed;
    right: -300px;
    background-color: #34373a;
    z-index: 9999999;
}


/*search field of sidebar*/

#search input[type="text"] {
    background-color: white;
    border: 0 none;
    color: black;
    width: 150px;
    font-weight: 600;
    padding: 6px 15px 6px 5px;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}

#search input[type="text"]:focus {
    color: black;
    width: 200px;
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset;
    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}


/*close button of sidebar*/

.close-nav {
    z-index: 999999999999;
    cursor: pointer;
    background-image: url(../../images/standard/icons/close.png);
    background-repeat: no-repeat;
    background-size: 100%;
    height: 13px;
    width: 13px;
    right: 25px;
    display: inline-block;
    position: absolute;
    top: 29px;
    line-height: 13px;
    color: white;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}


/*.close-nav:hover {
transform: rotate(180deg);
-ms-transform: rotate(180deg);
-webkit-transform: rotate(180deg);
-o-transform: rotate(180deg);
-moz-transform: rotate(180deg);
}
*/


/*social bar middle index page*/

#social {
    margin: 0;
    color: white;
    overflow: hidden;
    text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.75);
}

#social .col-md-4 {
    margin: 50px auto;
}

#social a {
    display: flex;
    margin-bottom: 15px;
    vertical-align: middle;
}

#social .fa {
    color: white;
    margin-bottom: 20px;
    padding-top: 22px;
    background-color: #666666;
    border: 1px solid #666666;
    border-radius: 100px;
    height: 85px;
    width: 85px;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

#social .fa:hover {
    border-color: red;
    background-color: white;
    color: red;
}


/*button styles*/

.btn-more {
    font-size: 15px;
    font-weight: 600 !important;
    color: #666666 !important;
    border: 2px solid #666666;
    border-radius: 5px;
}

.btn-more:hover {
    color: red !important;
    border-color: red;
}


/*arrow to back to top on page*/

.fa-arrow {
    display: none;
    border: 2px solid black;
    background-color: white;
    color: black;
    height: 60px;
    width: 60px;
    padding-top: 12px;
    padding-left: 15px;
    cursor: pointer;
    position: fixed;
    z-index: 999999;
    right: 40px;
    bottom: 10%;
}

.fa-arrow:hover {
    background-color: black;
    color: white;
}


/*banner*/

.fixed-banner {
    top: 0 !important;
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
}

.full-screen {
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.text-box {
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 20%;
    right: 0;
    width: 95%;
    -webkit-box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.6);
}

.overview img {
    width: 250px;
    margin: auto;
}

#social img {
    width: 300px;
    margin: auto;
}

@media screen and (min-width:1200px) {
    .text-box {
        width: 60%;
        right: 10%;
    }
}

@media screen and (max-width: 768px) {
    .full-screen {
        width: 100%;
        height: 100%;
        background-attachment: fixed;
    }
    .overview img {
        width: 150px;
    }
    #social img {
        width: 250px;
    }
}