
body {
    background: #fff;
    color: #5e6271;
    font-family: 'Roboto', sans-serif;
}

* {
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2c3145;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
}



/* Helper class*/

.section-padding {
    padding: 50px 0;
}

.section-padding-top {
    padding: 80px 0 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    margin-bottom: 10px;
    display: inline-block;
}

.section-title hr {
    width: 20px;
    height: 20px;
    background: url(../img/section-icon.png) no-repeat;
    background-size: cover;
    border: none;
    position: relative;
    margin: 0 auto;
}

.section-title p {
    margin-top: 16px;
}

.section-title hr:after {
    content: '';
    width: 70px;
    height: 1px;
    position: absolute;
    left: -80px;
    top: 50%;
}

.section-title hr:before {
    content: '';
    width: 70px;
    height: 1px;
    position: absolute;
    right: -80px;
    top: 50%;
}

.owl-item {
    float: left;
}

.owl-stage-outer {
    overflow: hidden;
}

.owl-nav {
    display: none;
}


/* Button Style */

.boxed-btn {
    display: inline-block;
    color: #fff;
    border-radius: 23px;
    padding: 11px 34px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.boxed-btn:before,
.boxed-btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    border-radius: 0;
    z-index: -1;
    height: 100%;
    background: #fff;
    will-change: transform;
    -webkit-transform: skew(-45deg) scaleX(0);
    transform: skew(-45deg) scaleX(0);
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.boxed-btn:before {
    right: 75%;
    margin-right: -1px;
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
}

.boxed-btn:after {
    width: 70%;
    left: 75%;
    margin-left: -1px;
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
}

.boxed-btn:hover {
    box-shadow: 0px 16px 35px 0px rgba(0, 0, 0, 0.2);
    z-index: 2;
  }

.boxed-btn:hover:before,
.boxed-btn:hover:after {
    -webkit-transform: skew(-45deg) scaleX(1.5);
    transform: skew(-45deg) scaleX(1.5);
}

/* Input Style */

.input {
    position: relative;
    z-index: 1;
    display: inline-block;
    max-width: 100%;
    width: 100%;
    vertical-align: top;
}

.input__field {
    position: relative;
    display: block;
    float: right;
    padding: 8px 15px;
    width: 100%;
    border: none;
    border-radius: 0;
    background: #fff;
    color: #aaa;
}

.input__field:focus {
    outline: none;
}

.input__label {
    display: inline-block;
    float: right;
    padding: 0 1em;
    width: 40%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input__label-content {
    position: relative;
    display: block;
    padding: 0.6em 0;
    width: 100%;
}

.graphic {
    position: absolute;
    top: 0;
    left: 0;
    fill: none;
}

.input--hantus {
    margin-bottom: 40px;
}

.input__field--hantus {
    width: 100%;
    background: transparent;
    color: #2c3145;
}

.input__label--hantus {
    position: absolute;
    width: 100%;
    height: 100%;
    color: #2c3145;
    cursor: text;
}

.input__label-content--hantus {
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.graphic--hantus {
    -webkit-transform: scale3d(1, -1, 1);
    transform: scale3d(1, -1, 1);
    -webkit-transition: stroke-dashoffset 0.3s;
    transition: stroke-dashoffset 0.3s;
    pointer-events: none;
    stroke: #d9d9d9;
    stroke-width: 4px;
    stroke-dasharray: 962;
    stroke-dashoffset: 558;
}

.textarea .graphic--hantus {
    stroke-width: 2px;
}

.input__field--hantus:focus+.input__label--hantus,
.input--filled .input__label--hantus {
    cursor: default;
    pointer-events: none;
}

.input__field--hantus:focus+.input__label--hantus .graphic--hantus,
.input--filled .graphic--hantus {
    stroke-dashoffset: 0;
}

.input__field--hantus:focus+.input__label--hantus .input__label-content--hantus,
.input--filled .input__label-content--hantus {
    -webkit-transform: scale3d(0.81, 0.81, 1) translateY(-50px);
            transform: scale3d(0.81, 0.81, 1) translateY(-50px);
}


/*
==========================================
    Preloader
==========================================
*/

.preloader {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
}

.wrapper {
    height: 50px;
    margin-top: calc(50vh - 25px);
    margin-left: calc(50vw - 100px);
    width: 180px;
}

.circle {
    border-radius: 50%;
    border: 3px #fff solid;
    float: left;
    height: 50px;
    margin: 0 5px;
    width: 50px;
}

.circle-1 {
    -webkit-animation: move 1s ease-in-out infinite;
            animation: move 1s ease-in-out infinite;
}

.circle-1a {
    -webkit-animation: fade 1s ease-in-out infinite;
            animation: fade 1s ease-in-out infinite;
}

@-webkit-keyframes fade {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    100% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
}

@keyframes fade {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    100% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
}

.circle-2 {
    -webkit-animation: move 1s ease-in-out infinite;
            animation: move 1s ease-in-out infinite;
}

@-webkit-keyframes move {
    0% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(60px);
                transform: translateX(60px);
    }
}

@keyframes move {
    0% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(60px);
                transform: translateX(60px);
    }
}

.circle-1a {
    margin-left: -55px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.circle-3 {
    -webkit-animation: circle-3 1s ease-in-out infinite;
            animation: circle-3 1s ease-in-out infinite;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

@-webkit-keyframes circle-3 {
    0% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
    100% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@keyframes circle-3 {
    0% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
    100% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

.preloader h1 {
    color: #fff;
    margin: 40px auto;
    text-align: center;
}


/*
==========================================
    01. Header top
==========================================
*/

#header-top {
    padding: 5px 0 5px;
    background: #c56e2e;
}

#header-top p {
    display: inline-block;
    position: relative;
    padding-right: 30px;
    margin-right: 30px;
    -webkit-transform: translateY(-30%);
            transform: translateY(-30%);
}

#header-top p:after {
    content: '';
    position: absolute;
    top: 3px;
    right: 0;
    width: 1px;
    height: 18px;
    background: #cacaca;
}

#header-top i {
    margin-right: 6px;
}

#header-top ul li {
    display: inline-block;
}

#header-top .header-social li {
    margin-right: 10px;
    margin-left: 0;
    display: inline-flex;
}

.header-social li a {
    text-align: center;
    color: #fff;
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #5e6271;
    -webkit-transition: .3s all;
    transition: .3s all;
    overflow: hidden;
}

#header-top .header-social i {
    color: #97c52e;
    margin-right: 5px;
    line-height: 20px;
}

.header-social a:hover i {
    -webkit-animation: socialFxD .3s forwards;
            animation: socialFxD .3s forwards
}

@-webkit-keyframes socialFxD {
    49% {
        -webkit-transform: translateX(100%);
                transform: translateX(100%)
    }
    50% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%)
    }
    51% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
    }
}

@keyframes socialFxD {
    49% {
        -webkit-transform: translateX(100%);
                transform: translateX(100%)
    }
    50% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%)
    }
    51% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
    }
}

#header-top li {
    margin-left: 20px;
}

#header-top li a {
    color: #f1f1f1;
}

.header-top-right {
    /*-webkit-transform: translateY(-30%);
    transform: translateY(12%);*/
}

/*
==========================================
    02. Navbar
==========================================
*/

.navbar-area {
    background: #fff;
    z-index: 99999;
    box-shadow: 0px 25px 45px 0px rgba(0, 0, 0, 0.15);
}

.navbar-area .logo img {
    padding: 3px 0;
    width: 65%;
}

.main-menu li {
    display: inline-block;
    margin-left: 15px;
}

.main-menu li a {
    color: #363636;
    display: block;
    padding: 30px 0;
    position: relative;
    -webkit-transition: .3s all;
    transition: .3s all;
    font-size: 15px;
}

.main-menu li.c-dropdowns.active li a {
    color: #363636;
}

.main-menu li.active a:before,
.main-menu li a:before {
    position: absolute;
    top: 1px;
    left: 0;
    color: transparent;
    content: "";
    height: 2px;
    width: 100%;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: scale(0);
            transform: scale(0);
}

.main-menu li.active a:before {
    visibility: visible;
    -webkit-transform: scale(1);
            transform: scale(1);
}

.main-menu li a:hover:before {
    visibility: visible;
    -webkit-transform: scale(1);
            transform: scale(1);
}


/* Drop Down */

.main-menu li.c-dropdowns {
    position: relative;
}

.main-menu li.c-dropdowns li a {
    padding: 10px 20px;
    color: #363636!important;
}

.main-menu ul li ul.cr-dropdown-menu {
    text-align: left;
    position: absolute;
    left: 0;
    top: 100%;
    padding: 10px 0;
    width: 220px;
    background: #ffffff;
    visibility: hidden;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    z-index: 9999;
}

.main-menu ul li ul.cr-dropdown-menu li {
    display: block;
    margin-left: 0;
}

.main-menu ul li ul.cr-dropdown-menu li a:hover {
    padding-left: 23px;
}

.main-menu ul li ul.cr-dropdown-menu li a:before {
    -webkit-transform: scale(1);
            transform: scale(1);
    width: 0%;
    top: auto;
    bottom: 0;
    margin-left: 20px;
}

.main-menu ul li ul.cr-dropdown-menu li.active a:before,
.main-menu ul li ul.cr-dropdown-menu li a:hover:before {
    width: 80%;
}

.main-navigation ul li.last-elements .cr-dropdown-menu {
    right: 0;
    left: auto;
}

.main-menu ul li:hover ul.cr-dropdown-menu {
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.main-menu ul li ul.cr-dropdown-menu li {
    position: relative;
}

.main-menu ul li ul.cr-dropdown-menu li ul {
    position: absolute;
    right: calc(100% + 0px);
    top: 0;
    width: 275px;
    padding: 10px 0;
    background: #fff;
    -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    z-index: 999;
}

.main-menu ul li ul.cr-dropdown-menu li:hover ul {
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* Cart */

.cart-icon {
    padding: 0px;
    color: #fff;
}

.cart-icon-wrapper {
    cursor: pointer;
    position: relative;
}

.cart-count {
    text-align: center;
    position: absolute;
    top: 0;
    display: inline-block;
    right: -15px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #2c3145;
    color: #fff;
    border: 2px solid #fff;
}

.sidenav {
    background-color: #fff;
    bottom: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: fixed;
    left: calc(100% - 350px);
    top: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 350px;
    z-index: -1;
    padding: 0px 15px 20px;
    z-index: 9999999999;
    box-shadow: 0px 16px 35px 0px rgba(0, 0, 0, 0.2);
}

.sidenav .sidenav-header {
    overflow: hidden;
    padding: 0;
    padding-left: 30px;
    padding-top: 5px;
    margin-bottom: 30px;
}

.sidenav .sidenav-header h3 {
    margin-left: 20px;
    position: relative;
    padding-top: 7px;
    padding-bottom: 5px;
}

.sidenav .sidenav-header h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #eee;
}

.sidenav .close-sidenav {
    background-color: #f7f7f7;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5em;
    padding: 10px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 6px;
    margin-left: 6px;
    border: 1px solid #eee;
}

.sidenav .cart-item {
    padding: 10px;
    border: 1px solid #eee;
    margin-bottom: 10px;
    position: relative;
}
.sidenav.active {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateX(0);
            transform: translateX(0);
    visibility: visible;
    z-index: 99999999999999999999999;
    box-shadow: -5px 0 30px 0 rgba(100, 100, 100, 0.2);
}
.sidenav.active .cart-item {
    font-size: 0;
}
.sidenav.active .cart-item .cart-item--thumb {
    display: inline-block;
    max-width: 100%;
    vertical-align: top;
}
.sidenav.active .cart-item input{
    margin-bottom:20px;
}
.sidenav-header img{
    margin:auto;
    display:block;
    margin-bottom:25px;
}
.sub-total span {
    float: right;
}
.form-control:focus{
    outline: none!important;
    box-shadow: none;
    border: 1px solid #ced4da;
}

.fl {
    float: right;
}

.cart-buttons {
    margin-top: 20px;
    display: block;
}

.cart-overlay {
    background-color: transparent;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    visibility: hidden;
}

.cart-overlay.active {
    background-color: rgba(50, 50, 50, 0.5);
    bottom: 0;
    display: block;
    height: 100%;
    left: 0;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    position: fixed;
    right: 0;
    top: 0;
    visibility: visible;
    z-index: 99;
}


/* Mean menu */

.mean-container .mean-bar {
    background: transparent none repeat scroll 0 0;
    min-height: 50px;
    padding: 0;
    margin: 15px 15px !important;
    position: absolute;
    left: 0;
    width: 90%;
}

.mean-container a.meanmenu-reveal {
    border: 1px solid;
    margin-top: 15px;
    margin-right: 10px;
    padding: 4px 5px;
    position: absolute;
    z-index: 99;
}

.mean-container .mean-nav ul {
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.mean-container .mean-nav {
    margin-top: -14px;
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.mean-container .mean-nav ul li a.mean-expand {
    height: 28px;
}

.mean-container .mean-nav ul li a {
    text-transform: capitalize;
}

/* Sticky */

div#sticky-wrapper.is-sticky .sticky-nav {
    background: #fff !important;
    background-image: none;
    box-shadow: 0px 0 1px rgba(0, 0, 0, .2);
}

.is-sticky .sticky-nav {
    -webkit-animation: fadeInDown 1s both;
    animation: fadeInDown 1s both;
    z-index: 999;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    cursor: pointer;
}

.is-sticky .cart-icon,
.is-sticky .main-menu li a {
    padding: 30px 0;
}

.is-sticky .navbar-area .logo img {
    padding: 3px 0;
}

/* Search */

.search-button {
    position: relative;
}

.sb-search {
    position: relative;
    top: -21px;
    left: 0px;
    width: 0;
    height: 0px;
    float: right;
    -webkit-backface-visibility: hidden;
    margin-left: 10px;
}
.sb-icon-search i{
    margin-right: 0px!important;
    font-weight: 900;
}
.sb-search-input {
    position: absolute;
    top: 0;
    right: 0px;
    border: none;
    outline: none;
    background: none;
    width: 100%;
    margin: 0;
    z-index: 10;
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
    padding: 5.5px;
    margin-right: 0;
}

input[type="search"].sb-search-input {
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
}

.sb-icon-search,
.sb-search-submit {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    margin: 0;
    text-align: center;
    cursor: pointer;
}

.sb-search-submit {
    background: #fff;
    /* IE needs this */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    /* IE 8 */
    filter: alpha(opacity=0);
    /* IE 5-7 */
    opacity: 0;
    color: transparent;
    color: red;
    border: none;
    outline: none;
    z-index: -1;
}

.sb-icon-search {
    color: #000;
    z-index: 10;
    font-size: 16px;
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
}

.sb-icon-search:before {
    content: "";
}

.sb-search.sb-search-open input[type="search"].sb-search-input {
    width: 660px;
    background: #f7f7f7;
    font-size: 15px;
}

ul.mbl {
    margin-right: 30px;
}

ul.mbl li {
    display: inline-block;
    margin-right: 20px;
}



/*
==========================================
    03. Slider
==========================================
*/

header {
    overflow: hidden;
}

.header-slider {
    cursor: crosshair;
    height:400px;
}

.header-single-slider figure {
    position: relative;
    display: inline-block;
}

.header-single-slider figure img {
    display: block;
    margin: 0;
}

.header-single-slider .content {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    padding: 0 15px;
    z-index: 1;
}


.header-single-slider .container.inner-content {
    width: 100%;
}

.header-single-slider .container.inner-content p {
    width: 50%;
    margin-bottom: 30px;
}

.header-single-slider .container.inner-content.text-center p,
.header-single-slider .container.inner-content.text-center {
    margin: 0 auto;
    margin-bottom: 30px;
}

.header-single-slider .container.inner-content.text-right p {
    margin-left: auto;
}

.header-slider h3 {
    margin-bottom: 16px;
}

.header-slider h1 {
    margin-bottom: 24px;
}

.header-slider .boxed-btn {
    display: inline-block;
    padding: 14px 30px;
    color: #fff;
}

.header-slider .owl-nav {
    display: block;
}

.header-slider .owl-next,
.header-slider .owl-prev {
    width: 50px;
    height: 50px;
    text-align: center;
    background: #2c3145;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    position: absolute;
    top: 50%;
    -webkit-transition: .7s;
    transition: .7s;
}

.header-slider .owl-next:hover,
.header-slider .owl-prev:hover {
    color: #fff;
}

.header-slider .owl-prev {
    left: -200px;
    visibility: hidden;
}

.header-slider:hover .owl-prev {
    left: 50px;
    visibility: visible;
}

.header-slider .owl-next {
    right: -200px;
    visibility: hidden;
}

.header-slider:hover .owl-next {
    right: 50px;
    visibility: visible;
}


/*
==========================================
    04. Slider Contact
==========================================
*/

.contact-wrapper {
    border-radius: 5px;
    background: #fff;
    box-shadow: 0.5px 1.866px 5px 0px rgba(42, 57, 63, 0.15);
    margin-top: -30px;
}

.single-contact {
    background: #fff;
    -webkit-transition: .3s;
    transition: .3s;
    padding: 5px 15px;
}

.single-contact h4 {
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.contact-wrapper .single-contact p {
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.contact-wrapper i,
.contact-wrapper img {
    float: left;
    margin-right: 20px;
    -webkit-transition: .3s;
    transition: .3s;
}

.contact-wrapper .single-contact:hover i,
.contact-wrapper .single-contact:hover img {
    -webkit-transform: scale(1.18);
    transform: scale(1.18);
}

.contact-wrapper .single-contact:hover p {
    color: #2c3145;
}

/*
==========================================
    05. Our Service
==========================================
*/
.service-box {
    box-shadow: 0px 2px 5px #ccc;
    padding: 20px 0px;
}
.service-box figure {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    -webkit-transition: .3s;
    transition: .3s;
}
.service-box figure img{
    box-shadow: 0px 2px 5px #848484;
    border-radius: 50%;
    border: 5px solid #97c52e;
}

.service-box ul{
    margin-top: 20px; margin-bottom: 10px;
}
.service-box ul li{
    margin-bottom:5px;
    font-size:14px;
}
.service-box a{
    background:#c56e2e;
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 14px;
    line-height: 21px;
}
.service-box a:hover{

}

.service-box:hover figure {
    box-shadow: -3.758px 26.737px 43px 0px rgba(42, 57, 63, 0.15);
}
.service-box figure figcaption h3{
    color:#fff;
}

.service-box figure figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    padding: 0 15px;
    z-index: 2;
    -webkit-transform: scale(0);
            transform: scale(0);
}

.service-box:hover figure figcaption {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.service-box figure:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2c3145;
    opacity: .7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    border-radius: 50%;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: scale(0);
            transform: scale(0);
}

.service-box:hover figure:after {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: .7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    visibility: visible;
}

.service-box figure figcaption .boxed-btn {
    padding: 14px 24px;
    color: #fff;
}

.service-box h4 {
    margin-top: 20px;
    margin-bottom: 15px;
}

.service-box p {
    margin-bottom: 14px;
}

.service-box p.price {
    margin-bottom: 0;
}

/*
==========================================
    09. counter
==========================================
*/

#counter {
    background: url(../img/counter-bg.jpg) no-repeat center / 100% 100%;
    padding: 40px 0;
}

#counter .single-box img {
    margin-bottom: 15px;
}

#counter .single-box i {
    margin-bottom: 20px;
}

#counter .single-box h3 {
    margin-bottom: 5px;
    color: #191919;
}

#counter .single-box p {
    color: #707070;
}


/*
==========================================
    10. Product
==========================================
*/

#product {
    overflow: hidden;
}

#product.section-padding {
    padding-bottom: 35px;
}

.single-product {
    box-shadow: 0px 4px 10px rgba(44, 49, 59, 0.15);
    border-radius: 5px;
    margin: 0;
    position: relative;
    -webkit-transition: .3s all;
    transition: .3s all;
    padding: 5px;
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
}

.single-product:hover {
    box-shadow: -3.758px 26.737px 43px 0px rgba(42, 57, 63, 0.15);
}

.product-img {
    height: auto;
    line-height: 0;
}
.product-img img{
    width: 100%;
}

.single-product h5 {
    margin-bottom: 0px;
    margin-top: 0px;
    padding: 15px;
}

.single-product .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 49, 69, .7);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition: .3s all;
    transition: .3s all;
    -webkit-transform: scale(.5);
            transform: scale(.5);
}

.single-product:hover .overlay {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}

.single-product .overlay li {
    display: inline-block;
}

.single-product .overlay .icons {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: 50%;
}

.single-product .overlay li a {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: block;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.single-product .overlay li a:hover {
    color: #fff;
}


.product-carousel .owl-nav {
    display: block;
}

.product-carousel .owl-next,
.product-carousel .owl-prev {
    width: 50px;
    height: 50px;
    text-align: center;
    background: #9598a2;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    position: absolute;
    top: 50%;
    -webkit-transition: .7s;
    transition: .7s;
}

.product-carousel .owl-next:hover,
.product-carousel .owl-prev:hover {
    color: #fff;
}

.product-carousel .owl-prev {
    left: -50px;
}

.product-carousel .owl-next {
    right: -50px;
}

/*
==========================================
    11. Testimonial
==========================================
*/

#testimonial {
    background: url(../img/testimonial/testimonial-bg.jpg) no-repeat center / 100% 100%;
}

.single-testimonial p {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.testimonial-carousel .owl-dots {
    width: 300px;
    margin: 20px auto 0;
}

.testimonial-carousel .owl-dots div {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 15px;
    opacity: .5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    cursor: pointer;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    opacity: 1 !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.testimonial-carousel .owl-dots div:nth-child(1) {
    background: url(../img/testimonial/testimonial01.png) no-repeat center / cover;
}


.testimonial-carousel .owl-dots div:nth-child(2) {
    background: url(../img/testimonial/testimonial02.png) no-repeat center / cover;
}


.testimonial-carousel .owl-dots div:nth-child(3) {
    background: url(../img/testimonial/testimonial03.png) no-repeat center / cover;
}

.testimonial-carousel .owl-nav {
    display: block;
}

.testimonial-carousel .owl-next,
.testimonial-carousel .owl-prev {
    color: #9598a2;
    cursor: pointer;
    position: absolute;
    top: 76%;
    -webkit-transition: .7s;
    transition: .7s;
}

.testimonial-carousel .owl-prev {
    left: 350px;
}

.testimonial-carousel .owl-next {
    right: 350px;
}

/*
==========================================
    15. Subscribe
==========================================
*/

#subscribe {
    padding: 10px 0;
    color: #fff;
}

#subscribe i {
    float: left;
    margin-right: 20px;
    -webkit-transition: .5s all;
    transition: .5s all;
    margin-top: -9px;
}

#subscribe:hover i {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    -webkit-filter: FlipH;
    filter: FlipH;
    -ms-filter: "FlipH";
}

#subscribe h3 {
    margin-bottom: 6px;
    color: #fff;
}

#subscribe-form input[type=email] {
    background: rgba(255, 255, 255, .3);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 23px;
    float: right;
    width: 70%;
}

#subscribe-form input[type=email]::-webkit-input-placeholder {
    color: #fff;
}

#subscribe-form input[type=email]::-moz-placeholder {
    color: #fff;
}

#subscribe-form {
    position: relative;
    margin-top: 5px;
}

#subscribe-form button {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    border: none;
    padding: 12px 20px 10px;
    border-radius: 0 23px 23px 0;
    cursor: pointer;    
}

/*
==========================================
    16.footer-copyright
==========================================
*/

#footer-copyright {
    padding: 5px 0;
    background: #333;
}
.copyright-text p{
    color: #f7f7f7;
    font-weight: 500;
}
.text_copyright p{
    float:right;
    color: #f7f7f7;
    font-weight: 500;
}
.text_copyright p a{
    text-decoration: underline;
    color: #c56e2e;
    font-weight:600;
}
.text_copyright p a:hover{
    text-decoration: none;
    color: #ccc;
}
/* Scroll Up */

.scrollup {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    color: #fff;
    z-index: 888;
    -webkit-transition: .3s;
    transition: .3s;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .5)
}

.scrollup:hover {
    background: #fff;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .5)
}


/*
==========================================
    17. Breadcrumb
==========================================
*/

#breadcrumb-area {
    position: relative;
    background-color:#97c52e;
    z-index: 2;
    padding: 20px 0 20px;
    color: #fff;
}
#breadcrumb-area ul{
    float: right;
    line-height: 45px;
}
#breadcrumb-area h2 {
    color: #fff;
    margin-bottom: 0px;
    float: left;
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: 35px!important;
    /*text-shadow: 0px 2px 1px #000;*/
}
#breadcrumb-area ul li {
    display: inline-block;
    position: relative;
    margin-right: 10px;
}
#breadcrumb-area ul li:last-child:after {
    display: none;
}
#breadcrumb-area ul li {
    color: #fff;
}
#breadcrumb-area ul li a{
    color: #c56e2e!important;
}

/*
=================================================================
    02. About Us page
================================================================
*/


/*
==========================================
    01. Welcome
==========================================
*/

#welcome .section-title h3 {
    margin-bottom: 5px;
}

.welcome-box {
    background: #fff;
    -webkit-transition: .3s all;
    transition: .3s all;
    box-shadow: 0px 1px 4px 0px rgba(44, 49, 59, 0.15);
}

.welcome-box:hover {
    box-shadow: -3.758px 26.737px 43px 0px rgba(42, 57, 63, 0.15);
}

.welcome-content {
    padding: 30px;
}

.welcome-box img {
    width: 100%;
}

.welcome-box h4 {
    margin-bottom: 10px;
}

.welcome-box p {
    margin-bottom: 20px;
}

.welcome-box a {
    color: #c2c2c2;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.welcome-box a i {
    margin-left: 5px;
}

/*
==========================================
    02. Why choose us
==========================================
*/

#wcu {
    background: #f7f7f7;
    position: relative;
}

.video-section {
    background: url(../img/about-page/wcu.jpg) no-repeat center / cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 45%;
}

.video-section:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    z-index: -1;
    background: #2c3145;
}

.video-section .play-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: .5s;
    transition: .5s;
}

.video-section .play-icon:hover {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.watch-more {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.watch-more a {
    color: #fff;
}

.wcu-content {
    padding: 60px 0;
}

#wcu h2 {
    margin-bottom: 20px;
}

#wcu ul {
    margin: 16px 0 30px;
}

#wcu ul li {
    margin-bottom: 8px;
}

#wcu ul li:before {
    content: '\f00c';
    font-family: 'FontAwesome';
    margin-right: 10px;
}

#wcu .fun-fact h2 {
    margin-bottom: 5px;
}

/*
==========================================
    03. About-partner
==========================================
*/

#about-partner {
    padding: 80px 0;
}

#about-partner .single-partner {
    width: 100%;
    float: left;
    background: #f7f7f7;
    border: 0px solid rgba(0, 0, 0, .1);
}

#about-partner .single-partner:nth-child(1),
#about-partner .single-partner:nth-child(2),
#about-partner .single-partner:nth-child(3),
#about-partner .single-partner:nth-child(4) {
    border-bottom-width: 1px;
}

#about-partner .single-partner:nth-child(2) {
    border-left-width: 1px;
    border-right-width: 1px;
}

#about-partner .single-partner:nth-child(3) {
    border-right-width: 1px;
}

#about-partner .single-partner:nth-child(6) {
    border-left-width: 1px;
    border-right-width: 1px;
}

#about-partner .single-partner:nth-child(7) {
    border-right-width: 1px;
}

#portfolio.pricing-page {
    background: #fff;
}


/*
=================================================================
    03. Gallery page
================================================================
*/

.gallery-tab-sorting {
    margin-bottom: 40px;
}

.gallery-tab-sorting li {
    display: inline-block;
    padding: 0 10px;
}

.gallery-tab-sorting li a {
    color: #5e6271;
    padding: 0 5px 5px;
    display: block;
    position: relative;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.gallery-tab-sorting li a:after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: .3s all;
    transition: .3s all;
}

.gallery-tab-sorting li a.active:after,
.gallery-tab-sorting li a:hover:after {
    -webkit-transform: scale(1);
            transform: scale(1);
}

.gallery-page .gallery-item figure {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    -webkit-transform: scale(1.1, 1.05);
            transform: scale(1.1, 1.05);
}

.gallery-page .gallery-item figure img {
    height: 100%;
    width: 100%;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}

.gallery-page .gallery-item figure:hover img {
    -webkit-transform: scale(10);
    transform: scale(10);
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
}

.gallery-page .gallery-item figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    padding: 0 15px;
    z-index: 2;
    background: rgba(44, 49, 69, .7);
}

.gallery-page .gallery-item:hover figcaption {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.gallery-page .gallery-item figcaption ul li {
    display: inline-block;
    margin-right: 5px;
}

.gallery-page .gallery-item figcaption ul li a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: block;
    text-align: center;
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
}

.gallery-page .gallery-item figcaption ul li a:hover {
    color: #fff;
}

.gallery-page .gallery-item figcaption h4 {
    color: #fff;
    margin: 15px 0 0;
}

.gallery-page .gallery-item figcaption h4,
.gallery-page .gallery-item figcaption ul li,
.gallery-page .gallery-item figcaption p {
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.gallery-page .gallery-item figure:hover figcaption h4,
.gallery-page .gallery-item figure:hover figcaption ul li,
.gallery-page .gallery-item figure:hover figcaption p {
    -webkit-transform: scale(1);
    transform: scale(1);
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
}

/*
=================================================================
    04. Contact page
================================================================
*/
.contact_form label {
    font-size: 14px!important;
    font-weight:600;
}
#contact h2 {
    margin-bottom: 30px;
}

.contact-form textarea:focus,
.contact-form input:focus {
    border-style: 0;
}

.contact-form .input__label--hantus {}

.contact-form .input__field {
    padding: 10px 15px;
    border: 1px solid #eee;
}

.contact-form .input__field:focus {
    border-color: transparent;
}

.contact-form .graphic--hantus {
    stroke: transparent;
}

.contact-form button {
    border: none;
    cursor: pointer;
}

.info-box {
    padding: 5px 10px;
    box-shadow: 0px 1px 4px 0px rgba(44, 49, 59, 0.15);
    margin-bottom: 10px;
    -webkit-transition: .3s all;
    transition: .3s all;
    overflow: hidden;
}

.info-box:hover {
    box-shadow: 0px 4px 30px 0px rgba(44, 49, 59, 0.15);
}

.contact-info .info-box:last-child {
    margin-bottom: 0;
}

.info-box i {
    float: left;
    margin-right: 10px;
}

.info-box h4 {
    margin-bottom: 10px;
}
.info-box img{
    float: left;
    margin-right: 15px;
    margin-top: 0px;
}

/*
=================================================================
    05. Portfolio page
================================================================
*/

.portfolio-tab-sorting {
    border: 1px solid #ebebeb;
    width: 64.2%;
    margin: 0 auto 50px;
    border-radius: 23px;
    overflow: hidden;
}

.portfolio-tab-sorting li {
    display: inline-block;
}

.portfolio-tab-sorting li a {
    padding: 10px 25px;
    color: #5e6271;
    -webkit-transition: .3s all;
    transition: .3s all;
    display: block;
    margin-right: -4px;
}

.portfolio-tab-sorting li a:hover,
.portfolio-tab-sorting li a.active {
    color: #fff;
}

.portfolio-item {
    margin-bottom: 15px;
}

.portfolio-page .portfolio-item figure {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    border-radius: 5px;
    background: rgba(44, 49, 69, .7);
    -webkit-transition: .3s all;
    transition: .3s all;
}

.portfolio-page .portfolio-item figure:hover {
    box-shadow: -3.758px 15px 30px 0px rgba(42, 57, 63, 0.15);
}


.portfolio-page .portfolio-item figure img {
    max-height: 100%;
    width: 100%;
    -webkit-transition: opacity 1s, -webkit-transform 1s;
    transition: opacity 1s, -webkit-transform 1s;
    transition: opacity 1s, transform 1s;
    transition: opacity 1s, transform 1s, -webkit-transform 1s;
}

.portfolio-page .portfolio-item figure:hover img {
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.portfolio-page .portfolio-item figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    opacity: 0;
    padding: 0 15px;
    z-index: 2;
    border-radius: 5px;
}

.portfolio-page .portfolio-item figure:hover figcaption {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.portfolio-page .portfolio-item figcaption h4 {
    color: #fff;
    margin: 0 0 5px;
}

.portfolio-page .portfolio-item figure:hover figcaption h4 {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.portfolio-page .portfolio-item figcaption h6 {
    color: #fff;
    margin: 0 0 12px;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: translate3d(-360px, 0, 0);
    transform: translate3d(-360px, 0, 0);
}

.portfolio-page .portfolio-item figure:hover figcaption h6 {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.05s;
}

.portfolio-page .portfolio-item figcaption p {
    margin-bottom: 10px;
}

.portfolio-page .portfolio-item figure:hover figcaption p {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.1s;
}

.portfolio-page .portfolio-item figcaption a {
    display: inline-block;
    color: #fff;
    text-decoration: underline;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.portfolio-page .portfolio-item figure:hover figcaption a {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.15s;
}

.portfolio-page .portfolio-item figure figcaption a:hover {
    color: rgba(255, 255, 255, .7);
}

.portfolio-page .portfolio-item figcaption p,
.portfolio-page .portfolio-item figcaption a,
.portfolio-page .portfolio-item figcaption h6,
.portfolio-page .portfolio-item figcaption h4 {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: translate3d(-360px, 0, 0);
    transform: translate3d(-360px, 0, 0);
}

.portfolio-page .portfolio-item figure:hover figcaption h4,
.portfolio-page .portfolio-item figure:hover figcaption h6,
.portfolio-page .portfolio-item figure:hover figcaption p,
.portfolio-page .portfolio-item figure:hover figcaption a {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/*
=================================================================
    06. Blog page
================================================================
*/

.full-width.section-padding {
    padding-bottom:  50px;
}

.blog-post {
    box-shadow: 0px 1px 4px 0px rgba(44, 49, 59, 0.15);
    border-radius: 5px;
    -webkit-transition: .3s all;
    transition: .3s all;
    margin-bottom: 30px;
}

.blog-post:hover {
    box-shadow: -3.758px 26.737px 43px 0px rgba(42, 57, 63, 0.15);
}

.post-thumb {
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.post-thumb img {
    -webkit-transition: all ease-in .28s;
    transition: all ease-in .28s;
    width: 100%;
}

.blog-post:hover .post-thumb img {
    -webkit-transform: scale(1.15) rotate(-4deg);
            transform: scale(1.15) rotate(-4deg);
}

.post-content {
    padding: 15px 15px;
}

.meta-info li {
    display: inline-block;
    padding-right: 15px;
    margin-right: 15px;
    position: relative;
}

.meta-info li:after {
    content: '';
    height: 16px;
    width: 2px;
    position: absolute;
    right: 0;
    top: 4px;
    background: #c2c2c2;
}

.meta-info li:last-child:after {
    display: none;
}

.meta-info li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.meta-info li a {
    color: #c2c2c2;
}

.meta-info li a:hover {
    color: #2c3145;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.blog-post .post-title a {
    color: #2c3145;
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.blog-post p {
    margin-bottom: 10px;
    text-align:justify;
}

.blog-post a.read-more {
    color: #c2c2c2;
}

.sidebar h2{
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px;
}
.event_heading{
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px;
}
.sidebar img{
    width:100%;
    margin-top:15px;
}

/*
=======================================
    01. Single Post
=======================================
*/

.single-post .blog-post {
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
}

.single-post .blog-post .post-thumb {
    border-radius: 0;
}

.single-post .blog-post .post-content {
    padding: 30px 0;
}

.single-post .post-header {
    border-bottom: 1px solid #c2c2c2;
    padding-bottom: 10px;
}

.single-post .post-header ul {
    display: inline-block;
}

.single-post .post-header .text-right {
    float: right;
}

.single-post .post-header .text-right li {
    display: inline-block;
    margin-left: 15px;
}

.single-post .post-header .text-right li a {
    color: #c2c2c2;
}

.single-post .post-header .text-right li a i {
    margin-right: 5px;
}

.meta-data ul {
    display: inline-block;
}

.meta-data ul.text-right {
    float: right;
}

.meta-data ul li {
    display: inline-block;
    color: #2c3145;
}

.meta-data ul li a {
    color: #c2c2c2;
}

.meta-data ul.share li a {
    padding-left: 15px;
}

.post-new-comment h4 {
    margin-bottom: 10px;
}
.media p.comment {
    margin-bottom: 6px;
}

/* =====================================
    02. Post Comment Area
===================================== */

.post-comments-area {
    margin-top: 30px;
}

.comment-author a {
    color: #2c3145;
    margin-bottom: 5px;
    display: block;
}

.post-comments-area .comment-time-left {
    margin-bottom: 7px;
}

.post-comments-area .media-left {
    padding-right: 25px;
}

.post-comments-area .media-body {
    position: relative;
}

.comment-date {
    position: absolute;
    right: 0;
    top: 0;
    color: #c2c2c2;
}

.media ul li {
    display: inline-block;
    color: #5e6271;
    margin-right: 10px;
    padding-right: 10px;
    position: relative;
}

.media ul li:after {
    content: '';
    position: absolute;
    top: 5px;
    right: 0;
    width: 1px;
    height: 16px;
    background: #c2c2c2;
}

.media ul li:last-child:after {
    display: none;
}

.media ul li i {
    margin-right: 5px;
}

.post-comments-area .media {
    border-bottom: 1px solid #f7f7f7;
    margin: 0;
    padding: 25px 0;
}

.post-comments-area p {
    margin-bottom: 0;
}

.media-replay .media {
    padding-left: 30px;
}

.post-new-comment {
    padding-top: 40px;
}

.post-new-comment h3 {
    margin-bottom: 30px;
}

.post-new-comment .form-control {
    border: 1px solid #e5e5e5;
    border-radius: 0;
    box-shadow: none;
}

.post-new-comment .boxed-btn {
    border: none;
    cursor: pointer;
}

/*
===================================================================================
    07. 404 Page
=================================================================================== */


/* 404 */

#page-404 {
    padding-bottom: 80px;
    text-transform: uppercase;
}

#page-404 h2 {
    margin: 40px 0 20px;
}

#page-404 h3 {
    margin: 0 0 20px;
    opacity: .8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

#page-404 .boxed-btn {
    text-transform: capitalize;
}


/*
===================================================================================
    08. Coming Soon Page
=================================================================================== */

.coming-soon-wrapper {
    background: url(../img/coming-soon.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
    height: 100%;
    color: #fff;
}

.coming-soon-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    z-index: -1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
}

.coming-soon-wrapper .logo {
    margin-bottom: 50px;
    margin-top: 80px;
}

.coming-soon-wrapper h1 {
    margin-bottom: 10px;
    color: #fff;
}

.coming-soon-wrapper p {
    width: 60%;
    margin: 0 auto 20px;
}


/* Count area */

.count-area {
    padding: 60px 0;
}

.count-area .time-wrap {
    display: inline-block;
    position: relative;
    width: 100px;
    height: 100px;
    line-height: 100px;
    margin-top: 24px;
}

.count-area .time-wrap:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-transition: -webkit-transform .3s cubic-bezier(.25, .46, .45, .94);
    transition: -webkit-transform .3s cubic-bezier(.25, .46, .45, .94);
    transition: transform .3s cubic-bezier(.25, .46, .45, .94);
    transition: transform .3s cubic-bezier(.25, .46, .45, .94), -webkit-transform .3s cubic-bezier(.25, .46, .45, .94);
}

.count-area .time-wrap:hover:after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.count-area .time-wrap span {
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-transition: -webkit-transform .3s cubic-bezier(.25, .46, .45, .94);
    transition: -webkit-transform .3s cubic-bezier(.25, .46, .45, .94);
    transition: transform .3s cubic-bezier(.25, .46, .45, .94);
    transition: transform .3s cubic-bezier(.25, .46, .45, .94), -webkit-transform .3s cubic-bezier(.25, .46, .45, .94);
    -webkit-transform: rotate(-45deg);
    transform: rotate(90deg);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #fff;
}

.count-area .text {
    margin-top: 35px;
    color: #fff;
}

/* Subscribe */

.subscribe-wrapper {
    position: relative;
}

.subscribe-wrapper .form-control {
    border: none;
    box-shadow: none;
    background: rgba(255, 255, 255, .3);
    border-radius: 0;
    height: 60px;
    border-radius: 0;
    color: #fff;
    padding: 20px;
}

.subscribe-wrapper button {
    border: none;
    box-shadow: none;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    padding: 0 20px;
    cursor: pointer;
}

.subscribe-wrapper .form-control::-webkit-input-placeholder {
    color: #fff;
}

.coming-soon-wrapper footer {
    margin-top: 50px;
    margin-bottom: 80px;
}

.coming-soon-wrapper footer .social li {
    display: inline-block;
    margin-right: 10px;
    padding-right: 10px;
    position: relative;
}

.coming-soon-wrapper footer .social a {
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    color: #2c3145;
    -webkit-transition: .3s;
    transition: .3s;
    overflow: hidden;
}

.coming-soon-wrapper .social a:hover i {
    -webkit-animation: socialFxD .3s forwards;
            animation: socialFxD .3s forwards
}

@keyframes socialFxD {
    49% {
        -webkit-transform: translateX(100%);
                transform: translateX(100%)
    }
    50% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%)
    }
    51% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
    }
}

.coming-soon-wrapper .social a:hover i.fa-facebook-f {
    color: #3A589B;
}

.coming-soon-wrapper .social a:hover i.fa-twitter {
    color: #1CB7EB;
}

.coming-soon-wrapper .social a:hover i.fa-linkedin-in {
    color: #1686B0;
}

.coming-soon-wrapper .social a:hover i.fa-google-plus-g {
    color: #E3411F;
}

.coming-soon-wrapper .social a:hover i.fa-instagram {
    color: #6C27B3;
}

.coming-soon-wrapper .social a:hover i.fa-whatsapp {
    color: #75B73B;
}

.coming-soon-wrapper .social {
    margin-bottom: 15px;
}


/* ---- particles.js container ---- */

canvas {
    display: block;
    vertical-align: bottom;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}




.dropdown .dropdown-menu{
    padding: 0;
    top: 7px!important;
}
.dropdown .dropdown-menu li{
    margin-left: 0!important;
    width:100%!important;
}
.dropdown .dropdown-menu li a{
    color: #363636!important;
    display: block;
    padding: 7px 5px;
    position: relative;
    -webkit-transition: .3s all;
    transition: .3s all;
    font-weight: 500;
    font-size: 12px!important;
    border-bottom: 1px solid #ccc;
}


#about-section p{
    text-align:justify;
    margin-bottom:15px;
}

.title_section h2{
    font-size: 22px!important;
    line-height: 1;
    text-align:center!important;
    width:100%;
}
.l_boxs{
    box-shadow: 0px 2px 5px #ccc;
    padding: 10px 0px;
    background: #f7f7f7;
}


.product_box{
    border: 1px solid #ccc;
    overflow: hidden;
    padding: 10px 10px;
    background: #e3e7ea;
    margin-bottom:15px;
        height: 480px;
}
/*.product_box p{white-space: nowrap; text-overflow: ellipsis; overflow: hidden;}*/
.product_box img{
    width:100%;
    height:260px;
}
.product_box h3{
    font-size: 20px;
    text-align: center;
    border-top: 1px solid #ccc;
    line-height: 50px;
}
.product_box p{
    text-align:justify;
}
.product_side1{
    float:left;
    margin-top: 0px;
        bottom: 29px;
    position: absolute;
}
.product_side1 p{
    background:#97c52d;
    padding:5px;
    color:#fff;
}
.product_side2{
    float:right;
    margin-top: 0px;
            bottom: 29px;
    position: absolute;
        right: 27px;
}
.product_box a{
    padding: 2px 8px;
    float: right;
}
.product_side2 input{

}


#listt{
    margin-bottom:15px;
}
#listt li {
    padding: 10px 15px;
    border: 1px solid #c56e2e;
    border-bottom: none;
    color: #333;
    font-weight: 600;
}
#listt li a {
    color: #333;
    font-weight: 600;
    width: 100%;
    display: block;
}
#listt li.act{
    background: #000;
}
#listt li.act a{
    color: #fff;
    font-weight: 500;
}

.pricetag{
    background: #97c52d;
    padding: 5px;
    color: #fff;
    display: inline-block;
    margin-bottom: 15px;
}
.dibo_table{
    height: 260px;
    overflow-y: scroll;
    margin-bottom: 25px;
}
.dibo_table table{
    width:100%;
}
.dibo_table table tbody tr th{
    background: #c56e2e;
    color: #000;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    padding: 5px;
}
.dibo_table table tbody tr td{
    padding: 3px 5px;
}
.product_inner-summery h2{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}
.product_inner-summery p{
    margin-bottom: 15px;
    text-align: justify;
}
.product_inner-summery ul{
    line-height: 2;
    list-style-type: circle;
    margin-left: 15px;
    margin-bottom:15px;
}


#ayurveda_sec h3{
    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
}
#ayurveda_sec p{
    margin-bottom:15px;
    text-align:justify;
}
#ayurveda_sec img{
    padding: 4px;
    line-height: 1.42857;
    background-color: white;
    border: 1px solid #dddddd;
    border-radius: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto;
    width: 100%;
}


.mgmt-details p{
    margin-bottom:15px;
    text-align:justify;
}
.mgmt-details h4{
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    font-family:'Roboto', sans-serif;
}
.mgmt-details ul{
    margin-bottom: 15px;
}
.side_bars-mgmt h3{
    font-size: 20px;
    font-weight: 600;
}

.details-mgmt{
    margin-top: 55px;
}