/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700);

/* =========================================================
        General
============================================================ */
body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 27px;
  font-weight: 400;
  color: #3a3a3a;
  background-color: #ffffff;
  overflow-x: hidden;
}
:root{
  --commonBtnBg : #6cbe03
}

body.dark-layout {
  color: #696969;
  background-color: #1f1f1f;
}

body.dark-layout .section-title h2 {
  color: #676767;
}

body.dark-layout .footer-section {
  background: #252525;
}

body.dark-layout .footer-section .second-footer {
  background-color: #101010;
}

body.dark-layout .footer-section .second-footer .contact-wrapper ul li {
  color: #545454;
}

body.dark-layout .footer-section .second-footer .copy-right p {
  color: #4a4a4a;
}

html {
  font-family: "Poppins", sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
}

/* ================= Link style ==================== */
a {
  color: #6cbe03;
}

a,
a>* {
  outline: none;
  cursor: pointer;
  text-decoration: none;
}

a:focus,
a:hover {
  color: #313131;
  outline: none;
  text-decoration: none;
}

/* ================= Transition elements ==================== */
a,
.navbar a,
.form-control {
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

/* =========================================================
        Typography 
============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin: 0 0 20px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -1px;
}

@media (min-width: 480px) and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 479px) {
  h1 {
    font-size: 34px;
  }
}

h2 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 600;
  color: #1b232f;
}

@media (min-width: 480px) and (max-width: 767px) {
  h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

@media only screen and (max-width: 479px) {
  h2 {
    font-size: 25px;
    line-height: 30px;
  }
}

h3 {
  font-size: 26px;
  line-height: 30px;
  color: #1f1842;
}

@media only screen and (max-width: 479px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

p img {
  margin: 0;
}

p {
  margin: 0 0 15px;
  line-height: 27px;
}

hr {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* =========================================================
        Button STYLE 
============================================================ */
.btn {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
}

.btn.active,
.btn:active {
  box-shadow: none;
}

button,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: none;
}

.btn-default {
  position: relative;
  font-size: 18px;
  color: #6cbe03;
  background-color: #FFFFFF;
  border: 2px solid #6cbe03;
  border-radius: 0;
  padding: 8px 22px;
  border-radius: 25px;
  overflow: hidden;
  z-index: 5;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.btn-default::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #6cbe03;
  border-radius: 25px;
  transform: translateX(-102%);
  z-index: -1;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.btn-default:hover {
  color: #FFFFFF;
}

.btn-default:hover::before {
  transform: translateX(0);
}

@media only screen and (max-width: 767px) {
  .btn-default {
    padding: 6px 18px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 479px) {
  .btn-default {
    font-size: 14px;
    padding: 2px 16px;
  }
}

.btn-default:hover,
.btn-default.focus,
.btn-default:focus,
.btn-default.active,
.btn-default:active,
.open>.dropdown-toggle.btn-default,
.btn-default.active.focus,
.btn-default.active:focus,
.btn-default.active:hover,
.btn-default:active.focus,
.btn-default:active:focus,
.btn-default:active:hover,
.open>.dropdown-toggle.btn-default.focus,
.open>.dropdown-toggle.btn-default:focus,
.open>.dropdown-toggle.btn-default:hover,
.open>.dropdown-toggle.btn-primary {
  color: #FFFFFF;
  border-color: #6cbe03;
}

.btn-primary {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  border: 0;
  border-radius: 25px;
  padding: 8px 25px;
  z-index: 5;
  overflow: hidden;
  background-color: #6cbe03;
  color: #FFFFFF;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 25px;
  transform: translateX(-102%);
  z-index: -1;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

@media only screen and (max-width: 767px) {
  .btn-primary {
    font-size: 16px;
    padding: 6px 18px;
  }
}

@media only screen and (max-width: 479px) {
  .btn-primary {
    font-size: 14px;
    padding: 2px 16px;
  }
}

.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open>.dropdown-toggle.btn-primary.focus,
.open>.dropdown-toggle.btn-primary:focus,
.open>.dropdown-toggle.btn-primary:hover {
  background-color: #6cbe03;
  color: #6cbe03;
}

/* =========================================================
        Color Presets For Class
============================================================ */
.facebook-bg {
  background-color: #106ed2;
}

.twitter-bg {
  background-color: #3ad0fb;
}

.linkedin-bg {
  background-color: #1379bb;
}

/* =========================================================
        Global Classes 
============================================================ */
.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.section-padding {
  padding: 110px 0;
}

@media only screen and (max-width: 991px) {
  .section-padding {
    padding: 90px 0;
  }
}

@media only screen and (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }
}

.inline-block {
  display: inline-block;
}

.ml-30 {
  margin-left: 30px;
}

.mr-30 {
  margin-right: 30px;
}

/* =========================================================
        FORM STYLE 
============================================================ */
.form-control:focus {
  box-shadow: none;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background-color: transparent;
  background-image: none;
  color: #ffffff;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea,
select {
  outline: none;
  margin: 0;
  max-width: 100%;
  -webkit-border-radius: 0px 0px 0px 0px;
  -moz-border-radius: 0px 0px 0px 0px;
  -o-border-radius: 0px 0px 0px 0px;
  -ms-border-radius: 0px 0px 0px 0px;
  -khtml-border-radius: 0px 0px 0px 0px;
  border-radius: 0px 0px 0px 0px;
}

/* =========================================================
        Light-Box STYLE 
============================================================ */
.poptrox-popup {
  background: transparent !important;
}

.poptrox-popup .caption,
.poptrox-popup .closer,
.poptrox-popup .nav-next,
.poptrox-popup .nav-previous {
  display: none !important;
}

/* =========================================================
        Border Style
============================================================ */
.border-break .border {
  border-bottom: 1px solid #dfdfdf;
}

/* =========================================================
        Pagination STYLE 
============================================================ */
.pagination-wrapper {
  margin-top: 80px;
}

@media only screen and (max-width: 991px) {
  .pagination-wrapper {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .pagination-wrapper {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 479px) {
  .pagination-wrapper {
    margin-top: 0;
  }
}

.pagination-wrapper .pagination li.active>a {
  color: #FFFFFF;
  border-color: #6cbe03;
  background-color: #6cbe03;
}

.pagination-wrapper .pagination li.active>a:hover,
.pagination-wrapper .pagination li.active>a:focus,
.pagination-wrapper .pagination li.active>a:active {
  background-color: #6cbe03;
}

.pagination-wrapper .pagination li a {
  width: 40px;
  height: 40px;
  line-height: 25px;
  font-weight: 700;
  color: #000000;
  border-radius: 0;
  background-color: transparent;
  margin: 0 4px;
}

@media only screen and (max-width: 479px) {
  .pagination-wrapper .pagination li a {
    width: 30px;
    height: 30px;
    line-height: 15px;
    font-size: 12px;
    margin: 0 2px 5px;
  }
}

.pagination-wrapper .pagination>li>a:focus,
.pagination-wrapper .pagination>li>a:hover,
.pagination-wrapper .pagination>li>span:focus,
.pagination-wrapper .pagination>li>span:hover {
  background-color: transparent;
}

/* =========================================================
        Box Layout STYLE 
============================================================ */
.boxLayout,
.box-layout {
  margin: 0 auto;
  background: url(../images/pattern.jpg) no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}

@media only screen and (min-width: 1200px) {

  .boxLayout,
  .box-layout {
    width: 1200px;
  }
}

@media only screen and (max-width: 991px) {

  .boxLayout,
  .box-layout {
    background: #FFFFFF;
  }
}

.boxLayout section,
.boxLayout header,
.box-layout section,
.box-layout header {
  background-color: #FFFFFF;
}

.boxLayout .box-nav,
.box-layout .box-nav {
  position: relative;
}

.boxLayout .box-nav .navbar,
.box-layout .box-nav .navbar {
  left: 0;
  background-color: #FFFFFF;
}

.boxLayout .box-nav .navbar::before,
.box-layout .box-nav .navbar::before {
  width: 350px;
}

.boxLayout .box-nav .navbar .navbar-header .navbar-brand img,
.box-layout .box-nav .navbar .navbar-header .navbar-brand img {
  padding: 22px 25px;
}

.boxLayout .box-nav .navbar .navbar-collapse .navbar-nav,
.box-layout .box-nav .navbar .navbar-collapse .navbar-nav {
  margin-right: 45px;
}

.boxLayout .navbar.sticky,
.box-layout .navbar.sticky {
  width: 1200px;
  margin: 0 auto;
}

.boxLayout .slider-section .tp-banner-container,
.box-layout .slider-section .tp-banner-container {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  margin: 0 auto;
}

.boxLayout .slider-section .tparrows.tp-leftarrow,
.box-layout .slider-section .tparrows.tp-leftarrow {
  left: 0 !important;
}

.boxLayout .slider-section .tparrows.tp-rightarrow,
.box-layout .slider-section .tparrows.tp-rightarrow {
  right: 0 !important;
}

.boxLayout .searching-section,
.box-layout .searching-section {
  overflow: hidden;
}

.boxLayout .searching-section .caption .caption-two,
.box-layout .searching-section .caption .caption-two {
  right: -10%;
}

.boxLayout .searching-section .caption .caption-two img,
.box-layout .searching-section .caption .caption-two img {
  width: 75%;
}

.boxLayout .subscribe-section,
.box-layout .subscribe-section {
  overflow: hidden;
}

.boxLayout .optimized-section .content-wrapper,
.box-layout .optimized-section .content-wrapper {
  padding: 80px 80px 0 30px;
}

@media only screen and (max-width: 991px) {

  .boxLayout .optimized-section .content-wrapper,
  .box-layout .optimized-section .content-wrapper {
    padding: 80px 15px 60px;
  }
}

.boxLayout .quote-section,
.box-layout .quote-section {
  background-color: #6cbe03;
}

/* =========================================================
        Section-Title STYLE 
============================================================ */
.section-title h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: #3f4c5d;
}

.section-title h2 .text-color {
  color: #6cbe03;
}

@media only screen and (max-width: 767px) {
  .section-title h2 {
    font-size: 25px;
    line-height: 35px;
  }
}

@media only screen and (max-width: 479px) {
  .section-title h2 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}

.section-title p {
  color: #6a7788;
}

/* =========================================================
        Header-Title STYLE 
============================================================ */
.header-title.sticky {
  margin-top: 90px;
}

@media only screen and (max-width: 991px) {
  .header-title.sticky {
    margin-top: 0;
  }
}

.header-title .title {
  font-size: 48px;
  font-weight: 600;
  line-height: 42px;
  color: #FFFFFF;
  margin-bottom: 2px;
  letter-spacing: -0.5px;
}

@media only screen and (max-width: 991px) {
  .header-title .title {
    font-size: 35px;
    line-height: 35px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .header-title .title {
    font-size: 30px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 479px) {
  .header-title .title {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 0;
  }
}

.header-title .sub-title {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}

.header-title .sub-title .text-color {
  color: #6cbe03;
}

/* =========================================================
        Header STYLE 
============================================================ */
@media only screen and (max-width: 991px) {
  .header-section {
    display: inline-block;
  }
}

.header-section .top-bar {
  min-height: 80px;
  line-height: 80px;
  background-color: #30343a;
}

.header-section .top-bar .header-left-bar .country {
  padding-right: 30px;
}

.header-section .top-bar .header-left-bar .country .dropdown-select {
  font-size: 16px;
  line-height: 80px;
  font-weight: 500;
  text-transform: uppercase;
  color: #6cbe03;
  background-color: transparent;
  border: 0;
}

.header-section .top-bar .header-left-bar .country .dropdown-select option {
  background-color: #30343a;
}

.header-section .top-bar .header-left-bar .contact-wrapper {
  display: inline-block;
}

.header-section .top-bar .header-left-bar .contact-wrapper li {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  color: #6cbe03;
}

@media only screen and (max-width: 1199px) {
  .header-section .top-bar .header-left-bar .contact-wrapper li {
    font-size: 15px;
  }
}

.header-section .top-bar .header-left-bar .contact-wrapper li i {
  color: #a3a7b0;
}

.header-section .top-bar .header-right-bar .social-icon li {
  display: inline-block;
  margin: 0 3px;
}

.header-section .top-bar .header-right-bar .social-icon li i {
  width: 35px;
  height: 35px;
  line-height: 37px;
  font-size: 18px;
  color: #FFFFFF;
  background: #2b2d30;
  border-radius: 50%;
  box-shadow: 0 2px 2px #000;
  text-align: center;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.header-section .top-bar .header-right-bar .social-icon li i:hover {
  color: #FFFFFF;
  background-color: #6cbe03;
}

.header-section .top-bar .header-right-bar .access li {
  display: inline-block;
  padding: 0 2px;
}

.header-section .top-bar .header-right-bar .access li a {
  color: #FFFFFF;
}

.header-section .top-bar .header-right-bar .access li a:hover {
  color: #6cbe03;
}

.header-section .top-bar .header-right-bar .access li i {
  color: #FFFFFF;
}

.header-section .top-bar .header-right-bar .access li.active #search-modeal {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  z-index: 1000;
}

.header-section .top-bar .header-right-bar .access li #search-modeal {
  background: #FFFFFF;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 60%;
  right: 0;
  border-radius: 8px;
  z-index: 999;
  transform: translateY(50px);
  -webkit-transition: 1s;
  -khtml-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}

.header-section .top-bar .header-right-bar .access li #search-modeal .logout-box {
  background: #0054c9;
  background: -moz-linear-gradient(left, #0054c9 0%, #269fcb 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #0054c9), color-stop(100%, #269fcb));
  background: -webkit-linear-gradient(left, #0054c9 0%, #269fcb 100%);
  background: -o-linear-gradient(left, #0054c9 0%, #269fcb 100%);
  background: -ms-linear-gradient(left, #0054c9 0%, #269fcb 100%);
  background: linear-gradient(to right, #0054c9 0%, #269fcb 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0054c9', endColorstr='#269fcb', GradientType=1);
  display: block;
  text-align: center;
  padding: 5px 0;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
}

.header-section .top-bar .header-right-bar .access li #search-modeal .logout-box a {
  color: #FFFFFF;
}

.header-section .top-bar .header-right-bar .access li #search-modeal .logout-box i {
  font-size: 14px;
  color: #FFFFFF;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 25px;
  background-color: transparent;
  float: right;
  margin-right: 15px;
}

.header-section .top-bar .header-right-bar .access li #search-modeal .search-bar {
  padding: 15px;
}

.header-section .top-bar .header-right-bar .access li #search-modeal .search-bar .chatSearchBar {
  width: 100%;
  padding: 5px 20px;
  color: #a9a9a9;
  background-color: transparent;
  border: 2px solid #eee;
}

.header-section .top-bar .header-right-bar .access li #search-modeal .search-bar .form-control {
  width: 100%;
  padding: 18px 20px;
  color: #a9a9a9;
  background-color: transparent;
  border: 2px solid #eee;
  margin-top: 10px;
  box-shadow: none;
}

.header-section .top-bar .header-right-bar .access li #search-modeal .search-bar .subscribeBtn {
  font-size: 16px;
  padding: 4px 35px;
  border-radius: 5px;
}

.header-section .to-top {
  min-height: 80px;
  line-height: 80px;
  background-color: #30343a;
}

.header-section .to-top .header-left-bar .country {
  padding-right: 30px;
}

.header-section .to-top .header-left-bar .country .dropdown-select {
  font-size: 16px;
  line-height: 80px;
  font-weight: 700;
  text-transform: uppercase;
  color: #6cbe03;
  background-color: transparent;
  border: 0;
}

.header-section .to-top .header-left-bar .country .dropdown-select option {
  background-color: #30343a;
}

.header-section .to-top .header-left-bar .contact-wrapper {
  display: inline-block;
}

.header-section .to-top .header-left-bar .contact-wrapper li {
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  color: #6cbe03;
}

@media only screen and (max-width: 1199px) {
  .header-section .to-top .header-left-bar .contact-wrapper li {
    font-size: 15px;
  }
}

.header-section .to-top .header-left-bar .contact-wrapper li i {
  color: #a3a7b0;
  margin-right: 3px;
}

.header-section .to-top .header-right-bar .social-icon li {
  display: inline-block;
  margin: 0 3px;
}

.header-section .to-top .header-right-bar .social-icon li i {
  width: 35px;
  height: 35px;
  line-height: 37px;
  font-size: 18px;
  color: #FFFFFF;
  background: #2b2d30;
  border-radius: 50%;
  box-shadow: 0 2px 2px #000;
  text-align: center;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.header-section .to-top .header-right-bar .social-icon li i:hover {
  color: #FFFFFF;
  background-color: #6cbe03;
}

.header-section .to-top .header-right-bar .access li {
  display: inline-block;
  padding: 0 2px;
}

.header-section .to-top .header-right-bar .access li a {
  color: #FFFFFF;
}

.header-section .to-top .header-right-bar .access li a:hover {
  color: #6cbe03;
}

.header-section .to-top .header-right-bar .access li i {
  color: #FFFFFF;
}

.header-section .to-top .header-right-bar .access li.active #search-modeal {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  z-index: 1000;
}

.header-section .to-top .header-right-bar .access li #search-modeal {
  background: #FFFFFF;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 60%;
  right: 0;
  border-radius: 8px;
  z-index: 999;
  transform: translateY(50px);
  -webkit-transition: 1s;
  -khtml-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}

.header-section .to-top .header-right-bar .access li #search-modeal .logout-box {
  background: #0054c9;
  background: -moz-linear-gradient(left, #0054c9 0%, #269fcb 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #0054c9), color-stop(100%, #269fcb));
  background: -webkit-linear-gradient(left, #0054c9 0%, #269fcb 100%);
  background: -o-linear-gradient(left, #0054c9 0%, #269fcb 100%);
  background: -ms-linear-gradient(left, #0054c9 0%, #269fcb 100%);
  background: linear-gradient(to right, #0054c9 0%, #269fcb 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0054c9', endColorstr='#269fcb', GradientType=1);
  display: block;
  text-align: center;
  padding: 5px 0;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
}

.header-section .to-top .header-right-bar .access li #search-modeal .logout-box a {
  color: #FFFFFF;
}

.header-section .to-top .header-right-bar .access li #search-modeal .logout-box i {
  font-size: 14px;
  color: #FFFFFF;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 25px;
  background-color: transparent;
  float: right;
  margin-right: 15px;
}

.header-section .to-top .header-right-bar .access li #search-modeal .search-bar {
  padding: 15px;
}

.header-section .to-top .header-right-bar .access li #search-modeal .search-bar .chatSearchBar {
  width: 100%;
  padding: 5px 20px;
  color: #a9a9a9;
  background-color: transparent;
  border: 2px solid #eee;
}

.header-section .to-top .header-right-bar .access li #search-modeal .search-bar .form-control {
  width: 100%;
  padding: 18px 20px;
  color: #a9a9a9;
  background-color: transparent;
  border: 2px solid #eee;
  margin-top: 10px;
  box-shadow: none;
}

.header-section .to-top .header-right-bar .access li #search-modeal .search-bar .subscribeBtn {
  font-size: 16px;
  padding: 4px 35px;
  border-radius: 5px;
}

.header-section .navbar {
  border: 0;
  border-radius: 0;
  margin: 0;
  min-height: auto;
  background-color: #FFFFFF;
  z-index: 998;
}

.header-section .navbar .navbar-header {
  position: relative;
  z-index: 5;
}

.header-section .navbar .navbar-header .navbar-brand {
  padding: 0;
  margin: 0;
}

.header-section .navbar .navbar-header .navbar-brand img {
  padding: 35px 0;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.header-section .navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 20px 0px rgba(64, 64, 64, 0.16);
  padding: 0;
  z-index: 998;
}

@media (min-width: 768px) and (max-width: 991px) {
  .header-section .navbar.sticky {
    margin-top: -88px;
  }
}

.header-section .navbar.sticky .navbar-header .navbar-brand img {
  padding: 20px 0;
}

.header-section .navbar.sticky .navbar-collapse .navbar-nav li a {
  line-height: 70px;
}

.header-section .navbar.sticky .navbar-collapse .navbar-nav li .search-view {
  line-height: 70px;
}

.header-section .navbar.sticky .navbar-collapse .navbar-nav li .cart-icon i {
  line-height: 70px;
}

.header-section .navbar.sticky .navbar-collapse .navbar-nav li:hover .dropdown {
  z-index: 9;
}

.header-section .navbar.sticky .navbar-collapse .navbar-nav li .dropdown {
  z-index: -1;
}

.header-section .navbar.sticky .navbar-collapse .navbar-nav li .cart::before {
  top: 12px;
  font-size: 10px;
}

.header-section .navbar.sticky .navbar-collapse .navbar-nav li .dropdown-menu {
  top: 70px;
}

.header-section .navbar.sticky .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu {
  top: 70px;
}

.header-section .navbar.sticky .navbar-collapse .navbar-nav li .text {
  top: 10px;
}

.header-section .navbar.sticky .navbar-collapse .navbar-nav li .cart-item {
  top: 70px;
}

.header-section .navbar.sticky .navbar-collapse .navbar-nav li #search-bar {
  height: 70px;
}

.header-section .navbar .navbar-collapse {
  padding: 0;
}

.header-section .navbar .navbar-collapse .navbar-nav li {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  margin-right: 28px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .header-section .navbar .navbar-collapse .navbar-nav li {
    margin-right: 25px;
  }
}

.header-section .navbar .navbar-collapse .navbar-nav li:nth-child(7) {
  margin: 0 15px 0 50px;
}

.header-section .navbar .navbar-collapse .navbar-nav li:last-child {
  margin-right: 0;
}

.header-section .navbar .navbar-collapse .navbar-nav li a,
.header-section .navbar .navbar-collapse .navbar-nav li .search-view,
.header-section .navbar .navbar-collapse .navbar-nav li .cart-icon i {
  color: #3f4c5d;
  padding: 0;
  line-height: 100px;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.header-section .navbar .navbar-collapse .navbar-nav li a:hover,
.header-section .navbar .navbar-collapse .navbar-nav li .search-view:hover,
.header-section .navbar .navbar-collapse .navbar-nav li .cart-icon i:hover {
  color: #6cbe03;
  background-color: transparent;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-icon i {
  color: #6cbe03;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-icon i:hover {
  color: #3f4c5d;
}

.header-section .navbar .navbar-collapse .navbar-nav li .search-view {
  cursor: pointer;
}

.header-section .navbar .navbar-collapse .navbar-nav li.active a {
  color: #6cbe03;
  background-color: transparent;
}

.header-section .navbar .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu {
  top: 100px;
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu {
  top: 100px;
  left: -50px;
  min-width: 260px;
  background-color: #FFFFFF;
  padding: 10px 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  border: 0;
  transform: translateY(-2em);
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li {
  position: relative;
  font-size: 16px;
  border-bottom: 1px solid rgba(97, 109, 126, 0.12);
  padding: 0 30px;
  margin: 0;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li.active a {
  color: #6cbe03 !important;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li.active li.active a {
  color: #6cbe03 !important;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li.active li a {
  color: #616d7e !important;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:hover {
  border-bottom: 1px solid transparent;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:hover::before {
  width: 100%;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:hover .single-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  left: 0;
  bottom: 0;
  background: #6cbe03;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:last-child {
  border-bottom: 0;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:last-child::before {
  display: none;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li a {
  color: #616d7e !important;
  line-height: 45px;
  font-weight: 600;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li a:hover {
  color: #6cbe03 !important;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li i {
  margin-left: 5px;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:hover .sub-dropdown {
  opacity: 1;
  right: -136%;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li .single-dropdown {
  position: absolute;
  top: -10px;
  left: 100%;
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 10px 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  border: 0;
  z-index: -1;
  -webkit-transition: 0.4s;
  -khtml-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  transform: translateX(100px);
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li .single-dropdown li {
  position: relative;
  font-size: 16px;
  border-bottom: 1px solid rgba(97, 109, 126, 0.12);
  margin: 0;
  padding: 0 30px;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li .single-dropdown li:last-child {
  border: 0;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu .sub-dropdown {
  position: absolute;
  top: 0;
  right: -120%;
  width: 180px;
  background-color: #FFFFFF;
  opacity: 0;
  padding: 10px 0;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar {
  background: #4d7b11;
  position: fixed;
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar.active {
  visibility: visible;
  opacity: .95;
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar.active .form-bar .form-group {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .close-bar {
  width: 100%;
  height: 100%;
  text-align: right;
  padding-right: 60px;
  padding-top: 6px;
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .close-bar i {
  color: #FFFFFF;
  font-size: 22px;
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar {
  position: relative;
  width: 50%;
  top: 85%;
  margin: -50px auto;
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar .form-group {
  margin: 0;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar .form-group .form-control {
  font-size: 32px;
  color: #FFFFFF;
  background-color: transparent;
  border: 0;
  border-bottom: 3px solid #FFFFFF;
  box-shadow: none;
  height: auto;
  padding: 0;
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar .form-group .form-control::placeholder {
  color: #FFFFFF;
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar input[placeholder],
.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar [placeholder],
.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar *[placeholder] {
  color: #FFFFFF !important;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-wrapper {
  cursor: pointer;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-wrapper.open .cart-item {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  z-index: 5;
}

.header-section .navbar .navbar-collapse .navbar-nav li .text {
  width: 20px;
  height: 20px;
  color: #FFFFFF;
  background-color: #313131;
  border-radius: 50%;
  padding: 4px 6px;
  position: absolute;
  top: 25px;
  right: -11px;
  line-height: 11px;
  text-align: center;
  font-size: 10px;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item {
  position: absolute;
  top: 100px;
  right: -30px;
  background-color: #FFFFFF;
  border: 2px solid #6cbe03;
  padding: 15px 15px 0;
  transform: translateY(50px);
  visibility: hidden;
  opacity: 0;
  z-index: -9999;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

@media (min-width: 992px) and (max-width: 1250px) {
  .header-section .navbar .navbar-collapse .navbar-nav li .cart-item {
    right: 0;
  }
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul {
  width: 300px;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul li {
  line-height: 30px;
  padding: 10px 0;
  border-bottom: 1px solid #6cbe03;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul li img {
  width: 75px;
  float: left;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul li .content {
  color: #313131;
  padding-left: 15px;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul li .content h5 {
  font-weight: 600;
  color: #313131;
  margin-bottom: 5px;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul li .content .rate {
  color: #6cbe03;
  display: block;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul li .content .option i {
  margin: 0;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item .amount {
  color: #333;
  line-height: 30px;
  padding: 10px 0 30px;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item .btn {
  border-radius: 8px;
  width: 100%;
  font-size: 16px;
  padding: 7px 44px;
  margin-bottom: 25px;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item .btn::before {
  display: none;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item .btn:hover {
  color: #313131;
}

/* =========================================================
        Slider-Section STYLE 
============================================================ */
/*.slider-section {
    &.sticky {
        margin-top: 70px;

        @media only screen and (max-width: 991px){margin-top: 0;}
    }

    .large-text {
        font-family: $font-Two;
        font-size: 42px;
        font-weight: 600;
        line-height: 50px;
        color: $white;
    }

    .small-text {
        font-size: 18px;
        line-height: 30px;
        color: $white;
    }

    .link-button {
        .btn {
            &.btn-primary {
                font-size: 18px;
                font-weight: 700;
                color: $white;
                margin-right: 10px;
                padding: 11px 30px;

                &:hover {
                    color: #333333;
                }
            }

            &.btn-default {
                font-size: 18px;
                font-weight: 700;
                color: #333333;
                border: 0;
                padding: 12px 30px;

                &:hover {
                    color: $white;
                }
            }
        }
    }
}*/
.slider-section.sticky {
  margin-top: 70px;
}

@media only screen and (max-width: 991px) {
  .slider-section.sticky {
    margin-top: 0;
  }
}

.slider-section .main-slider {
  width: 100%;
  height: 650px;
}

@media only screen and (max-width: 767px) {
  .slider-section .main-slider {
    height: 450px;
  }
}

@media only screen and (max-width: 479px) {
  .slider-section .main-slider {
    height: 360px;
  }
}

@media only screen and (max-width: 300px) {
  .slider-section .main-slider {
    height: 430px;
  }
}

.slider-section .main-slider #main-slider-carousel .carousel-inner .item {
  transition-property: opacity;
}

.slider-section .main-slider #main-slider-carousel .carousel-inner .item,
.slider-section .main-slider #main-slider-carousel .carousel-inner .active.left,
.slider-section .main-slider #main-slider-carousel .carousel-inner .active.right {
  opacity: 0;
}

.slider-section .main-slider #main-slider-carousel .carousel-inner .active,
.slider-section .main-slider #main-slider-carousel .carousel-inner .next.left,
.slider-section .main-slider #main-slider-carousel .carousel-inner .prev.right {
  opacity: 1;
}

.slider-section .main-slider #main-slider-carousel .carousel-inner .next,
.slider-section .main-slider #main-slider-carousel .carousel-inner .prev,
.slider-section .main-slider #main-slider-carousel .carousel-inner .active.left,
.slider-section .main-slider #main-slider-carousel .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

.slider-section .main-slider #main-slider-carousel .carousel-inner .slider-one {
  background: url(../new_images/slider1.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 650px;
  position: relative;
}
.slider-section .main-slider #main-slider-carousel .carousel-inner .slider-one::after{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background: rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 767px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .slider-one {
    height: 450px;
  }
}

@media only screen and (max-width: 479px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .slider-one {
    height: 360px;
  }
}

@media only screen and (max-width: 300px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .slider-one {
    height: 430px;
  }
}

.slider-section .main-slider #main-slider-carousel .carousel-inner .slider-two {
  background: url(../new_images/slider2.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 650px;
  position: relative;
}
.slider-section .main-slider #main-slider-carousel .carousel-inner .slider-two::after{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background: rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 767px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .slider-two {
    height: 450px;
  }
}

@media only screen and (max-width: 479px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .slider-two {
    height: 360px;
  }
}

@media only screen and (max-width: 300px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .slider-two {
    height: 430px;
  }
}

.slider-section .main-slider #main-slider-carousel .carousel-inner .slider-three {
  background: url(../new_images/slider1.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  position: relative;
  height: 650px;
}
.slider-section .main-slider #main-slider-carousel .carousel-inner .slider-three::after{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background: rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 767px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .slider-three {
    height: 450px;
  }
}

@media only screen and (max-width: 479px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .slider-three {
    height: 360px;
  }
}

@media only screen and (max-width: 300px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .slider-three {
    height: 430px;
  }
}

.slider-section .main-slider #main-slider-carousel .carousel-inner .content {
  position: absolute;
  width: 1170px;
  top: 25%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .content {
    width: 970px;
    top: 38%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .content {
    width: 750px;
    top: 28%;
    padding: 0 15px;
  }
}

@media only screen and (max-width: 767px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .content {
    width: 100%;
    top: 28%;
    padding: 0 15px;
  }
}

@media only screen and (max-width: 767px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .content {
    top: 20%;
  }
}

.slider-section .main-slider #main-slider-carousel .carousel-inner .content .guard {
  overflow: hidden;
  margin-top: 25px;
}

.slider-section .main-slider #main-slider-carousel .carousel-inner .content .large-text {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 50px;
  color: #FFFFFF;
  letter-spacing: .5px;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

@media only screen and (max-width: 991px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .content .large-text {
    font-size: 35px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .content .large-text {
    font-size: 30px;
    line-height: 35px;
  }
}

@media only screen and (max-width: 479px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .content .large-text {
    font-size: 25px;
    line-height: 30px;
  }
}

.slider-section .main-slider #main-slider-carousel .carousel-inner .content .small-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #FFFFFF;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

@media only screen and (max-width: 991px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .content .small-text {
    font-size: 16px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 991px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .content .small-text {
    font-size: 14px;
    line-height: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .content .small-text {
    font-size: 12px;
    line-height: 15px;
  }
}

.slider-section .main-slider #main-slider-carousel .carousel-inner .content .link-button {
  margin-top: 35px;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

@media only screen and (max-width: 479px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .content .link-button {
    margin-top: 20px;
  }
}

.slider-section .main-slider #main-slider-carousel .carousel-inner .content .link-button .btn-primary {
  font-size: 18px;
  font-weight: 600;
  color: #6cbe03;
  border: 0;
  padding: 12px 30px;
  background: #FFFFFF;
}

.slider-section .main-slider #main-slider-carousel .carousel-inner .content .link-button .btn-primary:hover {
  color: #FFFFFF;
}

.slider-section .main-slider #main-slider-carousel .carousel-inner .content .link-button .btn-primary:hover::before {
  background: #6cbe03;
}

@media only screen and (max-width: 991px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .content .link-button .btn-primary {
    padding: 8px 30px;
  }
}

@media only screen and (max-width: 767px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .content .link-button .btn-primary {
    padding: 5px 25px;
    font-size: 12px;
  }
}

@media only screen and (max-width: 479px) {
  .slider-section .main-slider #main-slider-carousel .carousel-inner .content .link-button .btn-primary {
    padding: 3px 20px;
    font-size: 10px;
    margin: 0 2px;
  }
}

.slider-section .main-slider #main-slider-carousel .carousel-control.left,
.slider-section .main-slider #main-slider-carousel .carousel-control.right {
  background-image: none;
  width: 40px;
  height: 40px;
  line-height: 36px;
  top: 50%;
  margin-top: -20px;
  opacity: 1;
  /*border: 1px solid $theme-color;*/
  border-radius: 50%;
  font-size: 25px;
  background: rgba(97, 97, 97, 0.45);
}

.slider-section .main-slider #main-slider-carousel .carousel-control.left:hover,
.slider-section .main-slider #main-slider-carousel .carousel-control.right:hover {
  background: #6cbe03;
}

@media only screen and (max-width: 479px) {

  .slider-section .main-slider #main-slider-carousel .carousel-control.left,
  .slider-section .main-slider #main-slider-carousel .carousel-control.right {
    display: none;
  }
}

.slider-section .main-slider #main-slider-carousel .carousel-control.left {
  left: 20px;
}

.slider-section .main-slider #main-slider-carousel .carousel-control.right {
  right: 20px;
}

/* =========================================================
        Service-Section STYLE 
============================================================ */
.service-section .section-title {
  margin-bottom: 55px;
}

.service-section.service-section-two .service-wrapper {
  border: 1px dashed #b1b1b1;
  border-radius: 8px;
  margin-bottom: 0;
  padding: 50px 25px 50px;
}

.service-section.service-section-two .service-wrapper img {
  width: auto;
  margin: 0 auto;
}

.service-section.service-section-two .owl-nav {
  margin-top: 60px;
}

.service-section.service-section-two .owl-nav .owl-prev,
.service-section.service-section-two .owl-nav .owl-next {
  margin: 0 80px;
  padding: 0;
  background: transparent;
  width: 10px;
  height: 10px;
}

.service-section.service-section-two .owl-nav .owl-prev {
  background: url(../images/left-angel.png) no-repeat;
}

.service-section.service-section-two .owl-nav .owl-next {
  background: url(../images/right-angel.png) no-repeat;
}

.service-section.service-section-two .owl-dots {
  margin-top: -36px;
}

.service-section.service-section-two .owl-dots .owl-dot.active span {
  background: #6cbe03;
}

.service-section.service-section-two .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  border: 1px solid #6cbe03;
  background: transparent;
  margin: 0 15px;
}

.service-section.service-section-three .service-wrapper:hover .content-wrapper::after {
  width: 100%;
}

.service-section.service-section-three .service-wrapper:hover .link {
  color: #6cbe03;
}

.service-section.service-section-three .service-wrapper .caption img {
  border-radius: 15px 15px 0 0;
  width: 100%;
  box-shadow: 0 0 10px #b9b9b9;
}

.service-section.service-section-three .service-wrapper .content-wrapper {
  position: relative;
}

.service-section.service-section-three .service-wrapper .content-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 100%;
  height: 1px;
  background-color: #d3d9e2;
  z-index: 1;
}

.service-section.service-section-three .service-wrapper .content-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 0;
  height: 1px;
  background-color: #6cbe03;
  z-index: 1;
  -webkit-transition: 1s;
  -khtml-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}

.service-section.service-section-three .service-wrapper .content-wrapper h3 {
  display: inline-block;
  vertical-align: sub;
  margin: 25px 0 20px 10px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-section.service-section-three .service-wrapper .content-wrapper h3 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 479px) {
  .service-section.service-section-three .service-wrapper .content-wrapper h3 {
    margin: 25px 0 10px 0;
  }
}

.service-section.service-section-three .service-wrapper .content-wrapper h3 a {
  color: #3f4c5d;
}

.service-section.service-section-three .service-wrapper .content-wrapper h3 a:hover {
  color: #6cbe03;
}

.service-section.service-section-three .service-wrapper .content-wrapper p {
  font-size: 16px;
  line-height: 30px;
  color: #6a7788;
  margin-bottom: 15px;
}

@media only screen and (max-width: 479px) {
  .service-section.service-section-three .service-wrapper .content-wrapper p {
    font-size: 14px;
    line-height: 27px;
  }
}

.service-section.service-section-three .service-wrapper .content-wrapper .link {
  position: relative;
  background-color: #FFFFFF;
  padding-left: 15px;
  z-index: 5;
}

.service-section .service-wrapper {
  margin-bottom: 38px;
}

@media only screen and (max-width: 991px) {
  .service-section .service-wrapper {
    margin-bottom: 75px;
  }
}

@media only screen and (max-width: 767px) {
  .service-section .service-wrapper {
    margin-bottom: 50px;
  }
}

.service-section .service-wrapper h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  color: #3f4c5d;
  margin: 25px 0 10px;
}

@media only screen and (max-width: 767px) {
  .service-section .service-wrapper h3 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 479px) {
  .service-section .service-wrapper h3 {
    font-size: 20px;
    margin: 15px 0 10px;
  }
}

.service-section .service-wrapper p {
  color: #6a7788;
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .service-section .service-wrapper p {
    margin-bottom: 15px;
  }
}

.service-section .service-wrapper .link {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #3f4c5d;
  letter-spacing: -.5px;
}

.service-section .service-wrapper .link:hover {
  color: #6cbe03;
}

@media only screen and (max-width: 767px) {
  .service-section .service-wrapper .link {
    font-size: 18px;
  }
}

@media only screen and (max-width: 479px) {
  .service-section .service-wrapper .link {
    font-size: 16px;
  }
}

.service-section .more-service {
  position: relative;
  margin: 30px 0 10px;
}

@media only screen and (max-width: 767px) {
  .service-section .more-service {
    margin: 20px 0 10px;
  }
}

@media only screen and (max-width: 479px) {
  .service-section .more-service {
    margin: 10px 0;
  }
}

.service-section .more-service::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d3d9e2;
  z-index: 1;
}

.service-section .more-service .link {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  background-color: #FFFFFF;
  border: 1px solid #d3d9e2;
  border-radius: 25px;
  padding: 10px 40px;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .service-section .more-service .link {
    font-size: 16px;
    padding: 8px 30px;
  }
}

@media only screen and (max-width: 479px) {
  .service-section .more-service .link {
    font-size: 14px;
    padding: 6px 20px;
  }
}

/* =========================================================
        Counting-Section STYLE 
============================================================ */
.counting-section {
  background: url(../images/conuting-bg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  padding: 50px 0;
}

.counting-section.counting-section-two {
  background: url(../new_images/worldx.png) no-repeat center;
  background-size: cover;
  position: relative;
}

.counting-section.counting-section-two::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 46, 20, 0.95);
}

.counting-section.counting-section-two .counting-pusher {
  background: transparent;
  padding: 50px 0;
}

@media only screen and (max-width: 767px) {
  .counting-section.counting-section-two .counting-pusher {
    padding: 30px 0 15px;
  }
}

@media only screen and (max-width: 479px) {
  .counting-section.counting-section-two .counting-pusher {
    padding: 0;
  }
}

.counting-section.counting-section-three {
  position: relative;
}

.counting-section.counting-section-three::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 46, 20, 0.95);
}

.counting-section.counting-section-three .counting-pusher {
  background: transparent;
}

.counting-section .counting-pusher {
  background: rgba(35, 46, 20, 0.95);
  padding: 55px 0 50px;
}

.counting-section .counting-pusher .counting-wrapper {
  /*@media (min-width : 768px) and (max-width : 991px) {
          &.last-wrapper {
              margin-top: 50px;
          }
      }*/
}

@media only screen and (max-width: 767px) {
  .counting-section .counting-pusher .counting-wrapper {
    margin-bottom: 30px;
    width: 50%;
    float: left;
  }

  .counting-section .counting-pusher .counting-wrapper.last-wrapper {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 479px) {
  .counting-section .counting-pusher .counting-wrapper {
    width: 100%;
    float: none;
  }
}

.counting-section .counting-pusher .counting-wrapper .count-description .timer {
  font-family: "Poppins", sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 80px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .counting-section .counting-pusher .counting-wrapper .count-description .timer {
    font-size: 60px;
    line-height: 40px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .counting-section .counting-pusher .counting-wrapper .count-description .timer {
    font-size: 40px;
    line-height: 30px;
    margin-bottom: 0;
  }
}

.counting-section .counting-pusher .counting-wrapper p {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #f5e20c;
  margin: 15px 0 18px;
}

@media only screen and (max-width: 991px) {
  .counting-section .counting-pusher .counting-wrapper p {
    font-size: 20px;
    margin: 10px 0 10px;
  }
}

@media only screen and (max-width: 767px) {
  .counting-section .counting-pusher .counting-wrapper p {
    font-size: 18px;
    margin: 5px 0;
  }
}

/* =========================================================
        Growing-Section STYLE 
============================================================ */
@media only screen and (max-width: 991px) {
  .growing-section .content-wrapper {
    margin-top: 30px;
  }
}

.growing-section .content-wrapper h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 45px;
  letter-spacing: -.5px;
  color: #3f4c5d;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1199px) {
  .growing-section .content-wrapper h3 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .growing-section .content-wrapper h3 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 479px) {
  .growing-section .content-wrapper h3 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 10px;
  }
}

.growing-section .content-wrapper p {
  font-size: 16px;
  line-height: 30px;
  color: #6a7788;
  margin: 0 80px 50px 0;
}

@media only screen and (max-width: 767px) {
  .growing-section .content-wrapper p {
    font-size: 14px;
    line-height: 27px;
    margin: 0 0 40px 0;
  }
}

@media only screen and (max-width: 479px) {
  .growing-section .content-wrapper p {
    margin: 0 0 30px 0;
  }
}

.growing-section .content-wrapper .btn {
  margin-right: 15px;
  padding: 8px 35px;
}

.growing-section .content-wrapper .btn.btn-default::before {
  left: -2px;
  width: 105%;
}

.growing-section .content-wrapper .btn.btn-primary {
  border: 2px solid transparent;
}

.growing-section .content-wrapper .btn.btn-primary::hover {
  border: 2px solid #6cbe03;
}

@media only screen and (max-width: 767px) {
  .growing-section .content-wrapper .btn {
    padding: 6px 25px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 479px) {
  .growing-section .content-wrapper .btn {
    padding: 2px 15px;
    margin-right: 6px;
  }
}

@media only screen and (max-width: 280px) {
  .growing-section .content-wrapper .btn {
    margin-bottom: 5px;
  }
}

.growing-section .caption {
  overflow: hidden;
}

.growing-section .caption img {
  width: 100%;
}

/* =========================================================
        Project-Section STYLE 
============================================================ */
.project-section {
  background-color: #ecf4de;
  padding-bottom: 85px;
}

@media only screen and (max-width: 767px) {
  .project-section {
    padding-bottom: 65px;
  }
}

@media only screen and (max-width: 479px) {
  .project-section {
    padding-bottom: 45px;
  }
}

.project-section .section-title {
  margin-bottom: 70px;
}

@media only screen and (max-width: 767px) {
  .project-section .section-title {
    margin-bottom: 50px;
  }
}

.project-section .portfolio .portfolio-sorting {
  margin-bottom: 45px;
}

.project-section .portfolio .portfolio-sorting li {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 0 30px;
}

.project-section .portfolio .portfolio-sorting li:last-child::before {
  display: none;
}

.project-section .portfolio .portfolio-sorting li::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 2px;
  height: 20px;
  background-color: #8f9297;
  transform: rotate(20deg);
}

.project-section .portfolio .portfolio-sorting li a {
  color: #8f9297;
}

.project-section .portfolio .portfolio-sorting li a:hover,
.project-section .portfolio .portfolio-sorting li a.active {
  color: #6cbe03;
}

.project-section .portfolio .gallery-wrapper .portfolio-items .portfolio-item {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}

.project-section .portfolio .gallery-wrapper .portfolio-items .portfolio-item:hover .hover-view i {
  opacity: 1;
  visibility: visible;
}

.project-section .portfolio .gallery-wrapper .portfolio-items .portfolio-item:hover .hover-view .border-one {
  transform: translateX(0);
}

.project-section .portfolio .gallery-wrapper .portfolio-items .portfolio-item:hover .hover-view .border-two {
  transform: translateX(0);
}

.project-section .portfolio .gallery-wrapper .portfolio-items .portfolio-item:hover .hover-view .border-three {
  height: calc(100% - 30px);
}

.project-section .portfolio .gallery-wrapper .portfolio-items .portfolio-item:hover .hover-view .border-four {
  height: calc(100% - 30px);
}

.project-section .portfolio .gallery-wrapper .portfolio-items .portfolio-item img {
  width: 100%;
}

.project-section .portfolio .gallery-wrapper .portfolio-items .portfolio-item .hover-view i {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: -25px auto 0;
  font-size: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  color: #FFFFFF;
  background: #6cbe03;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.project-section .portfolio .gallery-wrapper .portfolio-items .portfolio-item .hover-view .border-one {
  position: absolute;
  top: 30px;
  left: 15px;
  width: calc(100% - 30px);
  height: 1px;
  background: #FFFFFF;
  transform: translateX(-105%);
  -webkit-transition: 0.3s;
  -khtml-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.project-section .portfolio .gallery-wrapper .portfolio-items .portfolio-item .hover-view .border-two {
  position: absolute;
  bottom: 30px;
  left: 15px;
  width: calc(100% - 30px);
  height: 1px;
  background: #FFFFFF;
  transform: translateX(105%);
  -webkit-transition: 0.3s;
  -khtml-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.project-section .portfolio .gallery-wrapper .portfolio-items .portfolio-item .hover-view .border-three {
  position: absolute;
  bottom: 15px;
  left: 30px;
  width: 1px;
  height: 0;
  background: #FFFFFF;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  transition-delay: .2s;
}

.project-section .portfolio .gallery-wrapper .portfolio-items .portfolio-item .hover-view .border-four {
  position: absolute;
  bottom: 15px;
  right: 30px;
  width: 1px;
  height: 0;
  background: #FFFFFF;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  transition-delay: .2s;
}

/* =========================================================
        Gallery-Section STYLE 
============================================================ */
.gallery-one .pricing-padding {
  padding: 0 3px 0 3px;
}

@media only screen and (max-width: 991px) {
  .gallery-one .pricing-padding {
    padding: 0 15px 0 15px;
  }
}

.gallery-one .pricing-padding-right {
  padding-right: 3px;
}

@media only screen and (max-width: 767px) {
  .gallery-one .pricing-padding-right {
    padding-right: 15px;
  }
}

.gallery-one .pricing-padding-left {
  padding-left: 3px;
}

@media only screen and (max-width: 767px) {
  .gallery-one .pricing-padding-left {
    padding-left: 15px;
  }
}

.gallery-one .gallery-wrapper {
  margin-bottom: 6px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .gallery-one .gallery-wrapper {
    margin-bottom: 15px;
  }
}

.gallery-one .gallery-wrapper .gallery-thumb {
  position: relative;
}

.gallery-one .gallery-wrapper .gallery-thumb::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(108, 190, 3, 0.72);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.gallery-one .gallery-wrapper .gallery-thumb:hover::before {
  opacity: 1;
  visibility: visible;
}

.gallery-one .gallery-wrapper .gallery-thumb:hover .pop-up-icon {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gallery-one .gallery-wrapper .gallery-thumb img {
  width: 100%;
}

.gallery-one .gallery-wrapper .gallery-thumb .pop-up-icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  text-align: center;
  margin: -10px auto 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  transform: translateY(-500px);
}

.gallery-one .gallery-wrapper .gallery-thumb .pop-up-icon i {
  font-size: 22px;
  color: #FFFFFF;
}

.gallery-two .portfolio-wrapper {
  margin-bottom: 30px;
}

.gallery-two .portfolio-wrapper:hover .portfolio-thumb::before {
  opacity: 1;
  top: 0;
}

.gallery-two .portfolio-wrapper:hover .portfolio-thumb .pop-up-icon {
  opacity: 1;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
}

.gallery-two .portfolio-wrapper:hover .portfolio-info {
  background: #313131;
}

.gallery-two .portfolio-wrapper:hover .portfolio-info h3 {
  color: #ffffff;
}

.gallery-two .portfolio-wrapper .portfolio-thumb {
  position: relative;
  overflow: hidden;
}

.gallery-two .portfolio-wrapper .portfolio-thumb::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: -100%;
  background: rgba(108, 190, 3, 0.75);
  opacity: 0;
  transition: all .50s ease-in-out;
  -webkit-transition: all .50s ease-in-out;
  -moz-transition: all .50s ease-in-out;
  -o-transition: all .50s ease-in-out;
}

.gallery-two .portfolio-wrapper .portfolio-thumb img {
  width: 100%;
}

.gallery-two .portfolio-wrapper .portfolio-thumb .pop-up-icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  text-align: center;
  margin-top: -20px;
  opacity: 0;
  transition: opacity 0.5s 0s ease-in-out;
  -webkit-transition: opacity 0.5s 0s ease-in-out;
  -moz-transition: opacity 0.5s 0s ease-in-out;
  -o-transition: opacity 0.5s 0s ease-in-out;
}

.gallery-two .portfolio-wrapper .portfolio-thumb .pop-up-icon i {
  width: 48px;
  height: 48px;
  line-height: 44px;
  font-size: 16px;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
}

.gallery-two .portfolio-wrapper .portfolio-thumb .pop-up-icon i:hover {
  border: 2px solid transparent;
  background: #ffffff;
  color: #6cbe03;
}

.gallery-two .portfolio-wrapper .portfolio-info {
  background: #f9f9f9;
  text-align: center;
  position: relative;
  padding: 18px 0;
  transition: 2s;
  -webkit-transition: 2s;
  -moz-transition: 2s;
  -o-transition: 2s;
}

@media only screen and (max-width: 767px) {
  .gallery-two .portfolio-wrapper .portfolio-info {
    padding: 4px 0;
  }
}

.gallery-two .portfolio-wrapper .portfolio-info h3 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: -5px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
}

.gallery-two .portfolio-wrapper .portfolio-info .small {
  font-size: 11px;
  color: #969595;
  text-transform: uppercase;
}

.gallery-two .portfolio-wrapper .portfolio-info .small:hover {
  color: #6cbe03;
}

.gallery-three .portfolio-wrapper {
  margin-bottom: 30px;
}

.gallery-three .portfolio-wrapper:hover .portfolio-thumb::before {
  -webkit-transform: translate(15px, 15px);
  -moz-transform: translate(15px, 15px);
  -ms-transform: translate(15px, 15px);
  transform: translate(15px, 15px);
  opacity: 1;
}

.gallery-three .portfolio-wrapper:hover .portfolio-thumb .portfolio-info {
  opacity: 1;
  top: 50%;
  margin-top: -25px;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
}

.gallery-three .portfolio-wrapper:hover .portfolio-thumb .link-icon {
  opacity: 1;
  left: 10px;
  bottom: 15%;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
}

@media only screen and (max-width: 767px) {
  .gallery-three .portfolio-wrapper:hover .link-icon {
    bottom: 15%;
  }
}

.gallery-three .portfolio-wrapper .portfolio-thumb {
  position: relative;
}

.gallery-three .portfolio-wrapper .portfolio-thumb::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
  background: rgba(108, 190, 3, 0.8);
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
}

.gallery-three .portfolio-wrapper .portfolio-thumb img {
  width: 100%;
}

.gallery-three .portfolio-wrapper .portfolio-thumb .portfolio-info {
  position: absolute;
  text-align: center;
  right: 0;
  left: 10px;
  top: 3%;
  color: #ffffff;
  opacity: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
}

.gallery-three .portfolio-wrapper .portfolio-thumb .portfolio-info h3 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #ffffff;
}

.gallery-three .portfolio-wrapper .portfolio-thumb .portfolio-info span {
  font-size: 12px;
}

.gallery-three .portfolio-wrapper .portfolio-thumb .link-icon {
  position: absolute;
  left: 10px;
  right: 0;
  bottom: 0;
  text-align: center;
  opacity: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
}

.gallery-three .portfolio-wrapper .portfolio-thumb .link-icon i {
  font-size: 13px;
  color: #ffffff;
  background: #313131;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
}

.gallery-three .portfolio-wrapper .portfolio-thumb .link-icon i:hover {
  background: #ffffff;
  color: #6cbe03;
}

/*gallery-four*/
.portfolio-nineteen .portfolio-thumb {
  position: relative;
  height: 308px !important;
}

.portfolio-nineteen .portfolio-thumb img {
  width: 100%;
  position: relative;
  height: -webkit-calc(100% + 40px);
  height: calc(100% + 40px);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

.portfolio-nineteen .portfolio-thumb:hover img {
  -webkit-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, -30px, 0);
}

.portfolio-nineteen .portfolio-content {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.portfolio-nineteen .portfolio-thumb:hover .portfolio-content {
  background: rgba(52, 51, 51, 0.8);
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.portfolio-nineteen .portfolio-content::before {
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
}

.portfolio-nineteen .portfolio-content::before,
.portfolio-nineteen .portfolio-content::after {
  content: "";
  position: absolute;
  opacity: 0;
}

.portfolio-nineteen .portfolio-thumb:hover .portfolio-content::before,
.portfolio-nineteen .portfolio-thumb:hover .portfolio-content::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.portfolio-nineteen .portfolio-content::after {
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border-right: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
}

.portfolio-nineteen .portfolio-info {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 60%;
  margin-top: -25px;
  opacity: 0;
  visibility: hidden;
}

.portfolio-nineteen .portfolio-thumb:hover .portfolio-info {
  opacity: 1;
  visibility: visible;
}

.portfolio-nineteen .portfolio-info h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-nineteen .portfolio-thumb:hover .portfolio-info h3 {
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
}

.portfolio-nineteen .portfolio-info h3,
.portfolio-nineteen .portfolio-info .small {
  opacity: 0;
  transform: translateY(200px);
  -webkit-transform: translateY(200px);
  -moz-transform: translateY(200px);
  -o-transform: translateY(200px);
}

.portfolio-nineteen .portfolio-thumb:hover .portfolio-info h3,
.portfolio-nineteen .portfolio-thumb:hover .portfolio-info .small {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
}

.portfolio-nineteen .portfolio-info .small {
  font-size: 13px;
  display: block;
  color: #ffffff;
}

.portfolio-nineteen .portfolio-thumb:hover .portfolio-info .small {
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
}

.portfolio-nineteen .pop-up-icon {
  position: absolute;
  left: 50%;
  top: 30%;
  margin-left: -38px;
  z-index: 1;
}

.portfolio-nineteen .pop-up-icon .img-link i,
.portfolio-nineteen .pop-up-icon .content-link i {
  opacity: 0;
  transform: translateY(-300px);
  -webkit-transform: translateY(-300px);
  -moz-transform: translateY(-300px);
  -o-transform: translateY(-300px);
}

.portfolio-nineteen .portfolio-thumb:hover .img-link i,
.portfolio-nineteen .portfolio-thumb:hover .content-link i {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  transition-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
}

.portfolio-nineteen .pop-up-icon a {
  margin-right: 2px;
}

.portfolio-nineteen .pop-up-icon a:nth-child:last-child {
  margin-right: 0;
}

.portfolio-nineteen .pop-up-icon i {
  font-size: 13px;
  color: #313131;
  background: #ffffff;
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  text-align: center;
}

.portfolio-nineteen .pop-up-icon i:hover {
  color: #ffffff;
  background: #31aae2;
}

.portfolio-nineteen .portfolio-info .small,
.portfolio-nineteen .portfolio-info h3,
.portfolio-nineteen .pop-up-icon .img-link i,
.portfolio-nineteen .pop-up-icon .content-link i {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
}

/*gallery-four*/
/*gallery-five*/
.portfolio-sixteen {
  background-color: #eee;
}

.portfolio-sixteen .portfolio-thumb {
  position: relative;
  height: 308px !important;
  overflow: hidden;
}

/*
@media (max-width : 766px) {
    .portfolio-sixteen .portfolio-thumb,
    .portfolio-sixteen .portfolio-thumb img{
        height: 260px!important;
    }
}
*/
.portfolio-sixteen .portfolio-thumb::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.portfolio-sixteen .portfolio-thumb:hover::before {
  background: rgba(0, 0, 0, 0.7);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.portfolio-sixteen .portfolio-thumb img {
  width: 100%;
  height: 100%;
}

.portfolio-sixteen .portfolio-info {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 38%;
  margin-top: -25px;
  z-index: 10;
}

.portfolio-sixteen .portfolio-info h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-sixteen .portfolio-thumb:hover .portfolio-info h3 {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
}

.portfolio-sixteen .portfolio-info h3,
.portfolio-sixteen .portfolio-info .small {
  opacity: 0;
  visibility: hidden;
  transform: translateY(200px);
  -webkit-transform: translateY(200px);
  -moz-transform: translateY(200px);
  -o-transform: translateY(200px);
}

.portfolio-sixteen .portfolio-thumb:hover .portfolio-info h3,
.portfolio-sixteen .portfolio-thumb:hover .portfolio-info .small {
  opacity: 1;
  visibility: visible;
}

.portfolio-sixteen .portfolio-info .small {
  font-size: 13px;
  display: block;
}

.portfolio-sixteen .portfolio-thumb:hover .portfolio-info .small {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
}

.portfolio-sixteen .pop-up-icon {
  position: absolute;
  left: 50%;
  bottom: 31%;
  margin-left: -75px;
  z-index: 20;
}

.portfolio-sixteen .pop-up-icon .link {
  font-size: 10px;
  text-transform: uppercase;
  color: #313131;
  background: #ffffff;
  padding: 4px 20px;
  text-align: center;
  display: inline-block;
}

.portfolio-sixteen .pop-up-icon .link:hover {
  color: #ffffff;
  background: #31aae2;
}

.portfolio-sixteen .pop-up-icon .link {
  margin-right: 8px;
}

.portfolio-sixteen .pop-up-icon .content-link {
  margin-right: 0;
}

.portfolio-sixteen .pop-up-icon .img-link {
  transform: translateX(-305px);
}

.portfolio-sixteen .pop-up-icon .content-link {
  transform: translateX(305px);
}

.portfolio-sixteen .portfolio-thumb:hover .img-link,
.portfolio-sixteen .portfolio-thumb:hover .content-link {
  transform: translateX(0);
  transition-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
}

.portfolio-sixteen .portfolio-info .small,
.portfolio-sixteen .portfolio-info h3,
.portfolio-sixteen .pop-up-icon .img-link i,
.portfolio-sixteen .pop-up-icon .content-link i {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
}

/*gallery-five*/
/*gallery-six*/
.portfolio-showcase .no-padding {
  padding-left: 0;
  padding-right: 0;
}

.portfolio-showcase .portfolio-wrapper {
  background: #fff;
  height: 401px;
}

.portfolio-showcase .portfolio-thumb {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 50%;
  height: 401px;
}

.portfolio-showcase .portfolio-hover {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.portfolio-showcase .portfolio-thumb:hover .portfolio-hover {
  background: rgba(108, 190, 3, 0.73);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.portfolio-showcase .portfolio-thumb .img-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: url("../images/cursor-icon.png") 10 10, crosshair;
}

.portfolio-showcase .portfolio-thumb img {
  width: 100%;
  height: 100%;
  transition: border-color 0.3s ease-in-out, opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  -webkit-transition: border-color 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.portfolio-showcase .portfolio-thumb:hover img {
  transform: scale(1.1) rotate(3deg) translateZ(0);
  -webkit-transform: scale(1.1) rotate(3deg) translateZ(0);
}

.portfolio-showcase .portfolio-content {
  width: 50%;
  padding: 55px;
  overflow: hidden;
  height: 401px;
  background: #fff;
}

.portfolio-showcase .portfolio-info h3 {
  font-size: 30px;
  font-weight: 600;
  margin: 11px 0 25px;
}

@media (min-width: 320px) and (max-width: 420px) {
  .portfolio-showcase .portfolio-content {
    display: none;
  }

  .portfolio-showcase .portfolio-thumb {
    width: 100%;
    height: 300px;
  }

  .portfolio-showcase .portfolio-wrapper {
    height: 300px;
  }
}

@media (max-width: 500px) {
  .portfolio-showcase .portfolio-wrapper {
    height: 300px;
    margin-bottom: 30px;
  }

  .portfolio-showcase .portfolio-thumb {
    height: 300px;
    margin-bottom: 30px;
  }

  .portfolio-showcase .portfolio-content {
    height: 300px;
    padding: 20px 20px 5px;
  }

  .portfolio-showcase .portfolio-info h3 {
    margin: 11px 0 0px;
  }
}

/*gallery-six*/
/* =========================================================
        Team-Section STYLE 
============================================================ */
.team-section .section-title {
  margin-bottom: 100px;
}

@media only screen and (max-width: 991px) {
  .team-section .section-title {
    margin-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .team-section .section-title {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .team-section .team-wrapper {
    margin-bottom: 80px;
  }

  .team-section .team-wrapper.last-wrapper {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 479px) {
  .team-section .team-wrapper {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 300px) {
  .team-section .team-wrapper .left-bar {
    float: none !important;
  }
}

.team-section .team-wrapper .left-bar .caption img {
  border-radius: 50%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .team-section .team-wrapper .left-bar .caption img {
    width: 100px;
  }
}

@media (min-width: 300px) and (max-width: 479px) {
  .team-section .team-wrapper .left-bar .caption img {
    width: 90px;
  }
}

.team-section .team-wrapper .left-bar .social-icon {
  margin-top: 22px;
}

@media only screen and (max-width: 479px) {
  .team-section .team-wrapper .left-bar .social-icon {
    margin-top: 15px;
  }
}

.team-section .team-wrapper .left-bar .social-icon li {
  display: inline-block;
  margin-right: 7px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .team-section .team-wrapper .left-bar .social-icon li {
    margin-right: 3px;
  }
}

@media only screen and (max-width: 479px) {
  .team-section .team-wrapper .left-bar .social-icon li {
    margin-right: 3px;
  }
}

.team-section .team-wrapper .left-bar .social-icon li i {
  font-size: 20px;
  color: #3f4c5d;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.team-section .team-wrapper .left-bar .social-icon li i:hover {
  color: #6cbe03;
}

@media only screen and (max-width: 479px) {
  .team-section .team-wrapper .left-bar .social-icon li i {
    font-size: 16px;
  }
}

.team-section .team-wrapper .right-bar {
  margin-left: 145px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .team-section .team-wrapper .right-bar {
    margin-left: 120px;
  }
}

@media only screen and (max-width: 479px) {
  .team-section .team-wrapper .right-bar {
    margin-left: 110px;
  }
}

@media only screen and (max-width: 300px) {
  .team-section .team-wrapper .right-bar {
    margin: 15px 0 0;
  }
}

.team-section .team-wrapper .right-bar h5 {
  font-size: 20px;
  font-weight: 600;
  color: #3f4c5d;
  margin-bottom: 0;
}

@media only screen and (max-width: 479px) {
  .team-section .team-wrapper .right-bar h5 {
    font-size: 18px;
    margin-bottom: -5px;
  }
}

.team-section .team-wrapper .right-bar .position {
  font-size: 14px;
  color: #babfc6;
}

@media only screen and (max-width: 479px) {
  .team-section .team-wrapper .right-bar .position {
    font-size: 12px;
  }
}

.team-section .team-wrapper .right-bar p {
  font-size: 16px;
  color: #3f4c5d;
  margin: 10px 35px 15px 0;
}

@media only screen and (max-width: 991px) {
  .team-section .team-wrapper .right-bar p {
    margin: 10px 0 15px 0;
  }
}

@media only screen and (max-width: 479px) {
  .team-section .team-wrapper .right-bar p {
    font-size: 14px;
    line-height: 22px;
    margin: 5px 0 10px 0;
  }
}

.team-section .team-wrapper .right-bar .link {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.5px;
}

@media only screen and (max-width: 479px) {
  .team-section .team-wrapper .right-bar .link {
    font-size: 14px;
  }
}

.team-section-two {
  background-color: #eef2f5;
  padding-bottom: 53px !important;
}

.team-section-two .section-title {
  margin-bottom: 80px;
}

@media only screen and (max-width: 767px) {
  .team-section-two .section-title {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 479px) {
  .team-section-two .section-title {
    margin-bottom: 30px;
  }
}

.team-section-two .section-title h2 {
  font-size: 30px;
  line-height: 30px;
  color: #505563;
  margin-bottom: 25px;
}

.team-section-two .section-title p {
  color: #666666;
}

.team-section-two .team-wrapper {
  margin-bottom: 66px;
}

@media only screen and (max-width: 767px) {
  .team-section-two .team-wrapper {
    margin-bottom: 40px;
  }
}

.team-section-two .team-wrapper img {
  width: 100%;
  height: 185px;
  border-radius: 8px;
}

@media only screen and (max-width: 767px) {
  .team-section-two .team-wrapper img {
    height: auto;
  }
}

.team-section-two .team-wrapper .wrapper-contant h3 {
  margin: 26px 0 10px;
}

.team-section-two .team-wrapper .wrapper-contant h3 a {
  font-size: 25px;
  font-weight: 500;
  color: #555967;
}

@media only screen and (max-width: 767px) {
  .team-section-two .team-wrapper .wrapper-contant h3 a {
    font-size: 22px;
  }
}

@media only screen and (max-width: 479px) {
  .team-section-two .team-wrapper .wrapper-contant h3 a {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .team-section-two .team-wrapper .wrapper-contant h3 {
    margin: 20px 0 0px;
  }
}

@media only screen and (max-width: 479px) {
  .team-section-two .team-wrapper .wrapper-contant h3 {
    margin: 15px 0 0px;
  }
}

.team-section-two .team-wrapper .wrapper-contant .position {
  font-size: 18.5px;
  line-height: 25px;
  color: #999999;
  padding-bottom: 22px;
  border-bottom: 1px solid #dadada;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .team-section-two .team-wrapper .wrapper-contant .position {
    font-size: 16px;
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 479px) {
  .team-section-two .team-wrapper .wrapper-contant .position {
    font-size: 16px;
    padding-bottom: 10px;
  }
}

.team-section-two .team-wrapper .wrapper-contant .position strong {
  font-weight: 500;
}

.team-section-two .team-wrapper .wrapper-contant ul li {
  display: inline-block;
}

.team-section-two .team-wrapper .wrapper-contant ul li i {
  font-size: 30px;
  color: #999999;
  margin-right: 6px;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.team-section-two .team-wrapper .wrapper-contant ul li i:hover {
  color: #6cbe03;
}

.team-section-two .team-wrapper:hover .wrapper-contant h3>a {
  color: #6cbe03;
}

.team-section-three .team-part .first-part {
  margin-bottom: 60px;
}

@media only screen and (max-width: 991px) {
  .team-section-three .team-part .first-part {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 991px) {
  .team-section-three .team-part .section-wrapper {
    margin-bottom: 30px;
  }
}

.team-section-three .team-part .section-wrapper .caption img {
  width: 100%;
}

.team-section-three .team-part .section-wrapper .wrapper-content h3 {
  font-size: 26px;
  font-weight: 500;
  line-height: 34px;
  margin: 17px 0 0;
}

@media only screen and (max-width: 991px) {
  .team-section-three .team-part .section-wrapper .wrapper-content h3 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .team-section-three .team-part .section-wrapper .wrapper-content h3 {
    font-size: 20px;
    line-height: 25px;
  }
}

.team-section-three .team-part .section-wrapper .wrapper-content .position {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: #999999;
}

@media only screen and (max-width: 767px) {
  .team-section-three .team-part .section-wrapper .wrapper-content .position {
    font-size: 14px;
    line-height: 20px;
  }
}

.team-section-three .team-part .section-wrapper .wrapper-content p {
  font-size: 16px;
  line-height: 27px;
  color: #666666;
  margin: 6px 0 20px;
}

.team-section-three .team-part .section-wrapper .wrapper-content .link {
  font-size: 16px;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .team-section-three .team-part .section-wrapper .wrapper-content .link {
    font-size: 14px;
  }
}

@media only screen and (max-width: 991px) {
  .team-section-three .pagination-wrapper .pagination {
    margin: 50px 0;
  }
}

@media only screen and (max-width: 479px) {
  .team-section-three .pagination-wrapper .pagination {
    margin: 20px 0;
  }
}

.team-section-four .team-part {
  position: relative;
  padding-bottom: 70px;
  margin-bottom: 70px;
}

.team-section-four .team-part.last-part {
  margin-bottom: 0;
  padding-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .team-section-four .team-part {
    padding-bottom: 40px;
    margin-bottom: 45px;
  }
}

@media only screen and (max-width: 767px) {
  .team-section-four .team-part {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .team-section-four .team-part .border {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .team-section-four .team-part .section-wrapper {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .team-section-four .team-part .section-wrapper .caption {
    margin-bottom: 15px;
  }
}

.team-section-four .team-part .section-wrapper .caption img {
  margin-right: 18px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .team-section-four .team-part .section-wrapper .caption img {
    width: 150px;
  }
}

.team-section-four .team-part .section-wrapper .wrapper-content h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 5px;
}

@media only screen and (max-width: 991px) {
  .team-section-four .team-part .section-wrapper .wrapper-content h3 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .team-section-four .team-part .section-wrapper .wrapper-content h3 {
    font-size: 20px;
  }
}

.team-section-four .team-part .section-wrapper .wrapper-content .position {
  font-size: 15px;
  font-weight: 500;
  color: #999999;
}

.team-section-four .team-part .section-wrapper .wrapper-content ul {
  margin: 10px 0 45px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .team-section-four .team-part .section-wrapper .wrapper-content ul {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 991px) {
  .team-section-four .team-part .section-wrapper .wrapper-content ul {
    margin-bottom: 25px;
  }
}

.team-section-four .team-part .section-wrapper .wrapper-content ul li {
  display: inline-block;
}

.team-section-four .team-part .section-wrapper .wrapper-content ul li i {
  font-size: 25px;
  margin-right: 10px;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.team-section-four .team-part .section-wrapper .wrapper-content ul li i.linkedin {
  color: #03638f;
}

.team-section-four .team-part .section-wrapper .wrapper-content ul li i.twitter {
  color: #65b2e5;
}

.team-section-four .team-part .section-wrapper .wrapper-content ul li i.facebook {
  color: #00529c;
}

.team-section-four .team-part .section-wrapper .wrapper-content ul li i.linkedin:hover,
.team-section-four .team-part .section-wrapper .wrapper-content ul li i.twitter:hover,
.team-section-four .team-part .section-wrapper .wrapper-content ul li i.facebook:hover {
  color: #6cbe03;
}

.team-section-four .team-part .section-wrapper .wrapper-content .link {
  font-size: 20px;
  line-height: 20px;
}

.team-section-four .team-part .border {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #e8e8e8;
}

/* =========================================================
        Worker-Section STYLE 
============================================================ */
.worker-section .worker-wrapper .tab-content .extra {
  margin-bottom: 112px;
}

@media only screen and (max-width: 991px) {
  .worker-section .worker-wrapper .tab-content .extra {
    margin-bottom: 63px;
  }
}

.worker-section .worker-wrapper .tab-content .worker-detail {
  border-radius: 25px;
  box-shadow: 0 0 5px #d2cfcf;
  margin: 5px 0;
}

.worker-section .worker-wrapper .tab-content .worker-detail:hover .worker-content::before {
  bottom: 0;
}

.worker-section .worker-wrapper .tab-content .worker-detail:hover .worker-content .position {
  color: #FFFFFF;
}

.worker-section .worker-wrapper .tab-content .worker-detail img {
  border-radius: 25px 25px 0 0;
  width: 100%;
}

.worker-section .worker-wrapper .tab-content .worker-detail .worker-content {
  position: relative;
  padding: 20px 0;
  overflow: hidden;
  border-radius: 0 0 25px 25px;
}

.worker-section .worker-wrapper .tab-content .worker-detail .worker-content::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #6cbe03;
  border-radius: 0 0 25px 25px;
  z-index: 1;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.worker-section .worker-wrapper .tab-content .worker-detail .worker-content h5 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
  z-index: 2;
}

.worker-section .worker-wrapper .tab-content .worker-detail .worker-content h5 a {
  color: #3f4c5d;
}

.worker-section .worker-wrapper .tab-content .worker-detail .worker-content h5 a:hover {
  color: #FFFFFF;
}

.worker-section .worker-wrapper .tab-content .worker-detail .worker-content .position {
  position: relative;
  font-size: 18px;
  color: #6cbe03;
  z-index: 2;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.worker-section .worker-wrapper .tab-content .owl-dots {
  margin-top: 35px;
}

@media only screen and (max-width: 991px) {
  .worker-section .worker-wrapper .tab-content .owl-dots {
    margin-top: 20px;
  }
}

.worker-section .worker-wrapper .tab-content .owl-dots .owl-dot.active span {
  background: #6cbe03;
}

.worker-section .worker-wrapper .tab-content .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  background: #dfe4ea;
}

@media only screen and (max-width: 991px) {
  .worker-section .worker-wrapper .tab-content .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
  }
}

.worker-section .worker-wrapper .nav-tabs {
  position: relative;
  display: flex;
  border: 0;
  margin-top: 45px;
  padding: 0 45px;
  z-index: 2;
}

@media only screen and (max-width: 991px) {
  .worker-section .worker-wrapper .nav-tabs {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 550px) {
  .worker-section .worker-wrapper .nav-tabs {
    padding: 0 10px;
  }
}

@media only screen and (max-width: 410px) {
  .worker-section .worker-wrapper .nav-tabs {
    display: block;
  }
}

.worker-section .worker-wrapper .nav-tabs::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #e0e8ed;
  margin-top: -1px;
  z-index: 0;
}

@media only screen and (max-width: 410px) {
  .worker-section .worker-wrapper .nav-tabs::before {
    display: none;
  }
}

.worker-section .worker-wrapper .nav-tabs li {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  background-color: #FFFFFF;
  border: 1px solid #e0e8ed;
  float: none;
  margin: 0 2px;
  flex: 1;
}

@media only screen and (max-width: 991px) {
  .worker-section .worker-wrapper .nav-tabs li {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .worker-section .worker-wrapper .nav-tabs li {
    font-size: 14px;
  }
}

@media only screen and (max-width: 550px) {
  .worker-section .worker-wrapper .nav-tabs li {
    font-size: 12px;
  }
}

@media only screen and (max-width: 410px) {
  .worker-section .worker-wrapper .nav-tabs li {
    margin-bottom: 5px;
    font-size: 15px;
  }

  .worker-section .worker-wrapper .nav-tabs li:first-child,
  .worker-section .worker-wrapper .nav-tabs li:last-child {
    border-radius: 0 !important;
  }
}

.worker-section .worker-wrapper .nav-tabs li.active {
  background: #6cbe03;
}

.worker-section .worker-wrapper .nav-tabs li.active a {
  color: #FFFFFF;
}

.worker-section .worker-wrapper .nav-tabs li:first-child {
  border-radius: 15px 0 0 15px;
}

.worker-section .worker-wrapper .nav-tabs li:last-child {
  border-radius: 0 15px 15px 0;
}

.worker-section .worker-wrapper .nav-tabs li a {
  color: #6cbe03;
  border: 0;
  background-color: transparent;
}

@media only screen and (max-width: 550px) {
  .worker-section .worker-wrapper .nav-tabs li a {
    padding: 5px 15px;
  }
}

/* =========================================================
        Quote-Section STYLE 
============================================================ */
.quote-section {
  background: url(../images/quote-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 50px 0;
}

@media only screen and (max-width: 991px) {
  .quote-section {
    background: #3a6504;
  }
}

.quote-section .section-title {
  margin: 0 0 35px 70px;
}

@media only screen and (max-width: 767px) {
  .quote-section .section-title {
    margin-left: 0;
  }
}

.quote-section .section-title h2 {
  font-size: 30px;
  font-weight: 600;
  color: #FFFFFF;
}

.quote-section .section-title h2 .text-color {
  color: #f9e611;
}

@media only screen and (max-width: 767px) {
  .quote-section .section-title h2 {
    font-size: 25px;
  }
}

@media only screen and (max-width: 479px) {
  .quote-section .section-title h2 {
    font-size: 22px;
  }
}

.quote-section .quote-form .form-group .form-control {
  background-color: transparent;
  border: 2px solid #FFFFFF;
  border-radius: 25px;
  color: #FFFFFF;
  padding: 19px 15px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .quote-section .quote-form .form-group .form-control {
    margin-bottom: 10px;
  }
}

.quote-section .quote-form .form-group .form-control::placeholder {
  color: #FFFFFF;
}

.quote-section .quote-form .form-group .subscribeBtn {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #f9e611;
  border: 0;
  border-bottom: 1px solid #f9e611;
  background-color: transparent;
  margin-top: 30px;
}

.quote-section .quote-form .selection .dropdown-select {
  background: transparent;
  display: block;
  width: 100%;
  border: 2px solid #fff;
  border-radius: 25px;
  color: #fff;
  padding: 8px 15px;
}

.quote-section .quote-form .selection .dropdown-select option {
  color: #313131;
}

/* =========================================================
        Double-Section STYLE 
============================================================ */
.double-section .partner-section .section-title {
  margin-bottom: 50px;
}

@media only screen and (max-width: 991px) {
  .double-section .partner-section .section-title {
    text-align: left;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .double-section .partner-section .partner-wrapper {
    margin-bottom: 40px;
  }
}

.double-section .partner-section .partner-wrapper ul li {
  display: inline-block;
}

@media only screen and (max-width: 991px) {
  .double-section .partner-section .partner-wrapper ul li img {
    width: 140px;
  }
}

@media only screen and (max-width: 991px) {
  .double-section .partner-section .partner-wrapper ul li img {
    width: 100px;
  }
}

.double-section .question-section .section-title {
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .double-section .question-section .section-title {
    margin-bottom: 30px;
  }
}

.double-section .question-section .question-accordion #question-accordion .panel {
  border-radius: 25px;
}

.double-section .question-section .question-accordion #question-accordion .panel .panel-heading {
  background-color: #6cbe03;
  border-radius: 25px;
  border: 0;
  padding: 0;
}

.double-section .question-section .question-accordion #question-accordion .panel .panel-heading .panel-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .double-section .question-section .question-accordion #question-accordion .panel .panel-heading .panel-title {
    font-size: 16px;
  }
}

.double-section .question-section .question-accordion #question-accordion .panel .panel-heading .panel-title a {
  display: block;
  padding: 16px 35px;
  color: #FFFFFF;
}

@media only screen and (max-width: 767px) {
  .double-section .question-section .question-accordion #question-accordion .panel .panel-heading .panel-title a {
    padding: 12px 30px;
  }
}

.double-section .question-section .question-accordion #question-accordion .panel .panel-heading .panel-title a.open {
  position: relative;
}

.double-section .question-section .question-accordion #question-accordion .panel .panel-heading .panel-title a.open.collapsed::before {
  content: "\f067";
  position: absolute;
  font-family: Fontawesome;
  top: 17px;
  right: 32px;
  width: 20px;
  height: 20px;
  line-height: 21px;
  text-align: center;
  color: #6cbe03;
  background: #FFFFFF;
  border-radius: 50%;
  font-size: 15px;
  padding-left: 1px;
  transform: rotate(0deg);
}

@media only screen and (max-width: 767px) {
  .double-section .question-section .question-accordion #question-accordion .panel .panel-heading .panel-title a.open.collapsed::before {
    top: 13px;
  }
}

.double-section .question-section .question-accordion #question-accordion .panel .panel-heading .panel-title a.open::before {
  content: "\f067";
  position: absolute;
  font-family: Fontawesome;
  top: 17px;
  right: 32px;
  width: 20px;
  height: 20px;
  line-height: 21px;
  text-align: center;
  color: #6cbe03;
  background: #FFFFFF;
  border-radius: 50%;
  font-size: 15px;
  transform: rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .double-section .question-section .question-accordion #question-accordion .panel .panel-heading .panel-title a.open::before {
    top: 13px;
  }
}

.double-section .question-section .question-accordion #question-accordion .panel .panel-collapse .panel-body {
  border: 0;
  padding: 30px 35px 25px;
}

@media only screen and (max-width: 767px) {
  .double-section .question-section .question-accordion #question-accordion .panel .panel-collapse .panel-body {
    padding: 15px 25px 20px;
  }
}

.double-section .question-section .question-accordion #question-accordion .panel .panel-collapse .panel-body p {
  font-size: 18px;
  line-height: 30px;
  color: #808695;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .double-section .question-section .question-accordion #question-accordion .panel .panel-collapse .panel-body p {
    font-size: 16px;
    line-height: 27px;
  }
}

/* =========================================================
        Testimonial-Section STYLE 
============================================================ */
.testimonial-section {
  background: #ecf4de;
  padding: 100px 0 170px;
}

@media only screen and (max-width: 767px) {
  .testimonial-section {
    padding: 70px 0 115px;
  }
}

.testimonial-section.testimonial-two {
  background: url(../images/testimonial-bg.jpg) no-repeat 50% 50%;
  background-attachment: fixed;
  background-size: cover;
}

.testimonial-section.testimonial-two .section-title {
  margin-bottom: 65px;
}

@media only screen and (max-width: 991px) {
  .testimonial-section.testimonial-two .section-title {
    margin-bottom: 45px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-section.testimonial-two .section-title {
    margin-bottom: 30px;
  }
}

.testimonial-section.testimonial-two .section-title h2 {
  color: #FFFFFF;
  font-weight: 600;
}

.testimonial-section.testimonial-two #testimonial-carousel .testimonial-wrapper {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 65px 35px 40px;
}

@media only screen and (max-width: 991px) {
  .testimonial-section.testimonial-two #testimonial-carousel .testimonial-wrapper {
    padding: 50px 35px 40px;
  }
}

@media only screen and (max-width: 479px) {
  .testimonial-section.testimonial-two #testimonial-carousel .testimonial-wrapper {
    padding: 40px 20px 35px;
  }
}

.testimonial-section.testimonial-two #testimonial-carousel .testimonial-wrapper p {
  margin: 0 35px 45px 20px;
}

@media only screen and (max-width: 479px) {
  .testimonial-section.testimonial-two #testimonial-carousel .testimonial-wrapper p {
    margin: 0 35px 30px 20px;
  }
}

.testimonial-section.testimonial-two #testimonial-carousel .testimonial-wrapper .author {
  display: inline-block;
}

.testimonial-section.testimonial-two #testimonial-carousel .testimonial-wrapper .author .content {
  display: inline-block;
  margin: 10px 20px 0;
}

.testimonial-section.testimonial-two #testimonial-carousel .testimonial-wrapper .rating {
  margin-top: 6px;
}

@media only screen and (max-width: 399px) {
  .testimonial-section.testimonial-two #testimonial-carousel .testimonial-wrapper .rating {
    float: none !important;
    margin-top: 20px;
  }
}

.testimonial-section.testimonial-two #testimonial-carousel .carousel-control-prev,
.testimonial-section.testimonial-two #testimonial-carousel .carousel-control-next {
  margin: 0 auto;
  width: 150px;
  font-size: 22px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: #FFFFFF;
}

@media only screen and (max-width: 479px) {

  .testimonial-section.testimonial-two #testimonial-carousel .carousel-control-prev,
  .testimonial-section.testimonial-two #testimonial-carousel .carousel-control-next {
    font-size: 16px;
    width: 100px;
  }

  .testimonial-section.testimonial-two #testimonial-carousel .carousel-control-prev img,
  .testimonial-section.testimonial-two #testimonial-carousel .carousel-control-next img {
    width: 20px;
  }
}

.testimonial-section.testimonial-two #testimonial-carousel .carousel-control-prev img,
.testimonial-section.testimonial-two #testimonial-carousel .carousel-control-next img {
  margin: 0 8px;
}

.testimonial-section.testimonial-two #testimonial-carousel .carousel-control-prev {
  left: -150px;
}

@media only screen and (max-width: 479px) {
  .testimonial-section.testimonial-two #testimonial-carousel .carousel-control-prev {
    left: -100px;
  }
}

.testimonial-section.testimonial-two #testimonial-carousel .carousel-control-next {
  right: -150px;
}

@media only screen and (max-width: 479px) {
  .testimonial-section.testimonial-two #testimonial-carousel .carousel-control-next {
    right: -100px;
  }
}

.testimonial-section #testimonial-carousel {
  position: relative;
}

.testimonial-section #testimonial-carousel .testimonial-wrapper p {
  font-size: 18px;
  color: #808695;
  margin: 25px 50px 20px 0;
}

@media only screen and (max-width: 767px) {
  .testimonial-section #testimonial-carousel .testimonial-wrapper p {
    margin: 25px 0 20px 0;
  }
}

@media only screen and (max-width: 479px) {
  .testimonial-section #testimonial-carousel .testimonial-wrapper p {
    font-size: 16px;
    margin: 20px 0 15px 0;
  }
}

.testimonial-section #testimonial-carousel .testimonial-wrapper .rating {
  display: inline-block;
}

.testimonial-section #testimonial-carousel .testimonial-wrapper .rating li {
  display: inline-block;
  margin-right: 2px;
}

.testimonial-section #testimonial-carousel .testimonial-wrapper .rating li i {
  font-size: 22px;
  color: #f9a90f;
}

@media only screen and (max-width: 479px) {
  .testimonial-section #testimonial-carousel .testimonial-wrapper .rating li i {
    font-size: 15px;
  }
}

.testimonial-section #testimonial-carousel .testimonial-wrapper .author {
  margin-top: -10px;
}

@media only screen and (max-width: 299px) {
  .testimonial-section #testimonial-carousel .testimonial-wrapper .author {
    float: none !important;
    margin-top: 15px;
  }
}

.testimonial-section #testimonial-carousel .testimonial-wrapper .author img {
  float: left;
  margin-top: 8px;
}

.testimonial-section #testimonial-carousel .testimonial-wrapper .author .content {
  margin: 0 60px 0 45px;
}

@media only screen and (max-width: 767px) {
  .testimonial-section #testimonial-carousel .testimonial-wrapper .author .content {
    margin: 0 0 0 45px;
  }
}

@media only screen and (max-width: 299px) {
  .testimonial-section #testimonial-carousel .testimonial-wrapper .author .content {
    margin: 0 0 0 35px;
  }
}

.testimonial-section #testimonial-carousel .testimonial-wrapper .author .content h5 {
  font-size: 22px;
  color: #3f4c5d;
  font-weight: 500;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .testimonial-section #testimonial-carousel .testimonial-wrapper .author .content h5 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 479px) {
  .testimonial-section #testimonial-carousel .testimonial-wrapper .author .content h5 {
    font-size: 15px;
  }
}

.testimonial-section #testimonial-carousel .testimonial-wrapper .author .content .position {
  font-size: 14px;
  color: #b5bdc9;
}

.testimonial-section #testimonial-carousel .carousel-indicators {
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 150px;
  bottom: -80px;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .testimonial-section #testimonial-carousel .carousel-indicators {
    bottom: -60px;
  }
}

.testimonial-section #testimonial-carousel .carousel-indicators li {
  width: 10px;
  height: 10px;
  border: 1px solid #6cbe03;
  margin: 0 7px;
}

.testimonial-section #testimonial-carousel .carousel-indicators li.active {
  background-color: #6cbe03;
}

.testimonial-section #testimonial-carousel .carousel-control-prev,
.testimonial-section #testimonial-carousel .carousel-control-next {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: -80px;
  z-index: 2;
}

@media only screen and (max-width: 767px) {

  .testimonial-section #testimonial-carousel .carousel-control-prev,
  .testimonial-section #testimonial-carousel .carousel-control-next {
    bottom: -60px;
  }
}

.testimonial-section #testimonial-carousel .carousel-control-prev {
  left: -130px;
}

.testimonial-section #testimonial-carousel .carousel-control-next {
  right: -130px;
}

/* =========================================================
        Priceing-Section STYLE 
============================================================ */
.priceing-section .section-title {
  margin-bottom: 80px;
}

@media only screen and (max-width: 991px) {
  .priceing-section .section-title {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .priceing-section .section-title {
    text-align: left;
  }
}

@media only screen and (max-width: 479px) {
  .priceing-section .section-title {
    margin-bottom: 30px;
  }
}

.priceing-section .priceing-wrapper .nav-tabs {
  border: 0;
  margin-right: 25px;
}

@media only screen and (max-width: 991px) {
  .priceing-section .priceing-wrapper .nav-tabs {
    margin-right: 0;
  }
}

.priceing-section .priceing-wrapper .nav-tabs li {
  float: none !important;
  margin: 0;
  border-bottom: 1px solid #8e9cab;
  padding-bottom: 20px;
  margin-bottom: 45px;
}

.priceing-section .priceing-wrapper .nav-tabs li.active {
  border-bottom: 1px solid #6cbe03;
}

.priceing-section .priceing-wrapper .nav-tabs li:last-child {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .priceing-section .priceing-wrapper .nav-tabs li:last-child {
    padding-bottom: 15px;
    margin: 0 25px 30px;
  }
}

@media only screen and (max-width: 991px) {
  .priceing-section .priceing-wrapper .nav-tabs li {
    display: inline-block;
    padding-bottom: 15px;
    margin: 0 25px 30px;
  }
}

.priceing-section .priceing-wrapper .nav-tabs li a {
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.priceing-section .priceing-wrapper .nav-tabs li a img {
  float: left;
}

@media only screen and (max-width: 991px) {
  .priceing-section .priceing-wrapper .nav-tabs li a img {
    width: 40px;
  }
}

@media only screen and (max-width: 479px) {
  .priceing-section .priceing-wrapper .nav-tabs li a img {
    width: 35px;
  }
}

.priceing-section .priceing-wrapper .nav-tabs li a .tab-content {
  margin-left: 70px;
}

@media only screen and (max-width: 991px) {
  .priceing-section .priceing-wrapper .nav-tabs li a .tab-content {
    margin-left: 50px;
  }
}

.priceing-section .priceing-wrapper .nav-tabs li a .tab-content h5 {
  font-size: 24px;
  color: #6cbe03;
  margin-bottom: 12px;
}

@media only screen and (max-width: 991px) {
  .priceing-section .priceing-wrapper .nav-tabs li a .tab-content h5 {
    font-size: 22px;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 479px) {
  .priceing-section .priceing-wrapper .nav-tabs li a .tab-content h5 {
    font-size: 20px;
  }
}

.priceing-section .priceing-wrapper .nav-tabs li a .tab-content p {
  font-size: 16px;
  color: #8e9cab;
}

.priceing-section .priceing-wrapper .nav-tabs li a .tab-content p .text-color {
  color: #6cbe03;
}

@media only screen and (max-width: 991px) {
  .priceing-section .priceing-wrapper .nav-tabs li a .tab-content p {
    font-size: 14px;
    margin-bottom: 0;
  }
}

.priceing-section .priceing-wrapper .tab-content .priceing-table {
  border: 1px dashed #6cbe03;
  padding: 50px 60px 65px;
}

@media only screen and (max-width: 767px) {
  .priceing-section .priceing-wrapper .tab-content .priceing-table {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 479px) {
  .priceing-section .priceing-wrapper .tab-content .priceing-table {
    padding-bottom: 50px;
  }
}

.priceing-section .priceing-wrapper .tab-content .priceing-table h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 4px;
  color: #3f4c5d;
  text-transform: uppercase;
  margin-bottom: 27px;
}

@media only screen and (max-width: 479px) {
  .priceing-section .priceing-wrapper .tab-content .priceing-table h4 {
    margin-bottom: 15px;
  }
}

.priceing-section .priceing-wrapper .tab-content .priceing-table .amount {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  background: #6cbe03;
  text-align: center;
  margin: 0 auto;
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
}

@media only screen and (max-width: 479px) {
  .priceing-section .priceing-wrapper .tab-content .priceing-table .amount {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 25px;
  }
}

.priceing-section .priceing-wrapper .tab-content .priceing-table p {
  font-size: 16px;
  line-height: 30px;
  color: #818e9e;
  margin: 23px 0 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid #cad0d9;
}

@media only screen and (max-width: 479px) {
  .priceing-section .priceing-wrapper .tab-content .priceing-table p {
    font-size: 14px;
    line-height: 27px;
    margin: 18px 0 20px;
  }
}

.priceing-section .priceing-wrapper .tab-content .priceing-table .option li {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #3f4c5d;
  margin-bottom: 20px;
}

@media only screen and (max-width: 479px) {
  .priceing-section .priceing-wrapper .tab-content .priceing-table .option li {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.priceing-section .priceing-wrapper .tab-content .priceing-table .option li i {
  font-size: 20px;
  color: #6cbe03;
  margin-right: 10px;
}

.priceing-section .priceing-wrapper .tab-content .priceing-table .option li i.fa-times {
  color: #ef4225;
}

.priceing-section .priceing-wrapper .tab-content .priceing-table .btn {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 300;
  background: #3f4c5d;
  color: #FFFFFF;
  border-radius: 25px;
  padding: 6px 60px;
  margin-top: 30px;
}

.priceing-section .priceing-wrapper .tab-content .priceing-table .btn::before {
  background: #6cbe03;
}

@media only screen and (max-width: 479px) {
  .priceing-section .priceing-wrapper .tab-content .priceing-table .btn {
    margin-top: 20px;
  }
}

.pricing-section-two {
  background: #eee;
}

.pricing-section-two .pricing-table-default {
  margin-top: 30px;
  background: #ffffff;
  -webkit-transition: 0.8s;
  -khtml-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}

.pricing-section-two .pricing-table-default:hover {
  background: #313131;
}

.pricing-section-two .pricing-table-default:hover .pricing-head h3 {
  color: #ffffff;
}

.pricing-section-two .pricing-table-default:hover .price-standerd .price {
  color: #ffffff;
}

.pricing-section-two .pricing-table-default:hover .pricing-list li {
  color: #eee;
}

.pricing-section-two .pricing-table-default:hover .btn {
  color: #313131;
  background-color: #FFFFFF;
}

@media only screen and (max-width: 767px) {
  .pricing-section-two .pricing-table-default {
    margin-bottom: 30px;
  }
}

.pricing-section-two .pricing-table-default .pricing-head {
  padding: 45px 0 23px;
}

.pricing-section-two .pricing-table-default .pricing-head h3 {
  font-size: 15px;
  font-weight: 600;
  color: #313131;
  margin: 0px;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.pricing-section-two .pricing-table-default .pricing-list {
  border-top: 1px solid rgba(194, 194, 194, 0.09);
  border-bottom: 1px solid rgba(194, 194, 194, 0.09);
  margin: 0 30px;
}

.pricing-section-two .pricing-table-default .pricing-list li {
  display: block;
  padding: 9px 0;
}

.pricing-section-two .pricing-table-default .pricing-list li:first-child {
  padding-top: 45px;
}

.pricing-section-two .pricing-table-default .pricing-list li:last-child {
  padding: 9px 0 42px;
}

.pricing-section-two .pricing-table-default .price-standerd {
  border-bottom: 1px solid rgba(194, 194, 194, 0.09);
  margin: 0 30px;
  padding: 50px 0 41px;
}

.pricing-section-two .pricing-table-default .price-standerd .price {
  display: block;
  font-size: 60px;
  line-height: 30px;
  color: #313131;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.pricing-section-two .pricing-table-default .price-standerd .price sup {
  font-weight: 300;
}

.pricing-section-two .pricing-table-default .price-standerd .price sub {
  font-size: 13px;
  font-weight: 300;
}

.pricing-section-two .pricing-table-default .btn {
  color: #ffffff;
  border: 0;
  text-transform: capitalize;
  display: inline-block;
  padding: 11px 32px;
  margin-top: 30px;
  margin-bottom: 33px;
  background: #1f1f1f;
  -webkit-transition: 0.8s;
  -khtml-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}

.pricing-section-two .pricing-table-default .btn:hover {
  color: #FFFFFF;
}

.pricing-section-three .pricing-table-default {
  margin-top: 30px;
  background: #ffffff;
  border: 1px solid #6cbe03;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (max-width: 767px) {
  .pricing-section-three .pricing-table-default {
    margin-bottom: 30px;
  }
}

.pricing-section-three .pricing-table-default:hover {
  background: #6cbe03;
}

.pricing-section-three .pricing-table-default:hover .pricing-head p {
  color: #FFFFFF;
}

.pricing-section-three .pricing-table-default:hover .pricing-head h3 {
  color: #ffffff;
}

.pricing-section-three .pricing-table-default:hover .pricing-list li {
  color: #FFFFFF;
}

.pricing-section-three .pricing-table-default:hover .pricing-list li:nth-child(1),
.pricing-section-three .pricing-table-default:hover .pricing-list li:nth-child(3) {
  background: #5ca004;
}

.pricing-section-three .pricing-table-default:hover .btn {
  color: #6cbe03;
  background-color: #ffffff;
}

.pricing-section-three .pricing-table-default .pricing-head {
  padding: 25px 0 0px;
}

.pricing-section-three .pricing-table-default .pricing-head p {
  margin: 15px;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.pricing-section-three .pricing-table-default .pricing-head h3 {
  font-size: 15px;
  font-weight: 600;
  color: #313131;
  margin: 8px 0 17px;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.pricing-section-three .pricing-table-default .pricing-head .price {
  display: inline-block;
  line-height: 15px;
  color: #313131;
  background-color: #f9f9f9;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  padding-top: 45px;
}

.pricing-section-three .pricing-table-default .pricing-head .price sup {
  font-size: 20px;
}

.pricing-section-three .pricing-table-default .pricing-head .price .price-digit {
  font-size: 40px;
  font-weight: bold;
}

.pricing-section-three .pricing-table-default .pricing-list li {
  display: block;
  padding: 11px 0;
  margin: 5px 0;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.pricing-section-three .pricing-table-default .pricing-list li:nth-child(1),
.pricing-section-three .pricing-table-default .pricing-list li:nth-child(3) {
  background: #f9f9f9;
  margin: 0 20px;
}

.pricing-section-three .pricing-table-default .btn {
  color: #ffffff;
  border: 0;
  text-transform: capitalize;
  display: inline-block;
  padding: 7px 28px;
  margin: 25px 0;
  background: #dadada;
  border: 2px solid #FFFFFF;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (max-width: 479px) {
  .pricing-section-three .pricing-table-default .btn {
    padding: 4px 28px;
  }
}

.pricing-section-three .pricing-table-default .btn:hover {
  color: #FFFFFF;
}

.pricing-section-four {
  /*preset color*/
}

.pricing-section-four .pricing-padding {
  padding-left: 6px;
  padding-right: 6px;
}

.pricing-section-four .offset-bg {
  background-color: #dadada;
}

.pricing-section-four .green-bg {
  background-color: #73c8b7;
}

.pricing-section-four .blue-bg {
  background-color: #31aae2;
}

.pricing-section-four .violet-bg {
  background-color: #c183d6;
}

.pricing-section-four .pink-bg {
  background: #eb768c;
}

.pricing-section-four .offset-text {
  color: #ffffff;
}

.pricing-section-four .green-text {
  color: #cdfdf3;
}

.pricing-section-four .pink-text {
  color: #ffcfd8;
}

.pricing-section-four .blue-text {
  color: #a0e1ff;
}

.pricing-section-four .violet-text {
  color: #f2cdff;
}

.pricing-section-four .offset-btn {
  color: #dadada;
}

.pricing-section-four .green-btn {
  color: #73c8b7;
}

.pricing-section-four .blue-btn {
  color: #31aae2;
}

.pricing-section-four .violet-btn {
  color: #c183d6;
}

.pricing-section-four .pink-btn {
  color: #eb768c;
}

.pricing-section-four .offset-position {
  position: relative;
  bottom: -192px;
}

.pricing-section-four .blue-position {
  position: relative;
  bottom: -110px;
}

.pricing-section-four .pink-position {
  position: relative;
  bottom: -96px;
}

.pricing-section-four .violet-position {
  position: relative;
  bottom: -47px;
}

@media only screen and (max-width: 767px) {

  .pricing-section-four .offset-position,
  .pricing-section-four .blue-position,
  .pricing-section-four .pink-position,
  .pricing-section-four .violet-position {
    bottom: 0;
  }
}

.pricing-section-four .price-position {
  position: relative;
  bottom: 0;
}

.pricing-section-four .popular-plan {
  padding: 5px 0;
  text-align: center;
  color: #ffffff;
  border-radius: 6px;
  position: relative;
  bottom: -100px;
}

@media only screen and (max-width: 767px) {
  .pricing-section-four .popular-plan {
    margin-top: 85px;
    bottom: 15px;
  }
}

@media only screen and (max-width: 479px) {
  .pricing-section-four .popular-plan {
    margin-top: 45px;
  }
}

.pricing-section-four .popular-plan::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  bottom: -6px;
  margin-left: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #31aae2;
}

.pricing-section-four .pricing-table-default {
  border-radius: 6px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .pricing-section-four .pricing-table-default {
    margin-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pricing-section-four .pricing-table-default {
    margin-bottom: 30px;
  }
}

.pricing-section-four .pricing-head {
  padding: 20px 0 27px;
}

.pricing-section-four .pricing-head h3 {
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  margin: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .pricing-section-four .pricing-head h3 {
    font-size: 20px;
  }
}

.pricing-section-four .pricing-head .small-head {
  font-size: 15px;
  font-weight: 400;
}

.pricing-section-four .price-standerd .price {
  display: block;
  line-height: 25px;
  color: #ffffff;
  margin: 6px 0 10px;
}

.pricing-section-four .price-standerd .price-digit {
  font-size: 32px;
  font-weight: bold;
}

@media (min-width: 768px) and (max-width: 991px) {
  .pricing-section-four .price-standerd .price-digit {
    font-size: 25px;
  }
}

.pricing-section-four .pricing-list {
  padding-bottom: 25px;
}

.pricing-section-four .pricing-list li {
  display: block;
  line-height: 40px;
  padding: 4px 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .pricing-section-four .pricing-list li {
    line-height: 30px;
  }
}

.pricing-section-four .btn {
  background: #ffffff;
  border: 0;
  border-radius: 6px;
  text-transform: capitalize;
  display: inline-block;
  padding: 4px 28px;
  margin: 14px 0 20px;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.pricing-section-four .btn:hover {
  color: #FFFFFF;
}

.pricing-section-four .btn::before {
  border-radius: 6px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .pricing-section-four .btn {
    padding: 4px 20px;
  }
}

.pricing-section-five {
  background-color: #eee;
  /*preset color*/
}

.pricing-section-five .green-bg {
  background: #73c8b7;
}

.pricing-section-five .blue-bg {
  background: #31aae2;
}

.pricing-section-five .pink-bg {
  background: #eb768c;
}

.pricing-section-five .green-i i {
  color: #73c8b7;
}

.pricing-section-five .blue-i i {
  color: #31aae2;
}

.pricing-section-five .pink-i i {
  color: #eb768c;
}

.pricing-section-five .pricing-table-default {
  border: 1px solid #f1f1f1;
  border-radius: 6px;
  margin-top: 30px;
  background: #ffffff;
}

@media only screen and (max-width: 767px) {
  .pricing-section-five .pricing-table-default {
    margin-bottom: 30px;
  }
}

.pricing-section-five .pricing-head h3 {
  font-size: 15px;
  color: #ffffff;
  padding: 14px 40px;
  margin: 0px;
  border-radius: 6px 6px 0 0;
}

.pricing-section-five .pricing-head .price {
  display: block;
  font-size: 60px;
  line-height: 60px;
  font-weight: bold;
  padding: 43px 0 0;
  color: #313131;
}

.pricing-section-five .pricing-head .price sup {
  font-size: 60px;
  font-weight: bold;
  top: -9px;
}

.pricing-section-five .pricing-head .price sub {
  font-size: 16px;
  font-weight: 600;
}

.pricing-section-five .pricing-head p {
  border-bottom: 1px solid rgba(228, 220, 220, 0.28);
  margin: 0 30px;
  padding-bottom: 35px;
}

.pricing-section-five .pricing-detail {
  margin: 0 50px 25px 50px;
}

.pricing-section-five .pricing-detail p {
  margin: 0;
}

.pricing-section-five .pricing-list.pink-i li,
.pricing-section-five .pricing-list.blue-i li,
.pricing-section-five .pricing-list.green-i li {
  position: relative;
}

.pricing-section-five .pricing-list.pink-i li::before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  margin-left: -28px;
  color: #eb768c;
}

.pricing-section-five .pricing-list.blue-i li::before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  margin-left: -28px;
  color: #31aae2;
}

.pricing-section-five .pricing-list.green-i li::before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  margin-left: -28px;
  color: #73c8b7;
}

.pricing-section-five .pricing-list li {
  display: block;
  padding: 8px 0;
}

.pricing-section-five .pricing-list li:first-child {
  padding-top: 25px;
}

.pricing-section-five .pricing-list li:last-child {
  padding: 12px 0 0;
}

.pricing-section-five .pricing-list li i {
  margin-right: 17px;
}

.pricing-section-five .btn {
  color: #ffffff;
  border: 0;
  border-radius: 6px;
  text-transform: capitalize;
  display: block;
  padding: 13px 0;
  margin: 0 32px 31px 32px;
}

.pricing-section-five .btn:hover {
  color: #000;
  /*background: #f9f9f9;*/
}

.pricing-section-five .btn::before {
  border-radius: 6px;
}

@media only screen and (max-width: 991px) {
  .pricing-section-five .btn {
    font-size: 15px;
  }
}

/* =========================================================
        Shop-Section STYLE 
============================================================ */
.shop-section {
  padding-bottom: 0;
}

.shop-section .section-title {
  margin-bottom: 75px;
}

@media only screen and (max-width: 767px) {
  .shop-section .section-title {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 479px) {
  .shop-section .section-title {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .shop-section .shop-wrapper {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .shop-section .shop-wrapper {
    margin-bottom: 30px;
  }
}

.shop-section .shop-wrapper:hover .caption-wrapper::before {
  opacity: 1;
  visibility: visible;
}

.shop-section .shop-wrapper:hover .caption-wrapper .hover-view .icon.icon-one i {
  transform: translateX(0);
}

.shop-section .shop-wrapper:hover .caption-wrapper .hover-view .icon.icon-two i {
  transform: translateX(0);
}

.shop-section .shop-wrapper:hover .caption-wrapper .hover-view .icon i {
  opacity: 1;
  visibility: visible;
}

.shop-section .shop-wrapper .caption-wrapper {
  position: relative;
  overflow: hidden;
}

.shop-section .shop-wrapper .caption-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(108, 190, 3, 0.8);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.shop-section .shop-wrapper .caption-wrapper img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 5px #d6d5d5;
}

.shop-section .shop-wrapper .caption-wrapper .hover-view {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: -25px auto 0;
  z-index: 5;
}

.shop-section .shop-wrapper .caption-wrapper .hover-view .icon {
  margin: 0 3px;
}

.shop-section .shop-wrapper .caption-wrapper .hover-view .icon.icon-one i {
  transform: translateX(-300px);
}

.shop-section .shop-wrapper .caption-wrapper .hover-view .icon.icon-two i {
  transform: translateX(300px);
}

.shop-section .shop-wrapper .caption-wrapper .hover-view .icon i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: #FFFFFF;
  background-color: #6cbe03;
  font-size: 22px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.shop-section .shop-wrapper .caption-wrapper .hover-view .icon i:hover {
  color: #6cbe03;
  background-color: #FFFFFF;
}

.shop-section .shop-wrapper .shop-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 5px;
}

.shop-section .shop-wrapper .shop-content h4 a {
  color: #3f4c5d;
}

.shop-section .shop-wrapper .shop-content h4 a:hover {
  color: #6cbe03;
}

@media only screen and (max-width: 479px) {
  .shop-section .shop-wrapper .shop-content h4 {
    font-size: 18px;
  }
}

.shop-section .shop-wrapper .shop-content .price {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #6cbe03;
}

.shop-section .shop-wrapper .shop-content .price strike {
  color: #acb3bb;
  margin-right: 10px;
}

.shop-section .shop-wrapper .shop-content .rating li {
  display: inline-block;
}

.shop-section .shop-wrapper .shop-content .rating li i {
  font-size: 20px;
  color: #f8ad2b;
  margin-top: 10px;
}

@media only screen and (max-width: 479px) {
  .shop-section .shop-wrapper .shop-content .rating li i {
    font-size: 18px;
  }
}

.shop-section .more-service {
  position: relative;
  margin: 90px 0 10px;
}

@media only screen and (max-width: 991px) {
  .shop-section .more-service {
    margin: 30px 0 10px;
  }
}

@media only screen and (max-width: 767px) {
  .shop-section .more-service {
    margin: 20px 0 10px;
  }
}

@media only screen and (max-width: 479px) {
  .shop-section .more-service {
    margin: 0;
  }
}

.shop-section .more-service::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d3d9e2;
  z-index: 1;
}

.shop-section .more-service .link {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  background-color: #FFFFFF;
  border: 1px solid #d3d9e2;
  border-radius: 25px;
  padding: 10px 40px;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .shop-section .more-service .link {
    font-size: 16px;
    padding: 8px 30px;
  }
}

@media only screen and (max-width: 479px) {
  .shop-section .more-service .link {
    font-size: 14px;
    padding: 6px 20px;
  }
}

/* =========================================================
        Blog-Section STYLE 
============================================================ */
.blog-section {
  padding-bottom: 40px;
}

@media only screen and (max-width: 991px) {
  .blog-section {
    padding-bottom: 0;
  }
}

.blog-section .section-title {
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .blog-section .section-title {
    margin-bottom: 30px;
  }
}

.blog-section .blog-wrapper {
  position: relative;
  border-bottom: 2px solid #d3d9e2;
  padding-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .blog-section .blog-wrapper {
    margin-bottom: 60px;
  }

  .blog-section .blog-wrapper.last-wrapper {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .blog-section .blog-wrapper.last-wrapper {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 479px) {
  .blog-section .blog-wrapper {
    padding-bottom: 25px;
    margin-bottom: 40px;
  }
}

.blog-section .blog-wrapper::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -2px;
  background-color: #6cbe03;
  -webkit-transition: 0.3s;
  -khtml-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.blog-section .blog-wrapper:hover::before {
  width: 100%;
}

.blog-section .blog-wrapper img {
  width: 100%;
  border-radius: 15px 15px 0 0;
}

.blog-section .blog-wrapper .content-wrapper h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 25px 0 8px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-section .blog-wrapper .content-wrapper h3 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-section .blog-wrapper .content-wrapper h3 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 479px) {
  .blog-section .blog-wrapper .content-wrapper h3 {
    font-size: 18px;
    margin: 20px 0 8px;
  }
}

.blog-section .blog-wrapper .content-wrapper h3 a {
  color: #3f4c5d;
}

.blog-section .blog-wrapper .content-wrapper h3 a:hover {
  color: #6cbe03;
}

.blog-section .blog-wrapper .content-wrapper .post li {
  display: inline-block;
  margin-right: 35px;
}

.blog-section .blog-wrapper .content-wrapper .post li:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 479px) {
  .blog-section .blog-wrapper .content-wrapper .post li {
    font-size: 13px;
  }
}

.blog-section .blog-wrapper .content-wrapper .post li i {
  font-size: 18px;
  color: #6cbe03;
  margin-right: 3px;
}

@media only screen and (max-width: 479px) {
  .blog-section .blog-wrapper .content-wrapper .post li i {
    font-size: 15px;
  }
}

.blog-section .blog-wrapper .content-wrapper p {
  font-size: 16px;
  color: #6d747d;
  margin: 15px 0 25px;
}

@media only screen and (max-width: 479px) {
  .blog-section .blog-wrapper .content-wrapper p {
    font-size: 14px;
    margin: 15px 0;
  }
}

.blog-section .blog-wrapper .content-wrapper .link {
  font-size: 20px;
  font-weight: 700;
  color: #3f4c5d;
}

.blog-section .blog-wrapper .content-wrapper .link:hover {
  color: #6cbe03;
}

@media only screen and (max-width: 767px) {
  .blog-section .blog-wrapper .content-wrapper .link {
    font-size: 16px;
  }
}

/* =========================================================
        SignUp-Section STYLE 
============================================================ */
.signup-section .signup-wrapper {
  background: url(../images/sign-bg.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 50px;
}

@media only screen and (max-width: 1199px) {
  .signup-section .signup-wrapper {
    text-align: center;
  }
}

@media only screen and (max-width: 479px) {
  .signup-section .signup-wrapper {
    padding: 50px 20px;
  }
}

.signup-section .signup-wrapper h3 {
  font-size: 29px;
  font-weight: 600;
  line-height: 35px;
  color: #FFFFFF;
  display: inline-block;
  letter-spacing: -1px;
  margin: 8px 0 0;
  vertical-align: middle;
}

.signup-section .signup-wrapper h3 .color {
  color: #f5e20c;
}

@media only screen and (max-width: 767px) {
  .signup-section .signup-wrapper h3 {
    font-size: 25px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 479px) {
  .signup-section .signup-wrapper h3 {
    font-size: 22px;
    line-height: 28px;
  }
}

.signup-section .signup-wrapper .btn {
  border-color: #FFFFFF;
  background-color: transparent;
  color: #FFFFFF;
  padding: 8px 42px;
}

.signup-section .signup-wrapper .btn::before {
  background-color: #FFFFFF;
}

.signup-section .signup-wrapper .btn:hover {
  color: #6cbe03;
}

@media only screen and (max-width: 1199px) {
  .signup-section .signup-wrapper .btn {
    float: none !important;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .signup-section .signup-wrapper .btn {
    padding: 6px 35px;
  }
}

@media only screen and (max-width: 479px) {
  .signup-section .signup-wrapper .btn {
    padding: 4px 30px;
    margin-top: 25px;
  }
}

/* =========================================================
        About-Section STYLE 
============================================================ */
.about-section {
  padding: 115px 0 70px;
}

@media only screen and (max-width: 991px) {
  .about-section {
    padding: 90px 0 70px;
  }
}

@media only screen and (max-width: 767px) {
  .about-section {
    padding: 60px 0 50px;
  }
}

.about-section .caption {
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .about-section .caption {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 600px) {
  .about-section .caption img {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .about-section .caption {
    margin-bottom: 30px;
  }
}

.about-section .content-wrapper h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 50px;
  color: #3f4c5d;
  margin-bottom: 35px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-section .content-wrapper h3 {
    font-size: 33px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .about-section .content-wrapper h3 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .about-section .content-wrapper h3 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 479px) {
  .about-section .content-wrapper h3 {
    font-size: 20px;
    line-height: 25px;
  }
}

.about-section .content-wrapper p {
  font-size: 16px;
  line-height: 30px;
  color: #6a7788;
}

@media only screen and (max-width: 767px) {
  .about-section .content-wrapper p {
    font-size: 14px;
    line-height: 27px;
  }
}

.about-section .content-wrapper h5 {
  font-size: 16px;
  font-weight: 600;
  color: #3f4c5d;
  margin: 15px 0 -3px;
}

.about-section .content-wrapper .position {
  font-size: 12px;
  color: #8898ac;
}

.about-section .caption-wrapper {
  position: relative;
}

.about-section .caption-wrapper .caption {
  position: absolute;
  left: 0;
  bottom: -580px;
}

.about-section .caption-wrapper .caption img {
  width: 100%;
}

/* =========================================================
        Subscribe-Section STYLE 
============================================================ */
.subscribe-section {
  background: url(../images/subscribe-bg.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  padding: 65px 0;
}

.subscribe-section .left-bar .caption {
  margin: 20px 35px 0 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .subscribe-section .left-bar .caption {
    margin: 5px 15px 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .subscribe-section .left-bar .caption {
    margin: 10px 20px 0 0;
  }

  .subscribe-section .left-bar .caption img {
    width: 75px;
  }
}

@media only screen and (max-width: 479px) {
  .subscribe-section .left-bar .caption {
    margin: 10px 10px 0 0;
  }

  .subscribe-section .left-bar .caption img {
    width: 60px;
  }
}

@media only screen and (max-width: 415px) {
  .subscribe-section .left-bar .caption {
    float: none !important;
    margin-bottom: 10px;
  }
}

.subscribe-section .left-bar h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 45px;
  color: #FFFFFF;
  word-break: break-all;
  margin: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .subscribe-section .left-bar h3 {
    font-size: 25px;
    line-height: 34px;
  }
}

@media only screen and (max-width: 991px) {
  .subscribe-section .left-bar h3 {
    line-height: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .subscribe-section .left-bar h3 {
    font-size: 25px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 550px) {
  .subscribe-section .left-bar h3 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 415px) {
  .subscribe-section .left-bar h3 {
    margin: 10px 0 0;
  }
}

.subscribe-section .right-bar {
  margin-top: 30px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .subscribe-section .right-bar {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .subscribe-section .right-bar {
    margin-left: 135px;
  }
}

@media only screen and (max-width: 767px) {
  .subscribe-section .right-bar {
    margin: 25px 0 0 98px;
  }
}

@media only screen and (max-width: 479px) {
  .subscribe-section .right-bar {
    margin: 25px 0 0 0;
  }
}

.subscribe-section .right-bar .subscribeForm .subscribeBar {
  width: 60%;
  background-color: transparent;
  border-radius: 25px;
  border: 2px solid #fff;
  padding: 6px 27px;
  color: #fff;
}

@media only screen and (max-width: 479px) {
  .subscribe-section .right-bar .subscribeForm .subscribeBar {
    padding: 4px 27px;
  }
}

.subscribe-section .right-bar .subscribeForm .subscribeBar::placeholder {
  color: #FFFFFF;
}

.subscribe-section .right-bar .subscribeForm .subscribeBtn {
  padding: 8px 38px;
}

@media only screen and (max-width: 479px) {
  .subscribe-section .right-bar .subscribeForm .subscribeBtn {
    padding: 6px 38px;
  }
}

/* =========================================================
        Mission-Section STYLE 
============================================================ */
.mission-section {
  padding: 70px 0 80px;
}

@media only screen and (max-width: 991px) {
  .mission-section {
    padding: 50px 0 70px;
  }

  .mission-section img {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .mission-section {
    padding: 35px 0 60px;
  }
}

@media only screen and (max-width: 479px) {
  .mission-section {
    padding: 50px 0 40px;
  }
}

.mission-section .mission-wrapper .nav-tabs {
  border: 0;
  border-radius: 8px;
  background-color: #141513;
}

.mission-section .mission-wrapper .nav-tabs li {
  margin-bottom: 0;
}

.mission-section .mission-wrapper .nav-tabs li.active>a {
  color: #FFFFFF;
  background-color: #6cbe03;
  border-radius: 8px;
}

.mission-section .mission-wrapper .nav-tabs li.active>a:hover {
  background-color: #6cbe03;
}

.mission-section .mission-wrapper .nav-tabs li.active>a,
.mission-section .mission-wrapper .nav-tabs li.active>a:focus,
.mission-section .mission-wrapper .nav-tabs li.active>a:hover {
  border: 0;
}

.mission-section .mission-wrapper .nav-tabs li a {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  border: 0;
  color: #FFFFFF;
  border-radius: 0;
  padding: 12px 50px;
  margin-right: 0;
}

.mission-section .mission-wrapper .nav-tabs li a:hover {
  background-color: transparent;
}

@media only screen and (max-width: 767px) {
  .mission-section .mission-wrapper .nav-tabs li a {
    font-size: 18px;
    padding: 10px 40px;
  }
}

@media only screen and (max-width: 479px) {
  .mission-section .mission-wrapper .nav-tabs {
    margin-top: 30px;
  }

  .mission-section .mission-wrapper .nav-tabs li>a {
    font-size: 15px;
    padding: 6px 35px;
  }
}

.mission-section .mission-wrapper .mission-content {
  padding-top: 68px;
}

@media only screen and (max-width: 991px) {
  .mission-section .mission-wrapper .mission-content {
    padding-top: 30px;
  }
}

@media only screen and (max-width: 479px) {
  .mission-section .mission-wrapper .mission-content {
    padding-top: 25px;
  }
}

.mission-section .mission-wrapper .mission-content h3 {
  font-size: 48px;
  font-weight: 600;
  line-height: 30px;
  color: #1b232f;
  margin-bottom: 42px;
}

@media only screen and (max-width: 991px) {
  .mission-section .mission-wrapper .mission-content h3 {
    font-size: 40px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .mission-section .mission-wrapper .mission-content h3 {
    font-size: 35px;
  }
}

@media only screen and (max-width: 479px) {
  .mission-section .mission-wrapper .mission-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.mission-section .mission-wrapper .mission-content p {
  color: #666666;
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .mission-section .mission-wrapper .mission-content p {
    margin-bottom: 20px;
  }
}

/* =========================================================
        About-Section-Two STYLE 
============================================================ */
.about-section-two .section-title {
  margin-bottom: 50px;
}

@media only screen and (max-width: 991px) {
  .about-section-two .about-wrapper {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .about-section-two .about-wrapper {
    margin-bottom: 30px;
  }
}

.about-section-two .about-wrapper .caption img {
  width: 100%;
}

.about-section-two .about-wrapper .wrapper-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: #1b232f;
  margin: 25px 0 10px;
}

@media only screen and (max-width: 767px) {
  .about-section-two .about-wrapper .wrapper-content h4 {
    font-size: 20px;
    margin: 20px 0 5px;
  }
}

.about-section-two .about-wrapper .wrapper-content p {
  color: #3a3a3a;
}

.about-section-two .about-wrapper .wrapper-content .btn {
  font-weight: 400;
  margin-top: 22px;
  padding: 5px 28px;
}

.about-section-two .about-wrapper .wrapper-content .btn:hover a {
  color: #FFFFFF;
}

@media only screen and (max-width: 767px) {
  .about-section-two .about-wrapper .wrapper-content .btn {
    font-size: 14px;
    margin-top: 5px;
    padding: 3px 20px;
  }
}

/* =========================================================
        ComingSoonOne STYLE 
============================================================ */
.comingsoonOne {
  background: url(../images/comming-soon/c1.jpg) no-repeat center center;
  background-size: cover;
  padding: 190px 0 180px;
}

@media only screen and (max-width: 991px) {
  .comingsoonOne {
    padding: 120px 0 100px;
  }
}

@media only screen and (max-width: 479px) {
  .comingsoonOne {
    padding: 100px 0 80px;
  }
}

.comingsoonOne .logo {
  margin-bottom: 30px;
  display: inline-block;
}

.comingsoonOne h2 {
  font-size: 30px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 50px;
}

.comingsoonOne .countdown-wrapper {
  background-color: rgba(0, 0, 0, 0.64);
  padding: 100px 0;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .comingsoonOne .countdown-wrapper {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 479px) {
  .comingsoonOne .countdown-wrapper {
    padding: 50px 0;
  }
}

.comingsoonOne .countdown-wrapper li {
  font-size: 150px;
  line-height: 150px;
  font-weight: 300;
  font-family: 'Open Sans Condensed', sans-serif;
  color: #fff;
  -webkit-filter: drop-shadow(3px 3px 0px #dadada);
  filter: drop-shadow(3px 3px 0px #dadada);
  text-shadow: -1px -1px 0px #dadada;
}

@media only screen and (max-width: 991px) {
  .comingsoonOne .countdown-wrapper li {
    font-size: 100px;
    line-height: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .comingsoonOne .countdown-wrapper li {
    font-size: 65px;
    line-height: 70px;
  }
}

@media only screen and (max-width: 479px) {
  .comingsoonOne .countdown-wrapper li {
    font-size: 50px;
    line-height: 50px;
  }
}

.comingsoonOne .subscribe-wrapper {
  margin: 50px 0 40px;
}

.comingsoonOne .subscribe-wrapper input {
  margin-right: 8px;
}

.comingsoonOne .subscribe-wrapper .form-control {
  height: 40px;
}

@media only screen and (min-width: 992px) {
  .comingsoonOne .subscribe-wrapper .form-control {
    width: 294px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .comingsoonOne .subscribe-wrapper .form-control {
    width: 280px;
  }
}

.comingsoonOne .subscribe-wrapper .form-control:focus {
  box-shadow: none;
}

.comingsoonOne .social-links li {
  margin-right: 10px;
}

.comingsoonOne .social-links li:last-child {
  margin-right: 0;
}

.comingsoonOne .social-links li a {
  display: block;
  color: #969595;
  font-size: 20px;
}

.comingsoonOne .social-links li a:hover {
  color: #31aae2;
}

/* =========================================================
        ComingSoonTwo STYLE 
============================================================ */
.comingsoonTwo {
  background: url(../images/comming-soon/c2.jpg) no-repeat center center;
  background-size: cover;
  padding: 170px 0 230px;
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .comingsoonTwo {
    padding: 100px 0;
  }
}

@media only screen and (max-width: 479px) {
  .comingsoonTwo {
    padding: 80px 0;
  }
}

.comingsoonTwo .logo {
  margin-bottom: 40px;
  display: inline-block;
}

.comingsoonTwo h2 {
  font-size: 30px;
  line-height: 40px;
  color: #FFFFFF;
  font-weight: 300;
  margin-bottom: 24px;
}

.comingsoonTwo .countdown-wrapper {
  margin: 20px 0 50px;
}

.comingsoonTwo .countdown-wrapper #countdownTwo li {
  display: inline-block;
  margin-right: 10px;
  min-width: 124px;
  text-align: center;
}

.comingsoonTwo .countdown-wrapper #countdownTwo li:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .comingsoonTwo .countdown-wrapper #countdownTwo li {
    margin-bottom: 12px;
  }

  .comingsoonTwo .countdown-wrapper #countdownTwo li a {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 479px) {
  .comingsoonTwo .countdown-wrapper #countdownTwo li {
    min-width: 108px;
  }
}

.comingsoonTwo .countdown-wrapper #countdownTwo li span {
  display: block;
  font-size: 50px;
  line-height: 133px;
  font-weight: 600;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.comingsoonTwo .countdown-wrapper #countdownTwo li span:hover {
  cursor: pointer;
}

.comingsoonTwo .countdown-wrapper #countdownTwo li p {
  text-transform: uppercase;
  font-size: 15px;
  line-height: 35px;
  margin: 0;
  color: #313131;
  background: #FFFFFF;
}

.comingsoonTwo .subscribe-wrapper h3 {
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 25px;
}

.comingsoonTwo .subscribe-wrapper p {
  margin-bottom: 30px;
}

.comingsoonTwo .subscribe-wrapper .subscribe-form {
  margin-bottom: 45px;
}

.comingsoonTwo .subscribe-wrapper .subscribe-form .form-control {
  height: 42px;
  background-color: transparent;
  background-image: none;
  border: 1px solid #FFFFFF;
  border-radius: 4px 0 0 4px;
}

.comingsoonTwo .subscribe-wrapper .subscribe-form .form-control:focus {
  box-shadow: none;
}

.comingsoonTwo .subscribe-wrapper .subscribe-form .btn-black {
  height: 42px;
  background-color: #FFFFFF;
  color: #313131;
  font-size: 13px;
  font-weight: 600;
}

.comingsoonTwo .social-links li a {
  display: block;
  height: 50px;
  width: 50px;
  line-height: 48px;
  font-size: 20px;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  text-align: center;
}

.comingsoonTwo .social-links li a:hover {
  color: #fff;
  background-color: #6cbe03;
  border: 1px solid transparent;
}

@media only screen and (max-width: 479px) {
  .comingsoonTwo .social-links li a {
    height: 40px;
    width: 40px;
    line-height: 38px;
    font-size: 18px;
  }
}

/* =========================================================
        ComingSoonThree STYLE 
============================================================ */
.comingsoonThree {
  background: url(../images/comming-soon/c3.jpg) no-repeat center center;
  background-size: cover;
  padding: 255px 0;
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .comingsoonThree {
    padding: 150px 0;
  }
}

@media only screen and (max-width: 767px) {
  .comingsoonThree {
    padding: 100px 0;
  }
}

.comingsoonThree .logo {
  margin-bottom: 60px;
  display: inline-block;
}

.comingsoonThree h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 40px;
  line-height: 45px;
  font-weight: 400;
  color: #fff;
}

.comingsoonThree .introstyle p {
  font-size: 15px;
  line-height: 34px;
  font-weight: 400;
  font-style: italic;
  color: #969595;
  padding: 0 270px;
}

@media only screen and (max-width: 991px) {
  .comingsoonThree .introstyle p {
    padding: 0 100px;
  }
}

@media only screen and (max-width: 767px) {
  .comingsoonThree .introstyle p {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 479px) {
  .comingsoonThree .introstyle p {
    padding: 0;
    line-height: 27px;
  }
}

.comingsoonThree .countdown-wrapper {
  margin: 50px 0 65px 0;
}

.comingsoonThree .countdown-wrapper #countdownThree li {
  position: relative;
  display: inline-block;
  margin-right: 30px;
  text-align: center;
  z-index: 100;
}

@media only screen and (max-width: 767px) {
  .comingsoonThree .countdown-wrapper #countdownThree li {
    margin-bottom: 12px;
  }

  .comingsoonThree .countdown-wrapper #countdownThree li a {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 479px) {
  .comingsoonThree .countdown-wrapper #countdownThree li {
    min-width: 108px;
  }
}

.comingsoonThree .countdown-wrapper #countdownThree li :last-child {
  margin-right: 0;
}

.comingsoonThree .countdown-wrapper #countdownThree li:last-child::after {
  content: '';
}

.comingsoonThree .countdown-wrapper #countdownThree li::after {
  content: ':';
  font-size: 66px;
  line-height: 170px;
  font-weight: 300;
  top: -35px;
  left: 0;
  margin-left: 132px;
  position: absolute;
}

@media only screen and (max-width: 479px) {
  .comingsoonThree .countdown-wrapper #countdownThree li::after {
    display: none;
  }
}

.comingsoonThree .countdown-wrapper #countdownThree li span {
  display: block;
  font-size: 45px;
  line-height: 110px;
  font-weight: 600;
  color: #fff;
  background: #6cbe03;
  border: 5px solid rgba(0, 0, 0, 0.17);
  border-radius: 50%;
  padding: 1px 31px;
}

.comingsoonThree .countdown-wrapper #countdownThree li span:hover {
  cursor: pointer;
}

.comingsoonThree .countdown-wrapper #countdownThree li p {
  text-transform: uppercase;
  font-size: 13px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: 5px;
  margin: 0;
  color: #fff;
  margin-top: 10px;
}

.comingsoonThree .subscribe-form {
  padding: 0 300px;
  margin-bottom: 45px;
}

@media only screen and (max-width: 991px) {
  .comingsoonThree .subscribe-form {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 479px) {
  .comingsoonThree .subscribe-form {
    padding: 0;
  }
}

.comingsoonThree .subscribe-form h3 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 25px;
}

.comingsoonThree .subscribe-form p {
  margin-bottom: 30px;
}

.comingsoonThree .subscribe-form .input-group {
  width: 100%;
}

.comingsoonThree .subscribe-form .input-group placeholder {
  color: #FFFFFF;
}

.comingsoonThree .subscribe-form .form-control {
  height: 48px;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.comingsoonThree .subscribe-form .form-control:focus {
  box-shadow: none;
  border: 1px solid #31aae2 !important;
}

.comingsoonThree .subscribe-form .btn-black {
  height: 48px;
  background-color: transparent;
  color: #9e9d9d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-left: -65px;
  border-color: transparent;
}

.comingsoonThree .fa-check {
  color: #fff;
}

.comingsoonThree .social-links li {
  margin-right: 17px;
}

@media only screen and (max-width: 479px) {
  .comingsoonThree .social-links li {
    margin-right: 5px;
  }
}

.comingsoonThree .social-links li:last-child {
  margin-right: 0;
}

.comingsoonThree .social-links li a {
  display: block;
  color: #FFFFFF;
  font-size: 25px;
}

.comingsoonThree .social-links li a:hover {
  color: #6cbe03;
}

/* =========================================================
        ComingSoonFour STYLE 
============================================================ */
.comingsoonFour {
  background: url(../images/comming-soon/c4.jpg) no-repeat center center;
  background-size: cover;
  padding: 204px 0 204px 0;
  color: #FFFFFF;
}

@media only screen and (max-width: 991px) {
  .comingsoonFour {
    padding: 150px 0;
  }
}

@media only screen and (max-width: 767px) {
  .comingsoonFour {
    padding: 100px 0;
  }
}

.comingsoonFour .logo {
  margin-bottom: 60px;
  display: inline-block;
}

@media only screen and (max-width: 991px) {
  .comingsoonFour .logo {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 479px) {
  .comingsoonFour .logo {
    margin-bottom: 10px;
  }
}

.comingsoonFour h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  color: #FFFFFF;
}

.comingsoonFour h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 22px;
}

.comingsoonFour .introstyleeight p {
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  padding: 0 270px;
}

@media only screen and (max-width: 991px) {
  .comingsoonFour .introstyleeight p {
    padding: 0 100px;
  }
}

@media only screen and (max-width: 767px) {
  .comingsoonFour .introstyleeight p {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 479px) {
  .comingsoonFour .introstyleeight p {
    padding: 0;
    line-height: 27px;
  }
}

.comingsoonFour .countdown-wrapper {
  margin: 50px 0 65px 0;
}

.comingsoonFour .countdown-wrapper #countdownFour li {
  position: relative;
  display: inline-block;
  margin-right: 30px;
  text-align: center;
  z-index: 100;
}

.comingsoonFour .countdown-wrapper #countdownFour li:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .comingsoonFour .countdown-wrapper #countdownFour li {
    margin-bottom: 12px;
  }

  .comingsoonFour .countdown-wrapper #countdownFour li a {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 479px) {
  .comingsoonFour .countdown-wrapper #countdownFour li {
    min-width: 108px;
  }
}

.comingsoonFour .countdown-wrapper #countdownFour li span {
  display: block;
  font-size: 45px;
  line-height: 110px;
  font-weight: 400;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 1px 31px;
}

.comingsoonFour .countdown-wrapper #countdownFour li span:hover {
  cursor: pointer;
}

.comingsoonFour .countdown-wrapper #countdownFour li p {
  text-transform: uppercase;
  font-size: 13px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: 5px;
  margin: 0;
  color: #fff;
  margin-top: 10px;
}

.comingsoonFour .social-links li {
  display: inline-block;
  margin-right: 8px;
}

.comingsoonFour .social-links li a {
  display: block;
  height: 32px;
  width: 32px;
  line-height: 32px;
  font-size: 14px;
  color: #fff;
  background: #6cbe03;
  border-radius: 50%;
  text-align: center;
}

.comingsoonFour .social-links li a:hover {
  color: #6cbe03;
  background-color: #fff;
}

/* =========================================================
        404 Page STYLE 
============================================================ */
.error-Page {
  padding: 95px 0 108px;
}

@media only screen and (max-width: 991px) {
  .error-Page {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 479px) {
  .error-Page {
    padding: 60px 0;
  }
}

.error-Page .logo {
  margin-bottom: 30px;
  display: inline-block;
}

.error-Page h2 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 50px;
}

@media only screen and (max-width: 479px) {
  .error-Page h2 {
    font-size: 22px;
    line-height: 25px;
  }
}

.error-Page .countdown-wrapper {
  background-color: #fff;
  padding: 200px 0;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .error-Page .countdown-wrapper {
    padding: 100px 0;
  }
}

@media only screen and (max-width: 767px) {
  .error-Page .countdown-wrapper {
    padding: 60px 0;
  }
}

.error-Page .countdown-wrapper h3 {
  font-size: 300px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
  -webkit-filter: drop-shadow(7px 10px 0px #dadada);
  filter: drop-shadow(7px 10px 0px #dadada);
  text-shadow: -1px -1px 0px #dadada;
}

@media only screen and (max-width: 991px) {
  .error-Page .countdown-wrapper h3 {
    font-size: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .error-Page .countdown-wrapper h3 {
    font-size: 150px;
  }
}

@media only screen and (max-width: 479px) {
  .error-Page .countdown-wrapper h3 {
    font-size: 120px;
  }
}

.error-Page .subscribe-wrapper {
  margin: 50px 0 40px;
}

@media only screen and (max-width: 479px) {
  .error-Page .subscribe-wrapper {
    margin: 30px 0 0;
  }
}

.error-Page .btn-primary {
  border: 2px solid #6cbe03;
}

.error-Page .btn-primary:hover a {
  color: #6cbe03;
}

.error-Page .btn-primary a {
  color: #FFFFFF;
}

/* =========================================================
        404 Page Two STYLE 
============================================================ */
.error-Page-Two {
  background: url(../images/comingsoonelevenbg.jpg) no-repeat center center;
  background-size: cover;
  padding: 95px 0 0;
  position: relative;
}

.error-Page-Two .logo {
  margin-bottom: 30px;
  display: inline-block;
}

.error-Page-Two h2 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #fff;
}

.error-Page-Two p {
  margin-bottom: 62px;
  color: #fff;
  font-size: 15px;
  line-height: 34px;
  font-style: italic;
}

@media only screen and (max-width: 767px) {
  .error-Page-Two .comingsoon img {
    width: 100%;
  }
}

/* =========================================================
        Icon Page STYLE 
============================================================ */
.icon-style-one .promo-block-wrapper {
  background: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid #6cbe03;
}

@media only screen and (max-width: 991px) {
  .icon-style-one .promo-block-wrapper {
    margin-bottom: 30px;
  }
}

.icon-style-one .promo-block-wrapper:hover .promo-icon {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.icon-style-one .promo-block-wrapper:hover .promo-hover-content {
  -webkit-transform: rotateY(0);
  -moz-transform: rotateY(0);
  transform: rotateY(0);
}

.icon-style-one .promo-icon {
  padding: 100px 0 70px;
  position: relative;
  backface-visibility: hidden;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.icon-style-one .promo-icon i {
  width: 72px;
  height: 72px;
  background: #6cbe03;
  color: #ffffff;
  font-size: 24px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 50px;
}

.icon-style-one .promo-hover-content {
  padding: 70px 40px;
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  backface-visibility: hidden;
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

@media only screen and (max-width: 479px) {
  .icon-style-one .promo-hover-content {
    display: none;
  }
}

.icon-style-one .promo-hover-content h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.icon-style-one .promo-hover-content p {
  font-size: 13px;
  color: #969595;
  line-height: 30px;
}

.icon-style-two {
  background-color: #eee;
}

.icon-style-two .promo-block-wrapper {
  background: #fff;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 479px) {
  .icon-style-two .promo-block-wrapper {
    margin-bottom: 30px;
  }
}

.icon-style-two .promo-block-wrapper:hover .promo-hover-content {
  opacity: 1;
  margin-top: 0;
}

.icon-style-two .promo-block-wrapper h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.icon-style-two .promo-block-wrapper p {
  font-size: 13px;
  color: #969595;
  line-height: 30px;
}

.icon-style-two .promo-icon {
  padding: 100px 0 70px;
}

.icon-style-two .promo-icon i {
  width: 72px;
  height: 72px;
  background: #6cbe03;
  color: #ffffff;
  font-size: 24px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 50px;
}

.icon-style-two .promo-hover-content {
  padding: 70px 40px;
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: -340px;
  opacity: 0;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (max-width: 991px) {
  .icon-style-two .promo-hover-content {
    padding: 30px 20px 0;
  }
}

.icon-style-three .promo-block-wrapper {
  border: 1px solid #6cbe03;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (max-width: 767px) {
  .icon-style-three .promo-block-wrapper {
    margin-bottom: 30px;
  }
}

.icon-style-three .promo-block-wrapper:hover {
  border: 1px solid transparent;
  background: #6cbe03;
}

.icon-style-three .promo-block-wrapper:hover .promo-icon {
  background-color: #ffffff;
  color: #6cbe03;
}

.icon-style-three .promo-block-wrapper:hover .promo-content h3,
.icon-style-three .promo-block-wrapper:hover .promo-content p {
  color: #FFFFFF;
}

.icon-style-three .promo-icon {
  width: 106px;
  height: 106px;
  color: #ffffff;
  background: #6cbe03;
  font-size: 30px;
  line-height: 104px;
  text-align: center;
  border-radius: 50%;
  margin: 40px auto;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.icon-style-three .promo-content {
  padding: 5px 40px 32px;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (max-width: 991px) {
  .icon-style-three .promo-content {
    padding: 5px 20px 30px;
  }
}

.icon-style-three .promo-content h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.icon-style-four .promo-block-wrapper {
  border: 1px solid #dadada;
  background-color: #fff;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (max-width: 991px) {
  .icon-style-four .promo-block-wrapper {
    margin-bottom: 30px;
  }
}

.icon-style-four .promo-block-wrapper:hover {
  border: 1px solid #6cbe03;
}

.icon-style-four .promo-block-wrapper:hover .promo-icon {
  color: #6cbe03;
}

.icon-style-four .promo-block-wrapper:hover h3 {
  background-color: #6cbe03;
  color: #fff;
}

.icon-style-four .promo-icon {
  color: #dadada;
  font-size: 30px;
  text-align: center;
  min-height: 100px;
  line-height: 100px;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.icon-style-four h3 {
  font-size: 15px;
  line-height: 50px;
  background-color: #f1f1f1;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.icon-style-four .promo-content {
  padding: 20px;
}

.icon-style-five {
  background-color: #eee;
}

.icon-style-five .promo-block-wrapper {
  border: 1px solid #6cbe03;
}

@media only screen and (max-width: 991px) {
  .icon-style-five .promo-block-wrapper {
    margin-bottom: 30px;
  }
}

.icon-style-five .promo-block-wrapper:hover .promo-icon {
  background-color: #313131;
}

.icon-style-five .promo-block-wrapper h3 {
  font-size: 15px;
  text-transform: capitalize;
}

.icon-style-five .promo-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  color: #fff;
  background-color: #6cbe03;
  border-radius: 6px;
  font-size: 20px;
  margin: 50px auto 30px;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.icon-style-five .promo-content {
  padding: 20px;
}

@media only screen and (max-width: 991px) {
  .icon-style-six {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .icon-style-six {
    margin: 80px 0 0;
    padding-bottom: 0;
  }
}

.icon-style-six .promo-block-wrapper {
  border: 1px solid #dadada;
}

@media only screen and (max-width: 767px) {
  .icon-style-six .promo-block-wrapper {
    margin-bottom: 100px;
  }
}

.icon-style-six .promo-block-wrapper:hover .promo-icon i {
  background-color: #6cbe03;
  color: #ffffff;
}

.icon-style-six .promo-icon {
  margin: 0 auto;
  position: relative;
  top: -70px;
  background: #ffffff;
  border-radius: 50%;
  width: 130px;
  padding: 11px;
  -webkit-filter: drop-shadow(0 -2px 1px #dadada);
  filter: drop-shadow(0 -2px 1px #dadada);
}

.icon-style-six .promo-icon i {
  width: 106px;
  height: 106px;
  color: #dadada;
  background: #f3f2f2;
  font-size: 30px;
  line-height: 104px;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.icon-style-six .promo-content {
  padding: 0 40px 32px;
  margin-top: -36px;
}

.icon-style-six .promo-content h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: capitalize;
}

@media only screen and (max-width: 991px) {
  .icon-style-seven .promo-block {
    margin-bottom: 50px;
  }
}

.icon-style-seven .promo-block:hover i {
  background: #fff;
  color: #6cbe03;
  border: 5px solid #6cbe03;
}

.icon-style-seven .promo-block i {
  background: #6cbe03;
  color: #fff;
  width: 50px;
  height: 50px;
  font-size: 18px;
  line-height: 42px;
  border-radius: 50%;
  margin-bottom: 30px;
  border: 5px solid transparent;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.icon-style-seven .promo-block h3 {
  font-size: 15px;
}

.icon-style-seven .promo-block p {
  margin-bottom: 0;
}

.icon-style-eight {
  background-color: #eee;
}

.icon-style-eight .first-row {
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .icon-style-eight .first-row {
    margin-bottom: 0;
  }
}

.icon-style-eight .promo-block-wrapper {
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (max-width: 991px) {
  .icon-style-eight .promo-block-wrapper {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .icon-style-eight .promo-block-wrapper {
    margin-bottom: 30px;
  }
}

.icon-style-eight .promo-block-wrapper:hover .promo-icon {
  background-color: #6cbe03;
}

.icon-style-eight .promo-block-wrapper:hover .promo-icon::before {
  border-top: 6px solid #6cbe03;
  border-left: 6px solid #6cbe03;
}

.icon-style-eight .promo-icon {
  float: left;
  margin-right: 30px;
  width: 50px;
  height: 50px;
  font-size: 16px;
  color: #fff;
  line-height: 50px;
  color: #fff;
  background-color: #dadada;
  text-align: center;
  display: block;
  position: relative;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.icon-style-eight .promo-icon::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;
  border-top: 6px solid #dadada;
  border-left: 6px solid #dadada;
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.icon-style-eight .promo-content {
  overflow: hidden;
}

.icon-style-eight .promo-content h3 {
  font-size: 15px;
  margin-top: -8px;
}

@media only screen and (max-width: 479px) {
  .icon-style-eight .promo-content h3 {
    margin-bottom: 0;
  }
}

.icon-style-nine .promo-block-wrapper {
  border: 2px solid transparent;
  background-color: #fff;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.icon-style-nine .promo-block-wrapper:hover {
  border: 2px solid #6cbe03;
}

.icon-style-nine .promo-icon {
  color: #6cbe03;
  font-size: 30px;
  text-align: center;
  margin: 50px auto 30px;
}

.icon-style-nine .promo-content {
  padding: 20px;
}

.icon-style-nine .promo-content h3 {
  font-size: 15px;
}

/* =========================================================
        Calender Page STYLE 
============================================================ */
.calender-section .widget-date {
  border: 2px solid #6cbe03;
}

.calender-section .widget-date .widget-calender .calender {
  background: #FFFFFF;
}

.calender-section .widget-date .widget-calender .pickmeup {
  display: block;
}

.calender-section .widget-date .widget-calender .pickmeup .pmu-instance {
  height: auto;
  padding-bottom: 30px;
  width: 100%;
}

.calender-section .widget-date .widget-calender .pickmeup .pmu-instance nav {
  height: 80px;
  line-height: 80px;
  padding: 0 40px;
  background-color: #6cbe03;
}

@media only screen and (max-width: 479px) {
  .calender-section .widget-date .widget-calender .pickmeup .pmu-instance nav {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
  }
}

.calender-section .widget-date .widget-calender .pickmeup .pmu-instance nav .pmu-month {
  width: 100%;
  font-size: 22px;
  font-weight: 700;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (max-width: 479px) {
  .calender-section .widget-date .widget-calender .pickmeup .pmu-instance nav .pmu-month {
    font-size: 20px;
  }
}

.calender-section .widget-date .widget-calender .pickmeup .pmu-instance nav .pmu-month:hover {
  color: #313131;
}

.calender-section .widget-date .widget-calender .pickmeup .pmu-instance .pmu-day-of-week {
  display: flex;
  padding: 0;
  height: 80px;
  line-height: 80px;
  background: #FFFFFF;
}

@media only screen and (max-width: 479px) {
  .calender-section .widget-date .widget-calender .pickmeup .pmu-instance .pmu-day-of-week {
    height: 50px;
    line-height: 50px;
  }
}

.calender-section .widget-date .widget-calender .pickmeup .pmu-instance .pmu-day-of-week div {
  font-size: 22px;
  line-height: 80px;
  flex: 1;
  color: #666666;
  font-weight: 700;
}

@media only screen and (max-width: 479px) {
  .calender-section .widget-date .widget-calender .pickmeup .pmu-instance .pmu-day-of-week div {
    font-size: 18px;
    line-height: 50px;
  }
}

.calender-section .widget-date .widget-calender .month {
  position: relative;
  width: 100%;
  color: #ecf0f1;
  background-color: #2ecc71;
  padding: 10px 0;
}

.calender-section .widget-date .widget-calender .month li h1,
.calender-section .widget-date .widget-calender .month li h2 {
  display: inline-block;
  font-size: 16px;
  margin: 0;
}

.calender-section .widget-date .widget-calender .month .next,
.calender-section .widget-date .widget-calender .month .prev {
  position: absolute;
  top: 0;
  cursor: pointer;
  padding: 5px;
  display: block;
}

.calender-section .widget-date .widget-calender .month .next:hover,
.calender-section .widget-date .widget-calender .month .prev:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.calender-section .widget-date .widget-calender .month .prev {
  left: 0;
  border-right: 1px solid rgba(165, 161, 161, 0.55);
  padding: 10px 15px;
}

.calender-section .widget-date .widget-calender .month .next {
  right: 0;
  border-left: 1px solid rgba(165, 161, 161, 0.55);
  padding: 10px 15px;
}

.calender-section .widget-date .widget-calender .weeks {
  display: flex;
  padding: 0 10px;
}

.calender-section .widget-date .widget-calender .weeks li {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #593442;
  background: #FFFFFF;
  flex: 1;
  position: relative;
  animation: motion 2s;
  padding: 10px 0;
}

.calender-section .widget-date .widget-calender .pmu-days {
  display: flex;
  flex-wrap: wrap;
  background: #fff !important;
}

.calender-section .widget-date .widget-calender .pmu-days .pmu-button {
  flex-basis: calc(100% / 7);
  padding: 25px 0;
  font-size: 22px;
  color: #c8c8c8;
}

@media only screen and (max-width: 479px) {
  .calender-section .widget-date .widget-calender .pmu-days .pmu-button {
    padding: 15px 0;
    font-size: 18px;
  }
}

.calender-section .widget-date .widget-calender .pmu-days .pmu-button:hover,
.calender-section .widget-date .widget-calender .pmu-days .pmu-button.pmu-selected,
.calender-section .widget-date .widget-calender .pmu-days .pmu-button.pmu-today {
  color: #FFFFFF;
  background-color: #6cbe03;
}

.calender-section .widget-date .widget-calender .pmu-days .pmu-button.pmu-not-in-month {
  color: #666;
}

/* =========================================================
        Blog STYLE 
============================================================ */
@media only screen and (max-width: 991px) {
  .blogStyleOne .blog-post-wrapper {
    margin-bottom: 30px;
  }
}

.blogStyleOne .blog-post-wrapper .post-thumbnail img {
  width: 100%;
}

.blogStyleOne .blog-post-wrapper .blog-content {
  border: 1px solid #6cbe03;
}

.blogStyleOne .blog-post-wrapper .blog-content .entry-header {
  padding: 20px 20px 0;
}

.blogStyleOne .blog-post-wrapper .blog-content .entry-header .entry-title {
  font-size: 18px;
  line-height: 22px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.blogStyleOne .blog-post-wrapper .blog-content .entry-header .entry-title a {
  color: #313131;
}

.blogStyleOne .blog-post-wrapper .blog-content .entry-header .entry-title a:hover {
  color: #6cbe03;
}

.blogStyleOne .blog-post-wrapper .blog-content .entry-header .entry-meta {
  font-size: 10px;
  text-transform: uppercase;
}

.blogStyleOne .blog-post-wrapper .blog-content .entry-header .entry-meta li {
  display: inline-block;
  border-right: 1px solid #E7E7E7;
  line-height: 10px;
  padding-right: 15px;
  margin-right: 15px;
}

.blogStyleOne .blog-post-wrapper .blog-content .entry-header .entry-meta li:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}

.blogStyleOne .blog-post-wrapper .blog-content .entry-header .entry-meta li a {
  color: #969595;
}

.blogStyleOne .blog-post-wrapper .blog-content .entry-header .entry-meta li a:hover {
  color: #6cbe03;
}

.blogStyleOne .blog-post-wrapper .blog-content .entry-content {
  padding: 20px;
}

.blogStyleOne .blog-post-wrapper .blog-content .entry-content p {
  margin: 0;
}

.blogStyleOne .blog-post-wrapper .blog-content .entry-footer {
  background-color: #f9f9f9;
  padding: 8px 20px;
  border-top: 1px solid #6cbe03;
}

.blogStyleOne .blog-post-wrapper .blog-content .entry-footer .entry-meta a {
  color: #969595;
  font-size: 12px;
  text-transform: capitalize;
}

.blogStyleOne .blog-post-wrapper .blog-content .entry-footer .entry-meta a:hover {
  color: #6cbe03;
}

.blogStyleOne .blog-post-wrapper #blogOneSlider .carousel-control {
  top: 50%;
  margin-top: -13px;
  bottom: auto;
  width: 26px;
  height: 26px;
  font-size: 14px;
  color: #969595;
  text-shadow: none;
  filter: alpha(opacity=100);
  opacity: 1;
}

.blogStyleOne .blog-post-wrapper #blogOneSlider .carousel-control:focus,
.blogStyleOne .blog-post-wrapper #blogOneSlider .carousel-control:hover {
  background-color: #6cbe03;
  color: #fff !important;
  filter: alpha(opacity=100);
  opacity: 1;
}

.blogStyleOne .blog-post-wrapper #blogOneSlider .carousel-control.left,
.blogStyleOne .blog-post-wrapper #blogOneSlider .carousel-control.right {
  background-image: none;
  background-color: #fff;
}

.blogStyleOne .blog-post-wrapper .post-thumbnail {
  position: relative;
}

.blogStyleOne .blog-post-wrapper .post-thumbnail .play-trigger {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #6cbe03;
  font-size: 20px;
  line-height: 60px;
  text-align: center;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.blogStyleOne .blog-post-wrapper .post-thumbnail .play-trigger:hover {
  color: #6cbe03;
  background: #fff;
}

.blogStyleOne .blog-post-wrapper .post-thumbnail .play-trigger i {
  margin-left: 5px;
}

.blogStyleTwo {
  background-color: #eee;
}

@media only screen and (max-width: 991px) {
  .blogStyleTwo .blog-post-wrapper {
    margin-bottom: 30px;
  }
}

.blogStyleTwo .blog-post-wrapper .post-thumbnail {
  position: relative;
}

.blogStyleTwo .blog-post-wrapper .post-thumbnail img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .blogStyleTwo .blog-post-wrapper .post-thumbnail #blogTwoSlider .carousel-indicators {
    bottom: 0px;
  }
}

.blogStyleTwo .blog-post-wrapper .post-thumbnail #blogTwoSlider .carousel-indicators li {
  width: 13px;
  height: 13px;
  margin: 0;
}

.blogStyleTwo .blog-post-wrapper .post-thumbnail #blogTwoSlider .carousel-indicators li.active {
  width: 13px;
  height: 13px;
  background-color: #6cbe03;
  border: 1px solid #6cbe03;
}

.blogStyleTwo .blog-post-wrapper .post-thumbnail .play-trigger {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #6cbe03;
  font-size: 20px;
  line-height: 60px;
  text-align: center;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.blogStyleTwo .blog-post-wrapper .post-thumbnail .play-trigger:hover {
  color: #eb768c;
  background: #fff;
}

.blogStyleTwo .blog-post-wrapper .post-thumbnail .play-trigger i {
  margin-left: 5px;
}

.blogStyleTwo .blog-post-wrapper .entry-header {
  margin: 20px 0 25px;
}

.blogStyleTwo .blog-post-wrapper .entry-header .entry-title {
  font-size: 16px;
  line-height: 22px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.blogStyleTwo .blog-post-wrapper .entry-header .entry-title a {
  color: #313131;
}

.blogStyleTwo .blog-post-wrapper .entry-header .entry-title a:hover {
  color: #6cbe03;
}

.blogStyleTwo .blog-post-wrapper .entry-header .entry-meta li {
  display: inline-block;
  border-right: 1px solid #EFEEEE;
  line-height: 10px;
  padding-right: 15px;
  margin-right: 15px;
}

.blogStyleTwo .blog-post-wrapper .entry-header .entry-meta li:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}

.blogStyleTwo .blog-post-wrapper .entry-header .entry-meta li a {
  font-size: 10px;
  text-transform: uppercase;
  color: #969595;
}

.blogStyleTwo .blog-post-wrapper .entry-header .entry-meta li a:hover {
  color: #6cbe03;
}

.blogStyleTwo .blog-post-wrapper .entry-content p {
  margin: 0;
}

.blogStyleTwo .blog-post-wrapper .entry-footer {
  margin-top: 15px;
}

.blogStyleTwo .blog-post-wrapper .entry-footer a {
  color: #969595;
  font-size: 12px;
  text-transform: capitalize;
}

.blogStyleTwo .blog-post-wrapper .entry-footer a:hover {
  color: #6cbe03;
}

.blogStyleThree .first-row {
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .blogStyleThree .first-row {
    margin-bottom: 0;
  }
}

.blogStyleThree .blog-post-wrapper {
  background-color: #fff;
}

@media only screen and (max-width: 991px) {
  .blogStyleThree .blog-post-wrapper {
    margin-bottom: 30px;
  }
}

.blogStyleThree .blog-post-wrapper .post-thumbnail {
  float: left;
  position: relative;
}

.blogStyleThree .blog-post-wrapper .post-thumbnail::before {
  content: "";
  position: absolute;
  right: 0;
  top: 30px;
  border-top: 22px solid transparent;
  border-right: 24px solid #fff;
  border-bottom: 20px solid transparent;
  z-index: 10;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blogStyleThree .blog-post-wrapper .post-thumbnail {
    float: none;
  }

  .blogStyleThree .blog-post-wrapper .post-thumbnail::before {
    display: none;
  }

  .blogStyleThree .blog-post-wrapper .post-thumbnail img {
    width: 100%;
  }
}

@media only screen and (max-width: 550px) {
  .blogStyleThree .blog-post-wrapper .post-thumbnail {
    float: none;
  }

  .blogStyleThree .blog-post-wrapper .post-thumbnail::before {
    display: none;
  }

  .blogStyleThree .blog-post-wrapper .post-thumbnail img {
    width: 100%;
  }
}

.blogStyleThree .blog-post-wrapper .post-thumbnail .entry-meta {
  position: absolute;
  left: 0;
  bottom: 30px;
  text-align: center;
  width: 100%;
}

.blogStyleThree .blog-post-wrapper .post-thumbnail .entry-meta li {
  margin-right: 10px;
  display: inline-block;
}

.blogStyleThree .blog-post-wrapper .post-thumbnail .entry-meta li:last-child {
  margin-right: 0;
}

.blogStyleThree .blog-post-wrapper .post-thumbnail .entry-meta li a {
  display: block;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  padding: 0 15px;
  border-radius: 30px;
}

.blogStyleThree .blog-post-wrapper .post-thumbnail .entry-meta li a:hover {
  background-color: #fff !important;
}

.blogStyleThree .blog-post-wrapper .post-thumbnail .entry-meta li a.comments {
  background-color: #1491cb;
}

.blogStyleThree .blog-post-wrapper .post-thumbnail .entry-meta li a.comments :hover {
  color: #1491cb;
}

.blogStyleThree .blog-post-wrapper .post-thumbnail .entry-meta li a.likes {
  background-color: #eb768c;
}

.blogStyleThree .blog-post-wrapper .post-thumbnail .entry-meta li a.likes:hover {
  color: #eb768c;
}

.blogStyleThree .blog-post-wrapper .post-thumbnail .entry-meta li a.share {
  background-color: #73c8b7;
}

.blogStyleThree .blog-post-wrapper .post-thumbnail .entry-meta li a.share:hover {
  color: #73c8b7;
}

.blogStyleThree .blog-post-wrapper .post-thumbnail #blogEightSlider .carousel-control {
  top: 50%;
  margin-top: -13px;
  bottom: auto;
  width: 26px;
  height: 26px;
  font-size: 14px;
  color: #969595;
  text-shadow: none;
  filter: alpha(opacity=100);
  opacity: 1;
}

.blogStyleThree .blog-post-wrapper .post-thumbnail #blogEightSlider .carousel-control.left,
.blogStyleThree .blog-post-wrapper .post-thumbnail #blogEightSlider .carousel-control.right {
  background-image: none;
  background-color: #fff;
}

.blogStyleThree .blog-post-wrapper .post-thumbnail #blogEightSlider .carousel-control:focus,
.blogStyleThree .blog-post-wrapper .post-thumbnail #blogEightSlider .carousel-control:hover {
  background-color: #6cbe03;
  color: #fff !important;
  filter: alpha(opacity=100);
  opacity: 1;
}

.blogStyleThree .blog-post-wrapper .post-thumbnail .play-trigger {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #6cbe03;
  font-size: 20px;
  line-height: 60px;
  text-align: center;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.blogStyleThree .blog-post-wrapper .post-thumbnail .play-trigger:hover {
  color: #31aae2;
  background: #fff;
}

.blogStyleThree .blog-post-wrapper .post-thumbnail .play-trigger i {
  margin-left: 5px;
}

.blogStyleThree .blog-post-wrapper .blog-content {
  overflow: hidden;
  padding: 20px 40px 40px 40px;
}

@media only screen and (max-width: 550px) {
  .blogStyleThree .blog-post-wrapper .blog-content {
    padding: 20px 40px 20px 0;
  }
}

.blogStyleThree .blog-post-wrapper .blog-content .entry-header {
  margin-bottom: 20px;
}

.blogStyleThree .blog-post-wrapper .blog-content .entry-title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.blogStyleThree .blog-post-wrapper .blog-content .entry-title a {
  color: #313131;
}

.blogStyleThree .blog-post-wrapper .blog-content .entry-title a:hover {
  color: #6cbe03;
}

.blogStyleThree .blog-post-wrapper .blog-content .entry-meta {
  font-size: 10px;
  text-transform: uppercase;
}

.blogStyleThree .blog-post-wrapper .blog-content .entry-meta li {
  border-right: 1px solid #E7E7E7;
  line-height: 10px;
}

.blogStyleThree .blog-post-wrapper .blog-content .entry-meta li:last-child {
  border-right: 0;
}

.blogStyleThree .blog-post-wrapper .blog-content .entry-meta li a {
  color: #969595;
}

.blogStyleThree .blog-post-wrapper .blog-content .entry-meta li a:hover {
  color: #6cbe03;
}

.blogStyleThree .blog-post-wrapper .blog-content .entry-content p:last-of-type {
  margin-bottom: 0;
}

.blogStyleFour .blog-post-wrapper {
  background-color: #eaeaea;
}

@media only screen and (max-width: 991px) {
  .blogStyleFour .blog-post-wrapper {
    margin-bottom: 30px;
  }
}

.blogStyleFour .blog-post-wrapper .post-thumbnail {
  position: relative;
}

.blogStyleFour .blog-post-wrapper .post-thumbnail img {
  width: 100%;
}

.blogStyleFour .blog-post-wrapper .post-thumbnail .posted-date {
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  background-color: #f9f9f9;
  color: #969595;
  width: 146px;
  margin: 0 auto;
  font-size: 11px;
  font-weight: 400;
  padding: 4px 0;
  border-radius: 30px;
  text-transform: uppercase;
  text-align: center;
}

.blogStyleFour .blog-post-wrapper .post-thumbnail #blogFiveSlider .carousel-control {
  top: auto;
  bottom: 25px;
  width: 30px;
  height: 30px;
  line-height: 28px;
  font-size: 16px;
  color: #fff;
  text-shadow: none;
  filter: alpha(opacity=100);
  opacity: 1;
  text-align: center;
}

.blogStyleFour .blog-post-wrapper .post-thumbnail #blogFiveSlider .carousel-control:focus,
.blogStyleFour .blog-post-wrapper .post-thumbnail #blogFiveSlider .carousel-control:hover {
  background-color: #6cbe03;
  border: 1px solid #6cbe03;
  color: #fff !important;
  filter: alpha(opacity=100);
  opacity: 1;
}

.blogStyleFour .blog-post-wrapper .post-thumbnail #blogFiveSlider .carousel-control.left,
.blogStyleFour .blog-post-wrapper .post-thumbnail #blogFiveSlider .carousel-control.right {
  background-image: none;
  border: 1px solid #fff;
  border-radius: 50%;
}

.blogStyleFour .blog-post-wrapper .post-thumbnail #blogFiveSlider .carousel-control.left {
  left: 20px;
}

.blogStyleFour .blog-post-wrapper .post-thumbnail #blogFiveSlider .carousel-control.right {
  right: 20px;
}

.blogStyleFour .blog-post-wrapper .post-thumbnail .play-trigger {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #6cbe03;
  font-size: 20px;
  line-height: 60px;
  text-align: center;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.blogStyleFour .blog-post-wrapper .post-thumbnail .play-trigger:hover {
  color: #6cbe03;
  background: #fff;
}

.blogStyleFour .blog-post-wrapper .post-thumbnail .play-trigger i {
  margin-left: 5px;
}

.blogStyleFour .blog-post-wrapper .blog-content {
  padding: 20px 22px 20px;
}

.blogStyleFour .blog-post-wrapper .blog-content .entry-header {
  margin: 20px 0 22px;
}

.blogStyleFour .blog-post-wrapper .blog-content .entry-header .entry-title {
  font-size: 16px;
  line-height: 22px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.blogStyleFour .blog-post-wrapper .blog-content .entry-header .entry-title a {
  color: #313131;
}

.blogStyleFour .blog-post-wrapper .blog-content .entry-header .entry-title a:hover {
  color: #6cbe03;
}

.blogStyleFour .blog-post-wrapper .blog-content .entry-header .entry-meta {
  font-size: 10px;
  text-transform: uppercase;
}

.blogStyleFour .blog-post-wrapper .blog-content .entry-header .entry-meta li {
  display: inline-block;
  padding-right: 5px;
  margin-right: 5px;
  position: relative;
}

.blogStyleFour .blog-post-wrapper .blog-content .entry-header .entry-meta li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.blogStyleFour .blog-post-wrapper .blog-content .entry-header .entry-meta li:last-child::before {
  content: "";
}

.blogStyleFour .blog-post-wrapper .blog-content .entry-header .entry-meta li::before {
  content: ".";
  position: absolute;
  right: -3px;
  bottom: 0;
}

.blogStyleFour .blog-post-wrapper .blog-content .entry-header .entry-meta li a {
  color: #969595;
}

.blogStyleFour .blog-post-wrapper .blog-content .entry-header .entry-meta li a:hover {
  color: #6cbe03;
}

.blogStyleFour .blog-post-wrapper .blog-content .entry-content p {
  margin: 0;
}

.blogStyleFour .blog-post-wrapper .blog-content .entry-footer {
  margin-top: 26px;
  text-align: center;
}

.blogStyleFour .blog-post-wrapper .blog-content .entry-footer a {
  display: inline-block;
  padding: 1px 17px;
  color: #969595;
  background: #fff;
  font-size: 10px;
  text-transform: uppercase;
  border-radius: 30px;
}

.blogStyleFour .blog-post-wrapper .blog-content .entry-footer a:hover {
  color: #fff;
  background: #6cbe03;
}

.blogStyleFive {
  background-color: #eee;
}

.blogStyleFive .blog-post-wrapper {
  margin-bottom: 30px;
  background-color: #f9f9f9;
}

.blogStyleFive .blog-post-wrapper.format-quote {
  min-height: 186px;
}

.blogStyleFive .blog-post-wrapper.format-quote blockquote {
  padding: 10px 0px 30px 50px;
  margin: 0;
  font-size: 13px;
  line-height: 24px;
  color: #969595;
  margin: 0;
  border-left: 0;
  position: relative;
}

.blogStyleFive .blog-post-wrapper.format-quote blockquote::before {
  position: absolute;
  left: 0;
  top: 8px;
  content: "\f10d";
  font-family: FontAwesome;
  font-size: 14px;
  line-height: 31px;
  color: #6cbe03;
  width: 33px;
  height: 33px;
  text-align: center;
  border: 1px solid #6cbe03;
  border-radius: 50%;
}

.blogStyleFive .blog-post-wrapper .post-thumbnail {
  float: left;
  position: relative;
}

@media only screen and (max-width: 479px) {
  .blogStyleFive .blog-post-wrapper .post-thumbnail {
    float: none;
  }

  .blogStyleFive .blog-post-wrapper .post-thumbnail img {
    width: 100%;
  }
}

.blogStyleFive .blog-post-wrapper .post-thumbnail #blogNineSlider1 .carousel-control {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  width: 26px;
  height: 26px;
  font-size: 14px;
  color: #969595;
  text-shadow: none;
  filter: alpha(opacity=100);
  opacity: 1;
}

.blogStyleFive .blog-post-wrapper .post-thumbnail #blogNineSlider1 .carousel-control.left,
.blogStyleFive .blog-post-wrapper .post-thumbnail #blogNineSlider1 .carousel-control.right {
  background-image: none;
  background-color: #fff;
}

.blogStyleFive .blog-post-wrapper .post-thumbnail #blogNineSlider1 .carousel-control.left {
  right: 26px;
}

.blogStyleFive .blog-post-wrapper .post-thumbnail #blogNineSlider1 .carousel-control:focus,
.blogStyleFive .blog-post-wrapper .post-thumbnail #blogNineSlider1 .carousel-control:hover {
  color: #fff;
  background-color: #6cbe03;
}

.blogStyleFive .blog-post-wrapper .post-thumbnail #blogNineSlider1 .carousel-indicators {
  bottom: 0;
}

.blogStyleFive .blog-post-wrapper .post-thumbnail #blogNineSlider1 .carousel-indicators li {
  width: 12px;
  height: 12px;
  margin: 0;
}

.blogStyleFive .blog-post-wrapper .post-thumbnail #blogNineSlider1 .carousel-indicators li.active {
  background-color: #6cbe03;
  border-color: transparent;
}

.blogStyleFive .blog-post-wrapper .post-thumbnail .play-trigger {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin-left: -19px;
  margin-top: -19px;
  color: #fff;
  font-size: 14px;
  line-height: 34px;
  text-align: center;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.blogStyleFive .blog-post-wrapper .post-thumbnail .play-trigger:hover {
  color: #6cbe03;
  background: #fff;
}

.blogStyleFive .blog-post-wrapper .post-thumbnail .play-trigger i {
  margin-left: 5px;
}

.blogStyleFive .blog-post-wrapper .blog-content {
  overflow: hidden;
  padding: 20px;
}

.blogStyleFive .blog-post-wrapper .blog-content .entry-header {
  margin-bottom: 10px;
}

.blogStyleFive .blog-post-wrapper .blog-content .entry-header .entry-title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.blogStyleFive .blog-post-wrapper .blog-content .entry-header .entry-title a {
  color: #313131;
}

.blogStyleFive .blog-post-wrapper .blog-content .entry-header .entry-title a:hover {
  color: #6cbe03;
}

.blogStyleFive .blog-post-wrapper .blog-content .entry-header .entry-meta {
  font-size: 10px;
  text-transform: uppercase;
}

.blogStyleFive .blog-post-wrapper .blog-content .entry-header .entry-meta li {
  position: relative;
}

.blogStyleFive .blog-post-wrapper .blog-content .entry-header .entry-meta li::before {
  content: ".";
  position: absolute;
  right: -3px;
  bottom: 0;
}

.blogStyleFive .blog-post-wrapper .blog-content .entry-header .entry-meta li:last-child::before {
  content: "";
}

.blogStyleFive .blog-post-wrapper .blog-content .entry-header .entry-meta li a {
  color: #969595;
}

.blogStyleFive .blog-post-wrapper .blog-content .entry-header .entry-meta li a:hover {
  color: #6cbe03;
}

.blogStyleFive .blog-post-wrapper .blog-content .entry-content p {
  margin-bottom: 0;
}

.blogStyleFive .blog-post-wrapper .blog-content .entry-footer .entry-meta {
  padding-left: 50px;
}

/*===============================*/
/*page-4*/
/*===============================*/
.blogFour .blog-post-wrapper {
  background-color: #fff;
}

@media (max-width: 991px) {
  .blogFour .blog-post-wrapper {
    margin-bottom: 30px;
  }
}

.blogFour .blog-post-wrapper .post-thumbnail {
  position: relative;
}

.blogFour .blog-post-wrapper .post-thumbnail img {
  width: 100%;
}

.blogFour .blog-post-wrapper .post-thumbnail .author-thumb {
  position: absolute;
  left: 25px;
  bottom: -35px;
}

.blogFour .blog-post-wrapper .post-thumbnail .author-thumb img {
  width: 75px;
  height: 75px;
  background: #fff;
  padding: 5px;
  border-radius: 50%;
}

.blogFour .blog-post-wrapper .blog-content {
  padding: 52px 30px 30px;
}

/*entry-header*/
.blogFour .blog-post-wrapper .entry-header {
  margin-bottom: 20px;
}

.blogFour .blog-post-wrapper .entry-title {
  font-size: 18px;
  line-height: 22px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.blogFour .blog-post-wrapper .entry-title a {
  color: #313131;
}

.blogFour .blog-post-wrapper .entry-title a:hover {
  color: #31aae2;
}

/*entry-meta*/
.blogFour .blog-post-wrapper .entry-header .entry-meta {
  font-size: 11px;
  text-transform: capitalize;
}

.blogFour .blog-post-wrapper .entry-header .entry-meta li {
  display: inline-block;
  padding-right: 5px;
  margin-right: 5px;
  position: relative;
}

.blogFour .blog-post-wrapper .entry-header .entry-meta li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.blogFour .blog-post-wrapper .entry-header .entry-meta li::before {
  content: ".";
  position: absolute;
  right: -3px;
  bottom: 0;
}

.blogFour .blog-post-wrapper .entry-header .entry-meta li:last-child::before {
  content: "";
}

.blogFour .blog-post-wrapper .entry-header .entry-meta li a {
  color: #969595;
}

.blogFour .blog-post-wrapper .entry-header .entry-meta li a:hover {
  color: #31aae2;
}

/*entry-content*/
.blogFour .blog-post-wrapper .entry-content p {
  margin: 0;
}

/*entry-footer*/
.blogFour .blog-post-wrapper .entry-footer {
  background-color: #f5f5f5;
  padding: 14px;
}

.blogFour .blog-post-wrapper .entry-footer .entry-meta li {
  display: inline-block;
  margin-right: 7px;
}

.blogFour .blog-post-wrapper .entry-footer .entry-meta li:last-child {
  margin-right: 0;
}

.blogFour .blog-post-wrapper .entry-footer a {
  display: block;
  padding: 1px 14px;
  font-size: 10px;
  color: #a3a2a2;
  background: #fff;
  text-transform: uppercase;
  border-radius: 30px;
}

.blogFour .blog-post-wrapper .entry-footer a i {
  color: #dadada;
}

.blogFour .blog-post-wrapper .entry-footer a:hover i {
  color: #fff;
}

.blogFour .blog-post-wrapper .entry-footer a:hover {
  color: #fff;
  background: #31aae2;
}

/*blog gallery post*/
#blogFourSlider .carousel-control {
  top: auto;
  bottom: 20px;
  width: 56px;
  height: 26px;
  font-size: 13px;
  color: #fff;
  text-shadow: none;
  filter: alpha(opacity=100);
  opacity: 1;
}

#blogFourSlider .carousel-control.left,
#blogFourSlider .carousel-control.right {
  background-image: none;
  border: 1px solid #fff;
  border-radius: 30px;
}

#blogFourSlider .carousel-control:focus,
#blogFourSlider .carousel-control:hover {
  background-color: #31aae2;
  border: 1px solid #31aae2;
  color: #fff !important;
  filter: alpha(opacity=100);
  opacity: 1;
}

#blogFourSlider .carousel-control.left {
  right: 90px;
  left: auto;
}

#blogFourSlider .carousel-control.right {
  right: 20px;
}

/*blog video post*/
.blogFour .blog-post-wrapper .play-trigger {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: -30px;
  margin-top: -30px;
  border: 0;
  color: #fff;
  background: #31aae2;
  font-size: 20px;
  line-height: 60px;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.blogFour .blog-post-wrapper .play-trigger:hover {
  color: #31aae2;
  background: #fff;
}

.blogFour .blog-post-wrapper .play-trigger i {
  margin-left: 5px;
}

.blogSeven {
  background-color: #eee;
}

@media (max-width: 991px) {
  .blogSeven .blog-post-wrapper {
    margin-bottom: 30px;
  }
}

.blogSeven .blog-post-wrapper .post-thumbnail {
  position: relative;
}

.blogSeven .blog-post-wrapper .post-thumbnail img {
  width: 100%;
}

/*entry-meta*/
.blogSeven .blog-post-wrapper .entry-header .entry-meta {
  font-size: 11px;
  text-transform: uppercase;
  background-color: #31aae2;
  padding: 7px 15px;
}

.blogSeven .blog-post-wrapper .entry-header .entry-meta i {
  color: #1491cb;
  margin-right: 5px;
}

.blogSeven .blog-post-wrapper .entry-header .entry-meta li {
  display: inline-block;
  padding-right: 5px;
  margin-right: 5px;
  position: relative;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blogSeven .blog-post-wrapper .entry-header .entry-meta i {
    margin-right: 2px;
  }

  .blogSeven .blog-post-wrapper .entry-header .entry-meta li {
    padding-right: 2px;
    margin-right: 2px;
  }
}

.blogSeven .blog-post-wrapper .entry-header .entry-meta li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.blogSeven .blog-post-wrapper .entry-header .entry-meta li a {
  color: #fff;
}

.blogSeven .blog-post-wrapper .entry-header .entry-meta li a:hover {
  color: #1491cb;
}

.blogSeven .blog-post-wrapper .blog-content {
  border: 1px solid #ededed;
  padding: 25px;
}

.blogSeven .blog-post-wrapper .entry-title {
  font-size: 18px;
  line-height: 22px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.blogSeven .blog-post-wrapper .entry-title a {
  color: #313131;
}

.blogSeven .blog-post-wrapper .entry-title a:hover {
  color: #31aae2;
}

.blogSeven .blog-post-wrapper .entry-content p {
  margin: 0;
}

/* post format gallery */
#blogSevenSlider .carousel-control {
  top: 50%;
  width: 28px;
  height: 28px;
  font-size: 16px;
  margin-top: -14px;
  color: #fff;
  text-shadow: none;
  filter: alpha(opacity=100);
  opacity: 1;
}

#blogSevenSlider .carousel-control.left,
#blogSevenSlider .carousel-control.right {
  background-image: none;
  border: 1px solid #fff;
  border-radius: 30px;
}

#blogSevenSlider .carousel-control:focus,
#blogSevenSlider .carousel-control:hover {
  background-color: #31aae2;
  border: 1px solid #31aae2;
  color: #fff !important;
  filter: alpha(opacity=100);
  opacity: 1;
}

#blogSevenSlider .carousel-control.left {
  left: 20px;
}

#blogSevenSlider .carousel-control.right {
  right: 20px;
}

/*post format standard*/
.blog-post-wrapper.format-standard .post-thumbnail {
  position: relative;
}

.blog-post-wrapper.format-standard .post-thumbnail::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease 0s;
  -moz-transition: opacity 0.4s ease 0s;
  -o-transition: opacity 0.4s ease 0s;
  transition: opacity 0.4s ease 0s;
}

.blog-post-wrapper.format-standard .post-thumbnail:hover::before {
  opacity: 1;
  visibility: visible;
}

.format-standard .pop-up-icon a.zoom,
.format-standard .pop-up-icon a.link {
  position: absolute;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  margin-top: -19px;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.format-standard .pop-up-icon a.zoom {
  left: 0;
}

.format-standard .pop-up-icon a.link {
  right: 0;
}

.format-standard .post-thumbnail:hover .pop-up-icon a.zoom,
.format-standard .post-thumbnail:hover .pop-up-icon a.link {
  opacity: 1;
  visibility: visible;
}

.format-standard .post-thumbnail:hover .pop-up-icon a.zoom {
  left: 50%;
  margin-left: -48px;
}

.format-standard .post-thumbnail:hover .pop-up-icon a.link {
  right: 50%;
  margin-right: -48px;
}

.format-standard .pop-up-icon a {
  display: block;
  font-size: 14px;
  width: 38px;
  height: 38px;
  line-height: 34px;
  border: 2px solid #fff;
  border-radius: 50%;
  text-align: center;
  color: #fff;
}

.format-standard .pop-up-icon a:hover {
  background-color: #ffffff;
  color: #31aae2;
  border: 2px solid transparent;
}

/*post format video*/
.blogSeven .blog-post-wrapper .play-trigger {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin-left: -19px;
  margin-top: -19px;
  color: #fff;
  font-size: 14px;
  line-height: 34px;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.blogSeven .blog-post-wrapper .play-trigger:hover {
  color: #31aae2;
  background: #fff;
}

.blogSeven .blog-post-wrapper .play-trigger i {
  margin-left: 5px;
}

/* =========================================================
        Faq STYLE 
============================================================ */
/* =========================================================
        Footer STYLE 
============================================================ */
.footer-section {
  position: relative;
  background: #30343a;
  color: #FFFFFF;
}

.footer-section .footer-container {
  padding: 100px 0 90px;
}

@media only screen and (max-width: 991px) {
  .footer-section .footer-container {
    padding: 90px 0 70px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-section .footer-container {
    padding: 70px 0 30px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-section .footer-container .footer-wrapper.first-wrapper {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-section .footer-container .footer-wrapper.first-wrapper {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-section .footer-container .footer-wrapper {
    margin-bottom: 30px;
  }
}

.footer-section .footer-container .footer-wrapper h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: -.8px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .footer-section .footer-container .footer-wrapper h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.footer-section .footer-container .footer-wrapper p {
  font-size: 16px;
  color: #808790;
  word-break: break-all;
}

.footer-section .footer-container .footer-wrapper .link {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: -.6px;
}

.footer-section .footer-container .footer-wrapper .link:hover {
  color: #FFFFFF;
}

.footer-section .footer-container .footer-wrapper .footerForm {
  position: relative;
  margin-top: 33px;
}

.footer-section .footer-container .footer-wrapper .footerForm .footerSearchBar {
  width: 100%;
  background-color: #1d1f23;
  border: 0;
  border-radius: 0;
  color: #8d8c8c;
  padding: 7px 20px;
  border-radius: 50px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-section .footer-container .footer-wrapper .footerForm .footerSearchBar {
    width: 70%;
  }
}

.footer-section .footer-container .footer-wrapper .footerForm .subscribeBtn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 16px;
  background: #6cbe03;
  border-radius: 50px;
  padding: 7px 32px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .footer-section .footer-container .footer-wrapper .footerForm .subscribeBtn {
    padding: 7px 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-section .footer-container .footer-wrapper .footerForm .subscribeBtn {
    right: 30%;
  }
}

.footer-section .footer-container .footer-wrapper .social-icon {
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .footer-section .footer-container .footer-wrapper .social-icon {
    margin-top: 25px;
  }
}

.footer-section .footer-container .footer-wrapper .social-icon li {
  display: inline-block;
  margin: 0 5px;
}

.footer-section .footer-container .footer-wrapper .social-icon li i {
  width: 40px;
  height: 40px;
  line-height: 42px;
  font-size: 20px;
  color: #FFFFFF;
  background: #2b2d30;
  border-radius: 50%;
  box-shadow: 0 2px 2px #000;
  text-align: center;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.footer-section .footer-container .footer-wrapper .social-icon li i:hover {
  color: #FFFFFF;
  background-color: #6cbe03;
}

.footer-section .footer-container .footer-wrapper .wrapper-option {
  display: inline-block;
  margin-right: 60px;
}

.footer-section .footer-container .footer-wrapper .wrapper-option:last-child {
  margin-right: 0;
}

.footer-section .footer-container .footer-wrapper .wrapper-option li a {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  color: #808790;
  letter-spacing: .5px;
}

.footer-section .footer-container .footer-wrapper .wrapper-option li a:hover {
  color: #6cbe03;
}

@media only screen and (max-width: 767px) {
  .footer-section .footer-container .footer-wrapper .wrapper-option li a {
    font-size: 16px;
    line-height: 25px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-section .footer-container .footer-wrapper .wrapper-option li a {
    line-height: 35px;
  }
}

.footer-section .second-footer {
  background-color: #23282e;
}

.footer-section .second-footer .caption {
  margin-top: 65px;
}

@media only screen and (max-width: 599px) {
  .footer-section .second-footer .caption {
    margin-top: 40px;
  }

  .footer-section .second-footer .caption img {
    width: 160px;
  }
}

.footer-section .second-footer .contact-wrapper {
  margin: 60px 0 70px;
}

@media only screen and (max-width: 991px) {
  .footer-section .second-footer .contact-wrapper {
    margin: 40px 0 50px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-section .second-footer .contact-wrapper {
    margin: 40px 0 20px;
  }

  .footer-section .second-footer .contact-wrapper.last-wrapper {
    margin: 0 0 30px;
  }
}

@media only screen and (max-width: 699px) {
  .footer-section .second-footer .contact-wrapper {
    margin: 30px 0 20px;
  }
}

.footer-section .second-footer .contact-wrapper ul li {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 22px;
}

@media only screen and (max-width: 991px) {
  .footer-section .second-footer .contact-wrapper ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-section .second-footer .contact-wrapper ul li {
    font-size: 14px;
    margin-bottom: 0;
  }
}

.footer-section .second-footer .contact-wrapper ul li:last-child {
  margin-bottom: 0;
}

.footer-section .second-footer .contact-wrapper ul li i {
  font-size: 22px;
  color: #6cbe03;
  margin-right: 5px;
}

@media only screen and (max-width: 991px) {
  .footer-section .second-footer .contact-wrapper ul li i {
    font-size: 18px;
  }
}

.footer-section .second-footer hr {
  border-color: #1c1f23;
}

.footer-section .second-footer .copy-right {
  padding: 18px 0;
}

@media only screen and (max-width: 767px) {
  .footer-section .second-footer .copy-right {
    padding: 18px 0;
  }
}

.footer-section .second-footer .copy-right p {
  font-size: 16px;
  line-height: 24px;
  color: #808790;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .footer-section .second-footer .copy-right p {
    font-size: 14px;
  }
}

.footer-section .second-footer .copy-right p a:hover {
  color: #808790;
}

/* =========================================================
        HomePageOne-STYLE 
============================================================ */
.homePageOne .header-section .middle-bar .navbar-header {
  padding: 25px 0;
}

.homePageOne .header-section .middle-bar .navbar-header .navbar-brand {
  padding: 8px 0;
}

.homePageOne .header-section .middle-bar .schedule {
  padding: 25px 0 20px;
}

.homePageOne .header-section .middle-bar .schedule ul li {
  display: inline-block;
  margin-right: 30px;
}

.homePageOne .header-section .middle-bar .schedule ul li:last-child {
  margin-right: 0;
}

.homePageOne .header-section .middle-bar .schedule ul li img {
  float: left;
}

.homePageOne .header-section .middle-bar .schedule ul li .content {
  margin-left: 60px;
}

.homePageOne .header-section .middle-bar .schedule ul li .content .date {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #3f4c5d;
}

.homePageOne .header-section .middle-bar .schedule ul li .content h5 {
  font-size: 24px;
  font-weight: 600;
  color: #3f4c5d;
  margin-bottom: 0;
}

.homePageOne .header-section .navbar.sticky .navbar-header {
  display: block !important;
  margin-right: 20px;
}

.homePageOne .header-section .navbar.sticky .navbar-collapse {
  background-color: #FFFFFF;
  border-radius: 0;
  padding: 0;
}

.homePageOne .header-section .navbar.sticky .navbar-collapse .navbar-nav li a,
.homePageOne .header-section .navbar.sticky .navbar-collapse .navbar-nav li .search-view,
.homePageOne .header-section .navbar.sticky .navbar-collapse .navbar-nav li .cart-icon i {
  color: #3f4c5d;
}

.homePageOne .header-section .navbar.sticky .navbar-collapse .navbar-nav li a:hover,
.homePageOne .header-section .navbar.sticky .navbar-collapse .navbar-nav li .search-view:hover,
.homePageOne .header-section .navbar.sticky .navbar-collapse .navbar-nav li .cart-icon i:hover {
  color: #6cbe03;
}

.homePageOne .header-section .navbar.sticky .navbar-collapse .navbar-nav li.active a {
  color: #6cbe03;
}

.homePageOne .header-section .navbar.sticky .navbar-collapse .nav-one {
  margin-left: 200px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .homePageOne .header-section .navbar.sticky .navbar-collapse .nav-one {
    margin-left: 100px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .homePageOne .header-section .navbar.sticky .navbar-collapse .nav-one {
    margin-left: 60px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .homePageOne .header-section .navbar.sticky .navbar-collapse .nav-two {
    display: none;
  }
}

.homePageOne .header-section .navbar .navbar-collapse {
  background-color: #6cbe03;
  border-radius: 8px 8px 0 0;
  padding: 0 45px;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.homePageOne .header-section .navbar .navbar-collapse .navbar-header {
  display: none;
}

.homePageOne .header-section .navbar .navbar-collapse .navbar-nav li a,
.homePageOne .header-section .navbar .navbar-collapse .navbar-nav li .search-view,
.homePageOne .header-section .navbar .navbar-collapse .navbar-nav li .cart-icon i {
  color: #FFFFFF;
  line-height: 70px;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.homePageOne .header-section .navbar .navbar-collapse .navbar-nav li a:hover,
.homePageOne .header-section .navbar .navbar-collapse .navbar-nav li .search-view:hover,
.homePageOne .header-section .navbar .navbar-collapse .navbar-nav li .cart-icon i:hover {
  color: #313131;
}

.homePageOne .header-section .navbar .navbar-collapse .navbar-nav li .text {
  top: 10px;
}

.homePageOne .header-section .navbar .navbar-collapse .navbar-nav li .cart-item {
  top: 70px;
}

.homePageOne .header-section .navbar .navbar-collapse .navbar-nav li.active a {
  color: #313131;
}

.homePageOne .header-section .navbar .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu {
  top: 70px;
}

.homePageOne .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu {
  top: 70px;
}

.homePageOne .header-section .navbar .navbar-collapse .navbar-nav li .cart::before {
  top: 12px;
}

.homePageOne .slider-section.sticky {
  margin: 0;
}

.homePageOne .double-section {
  position: relative;
  padding: 50px 0 15px;
}

.homePageOne .double-section::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -80px;
  width: 100%;
  height: 100%;
  background: url(../images/border.png) no-repeat center;
}

@media only screen and (max-width: 991px) {
  .homePageOne .double-section::before {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .homePageOne .double-section {
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .homePageOne .double-section {
    padding: 35px 0 0;
  }
}

@media only screen and (max-width: 479px) {
  .homePageOne .double-section {
    padding: 20px 0 0;
  }
}

.homePageOne .double-section .partner-section .partner-wrapper ul {
  display: flex;
}

@media only screen and (max-width: 550px) {
  .homePageOne .double-section .partner-section .partner-wrapper ul {
    display: block;
  }
}

.homePageOne .double-section .partner-section .partner-wrapper ul li {
  flex: 1;
}

@media only screen and (max-width: 550px) {
  .homePageOne .double-section .partner-section .partner-wrapper ul li {
    display: inline-block;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .homePageOne .double-section .partner-section .partner-wrapper ul li img {
    width: 140px;
  }
}

/* =========================================================
        HomePageThree-STYLE 
============================================================ */
.homePageThree .header-section {
  position: absolute;
  left: 0;
  right: 0;
}

.homePageThree .header-section .top-bar {
  background-color: transparent;
  min-height: 60px;
  line-height: 60px;
}

.homePageThree .header-section .navbar {
  border-radius: 20px;
}

.homePageThree .header-section .navbar.sticky {
  border-radius: 0;
}

.homePageThree .header-section .navbar.sticky .navbar-collapse .navbar-nav li .cart::before {
  top: 20px;
}

.homePageThree .header-section .navbar .navbar-header .navbar-brand img {
  padding: 27px 0;
}

.homePageThree .header-section .navbar .navbar-collapse .navbar-nav li:last-child {
  margin-right: 65px;
}

.homePageThree .header-section .navbar .navbar-collapse .navbar-nav li a,
.homePageThree .header-section .navbar .navbar-collapse .navbar-nav li .cart-icon i,
.homePageThree .header-section .navbar .navbar-collapse .navbar-nav li .search-view {
  line-height: 85px;
}

.homePageThree .header-section .navbar .navbar-collapse .navbar-nav li .cart::before {
  top: 20px;
}

.homePageThree .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu,
.homePageThree .header-section .navbar .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu {
  top: 85px;
}

.homePageThree .header-section .navbar .navbar-collapse .navbar-nav li .cart-item {
  top: 85px;
}

.homePageThree .header-section .navbar .navbar-collapse .navbar-nav li .text {
  top: 17px;
}

.homePageThree .header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul {
  width: 310px;
}

.homePageThree .header-section .small-view {
  position: relative;
  top: -50px;
  z-index: 5;
}

.homePageThree .slider-section.sticky {
  margin: 0;
}

.homePageThree .slider-section .main-slider #main-slider-carousel .carousel-inner .content {
  top: 37%;
}

.homePageThree .double-section {
  padding: 75px 0;
}

@media only screen and (max-width: 767px) {
  .homePageThree .double-section {
    padding: 55px 0 0;
  }
}

@media only screen and (max-width: 479px) {
  .homePageThree .double-section {
    padding: 35px 0 0;
  }
}

.homePageThree .double-section .partner-section .partner-wrapper ul {
  display: flex;
}

@media only screen and (max-width: 550px) {
  .homePageThree .double-section .partner-section .partner-wrapper ul {
    display: block;
  }
}

.homePageThree .double-section .partner-section .partner-wrapper ul li {
  flex: 1;
}

@media only screen and (max-width: 550px) {
  .homePageThree .double-section .partner-section .partner-wrapper ul li {
    display: inline-block;
  }
}

/* =========================================================
        AboutPage-STYLE 
============================================================ */
.aboutPage .header-title {
  background: url(../images/sub/about-bg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

.aboutPage .service-section.service-section-three .service-wrapper .content-wrapper::before,
.aboutPage .service-section.service-section-three .service-wrapper .content-wrapper::after {
  display: none;
}

.aboutPage .service-section.service-section-three .service-wrapper .content-wrapper .link {
  color: #3f4c5d;
  padding-left: 0;
}

.aboutPage .service-section.service-section-three .service-wrapper .content-wrapper .link:hover {
  color: #6cbe03;
}

.aboutPage .service-section .service-wrapper {
  margin-bottom: 0;
}

.aboutPage .service-section .service-wrapper.last-wrapper {
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .aboutPage .service-section .service-wrapper {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .aboutPage .service-section .service-wrapper {
    margin-bottom: 40px;
  }
}

/* =========================================================
        ServicePage-STYLE 
============================================================ */
.servicePage .header-title {
  background: url(../images/sub/about-bg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

@media (min-width: 768px) and (max-width: 991px) {
  .servicePage .service-section {
    padding: 90px 0 50px;
  }
}

@media only screen and (max-width: 479px) {
  .servicePage .service-section {
    padding: 60px 0 30px;
  }
}

.servicePage .service-section .first-row {
  margin-bottom: 35px;
}

@media only screen and (max-width: 991px) {
  .servicePage .service-section .first-row {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 991px) {
  .servicePage .service-section .service-wrapper {
    margin-bottom: 90px;
  }
}

@media only screen and (max-width: 479px) {
  .servicePage .service-section .service-wrapper {
    margin-bottom: 70px;
  }
}

/* =========================================================
        Single-ServicePage-STYLE 
============================================================ */
.single-servicePage .header-title {
  background: url(../images/sub/team-bg.jpg) no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}

.single-servicePage .single-service .left-bar {
  margin-right: 30px;
}

@media only screen and (max-width: 991px) {
  .single-servicePage .single-service .left-bar {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .single-servicePage .single-service .left-bar {
    margin-right: 0;
  }
}

.single-servicePage .single-service .left-bar .wrapper-menu {
  padding: 50px 50px 20px;
  border: 1px dashed #6f6f6f;
  border-radius: 15px;
}

@media only screen and (max-width: 991px) {
  .single-servicePage .single-service .left-bar .wrapper-menu {
    padding: 40px 30px 10px;
  }
}

.single-servicePage .single-service .left-bar .wrapper-menu ul li {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #d7dce4;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .single-servicePage .single-service .left-bar .wrapper-menu ul li {
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
}

.single-servicePage .single-service .left-bar .wrapper-menu ul li:last-child {
  border: 0;
}

.single-servicePage .single-service .left-bar .wrapper-menu ul li a {
  color: #3f4c5d;
}

.single-servicePage .single-service .left-bar .wrapper-menu ul li a.active {
  color: #6cbe03;
}

.single-servicePage .single-service .left-bar .wrapper-menu ul li a:hover {
  color: #6cbe03;
}

.single-servicePage .single-service .left-bar .voucher {
  background: url(../images/voucher-bg.jpg) no-repeat;
  background-size: cover;
  border-radius: 15px;
  padding: 55px 35px 30px;
  margin-top: 45px;
}

@media only screen and (max-width: 767px) {
  .single-servicePage .single-service .left-bar .voucher {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 479px) {
  .single-servicePage .single-service .left-bar .voucher img {
    width: 50px;
  }
}

.single-servicePage .single-service .left-bar .voucher h5 {
  font-size: 30px;
  font-weight: 500;
  color: #FFFFFF;
  margin: 15px 0 125px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .single-servicePage .single-service .left-bar .voucher h5 {
    margin: 15px 0 50px;
  }
}

@media only screen and (max-width: 991px) {
  .single-servicePage .single-service .left-bar .voucher h5 {
    font-size: 25px;
    margin: 15px 0 50px;
  }
}

@media only screen and (max-width: 479px) {
  .single-servicePage .single-service .left-bar .voucher h5 {
    font-size: 22px;
    margin: 15px 0 20px;
  }
}

.single-servicePage .single-service .left-bar .voucher p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

@media only screen and (max-width: 991px) {
  .single-servicePage .single-service .left-bar .voucher p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 479px) {
  .single-servicePage .single-service .left-bar .voucher p {
    font-size: 14px;
  }
}

.single-servicePage .single-service .left-bar .voucher p a {
  color: #FFFFFF;
}

.single-servicePage .single-service .right-bar p {
  font-size: 16px;
  color: #7f8996;
  margin-bottom: 30px;
}

@media only screen and (max-width: 479px) {
  .single-servicePage .single-service .right-bar p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.single-servicePage .single-service .right-bar .caption {
  margin-bottom: 30px;
}

.single-servicePage .single-service .right-bar .caption img {
  width: 100%;
  border-radius: 8px;
}

.single-servicePage .single-service .right-bar .middle-content p {
  margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  .single-servicePage .single-service .right-bar .middle-content ul {
    margin-bottom: 15px;
  }
}

.single-servicePage .single-service .right-bar .middle-content ul li {
  font-size: 16px;
  color: #7f8996;
  margin-bottom: 8px;
}

@media only screen and (max-width: 479px) {
  .single-servicePage .single-service .right-bar .middle-content ul li {
    font-size: 14px;
  }
}

.single-servicePage .single-service .right-bar .middle-content ul li i {
  font-size: 15px;
  color: #6cbe03;
}

.single-servicePage .single-service .right-bar .priceing-section .priceing-wrapper .nav-tabs {
  margin: 0 0 50px;
  border-bottom: 2px solid #6cbe03;
}

@media only screen and (max-width: 767px) {
  .single-servicePage .single-service .right-bar .priceing-section .priceing-wrapper .nav-tabs {
    margin: 0 0 30px;
  }
}

@media only screen and (max-width: 479px) {
  .single-servicePage .single-service .right-bar .priceing-section .priceing-wrapper .nav-tabs {
    margin: 0 0 15px;
  }
}

.single-servicePage .single-service .right-bar .priceing-section .priceing-wrapper .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
  border: 0;
  padding-bottom: 0;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  background-color: #3f4c5d;
  float: left !important;
}

.single-servicePage .single-service .right-bar .priceing-section .priceing-wrapper .nav-tabs li:first-child {
  border-radius: 8px 0 0 0;
}

.single-servicePage .single-service .right-bar .priceing-section .priceing-wrapper .nav-tabs li:last-child {
  border-radius: 0 8px 0 0;
}

.single-servicePage .single-service .right-bar .priceing-section .priceing-wrapper .nav-tabs li.active {
  background-color: #6cbe03;
}

@media only screen and (max-width: 991px) {
  .single-servicePage .single-service .right-bar .priceing-section .priceing-wrapper .nav-tabs li {
    margin: 0;
  }
}

@media only screen and (max-width: 345px) {
  .single-servicePage .single-service .right-bar .priceing-section .priceing-wrapper .nav-tabs li {
    font-size: 15px;
  }
}

.single-servicePage .single-service .right-bar .priceing-section .priceing-wrapper .nav-tabs li a {
  color: #FFFFFF;
  padding: 7px 25px;
}

@media only screen and (max-width: 400px) {
  .single-servicePage .single-service .right-bar .priceing-section .priceing-wrapper .nav-tabs li a {
    padding: 5px 15px;
  }
}

@media only screen and (max-width: 345px) {
  .single-servicePage .single-service .right-bar .priceing-section .priceing-wrapper .nav-tabs li a {
    padding: 5px 10px;
  }
}

@media only screen and (max-width: 991px) {
  .single-servicePage .single-service .right-bar .priceing-section .priceing-wrapper .tab-content .priceing-table {
    margin-bottom: 15px;
  }
}

/* =========================================================
        TeamPage-STYLE 
============================================================ */
.teamPage .header-title {
  background: url(../images/sub/team-bg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

.teamPage .team-section {
  background-color: #ecf4de;
}

.teamPage .worker-section {
  padding-bottom: 50px;
}

.teamPage .worker-section .worker-wrapper .nav-tabs {
  margin: 0 0 50px;
}

.teamPage .worker-section .worker-wrapper .tab-content .extra {
  margin: 0;
}

.teamPage .worker-section .worker-wrapper .tab-content .worker-detail {
  margin: 5px 0 65px;
}

@media only screen and (max-width: 991px) {
  .teamPage .worker-section .worker-wrapper .tab-content .worker-detail {
    margin: 5px 0 40px;
  }
}

/* =========================================================
        ContactPage-STYLE 
============================================================ */
.contactPage .header-title {
  background: url(../images/sub/team-bg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

.contactPage .contact-section .contact-wrapper ul li {
  margin-bottom: 35px;
}

@media only screen and (max-width: 479px) {
  .contactPage .contact-section .contact-wrapper ul li {
    margin-bottom: 30px;
  }
}

.contactPage .contact-section .contact-wrapper ul li i {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  text-align: center;
  float: left;
  font-size: 20px;
  color: #FFFFFF;
  background-color: #6cbe03;
  margin-top: 4px;
}

.contactPage .contact-section .contact-wrapper ul li .contact-wrapper {
  margin-left: 50px;
}

.contactPage .contact-section .contact-wrapper ul li .contact-wrapper h5 {
  font-size: 18px;
  font-weight: 600;
  color: #969fab;
  margin-bottom: 5px;
}

@media only screen and (max-width: 479px) {
  .contactPage .contact-section .contact-wrapper ul li .contact-wrapper h5 {
    font-size: 16px;
    margin-bottom: 0;
  }
}

.contactPage .contact-section .contact-wrapper ul li .contact-wrapper .sub {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #3f4c5d;
}

@media only screen and (max-width: 479px) {
  .contactPage .contact-section .contact-wrapper ul li .contact-wrapper .sub {
    font-size: 16px;
  }
}

.contactPage .contact-section #googleMap {
  width: 100%;
  height: 365px;
}

.contactPage .contact-section .form-section {
  margin-top: 100px;
}

@media only screen and (max-width: 991px) {
  .contactPage .contact-section .form-section {
    margin-top: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .contactPage .contact-section .form-section {
    margin-top: 50px;
  }
}

.contactPage .contact-section .form-section .form-group {
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .contactPage .contact-section .form-section .form-group {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .contactPage .contact-section .form-section .form-group {
    text-align: left;
  }
}

.contactPage .contact-section .form-section .form-group .text {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #3f4c5d;
}

@media only screen and (max-width: 991px) {
  .contactPage .contact-section .form-section .form-group .text {
    font-size: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .contactPage .contact-section .form-section .form-group .text {
    font-size: 16px;
  }
}

.contactPage .contact-section .form-section .form-group .form-control {
  border: 2px solid #d1d7e0;
  border-radius: 8px;
  padding: 21px 15px;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .contactPage .contact-section .form-section .form-group .form-control {
    padding: 16px 15px;
  }
}

.contactPage .contact-section .form-section .form-group .btn {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  border: 2px solid #6cbe03;
  padding: 12px 65px;
  margin-top: 30px;
  margin-bottom: -20px;
}

@media only screen and (max-width: 991px) {
  .contactPage .contact-section .form-section .form-group .btn {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .contactPage .contact-section .form-section .form-group .btn {
    margin-top: 10px;
    font-size: 18px;
    padding: 6px 45px;
  }
}

.contactPage .contact-section-two {
  position: relative;
  background-color: #FFFFFF;
  margin: 100px 0 0;
}

@media only screen and (max-width: 767px) {
  .contactPage .contact-section-two {
    margin: 80px 0 0;
  }
}

@media only screen and (max-width: 479px) {
  .contactPage .contact-section-two {
    margin: 60px 0 0;
  }
}

.contactPage .contact-section-two .map-section {
  padding-top: 90px;
  text-align: center;
}

.contactPage .contact-section-two .map-section #googleMap {
  width: 100%;
  height: 420px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .contactPage .contact-section-two .map-section #googleMap {
    height: 875px;
  }
}

@media (min-width: 380px) and (max-width: 767px) {
  .contactPage .contact-section-two .map-section #googleMap {
    height: 850px;
  }
}

@media only screen and (max-width: 379px) {
  .contactPage .contact-section-two .map-section #googleMap {
    height: 1120px;
  }
}

.contactPage .contact-section-two .map-section .form-view {
  font-size: 19px;
  line-height: 34px;
  color: #54be73;
  cursor: pointer;
  display: block;
  margin-top: 20px;
  display: inline-block;
}

.contactPage .contact-section-two .map-section .form-view:hover i {
  padding-right: 20px;
}

.contactPage .contact-section-two .map-section .form-view i {
  padding-right: 5px;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.contactPage .contact-section-two .contact-section-one {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.contactPage .contact-section-two .contact-section-one .section-one-wrapper {
  box-shadow: 0 0 30px 2px #efefef;
  border-radius: 8px;
  padding: 50px 75px;
  background: #FFFFFF;
}

@media only screen and (max-width: 479px) {
  .contactPage .contact-section-two .contact-section-one .section-one-wrapper {
    padding: 50px 40px 30px;
  }

  .contactPage .contact-section-two .contact-section-one .section-one-wrapper h3 {
    font-size: 28px;
    margin-left: 0;
  }
}

.contactPage .contact-section-two .contact-section-one .section-one-wrapper h3 {
  font-size: 36px;
  line-height: 40px;
  margin: 0 0 14px 16px;
}

@media only screen and (max-width: 991px) {
  .contactPage .contact-section-two .contact-section-one .section-one-wrapper h3 {
    font-size: 30px;
    line-height: 35px;
    margin: 0 0 25px 0;
  }
}

@media only screen and (max-width: 767px) {
  .contactPage .contact-section-two .contact-section-one .section-one-wrapper h3 {
    font-size: 25px;
    line-height: 35px;
    margin: 0 0 15px 0;
  }
}

@media only screen and (max-width: 479px) {
  .contactPage .contact-section-two .contact-section-one .section-one-wrapper h3 {
    font-size: 20px;
    line-height: 30px;
  }
}

.contactPage .contact-section-two .contact-section-one .section-one-wrapper .section-left {
  padding-right: 50px;
}

@media only screen and (max-width: 991px) {
  .contactPage .contact-section-two .contact-section-one .section-one-wrapper .section-left {
    padding: 0 0 80px;
  }
}

.contactPage .contact-section-two .contact-section-one .section-one-wrapper .contact-wrapper p {
  font-size: 19px;
  line-height: 34px;
  color: #7c828b;
}

@media only screen and (max-width: 991px) {
  .contactPage .contact-section-two .contact-section-one .section-one-wrapper .contact-wrapper p {
    line-height: 27px;
  }
}

@media only screen and (max-width: 767px) {
  .contactPage .contact-section-two .contact-section-one .section-one-wrapper .contact-wrapper p {
    font-size: 16px;
    line-height: 27px;
  }
}

.contactPage .contact-section-two .contact-section-one .section-one-wrapper .contact-wrapper .location {
  margin-top: 22px;
}

.contactPage .contact-section-two .contact-section-one .section-one-wrapper .contact-wrapper .location li:nth-child(2) {
  margin-top: 21px;
}

.contactPage .contact-section-two .contact-section-one .section-one-wrapper .contact-wrapper .location li i {
  font-size: 20px;
  color: #6cbe03;
  padding: 10px 14px 0 0;
}

.contactPage .contact-section-two .contact-section-one .section-one-wrapper .contact-wrapper .location li .content {
  display: inline-block;
  vertical-align: top;
}

.contactPage .contact-section-two .contact-section-one .section-one-wrapper .contact-wrapper .location li .text {
  font-size: 19px;
  line-height: 34px;
  color: #7c828b;
}

@media only screen and (max-width: 479px) {
  .contactPage .contact-section-two .contact-section-one .section-one-wrapper .contact-wrapper .location li .text {
    font-size: 16px;
  }
}

.contactPage .contact-section-two .contact-section-one .section-one-wrapper .contact-wrapper .location li .map-view {
  font-size: 19px;
  line-height: 34px;
  color: #6cbe03;
  cursor: pointer;
  display: block;
}

.contactPage .contact-section-two .contact-section-one .section-one-wrapper .contact-wrapper .contact-form .form-group .form-control {
  font-size: 16px;
  border: 0;
  border-radius: 8px;
  background-color: #eef1f5;
  padding: 23px 30px;
}

.contactPage .contact-section-two .contact-section-one .section-one-wrapper .contact-wrapper .contact-form .form-group .form-control.form-option {
  color: #8c8c8c;
  padding: 0 30px;
  min-height: 45px;
}

.contactPage .contact-section-two .contact-section-one .section-one-wrapper .contact-wrapper .contact-form .form-group .contactSearchBar {
  width: 100%;
  border: 0;
  border-radius: 8px;
  color: #9c9c9c;
  background-color: #eef1f5;
  padding: 9px 30px;
}

.contactPage .contact-section-two .contact-section-one .section-one-wrapper .contact-wrapper .contact-form .form-group .contactSearchBar:focus {
  outline: none;
}

.contactPage .contact-section-two .contact-section-one .section-one-wrapper .contact-wrapper .contact-form .form-group .subscribeBtn {
  padding: 8px 45px;
  margin: 16px 0 10px;
  border: 2px solid #6cbe03;
}

.contactPage .map-section {
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .contactPage .map-section {
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 479px) {
  .contactPage .map-section {
    padding-bottom: 70px;
  }
}

.contactPage .map-section #googleMap {
  width: 100%;
  height: 760px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 991px) {
  .contactPage .map-section #googleMap {
    height: 550px;
  }
}

@media only screen and (max-width: 767px) {
  .contactPage .map-section #googleMap {
    height: 480px;
  }
}

@media only screen and (max-width: 479px) {
  .contactPage .map-section #googleMap {
    height: 400px;
  }
}

.contactPage .map-section #googleMap-Two {
  width: 100%;
  height: 760px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  margin-top: 50px;
}

@media only screen and (max-width: 991px) {
  .contactPage .map-section #googleMap-Two {
    height: 550px;
  }
}

@media only screen and (max-width: 767px) {
  .contactPage .map-section #googleMap-Two {
    height: 480px;
  }
}

@media only screen and (max-width: 479px) {
  .contactPage .map-section #googleMap-Two {
    height: 400px;
  }
}

.contactPage .map-section .form-section {
  position: relative;
  background-color: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.21);
  margin-top: -30%;
  padding-top: 75px;
}

.contactPage .map-section .form-section .support-form {
  margin-top: 55px;
}

@media only screen and (max-width: 991px) {
  .contactPage .map-section .form-section .support-form {
    padding: 0 50px;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .contactPage .map-section .form-section .support-form {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 479px) {
  .contactPage .map-section .form-section .support-form {
    padding: 0 20px;
  }
}

.contactPage .map-section .form-section .support-form .form-group {
  margin-bottom: 38px;
}

@media only screen and (max-width: 991px) {
  .contactPage .map-section .form-section .support-form .form-group {
    margin-bottom: 15px;
  }
}

.contactPage .map-section .form-section .support-form .form-group label {
  font-size: 20px;
  line-height: 45px;
  color: #FFFFFF;
}

@media only screen and (max-width: 767px) {
  .contactPage .map-section .form-section .support-form .form-group label {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 0;
  }
}

.contactPage .map-section .form-section .support-form .form-group input.form-control {
  padding: 25px 12px;
}

@media only screen and (max-width: 767px) {
  .contactPage .map-section .form-section .support-form .form-group input.form-control {
    padding: 18px 12px;
    font-size: 15px;
  }
}

.contactPage .map-section .form-section .support-form .form-group .text {
  font-size: 16px;
  color: #FFFFFF;
}

@media only screen and (max-width: 767px) {
  .contactPage .map-section .form-section .support-form .form-group .text {
    font-size: 14px;
  }
}

.contactPage .map-section .form-section .support-form .form-group .form-control {
  font-size: 16px;
  font-weight: 300;
  color: #a6aaad;
  border: 0;
  border-radius: 0;
  background-color: #e3e6eb;
  box-shadow: none;
}

.contactPage .map-section .form-section .support-form .form-group .form-control:focus {
  border-color: #c3c3c3;
}

.contactPage .map-section .form-section .support-form .form-group .btn {
  font-weight: 700;
  padding: 8px 60px;
  margin: 18px 0 60px;
  background-color: #6cbe03;
  border: 2px solid #6cbe03;
}

@media only screen and (max-width: 991px) {
  .contactPage .map-section .form-section .support-form .form-group .btn {
    font-size: 18px;
    padding: 10px 30px;
  }
}

@media only screen and (max-width: 767px) {
  .contactPage .map-section .form-section .support-form .form-group .btn {
    font-size: 16px;
    font-weight: 400;
    padding: 8px 25px;
    margin: 30px 0 40px;
  }
}

@media only screen and (max-width: 479px) {
  .contactPage .map-section .form-section .support-form .form-group .btn {
    font-size: 14px;
    padding: 6px 20px;
    margin: 20px 0 10px;
  }
}

.contactPage .contact-section-three .section-title {
  margin-bottom: 75px;
}

@media only screen and (max-width: 991px) {
  .contactPage .contact-section-three .section-title {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 479px) {
  .contactPage .contact-section-three .section-title {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .contactPage .contact-section-three .contact-wrapper {
    margin-bottom: 30px;
  }
}

.contactPage .contact-section-three .contact-wrapper h4 {
  font-size: 30px;
  font-weight: 600;
  line-height: 42px;
  color: #1b232f;
  margin: 20px 0 25px;
}

@media only screen and (max-width: 991px) {
  .contactPage .contact-section-three .contact-wrapper h4 {
    font-size: 25px;
    line-height: 35px;
    margin: 15px 0 10px;
  }
}

.contactPage .contact-section-three .contact-wrapper .contact {
  font-size: 18px;
  line-height: 30px;
  color: #5a6778;
}

@media only screen and (max-width: 991px) {
  .contactPage .contact-section-three .contact-wrapper .contact {
    font-size: 16px;
    line-height: 27px;
  }
}

/* =========================================================
        Event-Grid-Section STYLE 
============================================================ */
.event-grid-section .first-row {
  margin-bottom: 70px;
}

@media only screen and (max-width: 991px) {
  .event-grid-section .first-row {
    margin-bottom: 0;
  }
}

.event-grid-section .grid-wrapper {
  position: relative;
}

@media only screen and (max-width: 991px) {
  .event-grid-section .grid-wrapper {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .event-grid-section .grid-wrapper {
    margin-bottom: 30px;
  }
}

.event-grid-section .grid-wrapper .caption img {
  width: 100%;
}

.event-grid-section .grid-wrapper .caption .date {
  position: absolute;
  top: 0;
  right: 0;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 12px 16px;
  background: #6cbe03;
}

@media only screen and (max-width: 767px) {
  .event-grid-section .grid-wrapper .caption .date {
    font-size: 25px;
    padding: 10px 12px;
  }
}

@media only screen and (max-width: 479px) {
  .event-grid-section .grid-wrapper .caption .date {
    float: none !important;
    display: inline-block;
  }
}

.event-grid-section .grid-wrapper .caption .date small {
  font-size: 13px;
  line-height: 15px;
  color: #FFFFFF;
  display: block;
}

@media only screen and (max-width: 767px) {
  .event-grid-section .grid-wrapper .caption .date small {
    font-size: 11px;
    line-height: 18px;
  }
}

.event-grid-section .grid-wrapper .grid-content {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 18px;
}

@media only screen and (max-width: 767px) {
  .event-grid-section .grid-wrapper .grid-content {
    padding-bottom: 12px;
  }
}

.event-grid-section .grid-wrapper .grid-content h3 {
  font-size: 25px;
  line-height: 30px;
  margin: 15px 0 10px;
}

.event-grid-section .grid-wrapper .grid-content h3 a {
  color: #1e2e42;
}

.event-grid-section .grid-wrapper .grid-content h3 a:hover {
  color: #6cbe03;
}

@media only screen and (max-width: 991px) {
  .event-grid-section .grid-wrapper .grid-content h3 {
    font-size: 25px;
    line-height: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .event-grid-section .grid-wrapper .grid-content h3 {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 479px) {
  .event-grid-section .grid-wrapper .grid-content h3 {
    font-size: 20px;
    line-height: 30px;
  }
}

.event-grid-section .grid-wrapper .grid-content .small-text {
  font-size: 14px;
  color: #9298a0;
}

.event-grid-section .grid-wrapper .grid-content .small-text.time {
  margin-right: 15px;
}

.event-grid-section .grid-wrapper .grid-content .small-text i {
  color: #6cbe03;
}

@media only screen and (max-width: 767px) {
  .event-grid-section .grid-wrapper .grid-content .small-text {
    font-size: 13px;
  }
}

.event-grid-section .grid-wrapper .btn {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  padding: 7px 19px;
  margin-top: 38px;
  border: 2px solid #6cbe03;
}

@media only screen and (max-width: 767px) {
  .event-grid-section .grid-wrapper .btn {
    font-size: 15px;
    padding: 5px 15px;
    margin-top: 20px;
  }
}

/* =========================================================
        Event-List-Section STYLE 
============================================================ */
.event-list-section .event-wrapper {
  background: url(../images/l-event.jpg) no-repeat;
  background-position: -90% 0;
  background-size: cover;
  min-height: 400px;
  margin-bottom: 50px;
}

.event-list-section .event-wrapper:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1199px) {
  .event-list-section .event-wrapper {
    margin-bottom: 0;
    background: #FFFFFF;
  }
}

@media only screen and (max-width: 991px) {
  .event-list-section .event-wrapper {
    margin-bottom: 0;
    min-height: auto;
  }
}

.event-list-section .event-wrapper .wrapper-container {
  background: #FFFFFF;
  padding: 30px 30px 48px;
  display: inline-block;
  width: 62%;
  min-height: 400px;
}

@media only screen and (max-width: 1199px) {
  .event-list-section .event-wrapper .wrapper-container {
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .event-list-section .event-wrapper .wrapper-container {
    min-height: auto;
  }
}

@media only screen and (max-width: 767px) {
  .event-list-section .event-wrapper .wrapper-container {
    padding: 30px;
  }
}

@media only screen and (max-width: 479px) {
  .event-list-section .event-wrapper .wrapper-container {
    padding: 25px 15px 35px;
  }
}

.event-list-section .event-wrapper .wrapper-container .date {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: #6cbe03;
  border: 2px solid #6cbe03;
  padding: 12px 16px;
}

@media only screen and (max-width: 767px) {
  .event-list-section .event-wrapper .wrapper-container .date {
    font-size: 25px;
    padding: 10px 12px;
  }
}

@media only screen and (max-width: 479px) {
  .event-list-section .event-wrapper .wrapper-container .date {
    float: none !important;
    display: inline-block;
  }
}

.event-list-section .event-wrapper .wrapper-container .date .month {
  font-size: 13px;
  line-height: 15px;
  color: #9298a0;
  display: block;
}

@media only screen and (max-width: 767px) {
  .event-list-section .event-wrapper .wrapper-container .date .month {
    font-size: 11px;
    line-height: 18px;
  }
}

.event-list-section .event-wrapper .wrapper-container .wrapper-content {
  margin-left: 95px;
}

@media only screen and (max-width: 767px) {
  .event-list-section .event-wrapper .wrapper-container .wrapper-content {
    margin-left: 80px;
  }
}

@media only screen and (max-width: 479px) {
  .event-list-section .event-wrapper .wrapper-container .wrapper-content {
    margin-left: 0;
  }
}

.event-list-section .event-wrapper .wrapper-container .wrapper-content h4 {
  font-size: 30px;
  line-height: 35px;
  margin-top: -7px;
  margin-bottom: 4px;
}

.event-list-section .event-wrapper .wrapper-container .wrapper-content h4 a {
  color: #1e2e42;
}

.event-list-section .event-wrapper .wrapper-container .wrapper-content h4 a:hover {
  color: #6cbe03;
}

@media only screen and (max-width: 991px) {
  .event-list-section .event-wrapper .wrapper-container .wrapper-content h4 {
    font-size: 30px;
    line-height: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .event-list-section .event-wrapper .wrapper-container .wrapper-content h4 {
    font-size: 20px;
    line-height: 22px;
    margin-top: -3px;
  }
}

@media only screen and (max-width: 479px) {
  .event-list-section .event-wrapper .wrapper-container .wrapper-content h4 {
    margin-top: 15px;
  }
}

.event-list-section .event-wrapper .wrapper-container .wrapper-content .small-text {
  font-size: 14px;
  color: #9298a0;
}

.event-list-section .event-wrapper .wrapper-container .wrapper-content .small-text.time {
  margin-right: 15px;
}

.event-list-section .event-wrapper .wrapper-container .wrapper-content .small-text i {
  color: #6cbe03;
}

@media only screen and (max-width: 767px) {
  .event-list-section .event-wrapper .wrapper-container .wrapper-content .small-text {
    font-size: 13px;
  }
}

.event-list-section .event-wrapper .wrapper-container .wrapper-content p {
  color: #3a3a3a;
  border-top: 1px solid #dcdcdc;
  padding: 15px 0;
  margin-top: 15px;
}

@media only screen and (max-width: 479px) {
  .event-list-section .event-wrapper .wrapper-container .wrapper-content p {
    font-size: 15px;
  }
}

.event-list-section .event-wrapper .wrapper-container .wrapper-content .btn {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  padding: 6px 19px;
  border: 2px solid #6cbe03;
}

/* =========================================================
        Comming-Soon STYLE 
============================================================ */
.commingSoonPage .extra.sticky {
  margin-top: 80px;
}

@media only screen and (max-width: 991px) {
  .commingSoonPage .extra.sticky {
    margin-top: 0;
  }
}

/* =========================================================
        Shop-Page-STYLE 
============================================================ */
.shop-page .banner-section {
  background: url(../images/sub/t-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}

.shop-page .shop-section {
  padding-bottom: 75px;
}

@media only screen and (max-width: 767px) {
  .shop-page .shop-section {
    padding-bottom: 50px;
  }
}

.shop-page .shop-section .left-bar .wrapper-contant {
  margin-bottom: 70px;
}

.shop-page .shop-section .left-bar .wrapper-contant.last-content {
  margin-bottom: 0;
}

.shop-page .shop-section .left-bar .wrapper-contant h4 {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  color: #3d424b;
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .shop-page .shop-section .left-bar .wrapper-contant h4 {
    font-size: 20px;
  }
}

.shop-page .shop-section .left-bar .wrapper-contant h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background-color: #6cbe03;
}

.shop-page .shop-section .left-bar .wrapper-contant ul li {
  font-size: 16px;
  font-weight: 600;
  color: #212121;
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.shop-page .shop-section .left-bar .wrapper-contant ul li:last-child {
  border: 0;
}

.shop-page .shop-section .right-bar .product-selection .product-wrapper {
  margin-bottom: 60px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .shop-page .shop-section .right-bar .product-selection .product-wrapper.last-wrapper {
    margin-bottom: 0;
  }
}

.shop-page .shop-section .right-bar .product-selection .product-wrapper:hover .product-detail {
  background-color: #6cbe03;
  border-radius: 8px;
}

.shop-page .shop-section .right-bar .product-selection .product-wrapper:hover .product-detail h5 {
  color: #FFFFFF;
}

.shop-page .shop-section .right-bar .product-selection .product-wrapper:hover .product-detail .cart {
  color: #3d424b;
}

.shop-page .shop-section .right-bar .product-selection .product-wrapper:hover .product-detail .price {
  background-color: #FFFFFF;
  color: #6cbe03;
  box-shadow: 0 0 5px #a5a3a3;
}

.shop-page .shop-section .right-bar .product-selection .product-wrapper img {
  max-width: 100%;
}

.shop-page .shop-section .right-bar .product-selection .product-wrapper .product-detail {
  position: relative;
  box-shadow: 0 0 20px #dcdada;
  margin-top: 15px;
  padding: 15px 20px;
  -webkit-transition: 0.8s;
  -khtml-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}

.shop-page .shop-section .right-bar .product-selection .product-wrapper .product-detail h5 {
  font-size: 20px;
  font-weight: 500;
  color: #3d424b;
  margin-bottom: 5px;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.shop-page .shop-section .right-bar .product-selection .product-wrapper .product-detail .cart {
  font-weight: 600;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.shop-page .shop-section .right-bar .product-selection .product-wrapper .product-detail .price {
  position: absolute;
  right: -15px;
  bottom: -20px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 22px;
  font-weight: 600;
  color: #FFFFFF;
  background-color: #6cbe03;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: 0.8s;
  -khtml-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}

.shop-page .pagination-wrapper .pagination {
  margin: 30px 0 0;
}

/* =========================================================
        Cart-Page-STYLE 
============================================================ */
.cart-page .banner-section {
  background: url(../images/sub/t-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}

.cart-page .cart-section .table {
  border: 1px solid #dedcdc;
  border-radius: 8px;
  margin: 0;
}

.cart-page .cart-section .table thead tr th {
  color: #333;
}

@media only screen and (max-width: 479px) {
  .cart-page .cart-section .table tbody tr th {
    padding: 0;
  }
}

.cart-page .cart-section .table tbody tr th img {
  width: 50px;
}

@media only screen and (max-width: 479px) {
  .cart-page .cart-section .table tbody tr th img {
    width: 40px;
  }
}

.cart-page .cart-section .table tbody tr td {
  color: #333;
  line-height: 72px;
}

@media only screen and (max-width: 479px) {
  .cart-page .cart-section .table tbody tr td {
    line-height: 50px;
    padding: 0;
  }
}

.cart-page .cart-section .table tbody tr td i {
  color: red;
}

@media only screen and (max-width: 479px) {
  .cart-page .cart-section .table tbody tr.button th {
    display: none;
  }
}

.cart-page .cart-section .table tbody tr.button td {
  text-align: center;
  padding: 0;
  line-height: 50px;
  color: #FFFFFF;
}

@media only screen and (max-width: 479px) {
  .cart-page .cart-section .table tbody tr.button td {
    line-height: 20px;
    padding: 5px 0;
  }
}

@media only screen and (max-width: 479px) {
  .cart-page .cart-section .table tbody tr.button td.ff {
    display: none;
  }
}

.cart-page .cart-section .table tbody tr.button td:last-child {
  background-color: #6cbe03;
}

.cart-page .cart-section .cart-amount {
  margin-top: 100px;
}

.cart-page .cart-section .cart-amount h5 {
  font-size: 30px;
  font-weight: 500;
  color: #3d424b;
}

.cart-page .cart-section .cart-amount ul {
  border: 1px solid #d8d5d5;
}

.cart-page .cart-section .cart-amount ul li {
  display: flex;
  border-bottom: 1px solid #d8d5d5;
  padding: 10px;
}

.cart-page .cart-section .cart-amount ul li:last-child {
  border: 0;
}

.cart-page .cart-section .cart-amount ul li span {
  flex: 1;
}

.cart-page .cart-section .cart-amount ul li span.text {
  font-size: 15px;
  font-weight: 700;
  color: #3d424b;
}

.cart-page .cart-section .cart-amount ul li span.amount {
  font-weight: 700;
  color: #3d424b;
}

.cart-page .cart-section .cart-amount .btn {
  border-radius: 0;
  width: 100%;
  margin-top: 20px;
}

.cart-page .cart-section .cart-amount .btn:focus {
  color: #FFFFFF;
}

.cart-page .cart-section .cart-amount .btn::before {
  border-radius: 0;
  background: #eee;
}

/* =========================================================
        RTL-Layout STYLE 
============================================================ */
.rtl-layout-one .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu {
  text-align: right;
}

.rtl-layout-one .header-section .navbar.sticky .navbar-collapse .navbar-nav {
  float: left !important;
}

.rtl-layout-one .header-section .navbar .navbar-collapse .nav-two {
  margin-right: 35px;
}

.rtl-layout-one .header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul li {
  margin: 0;
}

.rtl-layout-one .header-section .navbar .navbar-collapse .navbar-nav li .cart-item {
  left: 0;
  right: auto;
}

.rtl-layout-one .signup-section .signup-wrapper h3 {
  margin: 0;
}

.rtl-layout-one .growing-section .content-wrapper p {
  margin-right: 0;
}

.rtl-layout-one .team-section .team-wrapper .right-bar {
  margin-left: 0;
  margin-right: 160px;
}

.rtl-layout-one .team-section .team-wrapper .right-bar p {
  margin: 10px 0 15px 20px;
}

.rtl-layout-one .worker-section .worker-wrapper .tab-content .worker-detail .worker-content {
  padding: 20px 25px;
}

.rtl-layout-one .testimonial-section.testimonial-two #testimonial-carousel .testimonial-wrapper p {
  margin: 0 20px 45px 20px;
}

.rtl-layout-one .menu-toggle {
  left: 0;
  right: auto;
}

@media only screen and (max-width: 767px) {
  .rtl-layout-one .service-section {
    padding-bottom: 10px;
  }

  .rtl-layout-one .service-section .service-wrapper {
    margin-bottom: 90px;
  }
}

.rtl-layout-one .footer-section .footer-container .footer-wrapper .footerForm .subscribeBtn {
  right: 0;
}

@media only screen and (max-width: 991px) {
  .rtl-layout-one .footer-section .second-footer .caption {
    padding-bottom: 50px;
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .rtl-layout-one .footer-section .second-footer .caption {
    padding-bottom: 25px;
  }
}

.rtl-layout-two .header-section .navbar .navbar-collapse .navbar-nav li:nth-child(3) {
  margin: 0 15px 0 50px;
}

.rtl-layout-two .header-section .navbar .navbar-collapse .navbar-nav li:nth-child(8) {
  margin: 0 15px 0 0;
}

.rtl-layout-two .header-section .navbar .navbar-collapse .navbar-nav li:nth-child(7) {
  margin: 0 25px 0 0;
}

.rtl-layout-two .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu {
  text-align: right;
}

.rtl-layout-two .worker-section .worker-wrapper .tab-content .worker-detail .worker-content {
  padding: 20px 25px;
}

.rtl-layout-two .service-section .more-service::before {
  top: 15px;
}

.rtl-layout-two .growing-section .content-wrapper p {
  margin-right: 0;
}

.rtl-layout-two .team-section .team-wrapper .right-bar {
  margin-left: 0;
  margin-right: 160px;
}

.rtl-layout-two .team-section .team-wrapper .right-bar p {
  margin: 10px 0 15px 20px;
}

.rtl-layout-two .counting-section .counting-pusher .counting-wrapper {
  padding-right: 25px;
}

.rtl-layout-two .double-section .question-section .question-accordion #question-accordion .panel .panel-heading .panel-title a.open {
  padding-right: 60px;
}

.rtl-layout-two .testimonial-section #testimonial-carousel .testimonial-wrapper .rating {
  float: left;
}

.rtl-layout-two .footer-section .footer-container .footer-wrapper .footerForm .subscribeBtn {
  right: 0;
}

@media only screen and (max-width: 991px) {
  .rtl-layout-two .footer-section .second-footer .caption {
    padding-bottom: 50px;
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .rtl-layout-two .footer-section .second-footer .caption {
    padding-bottom: 25px;
  }
}

.rtl-layout-two .menu-toggle {
  left: 0;
  right: auto;
}

.rtl-layout-three .header-section .navbar {
  padding: 0 25px;
}

.rtl-layout-three .header-section .navbar .navbar-collapse .navbar-nav li:last-child {
  margin: 0;
}

.rtl-layout-three .header-section .navbar .navbar-collapse .navbar-nav li:nth-child(7) {
  margin: 0 25px 0 0;
}

.rtl-layout-three .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu {
  text-align: right;
}

.rtl-layout-three .growing-section .content-wrapper p {
  margin-right: 0;
}

.rtl-layout-three .testimonial-section #testimonial-carousel .testimonial-wrapper .rating {
  float: left;
}

.rtl-layout-three .priceing-section .priceing-wrapper .tab-content .priceing-table .amount {
  display: inline-block;
}

@media only screen and (max-width: 991px) {
  .rtl-layout-three .priceing-section .section-title {
    text-align: right;
  }
}

.rtl-layout-three .menu-toggle {
  left: 0;
  right: auto;
}

/* =========================================================
        DARK-Layout STYLE 
============================================================ */
.dark-layout-one .header-section .navbar {
  background-color: transparent;
}

.dark-layout-one .header-section .navbar.sticky {
  background-color: #FFFFFF;
}

.dark-layout-one .header-section .middle-bar .schedule ul li .content h5,
.dark-layout-one .header-section .middle-bar .schedule ul li .content .date {
  color: #8a8a8a;
}

.dark-layout-one .service-section.service-section-three .service-wrapper:hover .link {
  color: #6cbe03 !important;
}

.dark-layout-one .service-section.service-section-three .service-wrapper .caption img {
  box-shadow: 0 0 30px #000000;
}

.dark-layout-one .service-section.service-section-three .service-wrapper .content-wrapper::before {
  background-color: #39393a;
}

.dark-layout-one .service-section.service-section-three .service-wrapper .content-wrapper h3 a {
  color: #757575;
}

.dark-layout-one .service-section.service-section-three .service-wrapper .content-wrapper h3 a:hover {
  color: #6cbe03;
}

.dark-layout-one .service-section.service-section-three .service-wrapper .content-wrapper p {
  color: #797979;
}

.dark-layout-one .service-section.service-section-three .service-wrapper .content-wrapper .link {
  color: #505152;
  background-color: #1f1f1f;
}

.dark-layout-one .growing-section .content-wrapper h3 {
  color: #a8a9ab;
}

.dark-layout-one .growing-section .content-wrapper p {
  color: #909090;
}

.dark-layout-one .border-break .border {
  border-bottom: 1px solid #000000;
}

.dark-layout-one .team-section .team-wrapper .left-bar .social-icon li i {
  color: #c7c7c7;
}

.dark-layout-one .team-section .team-wrapper .left-bar .social-icon li i:hover {
  color: #6cbe03;
}

.dark-layout-one .team-section .team-wrapper .right-bar h5 {
  color: #949494;
}

.dark-layout-one .team-section .team-wrapper .right-bar p {
  color: #868686;
}

.dark-layout-one .blog-section .blog-wrapper {
  border-bottom: 2px solid #2f2f2f;
}

.dark-layout-one .blog-section .blog-wrapper .content-wrapper h3 a {
  color: #5a5a5a;
}

.dark-layout-one .blog-section .blog-wrapper .content-wrapper h3 a:hover {
  color: #6cbe03;
}

.dark-layout-one .blog-section .blog-wrapper .content-wrapper .link {
  color: #424242;
}

.dark-layout-one .blog-section .blog-wrapper .content-wrapper .link:hover {
  color: #6cbe03;
}

.dark-layout-one .double-section {
  padding: 50px 0 80px;
}

.dark-layout-one .double-section::before {
  background: url(../images/border.jpg) no-repeat center;
}

.dark-layout-one .worker-section .worker-wrapper .nav-tabs::before {
  background: #3c3c3c;
}

.dark-layout-one .worker-section .worker-wrapper .tab-content .worker-detail {
  box-shadow: 0 0 5px #676767;
}

.dark-layout-one .worker-section .worker-wrapper .tab-content .worker-detail .worker-content h5 a {
  color: #8e8e8e;
}

.dark-layout-one .worker-section .worker-wrapper .tab-content .worker-detail .worker-content h5 a:hover {
  color: #FFFFFF;
}

.dark-layout-two .service-section .section-title p {
  color: #8a8a8a;
}

.dark-layout-two .service-section .service-wrapper h3 {
  color: #ababab;
}

.dark-layout-two .service-section .service-wrapper p {
  color: #696969;
}

.dark-layout-two .service-section .service-wrapper .link {
  color: #737373;
}

.dark-layout-two .service-section .service-wrapper .link:hover {
  color: #6cbe03;
}

.dark-layout-two .service-section .more-service::before {
  background-color: #464646;
}

.dark-layout-two .service-section .more-service .link {
  background-color: #272727;
  border: 1px solid #464646;
}

.dark-layout-two .growing-section .content-wrapper h3 {
  color: #a8a9ab;
}

.dark-layout-two .growing-section .content-wrapper p {
  color: #909090;
}

.dark-layout-two .team-section .team-wrapper .left-bar .social-icon li i {
  color: #c7c7c7;
}

.dark-layout-two .team-section .team-wrapper .left-bar .social-icon li i:hover {
  color: #6cbe03;
}

.dark-layout-two .team-section .team-wrapper .right-bar h5 {
  color: #949494;
}

.dark-layout-two .team-section .team-wrapper .right-bar p {
  color: #868686;
}

.dark-layout-two .border-break .border {
  border-bottom: 1px solid #000000;
}

.dark-layout-two .worker-section .worker-wrapper .nav-tabs::before {
  background: #3c3c3c;
}

.dark-layout-two .worker-section .worker-wrapper .tab-content .worker-detail {
  box-shadow: 0 0 5px #676767;
}

.dark-layout-two .worker-section .worker-wrapper .tab-content .worker-detail .worker-content h5 a {
  color: #8e8e8e;
}

.dark-layout-two .worker-section .worker-wrapper .tab-content .worker-detail .worker-content h5 a:hover {
  color: #FFFFFF;
}

.dark-layout-two .double-section .partner-section .partner-wrapper ul li {
  margin-bottom: 5px;
}

.dark-layout-two .double-section .question-section .question-accordion #question-accordion .panel {
  background-color: #1b1b1b;
  border-color: #4e4d4d;
}

.dark-layout-two .double-section .question-section .question-accordion #question-accordion .panel .panel-collapse .panel-body p {
  color: #bdbdbd;
}

.dark-layout-two .quote-section .section-title h2 {
  color: #FFFFFF;
}

.dark-layout-three .service-section .section-title p {
  color: #8a8a8a;
}

.dark-layout-three .service-section .service-wrapper h3 {
  color: #ababab;
}

.dark-layout-three .service-section .service-wrapper p {
  color: #696969;
}

.dark-layout-three .service-section .service-wrapper .link {
  color: #737373;
}

.dark-layout-three .service-section .service-wrapper .link:hover {
  color: #6cbe03;
}

.dark-layout-three .service-section .owl-nav .owl-prev,
.dark-layout-three .service-section .owl-nav .owl-next {
  color: #1f1f1f;
}

.dark-layout-three .priceing-section .priceing-wrapper .tab-content .priceing-table h4 {
  color: #a9aaab;
}

.dark-layout-three .priceing-section .priceing-wrapper .tab-content .priceing-table .option li {
  color: #868686;
}

.dark-layout-three .growing-section .content-wrapper h3 {
  color: #a8a9ab;
}

.dark-layout-three .growing-section .content-wrapper p {
  color: #909090;
}

.dark-layout-three .quote-section .section-title h2 {
  color: #FFFFFF;
}

.dark-layout-three .shop-section .shop-wrapper .shop-content h4 a {
  color: #a9a9a9;
}

.dark-layout-three .shop-section .shop-wrapper .shop-content h4 a:hover {
  color: #6cbe03;
}

.dark-layout-three .shop-section .more-service::before {
  background-color: #464646;
}

.dark-layout-three .shop-section .more-service .link {
  background-color: #272727;
  border: 1px solid #464646;
}

/* =========================================================
        BOX-Layout STYLE 
============================================================ */
.boxLayout .header-section {
  left: auto;
  right: auto;
}

@media only screen and (max-width: 1500px) {
  .boxLayout .header-section .navbar .navbar-collapse .navbar-nav li #search-bar {
    width: 1200px;
    margin: 0 auto;
  }
}

.boxLayout .testimonial-section {
  background: #ecf4de;
}

.boxLayout .testimonial-section.testimonial-two {
  background: url(../images/testimonial-bg.jpg) no-repeat 50% 50%;
  background-attachment: fixed;
  background-size: cover;
}

.boxLayout .project-section {
  background-color: #ecf4de;
}

.boxLayout .growing-section {
  overflow: hidden;
}

/* =========================================================
        Single-Pge STYLE 
============================================================ */
.single-one .header-section .navbar.sticky .navbar-collapse .nav-one {
  margin-left: 300px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .single-one .header-section .navbar.sticky .navbar-collapse .nav-one {
    margin-left: 200px;
  }
}

.single-one.boxLayout .header-section .navbar.sticky .navbar-collapse .nav-one {
  margin-left: 200px;
}

/* =========================================================
        Color-Switcher-STYLE 
============================================================ */
.style-switcher-box {
  background-color: #FFFFFF;
  width: 252px;
  padding: 50px 25px;
  position: fixed;
  left: -252px;
  top: 15%;
  z-index: 999;
  border: 1px solid #d9d9d9;
  -webkit-transition: 0.3s;
  -khtml-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.style-switcher-box button {
  background-color: #6cbe03;
  width: 45px;
  height: 45px;
  line-height: 40px;
  text-align: center;
  color: #000000;
  font-size: 20px;
  border: 0;
  outline: 0;
  box-shadow: none;
  position: absolute;
  right: -45px;
  top: 50px;
}

.style-switcher-box button i {
  color: #FFFFFF;
  -webkit-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

.style-switcher-box h5 {
  font-size: 18px;
  color: #000000;
  text-align: center;
  margin: 0 0 2em;
  text-transform: uppercase;
}

.style-switcher-box .main-list>.list {
  margin-bottom: 30px;
}

.style-switcher-box .main-list>.list:last-child {
  margin-bottom: 0;
}

.style-switcher-box .list-title {
  display: block;
  font-size: 12px;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 10px;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.style-switcher-box .list>.sublist {
  margin-bottom: 10px;
}

.style-switcher-box .list>.sublist:last-child {
  margin-bottom: 0;
}

.style-switcher-box .sublist span {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
}

.style-switcher-box .sublist ul {
  overflow: hidden;
}

.style-switcher-box .sublist ul li {
  float: left;
  min-width: 32px;
  min-height: 32px;
  margin: 0 5px 5px 0;
  cursor: pointer;
}

.style-switcher-box .sublist ul li.color-default {
  background: #3575d3;
}

.style-switcher-box .sublist ul li.color-style1 {
  background: #C1AA81;
}

.style-switcher-box .sublist ul li.color-style2 {
  background: #FA9928;
}

.style-switcher-box .sublist ul li.color-style3 {
  background: #e21f2f;
}

.style-switcher-box .sublist ul li.color-style4 {
  background: #09142d;
}

.style-switcher-box .sublist ul li.color-style5 {
  background: #3498db;
}

.style-switcher-box .sublist ul li.color-style6 {
  background: #a57b4a;
}

.style-switcher-box .sublist ul li.color-style7 {
  background: #09a223;
}

.style-switcher-box .sublist ul li.color-style8 {
  background: #904eab;
}

.style-switcher-box .sublist ul li.color-style9 {
  background: #38cbcb;
}

.style-switcher-box .pattern-bg .sublist ul {
  overflow: hidden;
}

.style-switcher-box .pattern-bg .sublist ul li {
  float: left;
  min-width: 32px;
  min-height: 32px;
  margin: 0 5px 5px 0;
  cursor: pointer;
  background: url(../images/sp.jpg) no-repeat;
}

.style-switcher-box .layout ul li {
  background-color: #6cbe03;
  min-height: 20px;
  color: #FFFFFF;
  padding: 5px 10px;
  font-size: 12px;
}

.style-switcher-box p {
  font-size: 11px;
  margin: 15px 0 0;
}

.style-switcher-box p span {
  color: #ff6666;
}

.toggle-switcherbox {
  left: 0;
}

/*** rotating ***/
@-webkit-keyframes rotating {
  form {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  form {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* =========================================================
        Scroll-To-Top-STYLE 
============================================================ */
#toTop {
  position: fixed;
  bottom: 50px;
  right: 30px;
  color: #6cbe03;
  cursor: pointer;
  display: none;
  width: 35px;
  height: 35px;
  font-size: 16px;
  line-height: 30px;
  border: 1px solid #6cbe03;
  border-radius: 4px;
  text-align: center;
  z-index: 999;
}

/* =========================================================
        Preloader-STYLE 
============================================================ */
#preloader {
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
}

#preloader svg {
  display: block;
  width: 258px;
  height: 258px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#preloader .tree {
  fill: #6cbe03;
}

#preloader .circle-mask {
  -webkit-transform-origin: 50% 90%;
  transform-origin: 50% 90%;
  -webkit-animation: scale 5s infinite ease-out;
  animation: scale 5s infinite ease-out;
}

@-webkit-keyframes scale {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  7%,
  90% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  7%,
  90% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*# sourceMappingURL=style.css.map */
.d-none {
  display: none !important;
}

/* welcome section */
.welcome_section {
  margin-top: 80px;
}

.welcome_section h6 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  margin-bottom: 34px;
}

.welcome_section p {
  font-size: 16px;
  margin: 25px 0;
  line-height: 28px;
}

.welcome_section .intext {
  padding: 21px 0;
  border-top: 2px solid #36915182;
  border-bottom: 2px solid #206b349e;
  padding-top: 50px;
}

/* welcome section */
.service-wrapper .in_tag {
  margin: 12px 0;
  text-transform: capitalize;
  font-weight: 900;
  color: #000;
  border-bottom: 1px solid #369151;
  padding-bottom: 0px;
  width: fit-content;
}

.service-wrapper .in_tag+h3 {
  margin-top: 8px !important;
  margin-left: 0 !important;
}

@media(min-width:767px) {
  .service-wrapper .in_tag+h3 {
    min-height: 60px;

  }
}

.new_grwoing_sec {
  background: #1f6a33;
}

.new_grwoing_sec * {
  color: #fff;
}

.new_grwoing_sec .tag_bagde {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 16px !important;
  display: inline-block;
  background: #fff;
  color: #000;
  border-radius: 20px;
  padding: 6px 9px;
}

.new_grwoing_sec h3 {
  color: #fff !important;
  text-transform: capitalize;
  margin-top: 11px;
  margin-bottom: 20px !important;
}

.new_grwoing_sec p {
  font-size: 15px !important;
  color: #ffffffbd !important;
  margin-bottom: 10px !important;
}

.contry_where_we_operate .service-wrapper {
  padding: 10px;
  border: 1px solid #00000029;
  border-radius: 19px;
  margin-bottom: 40px;
}

.contry_where_we_operate .service-wrapper .content-wrapper::after,
.contry_where_we_operate .service-wrapper .content-wrapper::before {
  display: none !important;
}

.contry_where_we_operate .service-wrapper .in_tag {
  margin-top: -40px;
  background: #fff;
  border-radius: 11px;
  padding: 2px 10px;
  border: 0 !important;
  margin-left: 10px;
  margin-bottom: 17px !important;
}

.contry_where_we_operate .service-wrapper h3 {
  border-top: 1px solid #206b347a;
  width: 100%;
  margin: 0 !important;
  padding-top: 12px;
  padding-bottom: 5px;
}

.where_we_ope {
  margin-top: 60px;
  margin-bottom: -32px;
}

.where_we_ope .signup-wrapper {
  border-radius: 30px;
}

.btn_centre_new {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.health_question.worker-section {
  margin-top: 100px;
}

.health_question.worker-section .worker-detail.item.health_question_card {
  border-radius: 5px;
  position: relative;
}

.health_question.worker-section .worker-detail.item.health_question_card img {
  border-radius: 5px;
  min-height: 450px;
}

.health_question.worker-section .worker-detail.item.health_question_card .worker-content.text-center {
  position: absolute;
  bottom: 0;
  width: 100%;
  min-height: 105px;
  background: #fff;
  border-radius: 0;
  text-align: left !important;
  padding: 15px;
}

.health_question.worker-section .worker-detail.item.health_question_card .worker-content.text-center h5 {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 7px;
}

.health_question.worker-section .worker-detail.item.health_question_card .worker-content .position {
  font-size: 16px;
  line-height: 20px;
  display: block;
}

.health_question.worker-section .worker-detail.item.health_question_card .worker-content::before {

  border-radius: 0 0 5px 5px;
}

.bottm_lig_color {
  margin-top: 80px;
}

.bottm_lig_color h2 {
  text-align: center;
  margin-bottom: 47px;
  font-size: 49px;

}

.bottm_lig_color h3 {
  font-size: 26px !important;
  margin-bottom: 2px !important;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-top: 37px;
}

.steps_section .caption.set_box {
  width: 100px;
  height: 100px;
  display: block;
  background: #6ab904;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 23px;
  color: #fff;
}

.steps_section h5 {
  text-transform: capitalize;
}

.work_with_us .worker-detail.item.health_question_card .worker-content {
  position: unset !important;
}

.work_with_us .worker-detail.item.health_question_card .worker-content::before {
  display: none;
}

.work_with_us .worker-wrapper .tab-content .worker-detail:hover .worker-content .position {
  color: #6cbe03;
}

.work_with_us .worker-wrapper .tab-content .worker-detail .worker-content h5 a:hover {
  color: #3f4c5d;
}

.work_with_us h5 {
  font-size: 20px !important;
  margin-bottom: 22px !important;
  line-height: 27px;
  border-bottom: 1px solid #00000047;
  padding-bottom: 18px;
}

.work_with_us .position {
  display: block;
  font-size: 16px !important;
  line-height: 31px !important;
  margin-bottom: 12px !important;
}

@media(min-width:767px) {

  .work_with_us h5 {
    min-height: 73px;
  }
}

.work_with_us .worker-detail.item.health_question_card:hover {
  box-shadow: 0 6px 17px 3px #206b347a;
  border-radius: 5px !important;
  transition: all .8s ease;
}

.all_team_section h2 {
  margin-bottom: 47px;
}

.all_team_section .worker-detail.item img {
  height: 150px !important;
  width: 150px !important;
  border-radius: 200px !important;
  margin: 30px !important;
}

.all_team_section .worker-detail.item {
  border-top: 0;
  border-left: 0;
  border-bottom: 5px solid #0000002e;
  box-shadow: none !important;
}

.all_team_section .worker-detail.item {
  padding: 10px;
}

.all_team_section .worker-detail.item p {
  margin-top: 12px;
  margin-bottom: 1px;
  color: #000000b0;
  font-size: 14px;
}

.all_team_section .worker-detail.item:hover p {
  color: #fff !important;
  position: relative;
  z-index: 2;
}

.all_team_section .worker-detail .worker-content h5 {
  margin-bottom: 14px !important;

}

.no_bg {
  background: transparent !important;
}

.footer-section .second-footer li a:hover {
  color: #fff;
}
.signup-section .signup-wrapper {
  background: #6cbe03;
}

.homePageOne .header-section .middle-bar .schedule ul {
  display: flex;
  flex-wrap: wrap;
}
.homePageOne .header-section .middle-bar .schedule ul li {

  display: flex;
  justify-content: center;
  align-items: center;
}
@media(max-width:767px){
  .bottm_lig_color h2 {
  font-size: 35px;
  line-height: 38px;
}
.growing-section .content-wrapper h3 {
    font-size: 23px !important;
    line-height: 31px;
}
}

/* new style starts here  */

/* contact_form_sec */

.contact_form_Sec {
  padding-bottom: 0;
  padding: 100px 0;
  border-top: 1px solid #3a3a3a29
}

.contact_form_Sec .section_font.fw-light {
  line-height: 29px;
}


.contact-form .input_boz .form-label {
 font-size: 25px;
  font-weight: 700;
  line-height: 27px;
  font-family: "Inria Sans", sans-serif;
  margin-bottom: 19px;
  margin-left: 17px;
}

.contact-form .input_boz .form-control {
  border-radius: 100px;
  border: 1px solid #85BB65;
  background: #ffffff4a;
  color: #fff;
  height: 44px;
}

.contact-form .input_boz .form-control::placeholder {
  color: #ffffffcf;
}

.contact-form .input_boz {
  margin-bottom: 28px;
}

.contact_form_Sec {
  background: transparent !important;
}

.contact_form_Sec .bacl_bg_contact {
  border-radius: 20px;
  background: var(--fontColorGrey);
  padding: 60px 25px;
  padding-bottom: 0 !important;
}

.contact_form_Sec .common_heading {
  font-size: 40px;
}

.contact_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.contact_btn {
  font-family: Inria Sans;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: transparent;
  border: 1px solid var(--commonBtnBg);
  gap: 20px;
  min-height: 70px;
  max-width: 300px;
  transition: var(--bottomShadow);
}

.contact_btn:hover {
  background: var(--lightGreenHover);
}

.contact_btns .border_btn {
  border-radius: 100px;
  padding: 1px;
  background: linear-gradient(-90deg, #228D57 0%, #85BB65 100%);
}

.contact_btns .border_btn .contact_btn {
  background: var(--fontColorGrey);
  border: 0;
}

.contact_btns .contact_btn:nth-child(2) {
background: #6CBE03;
transition: all .5s ease;
}

.contact_btns .border_btn .contact_btn i {
  font-size: 31px;
  color: #228d57;
  transition: var(--transitionmili5);
}

.contact_btns .contact_btn {
  transition: var(--transitionmili5);
}

.contact_btns .contact_btn:hover {
  background: linear-gradient(90deg, #228D57 0%, #85BB65 100%) !important;
}

.contact_btns .border_btn .contact_btn:hover i {
  color: #fff;
}

/* contact form sec */
.contact_btns.flex-wrap {
display: block;
justify-content: center;
}

.contact_btns .contact_btn,
.contact_btns .border_btn {
  width: 100%;
  min-width: 100%;
}



.contact_us_page_form .bacl_bg_contact {
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.contact_us_page_form *,
.contact_us_page_form input,
.contact_us_page_form textarea {
  color: var(--fontColorGrey) !important;
}

.contact_us_page_form .contact-form .input_boz .form-control::placeholder {
  color: #3e3e3c76;
}

.contact_us_page_form .border_btn .contact_btn,
.contact_us_page_form .border_btn {
  background: transparent !important;

}

.contact_us_page_form .border_btn {
  padding: 0;
}

.contact_us_page_form .border_btn .contact_btn,
.contact_us_page_form .contact_btn {
  border: 1px solid var(--commonBtnBg);
}

.contact_us_page_form .border_btn .contact_btn i {
  color: var(--commonBtnBg) !important;
}

.contact_us_page_form .contact_btns .contact_btn:nth-child(2),
.contact_us_page_form .contact_btns .contact_btn:nth-child(2) i {
  color: #fff !important;
}

.conatct_fomr_info_box.h-100 {
  background: var(--commonBtnBg);
  border-radius: 60px 30px 60px 30px;
  padding: 40px;
  min-height: 400px;
}

.conatct_fomr_info_box * {
  color: #fff !important;
}

.conatct_fomr_info_box .footer_menu h6 {
  font-size: 42px;
  margin-bottom: 30px;
}

.conatct_fomr_info_box .footer_menu .list_item a {
  padding-left: 0 !important;
  margin-bottom: 25px !important;
  font-size: 19px !important;
}

.conatct_fomr_info_box .footer_menu .list_item a i {
  font-size: 30px !important;
}

.contact-form .input_boz textarea.form-control {
  min-height: 100px !important;
  border-radius: 24px !important;
  resize: none;
}
.error_form {
  position: absolute;
  bottom: -26px;
  font-size: 15px;
  color: #ca0000 !important;
}
.input_boz {
  /* position: relative; */
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.new_phone_input.react-tel-input .flag-dropdown {
  border-color: var(--commonBtnBg);
  border-radius: 20px 2px 0 20px;
}
.new_phone_input.react-tel-input .flag-dropdown.open .selected-flag {
  background: #fff;
  border-radius: 20px 0 0 20px;
}

/*  new style  */


.banner_name {
  padding: 100px 0;
  background: #6cbe0336;
}
.banner_name {
  padding: 100px 0;
  background: url(../new_images/slider1.jpg) no-repeat center center;
  position: relative;
  position: relative;
  min-height: 650px;
  background-position: top;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner_name::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background: rgba(0, 0, 0, 0.5);
}
.banner_name .banner_new_text {
  text-align: center;
  font-size: 74px;
  color: #fff;
  position: relative;
  z-index: 10;
}
.contact_form_Sec .common_heading {
  font-size: 40px;
  line-height: 55px;
  font-weight: 600;
  margin-bottom: 75px;
  text-align: center;
}
.conatct_fomr_info_box.h-100 {
  background: var(--commonBtnBg);
  border-radius: 60px 30px;
  padding: 40px;
}
.good_bye_section .section_font {
  font-size: 18px;
  line-height: 23px;
}
.conatct_fomr_info_box .footer_menu h6 {
  font-size: 42px;
}
.footer_menu.contacts_info .footer_menu_list .list_item a {
  gap: 13px;
  font-size: 16px;
  margin-bottom: -5px;
  padding: 0 0 0 15px;
    padding-left: 15px;
    display: flex;
}
.footer_menu.contacts_info .footer_menu_list .list_item a:hover{
  scale: 1.05;
}
.border_btn {
  width: 300px !important;
  min-width: 0 !important;
}
.contact-form .input_boz textarea.form-control.subject_textarea {
  min-height: 50px !important;
}

.privacy_text {
  padding: 100px 0;
}
.privacy_text .main_text_box {
  max-width: 1000px;
  margin: 0 auto;
  background: #6cbe03a6;
  padding: 30px 25px;
  border-radius: 25px;
  color: #000;
}
.privacy_text .main_text_box p {
  font-size: 16px;
  margin-bottom: 25px;
}

.privacy_text .main_text_box ul {
  padding-left: 25px;
}
.privacy_text .main_text_box ul li {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 22px;
  list-style: disc;
}
.navbar-brand img {
  height: 55px;
}
.header-section .navbar.sticky .navbar-header .navbar-brand img {
  padding: 0 0;
    padding-top: 0px;
  padding-top: 8px;
}
.menu-toggle.sticky::before{
  content: "";
  position: absolute;
  width: 147px;
  height: 50px;
  left: 0;
  right: 0;
  top: 36%;
  margin: -15px auto 0;
  background: url(../images/logo-m.png) no-repeat;
    background-size: auto;
  background-size: contain;
}
@media(max-width:767px){
  .banner_name {
  min-height: 350px;

  }
  .banner_name .banner_new_text {
  font-size: 44px;
  }
  .contact_form_Sec .common_heading {
  font-size: 27px;
  line-height: 41px;
  }
  .contact-form .input_boz .form-label {
  font-size: 19px;
  line-height: 19px;
  margin-bottom: 10px;
  margin-left: 17px;
}
.conatct_fomr_info_box.h-100 {
  margin-top: 63px;
  min-height: 150px;
}
.conatct_fomr_info_box .footer_menu h6 {
  font-size: 32px;
}
.conatct_fomr_info_box .footer_menu .list_item a {
  padding-left: 0 !important;
  margin-bottom: 21px !important;
  font-size: 16px !important;
}
.privacy_text {
  padding: 55px 20px;
}
  .navbar-brand img {
    height: 52px;
  }
.navbar-brand {
  float: left;
  height: 50px;
  padding: 0 15px;
  font-size: 18px;
  line-height: 20px;
}
}
.contact_btn.btn.btn-default.pull-right:hover{
  color: #fff !important;
}
.contact_btn.btn.btn-default.pull-right:hover i {
  color: #fff !important;
}
.no_hover:hover {
  color: #FFF;
}