/*-----------------------------------------------------------------
[Legal Notice]

Copyright (c) LifeTheme
Website Template by LifeTheme
https://lifeinsys.com
-------------------------------------------------------------------*/

/* ----------------------------------------------------------------
 Table of contents

	01. Basic
	02. Preloader
	03. Sidebar
	04. Navbar
	05. Header
	06. About
	07. Services
	08. Portfolio
	09. Blog
	10. Counter
	11. Contact
	12. Footer
	13. Dark Version
	14. Single Post
	15. Responsive
---------------------------------------------------------------- */

/*----------------Start Basic----------------*/
.animation-jump {
    position: relative;
    -webkit-animation: animation-jump 2s ease-in-out infinite;
    animation: animation-jump 2s ease-in-out infinite;
}

.animation-bg {
    -webkit-animation: animation-bg 25s ease-in-out infinite;
    animation: animation-bg 25s ease-in-out infinite;
}

@-webkit-keyframes animation-jump {
    0% {
        top: 3px;
    }
    50% {
        top: -3px;
    }
    100% {
        top: 3px;
    }
}

@keyframes animation-jump {
    0% {
        top: 3px;
    }
    50% {
        top: -3px;
    }
    100% {
        top: 3px;
    }
}

@-webkit-keyframes animation-bg {
    0% {
        background-position: top;
    }

    50% {
        background-position: bottom;
    }
    100% {
        background-position: top;
    }
}

@keyframes animation-bg {
    0% {
        background-position: top;
    }

    50% {
        background-position: bottom;
    }
    100% {
        background-position: top;
    }
}

/*[ Typography ]*/

h1 {
    font-size: 55px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 35px;
}

h5 {
    font-size: 25px;
}

h6 {
    font-size: 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

/*[ text color ]*/
.text-white {
    color: #FFF;
}

.text-black {
    color: #000;
}

.text-extra-dark-gray {
    color: #232323;
}

.text-dark-gray {
    color: #626262;
}

.text-extra-medium-gray {
    color: #757575;
}

.text-medium-gray {
    color: #939393;
}

.text-extra-light-gray {
    color: #b7b7b7;
}

.text-light-gray {
    color: #d6d5d5;
}

.text-very-light-gray {
    color: #ededed;
}

.title-extra {
    font-weight: 800;
    margin-bottom: 15px;
}

.title-extra .icon {
    padding-right: 5px;
}

.title-extra-sm {
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.title-extra-sm .icon {
    padding-right: 5px;
}

/*[ font-weight ]*/
.fw-100 {
    font-weight: 100 !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

/*[ font-size ]*/
.fz-10 {
    font-size: 10px !important;
}

.fz-12 {
    font-size: 12px !important;
}

.fz-14 {
    font-size: 14px !important;
}

.fz-15 {
    font-size: 15px !important;
}

.fz-16 {
    font-size: 16px !important;
}

.fz-18 {
    font-size: 18px !important;
}

.fz-20 {
    font-size: 20px !important;
}

.fz-22 {
    font-size: 22px !important;
}

.fz-25 {
    font-size: 25px !important;
}

.fz-30 {
    font-size: 30px !important;
}

.fz-40 {
    font-size: 40px !important;
}

.fz-50 {
    font-size: 50px !important;
}

/*[ line-height ]*/
.line-height-10 {
    line-height: 10px;
}

.line-height-13 {
    line-height: 13px;
}

.line-height-18 {
    line-height: 18px;
}

.line-height-20 {
    line-height: 20px;
}

.line-height-24 {
    line-height: 24px;
}

.line-height-22 {
    line-height: 22px;
}

.line-height-26 {
    line-height: 26px;
}

.line-height-28 {
    line-height: 28px;
}

.line-height-30 {
    line-height: 30px;
}

.line-height-35 {
    line-height: 35px;
}

.line-height-40 {
    line-height: 40px;
}

.line-height-45 {
    line-height: 45px;
}

.line-height-50 {
    line-height: 50px;
}

.line-height-55 {
    line-height: 55px;
}

.line-height-60 {
    line-height: 60px;
}

.line-height-65 {
    line-height: 65px;
}

.line-height-70 {
    line-height: 70px;
}

.line-height-75 {
    line-height: 75px;
}

.line-height-80 {
    line-height: 80px;
}

.line-height-85 {
    line-height: 85px;
}

.line-height-90 {
    line-height: 90px;
}

.line-height-95 {
    line-height: 95px;
}

.line-height-100 {
    line-height: 100px;
}

.line-height-110 {
    line-height: 110px;
}

.line-height-120 {
    line-height: 120px;
}

/*[ text-transform ]*/
.text-u {
    text-transform: uppercase !important;
}

.text-l {
    text-transform: lowercase !important;
}

.text-c {
    text-transform: capitalize !important;
}

.text-non {
    text-transform: none !important;
}

.text-i {
    font-style: italic;
}

/*[ letter-spacing ]*/
.ls0 {
    letter-spacing: 0px !important;
}

.ls1 {
    letter-spacing: 1px !important;
}

.ls2 {
    letter-spacing: 2px !important;
}

.ls3 {
    letter-spacing: 3px !important;
}

.ls4 {
    letter-spacing: 4px !important;
}

.ls5 {
    letter-spacing: 5px !important;
}

.ls10 {
    letter-spacing: 10px !important;
}

/*[ Overlay Effect]*/

[data-overlay-dark],
[data-overlay-light] {
    position: relative;
}

[data-overlay-dark] .container,
[data-overlay-light] .container {
    position: relative;
    z-index: 2;
}

[data-overlay-dark]:before,
[data-overlay-light]:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

[data-overlay-dark]:before {
    background: #000;
}

[data-overlay-light]:before {
    background: #fff;
}

[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span {
    color: #fff;
}

[data-overlay-dark] p {
    color: #bbb;
}

[data-overlay-dark="0"]:before,
[data-overlay-light="0"]:before {
    opacity: 0;
}

[data-overlay-dark="1"]:before,
[data-overlay-light="1"]:before {
    opacity: 0.1;
}

[data-overlay-dark="2"]:before,
[data-overlay-light="2"]:before {
    opacity: 0.2;
}

[data-overlay-dark="3"]:before,
[data-overlay-light="3"]:before {
    opacity: 0.3;
}

[data-overlay-dark="4"]:before,
[data-overlay-light="4"]:before {
    opacity: 0.4;
}

[data-overlay-dark="5"]:before,
[data-overlay-light="5"]:before {
    opacity: 0.5;
}

[data-overlay-dark="6"]:before,
[data-overlay-light="6"]:before {
    opacity: 0.6;
}

[data-overlay-dark="7"]:before,
[data-overlay-light="7"]:before {
    opacity: 0.7;
}

[data-overlay-dark="8"]:before,
[data-overlay-light="8"]:before {
    opacity: 0.8;
}

[data-overlay-dark="9"]:before,
[data-overlay-light="9"]:before {
    opacity: 0.9;
}

[data-overlay-dark="10"]:before,
[data-overlay-light="10"]:before {
    opacity: 1;
}

/*[ margins]*/
.mt-0 {
    margin-top: 0 !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-35 {
    margin-top: 35px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-45 {
    margin-top: 45px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-55 {
    margin-top: 55px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-62 {
    margin-top: 62px !important;
}

.mt-65 {
    margin-top: 65px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-75 {
    margin-top: 75px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-85 {
    margin-top: 85px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-95 {
    margin-top: 95px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-55 {
    margin-bottom: 55px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-62 {
    margin-bottom: 62px !important;
}

.mb-65 {
    margin-bottom: 65px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-75 {
    margin-bottom: 75px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-85 {
    margin-bottom: 85px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-95 {
    margin-bottom: 95px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

/*[ paddings ]*/
.pt-0 {
    padding-top: 0 !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-35 {
    padding-top: 35px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-45 {
    padding-top: 45px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-55 {
    padding-top: 55px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pt-65 {
    padding-top: 65px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pt-75 {
    padding-top: 75px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-85 {
    padding-top: 85px !important;
}

.pt-90 {
    padding-top: 90px !important;
}

.pt-95 {
    padding-top: 95px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-35 {
    padding-bottom: 35px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-45 {
    padding-bottom: 45px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-55 {
    padding-bottom: 55px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-65 {
    padding-bottom: 65px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pb-75 {
    padding-bottom: 75px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pb-85 {
    padding-bottom: 85px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pb-95 {
    padding-bottom: 95px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.no-padding {
    padding: 0 !important;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

body {
    color: #222;
    line-height: 1.3;
    font-weight: 400;
    font-size: 20px;
    font-family: 'Rubik', sans-serif;
    overflow-x: hidden !important;
    letter-spacing: 0.02px;
}

p {
    font-size: 20px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    color: #535353;
    line-height: 2;
    margin: 0;
}

p21 {
    font-size: 14;
    color: #535353;
}

.container-fluid {
    padding-right: 30px;
    padding-left: 30px;
}

img {
    width: 100%;
    height: auto;
}

a, a:hover {
    color: inherit;
    text-decoration: none;
}
blockquote {
    font-size: 20px;
    color: #222;
    font-style: italic;
    padding: 10px 20px;
    line-height: 30px;
    border-left: 3px #222 solid;
    margin: 20px 0;
}
span, a {
    display: inline-block;
}

.section-padding {
    padding: 90px 0 90px;
}

.section-big-padding {
    padding: 200px 0;
}

.section-head {
    margin-bottom: 90px;
}

.section-head h4 {
    font-size: 40px;
    font-weight: 600;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.section-head p {
    color: #757575;
    margin: 10px 0 10px;
    font-weight: 300;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.section-head h4:after {
    content: '';
    background-image: url(../img/title-bg.png);
    background-repeat: repeat;
    background-position: 0% 100%;
    background-size: cover;
    position: absolute;
    left: -20px;
    top: -14px;
    width: 70px;
    height: 70px;
    z-index: -1;
}

.bg-gray {
    background: #fafafa;
}

.o-hidden {
    overflow: hidden;
}

.position-re {
    position: relative;
}

.full-width {
    width: 100% !important;
}

.lg-line-height {
    line-height: 1.6;
}

.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-fixed {
    background-attachment: fixed;
}

.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.wave {
    position: relative;
}

.wave .curve-top {
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    z-index: 4;
}

.wave .curve-bottom {
    position: absolute;
    bottom: -5px;
    left: -5%;
    width: 110%;
    z-index: 4;
}

.wave-light .curve-top {
    fill: #fff;
}

.wave-light .curve-bottom {
    fill: #fff;
}

.wave-gray .curve-bottom {
    fill: #fafafa;
}

.container {
    position: relative;
    z-index: 5;
}

.cd-headline {
    font-size: 4rem;
    line-height: 1.2;
}

@media only screen and (min-width: 768px) {
    .cd-headline {
        font-size: 4.4rem;
        font-weight: 300;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-headline {
        font-size: 6rem;
    }
}

.cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
}

.cd-words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
}

.cd-words-wrapper b.is-visible {
    position: relative;
}

.no-js .cd-words-wrapper b {
    opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
    opacity: 1;
}

.cd-headline.clip span {
    display: inline-block;
    padding: .2em 0;
}

.cd-headline.clip .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top;
}

.cd-headline.clip .cd-words-wrapper::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    width: 2px;
    height: 70%;
    background-color: #aebcb9;
}

.cd-headline.clip b {
    opacity: 0;
}

.cd-headline b.is-visible {
    opacity: 1;
}

.button {
    padding: 12px 30px;
    border: 1px solid #222;
    margin-right: 10px;
    position: relative;
    z-index: 3;
    border-radius: 50px;
}

.button:after {
    content: '';
    background: #222;
    position: absolute;
    top: 0;
    height: 100%;
    border-radius: 10%;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.button:hover:after {
    left: 0;
    right: 0;
    opacity: 1;
    border-radius: 50px;
}

.button span {
    z-index: 2;
}

.button-bg {
    background: #222;
}

.button-bg:after {
    background: #fff;
}

.button-bg:hover span {
    color: #222;
}

.button-bg span {
    color: #fff;
}

.button-bord {
    background: transparent;
}

.button-bord:hover span {
    color: #fff;
}

.button-bord span {
    color: #222;
}

.button-light {
    background: #fff;
    border-color: #fff;
}

.button-light:after {
    background: #222;
}

.button-light:hover span {
    color: #fff;
}

.button-light span {
    color: #222;
}

/*----------------End Basic----------------*/

/*----------------Start Preloader----------------*/
.loading {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #222;
    z-index: 9999999999999;
}

.loading .middle {
    position: absolute;
    top: 50%;
    width: 100%;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.lds-ellipsis div {
    position: absolute;
    top: 27px;
    width: 2px;
    height: 10px;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 6px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 6px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 26px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 45px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(19px, 0);
    }
}

/*----------------End Preloader----------------*/

/*----------------Start Sidebar----------------*/
#main-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.nicolas-nav-toggle {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 9999;
    cursor: pointer;
    opacity: 1;
    visibility: hidden;
    padding: 12px 15px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background: #101010;
    margin: 15px 30px;
    border-radius: 50%;
}
#aside-con {
    padding: 60px 30px;
    width: 23%;
    position: fixed;
    bottom: 0;
    top: 0;
    left: 0;
    z-index: 1001;
    background: #fff;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
#main-content {
    width: 77%;
    float: right;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

#aside-con {
    padding: 60px 30px;
    width: 20%;
    position: fixed;
    bottom: 0;
    top: 0;
    left: 0;
    z-index: 1001;
    background: #fff;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 1200px) {
    #aside-con {
        width: 30%;
    }
}

@media screen and (max-width: 768px) {
    #aside-con {
        width: 270px;
        -moz-transform: translateX(-270px);
        -webkit-transform: translateX(-270px);
        -ms-transform: translateX(-270px);
        -o-transform: translateX(-270px);
        transform: translateX(-270px);
        padding-top: 4em;
    }
}

#aside-con #logo-con {
    text-align: center;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1em;
    text-transform: uppercase;
    margin-bottom: 60px;
    display: block;
    width: 100%;
}

#aside-con #logo-con span {
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    font-weight: 400;
    letter-spacing: 4px;
}

#logo-con-footer {
    text-align: center;
    font-weight: 400;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 0;
    display: block;
    width: 100%;
}

@media screen and (max-width: 768px) {
    #aside-con #logo-con {
        margin-bottom: 60px;
    }
}

#aside-con #logo-con a {
    display: inline-block;
    text-align: center;
    color: #101010;
    letter-spacing: 3px;
    font-weight: 600;
}

#logo-con-footer a {
    display: inline-block;
    text-align: center;
    color: #101010;
}

#aside-con #logo-con a span {
    display: block;
    margin-top: 0px;
    text-align: center;
}

#aside-con #nav-menu ul {
    text-align: left;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 768px) {
    #aside-con #nav-menu ul {
        margin: 0 0 30px 0;
    }
}

#aside-con #nav-menu ul li {
    margin: 15px 0 15px 0;
    padding: 0 0 10px 0;
    list-style: none;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.75em;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px dashed #eee;
}

#aside-con #nav-menu ul li a {
    color: #535353;
    text-decoration: none;
    position: relative;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

#aside-con #nav-menu ul li a:hover {
    text-decoration: none;
    color: #101010;
}

#aside-con #nav-menu ul li a.active {
    color: #101010;
}

#aside-con #nav-menu ul li a.active:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}

#aside-con .nav-menu-footer {
    position: absolute;
    bottom: 30px;
    right: 0;
    left: 0;
    font-size: 15px;
    text-align: center;
    font-weight: 400;
    color: #888;
    padding: 30px;
}

.nav-menu-footer p {
    margin-bottom: 0;
    color: #999;
    letter-spacing: 1px;
}

.nav-menu-footer a {
    color: #101010;
}

@media screen and (max-width: 768px) {
    #aside-con .nav-menu-footer {
        position: relative;
        padding-top: 90px;
    }
}

#aside-con .nav-menu-footer span {
    display: block;
}

#aside-con .nav-menu-footer ul {
    padding: 0;
    margin: 0;
}

#aside-con .nav-menu-footer ul li {
    padding: 0;
    margin: 0;
    display: inline;
    list-style: none;
}

#aside-con .nav-menu-footer ul li a {
    color: #101010;
    padding: 2px;
    font-size: 12px;
    margin: 0 5px 0px;
}

#aside-con .nav-menu-footer ul li a {
    padding: 5px;
}

#aside-con .nav-menu-footer ul li a:hover,
#aside-con .nav-menu-footer ul li a:active,
#aside-con .nav-menu-footer ul li a:focus {
    text-decoration: none;
    outline: none;
    color: #fff;
    background: #222;
}

#main-content {
    width: 80%;
    float: right;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

@media screen and (max-width: 1200px) {
    #main-content {
        width: 70%;
    }
}

@media screen and (max-width: 768px) {
    #main-content {
        width: 100%;
    }
}
.nicolas-nav-toggle {
    cursor: pointer;
    text-decoration: none;
}

.nicolas-nav-toggle.active i::before,
.nicolas-nav-toggle.active i::after {
    background: #fff;
}

.nicolas-nav-toggle.dark.active i::before,
.nicolas-nav-toggle.dark.active i::after {
    background: #101010;
}

.nicolas-nav-toggle:hover,
.nicolas-nav-toggle:focus,
.nicolas-nav-toggle:active {
    outline: none;
    border-bottom: none !important;
}

.nicolas-nav-toggle i {
    position: relative;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    width: 20px;
    height: 1px;
    color: #fff;
    font: bold 14px/.4 Helvetica;
    text-transform: uppercase;
    text-indent: -55px;
    background: #fff;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    top: -2px;
}

.nicolas-nav-toggle i::before,
.nicolas-nav-toggle i::after {
    content: '';
    width: 20px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.nicolas-nav-toggle.dark i {
    position: relative;
    color: #101010;
    background: #101010;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.nicolas-nav-toggle.dark i::before,
.nicolas-nav-toggle.dark i::after {
    background: #101010;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.nicolas-nav-toggle i::before {
    top: -7px;
}

.nicolas-nav-toggle i::after {
    bottom: -7px;
}

.nicolas-nav-toggle:hover i::before {
    top: -10px;
}

.nicolas-nav-toggle:hover i::after {
    bottom: -10px;
}

.nicolas-nav-toggle.active i {
    background: transparent;
}

.nicolas-nav-toggle.active i::before {
    top: 0;
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.nicolas-nav-toggle.active i::after {
    bottom: 0;
    -webkit-transform: rotateZ(-45deg);
    -moz-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    -o-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
}

.nicolas-nav-toggle {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 9999;
    cursor: pointer;
    opacity: 1;
    visibility: hidden;
    padding: 12px 15px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background: #101010;
    margin: 15px 30px;
    border-radius: 50%;
}

@media screen and (max-width: 768px) {
    .nicolas-nav-toggle {
        opacity: 1;
        visibility: visible;
    }
}

.js .animate-box {
    opacity: 0;
}

/*----------------End Sidebar----------------*/

/*----------------Start Navbar----------------*/
.navbar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 9;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    visibility: hidden;
    display: none;
}

.navbar .logo {
    color: #fff;
}

.navbar .icon-bar {
    color: #fff;
}

.navbar .navbar-nav .nav-link {
    font-size: 18px;
    color: #eee;
    letter-spacing: 1px;
    margin: 15px 5px;
    position: relative;
    overflow: hidden;
}

.navbar .navbar-nav .nav-link:after {
    content: '';
    width: 20px;
    height: 2px;
    background: #fff;
    position: relative;
    left: 10px;
    bottom: -30px;
    opacity: 0;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.navbar .navbar-nav .active:after {
    opacity: 1;
    bottom: 10px;
}

.navbar .dropdown:hover > .dropdown-menu {
    display: block;
}

.navbar .dropdown-menu {
    border: 1;
    -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    top: 50%;
    min-width: 30rem;
    padding: 10px;
    border-radius: 0;
}

.navbar .dropdown-item {
    font-size: 50px;
    padding: 40px;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.navbar .dropdown-item:focus, .navbar .dropdown-item:hover {
    padding-left: 20px;
}

.navbar .dropdown-item.active, .navbar .dropdown-item:active {
    background-color: transparent;
    color: inherit;
}
/*white part */
.nav-scroll {
    background: #fff;
    -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    padding: 0;
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    height: 60px;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    visibility: visible;
    padding: 10px;
    z-index: 9999;
}

.nav-scroll .logo {
    color: #222;
    font-weight: 600;
    font-size: 30px;
}

.nav-scroll .icon-bar {
    color: #222;
}

.nav-scroll .navbar-nav .nav-link {
    color: #222;
}

.nav-scroll .navbar-nav .nav-link:after {
    background: #222;
}

.nav-scroll .navbar-nav .logo {
    padding: 15px 0;
    color: #111;
}

/*----------------End Navbar----------------*/

/*----------------Start Header----------------*/
.header {
    min-height: 100vh;
    overflow: hidden;
}

.header .caption .o-hidden {
    display: inline-block;
}

.header .caption h4 {
    font-weight: 200;
    letter-spacing: 4px;
}

.header .caption h1 {
    margin: 10px 0;
    font-size: 60px;
    font-weight: 300;
    font-family: inherit;
    word-spacing: 2px;
    letter-spacing: 2px;
    position: relative;
    top: 80px;
}

.header .caption h1 b {
    font-weight: 700;
}

.header .caption p {
    font-size: 50px;
    font-weight: 300;
    color: #eee;
    letter-spacing: 1px;
    word-spacing: 2px;
    position: relative;
    top: 180px;
    padding: 10px;
}

.hello {
    width: 200px;
    position: relative;
    left: -30%;
    top: 60px;
}


@-webkit-keyframes drop	{
    0%   { top:5px;  opacity: 0;}
    30%  { top:10px; opacity: 1;}
    100% { top:25px; opacity: 0;}
}

@keyframes drop	{
    0%   { top:5px;  opacity: 0;}
    30%  { top:10px; opacity: 1;}
    100% { top:25px; opacity: 0;}
}

/* video background */
.video-overlay {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    overflow: hidden;

}
.video-overlay video {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    object-fit: cover;
}
.bg-overlay {
    background-color: rgba(0,0,0,.6);
}
.bg-overlay {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

/*----------------End Header----------------*/

/*----------------Start About----------------*/
.about .about-img {
    position: relative;
    z-index: 3;
    max-width: 400px;
    margin: 0 auto;
}

.header .caption h4:before {
    content: '';
    width: 400px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: calc(50% - 205px);
    top: -15px;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.header .caption h4:after {
    content: '';
    width: 400px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: calc(50% - 205px);
    top: 50px;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.about .about-img img {
    -webkit-box-shadow: 0px 0px 15px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 15px 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    position: relative;
    -webkit-animation: animation-jump 2s ease-in-out infinite;
    animation: animation-jump 2s ease-in-out infinite;
}

.about .content h4 {
    display: inline-block;
}

.about .content .info h6 {
    margin: 10px 0 30px;
    color: #555;
    font-weight: 300;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.about .content .info p {
    margin-bottom: 10px;
}

.about .social a {
    font-size: 25px;
    margin: 0 5px;
}

.about .social a i {
    padding: 5px;
}

.about .social a:hover {
    color: #fff;
    background: #222;
}

/*----------------End About----------------*/

/*----------------Start Skills----------------*/
.skills-section .content .skills .progress-item {
    margin-top: 25px;
}

.skills-section .content .skills h6 {
    font-size: 21px;
    font-weight: 400;
    color: #000000;
    position: relative;
    z-index: 2;
    margin-bottom: 5px;
}

.skills-section .content .skills .skills-progress {
    width: 100%;
    padding: 10px;
    border-radius: 3px;
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 7px 7px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 7px 7px rgba(0, 0, 0, 0.25);
    position: relative;
}

.skills-section .content .skills .skills-progress span {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 10%;
    border-radius: 3px;
    background-color: #222;
    background-size: 5rem 5rem;
    -webkit-transition: all 1s;
    transition: all 1s;
}

.skills-section .content .skills .skills-progress span:after {
    content: attr(data-value);
    position: absolute;
    top: -30px;
    right: 10px;
    font-size: 20px;
    color: #000000;
}

.skills-section .section-head {
    margin-bottom: 50px;
}

/*----------------End Skills----------------*/

/*----------------Start Services----------------*/
.services .item {
    padding: 30px;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.services.section-padding {
    padding: 90px 0 90px;
}

.services .item .text-center .icon {
    font-size: 50px;
    color: #777;
}

.services .item .left .num {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 25px;
    font-weight: bold;
    color: #999;
    opacity: .5;
}

.services .item .right {
    text-align: center;
}

.services .item .right h6 {
    margin-bottom: 15px;
}

/*----------------End Services----------------*/

/*----------------Start Portfolio----------------*/
.portfolio .filtering span {
    margin: 0 10px 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    opacity: .5;
}

.portfolio .filtering span:after {
    content: '';
    width: 30px;
    height: 2px;
    background-color: #000;
    position: absolute;
    left: calc(50% - 15px);
    bottom: -10px;
    opacity: 0;
}

.portfolio .filtering .active {
    opacity: 1;
}

.portfolio .filtering .active:after {
    opacity: 1;
}

.portfolio .icons-button {
    position: absolute;
    bottom: 2px;
    display: grid;
    left: 4px;
}

.portfolio .items {
    margin-top: 30px;
}

.portfolio .items:hover .item-img-overlay {
    opacity: 1;
    border-radius: 0;
}

.portfolio .item-img {
    position: relative;
}

.portfolio .item-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    opacity: 0;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.portfolio .overlay-info h6 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 5px;
}

.portfolio .overlay-info p {
    color: #ccc;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.portfolio .overlay-info .icon {
    width: 30px;
    height: 30px;
    line-height: 35px;
    border-radius: 0px;
    background-color: #fff;
    color: #222;
    margin: 2px 0px;
}

.portfolio .overlay-info .icon:hover {
    background-color: transparent;
    color: #fff;
}

/*----------------End Portfolio----------------*/

/*----------------Start Portfolio----------------*/

/*----------------End Portfolio----------------*/
.blog .blog-item {
    display: block;
}
.blog-image {
    overflow: hidden;
}
.blog-item img {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.blog-item img:hover {
    -webkit-transform: rotate(10deg) scale(1.3);
    -moz-transform: rotate(10deg) scale(1.3);
    -ms-transform: rotate(10deg) scale(1.3);
    -o-transform: rotate(10deg) scale(1.3);
    transform: rotate(10deg) scale(1.3);
}

.blog-item img {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.blog-list-txt {
    padding: 25px 0px;
}
.blog-list-txt h6 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 0;
}
.blog-list-txt .news-info {
    margin-bottom: 15px;
    margin-top: 5px;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 2px;
}


/*----------------Start Contact----------------*/
.contact {
   /* background: url('../img/title-bg.png');*/
    background-repeat: no-repeat;
    background-position: center;
}

.leave-comment {
    background: #fff !important;
}

.contact .info:hover .icon {
    background-color: transparent;
    color: #222;
    border-color: #eee;
}

.contact .info .icon {
    font-size: 25px;
    text-align: left;
    -webkit-transition: all .4s;
    transition: all .4s;
    color: #222;
}

.contact .info {
    display: inline-flex;
    margin-bottom: 10px;
}

.contact .info .cont {
    margin-left: 20px;
}

.contact .info h6 {
    font-size: 15px;
    font-weight: 500;
}

.contact .info h6 span {
    margin-top: 6px;
    color: rgb(83, 83, 83);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact .form input, .contact .form textarea {
    width: 100%;
    padding: 15px;
    border: 0;
    background: transparent;
    border-bottom: 1px solid #9e9e9e;
    font-size: 22px;
}

.contact .form input:focus, .contact .form textarea:focus {
    border-bottom: 2px solid #222;
}

.contact .form textarea {
    height: 140px;
    max-height: 140px;
    max-width: 100%;
    font-size: 22px;
}

.contact .form button {
    cursor: pointer;
    border-radius: 50px;
    padding: 14px 40px;
    -webkit-box-shadow: 0px 20px 40px -20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 20px 40px -20px rgba(0, 0, 0, 0.1);
    margin: 0;
    outline: none;
}

.contact h4.more-details:after {
    content: '';
    width: 20px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 20px;
    bottom: -5px;
}

.help-block.with-errors, .error_messages {
    margin-left: 2px;
    margin-top: 5px;
    color: #da0000;
}

.success_messages {
    margin-left: 2px;
    margin-top: 5px;
    color: #0163c7;
}

/*----------------End Contact----------------*/

/*----------------Start Footer----------------*/
footer {
    padding: 50px;
    background-color: #222;
}

footer .icon {
    color: #fff;
    font-size: 40px;
    margin: 0 5px 0px;
    padding: 5px;
}

footer .icon:hover, footer .icon:active, footer .icon:focus {
    text-decoration: none;
    outline: none;
    color: #222;
    background: #fff;
}

footer p {
    font-size: 12px;
    letter-spacing: 2px;
}

/*----------------End Footer----------------*/


/*----------------Start Gradient Version----------------*/
.gradient .header .caption h4 {
    color: #fff;
}

.gradient .header {
    background-image: linear-gradient(to bottom,rgba(65, 226, 244, 0.8) 30%,
                                                rgb(67, 237, 220) 60%,
                                                rgba(23, 200, 220, 0.85) 180%), 
                                                url(../img/smirk.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100%;
}
/*#30fcfc is a cool light blue*/
.gradient h4 {
    color: #00dede;
}
.gradient .button-bg {
    background:#00e0e1;

}
.gradient .button {
    border-color: #00e0e1;
}
.gradient .button.button-bord:hover , .gradient .button.button-bord:after {
    background: #00e0e1;
}
.gradient .about .social a i {
    color: #00e0e1;
}
.gradient .services .item .right h6 {
    color: #00e0e1;
}
.gradient .about .social a:hover , .gradient .about .social a i:hover {
    background: #00e0e1;
    color: #fff;
}
.gradient .skills-section .content .skills .skills-progress span, .gradient .counter {
    background: #00e0e1;
    background-image: -moz-linear-gradient(left,#30fcfc 10%,rgba(106, 234, 234, 0.8) 53%,rgba(21, 98, 100, 0.85) 100%);
    background-image: -webkit-linear-gradient(left,#30fcfc 10%,rgba(106, 234, 234, 0.8) 53%,rgba(21, 98, 100, 0.85) 100%) ;
    background-image: linear-gradient(to left,#30fcfc 10%,rgba(106, 234, 234, 0.8) 53%,rgba(21, 98, 100, 0.85) 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.gradient .portfolio .item-img-overlay, .gradient footer {
    background-image: -moz-linear-gradient(left,#30fcfc 10%,rgba(106, 234, 234, 0.8) 53%,rgba(21, 98, 100, 0.85) 100%);
    background-image: -webkit-linear-gradient(left,#30fcfc 10%,rgba(106, 234, 234, 0.8) 53%,rgba(21, 98, 100, 0.85) 100%);
    background-image: linear-gradient(to left,#30fcfc 10%,rgba(106, 234, 234, 0.8) 53%,rgba(21, 98, 100, 0.85) 100%) ;
}
.gradient .portfolio img {
    -webkit-filter: none;
    filter: none;
}
.gradient .counter .item .icon {
    color: #fff;
}
.gradient .counter .item p {
    color: #f1f1f1;
}
.gradient footer p {
    color: #fff;
}

/*----------------Start Gradient Version----------------*/

/*----------------Start Single Post----------------*/

.leave-comment {
    background: #fff !important;
}

.comments .info:hover .icon {
    background-color: transparent;
    color: #222;
    border-color: #eee;
}

.comments .info .icon {
    font-size: 25px;
    text-align: left;
    -webkit-transition: all .4s;
    transition: all .4s;
    color: #222;
}

.comments .info {
    display: inline-flex;
    margin-bottom: 10px;
}

.comments .info .cont {
    margin-left: 20px;
}

.comments .info h6 {
    font-size: 15px;
    font-weight: 500;
}

.comments .info h6 span {
    margin-top: 6px;
    color: #999;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
}

.comments .form input, .comments .form textarea {
    width: 100%;
    padding: 15px;
    border: 0;
    background: transparent;
    border-bottom: 1px solid #9e9e9e;
}

.comments .form input:focus, .comments .form textarea:focus {
    border-bottom: 2px solid #222;
}

.comments .form textarea {
    height: 140px;
    max-height: 140px;
    max-width: 100%;
}

.comments .form button {
    cursor: pointer;
    border-radius: 50px;
    padding: 14px 40px;
    -webkit-box-shadow: 0px 20px 40px -20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 20px 40px -20px rgba(0, 0, 0, 0.1);
    margin: 0;
    outline: none;
}

.comments h4.more-details:after {
    content: '';
    width: 20px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 20px;
    bottom: -5px;
}

.help-block.with-errors, .error_messages {
    margin-left: 2px;
    margin-top: 5px;
    color: #da0000;
}

.success_messages {
    margin-left: 2px;
    margin-top: 5px;
    color: #0163c7;
}

ol.comment-content {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
ol.comment-content li.comment {
    position: relative;
    padding: 0;
}
ol.comment-content li.comment .comment-box {
    position: relative;
    padding: 20px 30px 20px 120px;
    margin-left: 40px;
    color: #101010;
    position: relative;
}
ol.comment-content li.comment .comment-author {
    display: block;
    margin-bottom: 0px;
}
ol.comment-content li.comment .comment-author .comment-avatar-img {
    position: absolute;
    top: 20px;
    left: -40px;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background-color: #fff;
}
ol.comment-content li.comment .comment-author .comment-author-name {
    display: inline-block;
    color: #101010;
    font-family: 'Rambla', sans-serif;
    font-size: 18px;
    line-height: 1.75em;
    font-weight: 700;
    margin-bottom: 0;
}
ol.comment-content li.comment .comment-date {
    color: #888;
    margin-bottom: 15px;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
}
ol.comment-content li.comment p {
    font-family: 'Rambla', sans-serif;
    font-size: 15px;
    line-height: 1.75em;
    margin: 0 0 20px;
    color: #888;
}
ol.comment-content li.comment .reply a {
    margin-top: -5px;
    font-size: 13px;
    color: #888;
}
ol.comment-content li.comment .reply a:hover {
    color: #222;
}
ol.comment-content li .children {
    list-style: none;
    margin-left: 80px;
}
ol.comment-content li .children li {
    padding: 0;
}
.pagination {
    margin-top: 35px;
}
.pagination ul {
    margin: 0 auto;
}
.pagination ul li {
    display: inline-block;
    color: #888;
    padding: 0px 10px;
    font-size: 16px;
    font-weight: 400;
}
.pagination ul li .current {
    font-weight: 700;
    color: #222;
}
/*----------------End Start Single Post----------------*/

/*----------------Start Responsive----------------*/
@media screen and (max-width: 1366px) {
    footer {
        padding-top: 80px !important;
    }
}
@media screen and (max-width: 991px) {
    .mb-md50 {
        margin-bottom: 50px;
    }

    .mb-md30 {
        margin-bottom: 30px;
    }

    .mb-md0 {
        margin-bottom: 0;
    }

    .bg-fixed {
        background-attachment: scroll !important;
    }

    .navbar {
        padding-left: 15px;
    }

    .navbar .navbar-collapse {
        max-height: 340px;
        overflow: auto;
        background: rgb(255, 255, 255);
        text-align: center;
        padding: 10px 0;
    }

    .navbar .nav-link {
        margin: 10px auto !important;
    }

    .nav-scroll .navbar-collapse .nav-link {
        color: #00dede !important;
    }

    .nav-scroll .nav-scroll .navbar-nav .nav-link:after {
        background: #eee !important;
    }

    .header {
        background-attachment: scroll !important;
    }

    .header .caption h4 {
        font-size: 30px;
    }

    .header .caption h1 {
        font-size: 45px;
        font-weight: 300;
        line-height: 1.4;
    }

    .about .social {
        margin-bottom: 40px;
    }
    footer {
        padding-top: 60px !important;
    }
}
@media screen and (max-width: 768px) {
    .navbar {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .header .caption h4:before {
        left: calc(50% - 200px);
        top: -20px;
    }

    .header .caption h4:after {
        left: calc(50% - 200px);
        top: 50px;
    }

    .mb-sm50 {
        margin-bottom: 50px;
    }

    .mb-sm30 {
        margin-bottom: 30px;
    }

    .about .content .info h6 {
        letter-spacing: 2px;
        line-height: 1.7;
    }

    svg {
        display: none;
    }

    .contact.section-padding {
        padding: 90px 0 90px;
    }

    .contact .more-details {
        margin-top: 40px;
    }

    .contact h4.more-details:after {
        content: '';
        width: 20px;
        height: 2px;
        background: #000;
        position: absolute;
        left: 20px;
        bottom: -5px;
    }
    ol.comment-content li.comment .comment-box {
        margin-bottom: 30px;
        margin-left: 30px;
    }
    ol.comment-content li.comment .comment-author .comment-avatar-img {
        left: -35px;
        height: 70px;
        width: 70px;
    }
    ol.comment-content li.comment .reply a {
        position: static;
    }
    footer {
        padding-top: 50px !important;
        padding-right: 30px;
        padding-left: 30px;
    }
}

@media screen and (max-width: 480px) {
    .header .caption h4 {
        font-size: 20px;
    }

    .header .caption h4:after, .header .caption h4:before {
        width: 300px;
        left: calc(50% - 150px);
    }

    .header .caption h1 {
        font-size: 24px;
    }

    .header .caption p {
        font-size: 16px;
    }

    .hello {
        width: 120px;
    }

    .services .item .right {
        margin-left: 0;
    }

    .services .item .text-center .num {
        display: none;
    }

    .services .item {
        text-align: center;
        padding: 30px 30px;
    }

    .services .item:after {
        display: none;
    }

    .portfolio .filtering span {
        margin-bottom: 30px;
    }
    ol.comment-content li.comment .comment-box {
        margin-left: 10px;
        padding-left: 55px;
    }
    ol.comment-content li.comment .comment-author .comment-avatar-img {
        left: -15px;
        top: 12px;
        width: 60px;
        height: 60px;
    }
}
/*----------------End Responsive----------------*/