@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Barlow:300,400,500,600,700|Teko:400,500,600,700|Ubuntu:400,500,700&amp;display=swap");
body {
    color: #333;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 400;
}
img {
    max-width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
/* Shadow and Outline */
a {
    text-decoration: none;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
a:active, a:hover {
    text-decoration: none;
}
button, .btn {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
button:active, button:hover, button:focus, .btn:active, .btn:hover, .btn:focus {
    outline: 0;
}
button:focus, input:focus, input:focus, textarea, textarea:focus, .btn:focus {
    outline: 0;
    box-shadow: none;
}
.form-control:focus {
    color: #29282d;
    background-color: transparent;
    outline: 0;
    box-shadow: none;
}
.btn:hover, .btn:focus {
    outline: 0;
    box-shadow: none;
    color: #fff;
}
/* Heading */
h1, h2, h3, h4, h5, h6 {
    font-family: "Teko", sans-serif;
    color: #29282d;
    font-weight: 700;
    margin-bottom: 20px;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: inherit;
}
h1 {
    font-size: 48px;
    line-height: 1.3;
}
h2 {
    font-size: 36px;
    line-height: 1.3;
}
h3 {
    font-size: 28px;
    line-height: 1.3;
}
h4 {
    font-size: 24px;
    line-height: 1.2;
}
h5 {
    font-size: 20px;
    line-height: 1.2;
}
h6 {
    font-size: 16px;
    line-height: 1.2;
}
hr {
    margin: 20px 0;
    border-color: #352323;
}
ol {
    list-style: decimal;
}
ol ol ol {
    list-style: lower-roman;
}
ol ol {
    list-style: lower-alpha;
}
p:last-child {
    margin-bottom: 0;
}
/* Form */
label {
    color: #ddd;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}
*::-moz-selection {
    background: #67b241;
    color: #fff;
    text-shadow: none;
}
::-moz-selection {
    background: #67b241;
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #67b241;
    color: #fff;
    text-shadow: none;
}
/* Placeholder */
*::-moz-placeholder {
    color: #8e8e8e;
    font-size: 16px;
    opacity: 1;
}
*::placeholder {
    color: #8e8e8e;
    font-size: 16px;
    opacity: 1;
}
/* Button */
.btn {
    padding: 15px 50px;
    border-radius: 0;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn:hover:before {
    visibility: visible;
    opacity: 0.2;
}
.btn:hover:after {
    visibility: visible;
    opacity: 0.2;
}
.btn:before {
    position: absolute;
    content: "";
    top: -12px;
    right: 60px;
    width: 35px;
    height: 90px;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    background-color: #fff;
    -webkit-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.btn:after {
    position: absolute;
    content: "";
    top: -12px;
    right: 40px;
    width: 10px;
    height: 90px;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    background-color: #fff;
    -webkit-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
    -webkit-transition: all 0.1s linear 0s;
    -moz-transition: all 0.1s linear 0s;
    -ms-transition: all 0.1s linear 0s;
    -o-transition: all 0.1s linear 0s;
    transition: all 0.1s linear 0s;
}
.btn-gra {
    color: #fff;
    background: #7352d1;
    border-radius: 15px;
    /*background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
  background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
  background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);*/
}
.btn-theme {
    color: #fff;
    border-color: #67b241;
    background: #67b241;
}
.btn-theme:hover {
    background: #67b241;
    color: #fff;
    border-color: #67b241;
}
.btn-rounded {
    border-radius: 100% !important;
}
.btn-square {
    border-radius: 0 !important;
}
/* Bg Color */
.bg-gray {
    background-color: #ddd;
}
.bg-white {
    background-color: #fff;
}
.bg-black {
    background-color: #000;
}
.bg-theme {
    background-color: #67b241;
}
.bg-gra {
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.bg-dark {
    background-color: #161616 !important;
}
.bg-off-white {
    background-color: #f7f7f7;
}
.bg-off-white-2 {
    background-color: #f1f8ff;
}
.bg-blue {
    background-color: #4c87ff !important;
}
.bg-yellow {
    background-color: #fea116 !important;
}
.bg-pink {
    background-color: #fc4557 !important;
}
.bg-egg-blue {
    background-color: #1cb5a3 !important;
}
.bg-purple {
    background-color: #5851a7 !important;
}
/* Text Color */
.gray-color {
    background: #ddd;
}
.white-color {
    color: #fff;
}
.black-color {
    color: #000;
}
.theme-color {
    color: #67b241;
}
.bg-light-gray {
    background: #f2f2f2;
}
/* Others Common Css Here :) */
#scrollUp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #67b241;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 48px;
    color: #fff;
    font-size: 16px;
    border: 0;
    border-radius: 4px;
    font-weight: 700;
    opacity: 0.6;
    z-index: 99999;
    cursor: pointer;
}
#scrollUp:hover {
    opacity: 1;
}
#scrollUp:hover {
    background: #67b241;
}
.table-row {
    display: table;
    width: 100%;
    height: 100%;
}
.table-cell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}
.f-left {
    float: left;
}
.f-right {
    float: right;
}
.fix {
    overflow: hidden;
}
.separator {
    border-top: 1px solid #f2f2f2;
}
.dark #preloader {
    background-color: #232323;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
}
.preloader {
    width: 150px;
    display: inline-block;
    padding: 0px;
    text-align: left;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.preloader h4 {
    margin-bottom: 0;
    text-transform: uppercase;
}
/* Overlay */
[data-overlay] {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
[data-overlay]::before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
}
[data-overlay=light]::before {
    background-color: #fff;
}
[data-overlay=dark]::before {
    background-color: #252525;
}
[data-overlay=black]::before {
    background-color: #161616;
}
[data-overlay=theme]::before {
    background-color: #67b241;
}
[data-opacity="1"]::before {
    opacity: 0.1;
}
[data-opacity="2"]::before {
    opacity: 0.2;
}
[data-opacity="3"]::before {
    opacity: 0.3;
}
[data-opacity="4"]::before {
    opacity: 0.4;
}
[data-opacity="5"]::before {
    opacity: 0.5;
}
[data-opacity="6"]::before {
    opacity: 0.6;
}
[data-opacity="7"]::before {
    opacity: 0.7;
}
[data-opacity="8"]::before {
    opacity: 0.8;
}
[data-opacity="9"]::before {
    opacity: 0.9;
}
.slide-bar {
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: -330px;
    width: 300px;
    padding: 25px 20px;
    height: 100%;
    display: block;
    background-color: #ffffff;
    z-index: 1020;
    -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
}
.slide-bar.show {
    right: 0;
}
.open-mobile-menu {
    display: inline-block;
}
.open-mobile-menu a {
    display: block;
    width: 50px;
    height: 50px;
    background: #212121;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    margin-left: 20px;
    color: #fff;
}
.open-mobile-menu a:hover {
    background: #67b241;
}
.open-mobile-menu a.active {
    background: #67b241;
}
.close-mobile-menu a {
    color: #212121;
    position: relative;
    z-index: 2;
    font-size: 16px;
    top: -10px;
    left: 0;
}
.close-mobile-menu a:hover {
    color: #ff0000;
}
.on-side {
    overflow: hidden;
}
.body-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 4;
    left: 0;
    opacity: 0;
    display: none;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.body-overlay.active {
    opacity: 1;
    display: block;
}
.side-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.side-mobile-menu ul li a {
    padding: 13px 0;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 16px;
    color: #101a23;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}
.side-mobile-menu ul li a:hover {
    color: #67b241;
    padding-left: 5px;
}
.side-mobile-menu ul li a[aria-expanded=true] {
    color: #67b241;
}
.side-mobile-menu ul li a[aria-expanded=true]:before {
    background: #67b241;
    border-color: #67b241;
}
.side-mobile-menu ul li ul {
    padding-left: 0;
    list-style: none;
}
.side-mobile-menu ul li ul li {
    padding-left: 15px;
}
.side-mobile-menu ul li ul li:hover > a {
    color: #67b241;
    padding-left: 20px;
}
.side-mobile-menu ul li ul li:hover > a:before {
    background: #67b241;
    border-color: #67b241;
}
.side-mobile-menu ul li ul li a {
    position: relative;
    padding-left: 15px;
    text-transform: capitalize;
    font-size: 16px;
}
.side-mobile-menu ul li ul li a:before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid #101a23;
    border-radius: 50%;
}
.side-mobile-menu ul li ul li a[aria-expanded=true] {
    padding-left: 20px;
}
.side-mobile-menu ul li.has-children > a:after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-width: 2px 0 0 2px;
    border-style: solid;
    border-color: initial;
    right: 16px;
    top: 50%;
    -webkit-transform: rotate(-45deg) translateY(-50%);
    transform: rotate(-45deg) translateY(-50%);
    -webkit-transform-origin: top;
    transform-origin: top;
    transition: all 0.3s ease-out;
}
.side-mobile-menu ul li.has-children a[aria-expanded=true]:after {
    -webkit-transform: rotate(-135deg) translateY(-50%);
    transform: rotate(-135deg) translateY(-50%);
}
/* 2. Header */
.header-area {
    padding: 15px 50px;
}
@media (max-width: 767px) {
    .header-area {
        padding: 15px 0;
    }
}
.hamburger-menu {
    width: 40px;
    height: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: 3px solid #67b241;
    border-radius: 5px;
}
.hamburger-menu .hamburger-btn {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 24px;
}
.hamburger-menu .hamburger-btn .hamburger-bar {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #67b241;
    top: 0;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-duration: 0.275s;
}
.hamburger-menu .hamburger-btn .hamburger-bar:before {
    display: block;
    content: "";
    top: 10px;
    transition: opacity 0.125s ease 0.275s;
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #67b241;
}
.hamburger-menu .hamburger-btn .hamburger-bar:after {
    display: block;
    content: "";
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #67b241;
}
.hamburger-menu.open .hamburger-btn .hamburger-bar {
    transition-delay: 75ms;
    transform: translate3d(0, 10px, 0) rotate(135deg);
    background-color: #67b241;
}
.hamburger-menu.open .hamburger-btn .hamburger-bar:before {
    transition-delay: 0s;
    opacity: 0;
}
.hamburger-menu.open .hamburger-btn .hamburger-bar:after {
    transition-delay: 75ms;
    transform: translate3d(0, -20px, 0) rotate(-270deg);
}
.main-menu {
    display: inline-block;
}
.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-menu ul li {
    display: inline-block;
    margin-right: 20px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .main-menu ul li {
        margin-right: 10px;
    }
}
.main-menu ul li:last-child {
    margin-right: 0;
}
.main-menu ul li:hover > a {
    color: #67b241;
}
.main-menu ul li:hover > a:before {
    background: #67b241;
    height: 12px;
}
.main-menu ul li:hover .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
}
.main-menu ul li a {
    display: inline-block;
    font-size: 0.9em;
    line-height: 38px;
    font-family: sans-serif;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
    padding: 0px 0 0px 10px;
    position: relative;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.main-menu ul li a:before {
    content: "";
    width: 3px;
    height: 0;
    background: #333333;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -7px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.main-menu ul li .sub-menu {
    position: absolute;
    width: 240px;
    text-align: left;
    top: 110%;
    transition: 0.3s;
    border-top: 3px solid #67b241;
    box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
    background: #fff;
}
.main-menu ul li .sub-menu li {
    display: block;
    margin: 0;
}
.main-menu ul li .sub-menu li:hover a {
    background: #67b241;
    color: #fff;
}
.main-menu ul li .sub-menu li a {
    color: #000;
    padding: 15px 15px;
    display: block;
    line-height: 1;
    text-transform: capitalize;
    font-weight: 500;
}
.main-menu ul li .sub-menu li a:before {
    display: none;
}
.main-menu ul li.has-dropdown:hover > a:after {
    color: #67b241;
}
.main-menu ul li.has-dropdown > a:after {
    content: "";
    font-family: "Font Awesome 5 Pro";
    margin-left: 6px;
    color: #333333;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.main-menu-white ul li a {
    color: #fff;
}
.main-menu-white ul li.has-dropdown > a:after {
    color: #fff;
}
.attr-menu {
    display: inline-block;
}
.attr-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.attr-menu ul li {
    display: inline-block;
    margin-left: 60px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .attr-menu ul li {
        margin-left: 20px;
    }
}
.attr-menu ul li:hover a {
    color: #67b241;
}
.attr-menu ul li a {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    font-family: "Teko", sans-serif;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
}
.attr-white ul li a {
    color: #fff;
}
.attr-white ul li a:hover {
    color: #67b241;
}
.search-area {
    visibility: hidden;
    opacity: 0;
    z-index: -99;
}
.search-area a.search-close {
    position: absolute;
    right: 100px;
    top: 100px;
    color: #67b241;
    z-index: 999;
    width: 50px;
    height: 50px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    line-height: 54px;
    font-size: 24px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out 1s;
}
@media (max-width: 767px) {
    .search-area a.search-close {
        right: 50%;
        transform: translateX(50%);
    }
}
.search-area a.search-close:hover {
    background: red;
    color: #fff;
}
.search-area .search-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out 1s;
}
.search-area .search-form form {
    position: relative;
}
.search-area .search-form form input {
    width: 100%;
    height: 70px;
    border: 0;
    border-radius: 100px;
    padding-left: 35px;
    padding-right: 60px;
    background: #fff;
    font-size: 20px;
}
.search-area .search-form form input::-webkit-input-placeholder {
    font-size: 20px;
}
.search-area .search-form form input:-moz-placeholder {
    font-size: 20px;
}
.search-area .search-form form input::-moz-placeholder {
    font-size: 20px;
}
.search-area .search-form form input:-ms-input-placeholder {
    font-size: 20px;
}
.search-area .search-form form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 0;
    background: #67b241;
    color: #fff;
}
.search-area .search-form form button:hover {
    -webkit-transform: translateY(-50%) rotate(360deg);
    -ms-transform: translateY(-50%) rotate(360deg);
    transform: translateY(-50%) rotate(360deg);
}
.search-area.active {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow: hidden;
    outline: 0;
    visibility: visible;
    opacity: 1;
}
.search-area.active a.search-close {
    visibility: visible;
    opacity: 1;
}
.search-area.active .search-area-bg {
    height: 100%;
    width: 100%;
    background-color: rgba(23, 26, 33, 0.95);
}
.search-area.active .search-area-bg {
    background-color: rgba(0, 0, 0, 0.87);
    padding-bottom: 100%;
    border-radius: 100%;
    overflow: hidden;
    -webkit-animation: search-animation 0.8s ease-out forwards;
    animation: search-animation 0.8s ease-out forwards;
}
.search-area.active .search-form {
    visibility: visible;
    opacity: 1;
}
@-webkit-keyframes search-animation {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.04) translateY(300%);
        transform: scale(0.04) translateY(300%);
    }
    40% {
        -webkit-transform: scale(0.04) translateY(0);
        transform: scale(0.04) translateY(0);
        -webkit-transition: ease-out;
        -o-transition: ease-out;
        transition: ease-out;
    }
    40% {
        -webkit-transform: scale(0.04) translateY(0);
        transform: scale(0.04) translateY(0);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(0.02) translateY(0px);
        transform: scale(0.02) translateY(0px);
    }
    61% {
        opacity: 1;
        -webkit-transform: scale(0.04) translateY(0px);
        transform: scale(0.04) translateY(0px);
    }
    99.9% {
        opacity: 1;
        height: 0;
        padding-bottom: 100%;
        border-radius: 100%;
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(2) translateY(0px);
        transform: scale(2) translateY(0px);
        height: 100%;
        padding-bottom: 0;
        border-radius: 0;
    }
}
@keyframes search-animation {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.04) translateY(300%);
        transform: scale(0.04) translateY(300%);
    }
    40% {
        -webkit-transform: scale(0.04) translateY(0);
        transform: scale(0.04) translateY(0);
        -webkit-transition: ease-out;
        -o-transition: ease-out;
        transition: ease-out;
    }
    40% {
        -webkit-transform: scale(0.04) translateY(0);
        transform: scale(0.04) translateY(0);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(0.02) translateY(0px);
        transform: scale(0.02) translateY(0px);
    }
    61% {
        opacity: 1;
        -webkit-transform: scale(0.04) translateY(0px);
        transform: scale(0.04) translateY(0px);
    }
    99.9% {
        opacity: 1;
        height: 0;
        padding-bottom: 100%;
        border-radius: 100%;
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(2) translateY(0px);
        transform: scale(2) translateY(0px);
        height: 100%;
        padding-bottom: 0;
        border-radius: 0;
    }
}
.header-style-2 {
    background: #161616;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .header-style-2 {
        padding: 20px 30px;
    }
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .header-style-2 .attr-menu {
        padding-right: 30px;
    }
}
.header-style-2 .attr-menu ul li:first-child {
    margin-left: 0;
}
.header-style-3 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .header-style-3 {
        padding: 20px 30px;
    }
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .header-style-3 .attr-menu {
        padding-right: 30px;
    }
}
.header-style-3 .attr-menu ul li:first-child {
    margin-left: 0;
}
.header-style-5 {
    background: #161616;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .header-style-5 {
        padding: 20px 30px;
    }
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .header-style-5 .attr-menu {
        padding-right: 30px;
    }
}
.side-mobile-menu {
    display: none;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .side-mobile-menu {
        display: block;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .side-mobile-menu {
        display: block;
    }
}
@media (max-width: 767px) {
    .side-mobile-menu {
        display: block;
    }
}
.sidebar-widget-wrapper {
    display: block;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .sidebar-widget-wrapper {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .sidebar-widget-wrapper {
        display: none;
    }
}
@media (max-width: 767px) {
    .sidebar-widget-wrapper {
        display: none;
    }
}
.sidebar-widget {
    margin-bottom: 30px;
}
.sidebar-widget .widget-title {
    color: #29282d;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.sidebar-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sidebar-widget ul li {
    display: block;
}
.sidebar-widget ul li a {
    display: block;
    padding: 5px 0;
    color: #8e8e8e;
}
.sidebar-widget ul li a:hover {
    color: #67b241;
}
.logo-side {
    padding: 15px 0;
}
.instagram {
    overflow: hidden;
    margin: 0 -4px;
}
.instagram > a {
    float: left;
    width: 33.33%;
    padding: 0 4px;
    margin-bottom: 7px;
}
.social-widget a {
    color: #8e8e8e;
    display: inline-block;
    margin-right: 20px;
    text-align: center;
}
.social-widget a:hover {
    color: #67b241;
}
.info-wdget h4 {
    color: #29282d;
    font-weight: 500;
    font-size: 22px;
}
.info-wdget p {
    color: #8e8e8e;
    margin-bottom: 5px;
    line-height: 28px;
}
/* 3. Slider */
.swiper-button-next:after, .swiper-button-prev:after {
    display: none;
}
.home-slider-1 .single-slide {
    height: 830px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f7f7f7;
}
@media (min-width: 320px) and (max-width: 480px) {
    .home-slider-1 .single-slide {
        height: 730px;
    }
}
.home-slider-1 .single-slide .slider-content-1 {
    padding-right: 300px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home-slider-1 .single-slide .slider-content-1 {
        padding-right: 0;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-1 .single-slide .slider-content-1 {
        padding-right: 0;
    }
}
@media (max-width: 767px) {
    .home-slider-1 .single-slide .slider-content-1 {
        padding-right: 0;
    }
}
.home-slider-1 .single-slide .slider-content-1 span {
    color: #666565;
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 28px;
    display: inline-block;
}
.home-slider-1 .single-slide .slider-content-1 h2 {
    color: #29282d;
    font-weight: 600;
    font-size: 90px;
    line-height: 85px;
    margin-bottom: 28px;
}
@media (max-width: 767px) {
    .home-slider-1 .single-slide .slider-content-1 h2 {
        font-size: 70px;
        line-height: 70px;
    }
}
@media (min-width: 320px) and (max-width: 480px) {
    .home-slider-1 .single-slide .slider-content-1 h2 {
        font-size: 50px;
        line-height: 50px;
    }
}
.home-slider-1 .single-slide .slider-content-1 .btn {
    text-transform: uppercase;
}
.home-slider-1 .single-slide .slider-content-1 .btn i {
    margin-left: 5px;
}
.home-slider-1 .single-slide .slide-shape-1 {
    position: absolute;
    right: 340px;
    top: 0;
    z-index: -1;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home-slider-1 .single-slide .slide-shape-1 {
        right: 240px;
        width: 40%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-1 .single-slide .slide-shape-1 {
        right: 50px;
        width: 40%;
    }
}
@media (max-width: 767px) {
    .home-slider-1 .single-slide .slide-shape-1 {
        right: -30px;
        width: 40%;
    }
}
.home-slider-1 .single-slide .slide-shape-2 {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: -1;
    transform: translateY(-50%);
}
.home-slider-1 .single-slide .slide-thumb-1 {
    position: absolute;
    right: 100px;
    bottom: 0;
    z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .home-slider-1 .single-slide .slide-thumb-1 {
        right: 0;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home-slider-1 .single-slide .slide-thumb-1 {
        right: 0;
        width: 90%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-1 .single-slide .slide-thumb-1 {
        right: -35%;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .home-slider-1 .single-slide .slide-thumb-1 {
        right: -35%;
        width: 100%;
    }
}
.home-slider-1 .swiper-pagination-fraction {
    position: absolute;
    left: 370px;
    width: auto;
    bottom: 60px;
    z-index: 99;
    font-family: "Teko", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #333333;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .home-slider-1 .swiper-pagination-fraction {
        left: 100px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home-slider-1 .swiper-pagination-fraction {
        left: 100px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-1 .swiper-pagination-fraction {
        left: 80px;
    }
}
@media (max-width: 767px) {
    .home-slider-1 .swiper-pagination-fraction {
        display: none;
    }
}
.home-slider-1 .swiper-pagination-fraction .swiper-pagination-total {
    color: #b5b5b5;
}
.home-slider-1 .swiper-button-prev {
    left: auto;
    right: 70px;
    height: 70px;
    width: 70px;
    font-size: 24px;
    color: #666565;
    background: #fff;
    z-index: 99;
    border-radius: 50%;
    margin: -40px 0 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    transform: translateY(-50%);
    box-shadow: 0 16px 29.7px 0.3px rgba(237, 237, 237, 0.78);
}
@media (max-width: 767px) {
    .home-slider-1 .swiper-button-prev {
        display: none;
    }
}
.home-slider-1 .swiper-button-prev:hover {
    color: #fff;
}
.home-slider-1 .swiper-button-prev:hover:before {
    visibility: visible;
    opacity: 1;
}
.home-slider-1 .swiper-button-prev:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.home-slider-1 .swiper-button-next {
    right: 70px;
    height: 70px;
    width: 70px;
    font-size: 24px;
    color: #666565;
    background: #fff;
    border-radius: 50%;
    z-index: 99;
    margin: 40px 0 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    transform: translateY(-50%);
    box-shadow: 0 16px 29.7px 0.3px rgba(237, 237, 237, 0.78);
}
@media (max-width: 767px) {
    .home-slider-1 .swiper-button-next {
        display: none;
    }
}
.home-slider-1 .swiper-button-next:hover {
    color: #fff;
}
.home-slider-1 .swiper-button-next:hover:before {
    visibility: visible;
    opacity: 1;
}
.home-slider-1 .swiper-button-next:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.home-slider-2 .single-slide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.home-slider-2 .single-slide .slider-content-2 {
    padding-top: 200px;
    padding-bottom: 200px;
    padding-right: 300px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .home-slider-2 .single-slide .slider-content-2 {
        padding-right: 150px;
        padding-left: 150px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home-slider-2 .single-slide .slider-content-2 {
        padding-right: 0;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-2 .single-slide .slider-content-2 {
        padding-right: 0;
        padding-top: 160px;
        padding-bottom: 160px;
    }
}
@media (max-width: 767px) {
    .home-slider-2 .single-slide .slider-content-2 {
        padding-top: 120px;
        padding-bottom: 120px;
        padding-right: 0;
    }
}
.home-slider-2 .single-slide .slider-content-2 span {
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 46px;
    display: inline-block;
    padding-left: 70px;
    position: relative;
}
.home-slider-2 .single-slide .slider-content-2 span:before {
    content: "";
    width: 50px;
    height: 4px;
    background: #67b241;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.home-slider-2 .single-slide .slider-content-2 h2 {
    color: #fff;
    font-weight: 600;
    font-size: 90px;
    line-height: 85px;
    margin-bottom: 38px;
}
@media (max-width: 767px) {
    .home-slider-2 .single-slide .slider-content-2 h2 {
        font-size: 70px;
        line-height: 70px;
    }
}
.home-slider-2 .single-slide .slider-content-2 .btn {
    text-transform: uppercase;
}
.home-slider-2 .single-slide .slider-content-2 .btn i {
    margin-left: 5px;
}
.home-slider-2 .single-slide .slider-thumb {
    position: absolute;
    right: 200px;
    bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .home-slider-2 .single-slide .slider-thumb {
        right: 0;
        z-index: -1;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home-slider-2 .single-slide .slider-thumb {
        right: -200px;
        z-index: -1;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-2 .single-slide .slider-thumb {
        display: none;
    }
}
@media (max-width: 767px) {
    .home-slider-2 .single-slide .slider-thumb {
        display: none;
    }
}
.home-slider-2 .swiper-pagination-fraction {
    position: absolute;
    left: 370px;
    width: auto;
    bottom: 60px;
    z-index: 99;
    font-family: "Teko", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .home-slider-2 .swiper-pagination-fraction {
        left: 100px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home-slider-2 .swiper-pagination-fraction {
        left: 100px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-2 .swiper-pagination-fraction {
        left: 80px;
    }
}
@media (max-width: 767px) {
    .home-slider-2 .swiper-pagination-fraction {
        display: none;
    }
}
.home-slider-2 .swiper-pagination-fraction .swiper-pagination-total {
    color: #4d4d4d;
}
.home-slider-2 .swiper-button-prev {
    left: 70px;
    height: 70px;
    width: 70px;
    font-size: 24px;
    color: #666565;
    background: #fff;
    z-index: 99;
    border-radius: 50%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    transform: translateY(-50%);
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home-slider-2 .swiper-button-prev {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-2 .swiper-button-prev {
        display: none;
    }
}
@media (max-width: 767px) {
    .home-slider-2 .swiper-button-prev {
        display: none;
    }
}
.home-slider-2 .swiper-button-prev:hover {
    color: #fff;
}
.home-slider-2 .swiper-button-prev:hover:before {
    visibility: visible;
    opacity: 1;
}
.home-slider-2 .swiper-button-prev:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.home-slider-2 .swiper-button-next {
    right: 70px;
    height: 70px;
    width: 70px;
    font-size: 24px;
    color: #666565;
    background: #fff;
    border-radius: 50%;
    z-index: 99;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    transform: translateY(-50%);
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home-slider-2 .swiper-button-next {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-2 .swiper-button-next {
        display: none;
    }
}
@media (max-width: 767px) {
    .home-slider-2 .swiper-button-next {
        display: none;
    }
}
.home-slider-2 .swiper-button-next:hover {
    color: #fff;
}
.home-slider-2 .swiper-button-next:hover:before {
    visibility: visible;
    opacity: 1;
}
.home-slider-2 .swiper-button-next:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.home-slider-3 .single-slide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 650px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 60px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-3 .single-slide {
        background-position: left center;
        padding-top: 40px;
        height: 550px;
    }
}
@media (max-width: 767px) {
    .home-slider-3 .single-slide {
        height: 450px;
        background-position: left center;
        padding-top: 30px;
    }
}
.home-slider-3 .single-slide .slider-content-3 span {
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 40px;
    display: inline-block;
    position: relative;
    padding: 12px 20px;
    text-transform: uppercase;
    z-index: 1;
}
.home-slider-3 .single-slide .slider-content-3 span:before {
    content: "";
    width: 60px;
    height: 100%;
    background: #67b241;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
@media (max-width: 767px) {
    .home-slider-3 .single-slide .slider-content-3 span {
        font-size: 20px;
        line-height: 25px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .home-slider-3 .single-slide .slider-content-3 span {
        font-size: 15px;
        line-height: 20px;
    }
}
.home-slider-3 .single-slide .slider-content-3 h2 {
    color: #fff;
    font-weight: 600;
    font-size: 90px;
    line-height: 85px;
    margin-bottom: 25px;
}
@media (max-width: 767px) {
    .home-slider-3 .single-slide .slider-content-3 h2 {
        font-size: 70px;
        line-height: 70px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .home-slider-3 .single-slide .slider-content-3 h2 {
        font-size: 48px;
        line-height: 58px;
    }
}
.home-slider-3 .single-slide .slider-content-3 p {
    color: #b7b7b7;
    font-size: 24px;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .home-slider-3 .single-slide .slider-content-3 p {
        font-size: 20px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .home-slider-3 .single-slide .slider-content-3 p {
        font-size: 16px;
    }
}
.home-slider-3 .single-slide .slider-content-3 .read-more {
    font-size: 15px;
    font-weight: 700;
    color: #67b241;
    text-transform: uppercase;
    border-bottom: 2px solid #67b241;
    margin-top: 40px;
    display: inline-block;
}
.home-slider-3 .single-slide .slider-content-3 .read-more i {
    margin-left: 5px;
}
.home-slider-3 .single-slide .slider-shape {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.home-slider-3 .swiper-pagination-clickable {
    position: absolute;
    left: 370px;
    width: auto;
    bottom: 80px;
    z-index: 99;
    transform: inherit;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .home-slider-3 .swiper-pagination-clickable {
        left: 100px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home-slider-3 .swiper-pagination-clickable {
        left: 100px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-3 .swiper-pagination-clickable {
        left: 80px;
    }
}
@media (max-width: 767px) {
    .home-slider-3 .swiper-pagination-clickable {
        display: none;
    }
}
.home-slider-3 .swiper-pagination-clickable .swiper-pagination-bullet {
    background: transparent;
    width: 25px;
    height: 25px;
    opacity: 1;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
    display: inline-block;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.home-slider-3 .swiper-pagination-clickable .swiper-pagination-bullet:before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.home-slider-3 .swiper-pagination-clickable .swiper-pagination-bullet-active {
    border-color: #fff;
}
.home-slider-3 .swiper-button-prev {
    left: 50%;
    height: 70px;
    width: 70px;
    font-size: 20px;
    color: #666565;
    background: #fff;
    z-index: 99;
    margin: 0 0 0 -35px;
    bottom: 0;
    top: auto;
    transform: translateX(-50%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-3 .swiper-button-prev {
        display: none;
    }
}
@media (max-width: 767px) {
    .home-slider-3 .swiper-button-prev {
        display: none;
    }
}
.home-slider-3 .swiper-button-prev:hover {
    color: #fff;
}
.home-slider-3 .swiper-button-prev:hover:before {
    visibility: visible;
    opacity: 1;
}
.home-slider-3 .swiper-button-prev:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.home-slider-3 .swiper-button-next {
    right: 50%;
    height: 70px;
    width: 70px;
    font-size: 20px;
    color: #666565;
    background: #fff;
    z-index: 99;
    margin: 0 -35px 0 0;
    bottom: 0;
    top: auto;
    transform: translateX(50%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-3 .swiper-button-next {
        display: none;
    }
}
@media (max-width: 767px) {
    .home-slider-3 .swiper-button-next {
        display: none;
    }
}
.home-slider-3 .swiper-button-next:hover {
    color: #fff;
}
.home-slider-3 .swiper-button-next:hover:before {
    visibility: visible;
    opacity: 1;
}
.home-slider-3 .swiper-button-next:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.home-slider-4 {
    height: 843px;
    position: relative;
    z-index: 999;
    background-position: center -5px;
    background-repeat: no-repeat;
    background-color: #f7f7f7;
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-4 {
        height: 600px;
        background-size: cover;
    }
}
@media (max-width: 767px) {
    .home-slider-4 {
        height: 500px;
        background-size: cover;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .home-slider-4 {
        height: 400px;
    }
}
.home-slider-5 {
    height: 843px;
    position: relative;
    z-index: 999;
    background-position: center -5px;
    background-repeat: no-repeat;
    background-color: #000000;
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-5 {
        height: 600px;
        background-size: cover;
    }
}
@media (max-width: 767px) {
    .home-slider-5 {
        height: 500px;
        background-size: cover;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .home-slider-5 {
        height: 400px;
    }
}
.home-slider-shape .banner-thumb {
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%);
    width: auto;
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-shape .banner-thumb {
        width: 70%;
    }
}
@media (max-width: 767px) {
    .home-slider-shape .banner-thumb {
        width: 80%;
        bottom: 0;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .home-slider-shape .banner-thumb {
        bottom: 50%;
        transform: translate(-50%, 50%);
    }
}
.home-slider-shape .shape-wrap {
    position: absolute;
}
.home-slider-shape .shape-1 {
    left: 13%;
    top: 17%;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .home-slider-shape .shape-1 {
        left: 7%;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home-slider-shape .shape-1 {
        left: 7%;
    }
}
.home-slider-shape .shape-2 {
    top: 37.2%;
    left: 19.5%;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .home-slider-shape .shape-2 {
        left: 4%;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home-slider-shape .shape-2 {
        left: 5%;
        width: 150px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-shape .shape-2 {
        display: none;
    }
}
@media (max-width: 767px) {
    .home-slider-shape .shape-2 {
        display: none;
    }
}
.home-slider-shape .shape-3 {
    top: 21.5%;
    right: 27.6%;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .home-slider-shape .shape-3 {
        right: 18%;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home-slider-shape .shape-3 {
        right: 15%;
        width: 90px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-shape .shape-3 {
        display: none;
    }
}
@media (max-width: 767px) {
    .home-slider-shape .shape-3 {
        display: none;
    }
}
.home-slider-shape .shape-4 {
    top: 41.5%;
    right: 17.6%;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .home-slider-shape .shape-4 {
        right: 4.6%;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home-slider-shape .shape-4 {
        right: 4.6%;
        width: 140px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-shape .shape-4 {
        display: none;
    }
}
@media (max-width: 767px) {
    .home-slider-shape .shape-4 {
        display: none;
    }
}
.home-slider-shape .shape-5 {
    bottom: 15%;
    right: 24%;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .home-slider-shape .shape-5 {
        right: 13%;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home-slider-shape .shape-5 {
        right: 13%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-shape .shape-5 {
        right: 5%;
    }
}
@media (max-width: 767px) {
    .home-slider-shape .shape-5 {
        right: 5%;
    }
}
.home-slider-shape .shape-6 {
    right: 9.3%;
    top: 12.5%;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .home-slider-shape .shape-6 {
        right: 6%;
        top: 12.5%;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home-slider-shape .shape-6 {
        right: 6%;
        top: 12.5%;
    }
}
.home-slider-shape .shape-7 {
    bottom: 9.5%;
    left: 6%;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .home-slider-shape .shape-7 {
        bottom: 3%;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home-slider-shape .shape-7 {
        width: 90px;
        bottom: 17%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-shape .shape-7 {
        display: none;
    }
}
@media (max-width: 767px) {
    .home-slider-shape .shape-7 {
        display: none;
    }
}
.home-slider-shape .shape-8 {
    bottom: 31%;
    right: 5%;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .home-slider-shape .shape-8 {
        bottom: 12%;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home-slider-shape .shape-8 {
        width: 90px;
        bottom: 17%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-shape .shape-8 {
        display: none;
    }
}
@media (max-width: 767px) {
    .home-slider-shape .shape-8 {
        display: none;
    }
}
/* 4. Service */
.service-item {
    position: relative;
}
.service-item:hover .service-img img {
    transform: scale(1.05);
}
.service-item .service-img {
    position: relative;
    overflow: hidden;
}
.service-item .service-img img {
    width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.service-item .service-img:before {
    content: "";
    background: #03010a;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.55;
    z-index: 1;
}
.service-item .service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 55px 120px 55px 50px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .service-item .service-content {
        padding: 30px 20px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .service-item .service-content {
        padding: 40px 40px;
    }
}
@media (max-width: 767px) {
    .service-item .service-content {
        padding: 40px 40px;
    }
}
.service-item .service-content .icon {
    font-size: 40px;
    color: #fff;
    margin-bottom: 28px;
}
.service-item .service-content h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 28px;
    color: #fff;
    margin-bottom: 12px;
}
.service-item .service-content p {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 0;
}
.service-item .service-content .read-more {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    margin-top: 18px;
    display: inline-block;
}
.service-item .service-content .read-more:hover {
    color: #67b241;
}
.service-item .service-content .service-number {
    z-index: 1;
    color: #fff;
    opacity: 0.2;
    right: 52px;
    bottom: 90px;
    font-size: 200px;
    font-weight: 600;
    line-height: 40px;
    font-family: "Teko", sans-serif;
    position: absolute;
    -webkit-text-stroke-width: 2px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #ffffff;
}
.service-area {
    position: relative;
}
.service-area .gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 645px;
    z-index: -1;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.service-area .service-left-shape, .service-area .service-right-shape {
    position: absolute;
    top: 35px;
    opacity: 0.1;
    font-size: 150px;
    line-height: 1;
    color: #fff;
}
.service-area .service-left-shape {
    top: 100px;
    left: 95px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .service-area .service-left-shape {
        left: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .service-area .service-left-shape {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .service-area .service-left-shape {
        display: none;
    }
}
@media (max-width: 767px) {
    .service-area .service-left-shape {
        display: none;
    }
}
.service-area .service-right-shape {
    top: 0;
    right: 125px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .service-area .service-right-shape {
        right: 50px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .service-area .service-right-shape {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .service-area .service-right-shape {
        display: none;
    }
}
@media (max-width: 767px) {
    .service-area .service-right-shape {
        display: none;
    }
}
.service-area-spacing {
    padding-left: 55px;
    padding-right: 55px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .service-area-spacing {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (max-width: 767px) {
    .service-area-spacing {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .service-area-spacing {
        padding-left: 0;
        padding-right: 0;
    }
}
.service-area-2 .service-shape-1 {
    position: absolute;
    left: 52px;
    top: 0;
    opacity: 0.05;
}
.service-area-2 .service-shape-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.08;
}
.service-wrap-2 {
    position: relative;
}
.service-wrap-2:hover .service-img:after {
    visibility: visible;
    opacity: 1;
}
.service-wrap-2:hover .service-content h3 {
    margin-bottom: 20px;
}
.service-wrap-2:hover .service-content p {
    visibility: visible;
    opacity: 1;
    height: 70px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .service-wrap-2:hover .service-content p {
        height: 95px;
    }
}
.service-wrap-2 .service-img {
    position: relative;
    z-index: 1;
}
.service-wrap-2 .service-img:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #222222;
    opacity: 0.85;
    z-index: 1;
}
.service-wrap-2 .service-img:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    opacity: 0;
    z-index: 2;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.service-wrap-2 .service-img img {
    width: 100%;
}
.service-wrap-2 .service-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 30px;
}
.service-wrap-2 .service-content .icon {
    font-size: 50px;
    color: #fff;
    margin-bottom: 28px;
}
.service-wrap-2 .service-content h3 {
    color: #fff;
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 28px;
}
.service-wrap-2 .service-content p {
    color: #fff;
    opacity: 0;
    visibility: hidden;
    height: 0;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.service-wrap-2 .service-content .read-more {
    width: 55px;
    height: 55px;
    line-height: 55px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    color: #29282d;
    display: inline-block;
}
.service-wrap-2 .service-content .read-more:hover {
    background: #29282d;
    color: #fff;
}
.service-wrap-3 {
    padding: 15px 15px 20px;
    background: #fff;
    text-align: center;
    position: relative;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .service-wrap-3 {
        padding: 35px 15px 60px;
    }
}
@media (max-width: 767px) {
    .service-wrap-3 {
        padding: 35px 15px 60px;
    }
}
.service-wrap-3:hover:before {
    visibility: visible;
    opacity: 1;
}
.service-wrap-3:before {
    content: "";
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.service-wrap-3 .service-icon {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    padding: 20px 0;
}
.service-wrap-3 .service-icon .icon {
    display: inline-block;
    font-size: 30px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    color: #fff;
    background: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.service-wrap-3 .service-icon .num {
    font-family: "Teko", sans-serif;
    font-weight: 600;
    font-size: 200px;
    line-height: 155px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: -1;
    color: rgba(16, 16, 16, 0.2);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(16, 16, 16, 0.2);
}
.service-wrap-3 .service-content h3 {
    font-size: 30px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #29282d;
}
.service-wrap-3 .service-content p {
    color: #8e8e8e;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
}
.service-wrap-3 .service-content .read-more {
    color: #8e8e8e;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 20px;
    display: inline-block;
}
.service-wrap-3 .service-content .read-more i {
    margin-left: 5px;
}
.service-wrap-3 .service-content .read-more:hover {
    color: #67b241;
}
.service-slider-3 {
    position: relative;
}
.service-slider-3 .swiper-button-prev {
    left: -150px;
    margin: 0;
    z-index: 99;
    height: 60px;
    width: 60px;
    font-size: 18px;
    color: #666565;
    background: transparent;
    border-radius: 50%;
    border: 2px solid #424242;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    transform: translateY(-50%);
    outline: none;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .service-slider-3 .swiper-button-prev {
        display: none;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .service-slider-3 .swiper-button-prev {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .service-slider-3 .swiper-button-prev {
        display: none;
    }
}
@media (max-width: 767px) {
    .service-slider-3 .swiper-button-prev {
        display: none;
    }
}
.service-slider-3 .swiper-button-prev:hover {
    color: #fff;
    border: 0;
}
.service-slider-3 .swiper-button-prev:hover:before {
    visibility: visible;
    opacity: 1;
}
.service-slider-3 .swiper-button-prev:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.service-slider-3 .swiper-button-next {
    right: -150px;
    margin: 0;
    z-index: 99;
    height: 60px;
    width: 60px;
    font-size: 18px;
    color: #666565;
    background: transparent;
    border-radius: 50%;
    border: 2px solid #424242;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    transform: translateY(-50%);
    outline: none;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .service-slider-3 .swiper-button-next {
        display: none;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .service-slider-3 .swiper-button-next {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .service-slider-3 .swiper-button-next {
        display: none;
    }
}
@media (max-width: 767px) {
    .service-slider-3 .swiper-button-next {
        display: none;
    }
}
.service-slider-3 .swiper-button-next:hover {
    color: #fff;
    border: 0;
}
.service-slider-3 .swiper-button-next:hover:before {
    visibility: visible;
    opacity: 1;
}
.service-slider-3 .swiper-button-next:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.service-wrap-4 {
    position: relative;
}
.service-wrap-4:hover .service-img img {
    transform: scale(1.05);
}
.service-wrap-4 .service-img {
    overflow: hidden;
}
.service-wrap-4 .service-img img {
    width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.service-wrap-4 .service-content {
    padding: 45px 50px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -30px;
    z-index: 2;
    text-align: left;
}
@media (max-width: 767px) {
    .service-wrap-4 .service-content {
        padding: 30px 40px;
    }
}
.service-wrap-4 .service-content span {
    font-size: 14px;
    display: inline-block;
    color: #67b241;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.service-wrap-4 .service-content h3 {
    font-size: 40px;
    line-height: 50px;
    color: #29282d;
    font-weight: 600;
    margin-bottom: 0;
}
.service-wrap-4 .service-content .read-more {
    font-size: 14px;
    font-weight: 700;
    color: #67b241;
    text-transform: uppercase;
    display: inline-block;
}
.service-wrap-4 .service-content .read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s linear 0s;
}
.service-wrap-4 .service-content .read-more:hover i {
    margin-left: 8px;
}
.service-area-3 {
    position: relative;
    z-index: 3;
}
.service-area-3 .service-shape-1 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
@media (min-width: 768px) and (max-width: 991px) {
    .service-area-3 .service-shape-1 {
        display: none;
    }
}
@media (max-width: 767px) {
    .service-area-3 .service-shape-1 {
        display: none;
    }
}
.service-area-3 .service-shape-2 {
    position: absolute;
    right: 102px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
@media (min-width: 768px) and (max-width: 991px) {
    .service-area-3 .service-shape-2 {
        display: none;
    }
}
@media (max-width: 767px) {
    .service-area-3 .service-shape-2 {
        display: none;
    }
}
/* 14. Feature */
.feature-area {
    position: relative;
}
.feature-area .feature-icon-thumb {
    position: absolute;
    left: 180px;
    top: -60px;
    z-index: 100;
}
.feature-wrap {
    padding: 60px 20px 50px;
    border: 3px solid #e2edf8;
    border-bottom-color: #67b241;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.feature-wrap:hover {
    border-color: #67b241;
}
.feature-wrap:hover .feature-icon i {
    transform: scale(1.05);
}
.feature-wrap .feature-icon-wrap {
    text-align: center;
}
.feature-wrap .feature-icon-wrap .feature-icon {
    position: relative;
    display: inline-block;
}
.feature-wrap .feature-icon-wrap .feature-icon i {
    display: inline-block;
    position: relative;
    text-align: center;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 50px;
    color: #fff;
    margin: 0 auto;
    z-index: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    background: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.feature-wrap .feature-icon-wrap .feature-icon:before {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    right: 10px;
    top: -10px;
    margin-left: auto;
    margin-right: auto;
    background: #f1f8ff;
    z-index: -1;
}
.feature-wrap .feature-details {
    text-align: center;
    padding-top: 40px;
}
.feature-wrap .feature-details h3 {
    font-size: 24px;
    color: #29282d;
    font-weight: 600;
}
.feature-wrap .feature-details p {
    font-size: 16px;
    line-height: 28px;
    color: #8e8e8e;
}
.feature-wrap .feature-details .read-more {
    display: inline-block;
    color: #29282d;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.feature-wrap .feature-details .read-more:hover {
    color: #67b241;
}
.feature-slider-1 {
    position: relative;
}
.feature-slider-1 .swiper-button-prev {
    top: 0;
    left: auto;
    right: 70px;
    margin: 0;
    z-index: 99;
    height: 60px;
    width: 60px;
    font-size: 18px;
    color: #666565;
    background: #fff;
    border-radius: 50%;
    border: 3px solid #E2EDF8;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    transform: translateY(-140px);
}
@media (max-width: 767px) {
    .feature-slider-1 .swiper-button-prev {
        display: none;
    }
}
.feature-slider-1 .swiper-button-prev:hover {
    color: #fff;
    border: 0;
}
.feature-slider-1 .swiper-button-prev:hover:before {
    visibility: visible;
    opacity: 1;
}
.feature-slider-1 .swiper-button-prev:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.feature-slider-1 .swiper-button-next {
    top: 0;
    left: auto;
    right: 0;
    margin: 0;
    z-index: 99;
    height: 60px;
    width: 60px;
    font-size: 18px;
    color: #666565;
    background: #fff;
    border-radius: 50%;
    border: 3px solid #E2EDF8;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    transform: translateY(-140px);
}
@media (max-width: 767px) {
    .feature-slider-1 .swiper-button-next {
        display: none;
    }
}
.feature-slider-1 .swiper-button-next:hover {
    color: #fff;
    border: 0;
}
.feature-slider-1 .swiper-button-next:hover:before {
    visibility: visible;
    opacity: 1;
}
.feature-slider-1 .swiper-button-next:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.feature-wrap-2 {
    text-align: center;
    padding: 40px 25px;
    border-radius: 8px;
    background: #67b241;
    margin-bottom: 30px;
    position: relative;
}
.feature-wrap-2:before {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: 20px;
    top: 20px;
    background: #fff;
    opacity: 0.2;
    position: absolute;
}
.feature-wrap-2 .feature-icon {
    color: #fff;
    font-size: 50px;
    margin-bottom: 12px;
}
.feature-wrap-2 .feature-details h4 {
    font-size: 24px;
    line-height: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.feature-wrap-2 .feature-details .read-more {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.feature-wrap-2 .feature-details .read-more i {
    margin-left: 5px;
}
.feature-title .read-more {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #67b241;
    border-bottom: 2px solid #67b241;
    text-transform: uppercase;
}
.feature-title .read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s linear 0s;
}
.feature-title .read-more:hover i {
    margin-left: 8px;
}
.feature-wrap-3 {
    padding: 0 30px 30px 95px;
    position: relative;
}
@media (min-width: 320px) and (max-width: 425px) {
    .feature-wrap-3 {
        padding: 0 0 30px 95px;
    }
}
.feature-wrap-3:hover .feature-icon {
    -webkit-animation-name: hvr-wobble-vertical;
    animation-name: hvr-wobble-vertical;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
.feature-wrap-3 .feature-icon {
    position: absolute;
    left: 0;
    top: 8px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    font-size: 32px;
    color: #fff;
    text-align: center;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.feature-wrap-3 .feature-content h3 {
    font-size: 24px;
    line-height: 38px;
    font-weight: 600;
    color: #29282d;
    margin-bottom: 5px;
}
.feature-wrap-3 .feature-content p {
    font-size: 16px;
    line-height: 28px;
    color: #8e8e8e;
    margin-bottom: 0;
}
.feature-wrap-3 .feature-content .read-more {
    font-size: 14px;
    font-weight: 700;
    color: #8e8e8e;
    text-transform: uppercase;
    margin-top: 14px;
    display: inline-block;
}
.feature-wrap-3 .feature-content .read-more:hover {
    color: #67b241;
}
/* Wobble Vertical */
@-webkit-keyframes hvr-wobble-vertical {
    16.65% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
    33.3% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }
    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }
    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes hvr-wobble-vertical {
    16.65% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
    33.3% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }
    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }
    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
/* 7. About */
.about-img {
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.about-img:before {
    content: "";
    background: #03010a;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}
.about-img img {
    width: 100%;
}
.about-content .about-text {
    padding-left: 40px;
}
@media (max-width: 767px) {
    .about-content .about-text {
        padding-left: 0;
    }
}
.about-content .about-text p {
    font-size: 16px;
    line-height: 28px;
    color: #8e8e8e;
}
.about-img-2 {
    overflow: hidden;
    position: relative;
    z-index: 3;
}
.about-img-2:hover img {
    transform: scale(1.05);
}
.about-img-2 img {
    width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.about-content-2 {
    padding-left: 40px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .about-content-2 {
        padding-left: 0;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .about-content-2 {
        padding-left: 0;
    }
}
@media (max-width: 767px) {
    .about-content-2 {
        padding-left: 0;
    }
}
.about-video-play {
    position: relative;
    z-index: 1;
}
.about-video-play img {
    width: 100%;
}
.about-video-play:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #67b241;
    opacity: 0.85;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    z-index: 2;
}
.about-video-play .about-text p {
    font-size: 16px;
    line-height: 28px;
    color: #bcbcbc;
}
.about-video-play .read-more {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.about-video-play .read-more:hover {
    transform: translate(-50%, -50%) scale(1.05);
}
.about-area-2 {
    position: relative;
    overflow: hidden;
}
.about-area-2 .about-shape {
    position: absolute;
    right: 25px;
    top: 100px;
    z-index: 2;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .about-area-2 .about-shape {
        top: -150px;
        right: 0;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .about-area-2 .about-shape {
        top: -150px;
        right: 0;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .about-area-2 .about-shape {
        top: -200px;
        right: 0;
    }
}
@media (max-width: 767px) {
    .about-area-2 .about-shape {
        top: -200px;
        right: 0;
    }
}
.about-area-3 {
    position: relative;
    z-index: 1;
}
.about-area-3 .about-shape {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.about-area-3 .about-thumb {
    display: inline-block;
    overflow: hidden;
}
@media (max-width: 767px) {
    .about-area-3 .about-thumb {
        display: block;
    }
}
.about-area-3 .about-thumb:hover img {
    transform: scale(1.05);
}
.about-area-3 .about-thumb img {
    width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
@media (min-width: 768px) and (max-width: 991px) {
    .about-content-3 {
        text-align: center;
    }
}
.about-content-3 .thumb-text {
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
}
.about-content-3 .thumb-text:before {
    content: "";
    background: #101010;
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.about-content-3 .thumb-text:hover img {
    transform: scale(1.05);
}
.about-content-3 .thumb-text img {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.about-content-3 .thumb-text .read-more {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #67b241;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    color: #fff;
    padding: 10px 26px;
    font-size: 30px;
    z-index: 3;
}
@media (max-width: 767px) {
    .about-content-3 .thumb-text .read-more {
        font-size: 16px;
    }
}
.about-content-3 .thumb-text .read-more:hover {
    color: #67b241;
    background: #fff;
}
.about-content-3 .about-text {
    padding-left: 50px;
    padding-right: 80px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .about-content-3 .about-text {
        padding-right: 0;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .about-content-3 .about-text {
        padding-right: 50px;
    }
}
@media (max-width: 767px) {
    .about-content-3 .about-text {
        padding-left: 0;
        padding-right: 0;
    }
}
.about-content-3 .about-text .section-title-3 h3 {
    margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .about-content-3 .about-text .section-title-3 h3:before {
        left: 50%;
        transform: translateX(-50%);
    }
}
.about-content-3 .about-text .section-title-3 h3 span {
    color: #67b241;
}
.about-content-3 .about-text p {
    margin-bottom: 0;
}
.about-area-4 {
    background: #f1f8ff;
    position: relative;
    z-index: 1;
}
.about-area-4 .about-bg-thumb {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: -1;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}
@media (max-width: 767px) {
    .about-area-4 .about-bg-thumb {
        display: none;
    }
}
.about-area-4 .about-features {
    position: absolute;
    z-index: 1;
    bottom: 60px;
    left: 47%;
    padding: 54px 75px;
    border-radius: 40px;
    border-top-left-radius: 0;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
@media (min-width: 992px) and (max-width: 1200px) {
    .about-area-4 .about-features {
        padding: 54px 60px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .about-area-4 .about-features {
        padding: 40px 60px;
    }
}
@media (max-width: 767px) {
    .about-area-4 .about-features {
        display: none;
    }
}
.about-area-4 .about-features .icon {
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    opacity: 0.2;
    transform: translate(-50%, -50%);
    z-index: -1;
    font-size: 150px;
    line-height: 36px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .about-area-4 .about-features .icon {
        font-size: 100px;
        line-height: 70px;
    }
}
.about-area-4 .about-features h3 {
    font-size: 60px;
    margin-bottom: 0;
    color: #fff;
}
@media (min-width: 768px) and (max-width: 991px) {
    .about-area-4 .about-features h3 {
        font-size: 30px;
    }
}
.about-text-4 {
    position: relative;
}
.about-wrap {
    position: relative;
    padding-left: 90px;
}
.about-wrap:hover .about-icon {
    -webkit-animation-name: hvr-wobble-vertical;
    animation-name: hvr-wobble-vertical;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
.about-wrap .about-icon {
    position: absolute;
    left: 0;
    top: 8px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    font-size: 32px;
    color: #fff;
    text-align: center;
    background-color: #7352d1;
    background-image: -moz-linear-gradient(-72deg, #7352d1 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #7352d1 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #7352d1 0%, #3459e0 99%);
}
.about-wrap .about-content h3 {
    font-size: 24px;
    line-height: 38px;
    font-weight: 600;
    color: #29282d;
    margin-bottom: 5px;
}
.about-wrap .about-content p {
    font-size: 16px;
    line-height: 28px;
    color: #666;
    margin-bottom: 0;
}
.about-wrap .about-content.text-white h3 {
    color: #fff;
}
.about-wrap .about-content.text-white p {
    color: #c0c0c0;
}
.about-content-4 {
    padding-right: 50px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .about-content-4 {
        margin-right: 0;
    }
}
@media (max-width: 767px) {
    .about-content-4 {
        padding-right: 0;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .about-content-4 .about-text .section-title-3 h3 {
        font-size: 38px;
        line-height: 48px;
    }
}
.about-content-4 .about-text .read-more {
    font-size: 14px;
    font-weight: 700;
    color: #67b241;
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 2px solid #67b241;
}
.about-content-4 .about-text .read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s linear 0s;
}
.about-content-4 .about-text .read-more:hover i {
    margin-left: 8px;
}
/* 13. Team */
.team-area {
    position: relative;
}
.team-area .gray-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 645px;
    z-index: -2;
    background-color: #f7f7f7;
}
.team-right {
    position: absolute;
    top: 130px;
    right: 70px;
    text-align: center;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .team-right {
        width: 400px;
        right: 0;
        z-index: -1;
        top: 50%;
        transform: translateY(-50%);
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .team-right {
        position: inherit;
        top: 0;
        right: 0;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .team-right {
        position: inherit;
        top: 0;
        right: 0;
    }
}
@media (max-width: 767px) {
    .team-right {
        position: inherit;
        top: 0;
        right: 0;
    }
}
.team-right .team-button {
    margin-top: 80px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .team-right .team-button {
        margin-top: 40px;
    }
}
@media (max-width: 767px) {
    .team-right .team-button {
        margin-top: 40px;
    }
}
.team-wrap:hover .team-img img {
    transform: scale(1.05);
}
.team-wrap:hover .team-img:before {
    visibility: visible;
    opacity: 1;
}
.team-wrap:hover .team-img .team-social-link {
    opacity: 1;
    visibility: visible;
    top: 50%;
}
.team-wrap .team-img {
    position: relative;
    overflow: hidden;
}
.team-wrap .team-img:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    z-index: 1;
}
.team-wrap .team-img img {
    width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.team-wrap .team-img .team-social-link {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    transition: 1s;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}
.team-wrap .team-img .team-social-link ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.team-wrap .team-img .team-social-link ul li {
    display: inline-block;
}
.team-wrap .team-img .team-social-link ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    color: #A9A9A9;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    z-index: 1;
    margin: 0 5px;
    position: relative;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.team-wrap .team-img .team-social-link ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    background: #67b241;
    z-index: -1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.team-wrap .team-img .team-social-link ul li a:hover {
    color: #fff;
}
.team-wrap .team-img .team-social-link ul li a:hover:before {
    visibility: visible;
    opacity: 1;
}
.team-wrap .team-content {
    padding-top: 30px;
    padding-bottom: 5px;
    text-align: center;
}
.team-wrap .team-content h3 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 24px;
}
.team-wrap .team-content h3 a {
    color: #29282d;
}
.team-wrap .team-content h3 a:hover {
    color: #67b241;
}
.team-wrap .team-content span {
    color: #67b241;
    font-weight: 500;
    font-family: "Barlow", sans-serif;
}
.team-wrap-2 {
    position: relative;
}
.team-wrap-2:hover .team-img:before {
    visibility: hidden;
    opacity: 0;
}
.team-wrap-2:hover .team-img:after {
    visibility: visible;
    opacity: 0.7;
}
.team-wrap-2:hover .team-content .team-social-link {
    margin-top: 15px;
    visibility: visible;
    opacity: 1;
    height: 40px;
}
.team-wrap-2 .team-img {
    position: relative;
    overflow: hidden;
}
.team-wrap-2 .team-img:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0.5;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.team-wrap-2 .team-img:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    opacity: 0;
    z-index: 1;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.team-wrap-2 .team-img img {
    width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.team-wrap-2 .team-content {
    padding-bottom: 35px;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
}
.team-wrap-2 .team-content h3 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 24px;
}
.team-wrap-2 .team-content h3 a {
    color: #fff;
}
.team-wrap-2 .team-content h3 a:hover {
    color: #fff;
}
.team-wrap-2 .team-content span {
    color: #fff;
    font-weight: 500;
    font-family: "Barlow", sans-serif;
    display: inline-block;
}
.team-wrap-2 .team-content .team-social-link {
    visibility: hidden;
    opacity: 0;
    height: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.team-wrap-2 .team-content .team-social-link ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.team-wrap-2 .team-content .team-social-link ul li {
    display: inline-block;
}
.team-wrap-2 .team-content .team-social-link ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    color: #fff;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    z-index: 1;
    margin: 0 5px;
    position: relative;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.team-wrap-2 .team-content .team-social-link ul li a:hover {
    background: #fff;
    color: #67b241;
}
@media (min-width: 768px) and (max-width: 991px) {
    .team-title-2.section-title-2 {
        text-align: center;
    }
    .team-title-2.section-title-2 h3 {
        margin: 0 auto;
    }
    .team-title-2.section-title-2 h3:before {
        left: 50%;
        transform: translateX(-50%);
    }
    .team-title-2.section-title-2 span {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
@media (max-width: 767px) {
    .team-title-2.section-title-2 {
        text-align: center;
    }
    .team-title-2.section-title-2 h3 {
        margin: 0 auto;
    }
    .team-title-2.section-title-2 h3:before {
        left: 50%;
        transform: translateX(-50%);
    }
    .team-title-2.section-title-2 span {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
.team-area-2 {
    position: relative;
    z-index: 3;
}
.team-area-2 .team-shape-1 {
    position: absolute;
    left: 0;
    top: -350px;
    z-index: 2;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .team-area-2 .team-shape-1 {
        top: -90px;
        width: 70px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .team-area-2 .team-shape-1 {
        top: -90px;
        width: 70px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .team-area-2 .team-shape-1 {
        display: none;
    }
}
@media (max-width: 767px) {
    .team-area-2 .team-shape-1 {
        display: none;
    }
}
.team-area-2 .team-shape-2 {
    position: absolute;
    right: 180px;
    bottom: 0;
    z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .team-area-2 .team-shape-2 {
        width: 400px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .team-area-2 .team-shape-2 {
        right: 100px;
        width: 400px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .team-area-2 .team-shape-2 {
        display: none;
    }
}
@media (max-width: 767px) {
    .team-area-2 .team-shape-2 {
        display: none;
    }
}
.team-area-3 {
    background: #3c0378;
    position: relative;
    z-index: 1;
}
.team-area-3 .team-shape-1 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.team-area-3 .team-icon-1 {
    position: absolute;
    left: 100px;
    top: 115px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .team-area-3 .team-icon-1 {
        width: 80px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .team-area-3 .team-icon-1 {
        width: 60px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .team-area-3 .team-icon-1 {
        display: none;
    }
}
@media (max-width: 767px) {
    .team-area-3 .team-icon-1 {
        display: none;
    }
}
.team-area-3 .team-icon-2 {
    position: absolute;
    top: 116px;
    right: 130px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .team-area-3 .team-icon-2 {
        width: 80px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .team-area-3 .team-icon-2 {
        width: 60px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .team-area-3 .team-icon-2 {
        display: none;
    }
}
@media (max-width: 767px) {
    .team-area-3 .team-icon-2 {
        display: none;
    }
}
.team-area-3 .team-icon-3 {
    position: absolute;
    right: 140px;
    bottom: 85px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .team-area-3 .team-icon-3 {
        width: 80px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .team-area-3 .team-icon-3 {
        width: 60px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .team-area-3 .team-icon-3 {
        display: none;
    }
}
@media (max-width: 767px) {
    .team-area-3 .team-icon-3 {
        display: none;
    }
}
.team-area-3 .team-icon-4 {
    position: absolute;
    left: 120px;
    bottom: 60px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .team-area-3 .team-icon-4 {
        width: 80px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .team-area-3 .team-icon-4 {
        width: 60px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .team-area-3 .team-icon-4 {
        display: none;
    }
}
@media (max-width: 767px) {
    .team-area-3 .team-icon-4 {
        display: none;
    }
}
.team-wrap-3:hover .team-img img {
    transform: scale(1.05);
}
.team-wrap-3:hover .team-img:before {
    visibility: visible;
    opacity: 0.7;
}
.team-wrap-3:hover .team-img .team-social-link {
    opacity: 1;
    visibility: visible;
    top: 50%;
}
.team-wrap-3 .team-img {
    position: relative;
    overflow: hidden;
    width: 150px;
    height: 150px;
    border: 5px solid #fff;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .team-wrap-3 .team-img {
        width: 200px;
        height: 200px;
    }
}
.team-wrap-3 .team-img:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #67b241;
    background-image: -moz-linear-gradient(-72deg, rgba(230, 58, 52, 0.8) 0%, rgba(234, 87, 63, 0.83) 51%, rgba(238, 115, 73, 0.85) 99%, #3459e0 100%);
    background-image: -webkit-linear-gradient(-72deg, rgba(230, 58, 52, 0.8) 0%, rgba(234, 87, 63, 0.83) 51%, rgba(238, 115, 73, 0.85) 99%, #3459e0 100%);
    background-image: -ms-linear-gradient(-72deg, rgba(230, 58, 52, 0.8) 0%, rgba(234, 87, 63, 0.83) 51%, rgba(238, 115, 73, 0.85) 99%, #3459e0 100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    z-index: 1;
}
.team-wrap-3 .team-img img {
    width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.team-wrap-3 .team-img .team-social-link {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    transition: 1s;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}
.team-wrap-3 .team-img .team-social-link ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.team-wrap-3 .team-img .team-social-link ul li {
    display: inline-block;
}
.team-wrap-3 .team-img .team-social-link ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    color: #A9A9A9;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    z-index: 1;
    margin: 0 5px;
    position: relative;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.team-wrap-3 .team-img .team-social-link ul li a:hover {
    color: #fff;
    background: #1e2c8a;
}
.team-wrap-3 .team-img .team-social-link ul li a:hover:before {
    visibility: visible;
    opacity: 1;
}
.team-wrap-3 .team-content {
    padding-top: 30px;
    padding-bottom: 5px;
    text-align: center;
}
.team-wrap-3 .team-content h3 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 24px;
}
.team-wrap-3 .team-content h3 a {
    color: #fff;
}
.team-wrap-3 .team-content h3 a:hover {
    color: #67b241;
}
.team-wrap-3 .team-content span {
    color: #ffff;
    font-weight: 500;
    font-family: "Barlow", sans-serif;
}
.team-wrap-4 {
    padding-top: 15px;
    padding-bottom: 15px;
    border: 1px solid #e6e6e6;
    text-align: center;
}
.team-wrap-4:hover .team-img img {
    transform: scale(1.05);
}
.team-wrap-4:hover .team-img:before {
    visibility: visible;
    opacity: 0.5;
}
.team-wrap-4 .team-img {
    position: relative;
    overflow: hidden;
    width: 145px;
    height: 145px;
    border: 5px solid #fff;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}
.team-wrap-4 .team-img:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #67b241;
    background-image: -moz-linear-gradient(-72deg, rgba(230, 58, 52, 0.8) 0%, rgba(234, 87, 63, 0.83) 51%, rgba(238, 115, 73, 0.85) 99%, #3459e0 100%);
    background-image: -webkit-linear-gradient(-72deg, rgba(230, 58, 52, 0.8) 0%, rgba(234, 87, 63, 0.83) 51%, rgba(238, 115, 73, 0.85) 99%, #3459e0 100%);
    background-image: -ms-linear-gradient(-72deg, rgba(230, 58, 52, 0.8) 0%, rgba(234, 87, 63, 0.83) 51%, rgba(238, 115, 73, 0.85) 99%, #3459e0 100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    z-index: 1;
}
.team-wrap-4 .team-img img {
    width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.team-wrap-4 .team-content {
    padding-top: 30px;
    padding-bottom: 5px;
    text-align: center;
}
.team-wrap-4 .team-content h3 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 24px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .team-wrap-4 .team-content h3 {
        font-size: 20px;
    }
}
.team-wrap-4 .team-content h3 a {
    color: #29282d;
}
.team-wrap-4 .team-content h3 a:hover {
    color: #67b241;
}
.team-wrap-4 .team-content span {
    color: #67b241;
    font-weight: 500;
    font-family: "Barlow", sans-serif;
}
.team-wrap-4 .team-content .team-social-link {
    margin-top: 15px;
}
.team-wrap-4 .team-content .team-social-link ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.team-wrap-4 .team-content .team-social-link ul li {
    display: inline-block;
}
.team-wrap-4 .team-content .team-social-link ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    color: #A9A9A9;
    background: #e8e8e8;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    z-index: 1;
    margin: 0 5px;
    position: relative;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.team-wrap-4 .team-content .team-social-link ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    background: #67b241;
    z-index: -1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.team-wrap-4 .team-content .team-social-link ul li a:hover {
    color: #fff;
}
.team-wrap-4 .team-content .team-social-link ul li a:hover:before {
    visibility: visible;
    opacity: 1;
}
.trainer-details-content {
    padding-left: 50px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .trainer-details-content {
        padding-left: 0;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .trainer-details-content {
        padding-left: 0;
    }
}
@media (max-width: 767px) {
    .trainer-details-content {
        padding-left: 0;
    }
}
.trainer-details-content h3 {
    font-size: 65px;
    line-height: 65px;
    margin-bottom: 5px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .trainer-details-content h3 {
        font-size: 55px;
        line-height: 55px;
    }
}
@media (max-width: 767px) {
    .trainer-details-content h3 {
        font-size: 44px;
        line-height: 44px;
    }
}
.trainer-details-content h4 {
    font-size: 24px;
    color: #67b241;
    font-family: "Ubuntu", sans-serif;
    margin-bottom: 26px;
}
.trainer-details-content p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
}
.trainer-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.trainer-info .info-icon {
    width: 80px;
    height: 80px;
    text-align: center;
    position: relative;
    margin-left: 10px;
    z-index: 2;
}
.trainer-info .info-icon i {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    color: #fff;
    font-size: 45px;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.trainer-info .info-icon:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #f1f8ff;
    top: -10px;
    left: -10px;
    z-index: -1;
}
.trainer-info .info-content {
    padding-left: 30px;
}
.trainer-info .info-content h5 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: #29282d;
    margin-bottom: 0;
}
.trainer-info .info-content p {
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
    color: #29282d;
}
/* 18. Process */
.process-area {
    background: #252525;
    position: relative;
    z-index: 1;
}
.process-area .process-shape-1 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.process-area .process-shape-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.process-wrap {
    text-align: center;
    position: relative;
}
.process-wrap .process-icon-wrap {
    padding-top: 25px;
    padding-bottom: 16px;
}
.process-wrap .process-icon-wrap .process-icon {
    position: relative;
    display: inline-block;
    z-index: 3;
}
.process-wrap .process-icon-wrap .process-icon i {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    position: relative;
    font-size: 50px;
    color: #fff;
    text-align: center;
    background-image: -moz-linear-gradient(-72deg, #7352d1 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #7352d1 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #7352d1 0%, #3459e0 99%);
    z-index: 1;
    border-radius: 7px;
}
.process-wrap .process-icon-wrap .process-icon:after {
    content: "";
    position: absolute;
    left: 16px;
    top: 16px;
    width: 100px;
    height: 100px;
    background: #fff;
    z-index: -1;
    border-radius: 7px;
    opacity: 0.2;
}
.process-wrap .process-icon-wrap .process-icon .process-number {
    position: absolute;
    top: -25px;
    left: -25px;
    font-size: 18px;
    width: 45px;
    height: 45px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    font-family: "Teko", sans-serif;
    font-weight: 600;
    color: #333333;
    z-index: 3;
}
.process-wrap .process-content {
    padding: 35px 0 0;
}
@media (min-width: 768px) and (max-width: 991px) {
    .process-wrap .process-content {
        padding: 35px 40px 0;
    }
}
@media (max-width: 767px) {
    .process-wrap .process-content {
        padding: 35px 40px 0;
    }
}
.process-wrap .process-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}
.process-wrap .process-content p {
    font-size: 16px;
    line-height: 28px;
    color: #c9c9c9;
}
.process-wrap .process-next {
    position: absolute;
    right: -45px;
    top: 55px;
    color: #fff;
    font-size: 60px;
    opacity: 0.2;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .process-wrap .process-next {
        right: -30px;
        top: 80px;
        font-size: 30px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .process-wrap .process-next {
        display: none;
    }
}
@media (max-width: 767px) {
    .process-wrap .process-next {
        display: none;
    }
}
.process-dark .process-icon-wrap .process-icon:after {
    background: #a8d4ff;
}
.process-dark .process-icon-wrap .process-icon .process-number {
    box-shadow: 0px 0px 29.7px 0.3px rgba(226, 226, 226, 0.78);
}
.process-dark .process-content h3 {
    color: #29282d;
}
.process-dark .process-content p {
    color: #8e8e8e;
}
/* 15. Calculator */
.calculator-area {
    background: #f8f7f8;
    position: relative;
    z-index: 1;
}
.calculator-area .calculator-thumb {
    position: absolute;
    left: 125px;
    bottom: -25px;
    z-index: 3;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .calculator-area .calculator-thumb {
        left: -110px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .calculator-area .calculator-thumb {
        left: -210px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .calculator-area .calculator-thumb {
        display: none;
    }
}
@media (max-width: 767px) {
    .calculator-area .calculator-thumb {
        display: none;
    }
}
.calculator-area .calculator-shape-1 {
    position: absolute;
    left: 200px;
    top: 0;
    z-index: -1;
}
@media (min-width: 768px) and (max-width: 991px) {
    .calculator-area .calculator-shape-1 {
        width: 170px;
        left: 100px;
    }
}
@media (max-width: 767px) {
    .calculator-area .calculator-shape-1 {
        display: none;
    }
}
.calculator-area .calculator-shape-2 {
    position: absolute;
    right: 60px;
    bottom: 0;
    z-index: -1;
}
.calculator-chart h3 {
    font-size: 35px;
    line-height: 38px;
    color: #101010;
    font-weight: 600;
}
.calculator-chart p {
    color: #8e8e8e;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
}
.calculator-chart .table thead tr {
    background: #67b241;
    background: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.calculator-chart .table thead tr th {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    font-family: "Teko", sans-serif;
    border: 1px solid #fff;
    padding: 20px 55px 15px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .calculator-chart .table thead tr th {
        padding: 20px 22px 15px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .calculator-chart .table thead tr th {
        padding: 20px 22px 15px;
    }
}
@media (max-width: 767px) {
    .calculator-chart .table thead tr th {
        font-size: 18px;
        padding: 20px 20px 15px;
    }
}
.calculator-chart .table thead tr th:last-child {
    border-right: 0;
}
.calculator-chart .table tbody td {
    color: #666565;
    font-size: 16px;
    border: 1px solid #E2EDF8;
    font-weight: 500;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 52px;
    font-family: "Barlow", sans-serif;
    background: #fff;
}
@media (max-width: 767px) {
    .calculator-chart .table tbody td {
        padding-left: 20px;
    }
}
.calculator-chart-2 h3 {
    font-size: 35px;
    line-height: 38px;
    color: #fff;
    font-weight: 600;
}
.calculator-chart-2 .table {
    background: transparent;
}
.calculator-chart-2 .table thead tr {
    background: #67b241;
    background: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.calculator-chart-2 .table thead tr th {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    font-family: "Teko", sans-serif;
    padding: 20px 55px 15px;
    border: 0;
    border-right: 1px solid #424242;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .calculator-chart-2 .table thead tr th {
        padding: 20px 22px 15px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .calculator-chart-2 .table thead tr th {
        padding: 20px 22px 15px;
    }
}
@media (max-width: 767px) {
    .calculator-chart-2 .table thead tr th {
        font-size: 18px;
        padding: 20px 20px 15px;
    }
}
.calculator-chart-2 .table thead tr th:last-child {
    border-right: 0;
}
.calculator-chart-2 .table tbody td {
    color: #a8a8a8;
    font-size: 16px;
    background: rgba(22, 22, 22, 0.8);
    border: 1px solid #424242;
    font-weight: 500;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 52px;
    font-family: "Barlow", sans-serif;
}
@media (max-width: 767px) {
    .calculator-chart-2 .table tbody td {
        padding-left: 20px;
    }
}
.calculator-form h3 {
    font-size: 35px;
    line-height: 38px;
    color: #101010;
    font-weight: 600;
}
.calculator-form form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}
.calculator-form form .input-wrap {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.calculator-form form .input-wrap input {
    width: 100%;
    border: 1px solid #E2EDF8;
    padding: 12px 28px;
    margin-bottom: 10px;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    color: #666565;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.calculator-form form .input-wrap input:focus {
    border-color: #67b241;
}
.calculator-form form .input-wrap input:focus::-webkit-input-placeholder {
    color: transparent;
}
.calculator-form form .input-wrap input:focus:-moz-placeholder {
    color: transparent;
}
.calculator-form form .input-wrap input:focus::-moz-placeholder {
    color: transparent;
}
.calculator-form form .input-wrap input:focus:-ms-input-placeholder {
    color: transparent;
}
.calculator-form form .input-wrap select {
    width: 100%;
    border: 1px solid #E2EDF8;
    padding: 12px 28px;
    margin-bottom: 10px;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    color: #666565;
    outline: none;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.calculator-form form .input-wrap select:focus {
    border-color: #67b241;
}
.calculator-form form .input-wrap .btn {
    width: 100%;
    padding: 15px;
}
.calculator-form-2 h3 {
    font-size: 35px;
    line-height: 38px;
    color: #fff;
    font-weight: 600;
}
.calculator-form-2 p {
    color: #a8a8a8;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
}
.calculator-form-2 form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}
.calculator-form-2 form .input-wrap {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.calculator-form-2 form .input-wrap input {
    width: 100%;
    background: rgba(22, 22, 22, 0.8);
    border: 1px solid #424242;
    padding: 18px 28px;
    margin-bottom: 10px;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    color: #666565;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.calculator-form-2 form .input-wrap input:focus {
    border-color: #67b241;
}
.calculator-form-2 form .input-wrap input:focus::-webkit-input-placeholder {
    color: transparent;
}
.calculator-form-2 form .input-wrap input:focus:-moz-placeholder {
    color: transparent;
}
.calculator-form-2 form .input-wrap input:focus::-moz-placeholder {
    color: transparent;
}
.calculator-form-2 form .input-wrap input:focus:-ms-input-placeholder {
    color: transparent;
}
.calculator-form-2 form .input-wrap select {
    width: 100%;
    background: rgba(22, 22, 22, 0.8);
    border: 1px solid #424242;
    padding: 18px 28px;
    margin-bottom: 10px;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    color: #666565;
    outline: none;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.calculator-form-2 form .input-wrap select:focus {
    border-color: #67b241;
}
.calculator-form-2 form .input-wrap .btn {
    width: 100%;
    padding: 21px 10px;
    text-transform: uppercase;
}
.calculator-form-3 {
    position: relative;
    z-index: 3;
}
.calculator-form-3 h3 {
    font-size: 35px;
    line-height: 38px;
    color: #101010;
    font-weight: 600;
}
.calculator-form-3 form .input-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}
.calculator-form-3 form .input-wrap input {
    width: 100%;
    border: 1px solid #E2EDF8;
    padding: 15px 28px;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    color: #666565;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.calculator-form-3 form .input-wrap input:focus {
    border-color: #1e2c8a;
}
.calculator-form-3 form .input-wrap input:focus::-webkit-input-placeholder {
    color: transparent;
}
.calculator-form-3 form .input-wrap input:focus:-moz-placeholder {
    color: transparent;
}
.calculator-form-3 form .input-wrap input:focus::-moz-placeholder {
    color: transparent;
}
.calculator-form-3 form .input-wrap input:focus:-ms-input-placeholder {
    color: transparent;
}
.calculator-form-3 form .input-wrap select {
    width: 100%;
    border: 1px solid #E2EDF8;
    padding: 15px 28px;
    margin-bottom: 10px;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    color: #666565;
    outline: none;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.calculator-form-3 form .input-wrap select:focus {
    border-color: #1e2c8a;
}
.calculator-form-3 form .input-wrap .btn {
    width: 100%;
    padding: 18.5px;
    background: #1e2c8a;
    color: #fff;
}
.calculator-area-2 {
    position: relative;
    z-index: 1;
}
.calculator-area-2 .calculator-bg-1 {
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}
@media (min-width: 768px) and (max-width: 991px) {
    .calculator-area-2 .calculator-bg-1 {
        height: 50%;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .calculator-area-2 .calculator-bg-1 {
        height: 50%;
        width: 100%;
    }
}
.calculator-area-2 .calculator-bg-1:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background: #161616;
    opacity: 0.8;
}
.calculator-area-2 .calculator-bg-2 {
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: -1;
}
@media (min-width: 768px) and (max-width: 991px) {
    .calculator-area-2 .calculator-bg-2 {
        top: 50%;
        height: 50%;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .calculator-area-2 .calculator-bg-2 {
        top: 50%;
        height: 50%;
        width: 100%;
    }
}
.calculator-area-2 .calculator-bg-2:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background: #161616;
    opacity: 0.8;
}
.calculator-area-3 {
    position: relative;
    z-index: 1;
    background: #f1f8ff;
}
.calculator-area-3 .calculator-bg-1 {
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}
@media (min-width: 768px) and (max-width: 991px) {
    .calculator-area-3 .calculator-bg-1 {
        display: none;
    }
}
@media (max-width: 767px) {
    .calculator-area-3 .calculator-bg-1 {
        display: none;
    }
}
/* 20. Schedule */
@media (min-width: 768px) and (max-width: 991px) {
    .schedule-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
@media (max-width: 767px) {
    .schedule-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
.schedule-table table thead tr {
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.schedule-table table thead th {
    padding: 25px 50px 20px;
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    font-family: "Teko", sans-serif;
    position: relative;
    border: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
    .schedule-table table thead th {
        padding: 25px 20px 20px;
    }
}
@media (max-width: 767px) {
    .schedule-table table thead th {
        padding: 25px 20px 20px;
    }
}
.schedule-table table thead th:last-child:before {
    display: none;
}
.schedule-table table thead th:before {
    content: "";
    width: 3px;
    height: 35px;
    background: #f87d79;
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
}
.schedule-table table tbody td {
    vertical-align: middle;
    border: 1px solid #E2EDF8;
    color: #666565;
    font-weight: 500;
    padding: 30px;
    font-family: "Barlow", sans-serif;
    text-align: center;
}
.schedule-table table tbody td h4 {
    font-size: 22px;
    font-family: "Teko", sans-serif;
    font-weight: 600;
    margin-bottom: 0;
    color: #29282d;
}
.schedule-table table tbody td p {
    font-size: 16px;
    margin-bottom: 0;
}
.schedule-table table tbody td .hover {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%) scale(0.8);
    background: #fff;
    z-index: 99;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    border-radius: 10px;
    padding: 30px 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.schedule-table table tbody td .hover h4 {
    color: #fff;
    margin-bottom: 0;
}
.schedule-table table tbody td .hover p {
    color: #fff;
    font-weight: 300;
    font-family: "Ubuntu", sans-serif;
}
.schedule-table table tbody td .hover span {
    color: #fff;
    visibility: visible;
    opacity: 1;
    font-size: 18px;
    font-weight: 600;
    padding-top: 5px;
    display: inline-block;
}
.schedule-table table tbody td.day {
    font-size: 24px;
    font-weight: 600;
    font-family: "Teko", sans-serif;
    color: #29282d;
    background: #F1F8FF;
    border: 1px solid #F1F8FF;
    position: relative;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.schedule-table table tbody td.day:hover {
    background: #29282D;
    color: #fff;
    border: 1px solid #29282D;
}
.schedule-table table tbody td.active {
    position: relative;
    z-index: 10;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.schedule-table table tbody td.active::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    transform: scale(0);
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 10px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.schedule-table table tbody td.active:hover .hover {
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
    opacity: 1;
}
.schedule-table table.table-bg-off-white tbody td.day {
    background: #fff;
    border: 1px solid #fff;
}
.schedule-table table.table-bg-off-white tbody td.day:hover {
    background: #29282D;
    color: #fff;
    border: 1px solid #29282D;
}
.schedule-area-2 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.schedule-area-2 .schedule-shape-1 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.schedule-area-2 .schedule-shape-2 {
    position: absolute;
    left: 236px;
    bottom: 328px;
    z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .schedule-area-2 .schedule-shape-2 {
        left: 0;
        bottom: 70px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .schedule-area-2 .schedule-shape-2 {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .schedule-area-2 .schedule-shape-2 {
        display: none;
    }
}
@media (max-width: 767px) {
    .schedule-area-2 .schedule-shape-2 {
        display: none;
    }
}
.schedule-area-2 .schedule-shape-3 {
    position: absolute;
    left: 75px;
    top: 130px;
    z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .schedule-area-2 .schedule-shape-3 {
        left: -50px;
        top: -50px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .schedule-area-2 .schedule-shape-3 {
        left: -50px;
        top: -50px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .schedule-area-2 .schedule-shape-3 {
        left: -70px;
        top: -70px;
    }
}
@media (max-width: 767px) {
    .schedule-area-2 .schedule-shape-3 {
        left: -70px;
        top: -70px;
    }
}
.schedule-area-2 .schedule-shape-icon {
    font-size: 150px;
    position: absolute;
    left: 100px;
    bottom: 100px;
    color: #fff;
    opacity: 0.2;
    z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .schedule-area-2 .schedule-shape-icon {
        left: 350px;
        bottom: 0;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .schedule-area-2 .schedule-shape-icon {
        left: 30px;
        bottom: 0;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .schedule-area-2 .schedule-shape-icon {
        display: none;
    }
}
@media (max-width: 767px) {
    .schedule-area-2 .schedule-shape-icon {
        display: none;
    }
}
/* 12. Testimonial */
.testimonial-area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.testimonial-wrap {
    background: #fff;
    padding: 55px 50px;
    position: relative;
    margin-top: 35px;
}
.testimonial-wrap:before {
    content: "";
    position: absolute;
    left: 18px;
    top: 18px;
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    opacity: 0.4;
}
.testimonial-wrap .author-info {
    display: flex;
    position: relative;
    margin-bottom: 30px;
}
.testimonial-wrap .author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.testimonial-wrap .author-info .author-content {
    margin-left: 15px;
}
.testimonial-wrap .author-info .author-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}
.testimonial-wrap .author-info .author-content span {
    color: #67b241;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 14px;
}
.testimonial-wrap .testimonial-content p {
    font-size: 35px;
    line-height: 38px;
    font-family: "Teko", sans-serif;
    font-weight: 600;
    color: #29282d;
    margin-bottom: 25px;
}
@media (max-width: 767px) {
    .testimonial-wrap .testimonial-content p {
        font-size: 20px;
        line-height: 26px;
    }
}
.testimonial-wrap .testimonial-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.testimonial-wrap .testimonial-content ul li {
    display: inline-block;
    color: #FF7444;
}
.testimonial-wrap .testimonial-icon {
    position: absolute;
    right: 40px;
    top: -35px;
    width: 70px;
    height: 70px;
    line-height: 75px;
    color: #fff;
    font-size: 25px;
    border-radius: 50%;
    text-align: center;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.testimonial-slider {
    position: relative;
    padding-bottom: 122px;
}
.testimonial-slider .single-slide {
    padding: 0 18px 18px 0;
}
.testimonial-slider .swiper-button-prev {
    top: auto;
    left: 0;
    right: auto;
    bottom: 0;
    margin: 0;
    z-index: 99;
    height: 60px;
    width: 60px;
    font-size: 18px;
    color: #666565;
    background: #fff;
    border-radius: 50%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.testimonial-slider .swiper-button-prev:hover {
    color: #fff;
    border: 0;
}
.testimonial-slider .swiper-button-prev:hover:before {
    visibility: visible;
    opacity: 1;
}
.testimonial-slider .swiper-button-prev:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.testimonial-slider .swiper-button-next {
    top: auto;
    left: 70px;
    right: auto;
    bottom: 0;
    margin: 0;
    z-index: 99;
    height: 60px;
    width: 60px;
    font-size: 18px;
    color: #666565;
    background: #fff;
    border-radius: 50%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.testimonial-slider .swiper-button-next:hover {
    color: #fff;
    border: 0;
}
.testimonial-slider .swiper-button-next:hover:before {
    visibility: visible;
    opacity: 1;
}
.testimonial-slider .swiper-button-next:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.testimonial-slider-2 {
    position: relative;
}
.testimonial-slider-2 .swiper-button-prev {
    top: 0;
    left: auto;
    right: 70px;
    margin: 0;
    z-index: 99;
    height: 60px;
    width: 60px;
    font-size: 18px;
    color: #666565;
    background: #fff;
    border-radius: 50%;
    border: 3px solid #E2EDF8;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    transform: translateY(-140px);
}
@media (min-width: 768px) and (max-width: 991px) {
    .testimonial-slider-2 .swiper-button-prev {
        display: none;
    }
}
@media (max-width: 767px) {
    .testimonial-slider-2 .swiper-button-prev {
        display: none;
    }
}
.testimonial-slider-2 .swiper-button-prev:hover {
    color: #fff;
    border: 0;
}
.testimonial-slider-2 .swiper-button-prev:hover:before {
    visibility: visible;
    opacity: 1;
}
.testimonial-slider-2 .swiper-button-prev:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.testimonial-slider-2 .swiper-button-next {
    top: 0;
    left: auto;
    right: 0;
    margin: 0;
    z-index: 99;
    height: 60px;
    width: 60px;
    font-size: 18px;
    color: #666565;
    background: #fff;
    border-radius: 50%;
    border: 3px solid #E2EDF8;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    transform: translateY(-140px);
}
@media (min-width: 768px) and (max-width: 991px) {
    .testimonial-slider-2 .swiper-button-next {
        display: none;
    }
}
@media (max-width: 767px) {
    .testimonial-slider-2 .swiper-button-next {
        display: none;
    }
}
.testimonial-slider-2 .swiper-button-next:hover {
    color: #fff;
    border: 0;
}
.testimonial-slider-2 .swiper-button-next:hover:before {
    visibility: visible;
    opacity: 1;
}
.testimonial-slider-2 .swiper-button-next:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.testimonial-wrap-2 {
    padding-top: 60px;
    position: relative;
}
.testimonial-wrap-2:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #535353;
    top: 0px;
}
.testimonial-wrap-2:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #535353;
    top: 10px;
}
.testimonial-wrap-2 .testimonial-content p {
    color: #fff;
    font-size: 50px;
    line-height: 55px;
    font-weight: 600;
    font-family: "Teko", sans-serif;
}
@media (min-width: 768px) and (max-width: 991px) {
    .testimonial-wrap-2 .testimonial-content p {
        font-size: 35px;
        line-height: 45px;
    }
}
@media (max-width: 767px) {
    .testimonial-wrap-2 .testimonial-content p {
        font-size: 24px;
        line-height: 34px;
    }
}
.testimonial-wrap-2 .author-info {
    margin-top: 38px;
}
.testimonial-wrap-2 .author-info h4 {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-left: 100px;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .testimonial-wrap-2 .author-info h4 {
        font-size: 20px;
        padding-left: 60px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .testimonial-wrap-2 .author-info h4 {
        padding-left: 0;
    }
}
.testimonial-wrap-2 .author-info h4:before {
    content: "";
    background: #67b241;
    width: 60px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 767px) {
    .testimonial-wrap-2 .author-info h4:before {
        width: 40px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .testimonial-wrap-2 .author-info h4:before {
        display: none;
    }
}
.testimonial-wrap-2 .author-info h4 span {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #b2b2b2;
}
@media (max-width: 767px) {
    .testimonial-wrap-2 .author-info h4 span {
        font-size: 14px;
    }
}
.testimonial-thumbs-2 .swiper-slide-thumb-active img {
    border: 2px solid #fff;
    padding: 5px;
    transform: scale(1.2);
}
.testimonial-thumbs-2 .swiper-slide {
    padding: 10px;
}
.testimonial-thumbs-2 .swiper-slide img {
    border-radius: 50%;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .testimonial-thumbs-2 .swiper-slide img {
        width: 100px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .testimonial-thumbs-2 .swiper-slide img {
        width: 100px;
    }
}
@media (max-width: 767px) {
    .testimonial-thumbs-2 .swiper-slide img {
        width: 100px;
    }
}
.testimonial-area-2:before {
    background: #000;
}
.testimonial-area-2 .testimonial-icon {
    position: absolute;
    right: 0;
    bottom: -130px;
    height: 140px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .testimonial-area-2 .testimonial-icon {
        height: 90px;
        width: 120px;
    }
}
@media (max-width: 767px) {
    .testimonial-area-2 .testimonial-icon {
        height: 90px;
        width: 120px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .testimonial-area-2 .testimonial-icon {
        height: 70px;
        width: 100px;
    }
}
.testimonial-wrap-3 {
    background: #fff;
    padding: 55px 50px;
    position: relative;
    margin-top: 35px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .testimonial-wrap-3 {
        padding: 40px 30px;
    }
}
@media (max-width: 767px) {
    .testimonial-wrap-3 {
        padding: 40px 30px;
    }
}
.testimonial-wrap-3 .author-info {
    display: flex;
    position: relative;
    margin-bottom: 30px;
}
.testimonial-wrap-3 .author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.testimonial-wrap-3 .author-info .author-content {
    margin-left: 15px;
}
.testimonial-wrap-3 .author-info .author-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}
.testimonial-wrap-3 .author-info .author-content span {
    color: #67b241;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 14px;
}
.testimonial-wrap-3 .testimonial-content p {
    font-size: 18px;
    line-height: 30px;
    color: #8e8e8e;
    margin-bottom: 25px;
}
@media (max-width: 767px) {
    .testimonial-wrap-3 .testimonial-content p {
        font-size: 16px;
        line-height: 26px;
    }
}
.testimonial-wrap-3 .testimonial-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.testimonial-wrap-3 .testimonial-content ul li {
    display: inline-block;
    color: #FF7444;
}
.testimonial-wrap-3 .testimonial-icon {
    position: absolute;
    right: 40px;
    top: -35px;
    width: 70px;
    height: 70px;
    line-height: 75px;
    color: #fff;
    font-size: 25px;
    border-radius: 50%;
    text-align: center;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.testimonial-slider-3 {
    position: relative;
}
.testimonial-slider-3 .swiper-button-prev {
    left: -150px;
    margin: 0;
    z-index: 99;
    height: 60px;
    width: 60px;
    font-size: 18px;
    color: #666565;
    background: #fff;
    border-radius: 50%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    transform: translateY(-50%);
    outline: none;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .testimonial-slider-3 .swiper-button-prev {
        display: none;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .testimonial-slider-3 .swiper-button-prev {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .testimonial-slider-3 .swiper-button-prev {
        display: none;
    }
}
@media (max-width: 767px) {
    .testimonial-slider-3 .swiper-button-prev {
        display: none;
    }
}
.testimonial-slider-3 .swiper-button-prev:hover {
    color: #fff;
    border: 0;
}
.testimonial-slider-3 .swiper-button-prev:hover:before {
    visibility: visible;
    opacity: 1;
}
.testimonial-slider-3 .swiper-button-prev:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.testimonial-slider-3 .swiper-button-next {
    right: -150px;
    margin: 0;
    z-index: 99;
    height: 60px;
    width: 60px;
    font-size: 18px;
    color: #666565;
    background: #fff;
    border-radius: 50%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    transform: translateY(-50%);
    outline: none;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .testimonial-slider-3 .swiper-button-next {
        display: none;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .testimonial-slider-3 .swiper-button-next {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .testimonial-slider-3 .swiper-button-next {
        display: none;
    }
}
@media (max-width: 767px) {
    .testimonial-slider-3 .swiper-button-next {
        display: none;
    }
}
.testimonial-slider-3 .swiper-button-next:hover {
    color: #fff;
    border: 0;
}
.testimonial-slider-3 .swiper-button-next:hover:before {
    visibility: visible;
    opacity: 1;
}
.testimonial-slider-3 .swiper-button-next:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.testimonial-slider-3 .swiper-pagination-clickable {
    position: absolute;
    left: 50%;
    width: auto;
    bottom: -80px;
    z-index: 99;
    transform: translateX(-50%);
}
@media (max-width: 767px) {
    .testimonial-slider-3 .swiper-pagination-clickable {
        display: none;
    }
}
.testimonial-slider-3 .swiper-pagination-clickable .swiper-pagination-bullet {
    background: transparent;
    width: 25px;
    height: 25px;
    opacity: 1;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
    display: inline-block;
    outline: none;
    margin: 0 3px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.testimonial-slider-3 .swiper-pagination-clickable .swiper-pagination-bullet:before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    background: #67b241;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.testimonial-slider-3 .swiper-pagination-clickable .swiper-pagination-bullet-active {
    border-color: #67b241;
}
/* 19. Product */
.product-wrap:hover .product-img:before {
    transform: scale(1);
    visibility: visible;
    opacity: 0.8;
}
.product-wrap:hover .product-img .product-card {
    left: 60px;
    visibility: visible;
    opacity: 1;
}
.product-wrap:hover .product-img .cart-btn {
    bottom: 50px;
    visibility: visible;
    opacity: 1;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .product-wrap:hover .product-img .cart-btn {
        bottom: 20px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .product-wrap:hover .product-img .cart-btn {
        bottom: 30px;
    }
}
@media (max-width: 767px) {
    .product-wrap:hover .product-img .cart-btn {
        bottom: 30px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .product-wrap:hover .product-img .cart-btn {
        bottom: 20px;
    }
}
.product-wrap .product-img {
    position: relative;
    z-index: 1;
}
.product-wrap .product-img:before {
    content: "";
    top: 30px;
    left: 30px;
    right: 0;
    bottom: 0;
    position: absolute;
    background: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    z-index: 2;
    transform: scale(0.9);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.product-wrap .product-img img {
    width: 100%;
}
.product-wrap .product-img .product-badge {
    position: absolute;
    top: 42px;
    right: 24px;
    width: 90px;
    height: 90px;
    line-height: 95px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    font-family: "Teko", sans-serif;
    border-radius: 50%;
    text-align: center;
    background: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    z-index: 1;
}
.product-wrap .product-img .product-card {
    position: absolute;
    left: 50px;
    top: 70px;
    z-index: 3;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .product-wrap .product-img .product-card {
        top: 45px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .product-wrap .product-img .product-card {
        top: 45px;
    }
}
@media (max-width: 767px) {
    .product-wrap .product-img .product-card {
        top: 45px;
    }
}
.product-wrap .product-img .product-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.product-wrap .product-img .product-card ul li {
    display: block;
    margin-bottom: 10px;
}
.product-wrap .product-img .product-card ul li a {
    display: block;
    font-size: 17px;
    color: #666565;
    width: 50px;
    height: 50px;
    line-height: 52px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
}
.product-wrap .product-img .product-card ul li a:hover {
    background: #1e2c8a;
    color: #fff;
}
.product-wrap .product-img .cart-btn {
    position: absolute;
    bottom: 40px;
    left: 30px;
    right: 0;
    text-align: center;
    z-index: 3;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.product-wrap .product-img .cart-btn .btn {
    padding: 20px 30px;
    text-transform: uppercase;
    background: #1e2c8a;
}
.product-wrap .product-content {
    text-align: center;
    padding-top: 35px;
}
.product-wrap .product-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 5px;
}
.product-wrap .product-content h3 a {
    color: #29282d;
}
.product-wrap .product-content h3 a:hover {
    color: #67b241;
}
.product-wrap .product-content .price {
    font-size: 20px;
    color: #67b241;
    font-weight: 700;
}
.product-wrap .product-content.text-white h3 a {
    color: #fff;
}
.product-wrap .product-content.text-white h3 a:hover {
    color: #67b241;
}
.product-area-2 {
    position: relative;
}
.product-area-2 .product-shape-1 {
    position: absolute;
    top: 150px;
    right: 100px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .product-area-2 .product-shape-1 {
        top: 123px;
        right: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .product-area-2 .product-shape-1 {
        top: 123px;
        right: 30px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .product-area-2 .product-shape-1 {
        top: 123px;
        right: 30px;
    }
}
@media (max-width: 767px) {
    .product-area-2 .product-shape-1 {
        display: none;
    }
}
.product-area-2 .product-icon-1 {
    position: absolute;
    bottom: 100px;
    left: 115px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .product-area-2 .product-icon-1 {
        bottom: 20px;
        left: 26px;
        width: 80px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .product-area-2 .product-icon-1 {
        bottom: 20px;
        left: 26px;
        width: 80px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .product-area-2 .product-icon-1 {
        bottom: 20px;
        left: 26px;
        width: 80px;
    }
}
@media (max-width: 767px) {
    .product-area-2 .product-icon-1 {
        display: none;
    }
}
.shop-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 140px;
    padding-bottom: 120px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .shop-banner .shop-banner-content {
        padding-left: 50px;
    }
}
@media (max-width: 767px) {
    .shop-banner .shop-banner-content {
        padding-left: 30px;
        padding-right: 140px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .shop-banner .shop-banner-content {
        padding-left: 15px;
        padding-right: 70px;
    }
}
.shop-banner .shop-banner-content .shop-banner-title {
    position: relative;
    z-index: 1;
}
.shop-banner .shop-banner-content .shop-banner-title h3 {
    font-size: 50px;
    line-height: 50px;
    font-weight: 600;
    color: #29282d;
    padding: 30px 0 50px;
    margin: 0;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .shop-banner .shop-banner-content .shop-banner-title h3 {
        font-size: 40px;
        line-height: 40px;
    }
}
@media (max-width: 767px) {
    .shop-banner .shop-banner-content .shop-banner-title h3 {
        padding-top: 0;
    }
}
.shop-banner .shop-banner-content .shop-banner-title span {
    font-size: 250px;
    line-height: 50px;
    font-weight: 600;
    font-family: "Teko", sans-serif;
    -webkit-text-stroke-width: 2px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #29282d;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .shop-banner .shop-banner-content .shop-banner-title span {
        font-size: 200px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .shop-banner .shop-banner-content .shop-banner-title span {
        font-size: 200px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .shop-banner .shop-banner-content .shop-banner-title span {
        font-size: 150px;
    }
}
@media (max-width: 767px) {
    .shop-banner .shop-banner-content .shop-banner-title span {
        display: none;
    }
}
.shop-pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.shop-pagination ul li {
    display: inline-block;
}
@media (min-width: 320px) and (max-width: 425px) {
    .shop-pagination ul li {
        margin-bottom: 15px;
    }
}
.shop-pagination ul li .page-numbers {
    height: 60px;
    width: 60px;
    background: #f0f4f9;
    color: #29282d;
    font-size: 20px;
    font-weight: 600;
    line-height: 60px;
    font-family: "Teko", sans-serif;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    margin-right: 10px;
    border-radius: 2px;
    border: 3px solid #cecece;
}
.shop-pagination ul li .page-numbers:hover {
    background: #67b241;
    border-color: #67b241;
    color: #fff;
}
.shop-pagination ul li .page-numbers.current {
    background: #67b241;
    border-color: #67b241;
    color: #fff;
}
.product-tab-nav {
    display: flex;
    flex-wrap: wrap;
}
.product-tab-nav a {
    display: block;
    width: 100%;
    margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .product-tab-nav a {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
        margin-right: 30px;
    }
}
@media (max-width: 767px) {
    .product-tab-nav a {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
        margin-right: 10px;
    }
}
.product-tab-nav a:last-child {
    margin-right: 0;
}
.product-tab-nav a img {
    width: 170px;
    height: 190px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .product-tab-nav a img {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .product-tab-nav a img {
        width: 100%;
    }
}
.product-tab-content .tab-pane img {
    width: 100%;
}
.product-details {
    padding-left: 30px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .product-details {
        padding-left: 0;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .product-details {
        padding-left: 0;
    }
}
@media (max-width: 767px) {
    .product-details {
        padding-left: 0;
    }
}
.product-details h3 {
    font-size: 50px;
    line-height: 50px;
    color: #29282D;
    font-weight: 600;
    margin-bottom: 10px;
}
.product-details .product-rating {
    margin-bottom: 20px;
}
.product-details .product-rating i {
    font-size: 14px;
    color: #ff8b00;
    margin-right: 5px;
}
.product-details .price {
    color: #67b241;
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    font-family: "Teko", sans-serif;
    display: block;
    margin-bottom: 16px;
}
.product-details p {
    color: #8e8e8e;
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 35px;
}
.product-details .product-action-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.product-details .product-action-box .product-quantity {
    margin-right: 15px;
}
@media (min-width: 320px) and (max-width: 425px) {
    .product-details .product-action-box .product-quantity {
        margin-right: 10px;
    }
}
.product-details .product-action-box .product-quantity .quantity {
    position: relative;
    display: inline-block;
}
.product-details .product-action-box .product-quantity .quantity input {
    width: 130px;
    font-size: 14px;
    color: #29282d;
    padding: 0 40px;
    border: 1px solid #ddd;
    text-align: center;
    outline: none;
    height: 40px;
}
@media (min-width: 320px) and (max-width: 425px) {
    .product-details .product-action-box .product-quantity .quantity input {
        width: 120px;
    }
}
.product-details .product-action-box .product-quantity .quantity .minus {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 100%;
    background: #ddd;
    line-height: 40px;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.product-details .product-action-box .product-quantity .quantity .minus:hover {
    background: #67b241;
    color: #fff;
}
.product-details .product-action-box .product-quantity .quantity .plus {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
    background: #ddd;
    line-height: 40px;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.product-details .product-action-box .product-quantity .quantity .plus:hover {
    background: #67b241;
    color: #fff;
}
.product-details .product-action-box .add-to-cart .btn {
    padding: 15px 26px;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 10px;
}
.product-details .product-share a {
    display: inline-block;
    font-size: 14px;
    color: #a9a9a9;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #cfcfcf;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    margin-right: 10px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.product-details .product-share a:hover {
    color: #fff;
    border: 0;
}
.product-details .product-share a:hover:before {
    visibility: visible;
    opacity: 1;
}
.product-details .product-share a:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.review-tab-wrapper .review-tab {
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}
.review-tab-wrapper .review-tab a {
    font-size: 20px;
    line-height: 28px;
    color: #29282d;
    font-weight: 600;
    padding: 0 24px 30px;
    position: relative;
    z-index: 2;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .review-tab-wrapper .review-tab a {
        font-size: 22px;
        padding: 0 15px 30px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .review-tab-wrapper .review-tab a {
        font-size: 18px;
        padding: 0 8px 10px;
        margin-top: 10px;
    }
}
@media (max-width: 767px) {
    .review-tab-wrapper .review-tab a {
        font-size: 18px;
        padding: 0 8px 10px;
        margin-top: 10px;
    }
}
.review-tab-wrapper .review-tab a:hover {
    color: #67b241;
}
.review-tab-wrapper .review-tab a:hover:before {
    width: 100%;
}
.review-tab-wrapper .review-tab a:before {
    content: "";
    width: 0;
    height: 2px;
    left: 0;
    bottom: -2px;
    position: absolute;
    background: #67b241;
    z-index: 2;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.review-tab-wrapper .review-tab a.active {
    color: #67b241;
}
.review-tab-wrapper .review-tab a.active:before {
    width: 100%;
}
.review-tab-wrapper .review-tab-content .tab-pane p {
    font-size: 16px;
    line-height: 28px;
}
/* 17. Pricing */
.pricing-area .section-title-2 h3 {
    width: 600px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .pricing-area .section-title-2 h3 {
        width: 480px;
    }
}
@media (max-width: 767px) {
    .pricing-area .section-title-2 h3 {
        width: 300px;
    }
}
.pricing-wrap {
    position: relative;
    border-top: 5px solid #67b241;
    background: #fff;
    text-align: center;
    padding: 55px 45px;
    z-index: 1;
}
.pricing-wrap .shape {
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    text-align: center;
}
.pricing-wrap h3 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
    color: #29282d;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.pricing-wrap p {
    color: #8e8e8e;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}
.pricing-wrap .price {
    color: #67b241;
    font-size: 50px;
    font-weight: 600;
    font-family: "Teko", sans-serif;
    line-height: 50px;
    padding-top: 29px;
    display: block;
}
.pricing-wrap .order-btn {
    font-size: 15px;
    font-weight: 700;
    color: #858585;
    text-transform: uppercase;
    border: 2px solid #dfdfdf;
    padding: 18px 28px;
    display: inline-block;
    margin-top: 22px;
}
.pricing-wrap .order-btn i {
    visibility: hidden;
    opacity: 0;
    width: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: #fff;
}
.pricing-wrap .order-btn:hover {
    background: #67b241;
    border-color: #67b241;
    color: #fff;
}
.pricing-wrap .order-btn:hover i {
    visibility: visible;
    opacity: 1;
    width: 15px;
}
.pricing-wrap .popular-badge {
    position: absolute;
    background: #67b241;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 12px;
    left: 0;
    top: -55px;
    color: #fff;
    font-size: 24px;
    font-family: "Teko", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.pricing-wrap .pricing-list {
    padding: 20px;
    position: relative;
    text-align: left;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .pricing-wrap .pricing-list {
        padding: 60px 40px;
    }
}
@media (max-width: 767px) {
    .pricing-wrap .pricing-list {
        padding: 40px 30px;
    }
}
.pricing-wrap .pricing-list:before {
    content: "";
    right: 0;
    top: -50px;
    bottom: -50px;
    width: 1px;
    background: #E2EDF8;
    position: absolute;
}
@media (min-width: 768px) and (max-width: 991px) {
    .pricing-wrap .pricing-list:before {
        right: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        height: 1px;
    }
}
@media (max-width: 767px) {
    .pricing-wrap-2 .pricing-list:before {
        right: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        height: 1px;
    }
}
.pricing-wrap .pricing-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pricing-wrap .pricing-list ul li {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}
.pricing-wrap .pricing-list ul li:last-child {
    margin-bottom: 0;
}
.pricing-wrap .pricing-list ul li i {
    color: #67b241;
    margin-right: 10px;
}
.pricing-wrap-2 {
    border: 1px solid #E2EDF8;
    overflow: hidden;
}
.pricing-wrap-2 .pricing-title {
    padding: 60px 50px;
    position: relative;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .pricing-wrap-2 .pricing-title {
        padding: 60px 40px;
    }
}
@media (max-width: 767px) {
    .pricing-wrap-2 .pricing-title {
        padding: 40px 30px;
    }
}
.pricing-wrap-2 .pricing-title:before {
    content: "";
    right: 0;
    top: -50px;
    bottom: -50px;
    width: 1px;
    background: #E2EDF8;
    position: absolute;
}
@media (min-width: 768px) and (max-width: 991px) {
    .pricing-wrap-2 .pricing-title:before {
        right: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        height: 1px;
    }
}
@media (max-width: 767px) {
    .pricing-wrap-2 .pricing-title:before {
        right: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        height: 1px;
    }
}
.pricing-wrap-2 .pricing-title h3 {
    font-size: 50px;
    line-height: 50px;
    font-weight: 600;
    color: #29282d;
    padding-top: 40px;
    position: relative;
}
.pricing-wrap-2 .pricing-title h3:before {
    content: "";
    width: 50px;
    height: 4px;
    background: #67b241;
    position: absolute;
    left: 0;
    top: 0;
}
.pricing-wrap-2 .pricing-title span {
    font-size: 80px;
    line-height: 80px;
    display: inline-block;
    color: #67b241;
    font-weight: 600;
    font-family: "Teko", sans-serif;
}
.pricing-wrap-2 .pricing-title span sup {
    font-size: 30px;
    line-height: 30px;
    top: -36px;
}
.pricing-wrap-2 .pricing-list {
    padding: 60px 50px;
    position: relative;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .pricing-wrap-2 .pricing-list {
        padding: 60px 40px;
    }
}
@media (max-width: 767px) {
    .pricing-wrap-2 .pricing-list {
        padding: 40px 30px;
    }
}
.pricing-wrap-2 .pricing-list:before {
    content: "";
    right: 0;
    top: -50px;
    bottom: -50px;
    width: 1px;
    background: #E2EDF8;
    position: absolute;
}
@media (min-width: 768px) and (max-width: 991px) {
    .pricing-wrap-2 .pricing-list:before {
        right: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        height: 1px;
    }
}
@media (max-width: 767px) {
    .pricing-wrap-2 .pricing-list:before {
        right: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        height: 1px;
    }
}
.pricing-wrap-2 .pricing-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pricing-wrap-2 .pricing-list ul li {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}
.pricing-wrap-2 .pricing-list ul li:last-child {
    margin-bottom: 0;
}
.pricing-wrap-2 .pricing-list ul li i {
    color: #67b241;
    margin-right: 10px;
}
.pricing-wrap-2 .pricing-content {
    padding: 60px 50px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .pricing-wrap-2 .pricing-content {
        padding: 60px 40px;
    }
}
@media (max-width: 767px) {
    .pricing-wrap-2 .pricing-content {
        padding: 40px 30px;
    }
}
.pricing-wrap-2 .pricing-content p {
    font-size: 16px;
    line-height: 28px;
    color: #8e8e8e;
    margin-bottom: 0;
}
.pricing-wrap-2 .pricing-content .btn {
    text-transform: uppercase;
}
.pricing-wrap-2.active {
    border: 0;
    overflow: hidden;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.pricing-wrap-2.active .pricing-title:before {
    background: #dfdfdf;
}
.pricing-wrap-2.active .pricing-title h3 {
    color: #fff;
}
.pricing-wrap-2.active .pricing-title h3:before {
    background: #fff;
}
.pricing-wrap-2.active .pricing-title span {
    color: #fff;
}
.pricing-wrap-2.active .pricing-list:before {
    background: #dfdfdf;
}
.pricing-wrap-2.active .pricing-list ul li {
    color: #fff;
}
.pricing-wrap-2.active .pricing-list ul li i {
    color: #fff;
}
.pricing-wrap-2.active .pricing-content p {
    color: #fff;
}
.pricing-wrap-2.active .pricing-content .btn {
    background: #1e2c8a;
}
/* 5. Blog */
.blog-wrap {
    padding: 60px 32px;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
@media (min-width: 320px) and (max-width: 425px) {
    .blog-wrap {
        padding: 50px 25px;
    }
}
.blog-wrap:hover:before {
    opacity: 0;
}
.blog-wrap:before {
    content: "";
    background-image: url(../img/bg/blog-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.blog-wrap:after {
    content: "";
    background: #101010;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.6;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.blog-wrap .blog-author {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.blog-wrap .blog-author .author-thumb {
    margin-right: 30px;
}
.blog-wrap .blog-author .author-thumb img {
    width: 70px;
    height: 70px;
    border-radius: 15px 0 15px 15px;
}
.blog-wrap .blog-author .author-content {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.blog-wrap .blog-author .author-content h4 {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
    .blog-wrap .blog-author .author-content h4 {
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    .blog-wrap .blog-author .author-content h4 {
        font-size: 26px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .blog-wrap .blog-author .author-content h4 {
        font-size: 22px;
    }
}
.blog-wrap .blog-author .author-content span {
    color: #fff;
    font-size: 16px;
}
.blog-wrap .blog-meta {
    margin-bottom: 20px;
}
.blog-wrap .blog-meta span {
    margin-right: 20px;
    font-size: 16px;
    color: #fff;
}
@media (min-width: 768px) and (max-width: 991px) {
    .blog-wrap .blog-meta span {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .blog-wrap .blog-meta span {
        font-size: 14px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .blog-wrap .blog-meta span {
        font-size: 13px;
    }
}
.blog-wrap .blog-meta span:last-child {
    margin-right: 0;
}
.blog-wrap .blog-meta span i {
    margin-right: 5px;
}
.blog-wrap .blog-content h3 {
    font-size: 28px;
    line-height: 32px;
    font-weight: 600;
}
@media (min-width: 768px) and (max-width: 991px) {
    .blog-wrap .blog-content h3 {
        font-size: 24px;
        line-height: 30px;
    }
}
@media (max-width: 767px) {
    .blog-wrap .blog-content h3 {
        font-size: 24px;
        line-height: 30px;
    }
}
.blog-wrap .blog-content h3 a {
    color: #fff;
}
.blog-wrap .blog-content h3 a:hover {
    color: #67b241;
}
.blog-wrap .blog-content .read-more {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.blog-wrap .blog-content .read-more i {
    margin-left: 5px;
}
.blog-wrap .blog-content .read-more:hover {
    color: #67b241;
}
.blog-wrap.blog-white {
    border: 2px solid #ececec;
}
.blog-wrap.blog-white:hover .blog-author .author-content h4 {
    color: #fff;
}
.blog-wrap.blog-white:hover .blog-author .author-content span {
    color: #fff;
}
.blog-wrap.blog-white:hover .blog-meta span {
    color: #fff;
}
.blog-wrap.blog-white:hover .blog-content h3 a {
    color: #fff;
}
.blog-wrap.blog-white:hover .blog-content h3 a:hover {
    color: #67b241;
}
.blog-wrap.blog-white:hover .blog-content .read-more {
    color: #fff;
}
.blog-wrap.blog-white:before {
    background: #fff;
}
.blog-wrap.blog-white .blog-author .author-content h4 {
    color: #29282d;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.blog-wrap.blog-white .blog-author .author-content span {
    color: #949494;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.blog-wrap.blog-white .blog-meta span {
    color: #949494;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.blog-wrap.blog-white .blog-content h3 a {
    color: #29282d;
}
.blog-wrap.blog-white .blog-content h3 a:hover {
    color: #67b241;
}
.blog-wrap.blog-white .blog-content .read-more {
    color: #67b241;
}
.blog-wrap.blog-white .blog-content .read-more:hover {
    color: #67b241;
}
.blog-area {
    position: relative;
    overflow: hidden;
}
.blog-area .blog-shape-1 {
    position: absolute;
    left: 0;
    bottom: 0;
}
.blog-area .blog-icon-1 {
    position: absolute;
    right: 215px;
    top: 152px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .blog-area .blog-icon-1 {
        right: 150px;
        top: 100px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .blog-area .blog-icon-1 {
        right: 150px;
        top: 100px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .blog-area .blog-icon-1 {
        display: none;
    }
}
@media (max-width: 767px) {
    .blog-area .blog-icon-1 {
        display: none;
    }
}
.blog-wrap-2:hover .blog-thumb img {
    transform: scale(1.05);
}
.blog-wrap-2 .blog-thumb {
    overflow: hidden;
}
.blog-wrap-2 .blog-thumb img {
    width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.blog-wrap-2 .video-thumb {
    position: relative;
}
.blog-wrap-2 .video-thumb:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #29282D;
    z-index: 1;
    opacity: 0.5;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.blog-wrap-2 .video-thumb .play-btn {
    position: absolute;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    color: #67b241;
    border-radius: 50%;
    background: #fff;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}
.blog-wrap-2 .blog-meta {
    margin-bottom: 18px;
}
.blog-wrap-2 .blog-meta span {
    margin-right: 20px;
    font-size: 16px;
    color: #949494;
}
@media (min-width: 768px) and (max-width: 991px) {
    .blog-wrap-2 .blog-meta span {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .blog-wrap-2 .blog-meta span {
        font-size: 16px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .blog-wrap-2 .blog-meta span {
        font-size: 14px;
    }
}
.blog-wrap-2 .blog-meta span:last-child {
    margin-right: 0;
}
.blog-wrap-2 .blog-meta span i {
    margin-right: 5px;
    color: #67b241;
}
.blog-wrap-2 .blog-meta.text-white {
    margin-bottom: 18px;
}
.blog-wrap-2 .blog-meta.text-white span {
    color: #fff;
}
.blog-wrap-2 .blog-meta.text-white span i {
    color: #fff;
}
.blog-wrap-2 .blog-content h3 {
    font-size: 28px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
    .blog-wrap-2 .blog-content h3 {
        font-size: 24px;
        line-height: 30px;
    }
}
@media (max-width: 767px) {
    .blog-wrap-2 .blog-content h3 {
        font-size: 24px;
        line-height: 30px;
    }
}
.blog-wrap-2 .blog-content h3 a {
    color: #29282d;
}
.blog-wrap-2 .blog-content h3 a:hover {
    color: #67b241;
}
.blog-wrap-2 .blog-content .read-more {
    font-size: 14px;
    font-weight: 700;
    color: #67b241;
    text-transform: uppercase;
    margin-top: 26px;
    display: inline-block;
}
.blog-wrap-2 .blog-content .read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s linear 0s;
}
.blog-wrap-2 .blog-content .read-more:hover i {
    margin-left: 8px;
}
.blog-wrap-2 .blog-content.text-white h3 a {
    color: #fff;
}
.blog-wrap-2 .blog-content.text-white h3 a:hover {
    color: #67b241;
}
.blog-wrap-2 .blog-content.text-white .read-more {
    color: #c2c2c2;
}
.blog-wrap-2 .blog-content.text-white .read-more:hover {
    color: #67b241;
}
.blog-wrap-2 .blog-content.text-white-2 h3 a {
    color: #fff;
}
.blog-wrap-2 .blog-content.text-white-2 h3 a:hover {
    color: #fff;
}
.blog-wrap-2 .blog-content.text-white-2 p {
    color: #fff;
    margin-bottom: 0;
    margin-top: 15px;
}
.blog-wrap-2 .blog-content.text-white-2 .read-more {
    color: #fff;
}
.blog-wrap-2 .blog-content.text-white-2 .read-more:hover {
    color: #fff;
}
.blog-wrap-2.blog-wrap-spacing {
    padding: 35px 40px;
}
.blog-pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.blog-pagination ul li {
    display: inline-block;
}
@media (min-width: 320px) and (max-width: 425px) {
    .blog-pagination ul li {
        margin-bottom: 15px;
    }
}
.blog-pagination ul li .page-numbers {
    height: 60px;
    width: 60px;
    background: #f0f4f9;
    color: #29282d;
    font-size: 20px;
    font-weight: 600;
    line-height: 60px;
    font-family: "Teko", sans-serif;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    margin-right: 10px;
    border-radius: 2px;
    border: 3px solid #cecece;
}
.blog-pagination ul li .page-numbers:hover {
    background: #67b241;
    border-color: #67b241;
    color: #fff;
}
.blog-pagination ul li .page-numbers.current {
    background: #67b241;
    border-color: #67b241;
    color: #fff;
}
.blog-standard-area {
    position: relative;
    z-index: 1;
}
.blog-standard-area:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    z-index: -1;
    background: #f7f7f7;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .blog-standard-area:before {
        width: 34%;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .blog-standard-area:before {
        width: 34%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .blog-standard-area:before {
        display: none;
    }
}
@media (max-width: 767px) {
    .blog-standard-area:before {
        display: none;
    }
}
.blog-wrap-3:hover .blog-thumb img {
    transform: scale(1.05);
}
.blog-wrap-3 .blog-thumb {
    overflow: hidden;
}
.blog-wrap-3 .blog-thumb img {
    width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.blog-wrap-3 .video-thumb {
    position: relative;
}
.blog-wrap-3 .video-thumb:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #29282D;
    z-index: 1;
    opacity: 0.5;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.blog-wrap-3 .video-thumb .play-btn {
    position: absolute;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    color: #67b241;
    border-radius: 50%;
    background: #fff;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}
.blog-wrap-3 .blog-meta {
    margin-bottom: 18px;
}
.blog-wrap-3 .blog-meta span {
    margin-right: 20px;
    font-size: 16px;
    color: #949494;
}
@media (min-width: 768px) and (max-width: 991px) {
    .blog-wrap-3 .blog-meta span {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .blog-wrap-3 .blog-meta span {
        font-size: 16px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .blog-wrap-3 .blog-meta span {
        font-size: 14px;
    }
}
.blog-wrap-3 .blog-meta span:last-child {
    margin-right: 0;
}
.blog-wrap-3 .blog-meta span i {
    margin-right: 5px;
    color: #67b241;
}
.blog-wrap-3 .blog-meta.text-white {
    margin-bottom: 18px;
}
.blog-wrap-3 .blog-meta.text-white span {
    color: #fff;
}
.blog-wrap-3 .blog-meta.text-white span i {
    color: #fff;
}
.blog-wrap-3 .blog-content h3 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 22px;
    padding-left: 35px;
    position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
    .blog-wrap-3 .blog-content h3 {
        font-size: 24px;
        line-height: 30px;
    }
}
@media (max-width: 767px) {
    .blog-wrap-3 .blog-content h3 {
        font-size: 24px;
        line-height: 30px;
    }
}
.blog-wrap-3 .blog-content h3:before {
    content: "";
    width: 4px;
    height: 74px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.blog-wrap-3 .blog-content h3 a {
    color: #29282d;
}
.blog-wrap-3 .blog-content h3 a:hover {
    color: #67b241;
}
.blog-wrap-3 .blog-content p {
    font-size: 16px;
    line-height: 28px;
    color: #8e8e8e;
    margin-bottom: 0;
}
.blog-wrap-3 .blog-content .read-more {
    font-size: 14px;
    font-weight: 700;
    color: #67b241;
    text-transform: uppercase;
    margin-top: 28px;
    display: inline-block;
}
.blog-wrap-3 .blog-content .read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s linear 0s;
}
.blog-wrap-3 .blog-content .read-more:hover i {
    margin-left: 8px;
}
.blog-wrap-3 .quote-content {
    position: relative;
    z-index: 1;
}
.blog-wrap-3 .quote-content:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 150px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    color: #fff;
    opacity: 0.1;
    z-index: -1;
    line-height: 100px;
}
.blog-wrap-3 .quote-content h3 {
    margin-top: 20px;
    margin-bottom: 0;
}
.blog-wrap-3 .blog-content.text-white h3:before {
    background: #fff;
}
.blog-wrap-3 .blog-content.text-white h3 a {
    color: #fff;
}
.blog-wrap-3 .blog-content.text-white h3 a:hover {
    color: #67b241;
}
.blog-wrap-3 .blog-content.text-white .read-more {
    color: #c2c2c2;
}
.blog-wrap-3 .blog-content.text-white .read-more:hover {
    color: #67b241;
}
.blog-wrap-3 .blog-content.text-white h3 a {
    color: #fff;
}
.blog-wrap-3 .blog-content.text-white h3 a:hover {
    color: #fff;
}
.blog-wrap-3 .blog-content.text-white p {
    color: #fff;
    margin-bottom: 0;
    margin-top: 15px;
}
.blog-wrap-3 .blog-content.text-white .read-more {
    color: #fff;
}
.blog-wrap-3 .blog-content.text-white .read-more:hover {
    color: #fff;
}
.blog-wrap-3.blog-wrap-spacing {
    padding: 35px 30px;
}
.blog-standard-posts {
    padding-right: 60px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .blog-standard-posts {
        padding-right: 15px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .blog-standard-posts {
        padding-right: 0;
    }
}
@media (max-width: 767px) {
    .blog-standard-posts {
        padding-right: 0;
    }
}
.blog-standard-details-area {
    position: relative;
    z-index: 1;
}
.blog-standard-details-area:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    z-index: -1;
    background: #f7f7f7;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .blog-standard-details-area:before {
        width: 34%;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .blog-standard-details-area:before {
        width: 34%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .blog-standard-details-area:before {
        display: none;
    }
}
@media (max-width: 767px) {
    .blog-standard-details-area:before {
        display: none;
    }
}
.blog-standard-details-posts {
    padding-right: 60px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .blog-standard-details-posts {
        padding-right: 15px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .blog-standard-details-posts {
        padding-right: 0;
    }
}
@media (max-width: 767px) {
    .blog-standard-details-posts {
        padding-right: 0;
    }
}
.blog-details-wrap .blog-thumb {
    overflow: hidden;
}
.blog-details-wrap .blog-thumb img {
    width: 100%;
}
.blog-details-wrap .blog-meta {
    margin-bottom: 18px;
}
.blog-details-wrap .blog-meta span {
    margin-right: 20px;
    font-size: 16px;
    color: #949494;
}
@media (min-width: 768px) and (max-width: 991px) {
    .blog-details-wrap .blog-meta span {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .blog-details-wrap .blog-meta span {
        font-size: 16px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .blog-details-wrap .blog-meta span {
        font-size: 14px;
    }
}
.blog-details-wrap .blog-meta span:last-child {
    margin-right: 0;
}
.blog-details-wrap .blog-meta span i {
    margin-right: 5px;
    color: #67b241;
}
.blog-details-wrap .blog-title h3 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 22px;
    padding-left: 35px;
    color: #29282d;
    position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
    .blog-details-wrap .blog-title h3 {
        font-size: 24px;
        line-height: 30px;
    }
}
@media (max-width: 767px) {
    .blog-details-wrap .blog-title h3 {
        font-size: 24px;
        line-height: 30px;
    }
}
.blog-details-wrap .blog-title h3:before {
    content: "";
    width: 4px;
    height: 74px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.blog-details-wrap .blog-content h1, .blog-details-wrap .blog-content h2, .blog-details-wrap .blog-content h3, .blog-details-wrap .blog-content h4, .blog-details-wrap .blog-content h5, .blog-details-wrap .blog-content h6 {
    font-weight: 600;
}
.blog-details-wrap .blog-content p {
    font-size: 16px;
    line-height: 28px;
    color: #8e8e8e;
    margin-bottom: 0;
}
.blog-details-wrap .author-quote {
    padding: 35px 30px;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.blog-details-wrap .author-quote h4 {
    font-size: 24px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 600;
}
.blog-details-wrap .author-quote .author-name {
    padding-left: 50px;
    position: relative;
    margin-top: 20px;
}
.blog-details-wrap .author-quote .author-name:before {
    content: "";
    height: 3px;
    width: 40px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.blog-details-wrap .author-quote .author-name h4 {
    font-size: 24px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 600;
}
.blog-details-wrap .blog-tag {
    margin: 30px 0;
}
@media (max-width: 767px) {
    .blog-details-wrap .blog-tag {
        margin: 15px 0;
        text-align: center;
    }
}
.blog-details-wrap .blog-tag h4 {
    display: inline-block;
    font-size: 18px;
    color: #29282d;
    margin-bottom: 0;
}
.blog-details-wrap .blog-tag ul {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}
.blog-details-wrap .blog-tag ul li {
    display: inline-block;
    margin-left: 5px;
}
.blog-details-wrap .blog-tag ul li:after {
    content: ",";
}
.blog-details-wrap .blog-tag ul li:last-child:after {
    content: "";
}
.blog-details-wrap .blog-tag ul li a {
    font-size: 15px;
    color: #8e8e8e;
}
.blog-details-wrap .blog-tag ul li a:hover {
    color: #67b241;
}
.blog-details-wrap .blog-share {
    margin: 30px 0;
    text-align: right;
}
@media (max-width: 767px) {
    .blog-details-wrap .blog-share {
        margin: 15px 0;
        text-align: center;
    }
}
.blog-details-wrap .blog-share h4 {
    display: inline-block;
    font-size: 18px;
    color: #29282d;
    margin-bottom: 0;
}
.blog-details-wrap .blog-share ul {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}
.blog-details-wrap .blog-share ul li {
    display: inline-block;
    margin-left: 10px;
}
.blog-details-wrap .blog-share ul li a {
    font-size: 15px;
    color: #8e8e8e;
}
.blog-details-wrap .blog-share ul li a:hover {
    color: #67b241;
}
.blog-details-wrap .blog-author {
    background: #f7f7f7;
    padding: 55px 60px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .blog-details-wrap .blog-author {
        padding: 30px 15px;
    }
}
@media (max-width: 767px) {
    .blog-details-wrap .blog-author {
        padding: 40px 30px;
    }
}
.blog-details-wrap .blog-author .author-thumb {
    position: relative;
    width: 130px;
    height: 130px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    overflow: hidden;
    z-index: 55;
}
.blog-details-wrap .blog-author .author-thumb img {
    width: 100%;
    border-radius: 50%;
}
@media (min-width: 768px) and (max-width: 991px) {
    .blog-details-wrap .blog-author .author-details {
        margin-top: 30px;
        text-align: center;
    }
}
@media (max-width: 767px) {
    .blog-details-wrap .blog-author .author-details {
        margin-top: 30px;
        text-align: center;
    }
}
.blog-details-wrap .blog-author .author-details h4 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: #29282d;
    margin-bottom: 10px;
}
.blog-details-wrap .blog-author .author-details p {
    font-size: 16px;
    line-height: 28px;
    color: #7c7c7c;
    margin-bottom: 0;
}
.blog-details-wrap .blog-author .author-details ul {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}
.blog-details-wrap .blog-author .author-details ul li {
    display: inline-block;
    margin-right: 15px;
}
.blog-details-wrap .blog-author .author-details ul li a {
    font-size: 15px;
    color: #8e8e8e;
}
.blog-details-wrap .blog-author .author-details ul li a:hover {
    color: #67b241;
}
.blog-details-wrap .related-news h3 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
    color: #29282d;
}
.blog-details-wrap .related-news .related-news-wrap {
    background: #f7f7f7;
    padding: 35px;
    padding-right: 25px;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .blog-details-wrap .related-news .related-news-wrap {
        padding: 25px 14px;
    }
}
.blog-details-wrap .related-news .related-news-wrap:hover:before {
    visibility: visible;
    opacity: 1;
}
.blog-details-wrap .related-news .related-news-wrap:hover h4 a {
    color: #fff;
}
.blog-details-wrap .related-news .related-news-wrap:hover .news-meta span {
    color: #fff;
}
.blog-details-wrap .related-news .related-news-wrap:hover .news-meta span i {
    color: #fff;
}
.blog-details-wrap .related-news .related-news-wrap:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.blog-details-wrap .related-news .related-news-wrap h4 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
}
.blog-details-wrap .related-news .related-news-wrap h4 a {
    color: #29282d;
}
.blog-details-wrap .related-news .related-news-wrap .news-meta span {
    font-size: 14px;
    margin-right: 10px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.blog-details-wrap .related-news .related-news-wrap .news-meta span:last-child {
    margin-right: 0;
}
.blog-details-wrap .related-news .related-news-wrap .news-meta span i {
    margin-right: 5px;
    color: #67b241;
}
.blog-comments .blog-comments-title h4 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
    color: #29282d;
}
.blog-comments .latest-comments ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.blog-comments .latest-comments ul li .comments-reply {
    padding-left: 40px;
}
.blog-comments .latest-comments > ul > li:last-child .comments-box {
    margin-bottom: 0;
}
.blog-comments .latest-comments .comments-box {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 30px;
}
.blog-comments .latest-comments .comments-box .comments-avatar {
    width: 130px;
}
@media (max-width: 767px) {
    .blog-comments .latest-comments .comments-box .comments-avatar {
        width: 100px;
    }
}
.blog-comments .latest-comments .comments-box .comments-avatar img {
    width: 100px;
    height: 100px;
}
@media (max-width: 767px) {
    .blog-comments .latest-comments .comments-box .comments-avatar img {
        width: 80px;
        height: 80px;
    }
}
.blog-comments .latest-comments .comments-box .comments-text {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.blog-comments .latest-comments .comments-box .comments-text .comments-author-name h5 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0;
}
.blog-comments .latest-comments .comments-box .comments-text .comments-author-name span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #67b241;
    margin-bottom: 15px;
}
.blog-comments .latest-comments .comments-box .comments-text p {
    color: #8e8e8e;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
}
.blog-comments .latest-comments .comments-box .comments-text .replay {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #67b241;
    margin-top: 20px;
}
.blog-comments .latest-comments .comments-box .comments-text .replay:hover i {
    margin-left: 8px;
}
.blog-comments .latest-comments .comments-box .comments-text .replay i {
    margin-left: 5px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.blog-comment-form .blog-comments-title h4 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
    color: #29282d;
}
.blog-comment-form .comment-form .input-wrap {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}
.blog-comment-form .comment-form .input-wrap input, .blog-comment-form .comment-form .input-wrap textarea {
    padding: 20px 0;
    color: #8E8E8E;
    font-weight: 500;
    font-size: 18px;
    border: 0;
    border-bottom: 3px solid #d7d7d7;
    width: 100%;
}
.blog-comment-form .comment-form .input-wrap input:focus, .blog-comment-form .comment-form .input-wrap textarea:focus {
    border-color: #67b241;
}
.blog-comment-form .comment-form .input-wrap input:focus::-webkit-input-placeholder, .blog-comment-form .comment-form .input-wrap textarea:focus::-webkit-input-placeholder {
    color: transparent;
}
.blog-comment-form .comment-form .input-wrap input:focus:-moz-placeholder, .blog-comment-form .comment-form .input-wrap textarea:focus:-moz-placeholder {
    color: transparent;
}
.blog-comment-form .comment-form .input-wrap input:focus::-moz-placeholder, .blog-comment-form .comment-form .input-wrap textarea:focus::-moz-placeholder {
    color: transparent;
}
.blog-comment-form .comment-form .input-wrap input:focus:-ms-input-placeholder, .blog-comment-form .comment-form .input-wrap textarea:focus:-ms-input-placeholder {
    color: transparent;
}
.blog-comment-form .comment-form .input-wrap textarea {
    min-height: 145px;
    resize: none;
}
.blog-comment-form .comment-form .input-icon {
    position: relative;
}
.blog-comment-form .comment-form .input-icon:before {
    content: "";
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    top: 25px;
    color: #67b241;
    right: 0;
    pointer-events: none;
}
.blog-comment-form .comment-form .icon-name:before {
    content: "";
}
.blog-comment-form .comment-form .icon-email:before {
    content: "";
}
.blog-comment-form .comment-form .icon-msg:before {
    content: "";
}
.blog-comment-form .comment-form .btn {
    text-transform: uppercase;
}
/* 6. Widgets */
.footer-widgets {
    margin-bottom: 40px;
}
.footer-widgets .widget-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
}
.footer-widgets .widget-title-2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}
.footer-about-widget .footer-logo {
    margin-bottom: 30px;
}
.footer-about-widget p {
    color: #949494;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
}
.footer-about-widget .read-more {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #67b241;
    margin-top: 25px;
}
.footer-about-widget .read-more:hover {
    color: #fff;
}
.footer-about-widget .social {
    margin-top: 25px;
}
.footer-about-widget .social a {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-size: 14px;
    color: #a9a9a9;
    border: 2px solid #2e2e2e;
    text-align: center;
    border-radius: 50%;
    z-index: 1;
    margin-right: 10px;
}
.footer-about-widget .social a:hover {
    border-color: transparent;
    color: #fff;
}
.footer-about-widget .social a:hover:before {
    opacity: 1;
    visibility: visible;
}
.footer-about-widget .social a:before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    background: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.latest-news .news-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}
.latest-news .news-wrap .news-img {
    width: 80px;
    margin-right: 20px;
}
.latest-news .news-wrap .news-img a {
    display: block;
    overflow: hidden;
}
.latest-news .news-wrap .news-img a img {
    width: 100%;
}
.latest-news .news-wrap .news-content {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.latest-news .news-wrap .news-content h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 0;
}
.latest-news .news-wrap .news-content h4 a {
    color: #949494;
}
.latest-news .news-wrap .news-content h4 a:hover {
    color: #fff;
}
.latest-news .news-wrap .news-content span {
    display: inline-block;
    color: #949494;
    font-size: 14px;
    font-weight: 500;
    font-family: "Barlow", sans-serif;
}
.latest-news .news-wrap .news-content span i {
    color: #67b241;
    margin-right: 5px;
}
.latest-news .read-more a {
    font-size: 15px;
    font-weight: 700;
    color: #67b241;
    text-transform: uppercase;
}
.latest-news .read-more a i {
    margin-right: 5px;
}
.latest-news .read-more a:hover {
    color: #fff;
}
.contact-widget p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
    color: #949494;
}
.contact-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.contact-widget ul li {
    display: block;
    color: #949494;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
}
.contact-widget ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #67b241;
}
.contact-widget ul li span {
    overflow: hidden;
}
.contact-widget ul li a {
    color: #949494;
}
.contact-widget ul li a:hover {
    color: #fff;
}
.newsletters-widget .input-wrap {
    margin-bottom: 20px;
}
.newsletters-widget .input-wrap input {
    width: 100%;
    height: 60px;
    background: #fff;
    border: 0;
    color: #000;
    font-size: 16px;
    padding: 0 20px;
}
.newsletters-widget .input-wrap input::-webkit-input-placeholder {
    color: #949494;
}
.newsletters-widget .input-wrap input:-moz-placeholder {
    color: #949494;
}
.newsletters-widget .input-wrap input::-moz-placeholder {
    color: #949494;
}
.newsletters-widget .input-wrap input:-ms-input-placeholder {
    color: #949494;
}
.newsletters-widget .btn {
    text-transform: uppercase;
}
.class-widget-wrap .widget-title {
    color: #29282d;
    font-size: 35px;
    padding-bottom: 18px;
    margin-bottom: 35px;
    border-bottom: 3px solid #ededed;
    position: relative;
}
.class-widget-wrap .widget-title:before {
    content: "";
    width: 80px;
    height: 6px;
    position: absolute;
    left: 0;
    bottom: -4px;
    border-radius: 50px;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.search-widget form {
    position: relative;
}
.search-widget form input {
    width: 100%;
    padding-left: 30px;
    padding-right: 75px;
    height: 70px;
    border: 1px solid #b7b7b7;
    background: #fff;
    font-size: 18px;
    font-weight: 500;
    color: #565872;
}
.search-widget form input::-webkit-input-placeholder {
    color: #29282d;
}
.search-widget form input:-moz-placeholder {
    color: #29282d;
}
.search-widget form input::-moz-placeholder {
    color: #29282d;
}
.search-widget form input:-ms-input-placeholder {
    color: #29282d;
}
.search-widget form input:focus::-webkit-input-placeholder {
    color: transparent;
}
.search-widget form input:focus:-moz-placeholder {
    color: transparent;
}
.search-widget form input:focus::-moz-placeholder {
    color: transparent;
}
.search-widget form input:focus:-ms-input-placeholder {
    color: transparent;
}
.search-widget form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 70px;
    font-size: 18px;
    color: #fff;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    border: 0;
}
.class-category-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.class-category-widget ul li {
    display: block;
    margin-bottom: 10px;
}
.class-category-widget ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #919191;
    background: #eaeaea;
    display: block;
    padding: 23px 30px;
    position: relative;
    z-index: 1;
}
.class-category-widget ul li a:hover {
    color: #fff;
}
.class-category-widget ul li a:hover:before {
    width: 100%;
}
.class-category-widget ul li a:hover:after {
    color: #fff;
}
.class-category-widget ul li a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    z-index: -1;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.class-category-widget ul li a:after {
    position: absolute;
    content: "";
    font-family: "Font Awesome 5 Pro";
    font-size: 18px;
    color: #919191;
    right: 30px;
    z-index: 9;
    font-weight: 400;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.class-download-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.class-download-widget ul li {
    display: block;
    margin-bottom: 20px;
}
.class-download-widget ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #8E8E8E;
    display: block;
}
.class-download-widget ul li a i {
    margin-right: 15px;
    font-size: 16px;
    color: #67b241;
}
.class-add-widget {
    position: relative;
    z-index: 2;
}
.class-add-widget:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #101010;
    opacity: 0.8;
}
.class-add-widget img {
    width: 100%;
}
.class-add-widget .add-content {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    padding: 0 30px;
}
.class-add-widget .add-content h4 {
    font-size: 50px;
    line-height: 50px;
    color: #fff;
    font-weight: 600;
}
.class-add-widget .add-content a {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    border-bottom: 2px solid #fff;
}
.class-add-widget .add-content a:hover {
    color: #67b241;
    border-color: #67b241;
}
.class-gallery-widget {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;
}
.class-gallery-widget .gallery-widget-wrap {
    width: 50%;
    padding: 0 10px;
    margin-bottom: 20px;
}
.class-gallery-widget .gallery-widget-wrap:hover a:before {
    opacity: 0.8;
    visibility: visible;
}
.class-gallery-widget .gallery-widget-wrap:hover a i {
    visibility: visible;
    opacity: 1;
}
.class-gallery-widget .gallery-widget-wrap a {
    position: relative;
    display: block;
}
.class-gallery-widget .gallery-widget-wrap a:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.class-gallery-widget .gallery-widget-wrap a i {
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #fff;
    color: #67b241;
    text-align: center;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.widget-wrap {
    padding: 40px 45px;
    background: #fff;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .widget-wrap {
        padding: 30px 25px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .widget-wrap {
        background: #f7f7f7;
    }
}
@media (max-width: 767px) {
    .widget-wrap {
        background: #f7f7f7;
    }
}
.widget-wrap .widget-title {
    color: #29282d;
    font-size: 30px;
    padding-bottom: 16px;
    margin-bottom: 35px;
    border-bottom: 3px solid #ededed;
    position: relative;
}
.widget-wrap .widget-title:before {
    content: "";
    width: 80px;
    height: 6px;
    position: absolute;
    left: 0;
    bottom: -4px;
    background-color: #67b241;
}
.about-widget {
    border-top: 5px solid #67b241;
}
.about-widget .thumb {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 16px auto;
    border-radius: 50%;
    z-index: 2;
}
.about-widget .thumb:before {
    position: absolute;
    content: "";
    width: 230px;
    height: 230px;
    border: 2px dashed #67b241;
    border-radius: 50%;
    top: -15px;
    left: -15px;
    z-index: 3;
}
.about-widget .thumb img {
    width: 100%;
    border-radius: 50%;
}
.about-widget .about-widget-content {
    margin-top: 50px;
}
.about-widget .about-widget-content p {
    font-size: 16px;
    line-height: 28px;
}
.about-widget .about-widget-author {
    padding-left: 50px;
    position: relative;
    padding-top: 20px;
}
.about-widget .about-widget-author h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 0;
    position: relative;
}
.about-widget .about-widget-author h4:before {
    content: "";
    background: #67b241;
    width: 30px;
    height: 3px;
    position: absolute;
    left: -50px;
    top: 8px;
}
.about-widget .about-widget-author span {
    display: inline-block;
    color: #67b241;
    font-size: 16px;
    font-weight: 500;
}
.recent-post-widget .recent-post-wrap {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    z-index: 1;
}
.recent-post-widget .recent-post-wrap:hover img {
    transform: scale(1.05);
}
.recent-post-widget .recent-post-wrap:hover:before {
    visibility: hidden;
    opacity: 0;
}
.recent-post-widget .recent-post-wrap:hover:after {
    opacity: 0.8;
    visibility: visible;
}
.recent-post-widget .recent-post-wrap img {
    width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.recent-post-widget .recent-post-wrap:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #29282D;
    opacity: 0.8;
    z-index: 2;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.recent-post-widget .recent-post-wrap:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.recent-post-widget .recent-post-wrap h4 {
    font-size: 20px;
    line-height: 26px;
    position: absolute;
    bottom: 7px;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 0 20px;
    margin-bottom: 0;
}
@media (min-width: 320px) and (max-width: 425px) {
    .recent-post-widget .recent-post-wrap h4 {
        font-size: 16px;
        line-height: 20px;
    }
}
.recent-post-widget .recent-post-wrap h4 a {
    color: #fff;
}
.category-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.category-widget ul li {
    display: block;
}
.category-widget ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #919191;
    display: block;
    margin-bottom: 10px;
    padding: 17px 20px;
    position: relative;
    z-index: 99;
    border-bottom: 1px solid #eaeaea;
}
.category-widget ul li a:hover {
    color: #67b241;
}
.category-widget ul li a:hover:before {
    color: #67b241;
}
.category-widget ul li a:hover:after {
    width: 100%;
}
.category-widget ul li a:before {
    position: absolute;
    content: "";
    font-family: "Font Awesome 5 Pro";
    font-size: 18px;
    color: #919191;
    left: 0;
    z-index: 9;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.category-widget ul li a:after {
    position: absolute;
    content: "";
    width: 0;
    left: 0;
    bottom: 0;
    border-bottom: 1px solid #67b241;
    z-index: -1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.category-widget ul li:last-child a {
    border-bottom: 0;
}
.category-widget ul li:last-child a:after {
    display: none;
}
.add-widget {
    padding: 0 !important;
}
.add-widget .add-widget-wrap a {
    display: block;
}
.add-widget .add-widget-wrap img {
    width: 100%;
}
.shop-sidebar {
    padding: 40px;
    background: #f1f8ff;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .shop-sidebar {
        padding: 30px 20px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .shop-sidebar {
        padding: 30px 20px;
    }
}
.widget-wrap-2 {
    padding: 40px 35px;
    background: #fff;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .widget-wrap-2 {
        padding: 30px 20px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .widget-wrap-2 {
        padding: 30px 20px;
    }
}
.widget-wrap-2 .widget-title {
    font-size: 22px;
    font-weight: 600;
    color: #29282d;
    position: relative;
    padding-bottom: 14px;
}
.widget-wrap-2 .widget-title:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 2px;
    background: #67b241;
    left: 0;
    bottom: 0;
}
.widget-wrap-2 .widget-title:after {
    position: absolute;
    content: "";
    width: 25px;
    height: 2px;
    background: #67b241;
    left: 17px;
    bottom: 0;
}
.shop-search-widget {
    padding: 0;
}
.shop-search-widget form {
    position: relative;
}
.shop-search-widget form input {
    width: 100%;
    padding-left: 25px;
    padding-right: 50px;
    height: 65px;
    border: 0;
    background: #fff;
    font-size: 16px;
    font-weight: 500;
    color: #29282d;
}
.shop-search-widget form input::-webkit-input-placeholder {
    color: #8a8a8a;
}
.shop-search-widget form input:-moz-placeholder {
    color: #8a8a8a;
}
.shop-search-widget form input::-moz-placeholder {
    color: #8a8a8a;
}
.shop-search-widget form input:-ms-input-placeholder {
    color: #8a8a8a;
}
.shop-search-widget form input:focus::-webkit-input-placeholder {
    color: transparent;
}
.shop-search-widget form input:focus:-moz-placeholder {
    color: transparent;
}
.shop-search-widget form input:focus::-moz-placeholder {
    color: transparent;
}
.shop-search-widget form input:focus:-ms-input-placeholder {
    color: transparent;
}
.shop-search-widget form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    font-size: 18px;
    color: #67b241;
    background: none;
    border: 0;
}
.shop-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.shop-category ul li {
    display: block;
    margin-bottom: 10px;
}
.shop-category ul li a {
    display: block;
    color: #7a8a9e;
    font-size: 16px;
    line-height: 28px;
}
.shop-category ul li a:hover {
    color: #67b241;
}
.shop-tags a {
    display: inline-block;
    background: #eef3f9;
    padding: 7px 17px;
    border-radius: 5px;
    font-size: 14px;
    margin-right: 10px;
    margin-bottom: 10px;
    color: #7a8a9e;
    position: relative;
    z-index: 2;
}
.shop-tags a:hover {
    color: #fff;
}
.shop-tags a:hover:before {
    visibility: visible;
    opacity: 1;
}
.shop-tags a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    border-radius: 5px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.shop-filter .input-wrap {
    margin-bottom: 20px;
}
.shop-filter .input-wrap input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: #e6e6e6;
    outline: none;
}
.shop-filter .input-wrap input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    background: #67b241;
    cursor: pointer;
}
.shop-filter .input-wrap input::-moz-range-thumb {
    width: 10px;
    height: 10px;
    background: #67b241;
    cursor: pointer;
    border-radius: 0px;
}
.shop-filter .price-range {
    font-size: 14px;
    color: #8a8a8a;
}
.shop-filter .price-range b {
    font-weight: 700;
    color: #67b241;
}
/* 10. Footer */
.footer-bottom {
    background: #202020;
    padding: 17px 0;
}
.footer-top-bg {
    background: #2b2b2b;
    padding-top: 40px;
}
.footer-newsletter {
    padding: 0 70px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .footer-newsletter {
        padding: 0 30px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .footer-newsletter {
        padding: 0 30px;
    }
}
@media (max-width: 767px) {
    .footer-newsletter {
        padding: 0 20px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .footer-newsletter {
        padding: 0 15px;
    }
}
.footer-newsletter h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-newsletter .news-form .input-wrap {
    position: relative;
}
.footer-newsletter .news-form .input-wrap input {
    width: 100%;
    height: 70px;
    padding: 0 40px;
    color: #fff;
    background: #353535;
    border: 0;
}
.footer-newsletter .news-form .input-wrap input::-webkit-input-placeholder {
    color: #a0a0a0;
}
.footer-newsletter .news-form .input-wrap input:-moz-placeholder {
    color: #a0a0a0;
}
.footer-newsletter .news-form .input-wrap input::-moz-placeholder {
    color: #a0a0a0;
}
.footer-newsletter .news-form .input-wrap input:-ms-input-placeholder {
    color: #a0a0a0;
}
.footer-newsletter .news-form .input-wrap input:focus::-webkit-input-placeholder {
    color: transparent;
}
.footer-newsletter .news-form .input-wrap input:focus:-moz-placeholder {
    color: transparent;
}
.footer-newsletter .news-form .input-wrap input:focus::-moz-placeholder {
    color: transparent;
}
.footer-newsletter .news-form .input-wrap input:focus:-ms-input-placeholder {
    color: transparent;
}
.footer-newsletter .news-form .input-wrap button {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    height: 100%;
    text-align: center;
    color: #fff;
    border: 0;
    background: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.footer-apps {
    padding: 0 70px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .footer-apps {
        padding: 0 30px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .footer-apps {
        padding: 0 30px;
    }
}
@media (max-width: 767px) {
    .footer-apps {
        padding: 0 20px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .footer-apps {
        padding: 0 15px;
    }
}
.footer-apps h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-apps .btn-wrap .btn {
    padding: 25px 40px;
}
.footer-apps .btn-wrap .btn i {
    margin-right: 5px;
}
.footer-apps .btn-wrap .btn-secondary {
    background: #353535;
    border-color: #353535;
    color: #949494;
}
@media (min-width: 320px) and (max-width: 425px) {
    .footer-apps .btn-wrap .btn-secondary {
        margin-bottom: 20px;
    }
}
.copyright p {
    color: #949494;
    margin-bottom: 0;
}
.copyright p a {
    color: #67b241;
}
.footer-social-link {
    text-align: right;
}
.footer-social-link ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-social-link ul li {
    display: inline-block;
}
.footer-social-link ul li a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-size: 14px;
    color: #a9a9a9;
    border: 2px solid #2e2e2e;
    text-align: center;
    border-radius: 50%;
    z-index: 1;
}
.footer-social-link ul li a:hover {
    border-color: transparent;
    color: #fff;
}
.footer-social-link ul li a:hover:before {
    opacity: 1;
    visibility: visible;
}
.footer-social-link ul li a:before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    background: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.footer-menu {
    text-align: right;
}
@media (min-width: 768px) and (max-width: 991px) {
    .footer-menu {
        text-align: center;
    }
}
@media (max-width: 767px) {
    .footer-menu {
        text-align: center;
    }
}
.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-menu ul li {
    display: inline-block;
    margin-left: 15px;
}
.footer-menu ul li a {
    display: block;
    font-size: 16px;
    color: #a9a9a9;
}
.footer-menu ul li a:hover {
    color: #67b241;
}
.footer-area-3 .footer-bottom {
    background: #f7f7f7;
}
.footer-area-3 .footer-widgets .widget-title {
    color: #29282d;
}
.footer-area-3 .footer-widgets .news-wrap .news-content h4 a {
    color: #29282d;
}
.footer-area-3 .footer-widgets .news-wrap .news-content h4 a:hover {
    color: #67b241;
}
.footer-area-3 .footer-widgets .news-wrap .read-more a {
    color: #29282d;
}
.footer-area-3 .footer-widgets .news-wrap .read-more a:hover {
    color: #67b241;
}
.footer-area-3 .contact-widget p {
    color: #444;
}
.footer-area-3 .contact-widget ul li {
    color: #29282d;
}
.footer-area-3 .contact-widget ul li a {
    color: #29282d;
}
.footer-area-3 .contact-widget ul li a:hover {
    color: #67b241;
}
.footer-area-3 .newsletters-widget p {
    color: #444;
}
.footer-area-3 .newsletters-widget .input-wrap input {
    border: 1px solid #e0e0e0;
}
.footer-area-3 .newsletters-widget .input-wrap input:focus {
    border-color: #67b241;
}
.footer-area-3 .footer-about-widget p {
    color: #444;
}
.footer-area-3 .footer-about-widget .social a {
    border: 1px solid #a9a9a9;
}
.footer-area-3 .footer-about-widget .social a:hover {
    border-color: transparent;
}
.footer-area-3 .copyright p {
    color: #444;
}
.footer-area-3 .footer-menu ul li a {
    color: #444;
}
.footer-area-3 .footer-menu ul li a:hover {
    color: #67b241;
}
.footer-area-5 .footer-bottom {
    background: #141414;
}
/* 9. Gallery */
.gallery-wrap:hover .gallery-thumb img {
    transform: scale(1.05);
}
.gallery-wrap:hover .gallery-thumb:before {
    opacity: 0.3;
    visibility: visible;
}
.gallery-wrap:hover .gallery-thumb .gallery-link {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}
.gallery-wrap .gallery-thumb {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.gallery-wrap .gallery-thumb img {
    width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.gallery-wrap .gallery-thumb:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #101010;
    opacity: 0;
    z-index: 2;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.gallery-wrap .gallery-thumb .gallery-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    z-index: 3;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    visibility: hidden;
    opacity: 0;
}
.gallery-wrap .gallery-thumb .gallery-link a {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: #67b241;
    text-align: center;
    color: #fff;
    font-size: 24px;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.gallery-wrap .gallery-content {
    padding: 30px 0 25px;
}
.gallery-wrap .gallery-content h3 {
    font-size: 35px;
    line-height: 45px;
    color: #29282d;
    font-weight: 600;
    margin-bottom: 0;
}
.gallery-wrap .gallery-content span {
    font-size: 18px;
    color: #29282d;
    display: inline-block;
    position: relative;
    padding-left: 70px;
}
.gallery-wrap .gallery-content span:before {
    content: "";
    background: #67b241;
    width: 45px;
    height: 3px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    position: absolute;
}
.gallery-wrap-2 {
    position: relative;
}
.gallery-wrap-2:hover .gallery-thumb img {
    transform: scale(1.05);
}
.gallery-wrap-2:hover .gallery-thumb:before {
    opacity: 0.7;
    visibility: visible;
}
.gallery-wrap-2:hover .gallery-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(-50%);
}
.gallery-wrap-2 .gallery-thumb {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.gallery-wrap-2 .gallery-thumb img {
    width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.gallery-wrap-2 .gallery-thumb:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #101010;
    opacity: 0;
    z-index: 2;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.gallery-wrap-2 .gallery-content {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    transform: translateY(-30%);
    z-index: 2;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.gallery-wrap-2 .gallery-content .read-more {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: #67b241;
    text-align: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 30px;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .gallery-wrap-2 .gallery-content .read-more {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}
.gallery-wrap-2 .gallery-content h3 {
    font-size: 35px;
    line-height: 45px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .gallery-wrap-2 .gallery-content h3 {
        font-size: 25px;
        line-height: 35px;
    }
}
.gallery-wrap-2 .gallery-content span {
    font-size: 18px;
    color: #fff;
    display: inline-block;
    position: relative;
}
.gallery-area-spacing {
    padding-left: 55px;
    padding-right: 55px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .gallery-area-spacing {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .gallery-area-spacing {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (max-width: 767px) {
    .gallery-area-spacing {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .gallery-title.section-title-2 {
        text-align: center;
    }
    .gallery-title.section-title-2 h3 {
        margin: 0 auto;
    }
    .gallery-title.section-title-2 h3:before {
        left: 50%;
        transform: translateX(-50%);
    }
    .gallery-title.section-title-2 span {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
@media (max-width: 767px) {
    .gallery-title.section-title-2 {
        text-align: center;
    }
    .gallery-title.section-title-2 h3 {
        margin: 0 auto;
    }
    .gallery-title.section-title-2 h3:before {
        left: 50%;
        transform: translateX(-50%);
    }
    .gallery-title.section-title-2 span {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
.gallery-wrap-3 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.gallery-wrap-3:hover img {
    transform: scale(1.05);
}
.gallery-wrap-3:hover:before {
    visibility: visible;
    opacity: 0.8;
}
.gallery-wrap-3:hover .gallery-content {
    visibility: visible;
    opacity: 0.8;
    transform: translateY(-50%) scale(1);
}
.gallery-wrap-3 img {
    width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.gallery-wrap-3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.gallery-wrap-3 .gallery-content {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    z-index: 3;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.gallery-wrap-3 .gallery-content .gallery-icon {
    margin-bottom: 15px;
}
.gallery-wrap-3 .gallery-content .gallery-icon a {
    font-size: 50px;
    font-weight: 300;
    color: #fff;
    line-height: 50px;
}
.gallery-wrap-3 .gallery-content h4 {
    font-size: 35px;
    line-height: 38px;
    font-weight: 600;
    margin-bottom: 0;
}
.gallery-wrap-3 .gallery-content h4 a {
    color: #fff;
}
.gallery-filter-nav {
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}
@media (max-width: 767px) {
    .gallery-filter-nav {
        text-align: center;
    }
}
.gallery-filter-nav button {
    font-size: 24px;
    line-height: 38px;
    font-weight: 600;
    font-family: "Teko", sans-serif;
    color: #29282d;
    background: none;
    border: 0;
    padding: 0 24px 30px;
    position: relative;
    z-index: 2;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .gallery-filter-nav button {
        font-size: 22px;
        padding: 0 15px 30px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .gallery-filter-nav button {
        font-size: 18px;
        padding: 0 8px 10px;
        margin-top: 10px;
    }
}
@media (max-width: 767px) {
    .gallery-filter-nav button {
        font-size: 18px;
        padding: 0 8px 10px;
        margin-top: 10px;
    }
}
.gallery-filter-nav button:hover {
    color: #67b241;
}
.gallery-filter-nav button:hover:before {
    width: 100%;
}
.gallery-filter-nav button:before {
    content: "";
    width: 0;
    height: 2px;
    left: 0;
    bottom: -2px;
    position: absolute;
    background: #67b241;
    z-index: 2;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.gallery-filter-nav button.active {
    color: #67b241;
}
.gallery-filter-nav button.active:before {
    width: 100%;
}
.gallery-carousel-wrap .gallery-carousel-thumb img {
    width: 100%;
}
.gallery-carousel-wrap .gallery-carousel-content {
    text-align: center;
}
.gallery-carousel-wrap .gallery-carousel-content h4 {
    font-size: 50px;
    line-height: 50px;
    font-weight: 600;
    color: #29282d;
    margin-bottom: 0;
}
@media (min-width: 320px) and (max-width: 425px) {
    .gallery-carousel-wrap .gallery-carousel-content h4 {
        font-size: 30px;
        line-height: 30px;
    }
}
.gallery-carousel-wrap .gallery-carousel-content span {
    font-size: 20px;
    color: #67b241;
}
.gallery-carousel {
    position: relative;
    margin-bottom: 100px;
}
@media (min-width: 320px) and (max-width: 425px) {
    .gallery-carousel {
        margin-bottom: 50px;
    }
}
.gallery-carousel .swiper-button-prev {
    left: -150px;
    margin: 0;
    z-index: 99;
    height: 60px;
    width: 60px;
    font-size: 18px;
    color: #707070;
    background: transparent;
    border-radius: 50%;
    border: 2px solid #c7c7c7;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    transform: translateY(-50%);
    outline: none;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .gallery-carousel .swiper-button-prev {
        display: none;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .gallery-carousel .swiper-button-prev {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .gallery-carousel .swiper-button-prev {
        display: none;
    }
}
@media (max-width: 767px) {
    .gallery-carousel .swiper-button-prev {
        display: none;
    }
}
.gallery-carousel .swiper-button-prev:hover {
    color: #fff;
    border: 0;
}
.gallery-carousel .swiper-button-prev:hover:before {
    visibility: visible;
    opacity: 1;
}
.gallery-carousel .swiper-button-prev:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.gallery-carousel .swiper-button-next {
    right: -150px;
    margin: 0;
    z-index: 99;
    height: 60px;
    width: 60px;
    font-size: 18px;
    color: #707070;
    background: transparent;
    border-radius: 50%;
    border: 2px solid #c7c7c7;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    transform: translateY(-50%);
    outline: none;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .gallery-carousel .swiper-button-next {
        display: none;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .gallery-carousel .swiper-button-next {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .gallery-carousel .swiper-button-next {
        display: none;
    }
}
@media (max-width: 767px) {
    .gallery-carousel .swiper-button-next {
        display: none;
    }
}
.gallery-carousel .swiper-button-next:hover {
    color: #fff;
    border: 0;
}
.gallery-carousel .swiper-button-next:hover:before {
    visibility: visible;
    opacity: 1;
}
.gallery-carousel .swiper-button-next:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.gallery-carousel .swiper-scrollbar {
    opacity: 1 !important;
    height: 3px;
    position: absolute;
    left: 50%;
    bottom: -100px;
    transform: translateX(-50%);
    width: 70%;
}
@media (min-width: 320px) and (max-width: 425px) {
    .gallery-carousel .swiper-scrollbar {
        bottom: -50px;
    }
}
.gallery-carousel .swiper-scrollbar .swiper-scrollbar-drag {
    background: #67b241;
}
.gallery-carousel .swiper-scrollbar .swiper-scrollbar-drag:before {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    z-index: 3;
    border-top: 12px solid transparent;
    border-left: 15px solid #67b241;
    border-bottom: 12px solid transparent;
    transform: translateY(-50%);
}
.gallery-slider {
    position: relative;
}
.gallery-slider .swiper-button-prev {
    left: -150px;
    margin: 0;
    z-index: 99;
    height: 60px;
    width: 60px;
    font-size: 18px;
    color: #707070;
    background: transparent;
    border-radius: 50%;
    border: 2px solid #c7c7c7;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    transform: translateY(-50%);
    outline: none;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .gallery-slider .swiper-button-prev {
        display: none;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .gallery-slider .swiper-button-prev {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .gallery-slider .swiper-button-prev {
        display: none;
    }
}
@media (max-width: 767px) {
    .gallery-slider .swiper-button-prev {
        display: none;
    }
}
.gallery-slider .swiper-button-prev:hover {
    color: #fff;
    border: 0;
}
.gallery-slider .swiper-button-prev:hover:before {
    visibility: visible;
    opacity: 1;
}
.gallery-slider .swiper-button-prev:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.gallery-slider .swiper-button-next {
    right: -150px;
    margin: 0;
    z-index: 99;
    height: 60px;
    width: 60px;
    font-size: 18px;
    color: #707070;
    background: transparent;
    border-radius: 50%;
    border: 2px solid #c7c7c7;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    transform: translateY(-50%);
    outline: none;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .gallery-slider .swiper-button-next {
        display: none;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .gallery-slider .swiper-button-next {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .gallery-slider .swiper-button-next {
        display: none;
    }
}
@media (max-width: 767px) {
    .gallery-slider .swiper-button-next {
        display: none;
    }
}
.gallery-slider .swiper-button-next:hover {
    color: #fff;
    border: 0;
}
.gallery-slider .swiper-button-next:hover:before {
    visibility: visible;
    opacity: 1;
}
.gallery-slider .swiper-button-next:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.gallery-slider .swiper-pagination-clickable {
    position: absolute;
    left: 50%;
    width: auto;
    bottom: -80px;
    z-index: 99;
    transform: translateX(-50%);
}
@media (max-width: 767px) {
    .gallery-slider .swiper-pagination-clickable {
        display: none;
    }
}
.gallery-slider .swiper-pagination-clickable .swiper-pagination-bullet {
    background: transparent;
    width: 25px;
    height: 25px;
    opacity: 1;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
    display: inline-block;
    outline: none;
    margin: 0 3px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.gallery-slider .swiper-pagination-clickable .swiper-pagination-bullet:before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    background: #67b241;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.gallery-slider .swiper-pagination-clickable .swiper-pagination-bullet-active {
    border-color: #67b241;
}
.gallery-slider-area {
    position: relative;
    z-index: 1;
}
.gallery-slider-area .gallery-gray-shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 700px;
    z-index: -1;
    background: #f7f7f7;
}
@media (max-width: 767px) {
    .gallery-slider-area .gallery-gray-shape {
        height: 50%;
    }
}
.gallery-details-content .gallery-author h3 {
    font-size: 50px;
    line-height: 50px;
    font-weight: 600;
    color: #29282d;
    margin-bottom: 0;
}
.gallery-details-content .gallery-author span {
    position: relative;
    display: inline-block;
    padding-left: 60px;
    color: #67b241;
    font-size: 20px;
}
.gallery-details-content .gallery-author span:before {
    content: "";
    width: 45px;
    height: 3px;
    position: absolute;
    left: 0;
    top: 50%;
    background: #67b241;
    transform: translateY(-50%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.gallery-details-content .gallery-share {
    text-align: right;
}
.gallery-details-content .gallery-share h4 {
    display: inline-block;
    font-size: 24px;
    color: #29282D;
    font-weight: 600;
    margin-bottom: 0;
}
.gallery-details-content .gallery-share ul {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}
.gallery-details-content .gallery-share ul li {
    display: inline-block;
    margin-left: 10px;
}
.gallery-details-content .gallery-share ul li a {
    display: block;
    text-align: center;
    color: #a9a9a9;
    font-size: 14px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 2px solid #d0d0d0;
    border-radius: 50%;
    position: relative;
}
.gallery-details-content .gallery-share ul li a:hover {
    color: #fff;
    border: 0;
}
.gallery-details-content .gallery-share ul li a:hover:before {
    visibility: visible;
    opacity: 1;
}
.gallery-details-content .gallery-share ul li a:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.gallery-details-content .heading-note {
    font-size: 24px;
    line-height: 35px;
    margin-bottom: 0;
    color: #29282d;
}
.gallery-details-content .gallery-details-thumb img {
    width: 100%;
}
.gallery-details-content .gallery-meta-box {
    border: 10px solid #efefef;
}
.gallery-details-content .gallery-meta-wrap {
    padding: 40px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .gallery-details-content .gallery-meta-wrap {
        padding: 30px 24px;
        text-align: center;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .gallery-details-content .gallery-meta-wrap {
        text-align: center;
        padding: 30px 20px;
    }
}
@media (max-width: 767px) {
    .gallery-details-content .gallery-meta-wrap {
        text-align: center;
        padding: 30px 20px;
    }
}
.gallery-details-content .gallery-meta-wrap .gallery-meta-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    display: block;
    color: #fff;
    font-size: 30px;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
@media (min-width: 992px) and (max-width: 1200px) {
    .gallery-details-content .gallery-meta-wrap .gallery-meta-icon {
        margin: 0 auto;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .gallery-details-content .gallery-meta-wrap .gallery-meta-icon {
        margin: 0 auto;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .gallery-details-content .gallery-meta-wrap .gallery-meta-icon {
        margin: 0 auto;
    }
}
@media (max-width: 767px) {
    .gallery-details-content .gallery-meta-wrap .gallery-meta-icon {
        margin: 0 auto;
    }
}
.gallery-details-content .gallery-meta-wrap .gallery-meta-content {
    width: 100%;
    margin-left: 25px;
    margin-top: 15px;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .gallery-details-content .gallery-meta-wrap .gallery-meta-content {
        margin-left: 15px;
        margin-top: 15px;
        -ms-flex-preferred-size: inherit;
        flex-basis: inherit;
        -ms-flex-positive: inherit;
        flex-grow: inherit;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .gallery-details-content .gallery-meta-wrap .gallery-meta-content {
        margin-left: 0;
        -ms-flex-preferred-size: inherit;
        flex-basis: inherit;
        -ms-flex-positive: inherit;
        flex-grow: inherit;
    }
}
@media (max-width: 767px) {
    .gallery-details-content .gallery-meta-wrap .gallery-meta-content {
        margin-left: 0;
        -ms-flex-preferred-size: inherit;
        flex-basis: inherit;
        -ms-flex-positive: inherit;
        flex-grow: inherit;
    }
}
.gallery-details-content .gallery-meta-wrap .gallery-meta-content h4 {
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
    color: #29282d;
    margin-bottom: 0;
}
.gallery-details-content .gallery-meta-wrap .gallery-meta-content span {
    font-size: 18px;
    line-height: 30px;
    color: #8e8e8e;
    margin-bottom: 0;
}
.gallery-details-content .gallery-meta-wrap .gallery-meta-content p {
    font-size: 18px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .gallery-details-content .gallery-box-content {
        padding: 30px 24px;
    }
}
.gallery-details-content .gallery-box-content h4 {
    font-size: 50px;
    line-height: 50px;
}
@media (max-width: 767px) {
    .gallery-details-content .gallery-box-content h4 {
        font-size: 30px;
        line-height: 30px;
    }
}
.gallery-details-content .gallery-box-content p {
    font-size: 16px;
    line-height: 30px;
}
.gallery-details-content .gallery-box-img img {
    width: 100%;
}
/* 11. Section Helper */
.section-title h3 {
    font-size: 50px;
    line-height: 50px;
    font-weight: 600;
    color: #29282d;
    padding-left: 80px;
    position: relative;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .section-title h3 {
        font-size: 30px;
        line-height: 40px;
        padding-top: 10px;
        padding-left: 0;
    }
}
.section-title h3:before {
    content: "";
    height: 4px;
    width: 50px;
    position: absolute;
    left: 0;
    top: 4px;
    background: #67b241;
}
@media (max-width: 767px) {
    .section-title h3:before {
        top: 0;
    }
}
.section-title-2 {
    position: relative;
    z-index: 1;
}
.section-title-2 h3 {
    font-size: 50px;
    line-height: 50px;
    font-weight: 600;
    color: #29282d;
    padding: 40px 0;
    /*width: 545px;*/
    margin: 0;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .section-title-2 h3 {
        font-size: 40px;
        line-height: 40px;
        width: 455px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .section-title-2 h3 {
        font-size: 35px;
        line-height: 35px;
        width: 455px;
    }
}
@media (max-width: 767px) {
    .section-title-2 h3 {
        font-size: 35px;
        line-height: 40px;
        width: 100%;
        padding: 30px 0;
    }
}
.section-title-2 h3:before {
    content: "";
    width: 50px;
    height: 4px;
    background: #29282d;
    position: absolute;
    left: 0;
    top: 0;
}
.section-title-2 span {
    font-size: 220px;
    line-height: 50px;
    font-weight: 600;
    font-family: "Teko", sans-serif;
    -webkit-text-stroke-width: 2px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #29282d;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.2;
    z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .section-title-2 span {
        font-size: 250px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .section-title-2 span {
        font-size: 200px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .section-title-2 span {
        font-size: 150px;
    }
}
@media (max-width: 767px) {
    .section-title-2 span {
        display: none;
    }
}
.section-title-2.text-white h3 {
    color: #fff;
}
.section-title-2.text-white h3:before {
    background: #fff;
}
.section-title-2.text-white span {
    -webkit-text-stroke-color: #fff;
}
.section-title-2.bar-theme-color h3:before {
    background: #67b241;
}
.section-title-2.text-center h3 {
    margin: 0 auto;
}
.section-title-2.text-center h3:before {
    left: 50%;
    transform: translateX(-50%);
}
.section-title-2.text-center span {
    left: 50%;
    transform: translate(-50%, -50%);
}
.section-title-2.text-right h3 {
    margin: 0;
}
.section-title-2.text-right h3:before {
    left: auto;
    right: 0;
    transform: translateY(-50%);
}
.section-title-2.text-right span {
    left: auto;
    right: 0;
    transform: translateY(-50%);
}
.section-title-3 .bars {
    padding-top: 40px;
    position: relative;
}
.section-title-3 .bars:before {
    content: "";
    background: #67b241;
    width: 50px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 0;
}
.section-title-3 h3 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 20px;
    font-weight: 600;
}
.section-title-3 h3 span {
    color: #67b241;
}
@media (max-width: 767px) {
    .section-title-3 h3 {
        font-size: 30px;
        line-height: 36px;
    }
}
.section-title-3 p {
    font-size: 18px;
    line-height: 28px;
    color: #afafaf;
}
@media (max-width: 767px) {
    .section-title-3 p {
        font-size: 16px;
        line-height: 26px;
    }
}
.section-title-3.text-white h3 {
    color: #fff;
}
.section-title-3.text-white p {
    color: #afafaf;
}
.section-title-4 {
    position: relative;
    z-index: 1;
}
.section-title-4 h3 {
    font-size: 50px;
    line-height: 38px;
    font-weight: 600;
    color: #29282d;
}
@media (max-width: 767px) {
    .section-title-4 h3 {
        font-size: 40px;
    }
}
.section-title-4 p {
    font-size: 18px;
    line-height: 28px;
}
.section-title-4 span {
    font-size: 300px;
    line-height: 190px;
    font-weight: 600;
    font-family: "Teko", sans-serif;
    -webkit-text-stroke-width: 2px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #29282d;
    position: absolute;
    left: 50%;
    top: 0;
    opacity: 0.2;
    z-index: -1;
    transform: translateX(-50%);
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .section-title-4 span {
        font-size: 250px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .section-title-4 span {
        font-size: 200px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .section-title-4 span {
        font-size: 150px;
    }
}
@media (max-width: 767px) {
    .section-title-4 span {
        font-size: 150px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .section-title-4 span {
        font-size: 88px;
    }
}
.section-title-4.text-white h3 {
    color: #fff;
}
.section-title-4.text-white p {
    color: #fff;
}
.section-title-4.text-white span {
    -webkit-text-stroke-color: #fff;
}
@media (min-width: 1200px) {
    .w-xl-20 {
        max-width: 20%;
    }
}
.bg-fix {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.line-animation-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.line-animation-wrap .animation-wrap {
    position: relative;
    height: 100%;
}
.line-animation-wrap .animation-wrap .line-item {
    float: left;
    width: 25%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
}
.line-animation-wrap .animation-wrap .line-item:before {
    content: "";
    position: absolute;
    top: 0;
    right: -3px;
    width: 4px;
    height: 100px;
    background: #fff;
}
.line-animation-wrap .animation-wrap .one:before {
    -webkit-animation: scroll-animation 3s ease-out infinite;
    -moz-animation: scroll-animation 3s ease-out infinite;
    -ms-animation: scroll-animation 3s ease-out infinite;
    -o-animation: scroll-animation 3s ease-out infinite;
    animation: scroll-animation 3s ease-out infinite;
}
.line-animation-wrap .animation-wrap .two:before {
    -webkit-animation: scroll-animation 5s ease-out infinite;
    -moz-animation: scroll-animation 5s ease-out infinite;
    -ms-animation: scroll-animation 5s ease-out infinite;
    -o-animation: scroll-animation 5s ease-out infinite;
    animation: scroll-animation 5s ease-out infinite;
}
.line-animation-wrap .animation-wrap .three:before {
    -webkit-animation: scroll-animation 7s ease-out infinite;
    -moz-animation: scroll-animation 7s ease-out infinite;
    -ms-animation: scroll-animation 7s ease-out infinite;
    -o-animation: scroll-animation 7s ease-out infinite;
    animation: scroll-animation 7s ease-out infinite;
}
@-webkit-keyframes scroll-animation {
    0% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        top: 0;
    }
    50% {
        top: 50%;
    }
    100% {
        top: 100%;
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    }
}
@keyframes scroll-animation {
    0% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        top: 0;
    }
    50% {
        top: 50%;
    }
    100% {
        top: 100%;
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    }
}
.rotateme {
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
/* 21. Brand */
.brand-area {
    background: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.brand-area .brand-wrap {
    text-align: center;
}
/* 22. video */
.video-title {
    text-align: right;
}
@media (min-width: 768px) and (max-width: 991px) {
    .video-title {
        text-align: center;
    }
}
@media (max-width: 767px) {
    .video-title {
        text-align: center;
    }
}
.video-title h3 span {
    color: #67b241;
}
.video-title .bars:before {
    left: auto;
    right: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
    .video-title .bars:before {
        left: auto;
        right: 50%;
        transform: translateX(50%);
    }
}
@media (max-width: 767px) {
    .video-title .bars:before {
        left: auto;
        right: 50%;
        transform: translateX(50%);
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .video-text {
        text-align: center;
    }
}
@media (max-width: 767px) {
    .video-text {
        text-align: center;
    }
}
.video-text p {
    color: #8e8e8e;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
}
.video-text .read-more {
    display: inline-block;
    font-size: 15px;
    border-bottom: 2px solid #67b241;
    color: #67b241;
    margin-top: 30px;
    font-weight: 700;
    text-transform: uppercase;
}
.video-text .read-more i {
    margin-left: 5px;
}
.video-wrap {
    position: relative;
    padding: 15px;
    background: #fff;
    box-shadow: 0px 10px 30px 0px rgba(186, 186, 186, 0.41);
    z-index: 10;
}
@media (max-width: 767px) {
    .video-wrap {
        padding: 5px;
    }
}
.video-wrap:before {
    content: "";
    position: absolute;
    left: 15px;
    top: 15px;
    bottom: 15px;
    right: 15px;
    background: #101010;
    opacity: 0.6;
    z-index: 2;
}
@media (max-width: 767px) {
    .video-wrap:before {
        left: 5px;
        top: 5px;
        bottom: 5px;
        right: 5px;
    }
}
.video-wrap img {
    width: 100%;
}
.video-wrap .video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.video-wrap .video-play a {
    position: relative;
    display: inline-block;
    height: 100px;
    width: 100px;
    line-height: 100px;
    color: #fff;
    font-size: 24px;
    text-align: center;
    background: #67b241;
    border-radius: 50%;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
@media (min-width: 768px) and (max-width: 991px) {
    .video-wrap .video-play a {
        height: 80px;
        width: 80px;
        line-height: 80px;
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .video-wrap .video-play a {
        height: 50px;
        width: 50px;
        line-height: 50px;
        font-size: 16px;
    }
}
.video-wrap .video-play a:before {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border: 2px solid #fff;
    border-radius: 50%;
}
.video-wrap-2 {
    position: relative;
    z-index: 10;
}
.video-wrap-2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #101010;
    opacity: 0.6;
    z-index: 2;
}
.video-wrap-2 img {
    width: 100%;
}
.video-wrap-2 .video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.video-wrap-2 .video-play a {
    position: relative;
    display: inline-block;
    height: 100px;
    width: 100px;
    line-height: 100px;
    color: #fff;
    font-size: 24px;
    text-align: center;
    background: #67b241;
    border-radius: 50%;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
@media (min-width: 768px) and (max-width: 991px) {
    .video-wrap-2 .video-play a {
        height: 80px;
        width: 80px;
        line-height: 80px;
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .video-wrap-2 .video-play a {
        height: 50px;
        width: 50px;
        line-height: 50px;
        font-size: 16px;
    }
}
.video-wrap-2 .video-play a:before {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border: 2px solid #fff;
    border-radius: 50%;
}
.video-wrap-3 {
    position: relative;
    z-index: 10;
}
.video-wrap-3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #101010;
    opacity: 0.6;
    z-index: 2;
}
.video-wrap-3 img {
    width: 100%;
}
@media (max-width: 767px) {
    .video-wrap-3 img {
        height: 300px;
        object-fit: cover;
    }
}
.video-wrap-3 .video-hover {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
}
.video-wrap-3 .video-hover a {
    position: relative;
    display: inline-block;
    height: 100px;
    width: 100px;
    line-height: 100px;
    color: #fff;
    font-size: 24px;
    text-align: center;
    background: #67b241;
    border-radius: 50%;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
@media (min-width: 768px) and (max-width: 991px) {
    .video-wrap-3 .video-hover a {
        height: 80px;
        width: 80px;
        line-height: 80px;
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .video-wrap-3 .video-hover a {
        height: 50px;
        width: 50px;
        line-height: 50px;
        font-size: 16px;
    }
}
.video-wrap-3 .video-hover a:before {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border: 2px solid #fff;
    border-radius: 50%;
}
.video-wrap-3 .video-hover h3 {
    font-size: 60px;
    line-height: 50px;
    color: #fff;
    margin-top: 50px;
    margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
    .video-wrap-3 .video-hover h3 {
        font-size: 35px;
        line-height: 40px;
        margin-top: 40px;
    }
}
@media (max-width: 767px) {
    .video-wrap-3 .video-hover h3 {
        font-size: 20px;
        line-height: 30px;
        margin-top: 20px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .video-wrap-3 .video-hover h3 {
        font-size: 22px;
        line-height: 26px;
        margin-top: 40px;
    }
}
.video-wrap-5 {
    position: relative;
    background: #fff;
    z-index: 10;
}
.video-wrap-5:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #101010;
    opacity: 0.6;
    z-index: 2;
}
.video-wrap-5 img {
    width: 100%;
}
.video-wrap-5 .video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.video-wrap-5 .video-play a {
    position: relative;
    display: inline-block;
    height: 100px;
    width: 100px;
    line-height: 100px;
    color: #fff;
    font-size: 24px;
    text-align: center;
    background: #67b241;
    border-radius: 50%;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
@media (min-width: 768px) and (max-width: 991px) {
    .video-wrap-5 .video-play a {
        height: 80px;
        width: 80px;
        line-height: 80px;
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .video-wrap-5 .video-play a {
        height: 50px;
        width: 50px;
        line-height: 50px;
        font-size: 16px;
    }
}
.video-wrap-5 .video-play a:before {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border: 2px solid #fff;
    border-radius: 50%;
}
.video-area {
    position: relative;
    z-index: 1;
}
.video-area .video-shape {
    position: absolute;
    right: 95px;
    top: -125px;
    z-index: -1;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .video-area .video-shape {
        right: 40px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .video-area .video-shape {
        display: none;
    }
}
@media (max-width: 767px) {
    .video-area .video-shape {
        display: none;
    }
}
.tab-wrapper {
    position: relative;
    margin-top: -90px;
    z-index: 99;
}
@media (max-width: 767px) {
    .tab-wrapper {
        margin-top: 0px;
        padding-top: 130px;
    }
}
.tab-wrapper .nav {
    border: 0;
}
.tab-wrapper .nav li {
    width: 33.3333%;
    margin-bottom: 0;
    padding: 0 15px;
}
.tab-wrapper .nav li:first-child {
    padding-left: 0;
}
.tab-wrapper .nav li:last-child {
    padding-right: 0;
}
@media (max-width: 767px) {
    .tab-wrapper .nav li {
        width: 100%;
        padding: 0;
    }
}
.tab-wrapper .nav li a {
    text-align: center;
    padding: 20px 20px;
    display: block;
    font-family: "Teko", sans-serif;
    font-weight: 600;
    color: #29282d;
    font-size: 30px;
    line-height: 50px;
    position: relative;
    z-index: 1;
    background: #f1f8ff;
    border: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
    .tab-wrapper .nav li a {
        font-size: 24px;
    }
}
.tab-wrapper .nav li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.tab-wrapper .nav li a.active {
    color: #fff;
}
.tab-wrapper .nav li a.active:before {
    visibility: visible;
    opacity: 1;
}
.tab-wrapper .tab-content-text h3 {
    color: #29282d;
    font-size: 30px;
    line-height: 35px;
    font-weight: 600;
    margin-bottom: 28px;
}
.tab-wrapper .tab-content-text h3 span {
    color: #67b241;
}
.tab-wrapper .tab-content-text p {
    color: #8e8e8e;
    font-size: 16px;
    line-height: 28px;
}
/* 23. Counter */
.counter-wrap {
    position: relative;
    margin-top: 25px;
}
.counter-wrap .counter-icon {
    position: relative;
    width: 80px;
    height: 80px;
}
.counter-wrap .counter-icon i {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    line-height: 80px;
    color: #fff;
    text-align: center;
    font-size: 50px;
    z-index: 3;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.counter-wrap .counter-icon:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #f1f8ff;
    left: -10px;
    top: -10px;
    z-index: 2;
}
.counter-wrap .counter-number {
    position: relative;
    padding-left: 10px;
}
.counter-wrap .counter-number h4 {
    padding-top: 35px;
    margin-bottom: 0;
    font-size: 50px;
    line-height: 50px;
    font-weight: 600;
    display: inline-block;
    position: relative;
}
.counter-wrap .counter-number h4 .symbol {
    color: #67b241;
    position: absolute;
    top: 18px;
    right: -36px;
}
.counter-wrap .counter-number p {
    font-weight: 500;
    font-size: 18px;
    color: #8e8e8e;
}
@media (max-width: 767px) {
    .counter-wrap .counter-number p {
        font-size: 15px;
    }
}
.counter-wrap .count-next {
    position: absolute;
    right: -36px;
    top: 16px;
    color: #dedede;
    font-size: 40px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .counter-wrap .count-next {
        right: 30px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .counter-wrap .count-next {
        display: none;
    }
}
@media (max-width: 767px) {
    .counter-wrap .count-next {
        display: none;
    }
}
.counter-wrap.text-white .counter-icon:before {
    background: #fff;
}
.counter-wrap.text-white .counter-number h4 {
    color: #fff;
}
.counter-wrap.text-white .counter-number p {
    color: #c4c4c4;
}
/* 24. Breadcrumb */
.breadcrumb-area {
    position: relative;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .breadcrumb-area {
        margin-top: 0;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-area {
        margin-top: 0;
    }
}
@media (max-width: 767px) {
    .breadcrumb-area {
        margin-top: 0;
    }
}
.breadcrumb-area .title {
    color: #fff;
    font-size: 48px;
    line-height: 45px;
    margin-bottom: 22px;
    font-family: "Teko", sans-serif;
    font-weight: 600;
    text-transform: capitalize;
}
@media (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-area .title {
        font-size: 50px;
        line-height: 60px;
    }
}
@media (max-width: 767px) {
    .breadcrumb-area .title {
        font-size: 40px;
        line-height: 50px;
    }
}
.breadcrumb-area ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumb-area ul li {
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
}
@media (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-area ul li {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .breadcrumb-area ul li {
        font-size: 16px;
    }
}
.breadcrumb-area ul li:after {
    content: "||";
    margin-left: 28px;
    margin-right: 24px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-area ul li:after {
        margin-left: 18px;
        margin-right: 14px;
    }
}
@media (max-width: 767px) {
    .breadcrumb-area ul li:after {
        margin-left: 10px;
        margin-right: 6px;
    }
}
.breadcrumb-area ul li:last-child:after {
    display: none;
}
.breadcrumb-area ul li a {
    display: inline-block;
    color: #fff;
}
.breadcrumb-area ul li a:hover {
    color: #67b241;
}
/* 25. Progress */
.progress-circular {
    margin-bottom: 30px;
    text-align: center;
}
.progress-circular h4 {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 0;
    margin-top: 20px;
    color: #363636;
}
.progress-circular p {
    font-size: 16px;
    line-height: 28px;
    color: #686868;
    margin-bottom: 0;
}
.progress-circular.text-white h4 {
    color: #fff;
}
.progress-circular.text-white p {
    color: #a0adc0;
}
/* 26. History */
.history-slider {
    position: relative;
}
.history-slider .swiper-button-prev {
    left: -150px;
    margin: 0;
    z-index: 99;
    height: 60px;
    width: 60px;
    font-size: 18px;
    color: #b8b8b8;
    background: #3e3e3e;
    border-radius: 50%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    transform: translateY(-50%);
    outline: none;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .history-slider .swiper-button-prev {
        display: none;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .history-slider .swiper-button-prev {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .history-slider .swiper-button-prev {
        display: none;
    }
}
@media (max-width: 767px) {
    .history-slider .swiper-button-prev {
        display: none;
    }
}
.history-slider .swiper-button-prev:hover {
    color: #fff;
    border: 0;
}
.history-slider .swiper-button-prev:hover:before {
    visibility: visible;
    opacity: 1;
}
.history-slider .swiper-button-prev:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.history-slider .swiper-button-next {
    right: -150px;
    margin: 0;
    z-index: 99;
    height: 60px;
    width: 60px;
    font-size: 18px;
    color: #b8b8b8;
    background: #3e3e3e;
    border-radius: 50%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    transform: translateY(-50%);
    outline: none;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .history-slider .swiper-button-next {
        display: none;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .history-slider .swiper-button-next {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .history-slider .swiper-button-next {
        display: none;
    }
}
@media (max-width: 767px) {
    .history-slider .swiper-button-next {
        display: none;
    }
}
.history-slider .swiper-button-next:hover {
    color: #fff;
    border: 0;
}
.history-slider .swiper-button-next:hover:before {
    visibility: visible;
    opacity: 1;
}
.history-slider .swiper-button-next:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.history-slider .swiper-bar {
    position: relative;
}
@media (max-width: 767px) {
    .history-slider .swiper-bar {
        display: none;
    }
}
.history-slider .swiper-bar:before {
    content: "";
    font-family: "Font Awesome 5 Pro";
    color: #2e2e2e;
    bottom: -80px;
    position: absolute;
    font-weight: 900;
    left: 0;
    z-index: 2;
    transform: rotate(180deg);
}
.history-slider .swiper-bar:after {
    content: "";
    font-family: "Font Awesome 5 Pro";
    color: #2e2e2e;
    bottom: -80px;
    position: absolute;
    font-weight: 900;
    right: 0;
    z-index: 2;
}
.history-slider .swiper-pagination-clickable {
    position: absolute;
    left: 50%;
    width: 100%;
    bottom: -80px;
    z-index: 99;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 767px) {
    .history-slider .swiper-pagination-clickable {
        display: none;
    }
}
.history-slider .swiper-pagination-clickable:before {
    content: "";
    width: 100%;
    height: 3px;
    background: #2e2e2e;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
.history-slider .swiper-pagination-clickable .swiper-pagination-bullet {
    width: 33.3333%;
    margin: 0;
    background: transparent;
    position: relative;
    height: 25px;
    outline: none;
    opacity: 1;
}
.history-slider .swiper-pagination-clickable .swiper-pagination-bullet:before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    background: #67b241;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.history-slider .swiper-pagination-clickable .swiper-pagination-bullet:after {
    content: "";
    background: #fff;
    width: 25px;
    height: 25px;
    opacity: 1;
    border: 2px solid #67b241;
    position: relative;
    z-index: 1;
    display: inline-block;
    outline: none;
    margin: 0 3px;
    border-radius: 50%;
}
.history-slider .swiper-pagination-clickable .swiper-pagination-bullet-active:before {
    background: #fff;
}
.history-wrap {
    padding: 50px 40px;
    background: #2e2e2e;
    position: relative;
    z-index: 1;
}
.history-wrap:hover:before {
    opacity: 1;
    visibility: visible;
}
.history-wrap:hover h4 {
    color: #fff;
}
.history-wrap:hover h4 span {
    color: #fff;
}
.history-wrap:hover p {
    color: #fff;
}
.history-wrap:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: #e73e36;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.history-wrap h4 {
    font-size: 24px;
    line-height: 25px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    padding-right: 50px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .history-wrap h4 {
        padding-right: 0;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .history-wrap h4 {
        padding-right: 0;
    }
}
.history-wrap h4 span {
    color: #67b241;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.history-wrap p {
    color: #b6b6b6;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
/* 27. Error */
.error-area {
    position: relative;
    z-index: 1;
}
.error-area .error-thumb {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -2;
}
@media (min-width: 768px) and (max-width: 991px) {
    .error-area .error-thumb {
        opacity: 0.2;
    }
}
@media (max-width: 767px) {
    .error-area .error-thumb {
        display: none;
    }
}
.error-page-content p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
}
/* 8. Contact */
.contact-area {
    background: #f1f8ff;
}
.contact-title h3 {
    width: 100%;
    padding-left: 50px;
}
@media (max-width: 767px) {
    .contact-title h3 {
        text-align: left;
        padding-left: 0;
    }
}
@media (max-width: 767px) {
    .contact-title h3:before {
        left: 0 !important;
        right: auto !important;
    }
}
@media (max-width: 767px) {
    .contact-title span {
        left: 0 !important;
        right: auto !important;
    }
}
.contact-text {
    text-align: right;
}
@media (max-width: 767px) {
    .contact-text {
        text-align: left;
    }
}
.contact-text p {
    width: 85%;
    line-height: 35px;
    margin-left: auto;
    font-size: 18px;
}
@media (max-width: 767px) {
    .contact-text p {
        width: 100%;
    }
}
.contact-text ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.contact-text ul li {
    position: relative;
    font-weight: 700;
    margin-top: 20px;
    margin-left: auto;
    width: 48%;
    margin-right: 30px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .contact-text ul li {
        width: 60%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .contact-text ul li {
        width: 80%;
    }
}
@media (max-width: 767px) {
    .contact-text ul li {
        width: 80%;
        margin-left: 30px;
        margin-right: 0;
    }
}
.contact-text ul li i {
    font-size: 20px;
    color: #67b241;
    top: 5px;
    margin-left: 5px;
    position: absolute;
}
@media (max-width: 767px) {
    .contact-text ul li i {
        right: 100%;
        margin-left: 0;
        margin-right: 5px;
    }
}
.contact-text.text-left {
    text-align: left;
}
.contact-text.text-left h3 {
    padding-left: 0;
    padding-right: 50px;
}
.contact-text.text-left p {
    margin-left: 0;
    margin-right: auto;
}
.contact-text.text-left .read-more {
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    padding-bottom: 5px;
    text-transform: uppercase;
    color: #67b241;
    border-bottom: 2px solid #67b241;
}
.contact-form .input-wrap {
    text-align: center;
    position: relative;
    margin-bottom: 10px;
}
.contact-form .input-wrap input, .contact-form .input-wrap textarea {
    padding: 20px 30px;
    color: #8E8E8E;
    font-weight: 500;
    font-size: 18px;
    border: 3px solid #fff;
    width: 100%;
}
.contact-form .input-wrap input:focus, .contact-form .input-wrap textarea:focus {
    border-color: #67b241;
}
.contact-form .input-wrap input:focus::-webkit-input-placeholder, .contact-form .input-wrap textarea:focus::-webkit-input-placeholder {
    color: transparent;
}
.contact-form .input-wrap input:focus:-moz-placeholder, .contact-form .input-wrap textarea:focus:-moz-placeholder {
    color: transparent;
}
.contact-form .input-wrap input:focus::-moz-placeholder, .contact-form .input-wrap textarea:focus::-moz-placeholder {
    color: transparent;
}
.contact-form .input-wrap input:focus:-ms-input-placeholder, .contact-form .input-wrap textarea:focus:-ms-input-placeholder {
    color: transparent;
}
.contact-form .input-wrap select {
    padding: 20px 30px;
    color: #8E8E8E;
    font-weight: 500;
    font-size: 18px;
    border: 3px solid #fff;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}
.contact-form .input-wrap select:focus {
    border-color: #67b241;
}
.contact-form .input-icon {
    position: relative;
}
.contact-form .input-icon:before {
    content: "";
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    top: 25px;
    color: #67b241;
    right: 30px;
    pointer-events: none;
}
.contact-form .icon-name:before {
    content: "";
}
.contact-form .icon-email:before {
    content: "";
}
.contact-form .icon-select:before {
    content: "";
}
.contact-form .icon-msg:before {
    content: "";
}
.contact-form-2 .input-wrap input, .contact-form-2 .input-wrap textarea {
    border: 3px solid #dfe8f0;
}
.contact-form-2 .input-wrap input:focus, .contact-form-2 .input-wrap textarea:focus {
    border-color: #67b241;
}
.contact-form-2 .input-wrap select {
    border: 3px solid #dfe8f0;
}
.contact-form-2 .input-wrap select:focus {
    border-color: #67b241;
}
.contact-map {
    height: 600px;
    width: 100%;
}
.contact-info {
    /* margin-top: 50px;*/
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.contact-info .icon-box {
    width: 80px;
    height: 80px;
    line-height: 80px;
    position: relative;
    z-index: 2;
}
.contact-info .icon-box:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    top: -10px;
    left: -10px;
    z-index: -1;
}
.contact-info .icon-box i {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    position: relative;
    color: #fff;
    font-size: 30px;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
.contact-info .info-content {
    padding: 0 25px;
}
.contact-info .info-content h4 {
    font-size: 24px;
    line-height: 30px;
    color: #29282d;
    font-weight: 600;
    margin-bottom: 0;
}
.contact-info .info-content span {
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
    color: #67b241;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .contact-info-2 .icon-box {
        width: 70px;
        height: 70px;
        line-height: 70px;
    }
}
.contact-info-2 .icon-box:before {
    background: #f1f8ff;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .contact-info-2 .icon-box i {
        width: 70px;
        height: 70px;
        line-height: 70px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .contact-info-2 .info-content {
        padding: 0 0 0 15px;
    }
}
/* 16. Class */
.class-area {
    background: #f1f8ff;
    position: relative;
    z-index: 2;
}
.class-area .class-content {
    padding-left: 75px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .class-area .class-content {
        padding-left: 0;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .class-area .class-content {
        padding-left: 0;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .class-area .class-content {
        padding-left: 0;
    }
}
@media (max-width: 767px) {
    .class-area .class-content {
        padding-left: 0;
    }
}
.class-area .class-content h3 {
    color: #29282d;
    font-size: 50px;
    line-height: 50px;
    font-weight: 600;
    margin-bottom: 28px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .class-area .class-content h3 {
        font-size: 30px;
        line-height: 35px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .class-area .class-content h3 {
        font-size: 30px;
        line-height: 35px;
    }
}
.class-area .class-content h3 span {
    color: #67b241;
}
.class-area .class-content p {
    color: #8e8e8e;
    font-size: 16px;
    line-height: 28px;
}
.class-area .class-video {
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .class-area .class-video {
        width: 40%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .class-area .class-video {
        width: 100%;
        position: inherit;
        height: 400px;
    }
}
@media (max-width: 767px) {
    .class-area .class-video {
        width: 100%;
        position: inherit;
        height: 400px;
    }
}
.class-area .class-video:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #101010;
    opacity: 0.6;
    z-index: 2;
}
.class-area .class-video img {
    width: 100%;
    object-fit: cover;
}
.class-area .class-video .video-hover {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 3;
    text-align: center;
}
.class-area .class-video .video-hover a {
    position: relative;
    display: inline-block;
    height: 100px;
    width: 100px;
    line-height: 100px;
    color: #fff;
    font-size: 24px;
    text-align: center;
    background: #67b241;
    border-radius: 50%;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
@media (min-width: 768px) and (max-width: 991px) {
    .class-area .class-video .video-hover a {
        height: 80px;
        width: 80px;
        line-height: 80px;
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .class-area .class-video .video-hover a {
        height: 50px;
        width: 50px;
        line-height: 50px;
        font-size: 16px;
    }
}
.class-area .class-video .video-hover a:before {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border: 2px solid #fff;
    border-radius: 50%;
}
.class-area .class-video .video-hover h3 {
    font-size: 60px;
    line-height: 50px;
    color: #fff;
    margin-top: 50px;
    margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .class-area .class-video .video-hover h3 {
        font-size: 40px;
        line-height: 40px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .class-area .class-video .video-hover h3 {
        font-size: 40px;
        line-height: 40px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .class-area .class-video .video-hover h3 {
        font-size: 35px;
        line-height: 40px;
        margin-top: 40px;
    }
}
@media (max-width: 767px) {
    .class-area .class-video .video-hover h3 {
        font-size: 20px;
        line-height: 30px;
        margin-top: 20px;
    }
}
@media (min-width: 320px) and (max-width: 425px) {
    .class-area .class-video .video-hover h3 {
        font-size: 22px;
        line-height: 26px;
        margin-top: 40px;
    }
}
.class-details-content h3 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 15px;
}
.class-details-content .class-details-thumb img {
    width: 100%;
}
.class-details-content .icon-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.class-details-content .icon-list li {
    margin-bottom: 20px;
    display: flex;
}
.class-details-content .icon-list li i {
    color: #67b241;
    margin-right: 20px;
    margin-top: 10px;
}
.join-our-team {
    text-align: center;
    padding: 88px 40px;
    background-color: #67b241;
    background-image: -moz-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -webkit-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
    background-image: -ms-linear-gradient(-72deg, #67b241 0%, #3459e0 99%);
}
@media (min-width: 992px) and (max-width: 1200px) {
    .join-our-team {
        padding: 98px 25px;
    }
}
.join-our-team h3 {
    font-size: 50px;
    line-height: 50px;
    color: #fff;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .join-our-team h3 {
        font-size: 40px;
        line-height: 40px;
    }
}
.join-our-team .btn {
    background: #1e2c8a;
    padding: 24px 25px;
    color: #fff;
    text-transform: uppercase;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .join-our-team .btn {
        padding: 24px 15px;
        font-size: 14px;
    }
}
.join-our-team.join-team-spacing {
    padding: 76px 40px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .join-our-team.join-team-spacing {
        padding: 84px 25px;
    }
}
/* Custom Styles */
.loss-plan li{list-style: none}
.mb-10{
	margin-bottom: 10px !important;
}
.online-btn a {
    background: #7352d1 !important;
    color: #fff !important;
}
.online-btn a:hover {
    background: #67b241 !important;
}
.service-content li{
	text-align: left !important;
}
.price-tag {
    background: #7352d1;
    font-weight: 600;
    padding: 10px
}
.feature-content h3 {
    font-size: 24px;
    font-weight: 600;
}
.marks {
    font-weight: 700 !important;
}
.text-green {
    color: #67b241;
}
.blog-wrap-2 {
    padding: 10px 10px;
    box-shadow: 0px 0px 6px 0px rgba(26, 26, 26, 0.2);
    background: #fff;
    margin-top: 4px;
    margin-bottom: 30px;
    min-height: 60vh;
    border-radius: 25px
}
.bg-light-green {
    background: #f6fff2;
}
/* Tab function */
