/*-----------------------------------------------------------------------------------
     

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================
1.Common CSS
2.HEADER css
3.BANNER css 
4.FEATURES css
5.SERVICES css
7.GALLERY css 
8.FEEDBACK css
9.FAQ css
10.BLOG css

-----------------------------------------------------------------------------------*/

/*===========================
    1. COMMON css 
===========================*/

@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i,800&display=swap");
body {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #686868;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
}

i,
span,
a {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #333333;
    margin: 0px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #686868;
    margin: 0px;
}

.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

/*===== All Button Style =====*/

.main-btn {
    display: inline-block;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 0px;
    padding: 0 45px;
    font-size: 15px;
    line-height: 70px;
    border-radius: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    background: linear-gradient(120deg, #6cbe03 40%, #f4a700 80%);
    position: relative;
    overflow: hidden;
    z-index: 5;
    text-transform: uppercase;
}

.main-btn::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #6cbe03;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.main-btn:hover {
    color: #fff;
}

.main-btn:hover::before {
    opacity: 1;
}

.main-btn.main-btn-2::before {
    opacity: 1;
}

.main-btn.main-btn-2:hover::before {
    opacity: 0;
}

.section-title {
    padding-bottom: 40px;
}

.section-title span {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    color: #6cbe03;
    position: relative;
}

.section-title span::before {
    position: absolute;
    content: '';
    left: -66px;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    width: 45px;
    background: #6cbe03;
}

.section-title span::after {
    position: absolute;
    content: '';
    right: -66px;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    width: 45px;
    background: #6cbe03;
}

.section-title .title {
    font-size: 50px;
    line-height: 55px;
    padding-top: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-title .title {
        font-size: 42px;
        line-height: 47px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title .title {
        font-size: 40px;
        line-height: 46px;
    }
}

@media (max-width: 767px) {
    .section-title .title {
        font-size: 33px;
        line-height: 40px;
    }
}

.section-title.section-title-2 span {
    color: #fff;
}

.section-title.section-title-2 span::before {
    background: #fff;
}

.section-title.section-title-2 span::after {
    background: #fff;
}

.section-title.section-title-2 .title {
    color: #fff;
}

/*===== page preloader Style =====*/

#loading {
    background: linear-gradient(120deg, #6cbe03 40%, #f4a700 80%);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 99;
    margin-top: 0px;
    top: 0px;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 20px;
    width: 140px;
    margin-top: -10px;
    margin-left: -70px;
    -webkit-animation: loading-center-absolute 1s infinite;
    animation: loading-center-absolute 1s infinite;
}

.object {
    width: 20px;
    height: 20px;
    background-color: #FFF;
    float: left;
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    margin-right: 20px;
    margin-bottom: 20px;
}

.object:last-child {
    margin-right: 0px;
}

#object_one {
    -webkit-animation: object_one 1s infinite;
    animation: object_one 1s infinite;
}

#object_two {
    -webkit-animation: object_two 1s infinite;
    animation: object_two 1s infinite;
}

#object_three {
    -webkit-animation: object_three 1s infinite;
    animation: object_three 1s infinite;
}

#object_four {
    -webkit-animation: object_four 1s infinite;
    animation: object_four 1s infinite;
}

@-webkit-keyframes loading-center-absolute {
    100% {
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loading-center-absolute {
    100% {
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes object_one {
    50% {
        -ms-transform: translate(20px, 20px);
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
    }
}

@keyframes object_one {
    50% {
        -ms-transform: translate(20px, 20px);
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
    }
}

@-webkit-keyframes object_two {
    50% {
        -ms-transform: translate(-20px, 20px);
        -webkit-transform: translate(-20px, 20px);
        transform: translate(-20px, 20px);
    }
}

@keyframes object_two {
    50% {
        -ms-transform: translate(-20px, 20px);
        -webkit-transform: translate(-20px, 20px);
        transform: translate(-20px, 20px);
    }
}

@-webkit-keyframes object_three {
    50% {
        -ms-transform: translate(20px, -20px);
        -webkit-transform: translate(20px, -20px);
        transform: translate(20px, -20px);
    }
}

@keyframes object_three {
    50% {
        -ms-transform: translate(20px, -20px);
        -webkit-transform: translate(20px, -20px);
        transform: translate(20px, -20px);
    }
}

@-webkit-keyframes object_four {
    50% {
        -ms-transform: translate(-20px, -20px);
        -webkit-transform: translate(-20px, -20px);
        transform: translate(-20px, -20px);
    }
}

@keyframes object_four {
    50% {
        -ms-transform: translate(-20px, -20px);
        -webkit-transform: translate(-20px, -20px);
        transform: translate(-20px, -20px);
    }
}

/*
Sidebar Modal Area Style
======================================================*/

.sidebar-modal {
    position: relative;
}

.sidebar-modal .navbar-nav li a {
    padding: 10px 0px 10px 15px;
}

.sidebar-modal .modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 450px;
    height: 100%;
}

.sidebar-modal .modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
    border-radius: 0;
    border: none;
    background-color: #ffffff;
}

.sidebar-modal .modal.right .modal-body {
    padding: 30px;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget {
    margin-bottom: 35px;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .title {
    position: relative;
    z-index: 1;
    margin-bottom: 35px;
    color: #333;
    font-weight: 600;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 5px;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .title::before {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 70px;
    height: 2px;
    border-radius: 5px;
    background: #6cbe03;
    content: '';
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget:last-child {
    margin-bottom: 0;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul {
    padding: 0;
    margin: 0;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul li {
    margin-bottom: 10px;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul li:last-child {
    margin-bottom: 0;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul li a {
    font-size: 14px;
    color: #686868;
    font-weight: 600;
    text-transform: capitalize;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul li a:hover {
    color: #cc8c18;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li {
    position: relative;
    font-weight: 500;
    padding-left: 45px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 14px;
    color: #24416b;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li span {
    font-size: 13px;
    display: block;
    font-weight: 400;
    color: #818992;
    margin-top: 5px;
    text-transform: initial;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li i {
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 29px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background-color: #6cbe03;
    border-radius: 4px;
    font-size: 15px;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li:hover i {
    color: #ffffff;
    background: #cc8c18;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li:last-child {
    margin-bottom: 0;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list {
    text-align: left;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li {
    display: inline-block;
    padding-right: 5px;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li a i {
    width: 25px;
    height: 25px;
    display: inline-block;
    text-align: center;
    line-height: 25px;
    border-radius: 4px;
    color: #ffffff;
    background-color: #6cbe03;
    font-size: 12px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li a i:hover {
    background-color: #cc8c18;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li:hover {
    color: #cc8c18;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li a:hover {
    color: #ffffff;
}

.sidebar-modal .modal.right.fade.show .modal-dialog {
    right: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sidebar-modal .modal.right.fade .modal-dialog {
    right: -320px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sidebar-modal .modal-header {
    display: inline;
    padding: 0;
    border: none;
}

.sidebar-modal .modal-header .close {
    height: 30px;
    width: 30px;
    color: #6cbe03;
    margin: 0px;
    padding: 0px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: none;
    opacity: 1;
}

.sidebar-modal .modal-header .close i::before {
    margin-left: 0;
    font-size: 20px;
}

.sidebar-modal .modal-header h2 {
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 30px 25px;
}

.sidebar-modal button:focus {
    outline: 0px;
}

.modal-open .modal {
    z-index: 99999;
}

/*================================================
Search Overlay CSS
=================================================*/

.search-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.search-overlay .search-overlay-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.search-overlay .search-overlay-layer:nth-child(1) {
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.search-overlay .search-overlay-layer:nth-child(2) {
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: all 0.3s ease-in-out 0.3s;
    transition: all 0.3s ease-in-out 0.3s;
}

.search-overlay .search-overlay-layer:nth-child(3) {
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.9s ease-in-out 0.6s;
    transition: all 0.9s ease-in-out 0.6s;
}

.search-overlay .search-overlay-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 50px;
    z-index: 2;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    -webkit-transition: all 0.9s ease-in-out 1.5s;
    transition: all 0.9s ease-in-out 1.5s;
    opacity: 0;
    visibility: hidden;
}

.search-overlay .search-overlay-close .search-overlay-close-line {
    width: 100%;
    height: 3px;
    float: left;
    margin-bottom: 5px;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-overlay .search-overlay-close .search-overlay-close-line:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.search-overlay .search-overlay-close .search-overlay-close-line:nth-child(2) {
    margin-top: -7px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.search-overlay .search-overlay-close:hover .search-overlay-close-line {
    background: #378218;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.search-overlay .search-overlay-form {
    -webkit-transition: all 0.9s ease-in-out 1.4s;
    transition: all 0.9s ease-in-out 1.4s;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    z-index: 2;
    max-width: 500px;
    width: 500px;
}

.search-overlay .search-overlay-form form {
    position: relative;
}

.search-overlay .search-overlay-form form .input-search {
    display: block;
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 30px;
    padding-left: 20px;
    color: #333333;
    font-size: 15px;
}

.search-overlay .search-overlay-form form button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 45px;
    color: #ffffff;
    height: 45px;
    border-radius: 50%;
    background-color: #378218;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border: none;
    font-size: 20px;
    line-height: 45px;
}

.search-overlay .search-overlay-form form button:hover {
    background-color: #333333;
    color: #ffffff;
}

.search-overlay.search-overlay-active.search-overlay {
    opacity: 1;
    visibility: visible;
}

.search-overlay.search-overlay-active.search-overlay .search-overlay-layer {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.search-overlay.search-overlay-active.search-overlay .search-overlay-close {
    opacity: 1;
    visibility: visible;
}

.search-overlay.search-overlay-active.search-overlay .search-overlay-form {
    opacity: 1;
    visibility: visible;
}

/* Pagination */

.page-pagination {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-pagination li {
    display: inline-block;
    margin: 0 4px 10px;
}

.page-pagination li a {
    width: 50px;
    height: 50px;
    line-height: 46px;
    display: block;
    border: 2px solid #ebebeb;
    text-align: center;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.page-pagination li span {
    font-size: 12px;
}

.page-pagination li.active a,
.page-pagination li a:hover {
    color: #fff;
    border-color: transparent;
}

/*===========================
    2.HEADER css 
===========================*/

.header-area .header-top {
    background: #eef2fb;
}

.header-area .header-top .header-top-content {
    height: 60px;
}

.header-area .header-top .header-top-content .header-top-text p {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .header-area .header-top .header-top-content .header-top-text p {
        font-size: 14px;
        line-height: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .header-area .header-top .header-top-content .header-top-text p {
        font-size: 16px;
        line-height: 28px;
    }
}

.header-area .header-top .header-top-content .header-top-text p i {
    color: #6cbe03;
    font-size: 24px;
    padding-right: 14px;
}

.header-area .header-top .header-top-content .header-top-btns ul li {
    display: inline-block;
}

.header-area .header-top .header-top-content .header-top-btns ul li a {
    font-size: 17px;
    color: #a5a5a5;
    margin-left: 10px;
}

.header-area .header-top .header-top-content .header-top-btns ul li a:hover {
    color: #6cbe03;
}

.header-area .header-top .header-top-content .header-top-btns>a {
    line-height: 35px;
    padding: 0 20px;
    color: #fff;
    background: linear-gradient(120deg, #6cbe03 40%, #f4a700 80%);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 30px;
}

.header-area .header-top .header-top-content .header-top-btns>a i {
    padding-left: 6px;
}

.header-area.header-2-area .header-menu {
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 99;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .header-area.header-2-area .header-menu {
        background: #fff;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area.header-2-area .header-menu {
        background: #fff;
    }
}

@media (max-width: 767px) {
    .header-area.header-2-area .header-menu {
        background: #fff;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area.header-2-area .header-menu .navigation .navbar .navbar-toggler .toggler-icon {
        background: #333333;
    }
}

@media (max-width: 767px) {
    .header-area.header-2-area .header-menu .navigation .navbar .navbar-toggler .toggler-icon {
        background: #333333;
    }
}

.header-area.header-2-area .header-menu .navigation .navbar .navbar-nav .nav-item {
    margin: 0 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .header-area.header-2-area .header-menu .navigation .navbar .navbar-nav .nav-item {
        margin: 0 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .header-area.header-2-area .header-menu .navigation .navbar .navbar-nav .nav-item a {
        color: #333333;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area.header-2-area .header-menu .navigation .navbar-btns {
        position: absolute;
        right: 80px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 767px) {
    .header-area.header-2-area .header-menu .navigation .navbar-btns {
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
    }
}

.header-area.header-2-area .header-menu .navigation .navbar-btns ul li a {
    color: #333333;
}

.header-area.header-2-area .header-menu .navigation .navbar-btns ul li:last-child a {
    color: #fff;
    background: #6cbe03;
    background-image: -moz-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
    background-image: -webkit-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
    background-image: -ms-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
    border-radius: 5px;
    padding: 3px 13px;
}

.header-area.header-3-area .header-top {
    background: #6cbe03;
}

.header-area.header-3-area .header-top .header-top-content .header-top-text ul li {
    display: inline-block;
    margin-right: 24px;
}

.header-area.header-3-area .header-top .header-top-content .header-top-text ul li a {
    color: #fff;
}

.header-area.header-3-area .header-top .header-top-content .header-top-text ul li a i {
    padding-right: 6px;
}

.header-area.header-3-area .header-top .header-top-content .header-top-btns ul li a {
    color: #fff;
}

.header-area.header-3-area .header-top .header-top-content .header-top-btns>a {
    background: #f4a700;
}

.header-area.header-3-area .header-menu {
    background: #fff;
}

.header-area.header-3-area .header-menu .navigation .navbar .navbar-toggler .toggler-icon {
    background: #333333;
}

.header-area.header-3-area .header-menu .navigation .navbar .navbar-nav .nav-item a {
    color: #333333;
}

.header-area.header-3-area .header-menu .navigation .navbar .navbar-nav .nav-item a.active,
.header-area.header-3-area .header-menu .navigation .navbar .navbar-nav .nav-item a:hover {
    color: #6cbe03;
}

.header-area.header-3-area .header-menu .navigation .navbar .navbar-btns .header-flag {
    margin-right: 28px;
}

.header-area.header-3-area .header-menu .navigation .navbar .navbar-btns .header-flag a span {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
}

.header-area.header-3-area .header-menu .navigation .navbar .navbar-btns .header-flag a img {
    margin-right: 8px;
}

.header-area.header-3-area .header-menu .navigation .navbar .navbar-btns ul li a {
    color: #333333;
}

.header-info {
    background: #02060e;
}

.header-info .header-info-item {
    height: 120px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .header-info .header-info-item .logo img {
        width: 70%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .header-info .header-info-item .logo img {
        width: auto;
    }
}

.header-info .header-info-item .header-info .item {
    padding-left: 55px;
    position: relative;
    margin: 0 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .header-info .header-info-item .header-info .item {
        margin: 0 20px;
    }
}

.header-info .header-info-item .header-info .item i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    color: #6cbe03;
}

.header-info .header-info-item .header-info .item span {
    color: #9a9a9a;
    display: block;
}

.header-info .header-info-item .header-info .item .title {
    font-weight: 600;
    font-size: 20px;
    color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .header-info .header-info-item .header-info .item .title {
        font-size: 18px;
    }
}

.header-menu {
    height: 80px;
    background: #6cbe03;
}

.navigation {
    padding: 0;
    width: 100%;
    z-index: 99;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation {
        margin-top: 21px;
    }
}

@media (max-width: 767px) {
    .navigation {
        margin-top: 21px;
    }
}

.navigation .navbar {
    position: relative;
    padding: 0;
}

.navigation .navbar .navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #fff;
    margin: 5px 0;
    display: block;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navigation .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
}

.navigation .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}

.navigation .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .navbar .navbar-collapse {
        position: absolute;
        top: 150%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 8;
        padding: 10px 16px;
        box-shadow: 0 26px 48px 0 rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 767px) {
    .navigation .navbar .navbar-collapse {
        position: absolute;
        top: 150%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 8;
        padding: 10px 16px;
        box-shadow: 0 26px 48px 0 rgba(0, 0, 0, 0.15);
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .navigation .navbar .navbar-collapse {
        top: 150%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .navbar .navbar-nav {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .navigation .navbar .navbar-nav {
        margin-right: 0;
    }
}

.navigation .navbar .navbar-nav .nav-item {
    position: relative;
    margin-right: 33px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .navigation .navbar .navbar-nav .nav-item {
        margin-right: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .navbar .navbar-nav .nav-item {
        margin-right: 0px;
        margin-left: 0px;
    }
}

@media (max-width: 767px) {
    .navigation .navbar .navbar-nav .nav-item {
        margin-right: 0px;
        margin-left: 0px;
    }
}

.navigation .navbar .navbar-nav .nav-item a {
    font-size: 18px;
    font-weight: 600;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: #fff;
    text-transform: capitalize;
    position: relative;
    margin: 0;
    line-height: 80px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .navigation .navbar .navbar-nav .nav-item a {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .navbar .navbar-nav .nav-item a {
        padding: 0;
        display: block;
        color: #404040;
        border: 0;
        margin: 0;
        line-height: 45px;
    }
}

@media (max-width: 767px) {
    .navigation .navbar .navbar-nav .nav-item a {
        padding: 0;
        display: block;
        color: #404040;
        border: 0;
        margin: 0;
        line-height: 45px;
    }
}

.navigation .navbar .navbar-nav .nav-item a:hover {
    color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .navbar .navbar-nav .nav-item a:hover {
        color: #333333;
    }
}

@media (max-width: 767px) {
    .navigation .navbar .navbar-nav .nav-item a:hover {
        color: #333333;
    }
}

.navigation .navbar .navbar-nav .nav-item .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 220px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 99;
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .navbar .navbar-nav .nav-item .sub-menu {
        transition: 0s;
    }
}

@media (max-width: 767px) {
    .navigation .navbar .navbar-nav .nav-item .sub-menu {
        transition: 0s;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .navbar .navbar-nav .nav-item .sub-menu {
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        top: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        right: auto;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transition: all none ease-out 0s;
        -moz-transition: all none ease-out 0s;
        -ms-transition: all none ease-out 0s;
        -o-transition: all none ease-out 0s;
        transition: all none ease-out 0s;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        text-align: left;
        border-top: 0;
    }
}

@media (max-width: 767px) {
    .navigation .navbar .navbar-nav .nav-item .sub-menu {
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        top: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        right: auto;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transition: all none ease-out 0s;
        -moz-transition: all none ease-out 0s;
        -ms-transition: all none ease-out 0s;
        -o-transition: all none ease-out 0s;
        transition: all none ease-out 0s;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        text-align: left;
        border-top: 0;
    }
}

.navigation .navbar .navbar-nav .nav-item .sub-menu>li {
    position: relative;
}

.navigation .navbar .navbar-nav .nav-item .sub-menu>li .sub-nav-toggler {
    color: #404040;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navigation .navbar .navbar-nav .nav-item .sub-menu>li a {
    display: block;
    padding: 8px 24px;
    position: relative;
    color: #404040;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-radius: 0;
    margin: 0 0;
    line-height: 30px;
}

.navigation .navbar .navbar-nav .nav-item .sub-menu>li a i {
    float: right;
    font-size: 14px;
    margin-top: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .navbar .navbar-nav .nav-item .sub-menu>li a i {
        display: none;
    }
}

@media (max-width: 767px) {
    .navigation .navbar .navbar-nav .nav-item .sub-menu>li a i {
        display: none;
    }
}

.navigation .navbar .navbar-nav .nav-item .sub-menu>li a .sub-nav-toggler i {
    display: inline-block;
}

.navigation .navbar .navbar-nav .nav-item .sub-menu>li .sub-menu {
    right: auto;
    left: 100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .navbar .navbar-nav .nav-item .sub-menu>li .sub-menu {
        padding-left: 30px;
    }
}

@media (max-width: 767px) {
    .navigation .navbar .navbar-nav .nav-item .sub-menu>li .sub-menu {
        padding-left: 30px;
    }
}

.navigation .navbar .navbar-nav .nav-item .sub-menu>li .sub-menu li a::before {
    display: none;
}

.navigation .navbar .navbar-nav .nav-item .sub-menu>li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.navigation .navbar .navbar-nav .nav-item .sub-menu>li:hover .sub-nav-toggler {
    color: #fff;
}

.navigation .navbar .navbar-nav .nav-item .sub-menu>li:hover>a {
    background-color: #6cbe03;
    color: #fff !important;
}

.navigation .navbar .navbar-nav .nav-item .sub-menu>li:hover>a::before {
    opacity: 1;
}

.navigation .navbar .navbar-nav .nav-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.navigation .navbar .navbar-nav .nav-item .sub-nav-toggler {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .navbar .navbar-nav .nav-item .sub-nav-toggler {
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0;
        padding: 10px 14px;
        font-size: 16px;
        background: none;
        border: 0;
        color: #404040;
    }
}

@media (max-width: 767px) {
    .navigation .navbar .navbar-nav .nav-item .sub-nav-toggler {
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0;
        padding: 10px 14px;
        font-size: 16px;
        background: none;
        border: 0;
        color: #404040;
    }
}

.navigation .navbar .navbar-nav .nav-item .sub-nav-toggler img {
    width: 30%;
}

.navigation .navbar .navbar-nav .nav-item.active a {
    color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .navbar .navbar-nav .nav-item.active a {
        color: #333333;
    }
}

@media (max-width: 767px) {
    .navigation .navbar .navbar-nav .nav-item.active a {
        color: #333333;
    }
}

.navigation .navbar .navbar-nav .nav-item.active a::before {
    width: 100%;
}

.navigation .navbar .navbar-nav .nav-item:last-child {
    margin-right: 0;
}

.navigation .navbar .navbar-btns ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}

.navigation .navbar .navbar-btns ul li {
    display: inline-block;
}

.navigation .navbar .navbar-btns ul li a {
    font-size: 18px;
    color: #fff;
    margin-left: 44px;
}

.navigation .navbar .navbar-btns ul li:first-child a {
    margin-left: 0;
}

.navigation .navbar .navbar-btns ul li:last-child a {
    font-size: 30px;
}

.header-flag .flag-wrap {
    position: relative;
    top: 0px;
    margin-right: 40px;
}

.header-flag .flag-wrap .flag-item-top {
    padding-left: 0;
}

.header-flag .flag-wrap .flag-item-top .flag-bar {
    position: relative;
}

.header-flag .flag-wrap .flag-item-top .flag-bar img {
    width: 40px;
}

.header-flag .flag-wrap .flag-item-top .flag-bar span {
    position: absolute;
    top: 13px;
    left: 30px;
    color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 15px;
    font-weight: 500;
    padding-left: 20px;
    display: flex;
    align-items: center;
}

.header-flag .flag-wrap .flag-item-top .flag-bar span i {
    padding-left: 6px;
}

.header-flag .flag-wrap .flag-item-top .flag-item-bottom {
    position: absolute;
    bottom: -255px;
    padding: 20px !important;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    width: 250px;
    left: -158px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
    display: block;
}

.header-flag .flag-wrap .flag-item-top .flag-item-bottom::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    content: "";
    border-top: 0;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    border-left: 8px solid transparent;
    top: -8px;
    right: 57px;
}

.header-flag .flag-wrap .flag-item-top .flag-item-bottom .flag-item {
    margin-bottom: 10px;
    padding-left: 0;
    margin-right: 0;
    display: block;
    position: unset;
}

.header-flag .flag-wrap .flag-item-top .flag-item-bottom .flag-item:last-child {
    margin-bottom: 0;
}

.header-flag .flag-wrap .flag-item-top .flag-item-bottom .flag-item .flag-link {
    color: #000000;
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.header-flag .flag-wrap .flag-item-top .flag-item-bottom .flag-item .flag-link img {
    width: 20px;
    margin-right: 5px;
}

.header-flag .flag-wrap .flag-item-top .flag-item-bottom .flag-item .flag-link:hover {
    color: #6cbe03;
}

.header-flag .flag-wrap .flag-item-top:hover .flag-bar span {
    color: #6cbe03;
}

.header-flag .flag-wrap .flag-item-top:hover .flag-item-bottom {
    visibility: visible;
    opacity: 1;
    bottom: -258px;
}

/*===========================
    3.BANNER css 
===========================*/

.banner-area .banner-item {
    height: 850px;
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}

.banner-area .banner-item::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(2, 6, 14, 0.5);
}

.banner-area .banner-item .banner-content {
    overflow: hidden;
}

.banner-area .banner-item .banner-content span {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 767px) {
    .banner-area .banner-item .banner-content span {
        font-size: 16px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .banner-area .banner-item .banner-content span {
        font-size: 20px;
    }
}

.banner-area .banner-item .banner-content .title {
    font-size: 130px;
    color: #fff;
    line-height: 125px;
    padding-top: 29px;
    padding-bottom: 27px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-area .banner-item .banner-content .title {
        font-size: 110px;
        line-height: 110px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-area .banner-item .banner-content .title {
        font-size: 110px;
        line-height: 110px;
    }
}

@media (max-width: 767px) {
    .banner-area .banner-item .banner-content .title {
        font-size: 45px;
        line-height: 55px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .banner-area .banner-item .banner-content .title {
        font-size: 80px;
        line-height: 90px;
    }
}

.banner-area .banner-item .banner-content p {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 47px;
}

@media (max-width: 767px) {
    .banner-area .banner-item .banner-content p {
        font-size: 18px;
    }
}

.banner-area .banner-item .banner-content ul li {
    display: inline-block;
}

@media (max-width: 767px) {
    .banner-area .banner-item .banner-content ul li {
        margin-bottom: 20px;
    }
}

.banner-area .banner-item .banner-content ul li a {
    margin-right: 10px;
}

.banner-area .slick-arrow {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    color: #fff;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    background: #6cbe03;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
}

.banner-area .slick-arrow.next {
    top: 57% !important;
    right: 90px !important;
}

.banner-area.banner-3-area .banner-item {
    background: #f7f9ff;
}

.banner-area.banner-3-area .banner-item::before {
    background-image: url(../images/banner-bg-4.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 45%;
    left: auto;
    right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-area.banner-3-area .banner-item::before {
        width: 35%;
    }
}

@media (max-width: 767px) {
    .banner-area.banner-3-area .banner-item::before {
        width: 0;
    }
}

.banner-area.banner-3-area .banner-item .banner-content span {
    font-size: 20px;
    color: #6cbe03;
}

@media (max-width: 767px) {
    .banner-area.banner-3-area .banner-item .banner-content span {
        font-size: 13px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .banner-area.banner-3-area .banner-item .banner-content span {
        font-size: 17px;
    }
}

.banner-area.banner-3-area .banner-item .banner-content .title {
    font-size: 100px;
    line-height: 100px;
    color: #333333;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-area.banner-3-area .banner-item .banner-content .title {
        font-size: 80px;
        line-height: 80px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-area.banner-3-area .banner-item .banner-content .title {
        font-size: 70px;
        line-height: 70px;
        padding-right: 80px;
    }
}

@media (max-width: 767px) {
    .banner-area.banner-3-area .banner-item .banner-content .title {
        font-size: 45px;
        line-height: 45px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .banner-area.banner-3-area .banner-item .banner-content .title {
        font-size: 60px;
        line-height: 60px;
    }
}

.banner-area.banner-3-area .banner-item .banner-content p {
    font-size: 22px;
    font-weight: 600;
    color: #686868;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-area.banner-3-area .banner-item .banner-content p {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-area.banner-3-area .banner-item .banner-content p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .banner-area.banner-3-area .banner-item .banner-content p {
        font-size: 16px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .banner-area.banner-3-area .banner-item .banner-content p {
        font-size: 18px;
    }
}

.banner-area-2 .banner-item {
    height: 850px;
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .banner-area-2 .banner-item {
        height: 750px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-area-2 .banner-item {
        height: 640px;
    }
}

.banner-area-2 .banner-item .banner-content {
    overflow: hidden;
}

.banner-area-2 .banner-item .banner-content span {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 767px) {
    .banner-area-2 .banner-item .banner-content span {
        font-size: 16px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .banner-area-2 .banner-item .banner-content span {
        font-size: 20px;
    }
}

.banner-area-2 .banner-item .banner-content .title {
    font-size: 110px;
    color: #fff;
    line-height: 125px;
    padding-top: 29px;
    padding-bottom: 27px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-area-2 .banner-item .banner-content .title {
        font-size: 110px;
        line-height: 110px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-area-2 .banner-item .banner-content .title {
        font-size: 110px;
        line-height: 110px;
    }
}

@media (max-width: 767px) {
    .banner-area-2 .banner-item .banner-content .title {
        font-size: 45px;
        line-height: 55px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .banner-area-2 .banner-item .banner-content .title {
        font-size: 80px;
        line-height: 90px;
    }
}

.banner-area-2 .banner-item .banner-content p {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 47px;
}

@media (max-width: 767px) {
    .banner-area-2 .banner-item .banner-content p {
        font-size: 18px;
    }
}

.banner-area-2 .banner-item .banner-content ul li {
    display: inline-block;
}

@media (max-width: 767px) {
    .banner-area-2 .banner-item .banner-content ul li {
        margin-bottom: 20px;
    }
}

.banner-area-2 .banner-item .banner-content ul li a {
    margin: 0 5px;
}

.banner-area-2 .slick-arrow {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    color: #fff;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    background: #6cbe03;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
}

.banner-area-2 .slick-arrow.next {
    top: 57% !important;
    right: 90px !important;
}

.page-title-area {
    height: 450px;
    position: relative;
}

.page-title-area::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(2, 6, 14, 0.6);
}

.page-title-area .page-title-content .title {
    color: #fff;
    font-size: 80px;
}

@media (max-width: 767px) {
    .page-title-area .page-title-content .title {
        font-size: 38px;
    }
}

.page-title-area .page-title-content nav {
    display: inline-block;
    margin-top: 12px;
}

.page-title-area .page-title-content nav .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.page-title-area .page-title-content nav .breadcrumb li {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .page-title-area .page-title-content nav .breadcrumb li {
        font-size: 18px;
    }
}

.page-title-area .page-title-content nav .breadcrumb li a {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    color: #fff;
    content: "\f105";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
    padding-right: 18px;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 20px;
}

/*===========================
    4.FEATURES css 
===========================*/

.features-area {
    position: relative;
    padding-bottom: 116px;
    z-index: 5;
}

.features-area .features-dot {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.features-area .features-thumb {
    margin-right: 70px;
    position: relative;
    z-index: 5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-area .features-thumb {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .features-area .features-thumb {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

.features-area .features-thumb::before {
    position: absolute;
    content: '';
    top: 50%;
    left: -75px;
    transform: translateY(-50%);
    width: 75px;
    height: 390px;
    background: #6cbe03;
    z-index: -1;
}

.features-area .features-thumb img {
    width: 100%;
}

.features-area .features-content>span {
    font-size: 20px;
    font-weight: 700;
    color: #6cbe03;
    padding-left: 66px;
    position: relative;
}

.features-area .features-content>span::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    width: 45px;
    background: #6cbe03;
}

.features-area .features-content>.title {
    font-size: 50px;
    line-height: 55px;
    color: #333333;
    padding-top: 21px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .features-area .features-content>.title {
        font-size: 40px;
        line-height: 46px;
    }
}

@media (max-width: 767px) {
    .features-area .features-content>.title {
        font-size: 35px;
        line-height: 40px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .features-area .features-content>.title {
        font-size: 38px;
        line-height: 45px;
    }
}

.features-area .features-content .features-box {
    border: 2px solid #eef2fb;
    padding: 28px 15px 50px;
}

.features-area .features-content .features-box i {
    font-size: 70px;
    color: #6cbe03;
}

.features-area .features-content .features-box .title {
    font-size: 22px;
    padding-top: 4px;
    padding-bottom: 12px;
}

.features-area .features-content .features-box p {
    font-size: 15px;
    color: #686868;
    line-height: 26px;
    padding-bottom: 12px;
}

.features-area .features-content .features-box a {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6cbe03;
    position: relative;
}

.features-area .features-content .features-box a::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -3px;
    height: 2px;
    width: 100%;
    background: #6cbe03;
}

.features-area .features-content .features-active .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    cursor: pointer;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    background: #6cbe03;
    border-radius: 50%;
    color: #fff;
}

.features-area .features-content .features-active .slick-arrow.prev {
    left: 0px;
}

.features-area .features-content .features-active .slick-arrow.next {
    right: 0px;
}

.features-area.features-content-3-area {
    padding-top: 64px;
    padding-bottom: 67px;
    background: #000;
    position: relative;
}

.features-area.features-content-3-area::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/store-pattern.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.features-area.features-content-3-area .features-counter-area {
    padding-top: 0;
}

.features-area.features-content-3-area .features-counter-area .features-counter .title {
    color: #fff;
}

.features-area.features-content-3-area .features-counter-area .features-counter span {
    color: #fff;
}

.features-area.features-content-3-area .features-counter-area .features-counter i {
    text-shadow: none;
}

.features-area.features-content-3-area.counter-about {
    background: #6cbe03;
}

.features-area.features-content-3-area.counter-about .features-counter-area .features-counter i {
    color: #fff;
}

.features-counter {
    position: relative;
    padding-left: 54px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-counter {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .features-counter {
        padding-left: 0px;
        padding-top: 60px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .features-counter {
        padding-left: 50px;
        padding-top: 0;
    }
}

.features-counter span {
    font-weight: 600;
    color: #686868;
    text-transform: capitalize;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .features-counter span {
        font-size: 14px;
    }
}

.features-counter .title {
    font-weight: 400;
    font-size: 50px;
    padding-top: 3px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .features-counter .title {
        font-size: 40px;
    }
}

.features-counter i {
    position: absolute;
    left: 0;
    top: -14px;
    font-size: 30px;
    color: #6cbe03;
    text-shadow: 0px 16px 30px rgba(99, 177, 0, 0.88);
}

@media (max-width: 767px) {
    .features-counter i {
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .features-counter i {
        left: 0;
        top: -14px;
        transform: translateX(0);
    }
}

.features-counter.item-2 {
    margin-left: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .features-counter.item-2 {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-counter.item-2 {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .features-counter.item-2 {
        margin-left: 0;
    }
}

.features-counter.item-3 {
    margin-left: 63px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .features-counter.item-3 {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-counter.item-3 {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .features-counter.item-3 {
        margin-left: 0;
    }
}

.features-counter.item-4 {
    margin-left: 64px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .features-counter.item-4 {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-counter.item-4 {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .features-counter.item-4 {
        margin-left: 0;
    }
}

.features-counter-area {
    padding-top: 111px;
}

.features-2-area .features-content {
    margin-left: 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .features-2-area .features-content {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-2-area .features-content {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .features-2-area .features-content {
        margin-left: 0;
    }
}

.features-2-area .features-content span {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6cbe03;
    padding-left: 70px;
    position: relative;
}

.features-2-area .features-content span::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    width: 45px;
    background: #6cbe03;
}

.features-2-area .features-content .title {
    font-size: 50px;
    line-height: 55px;
    padding-top: 23px;
    padding-bottom: 30px;
}

@media (max-width: 767px) {
    .features-2-area .features-content .title {
        font-size: 31px;
        line-height: 40px;
    }
}

.features-2-area .features-content p {
    padding-bottom: 42px;
    font-size: 15px;
    padding-right: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .features-2-area .features-content p {
        padding-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-2-area .features-content p {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .features-2-area .features-content p {
        padding-right: 0;
    }
}

.features-2-area .features-items {
    margin-left: 76px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .features-2-area .features-items {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-2-area .features-items {
        margin-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .features-2-area .features-items {
        margin-left: 0;
        margin-top: 30px;
    }
}

.features-2-area .features-items .item {
    padding-left: 110px;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .features-2-area .features-items .item {
        padding-left: 100px;
    }
}

@media (max-width: 767px) {
    .features-2-area .features-items .item {
        padding-left: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .features-2-area .features-items .item {
        padding-left: 110px;
    }
}

.features-2-area .features-items .item i {
    position: absolute;
    left: 0;
    top: 5px;
    height: 80px;
    width: 80px;
    text-align: center;
    line-height: 80px;
    color: #fff;
    font-size: 40px;
    border-radius: 50%;
    background: #6cbe03;
    z-index: 10;
}

@media (max-width: 767px) {
    .features-2-area .features-items .item i {
        position: inherit;
        top: -20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .features-2-area .features-items .item i {
        position: absolute;
        top: 0px;
    }
}

.features-2-area .features-items .item i::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    z-index: -1;
    background-image: -moz-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
    background-image: -webkit-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
    background-image: -ms-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.features-2-area .features-items .item .title {
    font-size: 24px;
}

.features-2-area .features-items .item p {
    font-size: 15px;
    padding-top: 10px;
    padding-bottom: 12px;
    padding-right: 40px;
}

@media (max-width: 767px) {
    .features-2-area .features-items .item p {
        padding-right: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .features-2-area .features-items .item p {
        padding-right: 40px;
    }
}

.features-2-area .features-items .item a {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    color: #686868;
}

.features-2-area .features-items .item a::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 100%;
    background: #686868;
}

.features-2-area .features-items .item:hover i::after {
    opacity: 1;
}

.features-3-item-area .features-item-title {
    margin-bottom: 13px;
}

.features-3-item-area .features-item-title span {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6cbe03;
    padding-left: 70px;
    position: relative;
}

.features-3-item-area .features-item-title span::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    width: 45px;
    background: #6cbe03;
}

.features-3-item-area .features-item-title .title {
    font-size: 50px;
    line-height: 55px;
    padding-top: 22px;
}

@media (max-width: 767px) {
    .features-3-item-area .features-item-title .title {
        font-size: 33px;
        line-height: 38px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .features-3-item-area .features-item-title .title {
        font-size: 50px;
        line-height: 55px;
    }
}

.features-3-item-area .features-item-text {
    margin-left: -15px;
    margin-bottom: 13px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-3-item-area .features-item-text {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .features-3-item-area .features-item-text {
        margin-left: 0;
    }
}

.features-3-item-area .features-item-text p {
    font-size: 15px;
    padding-bottom: 3px;
}

.features-3-item-area .features-item-text a {
    color: #6cbe03;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    position: relative;
}

.features-3-item-area .features-item-text a::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #6cbe03;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-3-item-area .features-items {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .features-3-item-area .features-items {
        margin-top: 30px;
    }
}

.features-3-item-area .features-items .item {
    padding-left: 110px;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .features-3-item-area .features-items .item {
        padding-left: 75px;
    }
}

@media (max-width: 767px) {
    .features-3-item-area .features-items .item {
        padding-left: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .features-3-item-area .features-items .item {
        padding-left: 110px;
    }
}

.features-3-item-area .features-items .item i {
    position: absolute;
    left: 0;
    top: 5px;
    height: 80px;
    width: 80px;
    text-align: center;
    line-height: 80px;
    color: #fff;
    font-size: 40px;
    border-radius: 50%;
    background: #6cbe03;
    z-index: 10;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .features-3-item-area .features-items .item i {
        height: 60px;
        width: 60px;
        line-height: 60px;
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .features-3-item-area .features-items .item i {
        position: inherit;
        top: -20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .features-3-item-area .features-items .item i {
        position: absolute;
        top: 0px;
    }
}

.features-3-item-area .features-items .item i::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    z-index: -1;
    background-image: -moz-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
    background-image: -webkit-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
    background-image: -ms-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.features-3-item-area .features-items .item .title {
    font-size: 24px;
}

.features-3-item-area .features-items .item p {
    font-size: 15px;
    padding-top: 10px;
    padding-bottom: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .features-3-item-area .features-items .item p {
        font-size: 13px;
        line-height: 24px;
    }
}

@media (max-width: 767px) {
    .features-3-item-area .features-items .item p {
        padding-right: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .features-3-item-area .features-items .item p {
        padding-right: 0px;
    }
}

.features-3-item-area .features-items .item a {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    color: #686868;
}

.features-3-item-area .features-items .item a::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 100%;
    background: #686868;
}

.features-3-item-area .features-items .item:hover i::after {
    opacity: 1;
}

/*===========================
    5.SERVICES css 
===========================*/

.services-area {
    background: #f4f7fe;
    padding-top: 122px;
    position: relative;
    z-index: 10;
}

.services-area .single-services {
    background: #fff;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 15px;
    border: 3px solid #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .services-area .single-services {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 767px) {
    .services-area .single-services {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.services-area .single-services .title {
    font-size: 24px;
    padding-top: 32px;
    padding-bottom: 12px;
}

.services-area .single-services p {
    font-size: 15px;
    line-height: 26px;
    padding: 0 25px 13px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .services-area .single-services p {
        padding: 0 0 13px;
    }
}

@media (max-width: 767px) {
    .services-area .single-services p {
        padding: 0 0 13px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .services-area .single-services p {
        padding: 0px 25px 13px;
    }
}

.services-area .single-services a {
    font-size: 15px;
    font-weight: 700;
    color: #686868;
    text-transform: uppercase;
    position: relative;
    padding: 0;
}

.services-area .single-services a::before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: -3px;
    height: 2px;
    width: 100%;
    background: #686868;
}

.services-area .single-services:hover {
    border-color: #6cbe03;
}

.services-area .services-icon1 {
    position: absolute;
    top: 120px;
    left: 0;
    z-index: -1;
}

@media (max-width: 767px) {
    .services-area .services-icon1 {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .services-area .services-icon1 {
        display: block;
    }
}

.services-area .services-icon1 i {
    height: 300px;
    width: 300px;
    font-size: 135px;
    color: #fff;
    background-image: -moz-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
    background-image: -webkit-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
    background-image: -ms-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
    border-radius: 50%;
    text-align: center;
    line-height: 300px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .services-area .services-icon1 i {
        height: 100px;
        width: 100px;
        line-height: 100px;
        font-size: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .services-area .services-icon1 i {
        height: 100px;
        width: 100px;
        line-height: 100px;
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .services-area .services-icon1 i {
        height: 100px;
        width: 100px;
        line-height: 100px;
        font-size: 50px;
    }
}

.services-area .services-icon2 {
    position: absolute;
    bottom: 60px;
    right: 10px;
    z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .services-area .services-icon2 {
        bottom: 10px;
    }
}

.services-area .services-icon2 i {
    height: 125px;
    width: 125px;
    font-size: 64px;
    color: #fff;
    background-image: -moz-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
    background-image: -webkit-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
    background-image: -ms-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
    border-radius: 50%;
    text-align: center;
    line-height: 125px;
}

.services-3-area {
    padding-top: 122px;
}

.services-3-area .services-box {
    border: 1px solid #dcdcdc;
    padding: 0px 30px 30px 30px;
    margin-top: 30px;
}

.services-3-area .services-box .services-item:hover .services-thumb img {
    transform: scale(1.1);
}

.services-3-area .services-box .services-item .services-thumb {
    overflow: hidden;
}

.services-3-area .services-box .services-item .services-thumb img {
    width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    transform: scale(1);
}

.services-3-area .services-box .services-item .services-content {
    padding-top: 35px;
}

.services-3-area .services-box .services-item .services-content .title {
    font-size: 24px;
}

.services-3-area .services-box .services-item .services-content p {
    padding: 11px 20px;
    font-size: 15px;
}

@media (max-width: 767px) {
    .services-3-area .services-box .services-item .services-content p {
        padding: 11px 0;
    }
}

.services-3-area .services-box .services-item .services-content a {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #686868;
    position: relative;
}

.services-3-area .services-box .services-item .services-content a::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 100%;
    background: #686868;
}

/*===========================
    9.STORE css 
===========================*/

.store-area {
    background: #6cbe03;
    position: relative;
}

.store-area::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/store-pattern.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .store-area .store-content {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .store-area .store-content {
        margin-bottom: 30px;
    }
}

.store-area .store-content span {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    color: #fff;
    padding-left: 65px;
    position: relative;
}

.store-area .store-content span::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    width: 45px;
    background: #fff;
}

.store-area .store-content .title {
    font-size: 50px;
    line-height: 55px;
    color: #fff;
    letter-spacing: -1px;
    padding-top: 25px;
    padding-bottom: 21px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .store-area .store-content .title {
        font-size: 40px;
        line-height: 46px;
    }
}

.store-area .store-content p {
    color: #fff;
    padding-right: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .store-area .store-content p {
        font-size: 15px;
    }
}

.store-area .store-item {
    padding-top: 50px;
    border-radius: 15px;
}

.store-area .store-item img {
    display: inline-block;
}

.store-area .store-item .store-title {
    padding: 44px 35px 8px;
}

.store-area .store-item .store-title .title {
    font-size: 24px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .store-area .store-item .store-title .title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .store-area .store-item .store-title .title {
        font-size: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .store-area .store-item .store-title .title {
        font-size: 24px;
    }
}

.store-area .store-item .store-title span {
    font-size: 14px;
    color: #989898;
}

.store-area .store-item .store-title span i {
    color: #f4a700;
    padding-right: 5px;
}

.store-area .store-item .store-price {
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 45px;
}

.store-area .store-item .store-price p {
    font-size: 18px;
    font-weight: 700;
    color: #fe2000;
}

.store-area .store-item .store-price ul li {
    display: inline-block;
}

.store-area .store-item .store-price ul li i {
    color: #f4a700;
    font-size: 14px;
    padding-left: 4px;
}

.store-area .store-active .slick-arrow {
    position: absolute;
    bottom: 29px;
    z-index: 9;
    cursor: pointer;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 54px;
    border: 3px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .store-area .store-active .slick-arrow {
        bottom: 35px;
    }
}

.store-area .store-active .slick-arrow:hover {
    background: #fff;
    color: #6cbe03;
}

.store-area .store-active .slick-arrow.prev {
    left: -385px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .store-area .store-active .slick-arrow.prev {
        left: -310px;
    }
}

.store-area .store-active .slick-arrow.next {
    left: -315px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .store-area .store-active .slick-arrow.next {
        left: -230px;
    }
}

.store-2-area {
    background: #6cbe03;
    position: relative;
}

.store-2-area::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/store-pattern.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.store-2-area .section-title .title {
    padding: 25px 10px 0;
}

.store-2-area .store-item {
    padding-top: 30px;
    border-radius: 15px;
    position: relative;
    z-index: 10;
}

.store-2-area .store-item::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #ff583d;
    z-index: -2;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-radius: 15px;
}

.store-2-area .store-item::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: -1;
    border-radius: 15px;
}

.store-2-area .store-item img {
    display: inline-block;
}

.store-2-area .store-item .store-title {
    padding: 44px 35px 8px;
}

.store-2-area .store-item .store-title .title {
    font-size: 24px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .store-2-area .store-item .store-title .title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .store-2-area .store-item .store-title .title {
        font-size: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .store-2-area .store-item .store-title .title {
        font-size: 24px;
    }
}

.store-2-area .store-item .store-title span {
    font-size: 14px;
    color: #989898;
}

.store-2-area .store-item .store-title span i {
    color: #f4a700;
    padding-right: 5px;
}

.store-2-area .store-item .store-price {
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 45px;
}

.store-2-area .store-item .store-price p {
    font-size: 18px;
    font-weight: 700;
    color: #fe2000;
}

.store-2-area .store-item .store-price ul li {
    display: inline-block;
}

.store-2-area .store-item .store-price ul li i {
    color: #f4a700;
    font-size: 14px;
    padding-left: 4px;
}

.store-2-area .store-item:hover::before {
    transform: rotate(-6deg);
    left: -14px;
}

/*===========================
    7.GALLERY css 
===========================*/

.gallery-area {
    padding-top: 122px;
    padding-bottom: 130px;
    position: relative;
    z-index: 10;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .gallery-area .gallery-item {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .gallery-area .gallery-item {
        margin-top: 30px;
    }
}

.gallery-area .gallery-item .gallery-thumb {
    overflow: hidden;
}

.gallery-area .gallery-item .gallery-thumb img {
    width: 100%;
    transform: scale(1);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.gallery-area .gallery-item .gallery-content {
    padding-left: 22px;
    position: relative;
    margin-top: 35px;
}

.gallery-area .gallery-item .gallery-content::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 4px;
    background: #6cbe03;
}

.gallery-area .gallery-item .gallery-content .title {
    font-size: 24px;
    padding-bottom: 2px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .gallery-area .gallery-item .gallery-content .title {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .gallery-area .gallery-item .gallery-content .title {
        font-size: 20px;
    }
}

.gallery-area .gallery-item .gallery-content span {
    font-weight: 600;
    color: #6cbe03;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .gallery-area .gallery-item .gallery-content span {
        font-size: 15px;
    }
}

.gallery-area .gallery-item .gallery-content a {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid #6cbe03;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 43px;
    color: #6cbe03;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.gallery-area .gallery-item .gallery-content a:hover {
    background: #6cbe03;
    color: #fff;
}

.gallery-area .gallery-item:hover .gallery-thumb img {
    transform: scale(1.1);
}

.gallery-area .shape-1 {
    position: absolute;
    left: 225px;
    bottom: 140px;
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .gallery-area .shape-1 {
        left: 30px;
    }
}

@media (max-width: 767px) {
    .gallery-area .shape-1 {
        display: none;
    }
}

.gallery-area .shape-2 {
    position: absolute;
    right: 155px;
    top: 125px;
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .gallery-area .shape-2 {
        right: 30px;
    }
}

@media (max-width: 767px) {
    .gallery-area .shape-2 {
        display: none;
    }
}

.gallery-area.gallery-3-area .section-title span {
    margin-left: 65px;
}

.gallery-area.gallery-3-area .section-title span::after {
    display: none;
}

.gallery-area.gallery-3-area .gallery-box {
    position: relative;
    overflow: hidden;
}

.gallery-area.gallery-3-area .gallery-box:hover img {
    transform: scale(1.1);
}

.gallery-area.gallery-3-area .gallery-box img {
    width: 100%;
    transform: scale(1);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.gallery-area.gallery-3-area .gallery-box .gallery-overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.gallery-area.gallery-3-area .gallery-box .gallery-overlay .item {
    padding-bottom: 37px;
}

.gallery-area.gallery-3-area .gallery-box .gallery-overlay .item .title {
    font-size: 24px;
    color: #fff;
}

@media (max-width: 767px) {
    .gallery-area.gallery-3-area .gallery-box .gallery-overlay .item .title {
        font-size: 20px;
    }
}

.gallery-area.gallery-3-area .gallery-box .gallery-overlay .item span {
    color: #fff;
    font-weight: 600;
    padding-top: 8px;
}

.gallery-area.gallery-3-area .gallery-active .slick-arrow {
    position: absolute;
    top: -110px;
    z-index: 9;
    cursor: pointer;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 18px;
    color: #333333;
    border-radius: 50%;
    background-image: -moz-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
    background-image: -webkit-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
    background-image: -ms-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
    z-index: 10;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.gallery-area.gallery-3-area .gallery-active .slick-arrow::before {
    background: #eef2fb;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    z-index: -1;
    opacity: 1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.gallery-area.gallery-3-area .gallery-active .slick-arrow:hover {
    color: #fff;
}

.gallery-area.gallery-3-area .gallery-active .slick-arrow:hover::before {
    opacity: 0;
}

.gallery-area.gallery-3-area .gallery-active .slick-arrow.prev {
    right: 85px;
}

.gallery-area.gallery-3-area .gallery-active .slick-arrow.next {
    right: 15px;
}

.gallery-page-area {
    padding-top: 123px;
}

.gallery-page-area .project-menu {
    padding-bottom: 13px;
}

.gallery-page-area .project-menu ul li {
    display: inline-block;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    font-family: "Poppins", sans-serif;
    margin: 0 14px;
}

@media (max-width: 767px) {
    .gallery-page-area .project-menu ul li {
        font-size: 14px;
        margin: 0 5px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .gallery-page-area .project-menu ul li {
        font-size: 16px;
        margin: 0 5px;
    }
}

.gallery-page-area .project-menu ul li.active {
    color: #6cbe03;
}

.gallery-page-area .gallery-item img {
    width: 100%;
}

/*===========================
    8.FEEDBACK css 
===========================*/

.feedback-area {
    padding-bottom: 227px;
    padding-top: 122px;
    background: #02060e;
    position: relative;
}

.feedback-area::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/store-pattern.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.feedback-area .section-title {
    padding-bottom: 57px;
}

.feedback-area .section-title .title {
    color: #fff;
}

.feedback-area .feedback-content .feedback-user {
    text-align: center;
    margin-top: 14px;
}

@media (max-width: 767px) {
    .feedback-area .feedback-content .feedback-user {
        text-align: left;
    }
}

.feedback-area .feedback-content .feedback-user i {
    font-size: 50px;
    color: #6cbe03;
    padding-top: 33px;
    padding-right: 45px;
}

.feedback-area .feedback-content .feedback-user img {
    display: block;
}

.feedback-area .feedback-content p {
    font-size: 35px;
    line-height: 52px;
    color: #b9c7e1;
    margin-left: -21px;
    padding-right: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .feedback-area .feedback-content p {
        font-size: 28px;
        line-height: 44px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .feedback-area .feedback-content p {
        font-size: 23px;
        line-height: 40px;
        padding-right: 0;
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .feedback-area .feedback-content p {
        font-size: 21px;
        line-height: 40px;
        padding-right: 0;
        margin-left: 0;
    }
}

.feedback-area .feedback-active .slick-arrow {
    position: absolute;
    right: 0;
    transform: translateY(-50%);
    z-index: 9;
    cursor: pointer;
    height: 60px;
    width: 60px;
    border: 3px solid #34466a;
    color: #34466a;
    text-align: center;
    line-height: 56px;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.feedback-area .feedback-active .slick-arrow:hover {
    background: #6cbe03;
    border-color: #6cbe03;
    color: #fff;
}

.feedback-area .feedback-active .slick-arrow.prev {
    top: 40%;
}

.feedback-area .feedback-active .slick-arrow.next {
    top: 70%;
}

.feedback-area .feedback-active .slick-dots {
    position: absolute;
    left: 50%;
    bottom: -98px;
    transform: translateX(-50%);
}

.feedback-area .feedback-active .slick-dots li {
    display: inline-block;
}

.feedback-area .feedback-active .slick-dots li button {
    font-size: 0;
    background-color: transparent;
    border: 3px solid #4b5f88;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    margin: 0 7px;
}

.feedback-area .feedback-active .slick-dots li.slick-active button {
    border-color: #6cbe03;
}

.feedback-title-area {
    background: #02060e;
    position: relative;
    margin-top: 116px;
    padding-top: 122px;
    padding-bottom: 570px;
}

.feedback-title-area::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/store-pattern.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.feedback-title-area .section-title {
    padding-bottom: 55px;
}

.feedback-title-area .feedback-item {
    background: #fff;
    padding: 24px 35px 15px;
    box-shadow: 0px 0px 59.4px 0.6px rgba(2, 6, 14, 0.1);
    margin-top: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .feedback-title-area .feedback-item {
        padding: 24px 20px 15px;
    }
}

@media (max-width: 767px) {
    .feedback-title-area .feedback-item {
        padding: 24px 15px 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .feedback-title-area .feedback-item {
        padding: 24px 35px 15px;
    }
}

.feedback-title-area .feedback-item .feedback-info {
    padding-left: 105px;
    position: relative;
}

.feedback-title-area .feedback-item .feedback-info img {
    position: absolute;
    left: 0;
    top: -50px;
    box-shadow: 0px 0px 59.4px 0.6px rgba(2, 6, 14, 0.2);
    overflow: hidden;
    border-radius: 0px 8px 8px 8px;
}

.feedback-title-area .feedback-item .feedback-info .title {
    font-size: 18px;
}

.feedback-title-area .feedback-item .feedback-info span {
    font-size: 14px;
    font-weight: 600;
    color: #6cbe03;
}

.feedback-title-area .feedback-item p {
    font-size: 15px;
    padding-top: 20px;
}

.feedback-title-area .feedback-item .feedback-review ul li {
    display: inline-block;
    font-size: 18px;
    color: #f4a700;
    margin-right: 2px;
}

.feedback-title-area .feedback-item .feedback-review ul.quote li {
    margin-right: 0;
    font-size: 50px;
    color: #6cbe03;
}

.feedback-title-area .feedback-2-active .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    background: #fff;
    color: #6cbe03;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9;
    font-size: 18px;
}

.feedback-title-area .feedback-2-active .slick-arrow.prev {
    left: -55px;
}

.feedback-title-area .feedback-2-active .slick-arrow.next {
    right: -55px;
}

.feedback-title-area .feedback-2-active .slick-dots {
    position: absolute;
    left: 50%;
    bottom: -98px;
    transform: translateX(-50%);
}

.feedback-title-area .feedback-2-active .slick-dots li {
    display: inline-block;
}

.feedback-title-area .feedback-2-active .slick-dots li button {
    font-size: 0;
    border: 3px solid #4b5f88;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: transparent;
    margin: 0 7px;
}

.feedback-title-area .feedback-2-active .slick-dots li.slick-active button {
    border-color: #6cbe03;
}

.feedback-play-area {
    margin-bottom: 122px;
}

.feedback-play-area .feedback-play {
    margin-top: -343px;
    position: relative;
    z-index: 99;
}

.feedback-play-area .feedback-play::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: -moz-linear-gradient(-49deg, rgba(108, 190, 3, 0.8) 0%, rgba(176, 179, 2, 0.77) 60%, rgba(229, 170, 0, 0.75) 91%, rgba(244, 167, 0, 0.70196) 100%);
    background-image: -webkit-linear-gradient(-49deg, rgba(108, 190, 3, 0.8) 0%, rgba(176, 179, 2, 0.77) 60%, rgba(229, 170, 0, 0.75) 91%, rgba(244, 167, 0, 0.70196) 100%);
    background-image: -ms-linear-gradient(-49deg, rgba(108, 190, 3, 0.8) 0%, rgba(176, 179, 2, 0.77) 60%, rgba(229, 170, 0, 0.75) 91%, rgba(244, 167, 0, 0.70196) 100%);
}

.feedback-play-area .feedback-play a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 135px;
    width: 135px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 135px;
    font-size: 24px;
    color: #6cbe03;
}

@media (max-width: 767px) {
    .feedback-play-area .feedback-play a {
        height: 80px;
        width: 80px;
        line-height: 80px;
        font-size: 18px;
    }
}

.feedback-3-area {
    background: #6cbe03;
    position: relative;
    padding-bottom: 227px;
    margin-bottom: 121px;
}

.feedback-3-area::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/store-pattern.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.feedback-3-area::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 32%;
    background-image: url(../images/feedback-thumb.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .feedback-3-area::after {
        width: 0;
    }
}

@media (max-width: 767px) {
    .feedback-3-area::after {
        width: 0;
    }
}

.feedback-3-area .feedback-content {
    margin-top: 30px;
}

.feedback-3-area .feedback-content .info {
    position: relative;
    padding-left: 100px;
}

.feedback-3-area .feedback-content .info .title {
    color: #fff;
    font-size: 26px;
}

.feedback-3-area .feedback-content .info span {
    color: #fff;
    font-weight: 600;
    padding-top: 2px;
}

.feedback-3-area .feedback-content .info img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.feedback-3-area .feedback-content p {
    font-size: 24px;
    line-height: 32px;
    font-family: "Poppins", sans-serif;
    color: #fff;
    padding-top: 34px;
    padding-bottom: 33px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .feedback-3-area .feedback-content p {
        font-size: 19px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .feedback-3-area .feedback-content p {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .feedback-3-area .feedback-content p {
        font-size: 17px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .feedback-3-area .feedback-content p {
        font-size: 24px;
    }
}

.feedback-3-area .feedback-content ul li {
    display: inline-block;
}

.feedback-3-area .feedback-content ul li i {
    color: #fff;
    margin-right: 1px;
}

.feedback-3-area .feedback-3-active .slick-dots {
    position: absolute;
    left: 17px;
    bottom: -98px;
}

.feedback-3-area .feedback-3-active .slick-dots li {
    display: inline-block;
}

.feedback-3-area .feedback-3-active .slick-dots li button {
    font-size: 0;
    border: 3px solid #fff;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: transparent;
    margin-right: 15px;
}

.feedback-3-area .feedback-3-active .slick-dots li.slick-active button {
    border-color: #f4a700;
}

/*===========================
    9.FAQ css 
===========================*/

.faq-area {
    padding-top: 120px;
    padding-bottom: 122px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq-area .faq-content {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .faq-area .faq-content {
        margin-bottom: 30px;
    }
}

.faq-area .faq-content span {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6cbe03;
    padding-left: 70px;
    position: relative;
}

.faq-area .faq-content span::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    width: 45px;
    background: #6cbe03;
}

.faq-area .faq-content .title {
    font-size: 50px;
    line-height: 55px;
    padding-top: 26px;
    padding-bottom: 27px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .faq-area .faq-content .title {
        font-size: 40px;
        line-height: 46px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq-area .faq-content .title {
        font-size: 40px;
        line-height: 46px;
    }
}

@media (max-width: 767px) {
    .faq-area .faq-content .title {
        font-size: 36px;
        line-height: 42px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .faq-area .faq-content .title {
        font-size: 50px;
        line-height: 55px;
    }
}

.faq-area .faq-content p {
    font-size: 15px;
    padding-right: 50px;
    color: #686868;
    padding-bottom: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .faq-area .faq-content p {
        font-size: 14px;
        padding-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq-area .faq-content p {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .faq-area .faq-content p {
        padding-right: 0;
    }
}

.faq-area .accordion-item {
    margin-top: -10px;
}

.faq-area .accordion-item .accordion .card {
    border: 0 !important;
}

.faq-area .accordion-item .accordion .card .card-header {
    padding: 0;
    background-color: transparent;
    border-bottom: 0 !important;
}

.faq-area .accordion-item .accordion .card .card-header h2 .btn {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #6cbe03;
    padding: 0 !important;
    border-bottom: 2px solid #6cbe03;
    border-radius: 0;
    display: block;
    width: 100%;
    text-align: left;
    line-height: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .faq-area .accordion-item .accordion .card .card-header h2 .btn {
        font-size: 17px;
    }
}

.faq-area .accordion-item .accordion .card .card-header h2 .btn.collapsed {
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    text-decoration: none;
    border-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .faq-area .accordion-item .accordion .card .card-header h2 .btn.collapsed {
        font-size: 17px;
    }
}

.faq-area .accordion-item .accordion .card .card-body {
    border-bottom: 0 !important;
    padding: 0;
}

.faq-area .accordion-item .accordion .card .card-body p {
    padding-right: 85px;
    padding-top: 22px;
    padding-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .faq-area .accordion-item .accordion .card .card-body p {
        padding-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq-area .accordion-item .accordion .card .card-body p {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .faq-area .accordion-item .accordion .card .card-body p {
        padding-right: 0;
    }
}

/*===========================
    10.BLOG css 
===========================*/

.blog-area {
    background: #f4f7fe;
    padding-top: 122px;
    padding-bottom: 130px;
    position: relative;
    z-index: 10;
}

.blog-area .blog-item {
    background-image: url(../images/blog-item-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 35px 40px 40px;
    position: relative;
    z-index: 10;
}

.blog-area .blog-item.active::before,
.blog-area .blog-item:hover::before {
    background-color: rgba(2, 6, 14, 0.7);
}

.blog-area .blog-item.active span,
.blog-area .blog-item:hover span {
    color: #fff;
}

.blog-area .blog-item.active span i,
.blog-area .blog-item:hover span i {
    color: #fff;
}

.blog-area .blog-item.active .title,
.blog-area .blog-item:hover .title {
    color: #fff;
}

.blog-area .blog-item.active a,
.blog-area .blog-item:hover a {
    color: #fff;
}

.blog-area .blog-item.active a::before,
.blog-area .blog-item:hover a::before {
    background: #fff;
}

.blog-area .blog-item::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    z-index: -1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.blog-area .blog-item span {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.blog-area .blog-item span i {
    color: #6cbe03;
    padding-right: 6px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.blog-area .blog-item .title {
    font-size: 28px;
    line-height: 35px;
    padding-bottom: 18px;
    padding-top: 140px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-area .blog-item .title {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 767px) {
    .blog-area .blog-item .title {
        font-size: 19px;
        line-height: 29px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-area .blog-item .title {
        font-size: 28px;
        line-height: 35px;
    }
}

.blog-area .blog-item a {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    color: #686868;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.blog-area .blog-item a::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #686868;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.blog-area .shape-1 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.blog-area .shape-1 img {
    width: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .blog-area .shape-1 img {
        width: 80%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-area .shape-1 img {
        width: 60%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-area .shape-1 img {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .blog-area .shape-1 img {
        width: 40%;
    }
}

.blog-area .shape-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    text-align: right;
}

.blog-area .shape-2 img {
    width: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .blog-area .shape-2 img {
        width: 80%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-area .shape-2 img {
        width: 80%;
    }
}

.blog-2-area .blog-item .blog-thumb img {
    width: 100%;
}

.blog-2-area .blog-item .blog-content {
    padding-top: 35px;
}

.blog-2-area .blog-item .blog-content ul {
    margin-bottom: 9px;
}

.blog-2-area .blog-item .blog-content ul li {
    display: inline-block;
    margin-right: 22px;
}

@media (max-width: 767px) {
    .blog-2-area .blog-item .blog-content ul li {
        font-size: 14px;
    }
}

.blog-2-area .blog-item .blog-content ul li i {
    color: #6cbe03;
    padding-right: 6px;
}

.blog-2-area .blog-item .blog-content ul li:last-child {
    margin-right: 0;
}

.blog-2-area .blog-item .blog-content .title {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-2-area .blog-item .blog-content .title {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 767px) {
    .blog-2-area .blog-item .blog-content .title {
        font-size: 17px;
        line-height: 24px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-2-area .blog-item .blog-content .title {
        font-size: 22px;
        line-height: 28px;
    }
}

.blog-2-area .blog-item .blog-content p {
    padding-top: 14px;
    padding-bottom: 33px;
}

.brand-area .brand-item img {
    display: inline-block;
}

.blog-details-area .blog-sidebar .blog-search-box {
    position: relative;
}

.blog-details-area .blog-sidebar .blog-search-box i {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #6cbe03;
}

.blog-details-area .blog-sidebar .blog-search-box input {
    width: 100%;
    border: 2px solid #eee;
    line-height: 70px;
    padding-left: 30px;
    font-size: 15px;
    color: #686868;
}

.blog-details-area .blog-sidebar .blog-search-box input::placeholder {
    opacity: 1;
}

.blog-details-area .blog-sidebar .box {
    border: 2px solid #eee;
    padding: 38px;
    margin-top: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-details-area .blog-sidebar .box {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .blog-details-area .blog-sidebar .box {
        padding: 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-area .blog-sidebar .box {
        padding: 38px;
    }
}

.blog-details-area .blog-sidebar .box .title-item {
    text-align: center;
}

.blog-details-area .blog-sidebar .box .title-item .title {
    font-size: 24px;
    color: #000;
    position: relative;
    display: inline-block;
}

.blog-details-area .blog-sidebar .box .title-item .title::before {
    position: absolute;
    content: '';
    left: -50px;
    top: 50%;
    height: 3px;
    width: 30px;
    background: #cfcfcf;
}

.blog-details-area .blog-sidebar .box .title-item .title::after {
    position: absolute;
    content: '';
    right: -50px;
    top: 50%;
    height: 3px;
    width: 30px;
    background: #cfcfcf;
}

.blog-details-area .blog-sidebar .blog-news .blog-news-item .item {
    position: relative;
    padding-left: 90px;
}

.blog-details-area .blog-sidebar .blog-news .blog-news-item .item .title {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #333333;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-details-area .blog-sidebar .blog-news .blog-news-item .item .title {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 767px) {
    .blog-details-area .blog-sidebar .blog-news .blog-news-item .item .title {
        font-size: 15px;
        line-height: 24px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-area .blog-sidebar .blog-news .blog-news-item .item .title {
        font-size: 18px;
        line-height: 26px;
    }
}

.blog-details-area .blog-sidebar .blog-news .blog-news-item .item span {
    font-size: 14px;
}

.blog-details-area .blog-sidebar .blog-news .blog-news-item .item img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.blog-details-area .blog-sidebar .blog-news .blog-news-item .item.active {
    margin-top: 54px;
    margin-bottom: 54px;
    position: relative;
}

.blog-details-area .blog-sidebar .blog-news .blog-news-item .item.active::before {
    position: absolute;
    content: '';
    left: 0;
    top: -29px;
    width: 100%;
    height: 1px;
    background: #d7d7d7;
}

.blog-details-area .blog-sidebar .blog-news .blog-news-item .item.active::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: -29px;
    width: 100%;
    height: 1px;
    background: #d7d7d7;
}

.blog-details-area .blog-sidebar .blog-category .blog-category-item {
    padding-top: 30px;
}

.blog-details-area .blog-sidebar .blog-category .blog-category-item ul li a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #686868;
    line-height: 30px;
}

.blog-details-area .blog-sidebar .blog-tag .blog-tag-item ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.blog-details-area .blog-sidebar .blog-tag .blog-tag-item ul li {
    display: inline-block;
    margin-right: 10px;
    margin-top: 10px;
}

.blog-details-area .blog-sidebar .blog-tag .blog-tag-item ul li a {
    font-size: 14px;
    color: #686868;
    line-height: 40px;
    background: #eef3f9;
    padding: 0 17px;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-details-area .blog-sidebar .blog-tag .blog-tag-item ul li a {
        font-size: 12px;
        padding: 0 13px;
    }
}

@media (max-width: 767px) {
    .blog-details-area .blog-sidebar .blog-tag .blog-tag-item ul li a {
        font-size: 13px;
        padding: 0 13px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-area .blog-sidebar .blog-tag .blog-tag-item ul li a {
        font-size: 14px;
        padding: 0 17px;
    }
}

.blog-details-area .blog-sidebar .blog-tag .blog-tag-item ul li a:hover {
    color: #fff;
    background: #6cbe03;
}

.blog-details-area .blog-sidebar .blog-add {
    position: relative;
}

.blog-details-area .blog-sidebar .blog-add img {
    width: 100%;
}

.blog-details-area .blog-sidebar .blog-add .blog-add-overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(2, 6, 14, 0.7);
}

.blog-details-area .blog-sidebar .blog-add .blog-add-overlay .blog-add-content .title {
    color: #fff;
    line-height: 45px;
    font-size: 45px;
    padding: 0 20px;
}

.blog-details-area .blog-sidebar .blog-add .blog-add-overlay .blog-add-content p {
    color: #fff;
    font-size: 15px;
    line-height: 32px;
    padding: 30px 50px 44px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-details-area .blog-sidebar .blog-add .blog-add-overlay .blog-add-content p {
        padding: 30px 10px 44px;
    }
}

@media (max-width: 767px) {
    .blog-details-area .blog-details {
        margin-right: 0;
    }
}

.blog-details-area .blog-details .blog-details-content .title {
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
    padding-bottom: 18px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-details-area .blog-details .blog-details-content .title {
        font-size: 23px;
        line-height: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-details-area .blog-details .blog-details-content .title {
        font-size: 26px;
        line-height: 34px;
    }
}

@media (max-width: 767px) {
    .blog-details-area .blog-details .blog-details-content .title {
        font-size: 15px;
        line-height: 22px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-area .blog-details .blog-details-content .title {
        font-size: 21px;
        line-height: 30px;
    }
}

.blog-details-area .blog-details .blog-details-content p {
    font-size: 15px;
    line-height: 30px;
    padding-right: 20px;
    padding-top: 24px;
    padding-bottom: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-details-area .blog-details .blog-details-content p {
        font-size: 14px;
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .blog-details-area .blog-details .blog-details-content p {
        font-size: 14px;
        padding-right: 0;
    }
}

.blog-details-area .blog-details .blog-details-content img {
    width: 100%;
}

@media (max-width: 767px) {
    .blog-details-area .blog-details .blog-details-content .info .info-blog {
        margin-bottom: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-area .blog-details .blog-details-content .info .info-blog {
        margin-bottom: 0px;
    }
}

.blog-details-area .blog-details .blog-details-content .info .info-blog li {
    display: inline-block;
    font-size: 14px;
    margin-right: 27px;
}

.blog-details-area .blog-details .blog-details-content .info .info-blog li i {
    color: #6cbe03;
    padding-right: 6px;
}

.blog-details-area .blog-details .blog-details-content .info .social li {
    display: inline-block;
}

.blog-details-area .blog-details .blog-details-content .info .social li span {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #333333;
}

.blog-details-area .blog-details .blog-details-content .info .social li i {
    font-size: 14px;
    color: #8a8a8a;
    margin-left: 10px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.blog-details-area .blog-details .blog-details-content .info .social li i:hover {
    color: #6cbe03;
}

.blog-details-area .blog-details .blog-details-quote {
    margin-top: 34px;
}

.blog-details-area .blog-details .blog-details-quote .text {
    font-size: 15px;
    line-height: 30px;
    padding-top: 22px;
    padding-bottom: 20px;
}

@media (max-width: 767px) {
    .blog-details-area .blog-details .blog-details-quote .text {
        font-size: 14px;
    }
}

.blog-details-area .blog-details .blog-details-quote .quote {
    padding-left: 35px;
    position: relative;
}

@media (max-width: 767px) {
    .blog-details-area .blog-details .blog-details-quote .quote {
        padding-left: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-area .blog-details .blog-details-quote .quote {
        padding-left: 35px;
    }
}

.blog-details-area .blog-details .blog-details-quote .quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 108px;
    width: 5px;
    background: #6cbe03;
}

.blog-details-area .blog-details .blog-details-quote .quote p {
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #333333;
    line-height: 28px;
    font-size: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-details-area .blog-details .blog-details-quote .quote p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .blog-details-area .blog-details .blog-details-quote .quote p {
        font-size: 15px;
        line-height: 24px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-area .blog-details .blog-details-quote .quote p {
        font-size: 19px;
        line-height: 28px;
    }
}

.blog-details-area .blog-details .blog-details-quote .quote span {
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    padding-top: 9px;
}

.blog-details-area .blog-details .blog-details-quote .blog-tag-share ul li {
    display: inline-block;
}

@media (max-width: 767px) {
    .blog-details-area .blog-details .blog-details-quote .blog-tag-share .tag {
        margin-bottom: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-area .blog-details .blog-details-quote .blog-tag-share .tag {
        margin-bottom: 0px;
    }
}

.blog-details-area .blog-details .blog-details-quote .blog-tag-share .tag li span {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
}

.blog-details-area .blog-details .blog-details-quote .blog-tag-share .tag li a {
    font-size: 14px;
    color: #686868;
    font-weight: 400;
    margin-left: 2px;
}

.blog-details-area .blog-details .blog-details-quote .blog-tag-share .social li span {
    font-weight: 600;
    color: #333333;
    font-size: 14px;
}

.blog-details-area .blog-details .blog-details-quote .blog-tag-share .social li a {
    font-size: 14px;
    background: #e1e4ec;
    color: #686868;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-left: 6px;
}

.blog-details-area .blog-details .blog-details-quote .blog-tag-share .social li a:hover {
    color: #fff;
    background: #6cbe03;
}

.blog-details-area .blog-details .blog-details-quote .blog-details-box-1 {
    padding: 25px 38px;
    position: relative;
    z-index: 10;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-details-area .blog-details .blog-details-quote .blog-details-box-1 {
        padding: 18px;
    }
}

@media (max-width: 767px) {
    .blog-details-area .blog-details .blog-details-quote .blog-details-box-1 {
        padding: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-area .blog-details .blog-details-quote .blog-details-box-1 {
        padding: 25px 38px;
    }
}

.blog-details-area .blog-details .blog-details-quote .blog-details-box-1::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(2, 6, 14, 0.65);
    z-index: -1;
}

.blog-details-area .blog-details .blog-details-quote .blog-details-box-1 .title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-details-area .blog-details .blog-details-quote .blog-details-box-1 .title {
        font-size: 17px;
        line-height: 26px;
    }
}

@media (max-width: 767px) {
    .blog-details-area .blog-details .blog-details-quote .blog-details-box-1 .title {
        font-size: 17px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-details-area .blog-details .blog-details-quote .blog-details-box-1.blog-details-box-2 {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .blog-details-area .blog-details .blog-details-quote .blog-details-box-1.blog-details-box-2 {
        margin-top: 20px;
    }
}

.blog-details-area .blog-details .blog-details-quote .blog-details-box-1.blog-details-box-2::before {
    background: #e7f1fd;
}

.blog-details-area .blog-details .blog-details-quote .blog-details-box-1.blog-details-box-2 .title {
    color: #333333;
}

.blog-details-area .blog-details .blog-details-box {
    padding: 0 40px 40px;
    border: 2px solid #eeeeee;
    margin-top: 145px;
    text-align: center;
}

@media (max-width: 767px) {
    .blog-details-area .blog-details .blog-details-box {
        padding: 0 10px 40px;
    }
}

.blog-details-area .blog-details .blog-details-box img {
    margin-top: -68px;
}

.blog-details-area .blog-details .blog-details-box .title {
    font-size: 20px;
    color: #333333;
    padding-top: 36px;
    padding-bottom: 8px;
}

.blog-details-area .blog-details .blog-details-box p {
    font-size: 15px;
    padding: 0 10px;
}

@media (max-width: 767px) {
    .blog-details-area .blog-details .blog-details-box p {
        padding: 0;
        font-size: 14px;
    }
}

.blog-details-area .blog-details .blog-details-box ul li {
    display: inline-block;
}

.blog-details-area .blog-details .blog-details-box ul li a {
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    background: #e1e4ec;
    border-radius: 50%;
    color: #686868;
    margin: 24px 3px 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.blog-details-area .blog-details .blog-details-box ul li a:hover {
    color: #fff;
    background: #6cbe03;
}

.blog-details-area .blog-details .blog-comments {
    margin-top: 74px;
}

.blog-details-area .blog-details .blog-comments .comments-title {
    padding-bottom: 17px;
}

.blog-details-area .blog-details .blog-comments .comments-title .title {
    font-size: 30px;
    font-weight: 600;
    position: relative;
}

@media (max-width: 767px) {
    .blog-details-area .blog-details .blog-comments .comments-title .title {
        font-size: 26px;
    }
}

.blog-details-area .blog-details .blog-comments .comments-title .title::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -12px;
    height: 2px;
    width: 10px;
    background: #cfcfcf;
}

.blog-details-area .blog-details .blog-comments .comments-title .title::after {
    position: absolute;
    content: '';
    left: 17px;
    bottom: -12px;
    height: 2px;
    width: 25px;
    background: #cfcfcf;
}

.blog-details-area .blog-details .blog-comments .blog-comments-item {
    margin-top: 30px;
}

.blog-details-area .blog-details .blog-comments .blog-comments-item .item {
    padding-left: 130px;
    position: relative;
}

@media (max-width: 767px) {
    .blog-details-area .blog-details .blog-comments .blog-comments-item .item {
        padding-left: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-area .blog-details .blog-comments .blog-comments-item .item {
        padding-left: 130px;
    }
}

.blog-details-area .blog-details .blog-comments .blog-comments-item .item img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .blog-details-area .blog-details .blog-comments .blog-comments-item .item img {
        position: inherit;
        top: 35px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-area .blog-details .blog-comments .blog-comments-item .item img {
        position: absolute;
        top: 50%;
    }
}

.blog-details-area .blog-details .blog-comments .blog-comments-item .item .title {
    font-size: 18px;
}

.blog-details-area .blog-details .blog-comments .blog-comments-item .item .title span {
    font-size: 13px;
    font-weight: 500;
    color: #686868;
    margin-left: 10px;
    font-family: "Poppins", sans-serif;
}

.blog-details-area .blog-details .blog-comments .blog-comments-item .item p {
    font-size: 14px;
    line-height: 26px;
    padding-right: 70px;
    padding-top: 10px;
    padding-bottom: 7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-details-area .blog-details .blog-comments .blog-comments-item .item p {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .blog-details-area .blog-details .blog-comments .blog-comments-item .item p {
        padding-right: 0;
    }
}

.blog-details-area .blog-details .blog-comments .blog-comments-item .item a {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #8a8a8a;
    font-size: 14px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.blog-details-area .blog-details .blog-comments .blog-comments-item .item a:hover {
    color: #6cbe03;
}

@media (max-width: 767px) {
    .blog-details-area .blog-details .blog-comments .blog-comments-item .item.center {
        margin-left: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-area .blog-details .blog-comments .blog-comments-item .item.center {
        margin-left: 60px;
    }
}

.blog-details-area .blog-details .blog-comments .blog-comments-item .item.center p {
    padding-right: 38px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-details-area .blog-details .blog-comments .blog-comments-item .item.center p {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .blog-details-area .blog-details .blog-comments .blog-comments-item .item.center p {
        padding-right: 0;
    }
}

.blog-details-area .blog-details .blog-massage .massage-title {
    padding-bottom: 17px;
}

.blog-details-area .blog-details .blog-massage .massage-title .title {
    font-size: 30px;
    font-weight: 600;
    position: relative;
}

.blog-details-area .blog-details .blog-massage .massage-title .title::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -12px;
    height: 2px;
    width: 10px;
    background: #6cbe03;
}

.blog-details-area .blog-details .blog-massage .massage-title .title::after {
    position: absolute;
    content: '';
    left: 17px;
    bottom: -12px;
    height: 2px;
    width: 25px;
    background: #6cbe03;
}

.blog-details-area .blog-details .blog-massage .blog-massage-item .input-box {
    position: relative;
}

.blog-details-area .blog-details .blog-massage .blog-massage-item .input-box>i {
    position: absolute;
    right: 30px;
    top: 32px;
    font-size: 14px;
    color: #6cbe03;
}

.blog-details-area .blog-details .blog-massage .blog-massage-item .input-box input {
    width: 100%;
    border: 2px solid #e9ebef;
    line-height: 70px;
    padding-left: 30px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #8a8a8a;
}

.blog-details-area .blog-details .blog-massage .blog-massage-item .input-box input::placeholder {
    opacity: 1;
}

.blog-details-area .blog-details .blog-massage .blog-massage-item .input-box textarea {
    width: 100%;
    height: 140px;
    padding-left: 30px;
    padding-top: 20px;
    border: 2px solid #e9ebef;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #8a8a8a;
    resize: none;
}

.blog-details-area .blog-details .blog-massage .blog-massage-item .input-box textarea::placeholder {
    opacity: 1;
}

.blog-details-area .blog-details .blog-massage .blog-massage-item .input-box button {
    margin-top: 20px;
}

.news-block-two {
    position: relative;
}

.news-block-two .inner-box {
    position: relative;
    margin-bottom: 30px;
}

.news-block-two .image {
    position: relative;
    overflow: hidden;
}

.news-block-two .image img {
    width: 100%;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.news-block-two .inner-box:hover .image img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.news-block-two.blog-single-post .inner-box:hover .image img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.news-block-two .lower-content {
    position: relative;
    padding: 50px 45px;
    background-color: #fff;
    border: 1px solid #ebebeb;
}

@media (max-width: 767px) {
    .news-block-two .lower-content {
        padding: 30px 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .news-block-two .lower-content {
        padding: 50px 40px;
    }
}

.news-block-two .category {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    padding: 0px 30px;
    color: #fff;
    border-radius: 40px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 20px;
    line-height: 50px;
}

.news-block-two .post-meta {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.news-block-two .post-meta li a {
    font-size: 14px;
    font-weight: 700;
    color: #282828;
}

.news-block-two .post-meta li {
    margin-right: 27px;
}

.news-block-two .post-meta li a {
    font-weight: 400;
    font-size: 14px;
}

.news-block-two .post-meta li a i {
    position: relative;
    margin-right: 8px;
    color: #6cbe03;
}

.news-block-two h2 {
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
    padding-bottom: 18px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .news-block-two h2 {
        font-size: 24px;
        line-height: 30px;
    }
}

@media (max-width: 767px) {
    .news-block-two h2 {
        font-size: 20px;
        line-height: 26px;
    }
}

.news-block-two h2 a {
    color: #282828;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.news-block-two .text {
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 30px;
}

.news-block-two .wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .news-block-two .wrapper {
        display: block;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .news-block-two .wrapper {
        display: flex;
    }
}

.news-block-two .author-box {
    position: relative;
    min-height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.news-block-two .author-box .thumb {
    margin-right: 10px;
}

.news-block-two .author-box img {
    border-radius: 50px;
    width: 40px;
}

.news-block-two .author-box h5 {
    font-size: 16px;
    font-weight: 700;
}

.news-block-two .read-more {
    position: relative;
}

.news-block-two .read-more a {
    font-size: 14px;
    font-weight: 700;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    color: #6cbe03;
}

.news-block-two .read-more a i {
    position: relative;
    margin-right: 8px;
}

.news-block-two .read-more a:hover {
    color: #282828;
}

/**/

.news-block-two .author-box-two {
    position: relative;
    padding: 40px;
    min-height: 50px;
    border: 2px solid #ebebeb;
    margin-bottom: 40px;
}

.news-block-two .author-box-two .wrapper-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.news-block-two .author-box-two .content {
    width: 65%;
}

.news-block-two .author-box-two .content h3 {
    font-size: 36px;
    margin-bottom: 10px;
}

.news-block-two .author-box-two h5 {
    font-size: 12px;
    font-weight: 700;
}

.news-block-two .author-box-two .content .text {
    margin-bottom: 0px;
}

/*===========================
    11.FARMS css 
===========================*/

.farms-area {
    position: relative;
    z-index: 10;
    height: 655px;
}

.farms-area::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #02060e;
    opacity: 0.549;
    z-index: -1;
}

.farms-area .farms-content span {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
}

.farms-area .farms-content .title {
    font-size: 80px;
    line-height: 80px;
    color: #fff;
    padding-top: 27px;
    padding-bottom: 47px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .farms-area .farms-content .title {
        font-size: 66px;
        line-height: 76px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .farms-area .farms-content .title {
        font-size: 60px;
        line-height: 60px;
    }
}

@media (max-width: 767px) {
    .farms-area .farms-content .title {
        font-size: 35px;
        line-height: 45px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .farms-area .farms-content .title {
        font-size: 41px;
        line-height: 44px;
    }
}

.farms-area .play {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.farms-area .play a {
    height: 150px;
    width: 150px;
    text-align: center;
    line-height: 150px;
    background: #fff;
    border-radius: 50%;
    color: #6cbe03;
    font-size: 30px;
}

@media (max-width: 767px) {
    .farms-area .play a {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .farms-area .play a {
        display: block;
    }
}

/*===========================
    12.SPONSOR css 
===========================*/

.sponsor-area .sponsor-box {
    border: 15px solid #eef2fb;
    padding: 72px 55px 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sponsor-area .sponsor-box {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .sponsor-area .sponsor-box {
        margin-bottom: 40px;
        padding: 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .sponsor-area .sponsor-box {
        margin-bottom: 40px;
        padding: 72px 55px 80px;
    }
}

.sponsor-area .sponsor-box span {
    color: #6cbe03;
    font-size: 20px;
    font-weight: 700;
    padding-left: 66px;
    position: relative;
}

.sponsor-area .sponsor-box span::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    width: 45px;
    background: #6cbe03;
}

.sponsor-area .sponsor-box .title {
    font-size: 50px;
    line-height: 55px;
    padding-bottom: 22px;
    padding-top: 23px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .sponsor-area .sponsor-box .title {
        font-size: 38px;
        line-height: 48px;
    }
}

@media (max-width: 767px) {
    .sponsor-area .sponsor-box .title {
        font-size: 28px;
        line-height: 36px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .sponsor-area .sponsor-box .title {
        font-size: 40px;
        line-height: 46px;
    }
}

.sponsor-area .sponsor-box ul li {
    margin-top: 30px;
}

@media (max-width: 767px) {
    .sponsor-area .sponsor-box ul li img {
        width: 80%;
    }
}

.sponsor-area .newsletters-box {
    border: 15px solid #eef2fb;
    padding: 72px 55px 90px;
}

@media (max-width: 767px) {
    .sponsor-area .newsletters-box {
        padding: 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .sponsor-area .newsletters-box {
        padding: 72px 55px 90px;
    }
}

.sponsor-area .newsletters-box span {
    color: #6cbe03;
    font-size: 20px;
    font-weight: 700;
    padding-left: 66px;
    position: relative;
}

.sponsor-area .newsletters-box span::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    width: 45px;
    background: #6cbe03;
}

.sponsor-area .newsletters-box .title {
    font-size: 50px;
    line-height: 55px;
    padding-bottom: 22px;
    padding-top: 23px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .sponsor-area .newsletters-box .title {
        font-size: 38px;
        line-height: 48px;
    }
}

@media (max-width: 767px) {
    .sponsor-area .newsletters-box .title {
        font-size: 28px;
        line-height: 36px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .sponsor-area .newsletters-box .title {
        font-size: 40px;
        line-height: 46px;
    }
}

.sponsor-area .newsletters-box .input-box {
    margin-right: 30px;
    position: relative;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .sponsor-area .newsletters-box .input-box {
        margin-right: 0;
    }
}

.sponsor-area .newsletters-box .input-box i {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #6cbe03;
}

.sponsor-area .newsletters-box .input-box input {
    width: 100%;
    border: 2px solid #eef2fb;
    line-height: 80px;
    padding-left: 30px;
    font-size: 18px;
    font-weight: 600;
    color: #686868;
}

@media (max-width: 767px) {
    .sponsor-area .newsletters-box .input-box input {
        padding-left: 15px;
        font-size: 15px;
    }
}

.sponsor-area .newsletters-box .input-box input::placeholder {
    opacity: 1;
}

.questions-area {
    position: relative;
    margin-bottom: -55px;
}

.questions-area .questions-box {
    height: 160px;
    position: relative;
}

.questions-area .questions-box::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 370px;
    background-image: url(../images/questions-thumb.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .questions-area .questions-box::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .questions-area .questions-box::before {
        display: none;
    }
}

.questions-area .questions-box .questions-box-item {
    background: linear-gradient(120deg, #6cbe03 40%, #f4a700 80%);
    height: 160px;
    margin-left: -30px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .questions-area .questions-box .questions-box-item {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .questions-area .questions-box .questions-box-item {
        margin-left: 0;
    }
}

.questions-area .questions-box .questions-box-item .item {
    padding-left: 125px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .questions-area .questions-box .questions-box-item .item {
        padding-left: 70px;
    }
}

@media (max-width: 767px) {
    .questions-area .questions-box .questions-box-item .item {
        padding-left: 50px;
    }
}

.questions-area .questions-box .questions-box-item .item i {
    position: absolute;
    left: -42px;
    top: 50%;
    transform: translateY(-50%);
    height: 80px;
    width: 80px;
    text-align: center;
    line-height: 80px;
    background: #6cbe03;
    border-radius: 50%;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    font-size: 20px;
    color: #f4a700;
    z-index: 5;
}

@media (max-width: 767px) {
    .questions-area .questions-box .questions-box-item .item i {
        left: -32px;
    }
}

.questions-area .questions-box .questions-box-item .item i::after {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 60px;
    width: 60px;
    background: #fff;
    border-radius: 50%;
    z-index: -1;
}

.questions-area .questions-box .questions-box-item .item .title {
    color: #fff;
    font-weight: 600;
    font-size: 26px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .questions-area .questions-box .questions-box-item .item .title {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .questions-area .questions-box .questions-box-item .item .title {
        font-size: 18px;
        line-height: 32px;
    }
}

.questions-area .questions-box .questions-box-item .item .title span {
    font-size: 22px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .questions-area .questions-box .questions-box-item .item .title span {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .questions-area .questions-box .questions-box-item .item .title span {
        font-size: 16px;
    }
}

.questions-area .questions-box .questions-box-item .item p {
    color: #fff;
    padding-top: 6px;
}

.questions-area.questions-bg {
    background: #eef2fb;
}

/*===========================
    13.FOOTER css 
===========================*/

.footer-area {
    background: #161616;
}

.footer-area .footer-top {
    padding-top: 135px;
    padding-bottom: 75px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #1e1e1e;
    margin-bottom: 46px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-area .footer-top .footer-menu {
        display: none;
    }
}

@media (max-width: 767px) {
    .footer-area .footer-top .footer-menu {
        display: none;
    }
}

.footer-area .footer-top .footer-menu ul li {
    display: inline-block;
}

.footer-area .footer-top .footer-menu ul li a {
    font-size: 18px;
    font-weight: 600;
    color: #adadad;
    margin-left: 52px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer-area .footer-top .footer-menu ul li a {
        font-size: 16px;
        margin-left: 30px;
    }
}

.footer-area .footer-top .footer-menu ul li a:hover,
.footer-area .footer-top .footer-menu ul li a.active {
    color: #fff;
}

.footer-area .footer-content {
    margin-top: 30px;
}

.footer-area .footer-content .title {
    font-size: 22px;
    color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer-area .footer-content .title {
        font-size: 19px;
    }
}

.footer-area .footer-content p {
    color: #bbbbbb;
    padding-right: 100px;
    padding-top: 24px;
    padding-bottom: 23px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer-area .footer-content p {
        padding-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-area .footer-content p {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .footer-area .footer-content p {
        padding-right: 0;
    }
}

.footer-area .footer-content ul li {
    display: inline-block;
}

.footer-area .footer-content ul li a {
    font-size: 14px;
    color: #5c5c5c;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 37px;
    border: 2px solid #2f2f2f;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-right: 3px;
}

.footer-area .footer-content ul li a:hover {
    background: #6cbe03;
    border-color: #6cbe03;
    color: #fff;
}

.footer-area .footer-list {
    margin-top: 30px;
    margin-left: 16px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-area .footer-list {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .footer-area .footer-list {
        margin-left: 0;
    }
}

.footer-area .footer-list .title {
    font-size: 22px;
    color: #fff;
    padding-bottom: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer-area .footer-list .title {
        font-size: 19px;
    }
}

.footer-area .footer-list ul li a {
    color: #bbbbbb;
    font-size: 15px;
    line-height: 32px;
    margin-left: -22px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer-area .footer-list ul li a {
        font-size: 12px;
    }
}

.footer-area .footer-list ul li a i {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding-right: 6px;
}

.footer-area .footer-list ul li a:hover {
    color: #6cbe03;
    margin-left: 0;
}

.footer-area .footer-list ul li a:hover i {
    opacity: 1;
}

.footer-area .footer-list.footer-list-2 {
    margin-left: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-area .footer-list.footer-list-2 {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .footer-area .footer-list.footer-list-2 {
        margin-left: 0;
    }
}

.footer-area .footer-info .title {
    font-size: 28px;
    line-height: 37px;
    font-weight: 500;
    color: #fff;
    padding-bottom: 9px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer-area .footer-info .title {
        font-size: 20px;
        line-height: 30px;
    }
}

.footer-area .footer-info ul li a {
    color: #bbb;
    font-size: 18px;
    line-height: 32px;
    padding-top: 8px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer-area .footer-info ul li a {
        font-size: 15px;
    }
}

.footer-area .footer-info ul li a i {
    color: #6cbe03;
    padding-right: 6px;
}

.footer-area .footer-copyright {
    background: #111;
    margin-top: 80px;
}

.footer-area .footer-copyright .footer-copyright-content {
    height: 60px;
}

@media (max-width: 767px) {
    .footer-area .footer-copyright .footer-copyright-content {
        height: auto;
        text-align: center;
    }
}

.footer-area .footer-copyright .footer-copyright-content p {
    line-height: 60px;
    background: #1e1e1e;
    padding: 0 45px;
    font-size: 14px;
    color: #727272;
    margin-right: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-area .footer-copyright .footer-copyright-content p {
        padding: 0 30px;
    }
}

@media (max-width: 767px) {
    .footer-area .footer-copyright .footer-copyright-content p {
        margin-right: 0;
        padding: 0;
        line-height: 27px;
    }
}

.footer-area .footer-copyright .footer-copyright-content p span {
    color: #6cbe03;
}

.footer-area .footer-copyright .footer-copyright-content ul li {
    display: inline-block;
    margin-left: 26px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-area .footer-copyright .footer-copyright-content ul li {
        margin-left: 16px;
    }
}

@media (max-width: 767px) {
    .footer-area .footer-copyright .footer-copyright-content ul li {
        margin-left: 0px;
        margin: 10px 6px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .footer-area .footer-copyright .footer-copyright-content ul li {
        margin-left: 0;
        margin: 10px;
    }
}

.footer-area .footer-copyright .footer-copyright-content ul li a {
    font-size: 14px;
    color: #717171;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
    .footer-area .footer-copyright .footer-copyright-content ul li a {
        font-size: 12px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .footer-area .footer-copyright .footer-copyright-content ul li a {
        font-size: 14px;
    }
}

.footer-area .footer-copyright .footer-copyright-content ul li a:hover {
    color: #6cbe03;
}

.footer-area.footer-3-area {
    padding-top: 46px;
    background: #161616;
}

.footer-area.footer-3-area .footer-content p {
    padding-right: 0;
}

.footer-area.footer-3-area .footer-list {
    margin-left: 42px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer-area.footer-3-area .footer-list {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .footer-area.footer-3-area .footer-list {
        margin-left: 0;
    }
}

.footer-area.footer-3-area .footer-info {
    margin-top: 26px;
    margin-left: 58px;
    margin-right: -12px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer-area.footer-3-area .footer-info {
        margin-left: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-area.footer-3-area .footer-info {
        margin-left: 0;
        margin-right: 35px;
    }
}

@media (max-width: 767px) {
    .footer-area.footer-3-area .footer-info {
        margin-left: 0;
        margin-right: 0px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .footer-area.footer-3-area .footer-info {
        margin-left: 0;
        margin-right: 220px;
    }
}

.footer-area.footer-3-area .footer-info .title {
    font-size: 22px;
    color: #fff;
    padding-bottom: 20px;
    font-weight: 700;
    padding-bottom: 5px;
}

.footer-area.footer-3-area .footer-instagram {
    margin-top: 26px;
    margin-left: -30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-area.footer-3-area .footer-instagram {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .footer-area.footer-3-area .footer-instagram {
        margin-left: 0;
    }
}

.footer-area.footer-3-area .footer-instagram .title {
    color: #fff;
    font-size: 22px;
    padding-bottom: 25px;
}

.footer-area.footer-3-area .footer-instagram ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

.footer-area.footer-3-area .footer-instagram ul li {
    margin: 10px 5px 0;
}

.footer-area.footer-3-area .footer-instagram ul li .item {
    position: relative;
}

.footer-area.footer-3-area .footer-instagram ul li .item::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #6cbe03;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.footer-area.footer-3-area .footer-instagram ul li .item a {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    transform: translate(-50%, -50%);
    font-size: 24px;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.footer-area.footer-3-area .footer-instagram ul li .item:hover::before {
    opacity: .7;
}

.footer-area.footer-3-area .footer-instagram ul li .item:hover a {
    opacity: 1;
}

.footer-area.footer-3-area .footer-copyright.footer-copyright-2 {
    background: #161616;
}

.footer-area.footer-3-area .footer-copyright.footer-copyright-2 .footer-copyright-content {
    position: relative;
    line-height: 75px;
    height: auto;
}

.footer-area.footer-3-area .footer-copyright.footer-copyright-2 .footer-copyright-content::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: #292929;
}

.footer-area.footer-3-area .footer-copyright.footer-copyright-2 .footer-copyright-content p {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

@media (max-width: 767px) {
    .footer-area.footer-3-area .footer-copyright.footer-copyright-2 .footer-copyright-content ul {
        line-height: 10px;
    }
}

.footer-area.footer-contact .footer-top {
    padding-top: 80px;
}

/*===========================
    11.BACK TO TOP CSS
===========================*/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    z-index: 999999;
}

.back-to-top a {
    color: #fff;
    background: linear-gradient(120deg, #6cbe03 40%, #f4a700 80%);
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    border-radius: 50%;
}

/*===========================
    14.ABOUT US css 
===========================*/

.about-us-area {
    background: #eef2fb;
    padding-top: 130px;
    padding-bottom: 130px;
}

.about-us-area .about-thumb {
    position: relative;
}

.about-us-area .about-thumb::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.about-us-area .about-thumb img {
    width: 100%;
}

.about-us-area .about-thumb img.text {
    position: absolute;
    right: 70px;
    bottom: 20px;
}

@media (max-width: 767px) {
    .about-us-area .about-thumb img.text {
        right: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-us-area .about-content {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-us-area .about-content {
        margin-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .about-us-area .about-content {
        margin-left: 0;
        margin-top: 30px;
    }
}

.about-us-area .about-content>span {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6cbe03;
    padding-left: 70px;
    position: relative;
}

.about-us-area .about-content>span::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    width: 45px;
    background: #6cbe03;
}

.about-us-area .about-content .title {
    font-size: 50px;
    line-height: 55px;
    padding-top: 24px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-us-area .about-content .title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .about-us-area .about-content .title {
        font-size: 28px;
        line-height: 38px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .about-us-area .about-content .title {
        font-size: 50px;
        line-height: 55px;
    }
}

.about-us-area .about-content>p {
    font-size: 15px;
    padding-top: 34px;
    padding-bottom: 45px;
}

.about-us-area .about-content ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .about-us-area .about-content ul {
        display: block;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .about-us-area .about-content ul {
        display: flex;
    }
}

.about-us-area .about-content ul li {
    text-align: center;
}

@media (max-width: 767px) {
    .about-us-area .about-content ul li {
        margin-top: 30px;
    }
}

.about-us-area .about-content ul li>span {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    border: 7px solid #6cbe03;
    text-align: center;
    line-height: 110px;
    font-size: 26px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.about-us-area .about-content ul li p {
    font-weight: 600;
    line-height: 25px;
    padding: 15px 25px 0;
}

.about-us-3-area {
    background: #eef2fb;
    padding-top: 121px;
    position: relative;
    z-index: 10;
}

.about-us-3-area::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background-image: url(../images/banner-bg-5.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-us-3-area::before {
        width: 42%;
    }
}

@media (max-width: 767px) {
    .about-us-3-area::before {
        width: 0;
    }
}

.about-us-3-area .about-us-content {
    margin-left: 66px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-us-3-area .about-us-content {
        margin-left: 30px;
    }
}

@media (max-width: 767px) {
    .about-us-3-area .about-us-content {
        margin-left: 0px;
    }
}

.about-us-3-area .about-us-content span {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6cbe03;
    padding-left: 70px;
    position: relative;
}

.about-us-3-area .about-us-content span::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    width: 45px;
    background: #6cbe03;
}

.about-us-3-area .about-us-content .title {
    font-size: 50px;
    line-height: 55px;
    padding-top: 22px;
    padding-bottom: 34px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-us-3-area .about-us-content .title {
        font-size: 38px;
        line-height: 43px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-us-3-area .about-us-content .title {
        font-size: 38px;
        line-height: 43px;
    }
}

@media (max-width: 767px) {
    .about-us-3-area .about-us-content .title {
        font-size: 28px;
        line-height: 36px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .about-us-3-area .about-us-content .title {
        font-size: 50px;
        line-height: 55px;
    }
}

.about-us-3-area .about-us-content p {
    font-size: 15px;
    padding-bottom: 27px;
}

.about-us-3-area .about-us-content ul li {
    line-height: 33px;
    font-size: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-us-3-area .about-us-content ul li {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-us-3-area .about-us-content ul li {
        font-size: 12px;
    }
}

.about-us-3-area .about-us-content ul li i {
    color: #6cbe03;
}

.about-us-3-area .about-us-content a {
    margin-top: 42px;
}

.about-us-3-area .about-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.about-us-3-area .about-shape img {
    width: 60%;
}

.about-info-area .about-info-thumb {
    position: relative;
}

@media (max-width: 767px) {
    .about-info-area .about-info-thumb {
        margin-left: 0;
        margin-right: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .about-info-area .about-info-thumb {
        margin-left: 30px;
        margin-right: 30px;
    }
}

.about-info-area .about-info-thumb::before {
    position: absolute;
    content: '';
    left: -75px;
    top: 50%;
    transform: translateY(-50%);
    width: 75px;
    height: 390px;
    background: #6cbe03;
}

.about-info-area .about-info-thumb img {
    width: 100%;
}

.about-info-area .about-info-content {
    margin-left: 37px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-info-area .about-info-content {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-info-area .about-info-content {
        margin-left: 30px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .about-info-area .about-info-content {
        margin-left: 0px;
        margin-top: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .about-info-area .about-info-content {
        margin-left: 30px;
        margin-top: 30px;
    }
}

.about-info-area .about-info-content span {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6cbe03;
    padding-left: 70px;
    position: relative;
}

.about-info-area .about-info-content span::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    width: 45px;
    background: #6cbe03;
}

.about-info-area .about-info-content .title {
    font-size: 50px;
    line-height: 55px;
    padding-top: 22px;
    padding-bottom: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-info-area .about-info-content .title {
        font-size: 38px;
        line-height: 42px;
    }
}

@media (max-width: 767px) {
    .about-info-area .about-info-content .title {
        font-size: 26px;
        line-height: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .about-info-area .about-info-content .title {
        font-size: 38px;
        line-height: 42px;
    }
}

.about-info-area .about-info-content p {
    font-size: 15px;
    padding-right: 5px;
}

.about-info-area .about-info-content p.text {
    padding-top: 24px;
    padding-bottom: 36px;
}

.about-feedback-area {
    padding-bottom: 226px;
    padding-top: 121px;
    margin-bottom: 130px;
    margin-top: 7px;
    background: #f4f7fe;
    position: relative;
}

.about-feedback-area::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/store-pattern-2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-feedback-area .feedback-item {
    background: #fff;
    padding: 24px 35px 15px;
    margin-top: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-feedback-area .feedback-item {
        padding: 24px 20px 15px;
    }
}

@media (max-width: 767px) {
    .about-feedback-area .feedback-item {
        padding: 24px 15px 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .about-feedback-area .feedback-item {
        padding: 24px 35px 15px;
    }
}

.about-feedback-area .feedback-item .feedback-info {
    padding-left: 105px;
    position: relative;
}

.about-feedback-area .feedback-item .feedback-info img {
    position: absolute;
    left: 0;
    top: -50px;
    overflow: hidden;
    border-radius: 0px 8px 8px 8px;
}

.about-feedback-area .feedback-item .feedback-info .title {
    font-size: 18px;
}

.about-feedback-area .feedback-item .feedback-info span {
    font-size: 14px;
    font-weight: 600;
    color: #6cbe03;
}

.about-feedback-area .feedback-item p {
    font-size: 15px;
    padding-top: 20px;
}

.about-feedback-area .feedback-item .feedback-review ul li {
    display: inline-block;
    font-size: 18px;
    color: #f4a700;
    margin-right: 2px;
}

.about-feedback-area .feedback-item .feedback-review ul.quote li {
    margin-right: 0;
    font-size: 50px;
    color: #6cbe03;
}

.about-feedback-area .feedback-2-active .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    background: #6cbe03;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9;
    font-size: 18px;
}

.about-feedback-area .feedback-2-active .slick-arrow.prev {
    left: -55px;
}

.about-feedback-area .feedback-2-active .slick-arrow.next {
    right: -55px;
}

.about-feedback-area .feedback-2-active .slick-dots {
    position: absolute;
    left: 50%;
    bottom: -98px;
    transform: translateX(-50%);
}

.about-feedback-area .feedback-2-active .slick-dots li {
    display: inline-block;
}

.about-feedback-area .feedback-2-active .slick-dots li button {
    font-size: 0;
    border: 3px solid #4b5f88;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: transparent;
    margin: 0 7px;
}

.about-feedback-area .feedback-2-active .slick-dots li.slick-active button {
    border-color: #6cbe03;
}

/*===========================
    15.WHAT WE DO css 
===========================*/

.what-we-do-area {
    padding-top: 122px;
    padding-bottom: 130px;
}

.what-we-do-area .section-title {
    padding-bottom: 10px;
}

.what-we-do-area .what-we-do-item {
    margin-top: 60px;
}

.what-we-do-area .what-we-do-item i {
    font-size: 120px;
    color: #6cbe03;
    line-height: 120px;
}

.what-we-do-area .what-we-do-item .title {
    font-size: 24px;
    padding-top: 30px;
}

.what-we-do-area .what-we-do-item p {
    font-size: 15px;
    padding: 13px 40px 17px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .what-we-do-area .what-we-do-item p {
        padding: 13px 10px 17px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .what-we-do-area .what-we-do-item p {
        padding: 13px 30px 17px;
    }
}

@media (max-width: 767px) {
    .what-we-do-area .what-we-do-item p {
        padding: 13px 10px 17px;
    }
}

.what-we-do-area .what-we-do-item a {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #686868;
    position: relative;
}

.what-we-do-area .what-we-do-item a::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #686868;
}

.what-we-do-2-area {
    background: #f4f7fe;
    padding-top: 121px;
    padding-bottom: 130px;
}

.what-we-do-2-area .services-box {
    background: #fff;
    box-shadow: 0px 10px 60px 0px rgba(165, 178, 255, 0.33);
    padding: 0px 30px 30px 30px;
    margin-top: 30px;
}

.what-we-do-2-area .services-box .services-item .services-thumb {
    overflow: hidden;
}

.what-we-do-2-area .services-box .services-item .services-thumb img {
    width: 100%;
    transform: scale(1);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.what-we-do-2-area .services-box .services-item:hover .services-thumb img {
    transform: scale(1.1);
}

.what-we-do-2-area .services-box .services-item .services-content {
    padding-top: 35px;
}

.what-we-do-2-area .services-box .services-item .services-content .title {
    font-size: 24px;
}

.what-we-do-2-area .services-box .services-item .services-content p {
    padding: 11px 20px;
    font-size: 15px;
}

@media (max-width: 767px) {
    .what-we-do-2-area .services-box .services-item .services-content p {
        padding: 11px 0;
    }
}

.what-we-do-2-area .services-box .services-item .services-content a {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #686868;
    position: relative;
}

.what-we-do-2-area .services-box .services-item .services-content a::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 100%;
    background: #686868;
}

/*===========================
    16.COUNTDOWN css 
===========================*/

.countdown-area {
    height: 900px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    position: relative;
}

@media (max-width: 767px) {
    .countdown-area {
        height: auto;
    }
}

.countdown-area .countdown-thumb {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .countdown-area .countdown-thumb {
        display: none;
    }
}

@media (max-width: 767px) {
    .countdown-area .countdown-thumb {
        display: none;
    }
}

.countdown-area .countdown-thumb img {
    width: 80%;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .countdown-area .countdown-thumb img {
        width: 60%;
    }
}

.countdown-area .countdown-content {
    margin-left: 40px;
}

@media (max-width: 767px) {
    .countdown-area .countdown-content {
        margin-left: 0;
    }
}

.countdown-area .countdown-content .title {
    font-size: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .countdown-area .countdown-content .title {
        font-size: 40px;
    }
}

.countdown-area .countdown-content h4 {
    font-size: 30px;
    padding-top: 29px;
    padding-bottom: 8px;
}

.countdown-area .countdown-content>span {
    font-size: 16px;
    font-weight: 600;
    color: #bebebe;
    font-family: "Poppins", sans-serif;
}

.countdown-area .countdown-content>span span {
    font-weight: 700;
    color: #6cbe03;
    font-size: 24px;
    padding-left: 10px;
}

.countdown-area .countdown-content ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
}

@media (max-width: 767px) {
    .countdown-area .countdown-content ul {
        display: block;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .countdown-area .countdown-content ul {
        display: flex;
    }
}

.countdown-area .countdown-content ul li {
    height: 110px;
    width: 110px;
    background: #6cbe03;
    padding-left: 21px;
    padding-top: 14px;
    position: relative;
    z-index: 10;
}

@media (max-width: 767px) {
    .countdown-area .countdown-content ul li {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .countdown-area .countdown-content ul li {
        margin-bottom: 0px;
    }
}

.countdown-area .countdown-content ul li::before {
    position: absolute;
    content: '';
    left: -5px;
    top: -5px;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: -1;
}

.countdown-area .countdown-content ul li p {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
}

.countdown-area .countdown-content ul li span {
    font-size: 50px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: #6cbe03;
    line-height: 50px;
    margin-top: -1px;
}

.countdown-area .countdown-content a {
    margin-top: 50px;
}

/*===========================
    17.FARMERS css 
===========================*/

.farmers-area {
    padding-top: 121px;
    padding-bottom: 195px;
}

.farmers-area .farmers-item {
    position: relative;
}

.farmers-area .farmers-item img {
    width: 100%;
}

.farmers-area .farmers-item .farmers-overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.farmers-area .farmers-item .farmers-overlay .item {
    position: absolute;
    left: 30px;
    bottom: -4px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.farmers-area .farmers-item .farmers-overlay .item .title {
    color: #fff;
    font-size: 20px;
    padding-bottom: 4px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .farmers-area .farmers-item .farmers-overlay .item .title {
        font-size: 18px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .farmers-area .farmers-item .farmers-overlay .item .title {
        font-size: 17px;
    }
}

.farmers-area .farmers-item .farmers-overlay .item span {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 8px;
}

.farmers-area .farmers-item .farmers-overlay .item ul {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.farmers-area .farmers-item .farmers-overlay .item ul li {
    display: inline-block;
}

.farmers-area .farmers-item .farmers-overlay .item ul li a {
    color: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-right: 10px;
}

.farmers-area .farmers-item .farmers-overlay .item ul li a:hover {
    color: #6cbe03;
}

.farmers-area .farmers-item:hover .farmers-overlay .item {
    bottom: 26px;
}

.farmers-area .farmers-item:hover .farmers-overlay .item ul {
    opacity: 1;
}

.farmers-area .farmers-active .slick-dots {
    position: absolute;
    left: 50%;
    bottom: -100px;
    transform: translateX(-50%);
}

.farmers-area .farmers-active .slick-dots li {
    display: inline-block;
}

.farmers-area .farmers-active .slick-dots li button {
    background-color: transparent;
    border: 3px solid #dce6fd;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    margin: 0 7px;
    font-size: 0;
}

.farmers-area .farmers-active .slick-dots li.slick-active button {
    border-color: #6cbe03;
}

.farmers-area.team-page {
    padding-top: 100px;
    padding-bottom: 130px;
}

/*===========================
    18.PROJECT css 
===========================*/

.project-details-area {
    padding-bottom: 126px;
}

.project-details-area .project-details-thumb img {
    width: 100%;
}

.project-details-area .project-box .project-content .title {
    font-size: 50px;
    line-height: 55px;
    padding-bottom: 34px;
}

@media (max-width: 767px) {
    .project-details-area .project-box .project-content .title {
        font-size: 28px;
        line-height: 34px;
    }
}

.project-details-area .project-box .project-content p {
    font-size: 15px;
}

.project-details-area .project-box .project-content p.text {
    padding-top: 26px;
    padding-bottom: 41px;
}

.project-details-area .project-box .project-content-2 .title {
    font-size: 35px;
    line-height: 55px;
    padding-top: 44px;
    padding-bottom: 12px;
}

@media (max-width: 767px) {
    .project-details-area .project-box .project-content-2 .title {
        font-size: 28px;
    }
}

.project-details-area .project-box .project-content-2 p {
    font-size: 15px;
}

.project-details-area .project-sidebar-box {
    border: 1px solid #e5e5e5;
    padding: 20px 40px;
}

.project-details-area .project-sidebar-box .item {
    padding: 15px 0;
}

.project-details-area .project-sidebar-box .item span {
    font-weight: 600;
    color: #8a8a8a;
}

.project-details-area .project-sidebar-box .item p {
    font-size: 24px;
    color: #333333;
    font-weight: 600;
}

/*===========================
    19.SHOP css 
===========================*/

.shop-page-area {
    background: #eef2fb;
}

.shop-page-area .shop-thumb img {
    width: 100%;
}

.shop-page-area .shop-search {
    position: relative;
}

.shop-page-area .shop-search input {
    width: 100%;
    background: #fff;
    border: 0;
    line-height: 70px;
    padding-left: 30px;
    font-size: 15px;
    color: #686868;
}

.shop-page-area .shop-search input::placeholder {
    opacity: 1;
}

.shop-page-area .shop-search i {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #6cbe03;
}

.shop-page-area .store-item {
    padding-top: 30px;
    border-radius: 9px;
    box-shadow: 0px 10px 30px 0px rgba(208, 221, 251, 0.48);
    position: relative;
    z-index: 10;
}

.shop-page-area .store-item img {
    display: inline-block;
}

.shop-page-area .store-item .store-title {
    padding: 44px 35px 8px;
}

.shop-page-area .store-item .store-title .title {
    font-size: 24px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-page-area .store-item .store-title .title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .shop-page-area .store-item .store-title .title {
        font-size: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .shop-page-area .store-item .store-title .title {
        font-size: 24px;
    }
}

.shop-page-area .store-item .store-title span {
    font-size: 14px;
    color: #989898;
}

.shop-page-area .store-item .store-title span i {
    color: #f4a700;
    padding-right: 5px;
}

.shop-page-area .store-item .store-price {
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 45px;
}

.shop-page-area .store-item .store-price p {
    font-size: 18px;
    font-weight: 700;
    color: #fe2000;
}

.shop-page-area .store-item .store-price ul li {
    display: inline-block;
}

.shop-page-area .store-item .store-price ul li i {
    color: #f4a700;
    font-size: 14px;
    padding-left: 4px;
}

.pagination-area nav ul li a {
    padding: 0;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    border: 0;
    border-radius: 50%;
    margin: 0 5px;
    font-weight: 600;
    color: #8e8e8e;
    font-family: "Poppins", sans-serif;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
    .pagination-area nav ul li a {
        height: 45px;
        width: 45px;
        line-height: 45px;
        font-size: 14px;
    }
}

.pagination-area nav ul li a:hover {
    background: #6cbe03;
    color: #fff;
}

.pagination-area nav ul li:first-child a {
    border-radius: 50% !important;
}

.pagination-area nav ul li:last-child a {
    border-radius: 50% !important;
}

.pagination-area.pagination-2-area nav ul li a {
    border: 2px solid #eaedf4;
}

.pagination-area.pagination-2-area nav ul li a:hover {
    border-color: #6cbe03;
}

.shop-2-page-area .shop-thumb img {
    width: 100%;
}

.shop-2-page-area .shop-search {
    position: relative;
}

.shop-2-page-area .shop-search input {
    width: 100%;
    background-color: transparent;
    line-height: 65px;
    padding-left: 30px;
    border: 2px solid #eaedf4;
    border-radius: 6px;
    color: #686868;
}

.shop-2-page-area .shop-search input::placeholder {
    opacity: 1;
}

.shop-2-page-area .shop-search i {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #6cbe03;
    font-size: 15px;
}

.shop-2-page-area .store-item {
    padding-top: 30px;
    border-radius: 9px;
    border: 2px solid #eaedf4;
    position: relative;
    z-index: 10;
}

.shop-2-page-area .store-item img {
    display: inline-block;
}

.shop-2-page-area .store-item .store-title {
    padding: 44px 35px 8px;
}

.shop-2-page-area .store-item .store-title .title {
    font-size: 24px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-2-page-area .store-item .store-title .title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .shop-2-page-area .store-item .store-title .title {
        font-size: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .shop-2-page-area .store-item .store-title .title {
        font-size: 24px;
    }
}

.shop-2-page-area .store-item .store-title span {
    font-size: 14px;
    color: #989898;
}

.shop-2-page-area .store-item .store-title span i {
    color: #f4a700;
    padding-right: 5px;
}

.shop-2-page-area .store-item .store-price {
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 45px;
}

.shop-2-page-area .store-item .store-price p {
    font-size: 18px;
    font-weight: 700;
    color: #fe2000;
}

.shop-2-page-area .store-item .store-price ul li {
    display: inline-block;
}

.shop-2-page-area .store-item .store-price ul li i {
    color: #f4a700;
    font-size: 14px;
    padding-left: 4px;
}

.shop-2-page-area .shop-sidebar .shop-box {
    border: 2px solid #eaedf4;
    padding: 32px;
}

.shop-2-page-area .shop-sidebar .shop-box .sidebar-title {
    padding-bottom: 20px;
}

.shop-2-page-area .shop-sidebar .shop-box .sidebar-title .title {
    font-size: 22px;
    position: relative;
}

.shop-2-page-area .shop-sidebar .shop-box .sidebar-title .title::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -14px;
    height: 2px;
    width: 10px;
    background: #6cbe03;
}

.shop-2-page-area .shop-sidebar .shop-box .sidebar-title .title::after {
    position: absolute;
    content: '';
    left: 17px;
    bottom: -14px;
    height: 2px;
    width: 25px;
    background: #6cbe03;
}

.shop-2-page-area .shop-category .category-item {
    padding-top: 13px;
}

.shop-2-page-area .shop-category .category-item ul li a {
    color: #8a8a8a;
    line-height: 35px;
}

.shop-2-page-area .shop-tag .tag-item {
    padding-top: 14px;
}

.shop-2-page-area .shop-tag .tag-item ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.shop-2-page-area .shop-tag .tag-item ul li {
    margin-top: 10px;
}

.shop-2-page-area .shop-tag .tag-item ul li a {
    font-size: 14px;
    color: #8a8a8a;
    line-height: 40px;
    background: #eef3f9;
    border-radius: 6px;
    padding: 0 20px;
    margin-right: 10px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-2-page-area .shop-tag .tag-item ul li a {
        font-size: 12px;
        padding: 0 10px;
    }
}

.shop-2-page-area .shop-tag .tag-item ul li a:hover {
    color: #fff;
    background: #6cbe03;
}

.shop-2-page-area .shop-price .price-item {
    padding-top: 27px;
}

.shop-2-page-area .shop-price .price-item .line {
    height: 4px;
    width: 100%;
    background: #6cbe03;
    position: relative;
}

.shop-2-page-area .shop-price .price-item .line::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 10px;
    width: 10px;
    background: #6cbe03;
}

.shop-2-page-area .shop-price .price-item span {
    font-size: 14px;
    font-weight: 500;
    color: #8a8a8a;
    font-family: "Poppins", sans-serif;
    padding-top: 12px;
}

.shop-2-page-area .shop-price .price-item span span {
    font-weight: 700;
    color: #666;
}

.shop-2-page-area .shop-details .shop-thumb-list img,
.shop-2-page-area .shop-details .shop-thumb img {
    width: 100%;
}

.shop-2-page-area .shop-details .shop-thumb {
    margin-right: -30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-2-page-area .shop-details .shop-thumb {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .shop-2-page-area .shop-details .shop-thumb {
        margin-right: 0;
    }
}

.shop-2-page-area .shop-details .shop-details-content {
    padding-top: 62px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-2-page-area .shop-details .shop-details-content {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .shop-2-page-area .shop-details .shop-details-content {
        padding-left: 0;
    }
}

.shop-2-page-area .shop-details .shop-details-content .title {
    font-size: 24px;
    line-height: 30px;
    padding-right: 10px;
    padding-bottom: 16px;
}

.shop-2-page-area .shop-details .shop-details-content .icon ul li {
    display: inline-block;
}

.shop-2-page-area .shop-details .shop-details-content .icon ul li i {
    font-size: 14px;
    color: #f86e03;
    margin-right: 5px;
}

.shop-2-page-area .shop-details .shop-details-content h5 {
    font-size: 18px;
    padding-top: 14px;
}

.shop-2-page-area .shop-details .shop-details-content p {
    font-size: 14px;
    padding-right: 10px;
    padding-bottom: 20px;
    padding-top: 27px;
}

.shop-2-page-area .shop-details .shop-details-content .social {
    margin-top: 30px;
}

.shop-2-page-area .shop-details .shop-details-content .social ul li {
    display: inline-block;
}

.shop-2-page-area .shop-details .shop-details-content .social ul li a {
    font-size: 14px;
    color: #8a8a8a;
    margin-right: 10px;
}

.shop-2-page-area .tab-area .nav {
    border-bottom: 2px solid #dddddd;
    padding-bottom: 12px;
}

.shop-2-page-area .tab-area .nav li a {
    padding: 0;
    background-color: transparent;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-right: 42px;
}

@media (max-width: 767px) {
    .shop-2-page-area .tab-area .nav li a {
        margin-right: 20px;
    }
}

.shop-2-page-area .tab-area .nav li a.active {
    background-color: transparent;
    color: #6cbe03;
    position: relative;
}

.shop-2-page-area .tab-area .nav li a.active::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -14px;
    height: 2px;
    width: 100%;
    background: #6cbe03;
}

@media (max-width: 767px) {
    .shop-2-page-area .tab-area .nav li a.active::before {
        height: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .shop-2-page-area .tab-area .nav li a.active::before {
        height: 2px;
    }
}

.shop-2-page-area .tab-area .tab-content {
    padding-top: 14px;
}

.shop-2-page-area .tab-area .tab-content p {
    font-size: 14px;
    padding-right: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-2-page-area .tab-area .tab-content p {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .shop-2-page-area .tab-area .tab-content p {
        padding-right: 0;
    }
}

.shop-2-page-area .tab-area .tab-content p.text {
    padding-top: 28px;
}

.product-quantity {
    padding-top: 20px;
}

.product-quantity button {
    width: 50px;
    height: 40px;
    padding: 0;
    background-color: #fff;
    font-size: 18px;
    color: #404040;
    border: 1px solid #dce1e5;
    border-radius: 0px 0 0 0px;
    border-right: 0;
}

@media (max-width: 767px) {
    .product-quantity button {
        width: 40px;
        height: 40px;
    }
}

.product-quantity button#add {
    border-radius: 0px 0px 0px 0px;
    border-left: 0;
    border-right: 1px solid #dce1e5;
}

.product-quantity input {
    width: 50px;
    height: 40px;
    border: 1px solid #dce1e5;
    padding: 0 10px;
    text-align: center;
    margin: 0 0;
    color: #404040;
}

@media (max-width: 767px) {
    .product-quantity input {
        height: 40px;
    }
}

.shop-item-3-area {
    background: #eef2fb;
    padding-top: 121px;
    padding-bottom: 130px;
}

.shop-item-3-area .store-item {
    padding-top: 30px;
    border-radius: 9px;
    box-shadow: 0px 10px 30px 0px rgba(208, 221, 251, 0.48);
    position: relative;
    z-index: 10;
}

.shop-item-3-area .store-item img {
    display: inline-block;
}

.shop-item-3-area .store-item .store-title {
    padding: 44px 35px 8px;
}

.shop-item-3-area .store-item .store-title .title {
    font-size: 24px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-item-3-area .store-item .store-title .title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .shop-item-3-area .store-item .store-title .title {
        font-size: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .shop-item-3-area .store-item .store-title .title {
        font-size: 24px;
    }
}

.shop-item-3-area .store-item .store-title span {
    font-size: 14px;
    color: #989898;
}

.shop-item-3-area .store-item .store-title span i {
    color: #f4a700;
    padding-right: 5px;
}

.shop-item-3-area .store-item .store-price {
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 45px;
}

.shop-item-3-area .store-item .store-price p {
    font-size: 18px;
    font-weight: 700;
    color: #fe2000;
}

.shop-item-3-area .store-item .store-price ul li {
    display: inline-block;
}

.shop-item-3-area .store-item .store-price ul li i {
    color: #f4a700;
    font-size: 14px;
    padding-left: 4px;
}

/*===========================
    20.CONTACT css 
===========================*/

.contact-massage-area .contact-massage {
    background: #eef2fb;
    position: relative;
}

.contact-massage-area .contact-massage::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 37%;
    background-image: url(../images/contact-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-massage-area .contact-massage::before {
        width: 0;
    }
}

@media (max-width: 767px) {
    .contact-massage-area .contact-massage::before {
        width: 0;
    }
}

.contact-massage-area .contact-massage .contact-massage-item {
    padding: 71px 30px 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-massage-area .contact-massage .contact-massage-item {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .contact-massage-area .contact-massage .contact-massage-item {
        margin-left: 0;
    }
}

.contact-massage-area .contact-massage .contact-massage-item form .input-box {
    position: relative;
}

.contact-massage-area .contact-massage .contact-massage-item form .input-box>i {
    position: absolute;
    right: 25px;
    top: 23px;
    font-size: 14px;
    color: #6cbe03;
}

.contact-massage-area .contact-massage .contact-massage-item form .input-box input {
    width: 100%;
    border: 0;
    padding-left: 25px;
    line-height: 60px;
    font-size: 14px;
    color: #8a8a8a;
}

.contact-massage-area .contact-massage .contact-massage-item form .input-box input::placeholder {
    opacity: 1;
}

.contact-massage-area .contact-massage .contact-massage-item form .input-box textarea {
    margin-bottom: 20px;
    width: 100%;
    border: 0;
    padding-left: 25px;
    height: 120px;
    resize: none;
    padding-top: 18px;
    font-size: 14px;
    color: #8a8a8a;
}

.contact-massage-area .contact-massage .contact-massage-item form .input-box textarea::placeholder {
    opacity: 1;
}

.contact-massage-area .contact-massage .contact-massage-item form .input-box.item-1 {
    margin-right: -5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-massage-area .contact-massage .contact-massage-item form .input-box.item-1 {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .contact-massage-area .contact-massage .contact-massage-item form .input-box.item-1 {
        margin-right: 0;
    }
}

.contact-massage-area .contact-massage .contact-massage-item form .input-box.item-2 {
    margin-left: -5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-massage-area .contact-massage .contact-massage-item form .input-box.item-2 {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .contact-massage-area .contact-massage .contact-massage-item form .input-box.item-2 {
        margin-left: 0;
    }
}

.contact-massage-area .contact-massage .contact-massage-item .massage-title {
    padding-bottom: 38px;
}

.contact-massage-area .contact-massage .contact-massage-item .massage-title .title {
    font-size: 30px;
    font-weight: 600;
    position: relative;
}

.contact-massage-area .contact-massage .contact-massage-item .massage-title .title::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -18px;
    height: 2px;
    width: 10px;
    background: #6cbe03;
}

.contact-massage-area .contact-massage .contact-massage-item .massage-title .title::after {
    position: absolute;
    content: '';
    left: 18px;
    bottom: -18px;
    height: 2px;
    width: 25px;
    background: #6cbe03;
}

.contact-info-area .contact-info {
    background: #02060e;
    position: relative;
    margin-bottom: -90px;
}

.contact-info-area .contact-info .contact-info-item {
    padding-top: 80px;
    padding-bottom: 76px;
}

.contact-info-area .contact-info .contact-info-item i {
    font-size: 40px;
    color: #f4a700;
    padding-bottom: 17px;
}

.contact-info-area .contact-info .contact-info-item ul li {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #fff;
}

.contact-info-area .map iframe {
    width: 100%;
    height: 650px;
    margin-bottom: -5px;
}

/*** 
=============================================
    Checkout Area style
=============================================
***/

.checkout-area {
    position: relative;
    display: block;
    padding-top: 130px;
}

.checkout-area .shop-title-box h3 {
    position: relative;
    font-size: 24px;
    color: #282828;
    margin-bottom: 30px;
    font-weight: 700;
}

.checkout-area .exisitng-customer {
    position: relative;
    display: block;
    background: #f8f7ff;
    padding: 20px 28px 21px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.checkout-area .exisitng-customer:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    content: "";
    background: #6cbe03;
}

.checkout-area .exisitng-customer h5 {
    color: #222222;
    font-size: 16px;
    font-weight: 500;
}

.checkout-area .exisitng-customer h5 a {
    font-weight: 400;
    display: inline-block;
    padding-left: 15px;
    color: #6cbe03;
}

.checkout-area .coupon {
    position: relative;
    display: block;
    background: #f8f7ff;
    padding: 20px 28px 21px;
    margin-bottom: 60px;
    border-radius: 5px;
}

.checkout-area .coupon:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    content: "";
    background: #6cbe03;
}

.checkout-area .coupon h5 {
    color: #222222;
    font-size: 16px;
    font-weight: 500;
}

.checkout-area .coupon h5 a {
    font-weight: 400;
    display: inline-block;
    padding-left: 15px;
    color: #6cbe03;
}

.checkout-area .form form .field-label {
    color: #282828;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 3px;
    text-transform: capitalize;
}

.checkout-area .form form .field-input input[type="text"] {
    border: 1px solid #f0eef9;
    color: #848484;
    display: block;
    font-size: 16px;
    height: 48px;
    margin-bottom: 25px;
    padding: 0 15px;
    width: 100%;
    border-radius: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.checkout-area .form form .field-input input[type="text"]:focus {
    border: 1px solid #222;
}

.checkout-area .create-acc .checkbox {
    margin: 7px 0 0;
}

.checkout-area .create-acc .checkbox label {
    color: #282828;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
}

.checkout-area .create-acc .checkbox input {
    position: relative;
    top: 1px;
}

.checkout-area .shipping-info input[type="checkbox"] {
    cursor: pointer;
    display: inline-block;
    margin: 0 0 0 20px;
    position: relative;
    top: 0px;
    vertical-align: middle;
}

.checkout-area .form form .field-input textarea {
    border: 1px solid #f0eef9;
    color: #848484;
    display: block;
    font-size: 16px;
    height: 121px;
    margin-bottom: 28px;
    padding: 10px 15px;
    width: 100%;
    border-radius: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.checkout-area .form form .field-input textarea:focus {
    border-color: #c84522;
}

.checkout-area .cart-table tbody tr .qty .input-group-btn-vertical {
    display: none;
}

.checkout-area .cart-table tbody tr .qty .input-group.bootstrap-touchspin {
    width: 50px;
}

.checkout-area .cart-table tbody tr .qty .input-group.bootstrap-touchspin .quantity-spinner {
    border-radius: 6px;
    background: transparent;
    text-align: center;
}

.checkout-area .bottom {
    position: relative;
    display: block;
    background: #fdfcfb;
    padding-top: 126px;
    padding-bottom: 130px;
    margin-top: 115px;
}

.checkout-area .table {
    overflow-x: auto;
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.checkout-area .table .cart-table {
    min-width: auto;
    width: 100%;
}

.checkout-area .table .cart-table .cart-header {
    position: relative;
    background: #fff;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    width: 100%;
    border: 1px solid #eaeaea;
}

.checkout-area .table .cart-table thead tr th {
    font-weight: 700;
    line-height: 24px;
    min-width: 110px;
    padding: 19px 30px 17px;
    border-top: none;
    border-bottom: none;
    font-size: 18px;
    color: #282828;
}

.checkout-area .table .cart-table thead tr th.product-column {
    padding-left: 30px;
    text-align: left;
}

.checkout-area .table .cart-table tbody tr {
    border-bottom: 1px solid #e8e6f4;
}

.checkout-area .table .cart-table tbody tr td {
    vertical-align: middle;
}

.checkout-area .table .cart-table tbody tr td {
    min-width: 110px;
    max-width: 160px;
    padding: 30px 0;
    border-top: none;
}

.checkout-area .table .cart-table tbody tr td.qty input {
    border-radius: 6px;
    background: transparent;
    text-align: center;
    height: 40px;
    width: 40px;
    border: 1px solid #ddd;
    margin-left: 20px;
}

.checkout-area .table .cart-table tbody tr .product-column .column-box {
    min-height: 70px;
}

.checkout-area .table .cart-table tbody tr .product-column .column-box .prod-thumb a {
    display: block;
}

.checkout-area .table .cart-table tbody tr .product-column .column-box .prod-thumb img {
    display: block;
    max-width: 150px;
    border-radius: 6px;
}

.checkout-area .table .cart-table tbody tr .product-column .column-box .prod-thumb,
.checkout-area .table .cart-table tbody tr .product-column .column-box .product-title {
    display: table-cell;
    vertical-align: middle;
}

.checkout-area .table .cart-table tbody tr .product-column .column-box .product-title {
    padding-left: 20px;
}

.checkout-area .table .cart-table tbody tr .product-column .column-box .product-title h3 {
    color: #282828;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
}

.checkout-area .table .cart-table tbody tr td.price {
    font-size: 18px;
    font-weight: 700;
}

.cart-total-table {
    border: 1px solid #e8e6f4;
    border-radius: 6px;
}

.cart-total-table li {
    border-bottom: 1px solid #e8e6f4;
}

.cart-total-table li:last-child {
    border-bottom: none;
}

.cart-total-table li span.col.col-title {
    position: relative;
    display: block;
    float: left;
    border-right: 1px solid #e8e6f4;
    color: #282828;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    padding: 10px 18px;
    width: 50%;
}

.cart-total-table li span.col {
    position: relative;
    display: block;
    float: left;
    color: #111;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    padding: 10px 18px;
    width: 50%;
}

.cart-total .payment-options {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 30px;
    border: 1px solid #e8e6f4;
    padding: 23px 20px 35px;
    border-radius: 6px;
}

.cart-total .payment-options .option-block {
    margin-bottom: 14px;
}

.cart-total .payment-options .option-block .checkbox {
    margin: 0 0 5px;
}

.cart-total .payment-options .option-block .checkbox label {
    display: block;
    font-weight: 500;
    min-height: 20px;
    padding-left: 0px;
    margin: 0;
}

.cart-total .payment-options .option-block .checkbox label input {
    position: relative;
    top: 1px;
}

.cart-total .payment-options .option-block .checkbox label span {
    color: #282828;
    font-size: 16px;
    font-weight: 400;
    padding-left: 10px;
}

.cart-total .payment-options .option-block .checkbox label span b {
    color: #222222;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    padding-left: 25px;
    text-decoration: underline;
}

.cart-total .payment-options .option-block .text {
    padding-left: 30px;
}

.cart-total .payment-options .option-block .text p {
    margin: 0;
    line-height: 28px;
}

.placeorder-button .btn-style-one .btn-title {
    padding: 8px 30px;
}

/*** 
=============================================
   Cart area  style
=============================================
***/

.cart-area {
    padding-top: 122px;
    padding-bottom: 130px;
}

.cart-area .qty input.quantity-spinner.form-control {
    width: 100px;
    height: 60px;
    text-align: center;
    border: 2px solid #ebebeb;
    font-weight: 700;
    border-radius: 0;
}

.cart-area .qty input.quantity-spinner.form-control:focus {
    outline: none;
    box-shadow: none;
}

.cart-area .qty span.input-group-btn-vertical {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
}

.cart-area .qty span.input-group-btn-vertical .bootstrap-touchspin-up {
    position: absolute;
    right: 24px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: transparent;
}

.cart-area .qty span.input-group-btn-vertical .bootstrap-touchspin-down {
    position: absolute;
    left: 24px;
    top: 22px;
    width: 20px;
    height: 20px;
    background: transparent;
}

.cart-area .qty span.input-group-btn-vertical .bootstrap-touchspin-up:before {
    position: absolute;
    content: "+";
    top: 0;
    left: 0;
    line-height: 18px;
    width: 20px;
    font-size: 17px;
    color: #999;
}

.cart-area .qty span.input-group-btn-vertical .bootstrap-touchspin-down:before {
    position: absolute;
    content: "-";
    top: 0;
    left: 0;
    line-height: 18px;
    width: 20px;
    font-size: 30px;
    color: #999;
}

.total-item-info {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}

.total-item-info li {
    font-size: 15px;
    color: #282828;
}

.total-item-info li span {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #282828;
}

.cart-area .table-outer {
    overflow-x: auto;
    position: relative;
    width: 100%;
}

.cart-area .cart-table {
    min-width: 1024px;
    width: 100%;
}

.cart-area .cart-table .cart-header {
    position: relative;
    background: #f6f6f6;
    color: #27282c;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    width: 100%;
}

.cart-area .cart-table .cart-header tr {
    background: #f4f1ee;
}

.cart-area .cart-table thead tr th {
    font-weight: 700;
    line-height: 24px;
    min-width: 110px;
    padding: 20px 25px;
    font-size: 18px;
}

.cart-area .cart-table thead tr th.prod-column {
    padding-left: 30px;
    text-align: left;
    width: 24%;
}

.cart-area .cart-table thead tr th.availability {
    padding: 0 40px;
}

.cart-area .cart-table tbody tr {
    border-bottom: 1px solid #e7e7e7;
}

.cart-area .cart-table tbody tr td {
    color: #282828;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    min-width: 100px;
    padding: 30px 25px;
    width: 20%;
}

.cart-area .cart-table tbody tr .prod-column {
    padding-left: 30px;
    text-align: left;
}

.cart-area .cart-table tbody tr .prod-column .column-box {
    position: relative;
    min-height: 100px;
}

.cart-area .cart-table tbody tr .prod-column .column-box .prod-thumb {
    width: 80px;
}

.cart-area .cart-table tbody tr .prod-column .column-box .prod-thumb a {
    position: relative;
    display: block;
    border-radius: 0px;
}

.cart-area .cart-table tbody tr .prod-column .column-box .prod-thumb a img {
    width: 100%;
    border-radius: 0;
}

.cart-area .cart-table tbody tr .prod-column .column-box .prod-thumb,
.cart-area .cart-table tbody tr .prod-column .column-box .title {
    display: table-cell;
    vertical-align: middle;
}

.cart-area .cart-table tbody tr .prod-column .column-box .title {
    padding-left: 20px;
}

.cart-area .cart-table tbody tr .prod-column .column-box .title h3 {
    color: #282828;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    text-transform: capitalize;
}

.cart-table tbody tr .qty {
    padding-right: 25px;
}

.cart-table tbody tr .qty .input-group-btn-vertical {
    /* border: 1px solid #eaeaea; */
    /* border-left: 0px; */
    /* border-bottom-right-radius: 6px; */
    /* border-top-right-radius: 6px; */
}

.cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
    border-radius: 0;
}

.cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
    border-radius: 0;
    margin-top: -2px;
}

.cart-table tbody tr td.unit-price {
    padding-left: 20px;
    padding-right: 20px;
}

.cart-area .cart-table tbody .available-info {
    position: relative;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    padding-left: 50px;
}

.cart-area .cart-table tbody .available-info .icon {
    position: absolute;
    top: 0px;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    background: #6cbe03;
}

.cart-area .cart-table tbody tr td.price {
    font-size: 15px;
    font-weight: 700;
}

.cart-area .cart-table tbody tr .sub-total {
    font-size: 15px;
    font-weight: 700;
}

.cart-area .cart-table tbody tr td .remove {
    text-align: center;
    font-size: 30px;
    color: #999;
    font-weight: normal;
}

.cart-area .cart-table tbody tr td .remove .checkbox label {
    color: #828282;
    font-size: 15px;
    font-weight: 400;
}

.cart-area .cart-table tbody tr td .remove .checkbox label input[type="checkbox"] {
    display: inline-block;
    position: relative;
    top: 1px;
}

.cart-area .cart-table tbody tr td .remove span {
    cursor: pointer;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.cart-area .cart-table tbody tr td .remove span:hover {
    color: #c84522;
}

.cart-middle {
    padding-top: 30px;
}

.cart-middle .apply-coupon {
    padding-left: 245px;
    position: relative;
}

.cart-middle .apply-coupon input[type="text"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 225px;
    height: 58px;
    border: 1px solid #ededed;
    color: #828282;
    font-size: 15px;
    font-weight: 400;
    padding: 0 20px;
    text-transform: capitalize;
    -webkit-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
    border-radius: 29px;
}

.cart-middle .apply-coupon input[type="text"]:focus {
    border: 1px solid #222;
}

.cart-middle .apply-coupon .apply-coupon-button .btn-style-one .btn-title {
    color: #282828;
    background: #f6f6f6;
}

.cart-middle .apply-coupon .apply-coupon-button button:hover {
    color: #ffffff;
    background: #c84522;
}

.cart-bottom {
    overflow: hidden;
    padding-top: 70px;
}

.cart-bottom .calculate-shipping .shop-page-title {
    padding-bottom: 16px;
}

.cart-bottom .calculate-shipping .ui-state-default .ui-icon {
    background: none;
}

.cart-bottom .calculate-shipping .ui-state-default {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: 0;
    color: #828282;
    font-size: 15px;
    font-weight: 400;
    height: 50px;
    margin-bottom: 30px;
    outline: medium none;
    width: 100%;
}

.cart-bottom .calculate-shipping .ui-selectmenu-button span.ui-selectmenu-text {
    display: block;
    line-height: 18px;
    overflow: hidden;
    padding: 15px 19px;
    text-align: left;
}

.cart-bottom .calculate-shipping .ui-selectmenu-button span.ui-icon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border-left: 1px solid #ededed;
    display: block;
    width: 60px;
    height: 48px;
    text-indent: 0;
    margin: 0;
}

.cart-bottom .calculate-shipping input[type="text"] {
    position: relative;
    display: block;
    border: 1px solid #ededed;
    color: #828282;
    font-size: 15px;
    font-weight: 400;
    height: 50px;
    padding: 0 20px;
    width: 100%;
    margin-bottom: 30px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.cart-bottom .calculate-shipping input[type="text"]:focus {
    border: 1px solid #1d1d1d;
}

.cart-bottom .calculate-shipping button {
    color: #27282c;
    background: #f6f6f6;
}

.cart-bottom .calculate-shipping button:hover {
    color: #ffffff;
    background: #c84522;
}

.cart-bottom button.checkout-btn {
    color: #27282c;
    background: #f6f6f6;
    margin-top: 30px;
}

.cart-bottom button.checkout-btn:hover {
    color: #ffffff;
    background: #c84522;
}

/*# sourceMappingURL=style.css.map */