/* -------------------------------------------------------------
  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=Open+Sans:300,400,600,700|Poppins:300,400,500,600,700);
/* =========================================================
        General
============================================================ */
body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  color: #99a4b0;
  background-color: #ffffff;
  overflow-x: hidden; }

html {
  font-family: "Open Sans", sans-serif; }

html,
body {
  width: 100%;
  height: 100%; }

/* ================= Kurs walut ==================== */
#gielda {
	height: 45px;
	background: #d6d6d6;
    padding-top: 3px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
#gielda table:hover {
    animation-play-state: paused
}

/* Make it move */
@keyframes marquee {
    0%   { left: -275px }
    100% { left: -2000px }
}

#gielda table{
	position: relative;
    left: -275px;
    animation: marquee 40s linear infinite;
}
#gielda tbody{
	display: flex;
}
#gielda tbody td{
	font-size: 16px!important;
}
#gielda tbody tr{
	width: 285px;
}



/* ================= Link style ==================== */
a {
  color: #39a835; }

a,
a > * {
  outline: none;
  cursor: pointer;
  text-decoration: none; }

a:focus,
a:hover {
  color: #008fcb;
  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: 72px;
  font-weight: 700;
  line-height: 90px;
  color: #FFFFFF; }

h2 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 500;
  color: #5f5f5f; }
  @media only screen and (max-width: 991px) {
    h2 {
      font-size: 30px;
      line-height: 35px; } }
  @media only screen and (max-width: 767px) {
    h2 {
      font-size: 25px;
      line-height: 30px; } }
  @media only screen and (max-width: 479px) {
    h2 {
      font-size: 20px;
      line-height: 25px; } }
  @media only screen and (max-width: 315px) {
    h2 {
      font-size: 18px;
      line-height: 22px; } }

h3 {
  font-size: 30px;
  line-height: 48px;
  color: #5f5f5f; }
  @media (min-width: 480px) and (max-width: 991px) {
    h3 {
      font-size: 25px;
      line-height: 40px; } }
  @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 {
  font-size: 14px;
  margin: 0 0 3px;
  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: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700; }

.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 {
  -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 {
  font-size: 18px;
  font-weight: 600;
  color: #39a835;
  background-color: transparent;
  border: 2px solid #39a835;
  padding: 12px 44px;
  border-radius: 25px; }

.line{
  right: auto !important;
  top:40px !important;
}
.help{
  margin-left: 0px;
  margin-top: 130px;
}

.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,
.btn-primary.active, .btn-primary:active,
.open > .dropdown-toggle.btn-primary {
  color: #FFFFFF;
  background-color: #39a835;
  border-color: #39a835; }

@media screen and (max-width: 480px) {
  .btn-default {
    padding: 10px 20px; } }
.btn-primary {
  font-size: 18px;
  font-weight: 400;
  background-color: #39a835;
  border: 0;
  padding: 12px 44px;
  border-radius: 25px;
  -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,
.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: #006b98; }

@media screen and (max-width: 480px) {
  .btn-primary {
    padding: 10px 30px; } }
.homePageTwo .btn-primary:hover,
.homePageTwo .btn-primary.focus,
.homePageTwo .btn-primary:focus,
.homePageTwo .btn-primary.active.focus,
.homePageTwo .btn-primary.active:focus,
.homePageTwo .btn-primary.active:hover,
.homePageTwo .btn-primary:active.focus,
.homePageTwo .btn-primary:active:focus,
.homePageTwo .btn-primary:active:hover,
.homePageTwo .open > .dropdown-toggle.btn-primary.focus,
.homePageTwo .open > .dropdown-toggle.btn-primary:focus,
.homePageTwo .open > .dropdown-toggle.btn-primary:hover {
  background-color: #006b98; }

.homePageThree .btn-primary {
  background-color: #36afe8; }
.homePageThree .btn-primary:hover,
.homePageThree .btn-primary.focus,
.homePageThree .btn-primary:focus,
.homePageThree .btn-primary.active.focus,
.homePageThree .btn-primary.active:focus,
.homePageThree .btn-primary.active:hover,
.homePageThree .btn-primary:active.focus,
.homePageThree .btn-primary:active:focus,
.homePageThree .btn-primary:active:hover,
.homePageThree .open > .dropdown-toggle.btn-primary.focus,
.homePageThree .open > .dropdown-toggle.btn-primary:focus,
.homePageThree .open > .dropdown-toggle.btn-primary:hover {
  background-color: #1376a5; }

.homePageFour .btn-primary {
  background-color: #DE2A1C; }
.homePageFour .btn-primary:hover,
.homePageFour .btn-primary.focus,
.homePageFour .btn-primary:focus,
.homePageFour .btn-primary.active.focus,
.homePageFour .btn-primary.active:focus,
.homePageFour .btn-primary.active:hover,
.homePageFour .btn-primary:active.focus,
.homePageFour .btn-primary:active:focus,
.homePageFour .btn-primary:active:hover,
.homePageFour .open > .dropdown-toggle.btn-primary.focus,
.homePageFour .open > .dropdown-toggle.btn-primary:focus,
.homePageFour .open > .dropdown-toggle.btn-primary:hover {
  background-color: #831911; }

.subscribeBtn {
  background-color: #39a835;
  border: 0; }

.homePageThree .subscribeBtn {
  background-color: #36afe8; }

/* =========================================================
        Color Switcher Option
============================================================ */
/* =========================================================
        View Option
============================================================ */
.box-layout {
  margin: 0 auto;
  background-color: #eee; }
  @media only screen and (min-width: 1200px) {
    .box-layout {
      width: 1200px; }
      .box-layout .header-section .navbar.sticky {
        width: 1200px;
        margin: -70px auto 0; } }
  @media (max-width: 2100px) and (min-width: 1500px) {
    .box-layout .header-section .navbar .navbar-collapse .navbar-nav li .megamenu {
      left: -650px; } }
  .box-layout .header-section .navbar .navbar-collapse .navbar-nav li .map-menu {
    left: auto;
    right: -30px; }
  .box-layout .slider-section .tp-banner-container {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 auto; }
  .box-layout .slider-section .tparrows.tp-leftarrow {
    left: 0 !important; }
  .box-layout .slider-section .tparrows.tp-rightarrow {
    right: 0 !important; }
  .box-layout .footer-section {
    width: 1200px;
    margin: 0 auto; }

/* =========================================================
        Color Presets For Class
============================================================ */
.phone {
  color: #54be73; }

.mail {
  color: #e74c3c; }

.facebook {
  color: #106ed2; }

.twitter {
  color: #3ad0fb; }

.linkedin {
  color: #1379bb; }

/* =========================================================
        Global Classes
============================================================ */
.no-margin {
  margin: 0; }

.no-padding {
  padding: 0; }

.section-padding {
  padding: 70px 0; }
  @media only screen and (max-width: 991px) {
    .section-padding {
      padding: 70px 0; } }
  @media only screen and (max-width: 767px) {
    .section-padding {
      padding: 50px 0; } }

.padding-left {
  padding-left: 0; }

.padding-right {
  padding-right: 0; }

.inline-block {
  display: inline-block; }

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

/* =========================================================
        Light-Box STYLE
============================================================ */
.poptrox-popup {
  background: transparent !important; }
  .poptrox-popup .caption {
    display: none; }
  .poptrox-popup .closer {
    background: transparent;
    display: none; }

/* =========================================================
        FORM STYLE
============================================================ */
.form-control:focus {
  box-shadow: none; }

/* =========================================================
        Pagination STYLE
============================================================ */
.pagination-wrapper .pagination {
  margin: 70px 0 0; }
  .pagination-wrapper .pagination li a,
  .pagination-wrapper .pagination li span {
    font-size: 20px;
    font-weight: 700;
    background-color: transparent;
    border: 0;
    color: #000000;
    padding: 0px 8px; }
    .pagination-wrapper .pagination li a.active,
    .pagination-wrapper .pagination li span.active {
      color: #39a835; }
    .pagination-wrapper .pagination li a .icon,
    .pagination-wrapper .pagination li span .icon {
      font-size: 15px; }
      .pagination-wrapper .pagination li a .icon.first,
      .pagination-wrapper .pagination li span .icon.first {
        color: #bbbfc2; }
    @media only screen and (max-width: 350px) {
      .pagination-wrapper .pagination li a,
      .pagination-wrapper .pagination li span {
        font-size: 17px;
        padding: 0px 4px; } }

/* =========================================================
        Main-Wrapper STYLE
============================================================ */
#main-wrapper {
  position: relative;
  background-color: #FFFFFF;
  z-index: 99; }
  @media only screen and (max-width: 991px) {
    #main-wrapper {
      margin-bottom: 0; } }

/* =========================================================
        Section-Title STYLE
============================================================ */
.title-bar {
  position: relative; }
  .title-bar .title {
    letter-spacing: -.5px;
    margin-bottom: 20px;
    padding-bottom: 20px; }
    @media only screen and (max-width: 768px) {
      .title-bar .title {
        margin-bottom: 5px; } }
  .title-bar .title-border {
    position: absolute;
    top: 61px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90px;
    height: 2px;
    background-color: #39a835; }
    @media only screen and (max-width: 991px) {
      .title-bar .title-border {
        top: 52px; } }
    @media only screen and (max-width: 767px) {
      .title-bar .title-border {
        width: 80px;
        top: 42px;
        height: 3px; } }
    @media only screen and (max-width: 479px) {
      .title-bar .title-border {
        top: 35px;
        width: 60px; } }
  .title-bar p {
    color: #667380;
    padding-top: 5px; }
    @media only screen and (max-width: 479px) {
      .title-bar p {
        font-size: 14px;
        line-height: 25px; } }

.header-title {
  padding: 280px 0 160px; }
  @media (min-width: 992px) and (max-width: 1399px) {
    .header-title {
      padding: 260px 0 130px; } }
  @media only screen and (max-width: 991px) {
    .header-title {
      padding: 120px 0; } }
  @media (min-width: 480px) and (max-width: 767px) {
    .header-title {
      padding: 100px 0; } }
  @media only screen and (max-width: 479px) {
    .header-title {
      padding: 70px 0 60px; } }
  .header-title .title {
    font-size: 60px;
    font-weight: 500;
    line-height: 90px;
    color: #FFFFFF;
    margin-bottom: 0; }
    @media only screen and (max-width: 991px) {
      .header-title .title {
        font-size: 50px;
        line-height: 60px; } }
    @media (min-width: 480px) and (max-width: 767px) {
      .header-title .title {
        font-size: 35px;
        line-height: 45px; } }
    @media only screen and (max-width: 479px) {
      .header-title .title {
        font-size: 25px;
        line-height: 35px; } }
  .header-title .sub-title {
    font-size: 22px;
    color: #FFFFFF; }
    .header-title .sub-title span {
      color: #39a835; }
    @media (min-width: 480px) and (max-width: 767px) {
      .header-title .sub-title {
        font-size: 18px; } }
    @media only screen and (max-width: 479px) {
      .header-title .sub-title {
        font-size: 15px; } }

/* =========================================================
        Header STYLE
============================================================ */
#box {
  position: absolute;
  height: 50px;
  width: 100%;
  z-index: 22;
  padding: 12px 0; }
  #box .top-bar .left-bar ul li {
    position: relative;
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFF;
    display: inline-block;
    margin-right: 10px;
    padding-right: 20px; }
    @media (min-width: 992px) and (max-width: 1199px) {
      #box .top-bar .left-bar ul li {
        font-size: 16px; } }
    #box .top-bar .left-bar ul li:last-child {
      margin-right: 0;
      padding-right: 0; }
      #box .top-bar .left-bar ul li:last-child::after {
        display: none; }
    #box .top-bar .left-bar ul li::after {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      width: 5px;
      height: 30px;
      background: url(../images/border.png) no-repeat; }
    #box .top-bar .left-bar ul li img {
      margin-right: 10px; }
  #box .top-bar .right-bar .country {
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFF;
    margin-right: 60px; }
    #box .top-bar .right-bar .country i {
      font-size: 20px;
      color: #39a835;
      vertical-align: middle;
      margin-right: 5px; }
    #box .top-bar .right-bar .country .dropdown-select {
      background: transparent;
      border: 0; }
      #box .top-bar .right-bar .country .dropdown-select:focus {
        outline: none; }
      #box .top-bar .right-bar .country .dropdown-select option {
        background: #39a835; }
  #box .top-bar .right-bar .social-icon li {
    display: inline-block;
    margin-right: 15px; }
    #box .top-bar .right-bar .social-icon li:last-child {
      margin-right: 0; }
    #box .top-bar .right-bar .social-icon li i {
      font-size: 16px;
      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; }
      #box .top-bar .right-bar .social-icon li i:hover {
        color: #39a835; }

.header-section {
  position: absolute;
  top: 50px;
  width: 100%;
  z-index: 999; }
  @media only screen and (max-width: 991px) {
    .header-section {
      top: 0; } }
  .header-section .navbar {
    border-radius: 0;
    border: 0;
    background-color: transparent;
    padding: 0;
    margin: 0;
    /*transform: translateY(50px);*/
    -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) {
      .header-section .navbar {
        padding: 15px 0; } }
    .header-section .navbar.navbar-inverse .navbar-nav > .open > a, .header-section .navbar.navbar-inverse .navbar-nav > .open > a:focus, .header-section .navbar.navbar-inverse .navbar-nav > .open > a:hover {
      background-color: transparent; }
    .header-section .navbar.sticky {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      box-shadow: 0px 5px 20px 0px rgba(57, 168, 53, 0.4);
      padding: 0;
      line-height: 0;
      /*transform: translateY(0);*/
      z-index: 998; }
      @media only screen and (max-width: 991px) {
      .header-section .navbar.sticky {
        display: none; } }
      .navbar-wrapper-right {
        float: right;
        margin-right: 28px; }
      .header-section .navbar.sticky .navbar-wrapper {
        position: relative; }
      .header-section .navbar.sticky .navbar-wrapper::before {
          content: "";
          position: absolute;
          left: -100%;
          top: 0;
          width: 100%;
          height: 80px;
          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; }
      .header-section .navbar.sticky .navbar-nav li:hover .dropdown {
        z-index: 9; }
      .header-section .navbar.sticky .navbar-nav li .dropdown {
        z-index: -1; }
        .header-section .navbar.sticky .navbar-nav li .dropdown a {
          color: #676767 !important; }
          .header-section .navbar.sticky .navbar-nav li .dropdown a:hover {
            color: #39a835 !important; }
      .header-section .navbar.sticky .navbar-nav li.active > a {
        color: #39a835 !important; }
      .header-section .navbar.sticky .navbar-nav li:hover > a {
        color: #39a835 !important; }
      .header-section .navbar.sticky .navbar-nav li a {
        color: #222 !important; }
      .header-section .navbar.sticky .navbar-nav li .dropdown-menu li a {
        line-height: 45px !important; }
      .header-section .navbar.sticky .navbar-nav li.dropdown:hover .dropdown-menu {
        top: 90px !important; }
      .header-section .navbar.sticky .nav-right-bar:after {
        content: "";
        position: absolute;
        top: 0;
        right: -800px;
        width: 800px;
        height: 80px;
        background: #39a835;
        -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-wrapper {
      background: #FFFFFF;
      display: inline-block;
      line-height: 0; }
      @media only screen and (max-width: 991px) {
        .header-section .navbar .navbar-wrapper {
          background: transparent; } }
      .header-section .navbar .navbar-wrapper .navbar-header .navbar-brand {
        margin-left: 0;
        padding: 5px; }
        @media only screen and (max-width: 991px) {
          .header-section .navbar .navbar-wrapper .navbar-header .navbar-brand {
            padding: 15px 0; } }
        .header-section .navbar .navbar-wrapper .navbar-header .navbar-brand img {
          max-width: 140px;
          -webkit-transition: 1s;
          -khtml-transition: 1s;
          -moz-transition: 1s;
          -ms-transition: 1s;
          -o-transition: 1s;
          transition: 1s; }
        .header-section .navbar .navbar-wrapper .navbar-header .navbar-brand .caption-two {
          position: absolute;
          top: -48px;
          left: 25px; }
        @media (min-width: 992px) and (max-width: 1199px) {
          .header-section .navbar .navbar-wrapper .navbar-header .navbar-brand {
            padding: 5px 5px; } }
      @media only screen and (max-width: 991px) {
        .header-section .navbar .navbar-wrapper .navbar-header {
          float: none; }
          .header-section .navbar .navbar-wrapper .navbar-header .navbar-brand {
            float: none;
            margin: 0;
            padding-bottom: 20px; } }
      .header-section .navbar .navbar-wrapper .navbar-collapse {
        padding: 0;
        display: inline-block !important;
        margin-left: 182px; }
        @media (min-width: 992px) and (max-width: 1199px) {
          .header-section .navbar .navbar-wrapper .navbar-collapse {
            margin-left: 70px; } }
        @media only screen and (max-width: 991px) {
          .header-section .navbar .navbar-wrapper .navbar-collapse {
            display: none !important; } }
        @media only screen and (max-width: 991px) {
          .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav {
            float: none !important;
            display: inline-block; } }
        .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li {
          position: relative;
          font-family: "Poppins", sans-serif;
          font-size: 14px;
          font-weight: 600;
          text-transform: uppercase;
          margin: 0 25px; }
          @media (min-width: 992px) and (max-width: 1199px) {
            .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li {
              margin: 0 24px; } }
          @media (min-width: 768px) and (max-width: 991px) {
            .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li {
              margin: 0 15px; } }
          .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li:last-child {
            margin-right: 0; }
            .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li:last-child::before {
              content: "";
              position: absolute;
              top: 0;
              right: -60px;
              border-top: 0 solid transparent;
              border-bottom: 80px solid transparent;
              border-left: 60px solid #FFFFFF; }
          .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li::after, .header-section .navbar .navbar-wrapper-right .search-view .navbar-nav li::after {
            content: "";
            position: absolute;
            top: 0;
            left: -25%;
            width: 0%;
            height: 4px;
            background: #39a835;
            -webkit-transition: 0.5s ease;
            -khtml-transition: 0.5s ease;
            -moz-transition: 0.5s ease;
            -ms-transition: 0.5s ease;
            -o-transition: 0.5s ease;
            transition: 0.5s ease; }
          .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li a {
            color: #5f5f5f;
            padding: 0;
            line-height: 80px; }
            .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li a:hover {
              color: #39a835;
              background-color: transparent; }
          .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li.active a {
            color: #39a835;
            background-color: transparent; }
          .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li.active::after {
            content: "";
            position: absolute;
            top: 0;
            left: -25%;
            width: 150%;
            height: 4px;
            background: #39a835; }
          .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li:hover::after, .header-section .navbar .navbar-wrapper-right .search-view .navbar-nav li:hover::after {
            width: 150%; }
          .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu {
            top: 90px;
            visibility: visible;
            opacity: 1;
            z-index: 1;
            transform: translateY(0%);
            transition-delay: 0s, 0s, 0.3s; }
          .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li .dropdown-menu {
            top: 90px;
            left: -50px;
            min-width: 200px;
            background-color: #222;
            padding: 10px 0;
            display: block;
            visibility: hidden;
            opacity: 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-wrapper .navbar-collapse .navbar-nav li .dropdown-menu li {
              position: relative;
              font-size: 16px;
              border-bottom: 1px solid #2d2d2d;
              margin: 0 25px;
              padding: 0 5px;
              -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-wrapper .navbar-collapse .navbar-nav li .dropdown-menu li:hover::after {
                display: none; }
              .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li .dropdown-menu li:hover::before {
                width: 100%; }
              .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li .dropdown-menu li.active::after {
                display: none; }
              .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li .dropdown-menu li.active a {
                color: #39a835 !important; }
              .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li .dropdown-menu li:last-child {
                border-bottom: 0; }
              .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li .dropdown-menu li::before {
                content: "";
                position: absolute;
                width: 0;
                height: 1px;
                left: 0;
                bottom: 0;
                background: #39a835;
                -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-wrapper .navbar-collapse .navbar-nav li .dropdown-menu li a {
                color: #676767 !important;
                line-height: 45px; }
                .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li .dropdown-menu li a:hover {
                  color: #39a835 !important; }
              .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li .dropdown-menu li:hover .sub-dropdown {
                opacity: 1;
                right: -136%; }
              .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li .dropdown-menu li:last-child::before {
                display: none; }
            .header-section .navbar .navbar-wrapper .navbar-collapse .navbar-nav li .dropdown-menu .sub-dropdown {
              position: absolute;
              top: 0;
              right: -120%;
              width: 180px;
              background-color: #222;
              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 .nav-right-bar {
      position: relative;
      background: #39a835;
      color: #FFFFFF;
      padding: 0 46px;
      text-transform: uppercase; }
      .header-section .navbar .nav-right-bar a {
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #5f5f5f;
        padding: 0px 15px;
        line-height: 80px; }
        .header-section .navbar .nav-right-bar a:hover {
          color: #39a735; }
      @media (min-width: 992px) and (max-width: 1199px) {
        .header-section .navbar .nav-right-bar {
          padding: 0 25px; }
        .navbar-wrapper-right {
          margin-right: 47px; } }
      .header-section .navbar .nav-right-bar::before {
        content: "";
        position: absolute;
        left: -60px;
        top: 0;
        border-top: 91px solid transparent;
        border-bottom: 0 solid transparent;
        border-right: 60px solid #39a835; }
      .header-section .navbar .nav-right-bar i {
        font-size: 20px;
        margin-left: 40px; }
        @media (min-width: 992px) and (max-width: 1199px) {
          .header-section .navbar .nav-right-bar i {
            margin-left: 15px; } }
      .header-section .navbar .nav-right-bar .search-view {
        cursor: pointer;
        display: inline-block; }
        .header-section .navbar .nav-right-bar .search-view #search-bar {
          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 );
          position: fixed;
          width: 100%;
          height: 100%;
          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 .nav-right-bar .search-view #search-bar.active {
            visibility: visible;
            opacity: .95; }
            .header-section .navbar .nav-right-bar .search-view #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 .nav-right-bar .search-view #search-bar .close-bar {
            padding-right: 60px;
            width: 100%;
            height: 100%;
            text-align: right; }
            .header-section .navbar .nav-right-bar .search-view #search-bar .close-bar i {
              color: #FFFFFF;
              font-size: 22px; }
          .header-section .navbar .nav-right-bar .search-view #search-bar .form-bar {
            position: relative;
            width: 50%;
            top: 50%;
            margin: -50px auto; }
            .header-section .navbar .nav-right-bar .search-view #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 .nav-right-bar .search-view #search-bar .form-bar .form-group .form-control {
                font-size: 32px;
                color: #FFFFFF;
                background-color: transparent;
                border: 0;
                border-radius: 0;
                border-bottom: 3px solid #FFFFFF;
                box-shadow: none;
                height: auto;
                padding: 0; }
            .header-section .navbar .nav-right-bar .search-view #search-bar .form-bar input[placeholder], .header-section .navbar .nav-right-bar .search-view #search-bar .form-bar [placeholder], .header-section .navbar .nav-right-bar .search-view #search-bar .form-bar *[placeholder] {
              color: #FFFFFF !important; }

/* =========================================================
        Slider STYLE
============================================================ */
.slider-section .main-slider {
  width: 100%; }
  @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(../images/slider/slider-5.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 700px; }
    @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(../images/slider/slider-1.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 700px; }
    @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(../images/slider/slider-3.jpg) no-repeat center center;
        background-size: cover;
        width: 100%;
        height: 700px; }
    @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: 35%;
    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; }
    .slider-section .main-slider #main-slider-carousel .carousel-inner .content .large-text {
      font-family: "Poppins", sans-serif;
      font-size: 60px;
      font-weight: 600;
      line-height: 70px;
      color: #FFFFFF; }
      @media only screen and (max-width: 1199px) {
        .slider-section .main-slider #main-slider-carousel .carousel-inner .content .large-text {
          font-size: 55px;
          line-height: 60px; } }
      @media only screen and (max-width: 991px) {
        .slider-section .main-slider #main-slider-carousel .carousel-inner .content .large-text {
          font-size: 45px;
          line-height: 50px; } }
      @media only screen and (max-width: 767px) {
        .slider-section .main-slider #main-slider-carousel .carousel-inner .content .large-text {
          font-size: 35px;
          line-height: 40px; } }
      @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-family: "Poppins", sans-serif;
      font-size: 20px;
      line-height: 35px;
      color: #FFFFFF;
      letter-spacing: .5px; }
      @media only screen and (max-width: 1199px) {
        .slider-section .main-slider #main-slider-carousel .carousel-inner .content .small-text {
          font-size: 18px;
          line-height: 30px; } }
      @media only screen and (max-width: 991px) {
        .slider-section .main-slider #main-slider-carousel .carousel-inner .content .small-text {
          font-size: 16px;
          line-height: 27px; } }
      @media only screen and (max-width: 991px) {
        .slider-section .main-slider #main-slider-carousel .carousel-inner .content .small-text {
          font-size: 14px;
          line-height: 24px; } }
      @media only screen and (max-width: 991px) {
        .slider-section .main-slider #main-slider-carousel .carousel-inner .content .small-text {
          font-size: 12px;
          line-height: 20px; } }
    .slider-section .main-slider #main-slider-carousel .carousel-inner .content .link-button {
      margin-top: 35px; }
      @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-family: "Poppins", sans-serif;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        color: #FFFFFF !important;
        margin: 0 7px;
        border-radius: 0;
        padding: 12px 34px;
        border: 2px solid transparent; }
        .slider-section .main-slider #main-slider-carousel .carousel-inner .content .link-button .btn-primary:hover {
          background-color: transparent;
          border: 2px solid #FFFFFF; }
        @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-inner .content .link-button .btn-default {
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        color: #fcfcfc;
        background-color: transparent;
        border: 2px solid #FFFFFF;
        border-radius: 0;
        margin: 0 7px; }
        .slider-section .main-slider #main-slider-carousel .carousel-inner .content .link-button .btn-default:hover {
          background-color: #39a835;
          border-color: #39a835; }
        @media only screen and (max-width: 991px) {
          .slider-section .main-slider #main-slider-carousel .carousel-inner .content .link-button .btn-default {
            padding: 8px 30px; } }
        @media only screen and (max-width: 767px) {
          .slider-section .main-slider #main-slider-carousel .carousel-inner .content .link-button .btn-default {
            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-default {
            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: 30px;
    height: 40px;
    line-height: 36px;
    top: 50%;
    margin-top: -20px;
    opacity: 1;
    border: 1px solid #39a835;
    font-size: 25px;
    background: #565656;
    border-radius: 4px; }
    .slider-section .main-slider #main-slider-carousel .carousel-control.left:hover, .slider-section .main-slider #main-slider-carousel .carousel-control.right:hover {
      background: #39a835; }
    @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; }

/* =========================================================
        Working-Section STYLE
============================================================ */
.working-section {
  background-color: #FFFFFF; }
  @media only screen and (max-width: 479px) {
    .working-section {
      padding: 20px 0; } }
  .working-section .section-wrapper .wrapper-content h4 {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 1px;
    color: #333333; }
    @media only screen and (max-width: 991px) {
      .working-section .section-wrapper .wrapper-content h4 {
        font-size: 20px; } }
    @media only screen and (max-width: 767px) {
      .working-section .section-wrapper .wrapper-content h4 {
        font-size: 18px;
        margin-top: 15px; } }
  .working-section .section-wrapper .wrapper-content p {
    font-size: 18px;
    line-height: 30px;
    color: #999999;
    /*word-break: break-all;*/ }
    @media only screen and (max-width: 767px) {
      .working-section .section-wrapper .wrapper-content p {
        font-size: 16px;
        line-height: 27px; } }
  .working-section .section-wrapper .wrapper-content .btn {
    margin-top: 22px; }
    @media only screen and (max-width: 991px) {
      .working-section .section-wrapper .wrapper-content .btn {
        font-size: 16px;
        padding: 8px 25px; } }
    @media only screen and (max-width: 767px) {
      .working-section .section-wrapper .wrapper-content .btn {
        font-size: 14px;
        padding: 7px 15px; } }
  .working-section .section-wrapper .video-wrapper {
    margin-left: 60px; }
    @media only screen and (max-width: 991px) {
      .working-section .section-wrapper .video-wrapper {
        margin: 80px 0 0; } }
    @media only screen and (max-width: 767px) {
      .working-section .section-wrapper .video-wrapper {
        margin: 50px 0 0; } }
    .working-section .section-wrapper .video-wrapper video {
      width: 100%; }
  .working-section .working-wrapper .wrapper-content p {
    font-size: 18px;
    line-height: 30px;
    color: #999999; }
    .working-section .working-wrapper .wrapper-content p strong {
      font-size: 30px;
      letter-spacing: 1px;
      color: #333333; }
  .working-section .working-wrapper .wrapper-content h4 {
    color: #0d1d36; }
  .working-section .working-wrapper .wrapper-content .btn {
    margin-top: 22px;
    color: #FFFFFF;
    background-color: #0d1d36; }
    .working-section .working-wrapper .wrapper-content .btn:hover {
      background-color: #DE2A1C; }
  @media only screen and (max-width: 991px) {
    .working-section .working-wrapper .wrapper-content {
      margin-bottom: 80px; } }
  .working-section .working-wrapper #working-carousel {
    overflow: hidden; }
    .working-section .working-wrapper #working-carousel .carousel-inner img {
      width: 100%; }
    .working-section .working-wrapper #working-carousel:hover .carousel-control.left {
      transform: translateX(20px); }
    .working-section .working-wrapper #working-carousel:hover .carousel-control.right {
      transform: translateX(-20px); }
    .working-section .working-wrapper #working-carousel .carousel-control.left {
      transform: translateX(-50px); }
    .working-section .working-wrapper #working-carousel .carousel-control.right {
      transform: translateX(50px); }
    .working-section .working-wrapper #working-carousel .carousel-control.left, .working-section .working-wrapper #working-carousel .carousel-control.right {
      top: 50%;
      width: 50px;
      height: 50px;
      margin-top: -25px;
      background-image: none;
      text-shadow: none;
      opacity: 1; }
      .working-section .working-wrapper #working-carousel .carousel-control.left i, .working-section .working-wrapper #working-carousel .carousel-control.right i {
        font-size: 25px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        color: #0d1d36;
        border-radius: 50%;
        background-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; }
        .working-section .working-wrapper #working-carousel .carousel-control.left i:hover, .working-section .working-wrapper #working-carousel .carousel-control.right i:hover {
          color: #FFFFFF;
          background-color: #0d1d36; }
  .working-section .working-section-two h2 {
    position: relative;
    margin-bottom: 53px; }
    @media only screen and (max-width: 767px) {
      .working-section .working-section-two h2 {
        margin-bottom: 10px;
        font-size: 30px;
        line-height: 35px; } }
    @media only screen and (max-width: 479px) {
      .working-section .working-section-two h2 {
        font-size: 25px;
        line-height: 30px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .working-section .working-section-two h2 {
        font-size: 30px;
        line-height: 35px; } }
    .working-section .working-section-two h2::before {
      content: "";
      position: absolute;
      width: 80px;
      height: 2px;
      right: 21px;
      bottom: 7px;
      background-color: #39a835; }
      @media only screen and (max-width: 1200px) {
        .working-section .working-section-two h2::before {
          display: none; } }
  .working-section .working-section-two p {
    font-size: 20px;
    line-height: 30px;
    color: #999999; }
    @media only screen and (max-width: 991px) {
      .working-section .working-section-two p {
        margin-bottom: 50px;
        font-size: 18px;
        line-height: 27px; } }
    @media only screen and (max-width: 767px) {
      .working-section .working-section-two p {
        margin-bottom: 50px;
        font-size: 18px; } }
  .working-section .working-section-two .wrapper-content img {
    width: 100%; }
  .working-section .working-section-two .wrapper-content h3 {
    position: relative;
    font-size: 20px;
    line-height: 25px;
    border-bottom: 2px solid #d8d8d8;
    margin: 15px 0;
    padding-bottom: 15px; }
    .working-section .working-section-two .wrapper-content h3::before {
      content: "";
      position: absolute;
      width: 0;
      height: 2px;
      left: 0;
      bottom: -2px;
      background-color: #39a835;
      -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: 768px) and (max-width: 991px) {
      .working-section .working-section-two .wrapper-content h3 {
        font-size: 20px;
        line-height: 25px; } }
    @media (min-width: 480px) and (max-width: 767px) {
      .working-section .working-section-two .wrapper-content h3 {
        font-size: 20px;
        line-height: 25px; } }
    @media only screen and (max-width: 479px) {
      .working-section .working-section-two .wrapper-content h3 {
        font-size: 18px;
        line-height: 22px; } }
  .working-section .working-section-two .wrapper-content:hover h3::before {
    width: 100%; }
  .working-section .working-section-two .wrapper-content .link {
    font-size: 17px;
    font-weight: 600; }
    .working-section .working-section-two .wrapper-content .link i {
      transform: rotate(90deg); }
    @media only screen and (max-width: 479px) {
      .working-section .working-section-two .wrapper-content .link {
        font-size: 15px; } }
  @media only screen and (max-width: 767px) {
    .working-section .working-section-two .wrapper-content {
      margin-bottom: 50px; } }
  .working-section .working-section-two .first-part {
    margin-bottom: 40px; }

/* =========================================================
        CTA-Section STYLE
============================================================ */
.call-to-action {
  position: relative;
  background-color: #eeeeee;
  padding-bottom: 50px; }
  @media only screen and (max-width: 479px) {
    .call-to-action {
      padding-bottom: 30px; } }
  .call-to-action .action-wrapper {
    background-color: #FFFFFF;
    padding: 30px 40px 30px 0;
    border-right: 3px solid #39a835;
    margin-bottom: 35px;
    -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: 600px) and (max-width: 767px) {
      .call-to-action .action-wrapper {
        margin: 0 50px 35px; } }
    .call-to-action .action-wrapper:hover {
      background-color: #363435;
      border-right: 3px solid #363435; }
      .call-to-action .action-wrapper:hover .icon-wrapper {
        transform: translateX(0px); }
        .call-to-action .action-wrapper:hover .icon-wrapper::before {
          border-right: 15px solid #363435; }
      .call-to-action .action-wrapper:hover .content-wrapper h3 a {
        color: #FFFFFF; }
        .call-to-action .action-wrapper:hover .content-wrapper h3 a:hover {
          color: #39a835; }
      .call-to-action .action-wrapper:hover .content-wrapper p {
        color: #FFFFFF; }
    .call-to-action .action-wrapper .icon-wrapper {
      position: relative;
      width: 70px;
      height: 65px;
      background-color: #363435;
      margin-top: 25px;
      transform: translateX(-10px);
      -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: 600px) and (max-width: 767px) {
        .call-to-action .action-wrapper .icon-wrapper {
          margin-top: 10px; } }
      .call-to-action .action-wrapper .icon-wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        border-right: 15px solid #FFFFFF;
        border-top: 0 solid transparent;
        border-bottom: 65px 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; }
      .call-to-action .action-wrapper .icon-wrapper i {
        font-size: 25px;
        color: #39a835;
        margin-top: 20px; }
    .call-to-action .action-wrapper .content-wrapper {
      margin-left: 90px; }
      @media only screen and (max-width: 479px) {
        .call-to-action .action-wrapper .content-wrapper {
          margin-left: 75px; } }
      .call-to-action .action-wrapper .content-wrapper h3 {
        font-size: 22px;
        line-height: 25px;
        margin-bottom: 12px; }
        .call-to-action .action-wrapper .content-wrapper h3 a {
          color: #5f5f5f; }
          .call-to-action .action-wrapper .content-wrapper h3 a:hover {
            color: #39a835; }
      .call-to-action .action-wrapper .content-wrapper p {
        word-break: break-all;
        color: #667380;
        margin-bottom: 0;
        -webkit-transition: 0.5s;
        -khtml-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s; }

.call-to-action-two {
  position: relative;
  background-color: #FFFFFF; }
  .call-to-action-two::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 650px;
    left: 0;
    top: 0;
    background: url(../images/cta-bg.jpg) no-repeat;
    background-position: center top; }
  .call-to-action-two::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 650px;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.8); }
  .call-to-action-two .title-bar {
    position: relative;
    margin-bottom: 53px;
    z-index: 5; }
    .call-to-action-two .title-bar h2 {
      color: #FFFFFF; }
      @media only screen and (max-width: 767px) {
        .call-to-action-two .title-bar h2 {
          margin-bottom: 30px; } }
  .call-to-action-two .action-wrapper {
    position: relative;
    background-color: #FFFFFF;
    box-shadow: 0 0 40px 0px rgba(64, 64, 64, 0.16);
    padding: 60px 0;
    z-index: 5; }
    @media only screen and (max-width: 767px) {
      .call-to-action-two .action-wrapper .mt-30 {
        margin: 0 !important; } }
    .call-to-action-two .action-wrapper .mt-30 {
      margin-top: 30px; }
    @media only screen and (max-width: 479px) {
      .call-to-action-two .action-wrapper {
        padding: 25px 0; } }
    .call-to-action-two .action-wrapper .wrapper-content {
      padding: 25px 10px;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      .call-to-action-two .action-wrapper .wrapper-content:hover {
        background-color: #39a835; }
        .call-to-action-two .action-wrapper .wrapper-content:hover i {
          color: #FFFFFF; }
        .call-to-action-two .action-wrapper .wrapper-content:hover h3 {
          color: #FFFFFF; }
        .call-to-action-two .action-wrapper .wrapper-content:hover p {
          color: #fff8f8; }
        .call-to-action-two .action-wrapper .wrapper-content:hover .link {
          color: #FFFFFF; }
      .call-to-action-two .action-wrapper .wrapper-content i {
        font-size: 35px;
        color: #39a835;
        -webkit-transition: 0.5s;
        -khtml-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s; }
      .call-to-action-two .action-wrapper .wrapper-content h3 {
        font-size: 20px;
        font-weight: 500;
        line-height: 25px;
        color: #5f5f5f;
        margin: 10px 0 7px;
        -webkit-transition: 0.3s;
        -khtml-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s; }
      .call-to-action-two .action-wrapper .wrapper-content p {
        margin-bottom: 2px;
        -webkit-transition: 0.5s;
        -khtml-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s; }
      .call-to-action-two .action-wrapper .wrapper-content .link {
        font-size: 14px;
        font-weight: 700;
        line-height: 43px;
        text-transform: uppercase;
        -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) {
        .call-to-action-two .action-wrapper .wrapper-content {
          margin-bottom: 15px; } }
    .call-to-action-two .action-wrapper .button {
      margin-top: 50px; }
      @media only screen and (max-width: 767px) {
        .call-to-action-two .action-wrapper .button {
          margin-top: 0; } }
      .call-to-action-two .action-wrapper .button a {
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        color: #FFFFFF;
        background-color: #39a835;
        padding: 17px 34px; }
        .call-to-action-two .action-wrapper .button a:hover {
          background-color: #23921f; }
        @media only screen and (max-width: 991px) {
          .call-to-action-two .action-wrapper .button a {
            font-size: 12px;
            padding: 10px 14px; } }

/* =========================================================
        Research-Section STYLE
============================================================ */
.research-section {
  padding-bottom: 0; }
  .research-section .title-bar {
    margin-bottom: 65px; }
    @media only screen and (max-width: 991px) {
      .research-section .title-bar {
        margin-bottom: 40px; } }
    @media only screen and (max-width: 767px) {
      .research-section .title-bar {
        margin-bottom: 30px; } }
    .research-section .title-bar .title {
      letter-spacing: -1px; }
      @media only screen and (max-width: 1199px) {
        .research-section .title-bar .title {
          font-size: 35px; } }
      @media only screen and (max-width: 767px) {
        .research-section .title-bar .title {
          font-size: 25px; } }
      @media only screen and (max-width: 479px) {
        .research-section .title-bar .title {
          font-size: 22px; } }
    .research-section .title-bar .title-border {
      right: auto; }
  .research-section p {
    color: #667380;
    margin-top: -10px; }
    @media only screen and (max-width: 767px) {
      .research-section p {
        margin-top: -15px; } }
  @media only screen and (max-width: 991px) {
    .research-section .research-content {
      margin-bottom: 50px; } }
  .research-section .research-content .content-bar .panel-group {
    margin: 0; }
    .research-section .research-content .content-bar .panel-group .panel {
      border: 0;
      box-shadow: none;
      background-color: transparent;
      border-radius: 0;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px #e6e6e6; }
      .research-section .research-content .content-bar .panel-group .panel .panel-heading {
        background-color: #FFFFFF;
        border-radius: 0;
        padding: 0; }
        .research-section .research-content .content-bar .panel-group .panel .panel-heading .panel-title {
          position: relative;
          font-family: "Poppins", sans-serif;
          font-size: 16px;
          font-weight: 600; }
          .research-section .research-content .content-bar .panel-group .panel .panel-heading .panel-title div {
            color: #5f5f5f;
            line-height: 67px;
            background: transparent;
            display: block;
            padding-left: 25px; }
            @media only screen and (max-width: 767px) {
              .research-section .research-content .content-bar .panel-group .panel .panel-heading .panel-title div {
                line-height: 55px; } }
            @media only screen and (max-width: 479px) {
              .research-section .research-content .content-bar .panel-group .panel .panel-heading .panel-title div {
                line-height: 40px; } }
            .research-section .research-content .content-bar .panel-group .panel .panel-heading .panel-title div::before {
              content: "\f068";
              position: absolute;
              font-family: "FontAwesome";
              top: 19px;
              right: 22px;
              width: 30px;
              height: 30px;
              line-height: 30px;
              color: #FFFFFF;
              background-color: #39a835;
              text-align: center;
              font-size: 13px; }
              @media only screen and (max-width: 767px) {
                .research-section .research-content .content-bar .panel-group .panel .panel-heading .panel-title div::before {
                  top: 13px;
                  right: 13px; } }
              @media only screen and (max-width: 479px) {
                .research-section .research-content .content-bar .panel-group .panel .panel-heading .panel-title div::before {
                  top: 8px;
                  right: 8px;
                  width: 25px;
                  height: 25px;
                  line-height: 25px;
                  font-size: 11px; } }
            .research-section .research-content .content-bar .panel-group .panel .panel-heading .panel-title div.collapsed::before {
              content: "\f067";
              background-color: #282828; }
          @media only screen and (max-width: 499px) {
            .research-section .research-content .content-bar .panel-group .panel .panel-heading .panel-title {
              font-size: 18px; }
              .research-section .research-content .content-bar .panel-group .panel .panel-heading .panel-title div {
                padding-left: 15px; } }
          @media only screen and (max-width: 439px) {
            .research-section .research-content .content-bar .panel-group .panel .panel-heading .panel-title {
              font-size: 16px; }
              .research-section .research-content .content-bar .panel-group .panel .panel-heading .panel-title div {
                line-height: 40px; } }
          @media only screen and (max-width: 385px) {
            .research-section .research-content .content-bar .panel-group .panel .panel-heading .panel-title {
              font-size: 12px; }
              .research-section .research-content .content-bar .panel-group .panel .panel-heading .panel-title div {
                line-height: 40px; } }
      .research-section .research-content .content-bar .panel-group .panel .panel-collapse span {
        width: 0; }
      .research-section .research-content .content-bar .panel-group .panel .panel-collapse .panel-body {
        font-size: 15px;
        line-height: 25px;
        color: #9b9b9b;
        border: 0;
        background-color: transparent;
        padding: 10px 24px 27px; }
        @media only screen and (max-width: 499px) {
          .research-section .research-content .content-bar .panel-group .panel .panel-collapse .panel-body {
            font-size: 16px;
            line-height: 27px;
            padding: 5px 20px 10px; } }
        @media only screen and (max-width: 350px) {
          .research-section .research-content .content-bar .panel-group .panel .panel-collapse .panel-body {
            font-size: 12px;
            line-height: 20px;
            padding: 5px 10px 10px; } }
      .research-section .research-content .content-bar .panel-group .panel .panel-collapse i {
        position: relative;
        left: 0;
        top: -53px;
        height: 52px;
        background-color: #39a835;
        color: #FFFFFF; }
        @media only screen and (max-width: 439px) {
          .research-section .research-content .content-bar .panel-group .panel .panel-collapse i {
            top: -43px;
            height: 42px;
            line-height: 42px; } }
      .research-section .research-content .content-bar .panel-group .panel i {
        font-size: 20px;
        color: #06223e;
        vertical-align: top;
        width: 65px;
        height: 50px;
        line-height: 50px;
        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; }
        @media only screen and (max-width: 499px) {
          .research-section .research-content .content-bar .panel-group .panel i {
            width: 50px; } }
        @media only screen and (max-width: 439px) {
          .research-section .research-content .content-bar .panel-group .panel i {
            width: 40px;
            height: 40px;
            line-height: 40px; } }
        @media only screen and (max-width: 439px) {
          .research-section .research-content .content-bar .panel-group .panel i {
            width: 30px; } }
  .research-section .research-content .content-bar .link {
    display: block;
    font-size: 18px;
    margin-top: 15px; }
    .research-section .research-content .content-bar .link i {
      font-size: 20px !important;
      position: inherit !important;
      vertical-align: middle !important;
      background-color: transparent !important;
      color: #36afe8 !important;
      padding-left: 5px; }
  .research-section .research-wrapper {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden; }
    .research-section .research-wrapper:hover::before {
      opacity: 1;
      -webkit-transform: perspective(400px) rotateX(0deg);
      -moz-transform: perspective(400px) rotateX(0deg);
      -ms-transform: perspective(400px) rotateX(0deg);
      -o-transform: perspective(400px) rotateX(0deg);
      transform: perspective(400px) rotateX(0deg); }
    .research-section .research-wrapper:hover .hover-content h5 {
      opacity: 1;
      visibility: visible;
      transform: translateY(0); }
    .research-section .research-wrapper:hover .hover-content .icon i {
      opacity: 1;
      visibility: visible;
      transform: translateY(-100%); }
    .research-section .research-wrapper::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(30, 39, 56, 0.83);
      opacity: 0;
      -webkit-transform: perspective(400px) rotateX(-90deg);
      -moz-transform: perspective(400px) rotateX(-90deg);
      -ms-transform: perspective(400px) rotateX(-90deg);
      -o-transform: perspective(400px) rotateX(-90deg);
      transform: perspective(400px) rotateX(-90deg);
      -webkit-transform-origin: top;
      -moz-transform-origin: top;
      -ms-transform-origin: top;
      -o-transform-origin: top;
      transform-origin: top;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
    .research-section .research-wrapper img {
      width: 100%; }
    .research-section .research-wrapper .hover-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
      text-align: center; }
      .research-section .research-wrapper .hover-content .icon i {
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
        color: #39a835;
        background-color: #FFFFFF;
        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;
        /*transition-delay: .3s;*/
        /*transform: translateY(300%);*/ }
      .research-section .research-wrapper .hover-content h5 {
        font-size: 16px;
        color: #FFFFFF;
        background-color: #39a835;
        margin: 0;
        padding: 11px 0;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: 0.3s;
        -khtml-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        transition-delay: .2s;
        transform: translateY(40px); }
  .research-section .link {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #06223e; }
    .research-section .link:hover {
      color: #39a835; }
      .research-section .link:hover i {
        margin-left: 10px; }
    .research-section .link i {
      color: #39a835;
      margin-left: 5px;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
  .research-section #research-carousel {
    margin-top: 40px; }
    @media only screen and (max-width: 991px) {
      .research-section #research-carousel {
        margin-bottom: 30px; } }
    @media only screen and (max-width: 991px) {
      .research-section #research-carousel {
        margin-top: 30px; } }
    .research-section #research-carousel .carousel-inner .first-row {
      margin-bottom: 30px; }
      @media only screen and (max-width: 767px) {
        .research-section #research-carousel .carousel-inner .first-row {
          margin-bottom: 0; } }
    .research-section #research-carousel .carousel-inner .caption img {
      width: 100%; }
    @media only screen and (max-width: 767px) {
      .research-section #research-carousel .carousel-inner .caption {
        margin-bottom: 15px; } }
    .research-section #research-carousel .carousel-control.left, .research-section #research-carousel .carousel-control.right {
      background-image: none;
      width: 40px;
      height: 40px;
      line-height: 36px;
      border: 2px solid #39a835;
      top: auto;
      bottom: -50px;
      opacity: 1;
      text-shadow: none;
      color: #bab5b5;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      .research-section #research-carousel .carousel-control.left:hover, .research-section #research-carousel .carousel-control.right:hover {
        color: #353535; }
      .research-section #research-carousel .carousel-control.left i, .research-section #research-carousel .carousel-control.right i {
        font-size: 25px; }
      @media only screen and (max-width: 479px) {
        .research-section #research-carousel .carousel-control.left, .research-section #research-carousel .carousel-control.right {
          bottom: -40px; } }
    .research-section #research-carousel .carousel-control.left {
      left: auto;
      right: 45px; }

/* =========================================================
        Counting-Section STYLE
============================================================ */
.counting-section {
  position: relative;
  background: url(../images/counter-bg.jpg) no-repeat 50%;
  background-attachment: fixed;
  padding: 70px 0 60px;
  /*@media only screen and (max-width: 767px){padding: 80px 0 60px;}*/ }
  @media only screen and (max-width: 991px) {
    .counting-section {
      padding: 80px 0; } }
  @media only screen and (max-width: 767px) {
    .counting-section {
      padding: 55px 0 15px; } }
  .counting-section .counting-pusher {
    position: relative;
    display: flex;
    z-index: 1; }
    @media only screen and (max-width: 479px) {
      .counting-section .counting-pusher {
        display: block; } }
    .counting-section .counting-pusher .counting-wrapper {
      flex: 1; }
      @media only screen and (max-width: 767px) {
        .counting-section .counting-pusher .counting-wrapper {
          margin-bottom: 40px; } }
      @media only screen and (max-width: 479px) {
        .counting-section .counting-pusher .counting-wrapper {
          margin-bottom: 25px; } }
      .counting-section .counting-pusher .counting-wrapper .count-description {
        position: relative;
        font-family: "Poppins", sans-serif;
        font-size: 46px;
        font-weight: 500;
        color: #FFFFFF;
        margin-bottom: 25px;
        line-height: 50px;
        border-radius: 5px; }
        @media (min-width: 992px) and (max-width: 1199px) {
          .counting-section .counting-pusher .counting-wrapper .count-description {
            font-size: 45px; } }
        @media only screen and (max-width: 991px) {
          .counting-section .counting-pusher .counting-wrapper .count-description {
            font-size: 40px;
            margin-bottom: 10px; } }
        @media only screen and (max-width: 767px) {
          .counting-section .counting-pusher .counting-wrapper .count-description {
            font-size: 35px;
            line-height: 45px;
            margin-bottom: 9px; } }
        .counting-section .counting-pusher .counting-wrapper .count-description::before {
          content: "";
          position: absolute;
          left: 0;
          right: 0;
          bottom: -15px;
          width: 60px;
          height: 4px;
          border-radius: 5px;
          background-color: #39a835;
          margin: 0 auto; }
          @media only screen and (max-width: 991px) {
            .counting-section .counting-pusher .counting-wrapper .count-description::before {
              bottom: -5px; } }
      .counting-section .counting-pusher .counting-wrapper p {
        font-size: 30px;
        line-height: 36px;
        color: #FFFFFF;
        display: block; }
        @media (min-width: 768px) and (max-width: 1199px) {
          .counting-section .counting-pusher .counting-wrapper p {
            font-size: 20px; } }
        @media only screen and (max-width: 991px) {
          .counting-section .counting-pusher .counting-wrapper p {
            margin-bottom: 0; } }
        @media only screen and (max-width: 767px) {
          .counting-section .counting-pusher .counting-wrapper p {
            font-size: 16px;
            line-height: 25px; } }

/* =========================================================
        Expert-Section STYLE
============================================================ */
.expert-section {
  background-color: #FFFFFF; }
  .expert-section .title-bar {
    margin-bottom: 65px; }
    @media only screen and (max-width: 767px) {
      .expert-section .title-bar {
        margin-bottom: 45px; } }
  .expert-section .expert-area.default-style .expert-wrapper .expert-content {
    border: 1px solid transparent; }
    .expert-section .expert-area.default-style .expert-wrapper .expert-content .date {
      color: #39a835; }
    .expert-section .expert-area.default-style .expert-wrapper .expert-content a i {
      color: #39a835; }
  .expert-section .expert-area .expert-wrapper.last-wrapper {
    margin-bottom: 0; }
  .expert-section .expert-area .expert-wrapper .expert-caption img {
    width: 100%; }
  .expert-section .expert-area .expert-wrapper .expert-content {
    border: 1px solid #dddddd;
    border-top: 1px solid transparent;
    padding: 25px 0 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: 479px) {
      .expert-section .expert-area .expert-wrapper .expert-content {
        padding: 15px 0 0; } }
    .expert-section .expert-area .expert-wrapper .expert-content .date, .expert-section .expert-area .expert-wrapper .expert-content .comment {
      font-family: "Poppins", sans-serif;
      font-size: 16px;
      font-weight: 500;
      color: #36afe8;
      margin-right: 25px; }
      @media only screen and (max-width: 479px) {
        .expert-section .expert-area .expert-wrapper .expert-content .date, .expert-section .expert-area .expert-wrapper .expert-content .comment {
          font-size: 13px;
          font-weight: 400; } }
    .expert-section .expert-area .expert-wrapper .expert-content h3 {
      font-size: 20px;
      font-weight: 500;
      line-height: 25px;
      color: #5f5f5f;
      margin-bottom: 13px; }
      @media only screen and (max-width: 767px) {
        .expert-section .expert-area .expert-wrapper .expert-content h3 {
          font-size: 22px; } }
      @media only screen and (max-width: 479px) {
        .expert-section .expert-area .expert-wrapper .expert-content h3 {
          font-size: 18px;
          line-height: 25px;
          margin-bottom: 5px; } }
    .expert-section .expert-area .expert-wrapper .expert-content p {
      font-size: 16px;
      line-height: 30px;
      color: #667380;
      margin: 16px 0 25px; }
      @media only screen and (max-width: 767px) {
        .expert-section .expert-area .expert-wrapper .expert-content p {
          margin: 10px 0 15px; } }
      @media only screen and (max-width: 479px) {
        .expert-section .expert-area .expert-wrapper .expert-content p {
          font-size: 15px;
          line-height: 24px; } }
    @media only screen and (max-width: 479px) {
      .expert-section .expert-area .expert-wrapper .expert-content a {
        font-weight: 400;
        font-size: 15px; } }
    .expert-section .expert-area .expert-wrapper .expert-content a i {
      color: #36afe8;
      padding-right: 5px; }
  @media only screen and (max-width: 991px) {
    .expert-section .expert-area .expert-wrapper {
      margin-bottom: 50px; } }
  @media only screen and (max-width: 767px) {
    .expert-section .expert-area .expert-wrapper {
      margin-bottom: 30px; } }
  .expert-section .expert-container .expert-wrapper {
    padding: 5px; }
    .expert-section .expert-container .expert-wrapper .expert-caption img {
      width: 100%; }
    .expert-section .expert-container .expert-wrapper .expert-content {
      padding: 30px;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      .expert-section .expert-container .expert-wrapper .expert-content h3 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 0; }
    .expert-section .expert-container .expert-wrapper:hover .expert-content {
      box-shadow: 0 0 20px 0px rgba(64, 64, 64, 0.16); }
  .expert-section .first-part {
    margin-bottom: 35px; }
    @media only screen and (max-width: 991px) {
      .expert-section .first-part {
        margin-bottom: 0; } }

/* =========================================================
        Consulting-Section STYLE
============================================================ */
.consulting-section {
  background-color: #f1f4f8; }
  @media (min-width: 768px) and (max-width: 991px) {
    .consulting-section {
      padding-bottom: 190px; } }
  @media only screen and (max-width: 767px) {
    .consulting-section {
      padding-bottom: 80px; } }
  .consulting-section #consulting-carousel .carousel-indicators {
    width: 80px;
    left: auto;
    right: 0;
    bottom: 5px;
    margin: 0; }
    @media only screen and (max-width: 991px) {
      .consulting-section #consulting-carousel .carousel-indicators {
        width: 100%;
        left: 0;
        margin: 0 auto;
        bottom: -130px; } }
    @media only screen and (max-width: 768px) {
      .consulting-section #consulting-carousel .carousel-indicators {
        bottom: -115px; } }
    @media only screen and (max-width: 479px) {
      .consulting-section #consulting-carousel .carousel-indicators {
        bottom: -75px; } }
    .consulting-section #consulting-carousel .carousel-indicators li {
      width: 78px;
      height: 78px;
      text-indent: 0;
      display: block;
      background-color: transparent;
      border: 3px solid transparent;
      border-radius: 8px;
      margin: 0 0 4px; }
      @media (min-width: 992px) and (max-width: 1199px) {
        .consulting-section #consulting-carousel .carousel-indicators li {
          width: 60px;
          height: 60px; } }
      @media only screen and (max-width: 991px) {
        .consulting-section #consulting-carousel .carousel-indicators li {
          display: inline-block; } }
      @media only screen and (max-width: 767px) {
        .consulting-section #consulting-carousel .carousel-indicators li {
          width: 60px;
          height: 60px; } }
      @media only screen and (max-width: 479px) {
        .consulting-section #consulting-carousel .carousel-indicators li {
          width: 40px;
          height: 40px; } }
      .consulting-section #consulting-carousel .carousel-indicators li.active {
        border: 4px solid #39a835; }
      .consulting-section #consulting-carousel .carousel-indicators li img {
        width: 100%;
        height: 100%;
        border-radius: 8px; }
      .consulting-section #consulting-carousel .carousel-indicators li.link {
        font-size: 20px;
        background-color: #39a835;
        width: 71px;
        height: 71px;
        line-height: 63px;
        text-align: center;
        border-radius: 50%;
        margin: 5px 0 0; }
        .consulting-section #consulting-carousel .carousel-indicators li.link a {
          color: #FFFFFF; }
        @media (min-width: 992px) and (max-width: 1199px) {
          .consulting-section #consulting-carousel .carousel-indicators li.link {
            width: 60px;
            height: 60px;
            line-height: 52px; } }
        @media only screen and (max-width: 767px) {
          .consulting-section #consulting-carousel .carousel-indicators li.link {
            width: 60px;
            height: 60px;
            line-height: 52px; } }
        @media only screen and (max-width: 479px) {
          .consulting-section #consulting-carousel .carousel-indicators li.link {
            font-size: 15px;
            line-height: 35px;
            width: 40px;
            height: 40px; } }
  .consulting-section #consulting-carousel .carousel-inner .item {
    transition-property: opacity; }
  .consulting-section #consulting-carousel .carousel-inner .item,
  .consulting-section #consulting-carousel .carousel-inner .active.left,
  .consulting-section #consulting-carousel .carousel-inner .active.right {
    opacity: 0; }
  .consulting-section #consulting-carousel .carousel-inner .active,
  .consulting-section #consulting-carousel .carousel-inner .next.left,
  .consulting-section #consulting-carousel .carousel-inner .prev.right {
    opacity: 1; }
  .consulting-section #consulting-carousel .carousel-inner .next,
  .consulting-section #consulting-carousel .carousel-inner .prev,
  .consulting-section #consulting-carousel .carousel-inner .active.left,
  .consulting-section #consulting-carousel .carousel-inner .active.right {
    left: 0;
    transform: translate3d(0, 0, 0); }
  .consulting-section #consulting-carousel .carousel-inner .consulting-caption img {
    border: 9px solid #39a835; }
    @media only screen and (max-width: 1199px) {
      .consulting-section #consulting-carousel .carousel-inner .consulting-caption img {
        width: 100%; } }
  .consulting-section #consulting-carousel .carousel-inner .content-wrapper {
    padding: 0 125px 0 10px;
    margin-top: 85px; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .consulting-section #consulting-carousel .carousel-inner .content-wrapper {
        margin-top: 20px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .consulting-section #consulting-carousel .carousel-inner .content-wrapper {
        margin-top: 0;
        padding-right: 0; } }
    @media only screen and (max-width: 767px) {
      .consulting-section #consulting-carousel .carousel-inner .content-wrapper {
        padding-right: 0;
        margin-top: 20px; } }
    .consulting-section #consulting-carousel .carousel-inner .content-wrapper h3 {
      margin-bottom: 0; }
      @media only screen and (max-width: 479px) {
        .consulting-section #consulting-carousel .carousel-inner .content-wrapper h3 {
          font-size: 22px;
          line-height: 30px; } }
    .consulting-section #consulting-carousel .carousel-inner .content-wrapper .position {
      font-size: 20px;
      color: #999999; }
      @media only screen and (max-width: 479px) {
        .consulting-section #consulting-carousel .carousel-inner .content-wrapper .position {
          font-size: 18px; } }
    .consulting-section #consulting-carousel .carousel-inner .content-wrapper p {
      color: #666666;
      margin-top: 21px; }
      @media only screen and (max-width: 479px) {
        .consulting-section #consulting-carousel .carousel-inner .content-wrapper p {
          margin-top: 10px; } }
    .consulting-section #consulting-carousel .carousel-inner .content-wrapper .social-icon {
      margin-top: 35px; }
      .consulting-section #consulting-carousel .carousel-inner .content-wrapper .social-icon li {
        display: inline-block;
        margin-right: 15px; }
        .consulting-section #consulting-carousel .carousel-inner .content-wrapper .social-icon li i {
          font-size: 25px;
          -webkit-transition: 0.5s;
          -khtml-transition: 0.5s;
          -moz-transition: 0.5s;
          -ms-transition: 0.5s;
          -o-transition: 0.5s;
          transition: 0.5s; }
          .consulting-section #consulting-carousel .carousel-inner .content-wrapper .social-icon li i:hover {
            color: #39a835; }
  @media only screen and (max-width: 767px) {
    .consulting-section #consulting-carousel {
      margin-bottom: 85px; } }
  @media only screen and (max-width: 479px) {
    .consulting-section #consulting-carousel {
      margin-bottom: 50px; } }

/* =========================================================
        Testimonial-Section STYLE
============================================================ */
.testimonial-section {
  position: relative;
  padding-bottom: 0; }
  .testimonial-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 475px;
    background: url(../images/testimonial-bg.jpg) no-repeat 50% 0;
    background-attachment: fixed; }
    @media (min-width: 768px) and (max-width: 991px) {
      .testimonial-section::before {
        height: 430px; } }
    @media only screen and (max-width: 767px) {
      .testimonial-section::before {
        height: 375px; } }
    @media only screen and (max-width: 435px) {
      .testimonial-section::before {
        height: 445px; } }
  .testimonial-section .title-bar .title {
    color: #FFFFFF; }
  .testimonial-section .title-bar .title-border {
    background-color: #FFFFFF; }
    .testimonial-section .title-bar .title-border::before {
      background-color: #3a3a3a; }
  .testimonial-section #testimonial-carousel {
    margin-top: 50px; }
    @media only screen and (max-width: 991px) {
      .testimonial-section #testimonial-carousel {
        margin-top: 10px; } }
    .testimonial-section #testimonial-carousel .carousel-inner {
      overflow: visible; }
      .testimonial-section #testimonial-carousel .carousel-inner::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 525px;
        height: 80px;
        border-radius: 50px;
        margin: 0 auto;
        background-color: #39a835; }
        @media only screen and (max-width: 570px) {
          .testimonial-section #testimonial-carousel .carousel-inner::before {
            width: 100%; } }
        @media only screen and (max-width: 479px) {
          .testimonial-section #testimonial-carousel .carousel-inner::before {
            height: 60px; } }
      .testimonial-section #testimonial-carousel .carousel-inner .item {
        transition-property: opacity; }
      .testimonial-section #testimonial-carousel .carousel-inner .item,
      .testimonial-section #testimonial-carousel .carousel-inner .active.left,
      .testimonial-section #testimonial-carousel .carousel-inner .active.right {
        opacity: 0; }
      .testimonial-section #testimonial-carousel .carousel-inner .active,
      .testimonial-section #testimonial-carousel .carousel-inner .next.left,
      .testimonial-section #testimonial-carousel .carousel-inner .prev.right {
        opacity: 1; }
      .testimonial-section #testimonial-carousel .carousel-inner .next,
      .testimonial-section #testimonial-carousel .carousel-inner .prev,
      .testimonial-section #testimonial-carousel .carousel-inner .active.left,
      .testimonial-section #testimonial-carousel .carousel-inner .active.right {
        left: 0;
        transform: translate3d(0, 0, 0); }
      .testimonial-section #testimonial-carousel .carousel-inner p {
        font-size: 21px;
        font-weight: 300;
        line-height: 30px;
        color: #FFFFFF;
        margin-bottom: 25px; }
      .testimonial-section #testimonial-carousel .carousel-inner .commend li {
        display: inline-block;
        margin: 0 2px; }
        .testimonial-section #testimonial-carousel .carousel-inner .commend li i {
          color: #faaf0e;
          font-size: 23px; }
      .testimonial-section #testimonial-carousel .carousel-inner .title-bar {
        display: inline-block;
        border-radius: 50px;
        padding: 10px 150px;
        margin-top: 68px; }
        @media (min-width: 992px) and (max-width: 1199px) {
          .testimonial-section #testimonial-carousel .carousel-inner .title-bar {
            margin-top: 38px; } }
        @media only screen and (max-width: 991px) {
          .testimonial-section #testimonial-carousel .carousel-inner .title-bar {
            margin-top: 50px; } }
        @media only screen and (max-width: 767px) {
          .testimonial-section #testimonial-carousel .carousel-inner .title-bar {
            padding: 10px 100px; } }
        @media only screen and (max-width: 479px) {
          .testimonial-section #testimonial-carousel .carousel-inner .title-bar {
            display: block;
            padding: 5px 0; } }
        .testimonial-section #testimonial-carousel .carousel-inner .title-bar .caption img {
          width: 60px;
          height: 60px;
          border-radius: 50%; }
          @media only screen and (max-width: 679px) {
            .testimonial-section #testimonial-carousel .carousel-inner .title-bar .caption img {
              width: 50px;
              height: 50px; } }
          @media only screen and (max-width: 380px) {
            .testimonial-section #testimonial-carousel .carousel-inner .title-bar .caption img {
              width: 45px;
              height: 45px; } }
        .testimonial-section #testimonial-carousel .carousel-inner .title-bar h3 {
          font-size: 16px;
          line-height: 20px;
          color: #FFFFFF;
          display: inline-block;
          margin: 0 0 0 10px; }
          @media only screen and (max-width: 380px) {
            .testimonial-section #testimonial-carousel .carousel-inner .title-bar h3 {
              font-size: 14px;
              margin: 0; } }
    .testimonial-section #testimonial-carousel:hover h3 > a {
      color: #39a835; }
    .testimonial-section #testimonial-carousel .carousel-control.left, .testimonial-section #testimonial-carousel .carousel-control.right {
      background-image: none;
      width: 20px;
      height: 20px;
      line-height: 20px;
      text-shadow: none;
      opacity: 1;
      bottom: 30px;
      top: auto; }
      @media only screen and (max-width: 479px) {
        .testimonial-section #testimonial-carousel .carousel-control.left, .testimonial-section #testimonial-carousel .carousel-control.right {
          bottom: 20px; } }
    .testimonial-section #testimonial-carousel .carousel-control.left {
      left: 150px; }
      @media only screen and (max-width: 679px) {
        .testimonial-section #testimonial-carousel .carousel-control.left {
          left: 120px; } }
      @media only screen and (max-width: 600px) {
        .testimonial-section #testimonial-carousel .carousel-control.left {
          left: 100px; } }
      @media only screen and (max-width: 550px) {
        .testimonial-section #testimonial-carousel .carousel-control.left {
          left: 60px; } }
      @media only screen and (max-width: 479px) {
        .testimonial-section #testimonial-carousel .carousel-control.left {
          left: 20px; } }
    .testimonial-section #testimonial-carousel .carousel-control.right {
      right: 150px; }
      @media only screen and (max-width: 679px) {
        .testimonial-section #testimonial-carousel .carousel-control.right {
          right: 120px; } }
      @media only screen and (max-width: 600px) {
        .testimonial-section #testimonial-carousel .carousel-control.right {
          right: 100px; } }
      @media only screen and (max-width: 550px) {
        .testimonial-section #testimonial-carousel .carousel-control.right {
          right: 60px; } }
      @media only screen and (max-width: 479px) {
        .testimonial-section #testimonial-carousel .carousel-control.right {
          right: 20px; } }
  .testimonial-section .testimonial-part-two .section-wrapper {
    padding: 40px 35px;
    margin-bottom: 30px;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .testimonial-section .testimonial-part-two .section-wrapper:hover {
      box-shadow: 0 0 30px 1px #eee; }
    @media only screen and (max-width: 767px) {
      .testimonial-section .testimonial-part-two .section-wrapper {
        padding: 20px 15px; } }
    .testimonial-section .testimonial-part-two .section-wrapper .caption img {
      border-radius: 50%;
      margin-bottom: 10px; }
    .testimonial-section .testimonial-part-two .section-wrapper .wrapper-content h3 {
      font-size: 23px;
      margin-bottom: 0; }
      @media only screen and (max-width: 767px) {
        .testimonial-section .testimonial-part-two .section-wrapper .wrapper-content h3 {
          font-size: 20px; } }
      @media only screen and (max-width: 479px) {
        .testimonial-section .testimonial-part-two .section-wrapper .wrapper-content h3 {
          font-size: 18px; } }
      .testimonial-section .testimonial-part-two .section-wrapper .wrapper-content h3 a {
        color: #5f5f5f; }
    .testimonial-section .testimonial-part-two .section-wrapper .wrapper-content:hover h3 > a {
      color: #39a835; }
    .testimonial-section .testimonial-part-two .section-wrapper .wrapper-content p {
      color: #99a4b0; }
    .testimonial-section .testimonial-part-two .section-wrapper .wrapper-content ul li {
      display: inline-block;
      margin: 0 2px; }
      .testimonial-section .testimonial-part-two .section-wrapper .wrapper-content ul li i {
        font-size: 18px;
        color: #faaf0e; }
  .testimonial-section .testimonial-part-two .loading .btn {
    padding: 9px 44px;
    margin-top: 50px; }
    @media only screen and (max-width: 767px) {
      .testimonial-section .testimonial-part-two .loading .btn {
        margin-top: 0; } }

.testimonial-section-two {
  background-color: #5f5f5f;
  padding-bottom: 180px; }
  @media only screen and (max-width: 991px) {
    .testimonial-section-two {
      padding-bottom: 140px; } }
  @media only screen and (max-width: 479px) {
    .testimonial-section-two {
      padding-bottom: 100px; } }
  .testimonial-section-two .title-bar {
    margin-bottom: 40px; }
    @media only screen and (max-width: 479px) {
      .testimonial-section-two .title-bar {
        margin-bottom: 10px; } }
    .testimonial-section-two .title-bar .title {
      color: #FFFFFF; }
    .testimonial-section-two .title-bar p {
      color: #FFFFFF; }
  .testimonial-section-two .testimonial-wrapper {
    box-shadow: 0 0 20px 0px rgba(64, 64, 64, 0.16);
    padding: 0 90px 45px;
    margin-top: 20px;
    background: #f2f6f9; }
    @media only screen and (max-width: 991px) {
      .testimonial-section-two .testimonial-wrapper {
        margin-top: 70px;
        padding: 0 30px 25px; } }
    .testimonial-section-two .testimonial-wrapper .testimonial-caption img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      margin-top: -50px;
      border: 3px solid #39a835; }
      @media only screen and (max-width: 479px) {
        .testimonial-section-two .testimonial-wrapper .testimonial-caption img {
          width: 80px;
          height: 80px;
          margin-top: -40px; } }
    .testimonial-section-two .testimonial-wrapper h3 {
      font-size: 20px;
      font-weight: 600;
      line-height: 25px;
      margin: 33px 0 0; }
      .testimonial-section-two .testimonial-wrapper h3 a {
        color: #5f5f5f; }
      @media only screen and (max-width: 479px) {
        .testimonial-section-two .testimonial-wrapper h3 {
          font-size: 18px; } }
    .testimonial-section-two .testimonial-wrapper .position {
      font-size: 16px;
      font-weight: 500;
      font-style: italic;
      color: #0d1d36; }
      @media only screen and (max-width: 479px) {
        .testimonial-section-two .testimonial-wrapper .position {
          font-size: 13px; } }
    .testimonial-section-two .testimonial-wrapper .commend li {
      display: inline-block; }
      .testimonial-section-two .testimonial-wrapper .commend li i {
        color: #faaf0e;
        font-size: 25px; }
    .testimonial-section-two .testimonial-wrapper p {
      font-size: 18px;
      line-height: 30px;
      color: #777777;
      margin-top: 13px; }
    .testimonial-section-two .testimonial-wrapper:hover h3 > a {
      color: #39a835; }
  .testimonial-section-two #testimonial-carousel {
    margin-top: 60px; }
    @media only screen and (max-width: 991px) {
      .testimonial-section-two #testimonial-carousel {
        margin-top: 40px; } }
    @media only screen and (max-width: 767px) {
      .testimonial-section-two #testimonial-carousel {
        margin-top: 40px; } }
    @media only screen and (max-width: 479px) {
      .testimonial-section-two #testimonial-carousel {
        margin-top: 15px; } }
    .testimonial-section-two #testimonial-carousel .carousel-indicators {
      top: 50%;
      width: 20px;
      height: 100px;
      right: -60px;
      left: auto;
      margin: -50px 0 0; }
      .testimonial-section-two #testimonial-carousel .carousel-indicators li {
        width: 15px;
        height: 15px;
        background-color: #7f8c8d;
        display: block;
        margin: 15px 0;
        border: 0; }
        .testimonial-section-two #testimonial-carousel .carousel-indicators li.active {
          background-color: #39a835; }
      @media only screen and (max-width: 991px) {
        .testimonial-section-two #testimonial-carousel .carousel-indicators {
          top: auto;
          bottom: -40px;
          left: 0;
          right: 0;
          margin: 0 auto;
          width: 100px; }
          .testimonial-section-two #testimonial-carousel .carousel-indicators li {
            display: inline-block;
            margin: 0 5px; } }
    .testimonial-section-two #testimonial-carousel .carousel-inner {
      overflow: visible; }
      .testimonial-section-two #testimonial-carousel .carousel-inner .item {
        transition-property: opacity; }
      .testimonial-section-two #testimonial-carousel .carousel-inner .item,
      .testimonial-section-two #testimonial-carousel .carousel-inner .active.left,
      .testimonial-section-two #testimonial-carousel .carousel-inner .active.right {
        opacity: 0; }
      .testimonial-section-two #testimonial-carousel .carousel-inner .active,
      .testimonial-section-two #testimonial-carousel .carousel-inner .next.left,
      .testimonial-section-two #testimonial-carousel .carousel-inner .prev.right {
        opacity: 1; }
      .testimonial-section-two #testimonial-carousel .carousel-inner .next,
      .testimonial-section-two #testimonial-carousel .carousel-inner .prev,
      .testimonial-section-two #testimonial-carousel .carousel-inner .active.left,
      .testimonial-section-two #testimonial-carousel .carousel-inner .active.right {
        left: 0;
        transform: translate3d(0, 0, 0); }
      .testimonial-section-two #testimonial-carousel .carousel-inner .caption img {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        margin-top: -45px; }
      .testimonial-section-two #testimonial-carousel .carousel-inner h3 {
        margin: 33px 0 0; }
        .testimonial-section-two #testimonial-carousel .carousel-inner h3 a {
          color: #5f5f5f; }
          .testimonial-section-two #testimonial-carousel .carousel-inner h3 a:hover {
            color: #39a835; }
        @media only screen and (max-width: 479px) {
          .testimonial-section-two #testimonial-carousel .carousel-inner h3 {
            margin: 10px 0 -5px; } }
      .testimonial-section-two #testimonial-carousel .carousel-inner .commend {
        margin-top: 4px; }
        .testimonial-section-two #testimonial-carousel .carousel-inner .commend li {
          display: inline-block;
          margin: 0 2px; }
          .testimonial-section-two #testimonial-carousel .carousel-inner .commend li i {
            color: #feda12;
            font-size: 18px; }
      .testimonial-section-two #testimonial-carousel .carousel-inner p {
        font-size: 14px;
        font-weight: 500;
        line-height: 30px;
        color: #0d1d36;
        margin-top: 10px; }
    .testimonial-section-two #testimonial-carousel .carousel-control.left, .testimonial-section-two #testimonial-carousel .carousel-control.right {
      background-image: none;
      width: 100px;
      height: 25px;
      left: 0;
      right: 0;
      top: auto;
      bottom: -100px;
      margin: 0 auto;
      opacity: 1;
      font-family: "Poppins", sans-serif;
      font-size: 20px;
      font-weight: 600;
      text-transform: uppercase;
      text-shadow: none; }
      @media only screen and (max-width: 991px) {
        .testimonial-section-two #testimonial-carousel .carousel-control.left, .testimonial-section-two #testimonial-carousel .carousel-control.right {
          bottom: -70px; } }
      @media only screen and (max-width: 767px) {
        .testimonial-section-two #testimonial-carousel .carousel-control.left, .testimonial-section-two #testimonial-carousel .carousel-control.right {
          font-weight: 300; } }
      @media only screen and (max-width: 479px) {
        .testimonial-section-two #testimonial-carousel .carousel-control.left, .testimonial-section-two #testimonial-carousel .carousel-control.right {
          font-size: 15px;
          bottom: -50px; } }
      .testimonial-section-two #testimonial-carousel .carousel-control.left i, .testimonial-section-two #testimonial-carousel .carousel-control.right i {
        font-size: 25px;
        vertical-align: top;
        margin: 0 5px; }
        @media only screen and (max-width: 767px) {
          .testimonial-section-two #testimonial-carousel .carousel-control.left i, .testimonial-section-two #testimonial-carousel .carousel-control.right i {
            font-size: 20px;
            vertical-align: inherit; } }
        @media only screen and (max-width: 767px) {
          .testimonial-section-two #testimonial-carousel .carousel-control.left i, .testimonial-section-two #testimonial-carousel .carousel-control.right i {
            font-size: 16px; } }
    .testimonial-section-two #testimonial-carousel .carousel-control.left {
      left: -125px; }
      @media only screen and (max-width: 767px) {
        .testimonial-section-two #testimonial-carousel .carousel-control.left {
          left: -105px; } }
      @media only screen and (max-width: 479px) {
        .testimonial-section-two #testimonial-carousel .carousel-control.left {
          left: -80px; } }
    .testimonial-section-two #testimonial-carousel .carousel-control.right {
      right: -125px; }
      @media only screen and (max-width: 767px) {
        .testimonial-section-two #testimonial-carousel .carousel-control.right {
          right: -105px; } }
      @media only screen and (max-width: 479px) {
        .testimonial-section-two #testimonial-carousel .carousel-control.right {
          right: -80px; } }
  .testimonial-section-two .btn {
    padding: 12px 34px;
    margin-top: 80px; }
    .testimonial-section-two .btn i {
      padding-right: 5px; }
    @media only screen and (max-width: 767px) {
      .testimonial-section-two .btn {
        margin-top: 40px; } }
  .testimonial-section-two .testimonial-part-two .section-wrapper {
    padding: 40px 35px;
    margin-bottom: 30px;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .testimonial-section-two .testimonial-part-two .section-wrapper:hover {
      box-shadow: 0 0 30px 1px #eee; }
    @media only screen and (max-width: 767px) {
      .testimonial-section-two .testimonial-part-two .section-wrapper {
        padding: 20px 15px; } }
    .testimonial-section-two .testimonial-part-two .section-wrapper .caption img {
      border-radius: 50%;
      margin-bottom: 10px; }
    .testimonial-section-two .testimonial-part-two .section-wrapper .wrapper-content h3 {
      font-size: 23px;
      margin-bottom: 0; }
      @media only screen and (max-width: 767px) {
        .testimonial-section-two .testimonial-part-two .section-wrapper .wrapper-content h3 {
          font-size: 20px; } }
      @media only screen and (max-width: 479px) {
        .testimonial-section-two .testimonial-part-two .section-wrapper .wrapper-content h3 {
          font-size: 18px; } }
      .testimonial-section-two .testimonial-part-two .section-wrapper .wrapper-content h3 a {
        color: #5f5f5f; }
    .testimonial-section-two .testimonial-part-two .section-wrapper .wrapper-content:hover h3 > a {
      color: #39a835; }
    .testimonial-section-two .testimonial-part-two .section-wrapper .wrapper-content p {
      color: #99a4b0; }
    .testimonial-section-two .testimonial-part-two .section-wrapper .wrapper-content ul li {
      display: inline-block;
      margin: 0 2px; }
      .testimonial-section-two .testimonial-part-two .section-wrapper .wrapper-content ul li i {
        font-size: 18px;
        color: #faaf0e; }
  .testimonial-section-two .testimonial-part-two .loading .btn {
    padding: 9px 44px;
    margin-top: 50px; }
    @media only screen and (max-width: 767px) {
      .testimonial-section-two .testimonial-part-two .loading .btn {
        margin-top: 0; } }

/* =========================================================
        Marketing-Section STYLE
============================================================ */
.marketing-section {
  background-color: #FFFFFF; }
  .marketing-section .marketing-content {
    margin-right: 40px; }
    .marketing-section .marketing-content h3 {
      position: relative;
      font-size: 46px;
      font-weight: 700;
      line-height: 60px;
      margin-bottom: 29px; }
      @media only screen and (max-width: 991px) {
        .marketing-section .marketing-content h3 {
          font-size: 30px;
          line-height: 32px; } }
      @media only screen and (max-width: 767px) {
        .marketing-section .marketing-content h3 {
          font-size: 25px;
          line-height: 30px;
          margin-bottom: 15px; } }
      @media only screen and (max-width: 479px) {
        .marketing-section .marketing-content h3 {
          font-size: 20px;
          line-height: 25px;
          margin-bottom: 15px; } }
      .marketing-section .marketing-content h3::before {
        content: "";
        position: absolute;
        left: 145px;
        bottom: 27px;
        width: 185px;
        height: 1px;
        background-color: #36afe8; }
        @media (min-width: 992px) and (max-width: 1199px) {
          .marketing-section .marketing-content h3::before {
            left: auto;
            right: 50px; } }
        @media only screen and (max-width: 991px) {
          .marketing-section .marketing-content h3::before {
            display: none; } }
    .marketing-section .marketing-content p {
      font-size: 18px;
      line-height: 30px; }
      @media only screen and (max-width: 767px) {
        .marketing-section .marketing-content p {
          font-size: 16px;
          line-height: 27px; } }
    .marketing-section .marketing-content h4 {
      font-size: 22px;
      font-weight: 700;
      line-height: 30px;
      color: #373737;
      margin: 32px 0 15px; }
    .marketing-section .marketing-content ul li {
      line-height: 32px; }
      .marketing-section .marketing-content ul li i {
        font-size: 20px;
        color: #36afe8;
        padding-right: 5px; }
  .marketing-section .marketing-caption {
    margin-top: 35px; }
    .marketing-section .marketing-caption img {
      width: 100%; }

/* =========================================================
        Contact-Section STYLE
============================================================ */
.contact-section {
  position: relative;
  background-color: #FFFFFF; }
  .contact-section .map-section {
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .contact-section .map-section {
        padding-top: 0; } }
    .contact-section .map-section #googleMap {
      width: 100%;
      height: 420px; }
      @media (min-width: 768px) and (max-width: 991px) {
        .contact-section .map-section #googleMap {
          height: 590px; } }
      @media only screen and (max-width: 767px) {
        .contact-section .map-section #googleMap {
          height: 300px; } }
      @media only screen and (max-width: 479px) {
        .contact-section .map-section #googleMap {
          height: 200px; } }
    .contact-section .map-section .form-view {
      font-size: 19px;
      line-height: 34px;
      color: #39a835;
      cursor: pointer;
      display: block;
      margin-top: 20px;
      display: inline-block; }
      .contact-section .map-section .form-view:hover i {
        padding-right: 20px; }
      .contact-section .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; }
      @media only screen and (max-width: 767px) {
        .contact-section .map-section .form-view {
          display: none; } }
  .contact-section .contact-section-one {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: url(../images/contact-bg.jpg) no-repeat;
    background-position: center 70%;
    background-size: cover;
    background-attachment: fixed; }
    @media only screen and (max-width: 767px) {
      .contact-section .contact-section-one {
        position: relative; } }
    .contact-section .contact-section-one .section-one-wrapper {
      box-shadow: 0 0 30px 2px #e4e1e1;
      border-radius: 8px;
      padding: 50px 75px 40px;
      background: #FFFFFF;
      margin: -40px 0px; }
      @media only screen and (max-width: 767px) {
        .contact-section .contact-section-one .section-one-wrapper {
          box-shadow: none;
          padding: 30px 35px 0; } }
      @media only screen and (max-width: 479px) {
        .contact-section .contact-section-one .section-one-wrapper h3 {
          font-size: 28px;
          margin-left: 0; } }
      .contact-section .contact-section-one .section-one-wrapper h3 {
        font-size: 26px;
        color: #0d1d36;
        margin: 0 0 14px 16px; }
        @media only screen and (max-width: 991px) {
          .contact-section .contact-section-one .section-one-wrapper h3 {
            font-size: 24px;
            line-height: 35px;
            margin: 0 0 25px 0; } }
        @media only screen and (max-width: 767px) {
          .contact-section .contact-section-one .section-one-wrapper h3 {
            font-size: 20px;
            line-height: 27px;
            margin: 0 0 15px 0; } }
        @media only screen and (max-width: 479px) {
          .contact-section .contact-section-one .section-one-wrapper h3 {
            font-size: 20px; } }
      .contact-section .contact-section-one .section-one-wrapper .section-left {
        padding-right: 50px; }
        @media only screen and (max-width: 991px) {
          .contact-section .contact-section-one .section-one-wrapper .section-left {
            padding: 0 0 80px; } }
        @media only screen and (max-width: 767px) {
          .contact-section .contact-section-one .section-one-wrapper .section-left {
            padding: 0 0 50px; } }
      .contact-section .contact-section-one .section-one-wrapper .contact-wrapper p {
        font-size: 18px;
        line-height: 34px;
        color: #7c828b; }
        @media only screen and (max-width: 991px) {
          .contact-section .contact-section-one .section-one-wrapper .contact-wrapper p {
            line-height: 27px; } }
        @media only screen and (max-width: 767px) {
          .contact-section .contact-section-one .section-one-wrapper .contact-wrapper p {
            font-size: 16px;
            line-height: 27px; } }
      .contact-section .contact-section-one .section-one-wrapper .contact-wrapper .location {
        margin-top: 22px; }
        .contact-section .contact-section-one .section-one-wrapper .contact-wrapper .location li:nth-child(2) {
          margin-top: 21px; }
        .contact-section .contact-section-one .section-one-wrapper .contact-wrapper .location li i {
          font-size: 20px;
          color: #39a835;
          padding: 10px 14px 0 0; }
        .contact-section .contact-section-one .section-one-wrapper .contact-wrapper .location li .content {
          display: inline-block;
          vertical-align: top; }
        .contact-section .contact-section-one .section-one-wrapper .contact-wrapper .location li .text {
          font-size: 18px;
          line-height: 34px;
          color: #7c828b; }
          @media only screen and (max-width: 767px) {
            .contact-section .contact-section-one .section-one-wrapper .contact-wrapper .location li .text {
              font-size: 16px;
              line-height: 27px; } }
        .contact-section .contact-section-one .section-one-wrapper .contact-wrapper .location li .map-view {
          font-size: 19px;
          line-height: 34px;
          color: #39a835;
          cursor: pointer;
          display: block; }
      .contact-section .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; }
        .contact-section .contact-section-one .section-one-wrapper .contact-wrapper .contact-form .form-group .form-control.form-option {
          color: #8c8c8c;
          padding: 0 30px;
          min-height: 45px; }
        @media only screen and (max-width: 479px) {
          .contact-section .contact-section-one .section-one-wrapper .contact-wrapper .contact-form .form-group .form-control {
            font-size: 14px;
            padding: 18px 30px; }
            .contact-section .contact-section-one .section-one-wrapper .contact-wrapper .contact-form .form-group .form-control.form-option {
              min-height: 37px; } }
      .contact-section .contact-section-one .section-one-wrapper .contact-wrapper .contact-form .form-group .contactSearchBar {
        width: 100%;
        border: 0;
        border-radius: 8px;
        color: #9c9c9c !important;
        background-color: #eef1f5;
        padding: 9px 30px; }
        .contact-section .contact-section-one .section-one-wrapper .contact-wrapper .contact-form .form-group .contactSearchBar:focus {
          outline: none; }
        @media only screen and (max-width: 479px) {
          .contact-section .contact-section-one .section-one-wrapper .contact-wrapper .contact-form .form-group .contactSearchBar {
            font-size: 14px;
            padding: 4px 30px; } }
      .contact-section .contact-section-one .section-one-wrapper .contact-wrapper .contact-form .form-group .subscribeBtn {
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        border-radius: 0;
        padding: 14px 57px;
        margin: 16px 0 10px; }
        @media only screen and (max-width: 767px) {
          .contact-section .contact-section-one .section-one-wrapper .contact-wrapper .contact-form .form-group .subscribeBtn {
            padding: 10px 40px;
            margin: 10px 0 0; } }
        @media only screen and (max-width: 479px) {
          .contact-section .contact-section-one .section-one-wrapper .contact-wrapper .contact-form .form-group .subscribeBtn {
            padding: 6px 30px;
            margin: 5px 0 0; } }
  .contact-section .contact-home {
    position: relative;
    background: url(../images/pp.png) no-repeat 50% 50%;
    background-size: cover;
    padding: 75px 0; }
    @media only screen and (max-width: 991px) {
      .contact-section .contact-home {
        background: #363435;
        padding: 70px 0; }
        .contact-section .contact-home .no-padding {
          padding: 0 15px; } }
    @media only screen and (max-width: 767px) {
      .contact-section .contact-home {
        padding: 50px 0; } }
    .contact-section .contact-home .contact-left-bar {
      position: relative; }
      .contact-section .contact-home .contact-left-bar .title-bar {
        z-index: 5; }
        .contact-section .contact-home .contact-left-bar .title-bar .title {
          font-size: 35px;
          color: #FFFFFF; }
          @media only screen and (max-width: 767px) {
            .contact-section .contact-home .contact-left-bar .title-bar .title {
              font-size: 25px; } }
        .contact-section .contact-home .contact-left-bar .title-bar .title-border {
          top: 65px;
          right: auto;
          background-color: #FFFFFF; }
          @media only screen and (max-width: 767px) {
            .contact-section .contact-home .contact-left-bar .title-bar .title-border {
              top: 48px; } }
          @media only screen and (max-width: 479px) {
            .contact-section .contact-home .contact-left-bar .title-bar .title-border {
              display: none; } }
          .contact-section .contact-home .contact-left-bar .title-bar .title-border::before {
            background-color: #363435; }
        .contact-section .contact-home .contact-left-bar .title-bar p {
          color: #d1d1d1; }
      .contact-section .contact-home .contact-left-bar .address {
        position: relative;
        margin-top: 40px;
        z-index: 5; }
        .contact-section .contact-home .contact-left-bar .address li {
          color: #FFFFFF;
          margin-bottom: 30px; }
          .contact-section .contact-home .contact-left-bar .address li:last-child {
            margin-bottom: 0; }
          .contact-section .contact-home .contact-left-bar .address li i {
            width: 35px;
            height: 35px;
            line-height: 31px;
            font-size: 20px;
            color: #39a835;
            border: 2px solid #FFFFFF;
            text-align: center;
            float: left; }
          .contact-section .contact-home .contact-left-bar .address li .content {
            margin-left: 55px; }
            .contact-section .contact-home .contact-left-bar .address li .content p {
              font-size: 18px; }
    .contact-section .contact-home .contact-right-bar {
      position: relative;
      padding-left: 200px; }
      @media only screen and (max-width: 991px) {
        .contact-section .contact-home .contact-right-bar {
          padding-left: 0;
          margin-top: 50px; } }
      .contact-section .contact-home .contact-right-bar #contactForm {
        margin-top: 15px; }
        @media only screen and (max-width: 991px) {
          .contact-section .contact-home .contact-right-bar #contactForm {
            margin-top: 0; } }
        .contact-section .contact-home .contact-right-bar #contactForm .form-group {
          margin-bottom: 20px; }
          @media only screen and (max-width: 767px) {
            .contact-section .contact-home .contact-right-bar #contactForm .form-group {
              margin-bottom: 0; } }
          .contact-section .contact-home .contact-right-bar #contactForm .form-group .padding-left {
            padding-left: 7px; }
            @media only screen and (max-width: 767px) {
              .contact-section .contact-home .contact-right-bar #contactForm .form-group .padding-left {
                padding-left: 15px; } }
          .contact-section .contact-home .contact-right-bar #contactForm .form-group .padding-right {
            padding-right: 7px; }
            @media only screen and (max-width: 767px) {
              .contact-section .contact-home .contact-right-bar #contactForm .form-group .padding-right {
                padding-right: 15px; } }
          .contact-section .contact-home .contact-right-bar #contactForm .form-group .form-control {
            border-radius: 0; }
            @media only screen and (max-width: 767px) {
              .contact-section .contact-home .contact-right-bar #contactForm .form-group .form-control {
                margin-bottom: 20px; } }
        .contact-section .contact-home .contact-right-bar #contactForm .btn {
          border-radius: 0;
          display: inline-block;
          padding: 10px 48px; }
          @media only screen and (max-width: 479px) {
            .contact-section .contact-home .contact-right-bar #contactForm .btn {
              padding: 8px 35px; } }

.contact-section-two {
  position: relative;
  background: url(../images/contact-bg.jpg) no-repeat;
  background-position: center 70%;
  background-size: cover;
  background-attachment: fixed;
  padding: 65px 0 58px; }
  @media only screen and (max-width: 767px) {
    .contact-section-two {
      padding-bottom: 0; } }
  .contact-section-two::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7); }
  @media only screen and (max-width: 767px) {
    .contact-section-two .contact-wrapper-two {
      margin-bottom: 40px; } }
  .contact-section-two .contact-wrapper-two.middle-wrapper {
    padding-left: 55px; }
    @media only screen and (max-width: 991px) {
      .contact-section-two .contact-wrapper-two.middle-wrapper {
        padding-left: 0; } }
  .contact-section-two .contact-wrapper-two h3 {
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 23px; }
    @media (min-width: 768px) and (max-width: 1199px) {
      .contact-section-two .contact-wrapper-two h3 {
        font-size: 26px; } }
  .contact-section-two .contact-wrapper-two .location li {
    margin-bottom: 20px; }
    .contact-section-two .contact-wrapper-two .location li i {
      font-size: 25px;
      float: left;
      width: 30px;
      line-height: 30px;
      text-align: center;
      padding: 3px 50px 22px 0;
      color: #39a835; }
      @media (min-width: 768px) and (max-width: 1199px) {
        .contact-section-two .contact-wrapper-two .location li i {
          padding-right: 45px; } }
    .contact-section-two .contact-wrapper-two .location li .text {
      font-size: 16px;
      line-height: 27px;
      color: #FFFFFF; }
      @media (min-width: 768px) and (max-width: 1199px) {
        .contact-section-two .contact-wrapper-two .location li .text {
          font-size: 14px; } }

/* =========================================================
        Advice-Section STYLE
============================================================ */
.advice-section {
  background: url(../images/advice-bg.png) no-repeat;
  background-position: 96% 100%; }
  @media only screen and (min-width: 1500px) {
    .advice-section {
      background-position: 70% 54%; } }
  @media only screen and (max-width: 991px) {
    .advice-section {
      background: #FFFFFF; } }
  .advice-section .title-bar {
    margin-bottom: 80px; }
    @media only screen and (max-width: 991px) {
      .advice-section .title-bar {
        margin-bottom: 50px; } }
    @media only screen and (max-width: 767px) {
      .advice-section .title-bar {
        margin-bottom: 30px; } }
  .advice-section #advice-carousel {
    margin-right: 40px; }
    @media only screen and (max-width: 991px) {
      .advice-section #advice-carousel {
        margin-right: 0; } }
    .advice-section #advice-carousel .carousel-inner h3 {
      font-size: 30px;
      font-weight: 500;
      line-height: 38px;
      color: #5f5f5f; }
      @media only screen and (max-width: 991px) {
        .advice-section #advice-carousel .carousel-inner h3 {
          font-size: 25px;
          line-height: 30px; } }
      @media only screen and (max-width: 767px) {
        .advice-section #advice-carousel .carousel-inner h3 {
          font-size: 22px; } }
    .advice-section #advice-carousel .carousel-inner p {
      color: #667380;
      margin-bottom: 30px; }
      @media only screen and (max-width: 479px) {
        .advice-section #advice-carousel .carousel-inner p {
          margin-bottom: 20px; } }
    .advice-section #advice-carousel .carousel-control.left, .advice-section #advice-carousel .carousel-control.right {
      top: auto;
      bottom: 0;
      background-image: none;
      width: 40px;
      height: 40px;
      line-height: 36px;
      color: #bab5b5;
      border: 2px solid #39a835;
      opacity: 1;
      text-shadow: none; }
      .advice-section #advice-carousel .carousel-control.left:hover, .advice-section #advice-carousel .carousel-control.right:hover {
        color: #353535; }
      .advice-section #advice-carousel .carousel-control.left i, .advice-section #advice-carousel .carousel-control.right i {
        font-size: 25px; }
      @media only screen and (max-width: 479px) {
        .advice-section #advice-carousel .carousel-control.left, .advice-section #advice-carousel .carousel-control.right {
          bottom: -40px; } }
    .advice-section #advice-carousel .carousel-control.left {
      left: auto;
      right: 45px; }
  .advice-section .progressContent {
    position: relative;
    margin-top: 25px; }
    @media only screen and (max-width: 991px) {
      .advice-section .progressContent {
        margin-top: 45px; } }
    @media only screen and (max-width: 479px) {
      .advice-section .progressContent {
        margin-top: 85px; } }
    .advice-section .progressContent .progressSection .title {
      font-family: "Poppins", sans-serif;
      font-size: 18px;
      line-height: 30px;
      color: #06223e; }
    .advice-section .progressContent .progressSection .progress {
      position: relative;
      height: 17px;
      box-shadow: none;
      background-color: #d3dce0;
      border: 0;
      border-radius: 25px;
      overflow: visible; }
      .advice-section .progressContent .progressSection .progress.progressOne {
        margin-top: 3px; }
        .advice-section .progressContent .progressSection .progress.progressOne .progress-percent {
          top: -40px;
          margin-left: -28px; }
      .advice-section .progressContent .progressSection .progress.progressTwo {
        margin-top: 3px; }
        .advice-section .progressContent .progressSection .progress.progressTwo .progress-percent {
          top: -40px;
          margin-left: -28px; }
      .advice-section .progressContent .progressSection .progress.progressThree {
        margin-top: 3px; }
        .advice-section .progressContent .progressSection .progress.progressThree .progress-percent {
          top: -40px;
          margin-left: -28px; }
      .advice-section .progressContent .progressSection .progress .progress-bar {
        box-shadow: none;
        text-align: right;
        height: 17px;
        border-radius: 15px;
        background-image: none;
        background: #353535; }
        .advice-section .progressContent .progressSection .progress .progress-bar .progress-percent {
          font-size: 13.5px;
          background-color: #39a835;
          position: absolute;
          padding: 4px 6px;
          border-radius: 5px; }
          .advice-section .progressContent .progressSection .progress .progress-bar .progress-percent::before {
            content: "";
            position: absolute;
            left: 0px;
            right: 0;
            margin: 0 auto;
            bottom: -6px;
            border-top: 8px solid #39a835;
            border-right: 8px solid transparent;
            border-left: 8px solid transparent;
            width: 10px; }

/* =========================================================
        Service-Section STYLE
============================================================ */
.service-section {
  background: url(../images/ss-bg.jpg) no-repeat;
  background-position: center top;
  background-attachment: fixed;
  background-size: cover;
  padding: 110px 0 100px; }
  .service-section .service-carousel .service-wrapper {
    padding-bottom: 50px; }
    .service-section .service-carousel .service-wrapper img {
      width: auto;
      margin: 0 auto; }
      @media only screen and (max-width: 479px) {
        .service-section .service-carousel .service-wrapper img {
          width: 65px; } }
    .service-section .service-carousel .service-wrapper h3 {
      font-weight: 700;
      color: #fefefe;
      margin: 11px 0; }
    .service-section .service-carousel .service-wrapper p {
      font-size: 18px;
      line-height: 30px;
      color: #adb4bf;
      margin-bottom: 35px;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
    .service-section .service-carousel .service-wrapper:hover p {
      color: #FFFFFF; }
    .service-section .service-carousel .service-wrapper .link {
      font-size: 18px;
      font-weight: 700;
      color: #FFFFFF; }
      .service-section .service-carousel .service-wrapper .link i {
        padding-left: 5px; }
    .service-section .service-carousel .service-wrapper:hover .link {
      background-color: #DE2A1C;
      padding: 10px 22px;
      border-radius: 25px; }
  .service-section .service-carousel .owl-dots {
    display: inline-block; }
    .service-section .service-carousel .owl-dots .owl-dot.active span {
      /*width: 15px;
      height: 15px;
      border: 0;*/
      background-color: #DE2A1C;
      border-color: #DE2A1C;
      margin-top: 1px; }
    .service-section .service-carousel .owl-dots .owl-dot span {
      width: 13px;
      height: 13px;
      background-color: transparent;
      border-radius: 50%;
      border: 2px solid #FFFFFF; }

/* =========================================================
        Finance-Section STYLE
============================================================ */
.finance-section .title-bar {
  margin-bottom: 45px; }
  @media only screen and (max-width: 767px) {
    .finance-section .title-bar {
      margin-bottom: 25px; } }
.finance-section .finance-wrapper {
  position: relative;
  padding: 40px 0 50px;
  overflow: hidden; }
  @media only screen and (max-width: 991px) {
    .finance-section .finance-wrapper {
      padding-bottom: 80px; } }
  @media only screen and (max-width: 479px) {
    .finance-section .finance-wrapper {
      padding-bottom: 50px; } }
  .finance-section .finance-wrapper.wrapper-one::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/f-bg.jpg) no-repeat;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: 1s;
    -khtml-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    animation: cloud-animation 45s linear infinite;
    -ms-animation: cloud-animation 45s linear infinite;
    -moz-animation: cloud-animation 45s linear infinite;
    -webkit-animation: cloud-animation 45s linear infinite; }
@-webkit-keyframes cloud-animation {
  from {
    background-position: 0 0; }
  to {
    background-position: 100% 0; } }
@keyframes cloud-animation {
  from {
    background-position: 0 0; }
  to {
    background-position: 100% 0; } }
  .finance-section .finance-wrapper.wrapper-three::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 440px;
    background: url(../images/f3-bg.jpg) no-repeat;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: 1s;
    -khtml-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    animation: cloud-animation-3 15s linear infinite;
    -ms-animation: cloud-animation-3 15s linear infinite;
    -moz-animation: cloud-animation-3 15s linear infinite;
    -webkit-animation: cloud-animation-3 15s linear infinite; }
@-webkit-keyframes cloud-animation-3 {
  from {
    background-position: 0 100%; }
  to {
    background-position: 0 0; } }
@keyframes cloud-animation-3 {
  from {
    background-position: 0 100%; }
  to {
    background-position: 0 0; } }
  .finance-section .finance-wrapper.wrapper-two::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/f2-bg.jpg) no-repeat;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: 1s;
    -khtml-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    animation: cloud-animation-2 45s linear infinite;
    -ms-animation: cloud-animation-2 45s linear infinite;
    -moz-animation: cloud-animation-2 45s linear infinite;
    -webkit-animation: cloud-animation-2 45s linear infinite; }
@-webkit-keyframes cloud-animation-2 {
  from {
    background-position: 100% 0; }
  to {
    background-position: 0 0; } }
@keyframes cloud-animation-2 {
  from {
    background-position: 100% 0; }
  to {
    background-position: 0 0; } }
  .finance-section .finance-wrapper:hover.wrapper-one::before, .finance-section .finance-wrapper:hover.wrapper-three::before, .finance-section .finance-wrapper:hover.wrapper-two::before {
    opacity: 1;
    visibility: visible; }
  .finance-section .finance-wrapper .caption {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #39a835;
    margin: 0 auto;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .finance-section .finance-wrapper .caption img {
      padding-top: 18px; }
    .finance-section .finance-wrapper .caption .hover-icon {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
      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; }
    @media only screen and (max-width: 479px) {
      .finance-section .finance-wrapper .caption {
        width: 50px;
        height: 50px; }
        .finance-section .finance-wrapper .caption img {
          width: 20px;
          padding-top: 15px; } }
  .finance-section .finance-wrapper:hover .caption {
    background-color: #FFFFFF; }
    .finance-section .finance-wrapper:hover .caption .hover-icon {
      opacity: 1;
      visibility: visible; }
  .finance-section .finance-wrapper h3 {
    font-size: 20px;
    font-weight: 500;
    color: #0d1d36;
    margin: 21px 0 8px;
    -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) {
      .finance-section .finance-wrapper h3 {
        font-size: 18px;
        line-height: 27px;
        margin: 10px 0 5px; } }
  .finance-section .finance-wrapper:hover h3 {
    color: #FFFFFF; }
  .finance-section .finance-wrapper p {
    font-size: 18px;
    line-height: 27px;
    color: #7c828b;
    margin-bottom: 40px;
    padding: 0 36px;
    -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: 1199px) {
      .finance-section .finance-wrapper p {
        padding: 0 10px; } }
    @media only screen and (max-width: 479px) {
      .finance-section .finance-wrapper p {
        font-size: 14px;
        line-height: 25px;
        padding: 0;
        margin-bottom: 20px; } }
  .finance-section .finance-wrapper:hover p {
    color: #FFFFFF; }
  .finance-section .finance-wrapper .link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #5f5f5f;
    padding: 18px 35px;
    border-radius: 0; }
    .finance-section .finance-wrapper .link i {
      padding-left: 5px; }
    @media only screen and (max-width: 767px) {
      .finance-section .finance-wrapper .link {
        padding: 12px 30px; } }
    @media only screen and (max-width: 479px) {
      .finance-section .finance-wrapper .link {
        font-size: 12px;
        padding: 8px 20px; } }
  .finance-section .finance-wrapper:hover .link {
    background-color: #39a835; }
.finance-section hr {
  border-top: 2px solid #ececec; }

.finance-section-two .title-bar {
  margin-bottom: 45px; }
.finance-section-two .section-wrapper {
  position: relative;
  overflow: hidden; }
  .finance-section-two .section-wrapper.last-wrapper {
    margin: 0; }
  @media only screen and (max-width: 991px) {
    .finance-section-two .section-wrapper {
      margin-bottom: 30px; } }
  @media only screen and (max-width: 479px) {
    .finance-section-two .section-wrapper {
      margin-bottom: 15px; } }
  .finance-section-two .section-wrapper:hover .overlay {
    height: 100%;
    padding: 35px 15px; }
    .finance-section-two .section-wrapper:hover .overlay p {
      display: block; }
  .finance-section-two .section-wrapper img {
    width: 100%; }
  .finance-section-two .section-wrapper .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: rgba(0, 179, 254, 0.73);
    padding: 8px 15px;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .finance-section-two .section-wrapper .overlay h3 {
      font-size: 20px;
      font-weight: 500;
      display: inline-block;
      margin-bottom: 10px; }
      .finance-section-two .section-wrapper .overlay h3 a {
        color: #FFFFFF; }
        .finance-section-two .section-wrapper .overlay h3 a:hover {
          color: #313131; }
      @media only screen and (max-width: 479px) {
        .finance-section-two .section-wrapper .overlay h3 {
          font-size: 22px; } }
    .finance-section-two .section-wrapper .overlay p {
      color: #FFFFFF;
      display: none; }

/* =========================================================
        Client-Section STYLE
============================================================ */
.client-section {
  padding: 80px 0 45px; }
  @media only screen and (max-width: 991px) {
    .client-section {
      padding: 65px 0 30px; } }
  .client-section .client-carousel {
    margin-top: 50px; }
    @media only screen and (max-width: 991px) {
      .client-section .client-carousel {
        margin-top: 40px; } }
    @media only screen and (max-width: 767px) {
      .client-section .client-carousel {
        margin-top: 30px; } }
    .client-section .client-carousel img {
      width: auto;
      margin: 0 auto;
      border: 2px solid transparent;
      filter: gray;
      /* IE6-9 */
      -webkit-filter: grayscale(1);
      /* Google Chrome, Safari 6+ & Opera 15+ */
      filter: grayscale(1);
      /* Microsoft Edge and Firefox 35+ */
      padding: 15px 50px;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      .client-section .client-carousel img:hover {
        border: 2px solid #39a835;
        -webkit-filter: grayscale(0);
        filter: none; }
      @media only screen and (max-width: 767px) {
        .client-section .client-carousel img {
          padding: 5px 20px; } }
    .client-section .client-carousel .owl-nav {
      position: relative;
      top: -90px;
      display: block !important; }
      .client-section .client-carousel .owl-nav .owl-prev {
        width: 0;
        font-size: 0;
        background: transparent;
        margin: 0;
        padding: 0;
        position: absolute;
        left: -27px; }
        @media only screen and (max-width: 767px) {
          .client-section .client-carousel .owl-nav .owl-prev {
            left: 0; } }
        .client-section .client-carousel .owl-nav .owl-prev:hover::before {
          background-color: #39a835;
          color: #FFFFFF; }
        .client-section .client-carousel .owl-nav .owl-prev::before {
          content: "\f104";
          font-family: 'FontAwesome';
          font-size: 22px;
          color: #0a22ab;
          width: 40px;
          height: 35px;
          line-height: 35px;
          text-align: center;
          padding: 0 8px;
          border: 2px solid #39a835;
          -webkit-transition: 0.5s;
          -khtml-transition: 0.5s;
          -moz-transition: 0.5s;
          -ms-transition: 0.5s;
          -o-transition: 0.5s;
          transition: 0.5s; }
      .client-section .client-carousel .owl-nav .owl-next {
        width: 0;
        font-size: 0;
        background: transparent;
        margin: 0;
        padding: 0;
        position: absolute;
        right: 0; }
        @media only screen and (max-width: 767px) {
          .client-section .client-carousel .owl-nav .owl-next {
            right: 27px; } }
        .client-section .client-carousel .owl-nav .owl-next:hover::before {
          background-color: #39a835;
          color: #FFFFFF; }
        .client-section .client-carousel .owl-nav .owl-next::before {
          content: "\f105";
          font-family: 'FontAwesome';
          font-size: 22px;
          color: #0a22ab;
          width: 40px;
          height: 35px;
          line-height: 35px;
          text-align: center;
          padding: 0 8px;
          border: 2px solid #39a835;
          -webkit-transition: 0.5s;
          -khtml-transition: 0.5s;
          -moz-transition: 0.5s;
          -ms-transition: 0.5s;
          -o-transition: 0.5s;
          transition: 0.5s; }

.client-section-two .title-bar {
  margin-bottom: 55px; }
  @media only screen and (max-width: 479px) {
    .client-section-two .title-bar {
      margin-bottom: 35px; } }
.client-section-two .section-wrapper {
  position: relative; }
  .client-section-two .section-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 49%;
    width: 100%;
    height: 1px;
    background-color: #eee; }
    @media only screen and (max-width: 991px) {
      .client-section-two .section-wrapper::before {
        display: none; } }
  .client-section-two .section-wrapper .border-one,
  .client-section-two .section-wrapper .border-two,
  .client-section-two .section-wrapper .border-three {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #eee; }
    @media only screen and (max-width: 991px) {
      .client-section-two .section-wrapper .border-one,
      .client-section-two .section-wrapper .border-two,
      .client-section-two .section-wrapper .border-three {
        display: none; } }
    .client-section-two .section-wrapper .border-one::before,
    .client-section-two .section-wrapper .border-two::before,
    .client-section-two .section-wrapper .border-three::before {
      content: "";
      position: absolute;
      top: 42.5%;
      left: -16px;
      width: 35px;
      height: 35px;
      background-color: #FFFFFF;
      border-radius: 50%; }
      @media only screen and (max-width: 991px) {
        .client-section-two .section-wrapper .border-one::before,
        .client-section-two .section-wrapper .border-two::before,
        .client-section-two .section-wrapper .border-three::before {
          display: none; } }
  .client-section-two .section-wrapper .border-one {
    left: 24%; }
  .client-section-two .section-wrapper .border-two {
    left: 50%; }
  .client-section-two .section-wrapper .border-three {
    left: 75.5%; }
  .client-section-two .section-wrapper .caption-wrapper:nth-child(5) .client-caption, .client-section-two .section-wrapper .caption-wrapper:nth-child(6) .client-caption, .client-section-two .section-wrapper .caption-wrapper:nth-child(7) .client-caption, .client-section-two .section-wrapper .caption-wrapper:nth-child(8) .client-caption {
    margin-bottom: 15px; }
  .client-section-two .section-wrapper .caption-wrapper .client-caption {
    margin-bottom: 60px; }
    @media only screen and (max-width: 767px) {
      .client-section-two .section-wrapper .caption-wrapper .client-caption {
        margin-bottom: 40px; } }
    @media only screen and (max-width: 479px) {
      .client-section-two .section-wrapper .caption-wrapper .client-caption {
        margin-bottom: 25px; } }
  @media (min-width: 480px) and (max-width: 767px) {
    .client-section-two .section-wrapper .caption-wrapper {
      width: 50%;
      float: left; } }

/* =========================================================
        Recent-Job-Section STYLE
============================================================ */
.recent-job {
  position: relative;
  background: url(../images/cr-bg.jpg) no-repeat center top;
  background-attachment: fixed;
  background-size: cover;
  padding: 85px 0 170px; }
  @media only screen and (max-width: 991px) {
    .recent-job {
      padding: 70px 0 130px; } }
  @media only screen and (max-width: 767px) {
    .recent-job {
      padding-bottom: 120px; } }
  .recent-job:before {
    content: "";
    height: 100%;
    position: absolute;
    left: 0;
    top: 0; }
  .recent-job #job-carousel {
    position: relative; }
    .recent-job #job-carousel .carousel-indicators {
      bottom: -100px; }
      .recent-job #job-carousel .carousel-indicators li {
        width: 18px;
        height: 18px;
        background-color: #FFFFFF;
        border: 0;
        margin: 0 3px; }
        .recent-job #job-carousel .carousel-indicators li.active {
          background-color: #39a835; }
      @media only screen and (max-width: 767px) {
        .recent-job #job-carousel .carousel-indicators {
          bottom: -60px; }
          .recent-job #job-carousel .carousel-indicators li {
            width: 13px;
            height: 13px; } }
    .recent-job #job-carousel .carousel-inner .job-list {
      background-color: #39a835;
      padding: 75px 45px 65px;
      overflow: hidden; }
      @media only screen and (max-width: 768px) {
        .recent-job #job-carousel .carousel-inner .job-list {
          padding: 50px 45px 25px;
          text-align: center; } }
      @media only screen and (max-width: 479px) {
        .recent-job #job-carousel .carousel-inner .job-list {
          padding: 35px 15px 15px; } }
      .recent-job #job-carousel .carousel-inner .job-list:before {
        content: "";
        background-color: #FFFFFF;
        width: 506px;
        height: 100%;
        position: absolute;
        left: -82px;
        top: 0;
        -webkit-transform: skewX(-20deg);
        transform: skewX(-20deg); }
        @media only screen and (max-width: 1199px) {
          .recent-job #job-carousel .carousel-inner .job-list:before {
            display: none; } }
      .recent-job #job-carousel .carousel-inner .job-list .job-title {
        width: 40%;
        height: 100%;
        float: left;
        position: relative;
        z-index: 10; }
        @media only screen and (max-width: 1199px) {
          .recent-job #job-carousel .carousel-inner .job-list .job-title {
            width: 35%; } }
        @media only screen and (max-width: 991px) {
          .recent-job #job-carousel .carousel-inner .job-list .job-title {
            width: 100%;
            float: none;
            margin-bottom: 25px; } }
        .recent-job #job-carousel .carousel-inner .job-list .job-title h3 {
          font-size: 32px;
          line-height: 38px;
          font-weight: 500; }
          @media only screen and (max-width: 991px) {
            .recent-job #job-carousel .carousel-inner .job-list .job-title h3 {
              font-size: 25px;
              line-height: 35px;
              margin-bottom: 0; } }
          @media only screen and (max-width: 767px) {
            .recent-job #job-carousel .carousel-inner .job-list .job-title h3 {
              font-size: 20px;
              line-height: 25px; } }
        .recent-job #job-carousel .carousel-inner .job-list .job-title .job-post {
          font-size: 18px;
          font-weight: 400;
          line-height: 30px;
          color: #abaeb2; }
          @media only screen and (max-width: 1199px) {
            .recent-job #job-carousel .carousel-inner .job-list .job-title .job-post {
              color: #000000; } }
  .recent-job .job-list .job-description {
    width: 60%;
    height: 100%;
    float: left;
    position: relative;
    z-index: 10;
    overflow: hidden; }
    @media only screen and (max-width: 1199px) {
      .recent-job .job-list .job-description {
        width: 65%;
        padding-left: 15px; } }
    @media only screen and (max-width: 991px) {
      .recent-job .job-list .job-description {
        width: 100%;
        float: none;
        padding-left: 0;
        margin-top: 8px; } }
  .recent-job .job-list .job-description .left-bar {
    width: 60%;
    float: left; }
    @media only screen and (max-width: 767px) {
      .recent-job .job-list .job-description .left-bar {
        width: 100%;
        float: none; } }
  .recent-job .job-list .job-description .left-bar .details {
    /*font-size: calc-rem-value(18);*/
    font-weight: bold; }
    @media only screen and (max-width: 991px) {
      .recent-job .job-list .job-description .left-bar .details {
        /*font-size: calc-rem-value(15);*/ } }
  .recent-job .job-list .job-description .right-bar {
    width: 40%;
    float: left;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .recent-job .job-list .job-description .right-bar {
        width: 100%;
        float: none;
        margin: 15px 0 0; } }
  .recent-job .job-list .job-description p,
  .recent-job .job-list .job-description a {
    font-size: 18px;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 27px; }
    @media only screen and (max-width: 767px) {
      .recent-job .job-list .job-description p,
      .recent-job .job-list .job-description a {
        font-size: 15px; } }
    @media only screen and (max-width: 479px) {
      .recent-job .job-list .job-description p,
      .recent-job .job-list .job-description a {
        line-height: 20px; } }
  .recent-job .job-list .job-description .icon,
  .recent-job .job-list .job-description .location {
    display: block;
    color: #FFFFFF; }
  .recent-job .job-list .job-description .icon {
    font-size: 50px;
    color: #FFFFFF;
    margin-bottom: 10px; }
    @media only screen and (max-width: 991px) {
      .recent-job .job-list .job-description .icon {
        font-size: 35px; } }
  .recent-job .job-list .job-description .location {
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    margin-bottom: 5px; }
    @media only screen and (max-width: 479px) {
      .recent-job .job-list .job-description .location {
        font-size: 16px; } }
  .recent-job .job-list .job-description .btn {
    background-color: #FFFFFF;
    display: inline-block;
    color: #39a835;
    padding: 7px 30px;
    margin-top: 10px;
    border: 2px solid transparent; }
    @media only screen and (max-width: 768px) {
      .recent-job .job-list .job-description .btn {
        font-size: 15px;
        padding: 4px 20px; } }
    .recent-job .job-list .job-description .btn:hover {
      color: #FFFFFF;
      background-color: transparent;
      border: 2px solid #FFFFFF; }

/* =========================================================
        News-Letter-Section STYLE
============================================================ */
.newsletter-section .letter-wrapper .letter-caption img {
  width: 100%; }
.newsletter-section .letter-wrapper .letter-content {
  border: 1px solid #dddddd;
  border-radius: 0 0 8px 8px;
  border-top: 1px solid transparent;
  padding: 30px;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }
  .newsletter-section .letter-wrapper .letter-content .date {
    font-size: 15px;
    font-weight: 700;
    color: #7c828b;
    text-transform: uppercase; }
  .newsletter-section .letter-wrapper .letter-content h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 35px;
    margin: 10px 0 13px; }
    @media only screen and (max-width: 767px) {
      .newsletter-section .letter-wrapper .letter-content h3 {
        font-size: 20px; } }
    @media only screen and (max-width: 479px) {
      .newsletter-section .letter-wrapper .letter-content h3 {
        font-size: 18px; } }
  .newsletter-section .letter-wrapper .letter-content p {
    font-size: 18px;
    line-height: 30px;
    color: #7c828b; }
    @media only screen and (max-width: 767px) {
      .newsletter-section .letter-wrapper .letter-content p {
        font-size: 16px;
        line-height: 27px; } }
  .newsletter-section .letter-wrapper .letter-content a {
    font-weight: 700;
    color: #7c828b; }
    .newsletter-section .letter-wrapper .letter-content a:hover {
      color: #DE2A1C; }
    .newsletter-section .letter-wrapper .letter-content a i {
      color: #DE2A1C;
      padding-right: 5px; }
@media only screen and (max-width: 991px) {
  .newsletter-section .letter-wrapper {
    margin-bottom: 50px; } }
.newsletter-section .content-wrapper {
  margin-top: -7px; }
  .newsletter-section .content-wrapper .date {
    font-size: 15px;
    font-weight: 700;
    color: #7c828b;
    text-transform: uppercase; }
  .newsletter-section .content-wrapper h3 {
    font-size: 30px;
    line-height: 35px;
    margin: 0 0 13px; }
    .newsletter-section .content-wrapper h3 a {
      color: #5f5f5f; }
    .newsletter-section .content-wrapper h3:hover a {
      color: #DE2A1C; }
    @media only screen and (max-width: 767px) {
      .newsletter-section .content-wrapper h3 {
        font-size: 20px; } }
    @media only screen and (max-width: 479px) {
      .newsletter-section .content-wrapper h3 {
        font-size: 18px; } }
  .newsletter-section .content-wrapper p {
    font-size: 18px;
    line-height: 27px;
    color: #7c828b; }
    @media only screen and (max-width: 767px) {
      .newsletter-section .content-wrapper p {
        font-size: 16px;
        line-height: 27px; } }
  .newsletter-section .content-wrapper hr {
    margin: 32px 0 15px; }
  .newsletter-section .content-wrapper a {
    font-weight: 700;
    color: #7c828b; }
    .newsletter-section .content-wrapper a:hover {
      color: #DE2A1C; }
    .newsletter-section .content-wrapper a i {
      color: #DE2A1C;
      padding-right: 5px; }
@media only screen and (max-width: 479px) {
  .newsletter-section .letter-contact {
    text-align: center; } }
.newsletter-section .letter-contact .title-bar .title {
  margin-bottom: 44px; }
.newsletter-section .letter-contact .first-part {
  border: 5px solid #e9eef2;
  border-radius: 8px;
  padding: 60px 30px 100px; }
  .newsletter-section .letter-contact .first-part h3 {
    font-size: 23px;
    line-height: 36px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .newsletter-section .letter-contact .first-part .letter-form {
      text-align: center; } }
  .newsletter-section .letter-contact .first-part .letter-form .form-group {
    float: left;
    margin: 0; }
    @media only screen and (max-width: 479px) {
      .newsletter-section .letter-contact .first-part .letter-form .form-group {
        display: block; } }
    .newsletter-section .letter-contact .first-part .letter-form .form-group .letterSearchBar {
      text-transform: capitalize;
      color: #7c828b;
      border: 2px solid #e9eef2;
      border-radius: 25px 0 0 25px;
      padding: 14px 24px;
      height: auto; }
      @media (min-width: 992px) and (max-width: 1199px) {
        .newsletter-section .letter-contact .first-part .letter-form .form-group .letterSearchBar {
          border-radius: 25px; } }
      @media only screen and (max-width: 479px) {
        .newsletter-section .letter-contact .first-part .letter-form .form-group .letterSearchBar {
          border-radius: 25px; } }
    .newsletter-section .letter-contact .first-part .letter-form .form-group .subscribeBtn {
      background-color: #0d1d36;
      border-radius: 0 25px 25px 0;
      padding: 10px 25px 13px;
      margin-left: -4px; }
      @media (min-width: 992px) and (max-width: 1199px) {
        .newsletter-section .letter-contact .first-part .letter-form .form-group .subscribeBtn {
          border-radius: 25px;
          margin-top: 5px;
          padding: 10px 35px; } }
      @media only screen and (max-width: 479px) {
        .newsletter-section .letter-contact .first-part .letter-form .form-group .subscribeBtn {
          border-radius: 25px;
          margin-top: 5px;
          padding: 10px 40px 13px; }
          .newsletter-section .letter-contact .first-part .letter-form .form-group .subscribeBtn i {
            font-size: 18px !important; } }
      .newsletter-section .letter-contact .first-part .letter-form .form-group .subscribeBtn i {
        font-size: 25px;
        color: #FFFFFF; }
.newsletter-section .letter-contact .second-part h4 {
  font-size: 24px;
  font-weight: 700;
  color: #5f5f5f;
  margin: 45px 0 20px; }
.newsletter-section .letter-contact .second-part .caption {
  display: flex; }
  .newsletter-section .letter-contact .second-part .caption img {
    flex: 1;
    max-width: 100%; }
  @media only screen and (max-width: 1199px) {
    .newsletter-section .letter-contact .second-part .caption {
      display: block; } }

/* =========================================================
        Office-History STYLE
============================================================ */
.office-history {
  padding: 38px 0 75px; }
  @media only screen and (max-width: 991px) {
    .office-history {
      padding: 70px 0 50px; } }
  @media only screen and (max-width: 479px) {
    .office-history {
      padding: 50px 0 0px; } }
  .office-history .history-wrapper {
    position: relative;
    display: flex; }
    @media only screen and (max-width: 479px) {
      .office-history .history-wrapper {
        display: block; } }
    .office-history .history-wrapper::before {
      content: "";
      position: absolute;
      left: 0;
      top: -22px;
      width: 100%;
      height: 1px;
      background-color: #e0e0e0; }
      @media only screen and (max-width: 479px) {
        .office-history .history-wrapper::before {
          display: none; } }
    .office-history .history-wrapper li {
      position: relative;
      flex: 1; }
      @media only screen and (max-width: 479px) {
        .office-history .history-wrapper li {
          margin-bottom: 50px; } }
      .office-history .history-wrapper li:hover::after {
        opacity: 1; }
      .office-history .history-wrapper li::before {
        content: "";
        position: absolute;
        top: -28px;
        left: 0;
        right: 0;
        width: 13px;
        height: 13px;
        margin: 0 auto;
        border-radius: 50%;
        background-color: #39a835;
        z-index: 2; }
      .office-history .history-wrapper li::after {
        content: "";
        position: absolute;
        top: -34px;
        left: 0;
        right: 0;
        width: 25px;
        height: 25px;
        margin: 0 auto;
        border-radius: 50%;
        background-color: #FFFFFF;
        box-shadow: 0 0 10px #cacaca;
        opacity: 0;
        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; }
        @media only screen and (max-width: 479px) {
          .office-history .history-wrapper li::after {
            left: 0;
            top: -22px;
            width: 100%;
            height: 1px;
            border-radius: 0;
            background-color: #e0e0e0;
            opacity: 1; } }
      .office-history .history-wrapper li .text {
        font-family: "Poppins", sans-serif;
        font-size: 18px;
        font-weight: 600;
        line-height: 10px;
        display: block; }
        .office-history .history-wrapper li .text {
          color: #06223e; }
        @media only screen and (max-width: 991px) {
          .office-history .history-wrapper li .text {
            line-height: 20px; } }
        @media only screen and (max-width: 767px) {
          .office-history .history-wrapper li .text {
            font-size: 16px;
            line-height: 18px; } }
        @media only screen and (max-width: 550px) {
          .office-history .history-wrapper li .text {
            font-size: 14px;
            line-height: 15px; } }
        @media only screen and (max-width: 479px) {
          .office-history .history-wrapper li .text {
            font-size: 16px;
            line-height: 18px; } }
      .office-history .history-wrapper li .year {
        font-size: 14px;
        color: #667380; }

/* =========================================================
        Section-Sidebar STYLE
============================================================ */
@media only screen and (max-width: 991px) {
  .section-sidebar {
    margin-bottom: 0; } }
.section-sidebar .project-part h4 {
  font-size: 30px;
  font-weight: 700;
  color: #0d1d36;
  margin-bottom: 44px; }
  @media (min-width: 479px) and (max-width: 1199px) {
    .section-sidebar .project-part h4 {
      font-size: 25px; } }
  @media only screen and (max-width: 767px) {
    .section-sidebar .project-part h4 {
      margin-bottom: 25px; } }
  @media only screen and (max-width: 479px) {
    .section-sidebar .project-part h4 {
      font-size: 20px;
      margin-bottom: 24px; } }
.section-sidebar .project-part ul li {
  border: 1px solid #d7d7d7;
  margin-bottom: 10px;
  border-radius: 8px;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }
  .section-sidebar .project-part ul li:hover {
    border: 1px solid transparent; }
  .section-sidebar .project-part ul li a {
    font-size: 16px;
    color: #666666;
    font-weight: 600;
    padding: 11px 20px;
    display: block; }
    .section-sidebar .project-part ul li a:hover {
      color: #39a835; }
    @media only screen and (max-width: 479px) {
      .section-sidebar .project-part ul li a {
        font-size: 15px; } }
  .section-sidebar .project-part ul li i {
    float: right;
    padding-top: 5px; }
.section-sidebar .contact-part {
  margin: 60px 0 75px; }
  @media only screen and (max-width: 991px) {
    .section-sidebar .contact-part {
      margin: 60px 0 0; } }
  @media only screen and (max-width: 767px) {
    .section-sidebar .contact-part {
      margin: 40px 0 0; } }
  .section-sidebar .contact-part h4 {
    font-size: 30px;
    font-weight: 500;
    color: #0d1d36;
    margin-bottom: 25px; }
    @media (min-width: 479px) and (max-width: 1199px) {
      .section-sidebar .contact-part h4 {
        font-size: 25px; } }
    @media only screen and (max-width: 767px) {
      .section-sidebar .contact-part h4 {
        margin-bottom: 25px; } }
    @media only screen and (max-width: 479px) {
      .section-sidebar .contact-part h4 {
        font-size: 20px;
        margin-bottom: 24px; } }
  .section-sidebar .contact-part .location li {
    margin-bottom: 20px; }
    .section-sidebar .contact-part .location li:last-child {
      margin-bottom: 0; }
    .section-sidebar .contact-part .location li i {
      font-size: 25px;
      float: left;
      width: 30px;
      line-height: 40px;
      text-align: center;
      padding: 0 50px 22px 0;
      color: #39a835; }
      @media (min-width: 768px) and (max-width: 1199px) {
        .section-sidebar .contact-part .location li i {
          padding-right: 45px; } }
      @media only screen and (max-width: 767px) {
        .section-sidebar .contact-part .location li i {
          font-size: 20px;
          padding: 0px 30px 22px 0; } }
    .section-sidebar .contact-part .location li .text {
      font-size: 16px;
      line-height: 27px;
      color: #666666; }
      @media only screen and (max-width: 767px) {
        .section-sidebar .contact-part .location li .text {
          font-size: 15px; } }
@media only screen and (max-width: 991px) {
  .section-sidebar .asset-part {
    margin-top: 40px; } }
.section-sidebar .asset-part h4 {
  font-size: 30px;
  font-weight: 500;
  color: #0d1d36;
  margin-bottom: 22px; }
  @media (min-width: 480px) and (max-width: 1199px) {
    .section-sidebar .asset-part h4 {
      font-size: 26px; } }
  @media only screen and (max-width: 767px) {
    .section-sidebar .asset-part h4 {
      font-size: 20px; } }
  @media only screen and (max-width: 991px) {
    .section-sidebar .asset-part h4 {
      text-align: left;
      margin-bottom: 15px; } }
.section-sidebar .asset-part p {
  font-size: 16px;
  line-height: 27px;
  color: #666666;
  margin-bottom: 22px; }
.section-sidebar .asset-part .btn {
  display: block;
  border-radius: 8px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .section-sidebar .asset-part .btn {
      font-size: 15px;
      padding: 10px 20px; } }
  .section-sidebar .asset-part .btn.btn-primary {
    margin-bottom: 14px;
    padding: 12px 30px; }
  .section-sidebar .asset-part .btn i {
    float: left;
    padding-top: 5px; }
  @media only screen and (max-width: 991px) {
    .section-sidebar .asset-part .btn {
      font-size: 16px;
      display: inline-block;
      padding: 10px 20px !important;
      margin-bottom: 14px !important; }
      .section-sidebar .asset-part .btn i {
        padding-right: 10px; }
      .section-sidebar .asset-part .btn.btn-primary {
        margin-bottom: 0; } }
  @media only screen and (max-width: 991px) {
    .section-sidebar .asset-part .btn {
      font-size: 14px;
      padding: 6px 15px !important; } }

/* =========================================================
        Footer STYLE
============================================================ */
.footer-section {
  position: relative;
      background: url(../images/contact-bg.jpg) no-repeat;
      background-position: center 70%;
      background-size: cover;
      background-attachment: fixed;
      padding: 65px 0px 0px;
  }
.footer-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 65%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7); }
  @media only screen and (max-width: 991px) {
    .footer-section::before {
      height: 75%;} }
  .footer-section .footer-part {
    padding: 10px 0 20px; }
    @media (min-width: 768px) and (max-width: 991px) {
      .footer-section .footer-part {
        padding: 70px 0 0; } }
    @media only screen and (max-width: 767px) {
      .footer-section .footer-part {
        padding: 60px 0 0; } }
    @media only screen and (max-width: 991px) {
      .footer-section .footer-part .footer-wrapper {
        margin-bottom: 50px; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .footer-section .footer-part .footer-wrapper .footer-logo img {
        width: 100%; } }
    .footer-section .footer-part .footer-wrapper p {
      color: #FFFFFF;
      margin: 20px 0 30px; }
    .footer-section .footer-part .footer-wrapper .time-part li {
      text-transform: uppercase; }
      .footer-section .footer-part .footer-wrapper .time-part li span {
        color: #39a835; }
    .footer-section .footer-part .footer-wrapper h3 {
      font-size: 22px;
      line-height: 30px;
      color: #FFFFFF;
      text-transform: uppercase; }
      @media only screen and (max-width: 767px) {
        .footer-section .footer-part .footer-wrapper h3 {
          font-size: 18px; } }
    .footer-section .footer-part .footer-wrapper .recent-post {
      margin-bottom: 40px; }
      @media only screen and (max-width: 991px) {
      .line {
        right: 0 !important;
      }
      .help, .links{
        text-align: center;
      }
      .help{
        margin-top: 50px;
      }
      .footer-section .footer-part .footer-wrapper .recent-post {
          margin-bottom: 65px; } }
      .footer-section .footer-part .footer-wrapper .recent-post.second-post {
        margin: -8px 0 0; }
        .footer-section .footer-part .footer-wrapper .recent-post.second-post .caption {
          margin-bottom: 0; }
      .footer-section .footer-part .footer-wrapper .recent-post .caption {
        margin: 6px 18px 30px 0; }
      .footer-section .footer-part .footer-wrapper .recent-post .content p {
        margin: 0;
        line-height: 23px; }
      .footer-section .footer-part .footer-wrapper .recent-post .content .time {
        font-size: 14px;
        color: #39a835; }
        .footer-section .footer-part .footer-wrapper .recent-post .content .time i {
          padding-right: 5px; }
    .footer-section .footer-part .footer-wrapper .page-link {
      margin-top: -8px; }
      .footer-section .footer-part .footer-wrapper .page-link li a {
        font-size: 18px;
        line-height: 34px;
        color: #FFFFFF; }
        .footer-section .footer-part .footer-wrapper .page-link li a:hover {
          color: #39a835; }
    .footer-section .footer-part .footer-wrapper .footer-form {
      position: relative;
      margin: 26px 0 44px; }
      .footer-section .footer-part .footer-wrapper .footer-form .form-group {
        margin: 0; }
        .footer-section .footer-part .footer-wrapper .footer-form .form-group .footerSearchBar {
          font-size: 18px;
          color: #FFFFFF;
          background-color: #39a835;
          border: 0;
          border-radius: 25px;
          padding: 23px 30px; }
          .footer-section .footer-part .footer-wrapper .footer-form .form-group .footerSearchBar placeholder {
            color: #FFFFFF; }
        .footer-section .footer-part .footer-wrapper .footer-form .form-group .subscribeBtn {
          position: absolute;
          right: -5px;
          top: 0;
          background-color: transparent; }
          .footer-section .footer-part .footer-wrapper .footer-form .form-group .subscribeBtn i {
            font-size: 22px;
            width: 55px;
            height: 44px;
            line-height: 44px;
            color: #39a835;
            background-color: #FFFFFF;
            border-radius: 0 25px 25px 0; }
    .footer-section .footer-part .footer-wrapper .social-title {
      margin-bottom: 15px; }
    .footer-section .footer-part .footer-wrapper .social-media li {
      display: inline-block;
      margin-right: 8px; }
      .footer-section .footer-part .footer-wrapper .social-media li i {
        font-size: 22px;
        width: 48px;
        height: 48px;
        line-height: 48px;
        text-align: center;
        color: #989898;
        background-color: #FFFFFF;
        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; }
        .footer-section .footer-part .footer-wrapper .social-media li i:hover {
          color: #FFFFFF;
          background-color: #39a835; }
        @media only screen and (max-width: 767px) {
          .footer-section .footer-part .footer-wrapper .social-media li i {
            font-size: 18px;
            width: 35px;
            height: 35px;
            line-height: 35px; } }
  .footer-section .copyright-section {
    padding: 30px 0;
    background: #191919;
    border-top: 1px solid #000; }
    .footer-section .copyright-section p {
      font-size: 16px;
      font-weight: 500;
      color: #7a7a7a;
      margin: 0; }
    .footer-section .copyright-section ul li {
      font-size: 16px;
      font-weight: 500;
      line-height: 24px;
      display: inline-block;
      margin-right: 25px; }
      .footer-section .copyright-section ul li:last-child {
        margin-right: 0; }
      .footer-section .copyright-section ul li a {
        color: #7a7a7a; }
        .footer-section .copyright-section ul li a:hover {
          color: #39a835; }
    @media only screen and (max-width: 767px) {
      .footer-section .copyright-section {
        text-align: center;
        padding: 20px 0; }
        .footer-section .copyright-section p {
          display: block;
          margin-bottom: 0;
          font-size: 14px; }
        .footer-section .copyright-section ul {
          float: none !important; }
          .footer-section .copyright-section ul li {
            font-size: 14px; } }

/* =========================================================
        Video-Home-Page-STYLE
============================================================ */
.video-section {
  position: relative; }
  .video-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 99.4%;
    height: calc(100% - 7px);
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7); }
  .video-section video {
    width: 100%; }

/* =========================================================
        Home-Page-Two-STYLE
============================================================ */
.homePageTwo #box {
  height: 60px;
  padding: 16px 0; }
.homePageTwo .header-section {
  top: 60px; }
  .homePageTwo .header-section .navbar.sticky .nav-right-bar:after {
    background: #FFFFFF; }
  .homePageTwo .header-section .navbar .navbar-wrapper .navbar-collapse {
    margin-left: 212px; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .homePageTwo .header-section .navbar .navbar-wrapper .navbar-collapse {
        margin-left: 78px; } }
  .homePageTwo .header-section .navbar .nav-right-bar {
    background: #FFFFFF; }
    .homePageTwo .header-section .navbar .nav-right-bar::before {
      border-right: 60px solid #FFFFFF;
      border-top: 80px solid transparent; }
    .homePageTwo .header-section .navbar .nav-right-bar i {
      color: #000000;
      margin-left: 25px;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      .homePageTwo .header-section .navbar .nav-right-bar i:hover {
        color: #39a835; }
    .homePageTwo .header-section .navbar .nav-right-bar .search-view {
      position: relative; }
      .homePageTwo .header-section .navbar .nav-right-bar .search-view::before {
        content: "";
        position: absolute;
        top: 32px;
        left: 0;
        width: 2px;
        height: 25px;
        background-color: #c1bcbc; }
    .homePageTwo .header-section .navbar .nav-right-bar .cart-wrapper {
      cursor: pointer; }
      .homePageTwo .header-section .navbar .nav-right-bar .cart-wrapper.open .cart-item {
        display: block;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        z-index: 5; }
    .homePageTwo .header-section .navbar .nav-right-bar .text {
      width: 20px;
      height: 20px;
      background-color: #39a835;
      border-radius: 50%;
      padding: 4px 6px;
      position: absolute;
      top: 24px;
      right: 18px;
      line-height: 11px;
      text-align: center;
      font-size: 10px; }
    .homePageTwo .header-section .navbar .nav-right-bar .cart-item {
      position: absolute;
      top: 90px;
      right: 0;
      background-color: #FFFFFF;
      border: 2px solid #39a835;
      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; }
      .homePageTwo .header-section .navbar .nav-right-bar .cart-item ul {
        width: 300px; }
        .homePageTwo .header-section .navbar .nav-right-bar .cart-item ul li {
          line-height: 30px;
          padding: 10px 0;
          border-bottom: 1px solid #39a835; }
          .homePageTwo .header-section .navbar .nav-right-bar .cart-item ul li img {
            width: 75px;
            float: left; }
          .homePageTwo .header-section .navbar .nav-right-bar .cart-item ul li .content {
            color: #313131;
            padding-left: 15px; }
            .homePageTwo .header-section .navbar .nav-right-bar .cart-item ul li .content h5 {
              font-weight: 600;
              color: #313131;
              margin-bottom: 5px; }
            .homePageTwo .header-section .navbar .nav-right-bar .cart-item ul li .content .rate {
              color: #39a835;
              display: block; }
            .homePageTwo .header-section .navbar .nav-right-bar .cart-item ul li .content .option i {
              margin: 0; }
      .homePageTwo .header-section .navbar .nav-right-bar .cart-item .amount {
        color: #333;
        line-height: 30px;
        padding: 10px 0 0; }
      .homePageTwo .header-section .navbar .nav-right-bar .cart-item .btn {
        border-radius: 8px;
        width: 100%;
        font-size: 16px;
        padding: 7px 44px; }
.homePageTwo .counting-section {
  background: url(../images/counter-bg-2.jpg) no-repeat 50%;
  background-attachment: fixed;
  padding: 85px 0 65px; }
  @media only screen and (max-width: 991px) {
    .homePageTwo .counting-section {
      padding: 55px 0 45px; } }
  @media only screen and (max-width: 767px) {
    .homePageTwo .counting-section {
      padding: 50px 0 0; } }
  @media only screen and (max-width: 479px) {
    .homePageTwo .counting-section {
      padding: 40px 0 15px; } }
  .homePageTwo .counting-section .counting-pusher .counting-wrapper .count-description::before {
    background-color: #FFFFFF; }
.homePageTwo .research-section {
  background-color: #f9f9f9;
  padding-bottom: 85px; }
  @media only screen and (max-width: 991px) {
    .homePageTwo .research-section {
      padding-bottom: 70px; } }
  @media only screen and (max-width: 767px) {
    .homePageTwo .research-section {
      padding-bottom: 55px; } }
/* =========================================================
        Sub-Page-STYLE
============================================================ */
.sub-page .contact-section .contact-section-two {
  margin-top: 0; }
@media only screen and (max-width: 767px) {
  .sub-page .header-section .top-bar {
    display: none; } }

/* =========================================================
        About-Page-STYLE
============================================================ */
.about-page .banner-section {
  background: url(../images/sub/a-bg.jpg) no-repeat;
  background-position: center top;
  background-size: cover; }
@media only screen and (max-width: 479px) {
  .about-page .working-section {
    padding-top: 50px; } }
.about-page .working-section .title-bar {
  margin-bottom: 60px; }
  @media only screen and (max-width: 991px) {
    .about-page .working-section .title-bar {
      margin-bottom: 40px; } }
  @media only screen and (max-width: 767px) {
    .about-page .working-section .title-bar {
      margin-bottom: 30px; } }
  @media only screen and (max-width: 479px) {
    .about-page .working-section .title-bar {
      margin-bottom: 15px; } }
.about-page .working-section .section-wrapper .video-wrapper {
  border-bottom: 2px solid #efefef;
  margin: 0; }
  .about-page .working-section .section-wrapper .video-wrapper p {
    color: #777777;
    margin: 30px 0 75px;
    text-align: left; }
    @media only screen and (max-width: 991px) {
      .about-page .working-section .section-wrapper .video-wrapper p {
        margin: 20px 0 50px; } }
.about-page .working-section .section-wrapper .wrapper-content {
  margin-top: 80px; }
  @media only screen and (max-width: 991px) {
    .about-page .working-section .section-wrapper .wrapper-content {
      margin: 50px 0; } }
  .about-page .working-section .section-wrapper .wrapper-content h3 {
    position: relative;
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    float: left; }
    .about-page .working-section .section-wrapper .wrapper-content h3::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: -21px;
      width: 90px;
      height: 2px;
      background: #39a835; }
    @media only screen and (max-width: 991px) {
      .about-page .working-section .section-wrapper .wrapper-content h3 {
        float: none !important;
        font-size: 30px;
        line-height: 25px; } }
    @media only screen and (max-width: 768px) {
      .about-page .working-section .section-wrapper .wrapper-content h3 {
        float: none !important;
        font-size: 25px;
        line-height: 30px; }
        .about-page .working-section .section-wrapper .wrapper-content h3::before {
          bottom: -10px; } }
    @media only screen and (max-width: 479px) {
      .about-page .working-section .section-wrapper .wrapper-content h3 {
        float: none !important;
        font-size: 20px;
        line-height: 25px; } }
  .about-page .working-section .section-wrapper .wrapper-content p {
    font-size: 16px;
    line-height: 27px;
    color: #777777;
    margin-left: 320px; }
    @media only screen and (max-width: 991px) {
      .about-page .working-section .section-wrapper .wrapper-content p {
        margin: 0;
        padding-top: 15px; } }
  .about-page .working-section .section-wrapper .wrapper-content .mission-stage {
    margin-top: 45px; }
    .about-page .working-section .section-wrapper .wrapper-content .mission-stage li {
      font-size: 16px;
      line-height: 45px;
      color: #777777; }
      .about-page .working-section .section-wrapper .wrapper-content .mission-stage li i {
        width: 18px;
        height: 18px;
        line-height: 18px;
        border-radius: 50%;
        color: #FFFFFF;
        background: #39a835;
        text-align: center;
        margin-right: 10px; }
      @media only screen and (max-width: 767px) {
        .about-page .working-section .section-wrapper .wrapper-content .mission-stage li {
          font-size: 16px;
          line-height: 35px; } }
  .about-page .working-section .section-wrapper .wrapper-content .caption {
    margin-top: 61px; }
    .about-page .working-section .section-wrapper .wrapper-content .caption img {
      max-width: 100%; }
.about-page .consulting-section .title-bar {
  margin-bottom: 60px; }

/* =========================================================
        BlogGrid-Page-STYLE
============================================================ */
.blogGrid-page .banner-section {
  background: url(../images/sub/s-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover; }
.blogGrid-page .expert-section {
  background: #eff2f4; }
  .blogGrid-page .expert-section .expert-wrapper {
    padding: 0; }
    .blogGrid-page .expert-section .expert-wrapper .expert-content {
      background: #FFFFFF;
      padding: 30px; }
      @media only screen and (max-width: 479px) {
        .blogGrid-page .expert-section .expert-wrapper .expert-content {
          padding: 20px; } }
@media only screen and (max-width: 991px) {
  .blogGrid-page .pagination-wrapper .pagination {
    margin: 30px 0 0; } }
@media only screen and (max-width: 767px) {
  .blogGrid-page .pagination-wrapper .pagination {
    margin: 20px 0 0; } }

/* =========================================================
        BlogSingle-Page-STYLE
============================================================ */
.blogSingle-page #main-wrapper {
  background: #e9edf0; }
.blogSingle-page .header-title {
  padding: 260px 0 210px; }
  @media only screen and (max-width: 991px) {
    .blogSingle-page .header-title {
      padding: 150px 0 180px; } }
  @media only screen and (max-width: 767px) {
    .blogSingle-page .header-title {
      padding: 100px 0; } }
.blogSingle-page .banner-section {
  background: url(../images/sub/b-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover; }
.blogSingle-page .blog-section .blog-wrapper {
  background: #FFFFFF;
  border-bottom: 2px solid #e9edf0;
  padding: 80px 100px;
  margin-top: -100PX; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .blogSingle-page .blog-section .blog-wrapper {
      padding: 50px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .blogSingle-page .blog-section .blog-wrapper {
      padding: 50px; } }
  @media only screen and (max-width: 767px) {
    .blogSingle-page .blog-section .blog-wrapper {
      padding: 15px;
      margin-top: 15px; } }
  .blogSingle-page .blog-section .blog-wrapper h3 {
    font-size: 30px;
    font-weight: 500;
    line-height: 35px; }
    @media (min-width: 768px) and (max-width: 991px) {
      .blogSingle-page .blog-section .blog-wrapper h3 {
        font-size: 30px;
        line-height: 35px; } }
    @media only screen and (max-width: 767px) {
      .blogSingle-page .blog-section .blog-wrapper h3 {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 10px; } }
  .blogSingle-page .blog-section .blog-wrapper .information {
    margin-bottom: 27px; }
    @media only screen and (max-width: 767px) {
      .blogSingle-page .blog-section .blog-wrapper .information {
        margin-bottom: 10px; } }
    .blogSingle-page .blog-section .blog-wrapper .information li {
      font-size: 16px;
      font-weight: 600;
      color: #999999;
      display: inline-block;
      margin-right: 70px; }
      .blogSingle-page .blog-section .blog-wrapper .information li:last-child {
        margin-right: 0; }
      @media only screen and (max-width: 767px) {
        .blogSingle-page .blog-section .blog-wrapper .information li {
          font-size: 14px; } }
  .blogSingle-page .blog-section .blog-wrapper hr {
    margin-bottom: 27px; }
  .blogSingle-page .blog-section .blog-wrapper p {
    font-size: 18px;
    line-height: 30px;
    color: #666666;
    margin-bottom: 20px; }
    .blogSingle-page .blog-section .blog-wrapper p span {
      font-size: 60px;
      font-weight: 700;
      color: #000000;
      vertical-align: text-top;
      line-height: 58px;
      padding-right: 3px; }
    @media only screen and (max-width: 767px) {
      .blogSingle-page .blog-section .blog-wrapper p {
        font-size: 16px;
        line-height: 27px; }
        .blogSingle-page .blog-section .blog-wrapper p span {
          font-size: 50px;
          line-height: 52px; } }
  .blogSingle-page .blog-section .blog-wrapper h4 {
    font-size: 24px;
    font-weight: 500;
    color: #000000; }
    .blogSingle-page .blog-section .blog-wrapper h4.second-title {
      margin: 45px 0 17px; }
    .blogSingle-page .blog-section .blog-wrapper h4.third-title {
      margin: 30px 0 30px; }
    @media only screen and (max-width: 767px) {
      .blogSingle-page .blog-section .blog-wrapper h4 {
        font-size: 20px; }
        .blogSingle-page .blog-section .blog-wrapper h4.third-title {
          margin: 30px 0 15px; } }
    @media only screen and (max-width: 479px) {
      .blogSingle-page .blog-section .blog-wrapper h4 {
        font-size: 18px; } }
  .blogSingle-page .blog-section .blog-wrapper .caption.one {
    margin-right: 20px; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .blogSingle-page .blog-section .blog-wrapper .caption.one img {
        width: 55%; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .blogSingle-page .blog-section .blog-wrapper .caption.two img {
      width: 40%; } }
  .blogSingle-page .blog-section .blog-wrapper .search-tag {
    display: inline-block;
    margin-top: 22px; }
    .blogSingle-page .blog-section .blog-wrapper .search-tag li {
      font-size: 15px;
      display: inline-block;
      margin-right: 15px; }
      .blogSingle-page .blog-section .blog-wrapper .search-tag li.first {
        font-size: 16px;
        font-weight: 700;
        color: #000000; }
      .blogSingle-page .blog-section .blog-wrapper .search-tag li a {
        padding: 8px 15px;
        border-radius: 10px; }
        .blogSingle-page .blog-section .blog-wrapper .search-tag li a:hover {
          background: #39a835;
          color: #FFFFFF; }
  .blogSingle-page .blog-section .blog-wrapper .social-icon {
    margin-top: 22px; }
    @media only screen and (max-width: 991px) {
      .blogSingle-page .blog-section .blog-wrapper .social-icon {
        float: none !important; } }
    .blogSingle-page .blog-section .blog-wrapper .social-icon li {
      font-size: 15px;
      display: inline-block;
      margin-right: 15px; }
      .blogSingle-page .blog-section .blog-wrapper .social-icon li.first {
        font-size: 16px;
        font-weight: 700;
        color: #000000; }
      .blogSingle-page .blog-section .blog-wrapper .social-icon li a {
        color: #666666;
        padding: 8px 15px;
        border-radius: 10px; }
        .blogSingle-page .blog-section .blog-wrapper .social-icon li a:hover {
          color: #FFFFFF; }
          .blogSingle-page .blog-section .blog-wrapper .social-icon li a:hover.facebook {
            background: #106ed2; }
          .blogSingle-page .blog-section .blog-wrapper .social-icon li a:hover.twitter {
            background: #3ad0fb; }
          .blogSingle-page .blog-section .blog-wrapper .social-icon li a:hover.linkedin {
            background: #1379bb; }
.blogSingle-page .blog-section .comment-box {
  background: #FFFFFF;
  padding: 70px 80px 25px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .blogSingle-page .blog-section .comment-box {
      padding: 50px 50px 25px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .blogSingle-page .blog-section .comment-box {
      padding: 50px 50px 25px; } }
  @media only screen and (max-width: 767px) {
    .blogSingle-page .blog-section .comment-box {
      padding: 50px 15px 25px; } }
  .blogSingle-page .blog-section .comment-box .box-part.part-two {
    background: #f8f9f9;
    padding: 30px;
    margin: 30px 0 30px 65px; }
    @media (min-width: 768px) and (max-width: 991px) {
      .blogSingle-page .blog-section .comment-box .box-part.part-two {
        margin-left: 30px; } }
    @media only screen and (max-width: 767px) {
      .blogSingle-page .blog-section .comment-box .box-part.part-two {
        margin-left: 15px; } }
    @media only screen and (max-width: 479px) {
      .blogSingle-page .blog-section .comment-box .box-part.part-two {
        margin-left: 0; } }
  .blogSingle-page .blog-section .comment-box .box-part .caption img {
    border-radius: 50%; }
  @media only screen and (max-width: 479px) {
    .blogSingle-page .blog-section .comment-box .box-part .caption {
      float: none !important; } }
  .blogSingle-page .blog-section .comment-box .box-part .content {
    margin-left: 60px; }
    @media only screen and (max-width: 479px) {
      .blogSingle-page .blog-section .comment-box .box-part .content {
        margin: 10px 0 0; } }
    .blogSingle-page .blog-section .comment-box .box-part .content h4 {
      font-size: 18px;
      color: #000000;
      display: inline-block;
      margin: 0 15px 15px 0; }
    .blogSingle-page .blog-section .comment-box .box-part .content .time {
      font-size: 14px;
      color: #d2d2d2; }
    .blogSingle-page .blog-section .comment-box .box-part .content p {
      color: #82929e;
      line-height: 24px; }
    .blogSingle-page .blog-section .comment-box .box-part .content .btn {
      font-size: 15px;
      padding: 2px 25px;
      border: 1px solid #d0d0d0;
      background: #FFFFFF; }
      .blogSingle-page .blog-section .comment-box .box-part .content .btn:hover {
        background: #39a835;
        border-color: #39a835; }
  .blogSingle-page .blog-section .comment-box h5 {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-top: 70px; }
    .blogSingle-page .blog-section .comment-box h5 i {
      display: block;
      padding-top: 8px; }
    @media only screen and (max-width: 991px) {
      .blogSingle-page .blog-section .comment-box h5 {
        margin-top: 50px; } }
    @media only screen and (max-width: 767px) {
      .blogSingle-page .blog-section .comment-box h5 {
        margin-top: 30px; } }
    @media only screen and (max-width: 479px) {
      .blogSingle-page .blog-section .comment-box h5 {
        font-size: 16px; } }
  .blogSingle-page .blog-section .comment-box .contact-wrapper {
    margin: 40px -15px 60px; }
    @media only screen and (max-width: 767px) {
      .blogSingle-page .blog-section .comment-box .contact-wrapper {
        margin: 0; } }
    .blogSingle-page .blog-section .comment-box .contact-wrapper .contact-form {
      margin-top: 40px; }
      @media only screen and (max-width: 767px) {
        .blogSingle-page .blog-section .comment-box .contact-wrapper .contact-form {
          margin: 0; } }
      .blogSingle-page .blog-section .comment-box .contact-wrapper .contact-form .form-group .form-control,
      .blogSingle-page .blog-section .comment-box .contact-wrapper .contact-form .form-group .contactSearchBar {
        border: 0;
        border-bottom: 1px solid #eee;
        box-shadow: none;
        border-radius: 0;
        width: 100%;
        padding: 3px 12px; }
      .blogSingle-page .blog-section .comment-box .contact-wrapper .contact-form .form-group .btn {
        padding: 8px 35px;
        border-radius: 0;
        margin-top: 20px; }
        @media only screen and (max-width: 479px) {
          .blogSingle-page .blog-section .comment-box .contact-wrapper .contact-form .form-group .btn {
            padding: 6px 25px; } }

/* =========================================================
        BlogList-Page-STYLE
============================================================ */
.blogList-page .banner-section {
  background: url(../images/sub/s-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover; }
.blogList-page .blog-list-section {
  background: #eff2f4; }
  .blogList-page .blog-list-section .section-wrapper {
    background: #FFFFFF;
    min-height: 420px;
    margin-bottom: 30px; }
    @media only screen and (max-width: 1199px) {
      .blogList-page .blog-list-section .section-wrapper {
        min-height: auto; } }
    @media only screen and (max-width: 479px) {
      .blogList-page .blog-list-section .section-wrapper {
        margin-bottom: 40px; } }
    .blogList-page .blog-list-section .section-wrapper .caption img {
      margin-left: 50px; }
    @media only screen and (max-width: 1199px) {
      .blogList-page .blog-list-section .section-wrapper .caption {
        float: none !important; } }
    @media (min-width: 768px) and (max-width: 1199px) {
      .blogList-page .blog-list-section .section-wrapper .caption img {
        margin: 30px 0 0 30px; } }
    @media only screen and (max-width: 767px) {
      .blogList-page .blog-list-section .section-wrapper .caption img {
        width: 100%;
        margin: 0;
        padding: 15px; } }
    .blogList-page .blog-list-section .section-wrapper .wrapper-content {
      padding: 80px 0 70px 65px; }
      @media (min-width: 768px) and (max-width: 1199px) {
        .blogList-page .blog-list-section .section-wrapper .wrapper-content {
          padding: 35px 0 30px 30px; } }
      @media only screen and (max-width: 767px) {
        .blogList-page .blog-list-section .section-wrapper .wrapper-content {
          padding: 0 15px 20px 15px; } }
      .blogList-page .blog-list-section .section-wrapper .wrapper-content .date {
        font-size: 14px;
        font-weight: 700;
        color: #82929e;
        text-transform: uppercase; }
        .blogList-page .blog-list-section .section-wrapper .wrapper-content .date span {
          color: #39a835;
          margin-right: 25px; }
      .blogList-page .blog-list-section .section-wrapper .wrapper-content h3 {
        position: relative;
        font-size: 28px;
        font-weight: 700;
        line-height: 36px;
        margin: 15px 0 16px; }
        @media only screen and (max-width: 767px) {
          .blogList-page .blog-list-section .section-wrapper .wrapper-content h3 {
            line-height: 25px;
            font-size: 20px;
            margin-top: 5px; } }
        @media only screen and (max-width: 479px) {
          .blogList-page .blog-list-section .section-wrapper .wrapper-content h3 {
            font-size: 18px;
            margin-bottom: 10px; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .blogList-page .blog-list-section .section-wrapper .wrapper-content h3 {
            font-size: 20px;
            line-height: 25px; } }
      .blogList-page .blog-list-section .section-wrapper .wrapper-content p {
        color: #666666;
        margin-bottom: 28px; }
        @media only screen and (max-width: 767px) {
          .blogList-page .blog-list-section .section-wrapper .wrapper-content p {
            line-height: 20px;
            margin-bottom: 15px; } }
      .blogList-page .blog-list-section .section-wrapper .wrapper-content .link {
        font-size: 18px;
        font-weight: 700;
        color: #39a835; }
        .blogList-page .blog-list-section .section-wrapper .wrapper-content .link:hover {
          color: #006b98; }
        @media only screen and (max-width: 767px) {
          .blogList-page .blog-list-section .section-wrapper .wrapper-content .link {
            font-size: 17px; } }
  .blogList-page .blog-list-section .pagination-wrapper .pagination {
    margin-top: 65px; }
    @media only screen and (max-width: 767px) {
      .blogList-page .blog-list-section .pagination-wrapper .pagination {
        margin-top: 20px; } }

/* =========================================================
        ServiceGrid-Page-STYLE
============================================================ */
.serviceGrid-page .banner-section {
  background: url(../images/sub/s-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover; }

/* =========================================================
        Service-sidebar-Page-STYLE
============================================================ */
.service-sidebar-page .banner-section {
  background: url(../images/sub/s-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover; }
.service-sidebar-page .working-section {
  padding-bottom: 80px !important; }
  @media only screen and (max-width: 767px) {
    .service-sidebar-page .working-section {
      padding-bottom: 50px !important; } }
  @media only screen and (max-width: 479px) {
    .service-sidebar-page .working-section {
      padding-bottom: 30px !important; } }
  .service-sidebar-page .working-section .working-section-two h2::before {
    right: 70px; }
  .service-sidebar-page .working-section .working-section-two .section-sidebar {
    margin-right: 50px; }
    @media only screen and (max-width: 991px) {
      .service-sidebar-page .working-section .working-section-two .section-sidebar {
        margin-right: 0; } }
  .service-sidebar-page .working-section .working-section-two .wrapper-content {
    margin-bottom: 50px; }

/* =========================================================
        Service-Single-Page-STYLE
============================================================ */
.service-single-page .banner-section {
  background: url(../images/sub/s-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover; }
.service-single-page .working-section {
  padding-bottom: 80px; }
  @media only screen and (max-width: 767px) {
    .service-single-page .working-section {
      padding-bottom: 50px; } }
  @media only screen and (max-width: 479px) {
    .service-single-page .working-section {
      padding-bottom: 30px; } }
  .service-single-page .working-section .working-section-two .section-sidebar {
    margin-right: 50px; }
    @media only screen and (max-width: 991px) {
      .service-single-page .working-section .working-section-two .section-sidebar {
        margin-right: 0; } }
  .service-single-page .working-section .working-section-two .working-rightbar h3 {
    font-size: 36px;
    font-weight: 700; }
    @media (min-width: 480px) and (max-width: 767px) {
      .service-single-page .working-section .working-section-two .working-rightbar h3 {
        font-size: 25px; } }
    @media only screen and (max-width: 479px) {
      .service-single-page .working-section .working-section-two .working-rightbar h3 {
        font-size: 20px; } }
  .service-single-page .working-section .working-section-two .working-rightbar p {
    font-size: 16px;
    line-height: 27px;
    color: #666666;
    margin-bottom: 30px; }
  .service-single-page .working-section .working-section-two .working-rightbar ul {
    margin-bottom: 75px; }
    @media only screen and (max-width: 767px) {
      .service-single-page .working-section .working-section-two .working-rightbar ul {
        margin-bottom: 45px; } }
    .service-single-page .working-section .working-section-two .working-rightbar ul li {
      font-size: 16px;
      line-height: 30px;
      color: #666666; }
      .service-single-page .working-section .working-section-two .working-rightbar ul li i {
        color: #39a835;
        padding-right: 5px; }
  .service-single-page .working-section .working-section-two .working-rightbar #wr-carousel {
    padding-bottom: 60px;
    margin-bottom: 60px; }
    .service-single-page .working-section .working-section-two .working-rightbar #wr-carousel .carousel-indicators {
      left: 0;
      right: 0;
      margin: 0 auto;
      bottom: 0; }
      .service-single-page .working-section .working-section-two .working-rightbar #wr-carousel .carousel-indicators li {
        width: 6px;
        height: 6px;
        border: 0;
        margin: 0 15px;
        background-color: #c6c6c6; }
        .service-single-page .working-section .working-section-two .working-rightbar #wr-carousel .carousel-indicators li.active {
          width: 12px;
          height: 12px;
          background-color: #39a835;
          margin-bottom: -3px; }
  .service-single-page .working-section .working-section-two .working-rightbar .wr-nav .nav-tabs {
    border: 0;
    margin-bottom: 0;
    display: flex;
    border-bottom: 1px solid #39a835; }
    @media only screen and (max-width: 479px) {
      .service-single-page .working-section .working-section-two .working-rightbar .wr-nav .nav-tabs {
        display: block; } }
    .service-single-page .working-section .working-section-two .working-rightbar .wr-nav .nav-tabs li {
      flex: 1;
      margin-bottom: 10px; }
      @media only screen and (max-width: 479px) {
        .service-single-page .working-section .working-section-two .working-rightbar .wr-nav .nav-tabs li {
          float: none !important;
          text-align: center; } }
      .service-single-page .working-section .working-section-two .working-rightbar .wr-nav .nav-tabs li:hover a, .service-single-page .working-section .working-section-two .working-rightbar .wr-nav .nav-tabs li.active a {
        color: #FFFFFF;
        background-color: #39a835; }
      .service-single-page .working-section .working-section-two .working-rightbar .wr-nav .nav-tabs li a {
        font-size: 17px;
        font-weight: 700;
        color: #39a835;
        display: inline-block;
        border: 0;
        border-radius: 25px;
        padding: 8px 36px;
        margin: 0; }
  .service-single-page .working-section .working-section-two .working-rightbar .wr-nav .tab-content {
    margin-top: 20px; }
    .service-single-page .working-section .working-section-two .working-rightbar .wr-nav .tab-content p {
      font-size: 18px;
      line-height: 30px;
      color: #666666;
      margin-bottom: 25px; }

/* =========================================================
        CaseStudyGrid-Page-STYLE
============================================================ */
.caseStudyGrid-page .banner-section {
  background: url(../images/sub/s-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover; }
.caseStudyGrid-page .case-grid-section .section-wrapper .wrapper-content {
  margin-bottom: 60px; }
  .caseStudyGrid-page .case-grid-section .section-wrapper .wrapper-content img {
    width: 100%; }
  .caseStudyGrid-page .case-grid-section .section-wrapper .wrapper-content h3 {
    position: relative;
    font-weight: 700;
    line-height: 36px;
    margin-top: 32px; }
    .caseStudyGrid-page .case-grid-section .section-wrapper .wrapper-content h3::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 60px;
      height: 3px;
      background: #39a835; }
    @media only screen and (max-width: 767px) {
      .caseStudyGrid-page .case-grid-section .section-wrapper .wrapper-content h3 {
        line-height: 25px;
        font-size: 20px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .caseStudyGrid-page .case-grid-section .section-wrapper .wrapper-content h3 {
        font-size: 18px;
        line-height: 25px; } }
  .caseStudyGrid-page .case-grid-section .section-wrapper .wrapper-content p {
    font-size: 18px;
    line-height: 36px;
    color: #999999; }
    @media only screen and (max-width: 991px) {
      .caseStudyGrid-page .case-grid-section .section-wrapper .wrapper-content p {
        line-height: 20px;
        font-size: 16px;
        margin-bottom: 30px; } }
  .caseStudyGrid-page .case-grid-section .section-wrapper .wrapper-content .link {
    color: #39a835;
    padding: 10px 20px;
    border-radius: 25px; }
  .caseStudyGrid-page .case-grid-section .section-wrapper .wrapper-content:hover .link {
    color: #FFFFFF;
    background: #39a835; }
.caseStudyGrid-page .case-grid-section .pagination-wrapper .pagination {
  margin-top: 25px; }

/* =========================================================
        CaseStudyList-Page-STYLE
============================================================ */
.caseStudyList-page .banner-section {
  background: url(../images/sub/s-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover; }
.caseStudyList-page .case-list-section .section-wrapper .wrapper-content {
  min-height: 220px;
  margin-bottom: 30px; }
  @media only screen and (max-width: 767px) {
    .caseStudyList-page .case-list-section .section-wrapper .wrapper-content {
      min-height: auto;
      margin-bottom: 70px; } }
  @media only screen and (max-width: 479px) {
    .caseStudyList-page .case-list-section .section-wrapper .wrapper-content {
      margin-bottom: 40px; } }
  .caseStudyList-page .case-list-section .section-wrapper .wrapper-content .caption {
    margin-right: 30px; }
    @media only screen and (max-width: 767px) {
      .caseStudyList-page .case-list-section .section-wrapper .wrapper-content .caption {
        float: none !important; }
        .caseStudyList-page .case-list-section .section-wrapper .wrapper-content .caption img {
          width: 100%; } }
  .caseStudyList-page .case-list-section .section-wrapper .wrapper-content h3 {
    position: relative;
    font-weight: 700;
    line-height: 36px; }
    .caseStudyList-page .case-list-section .section-wrapper .wrapper-content h3::before {
      content: "";
      position: absolute;
      bottom: -10px;
      width: 60px;
      height: 3px;
      background: #39a835; }
    @media only screen and (max-width: 767px) {
      .caseStudyList-page .case-list-section .section-wrapper .wrapper-content h3 {
        line-height: 25px;
        font-size: 20px;
        margin-top: 30px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .caseStudyList-page .case-list-section .section-wrapper .wrapper-content h3 {
        font-size: 20px;
        line-height: 25px; } }
  .caseStudyList-page .case-list-section .section-wrapper .wrapper-content p {
    font-size: 18px;
    line-height: 36px;
    color: #999999; }
    @media only screen and (max-width: 991px) {
      .caseStudyList-page .case-list-section .section-wrapper .wrapper-content p {
        line-height: 20px;
        margin-bottom: 30px; } }
  .caseStudyList-page .case-list-section .section-wrapper .wrapper-content .link {
    color: #39a835;
    padding: 10px 20px;
    border-radius: 25px; }
  .caseStudyList-page .case-list-section .section-wrapper .wrapper-content:hover .link {
    color: #FFFFFF;
    background: #39a835; }
.caseStudyList-page .case-list-section .pagination-wrapper .pagination {
  margin-top: 35px; }

/* =========================================================
        CaseStudySingle-Page-STYLE
============================================================ */
.caseStudySingle-page .banner-section {
  background: url(../images/sub/s-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover; }
.caseStudySingle-page .single-case-section .section-wrapper {
  margin-right: 50px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .caseStudySingle-page .single-case-section .section-wrapper {
      margin-right: 20px; } }
  @media only screen and (max-width: 991px) {
    .caseStudySingle-page .single-case-section .section-wrapper {
      margin-right: 0; } }
  .caseStudySingle-page .single-case-section .section-wrapper .caption img {
    max-width: 100%; }
  .caseStudySingle-page .single-case-section .section-wrapper h3 {
    position: relative;
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    margin: 50px 0 17px;
    padding-bottom: 12px; }
    .caseStudySingle-page .single-case-section .section-wrapper h3::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 60px;
      height: 3px;
      background: #39a835; }
      @media only screen and (max-width: 991px) {
        .caseStudySingle-page .single-case-section .section-wrapper h3::before {
          bottom: 0; } }
    @media only screen and (max-width: 767px) {
      .caseStudySingle-page .single-case-section .section-wrapper h3 {
        line-height: 25px;
        font-size: 20px;
        margin-top: 30px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .caseStudySingle-page .single-case-section .section-wrapper h3 {
        font-size: 20px;
        line-height: 25px; } }
  .caseStudySingle-page .single-case-section .section-wrapper .sub-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 36px;
    color: #778396; }
    @media only screen and (max-width: 991px) {
      .caseStudySingle-page .single-case-section .section-wrapper .sub-title {
        line-height: 20px;
        font-size: 16px; } }
  .caseStudySingle-page .single-case-section .section-wrapper p {
    color: #666666;
    margin: 23px 0 55px; }
    @media only screen and (max-width: 767px) {
      .caseStudySingle-page .single-case-section .section-wrapper p {
        margin: 15px 0 35px; } }
  .caseStudySingle-page .single-case-section .section-wrapper .tab-case-page .nav-tabs {
    border: 0;
    margin-bottom: 0; }
    @media only screen and (max-width: 479px) {
      .caseStudySingle-page .single-case-section .section-wrapper .tab-case-page .nav-tabs {
        display: block; } }
    .caseStudySingle-page .single-case-section .section-wrapper .tab-case-page .nav-tabs li {
      margin: 8px 0 30px; }
      .caseStudySingle-page .single-case-section .section-wrapper .tab-case-page .nav-tabs li:hover a, .caseStudySingle-page .single-case-section .section-wrapper .tab-case-page .nav-tabs li.active a {
        color: #FFFFFF;
        background-color: #39a835; }
      .caseStudySingle-page .single-case-section .section-wrapper .tab-case-page .nav-tabs li a {
        font-size: 18px;
        font-weight: 700;
        color: #39a835;
        display: inline-block;
        border: 0;
        border-radius: 0;
        background-color: #f2f2f2;
        border-right: 1px solid #FFFFFF;
        padding: 12px 36px;
        margin: 0; }
        @media only screen and (max-width: 500px) {
          .caseStudySingle-page .single-case-section .section-wrapper .tab-case-page .nav-tabs li a {
            font-size: 16px;
            padding: 10px 20px; } }
        @media only screen and (max-width: 350px) {
          .caseStudySingle-page .single-case-section .section-wrapper .tab-case-page .nav-tabs li a {
            font-size: 12px;
            padding: 8px 15px; } }
  .caseStudySingle-page .single-case-section .section-wrapper .tab-case-page .tab-content .tab-pane p {
    color: #666666;
    margin: 0 0 30px; }
  .caseStudySingle-page .single-case-section .section-wrapper .tab-case-page .tab-content .tab-pane .sub-caption img {
    max-width: 100%; }
  .caseStudySingle-page .single-case-section .section-wrapper .tab-case-page .tab-content .tab-pane .content li {
    color: #666666;
    margin-bottom: 28px; }
    .caseStudySingle-page .single-case-section .section-wrapper .tab-case-page .tab-content .tab-pane .content li i {
      color: #39a835; }
  @media only screen and (max-width: 767px) {
    .caseStudySingle-page .single-case-section .section-wrapper .tab-case-page .tab-content .tab-pane .content {
      margin-top: 30px; } }
@media only screen and (max-width: 991px) {
  .caseStudySingle-page .single-case-section .section-sidebar {
    margin: 0; } }

/* =========================================================
        Faq-Page-STYLE
============================================================ */
.faq-page .banner-section {
  background: url(../images/sub/f-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover; }
.faq-page .faq-section .faq-wrapper {
  margin-right: 50px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .faq-page .faq-section .faq-wrapper {
      margin-right: 20px; } }
  @media only screen and (max-width: 991px) {
    .faq-page .faq-section .faq-wrapper {
      margin-right: 0;
      margin-bottom: 50px; } }
  .faq-page .faq-section .faq-wrapper h3 {
    font-size: 30px;
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 15px; }
    @media only screen and (max-width: 991px) {
      .faq-page .faq-section .faq-wrapper h3 {
        font-size: 25px;
        margin-bottom: 10px; } }
    @media only screen and (max-width: 767px) {
      .faq-page .faq-section .faq-wrapper h3 {
        font-size: 22px;
        line-height: 25px;
        margin-bottom: 10px; } }
  .faq-page .faq-section .faq-wrapper p {
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      .faq-page .faq-section .faq-wrapper p {
        margin-bottom: 30px; } }
    @media only screen and (max-width: 767px) {
      .faq-page .faq-section .faq-wrapper p {
        font-size: 16px;
        line-height: 27px;
        margin-bottom: 30px; } }
  .faq-page .faq-section .faq-wrapper .content-bar {
    margin: 0 0 0 5px; }
    @media only screen and (max-width: 991px) {
      .faq-page .faq-section .faq-wrapper .content-bar {
        margin: 50px 0 0 0; } }
    .faq-page .faq-section .faq-wrapper .content-bar .panel-group {
      margin: 0; }
      .faq-page .faq-section .faq-wrapper .content-bar .panel-group .panel {
        border: 0;
        box-shadow: none;
        background-color: transparent;
        border-radius: 25px;
        margin-bottom: 10px; }
        .faq-page .faq-section .faq-wrapper .content-bar .panel-group .panel .panel-heading {
          background-color: #eaebed;
          border-radius: 8px;
          padding: 15px 30px 15px 25px;
          box-shadow: 0 0 10px 0px rgba(64, 64, 64, 0.08); }
          @media only screen and (max-width: 479px) {
            .faq-page .faq-section .faq-wrapper .content-bar .panel-group .panel .panel-heading {
              padding-left: 20px; } }
          .faq-page .faq-section .faq-wrapper .content-bar .panel-group .panel .panel-heading .panel-title {
            font-size: 20px;
            line-height: 28px; }
            .faq-page .faq-section .faq-wrapper .content-bar .panel-group .panel .panel-heading .panel-title a {
              color: #5f5f5f; }
            @media only screen and (max-width: 991px) {
              .faq-page .faq-section .faq-wrapper .content-bar .panel-group .panel .panel-heading .panel-title {
                font-size: 22px; } }
            @media only screen and (max-width: 767px) {
              .faq-page .faq-section .faq-wrapper .content-bar .panel-group .panel .panel-heading .panel-title {
                font-size: 20px;
                line-height: 22px; } }
            @media only screen and (max-width: 479px) {
              .faq-page .faq-section .faq-wrapper .content-bar .panel-group .panel .panel-heading .panel-title {
                font-size: 16px; } }
        .faq-page .faq-section .faq-wrapper .content-bar .panel-group .panel .panel-collapse .panel-body {
          font-size: 16px;
          line-height: 27px;
          border: 0;
          color: #fff;
          background-color: #eaebed;
          border-radius: 8px;
          padding: 22px 23px;
          margin-top: 10px; }
          @media only screen and (max-width: 767px) {
            .faq-page .faq-section .faq-wrapper .content-bar .panel-group .panel .panel-collapse .panel-body {
              font-size: 16px;
              line-height: 27px; } }
          @media only screen and (max-width: 479px) {
            .faq-page .faq-section .faq-wrapper .content-bar .panel-group .panel .panel-collapse .panel-body {
              padding-left: 20px; } }
        .faq-page .faq-section .faq-wrapper .content-bar .panel-group .panel .panel-collapse i {
          position: relative;
          left: -30px;
          top: -53px; }
          @media only screen and (max-width: 767px) {
            .faq-page .faq-section .faq-wrapper .content-bar .panel-group .panel .panel-collapse i {
              top: -47px; } }
        .faq-page .faq-section .faq-wrapper .content-bar .panel-group .panel i {
          font-size: 12px;
          background-color: #39a835;
          color: #FFFFFF;
          vertical-align: top;
          border-radius: 50%;
          width: 20px;
          height: 20px;
          line-height: 20px;
          text-align: center; }
    .faq-page .faq-section .faq-wrapper .content-bar .link {
      display: block;
      font-size: 18px;
      margin-top: 15px; }
@media only screen and (max-width: 991px) {
  .faq-page .faq-section .section-sidebar {
    margin: 0; } }

/* =========================================================
        Partner-Page-STYLE
============================================================ */
.partner-page .banner-section {
  background: url(../images/sub/s-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover; }
.partner-page .partner-section .section-wrapper {
  margin-right: 30px; }
  @media only screen and (max-width: 1199px) {
    .partner-page .partner-section .section-wrapper {
      margin-right: 0; } }
  .partner-page .partner-section .section-wrapper .wrapper-content {
    min-height: 270px;
    margin-bottom: 30px; }
    .partner-page .partner-section .section-wrapper .wrapper-content.last-wrapper {
      margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .partner-page .partner-section .section-wrapper .wrapper-content {
        min-height: auto;
        margin-bottom: 50px; } }
    @media only screen and (max-width: 479px) {
      .partner-page .partner-section .section-wrapper .wrapper-content {
        margin-bottom: 40px; } }
    .partner-page .partner-section .section-wrapper .wrapper-content .caption {
      position: relative;
      margin-right: 30px;
      z-index: 5; }
      @media only screen and (max-width: 767px) {
        .partner-page .partner-section .section-wrapper .wrapper-content .caption {
          float: none !important; }
          .partner-page .partner-section .section-wrapper .wrapper-content .caption img {
            max-width: 100%; } }
    .partner-page .partner-section .section-wrapper .wrapper-content h3 {
      position: relative;
      font-weight: 500;
      line-height: 36px;
      padding-top: 18px;
      margin-bottom: 28px; }
      .partner-page .partner-section .section-wrapper .wrapper-content h3::before {
        content: "";
        position: absolute;
        bottom: -10px;
        width: 60px;
        height: 3px;
        background: #39a835; }
      @media only screen and (max-width: 767px) {
        .partner-page .partner-section .section-wrapper .wrapper-content h3 {
          line-height: 25px;
          font-size: 20px;
          margin-top: 5px; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .partner-page .partner-section .section-wrapper .wrapper-content h3 {
          font-size: 20px;
          line-height: 25px; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .partner-page .partner-section .section-wrapper .wrapper-content h3 {
          padding-top: 0; } }
    .partner-page .partner-section .section-wrapper .wrapper-content p {
      font-size: 16px;
      line-height: 30px;
      color: #666666; }
      @media only screen and (max-width: 991px) {
        .partner-page .partner-section .section-wrapper .wrapper-content p {
          line-height: 27px;
          font-size: 16px; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .partner-page .partner-section .section-wrapper .wrapper-content p {
          line-height: 30px; } }
@media only screen and (max-width: 991px) {
  .partner-page .partner-section .section-sidebar {
    margin: 0; } }

/* =========================================================
        Team-Page-STYLE
============================================================ */
.team-page .banner-section {
  background: url(../images/sub/t-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover; }
.team-page .team-section .team-part .first-part {
  margin-bottom: 60px; }
  @media only screen and (max-width: 991px) {
    .team-page .team-section .team-part .first-part {
      margin-bottom: 0; } }
@media only screen and (max-width: 991px) {
  .team-page .team-section .team-part .section-wrapper {
    margin-bottom: 30px; } }
.team-page .team-section .team-part .section-wrapper .caption img {
  max-width: 100%; }
.team-page .team-section .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-page .team-section .team-part .section-wrapper .wrapper-content h3 {
      font-size: 24px; } }
  @media only screen and (max-width: 767px) {
    .team-page .team-section .team-part .section-wrapper .wrapper-content h3 {
      font-size: 20px;
      line-height: 25px; } }
.team-page .team-section .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-page .team-section .team-part .section-wrapper .wrapper-content .position {
      font-size: 14px;
      line-height: 20px; } }
.team-page .team-section .team-part .section-wrapper .wrapper-content p {
  font-size: 16px;
  line-height: 27px;
  color: #666666;
  margin: 6px 0 20px; }
.team-page .team-section .team-part .section-wrapper .wrapper-content .link {
  font-size: 16px;
  font-weight: 600; }
  @media only screen and (max-width: 767px) {
    .team-page .team-section .team-part .section-wrapper .wrapper-content .link {
      font-size: 14px; } }
@media only screen and (max-width: 991px) {
  .team-page .team-section .pagination-wrapper .pagination {
    margin: 20px 0 0; } }
@media only screen and (max-width: 479px) {
  .team-page .team-section .pagination-wrapper .pagination {
    margin: 5px 0 0; } }
.team-page .working-section {
  background: #39a835;
  padding: 35px 0; }
  @media only screen and (max-width: 991px) {
    .team-page .working-section {
      padding: 30px 0; } }
  @media only screen and (max-width: 479px) {
    .team-page .working-section {
      padding: 20px 0; } }
  @media only screen and (max-width: 550px) {
    .team-page .working-section {
      text-align: center; } }
  .team-page .working-section h3 {
    font-weight: 500;
    color: #FFFFFF;
    display: inline-block;
    margin-bottom: 0; }
    @media only screen and (max-width: 550px) {
      .team-page .working-section h3 {
        display: block;
        text-align: center; } }
  .team-page .working-section .btn-primary {
    font-size: 18px;
    font-weight: 600;
    color: #39a835;
    background: #FFFFFF; }
    @media only screen and (max-width: 550px) {
      .team-page .working-section .btn-primary {
        float: none !important;
        text-align: center;
        font-size: 15px;
        padding: 5px 20px; } }

/* =========================================================
        Team-Single-Page-STYLE
============================================================ */
.team-single-page .banner-section {
  background: url(../images/sub/t-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover; }
.team-single-page .team-single-section .team-part .first-part {
  margin-bottom: 60px; }
  @media only screen and (max-width: 767px) {
    .team-single-page .team-single-section .team-part .first-part {
      margin-bottom: 20px; } }
.team-single-page .team-single-section .team-part .caption img {
  max-width: 100%; }
.team-single-page .team-single-section .team-part .wrapper-content h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 10px; }
  @media only screen and (max-width: 991px) {
    .team-single-page .team-single-section .team-part .wrapper-content h3 {
      font-size: 30px; } }
  @media only screen and (max-width: 767px) {
    .team-single-page .team-single-section .team-part .wrapper-content h3 {
      font-size: 25px;
      margin: 15px 0 0; } }
  @media only screen and (max-width: 479px) {
    .team-single-page .team-single-section .team-part .wrapper-content h3 {
      font-size: 20px; } }
.team-single-page .team-single-section .team-part .wrapper-content .position {
  font-size: 17px;
  font-weight: 700;
  color: #999999; }
  @media only screen and (max-width: 767px) {
    .team-single-page .team-single-section .team-part .wrapper-content .position {
      font-size: 15px; } }
.team-single-page .team-single-section .team-part .wrapper-content p {
  color: #666666;
  margin: 14px 0 25px; }
  @media only screen and (max-width: 767px) {
    .team-single-page .team-single-section .team-part .wrapper-content p {
      margin-top: 5px; } }
.team-single-page .team-single-section .team-part .wrapper-content .contact {
  font-size: 18px;
  font-weight: 700;
  display: block;
  color: #777777;
  margin-bottom: 15px; }
  .team-single-page .team-single-section .team-part .wrapper-content .contact i {
    font-size: 22px;
    color: #39a835;
    padding-right: 8px;
    vertical-align: middle; }
  @media only screen and (max-width: 767px) {
    .team-single-page .team-single-section .team-part .wrapper-content .contact {
      font-size: 18px; }
      .team-single-page .team-single-section .team-part .wrapper-content .contact i {
        font-size: 18px; } }
.team-single-page .team-single-section .team-part .wrapper-content .social-icon li {
  display: inline-block;
  margin-right: 10px; }
  .team-single-page .team-single-section .team-part .wrapper-content .social-icon li i {
    font-size: 25px; }
    @media only screen and (max-width: 767px) {
      .team-single-page .team-single-section .team-part .wrapper-content .social-icon li i {
        font-size: 20px; } }
.team-single-page .team-single-section .team-part .team-information h3 {
  font-weight: 700; }
  @media only screen and (max-width: 991px) {
    .team-single-page .team-single-section .team-part .team-information h3 {
      margin-bottom: 5px; } }
.team-single-page .team-single-section .team-part .team-information ul li {
  line-height: 34px;
  color: #0d1d36; }
  .team-single-page .team-single-section .team-part .team-information ul li i {
    font-size: 18px;
    color: #39a835;
    padding-right: 5px; }
@media only screen and (max-width: 767px) {
  .team-single-page .team-single-section .team-part .team-information {
    margin-bottom: 30px; } }
@media only screen and (max-width: 991px) {
  .team-single-page .team-single-section .team-part {
    margin-bottom: 80px; } }
@media only screen and (max-width: 768px) {
  .team-single-page .team-single-section .team-part {
    margin-bottom: 30px; } }
.team-single-page .team-single-section .section-sidebar .contact-part {
  margin-bottom: 0; }

/* =========================================================
        Team-two-Page-STYLE
============================================================ */
.team-two-page .banner-section {
  background: url(../images/sub/t-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover; }
.team-two-page .team-two-section .team-part {
  position: relative;
  padding-bottom: 70px;
  margin-bottom: 70px;
  margin-right: 50px; }
  .team-two-page .team-two-section .team-part.last-part {
    margin-bottom: 50px; }
  @media only screen and (max-width: 1199px) {
    .team-two-page .team-two-section .team-part {
      margin-right: 0; } }
  @media only screen and (max-width: 767px) {
    .team-two-page .team-two-section .team-part {
      padding-bottom: 15px;
      margin-bottom: 30px; } }
  @media only screen and (max-width: 767px) {
    .team-two-page .team-two-section .team-part .section-wrapper {
      margin-bottom: 15px; } }
  .team-two-page .team-two-section .team-part .section-wrapper .caption img {
    margin-right: 18px; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .team-two-page .team-two-section .team-part .section-wrapper .caption img {
        width: 150px; } }
  .team-two-page .team-two-section .team-part .section-wrapper .wrapper-content h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 5px; }
    @media only screen and (max-width: 991px) {
      .team-two-page .team-two-section .team-part .section-wrapper .wrapper-content h3 {
        font-size: 22px; } }
    @media only screen and (max-width: 767px) {
      .team-two-page .team-two-section .team-part .section-wrapper .wrapper-content h3 {
        font-size: 20px; } }
  .team-two-page .team-two-section .team-part .section-wrapper .wrapper-content .position {
    font-size: 16px;
    font-weight: 700;
    color: #999999; }
  .team-two-page .team-two-section .team-part .section-wrapper .wrapper-content ul {
    margin: 10px 0 45px; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .team-two-page .team-two-section .team-part .section-wrapper .wrapper-content ul {
        margin-bottom: 25px; } }
    @media only screen and (max-width: 767px) {
      .team-two-page .team-two-section .team-part .section-wrapper .wrapper-content ul {
        margin-bottom: 25px; } }
    .team-two-page .team-two-section .team-part .section-wrapper .wrapper-content ul li {
      display: inline-block; }
      .team-two-page .team-two-section .team-part .section-wrapper .wrapper-content ul li i {
        font-size: 25px;
        margin-right: 10px; }
        .team-two-page .team-two-section .team-part .section-wrapper .wrapper-content ul li i.linkedin {
          color: #03638f; }
        .team-two-page .team-two-section .team-part .section-wrapper .wrapper-content ul li i.twitter {
          color: #65b2e5; }
        .team-two-page .team-two-section .team-part .section-wrapper .wrapper-content ul li i.facebook {
          color: #00529c; }
  .team-two-page .team-two-section .team-part .section-wrapper .wrapper-content .link {
    font-size: 22px;
    line-height: 20px; }
  .team-two-page .team-two-section .team-part .border {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #e8e8e8; }
.team-two-page .team-two-section .pagination-wrapper .pagination {
  margin-top: -10px; }
.team-two-page .working-section {
  background: #39a835;
  padding: 50px 0; }
  @media only screen and (max-width: 550px) {
    .team-two-page .working-section {
      text-align: center; } }
  .team-two-page .working-section h3 {
    font-weight: 700;
    color: #FFFFFF;
    display: inline-block;
    margin-bottom: 0; }
    @media only screen and (max-width: 550px) {
      .team-two-page .working-section h3 {
        display: block;
        text-align: center; } }
  .team-two-page .working-section .btn-primary {
    font-size: 18px;
    font-weight: 700;
    color: #39a835;
    background: #FFFFFF; }
    @media only screen and (max-width: 550px) {
      .team-two-page .working-section .btn-primary {
        float: none !important;
        text-align: center;
        font-size: 15px;
        padding: 5px 20px; } }

/* =========================================================
        Team-two-Page-STYLE
============================================================ */
.testimonial-page .banner-section {
  background: url(../images/sub/c-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover; }
.testimonial-page .testimonial-section::before {
  display: none; }
.testimonial-page .testimonial-part-two {
  margin-bottom: 80px; }
  @media only screen and (max-width: 991px) {
    .testimonial-page .testimonial-part-two {
      margin-bottom: 80px; } }
  @media only screen and (max-width: 768px) {
    .testimonial-page .testimonial-part-two {
      margin-bottom: 50px; } }
.testimonial-page .section-sidebar .asset-part .btn {
  margin: 10px 0; }

/* =========================================================
        History-Page-STYLE
============================================================ */
.history-page .banner-section {
  background: url(../images/sub/h-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover; }
.history-page .history-section .history-part {
  margin-right: 50px; }
  @media only screen and (max-width: 991px) {
    .history-page .history-section .history-part {
      margin-right: 0; } }
  .history-page .history-section .history-part .header h2 {
    position: relative;
    padding-bottom: 20px; }
    .history-page .history-section .history-part .header h2::before {
      content: "";
      position: absolute;
      width: 90px;
      height: 2px;
      left: 0;
      bottom: 0;
      background: #39a835; }
    @media only screen and (max-width: 767px) {
      .history-page .history-section .history-part .header h2 {
        font-size: 35px; } }
    @media only screen and (max-width: 479px) {
      .history-page .history-section .history-part .header h2 {
        font-size: 25px;
        padding-bottom: 0;
        margin-bottom: 0; }
        .history-page .history-section .history-part .header h2::before {
          display: none; } }
  .history-page .history-section .history-part .header p {
    font-size: 18px;
    color: #777777;
    margin-bottom: 75px; }
    @media only screen and (max-width: 479px) {
      .history-page .history-section .history-part .header p {
        font-size: 16px;
        margin-bottom: 50px; } }
  .history-page .history-section .history-part .section-wrapper .history-content {
    padding-bottom: 23px;
    margin-bottom: 55px;
    border-bottom: 1px solid #eee; }
    @media only screen and (max-width: 479px) {
      .history-page .history-section .history-part .section-wrapper .history-content {
        padding-bottom: 15px;
        margin-bottom: 35px; } }
    .history-page .history-section .history-part .section-wrapper .history-content.last-content {
      margin-bottom: 0; }
      @media only screen and (max-width: 991px) {
        .history-page .history-section .history-part .section-wrapper .history-content.last-content {
          margin-bottom: 55px; } }
    .history-page .history-section .history-part .section-wrapper .history-content .date {
      font-size: 30px;
      font-weight: 700;
      color: #FFFFFF;
      background: #39a835;
      padding: 2px 8px; }
      @media only screen and (max-width: 479px) {
        .history-page .history-section .history-part .section-wrapper .history-content .date {
          font-size: 20px; } }
    .history-page .history-section .history-part .section-wrapper .history-content img {
      max-width: 100%; }
    .history-page .history-section .history-part .section-wrapper .history-content h3 {
      font-weight: 700;
      margin: 17px 0 12px; }
      .history-page .history-section .history-part .section-wrapper .history-content h3 a {
        color: #5f5f5f; }
      @media only screen and (max-width: 479px) {
        .history-page .history-section .history-part .section-wrapper .history-content h3 {
          margin: 0; } }
    .history-page .history-section .history-part .section-wrapper .history-content:hover h3 > a {
      color: #39a835; }
    .history-page .history-section .history-part .section-wrapper .history-content p {
      color: #666666; }

/* =========================================================
        Careers-Page-STYLE
============================================================ */
.careers-page .banner-section {
  background: url(../images/sub/cr-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover; }
.careers-page .careers-content .section-title {
  margin-top: 23px; }
  .careers-page .careers-content .section-title h2 {
    position: relative;
    line-height: 75px;
    margin-bottom: 0; }
    .careers-page .careers-content .section-title h2::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 70px;
      height: 2px;
      background-color: #39a835; }
    @media only screen and (max-width: 991px) {
      .careers-page .careers-content .section-title h2 {
        font-size: 36px;
        line-height: 45px; } }
    @media only screen and (max-width: 768px) {
      .careers-page .careers-content .section-title h2 {
        font-size: 25px;
        line-height: 35px; } }
    @media only screen and (max-width: 479px) {
      .careers-page .careers-content .section-title h2 {
        font-size: 20px;
        line-height: 30px; } }
  @media only screen and (max-width: 991px) {
    .careers-page .careers-content .section-title {
      margin: 0 0 15px; } }
.careers-page .careers-content p {
  color: #777777; }
.careers-page .careers-content .careers-gallery {
  margin-top: 25px; }
  .careers-page .careers-content .careers-gallery img {
    max-width: 100%; }
.careers-page .careers-content .reason-joinus .section-title h2 {
  position: relative;
  line-height: 40px;
  margin: 150px 0 0; }
  @media only screen and (max-width: 1199px) {
    .careers-page .careers-content .reason-joinus .section-title h2 {
      margin-top: 50px; } }
  @media only screen and (max-width: 768px) {
    .careers-page .careers-content .reason-joinus .section-title h2 {
      margin-top: 30px; } }
  .careers-page .careers-content .reason-joinus .section-title h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 70px;
    height: 2px;
    background-color: #39a835; }
  @media only screen and (max-width: 991px) {
    .careers-page .careers-content .reason-joinus .section-title h2 {
      font-size: 30px;
      line-height: 45px; } }
  @media only screen and (max-width: 768px) {
    .careers-page .careers-content .reason-joinus .section-title h2 {
      font-size: 25px;
      line-height: 35px; } }
  @media only screen and (max-width: 479px) {
    .careers-page .careers-content .reason-joinus .section-title h2 {
      font-size: 20px;
      line-height: 25px; } }
.careers-page .careers-content .reason-joinus .grid-wrapper {
  margin-top: 20px; }
  @media only screen and (max-width: 991px) {
    .careers-page .careers-content .reason-joinus .grid-wrapper {
      margin: 20px 0 50px; } }
  .careers-page .careers-content .reason-joinus .grid-wrapper .grid {
    margin: 45px 50px 0 0; }
    @media only screen and (max-width: 767px) {
      .careers-page .careers-content .reason-joinus .grid-wrapper .grid {
        margin: 30px 0 0; } }
    .careers-page .careers-content .reason-joinus .grid-wrapper .grid p {
      color: #666666;
      margin: 20px 0 0; }
      .careers-page .careers-content .reason-joinus .grid-wrapper .grid p span {
        color: #39a835; }
.careers-page .working-section {
  background: #39a835;
  padding: 50px 0; }
  @media only screen and (max-width: 1199px) {
    .careers-page .working-section {
      text-align: center; } }
  .careers-page .working-section h3 {
    font-weight: 500;
    line-height: 54px;
    color: #FFFFFF;
    display: inline-block;
    margin-bottom: 0; }
    @media only screen and (max-width: 550px) {
      .careers-page .working-section h3 {
        display: block;
        text-align: center; } }
    @media only screen and (max-width: 767px) {
      .careers-page .working-section h3 {
        font-size: 20px;
        line-height: 35px; } }
    @media only screen and (max-width: 767px) {
      .careers-page .working-section h3 {
        line-height: 25px;
        margin-bottom: 20px; } }
  @media only screen and (max-width: 1199px) {
    .careers-page .working-section .working-form {
      float: none !important;
      margin-top: 15px; } }
  @media only screen and (max-width: 1199px) {
    .careers-page .working-section .working-form {
      margin-top: 5px; } }
  .careers-page .working-section .working-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    font-size: 18px; }
    .careers-page .working-section .working-form .form-group .workingSearchBar {
      font-size: 18px;
      font-weight: 300;
      color: #FFFFFF;
      background-color: #2a2b2b;
      border: 0;
      border-radius: 25px 0 0 25px;
      padding: 28px 115px 28px 30px; }
      @media only screen and (max-width: 767px) {
        .careers-page .working-section .working-form .form-group .workingSearchBar {
          padding: 20px 100px 20px 30px; } }
      @media only screen and (max-width: 479px) {
        .careers-page .working-section .working-form .form-group .workingSearchBar {
          padding: 20px 0 20px 30px; } }
      @media only screen and (max-width: 379px) {
        .careers-page .working-section .working-form .form-group .workingSearchBar {
          border-radius: 15px;
          margin-bottom: 10px; } }
    .careers-page .working-section .working-form .form-group .subscribeBtn {
      font-weight: 700;
      text-transform: uppercase;
      color: #39a835;
      background-color: #FFFFFF;
      border-radius: 0 25px 25px 0;
      padding: 15px 30px 14px;
      margin-left: -3px; }
      @media only screen and (max-width: 767px) {
        .careers-page .working-section .working-form .form-group .subscribeBtn {
          font-size: 16px;
          padding: 8px 30px 7px; } }
      @media only screen and (max-width: 379px) {
        .careers-page .working-section .working-form .form-group .subscribeBtn {
          border-radius: 15px; } }

/* =========================================================
        Information-STYLE
============================================================ */
.information-section {
  background: #5f5f5f;
  padding: 30px 0; }
  .information-section h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 48px;
    color: #FFFFFF;
    display: inline-block;
    margin-bottom: 0; }
    @media only screen and (max-width: 991px) {
      .information-section h3 {
        font-size: 30px;
        line-height: 40px; } }
    @media only screen and (max-width: 767px) {
      .information-section h3 {
        font-size: 25px;
        line-height: 30px;
        display: block; } }
    @media only screen and (max-width: 479px) {
      .information-section h3 {
        font-size: 20px;
        line-height: 25px; } }
  .information-section .btn-primary {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #5f5f5f;
    background-color: #FFFFFF;
    border-radius: 0;
    padding: 11px 33px; }
    .information-section .btn-primary:hover {
      color: #FFFFFF;
      background-color: #008fcb; }
  @media only screen and (max-width: 991px) {
    .information-section {
      text-align: center; }
      .information-section .btn {
        margin-top: 25px;
        font-size: 14px;
        padding: 8px 15px;
        float: none !important; } }
  @media only screen and (max-width: 767px) {
    .information-section .btn {
      float: none !important;
      margin-top: 15px;
      font-size: 12px;
      padding: 5px 15px; } }
  @media only screen and (max-width: 767px) {
    .information-section .btn {
      margin-top: 10px;
      font-size: 10px;
      padding: 2px 12px; } }

/* =========================================================
        Contact-Page-STYLE
============================================================ */
.contact-page .banner-section {
  background: url(../images/sub/c-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover; }
.contact-page .contact-section {
  margin: 75px 0 110px; }

/* =========================================================
        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 .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: #39a835; }
  .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; }
  @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: #39a835;
    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: #39a835;
      box-shadow: 0 0 5px #a5a3a3; }
  .shop-page .shop-section .right-bar .product-selection .product-wrapper img {
    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: #39a835;
      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; }
  .cart-page .cart-section .table tbody tr th img {
    width: 100px; }
  .cart-page .cart-section .table tbody tr td {
    color: #333;
    line-height: 72px; }
    .cart-page .cart-section .table tbody tr td i {
      color: red; }
  .cart-page .cart-section .table tbody tr.button td {
    text-align: center;
    padding: 0;
    line-height: 50px;
    color: #FFFFFF; }
    .cart-page .cart-section .table tbody tr.button td:child(1) {
      background-color: #39a835; }
    .cart-page .cart-section .table tbody tr.button td:last-child {
      background-color: #39a835; }
.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; }

/* =========================================================
        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: #39a835;
    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: #39a835; }
      .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: #39a835;
    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: 80px;
  right: 30px;
  color: #39a835;
  cursor: pointer;
  display: none;
  width: 35px;
  height: 35px;
  font-size: 16px;
  line-height: 30px;
  border: 2px solid #39a835;
  border-radius: 6px;
  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 > div {
    width: 58px;
    height: 40px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin: 0 auto;
    /*@include center-by-translating();*/ }
  #preloader > div > span {
    background-color: #39a835;
    display: block;
    width: 10px;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-animation: perloaderAnimation 0.5s infinite ease-in-out alternate;
    animation: perloaderAnimation 0.5s infinite ease-in-out alternate; }
  #preloader div > span:first-child {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s; }
  #preloader div > span:nth-child(2) {
    left: 12px;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s; }
  #preloader div > span:nth-child(3) {
    left: 24px;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s; }
  #preloader div > span:nth-child(4) {
    left: 36px;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s; }
  #preloader div > span:nth-child(5) {
    left: 48px;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s; }

@-webkit-keyframes perloaderAnimation {
  from {
    height: 5px; }
  to {
    height: 40px; } }
@keyframes perloaderAnimation {
  from {
    height: 5px; }
  to {
    height: 40px; } }

/*# sourceMappingURL=style.css.map */
