@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800&display=swap");
.text-primary {
  color: #008800 !important;
}

.text-dark {
  color: #1B1D21 !important;
}

* {
  box-sizing: border-box;
  outline: none;
}

a:hover {
  outline: none;
  text-decoration: none;
}

body {
  font-family: "Nunito Sans", sans-serif;
  overflow-x: hidden;
  padding-right: 0 !important;
  color: #797A74;
  font-size: 16px;
  min-width: 320px;
}

.navbar-brand {
  padding: 10px 0px;
}

.navbar-brand img {
  height: auto;
  width: 52px;
}

.navbar {
  height: 120px;
  padding: 0;
  background: white;
  z-index: 16;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
  flex-direction: column;
}

@media (max-width: 991.98px) {
  .navbar {
    height: 80px;
  }
}
.navbar .navbar-top {
  width: 100%;
  display: flex;
  min-height: 40px;
  border-bottom: 1px solid #EDEDED;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 1600px) {
  .navbar .navbar-top {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.navbar .navbar-top p {
  margin-bottom: 0;
  font-weight: 300;
}

.navbar .navbar-top p a {
  font-weight: 600;
  color: #008800;
}

.navbar .navbar-top a {
  color: #797A74;
}

@media (max-width: 991.98px) {
  .navbar .navbar-top {
    display: none !important;
  }
}
.navbar .navbar-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 80px;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 1600px) {
  .navbar .navbar-bottom {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media (max-width: 991.98px) {
  .navbar .navbar-bottom {
    align-items: center;
  }
}
.navbar .navbar-toggler {
  position: relative;
  width: 50px;
  height: 30px;
  border: 0;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

.navbar .navbar-toggler .lines {
  width: 25px;
  height: 3px;
  background: #008800;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12.5px;
  margin-top: -1.5px;
  transition: transform 200ms;
}

.navbar .navbar-toggler .line-1 {
  transform: translate3d(0, -8px, 0);
}

.navbar .navbar-toggler .line-2 {
  transform: translate3d(0, 0, 0);
}

.navbar .navbar-toggler .line-3 {
  transform: translate3d(0, 8px, 0);
}

.navbar .navbar-toggler.open .line-1 {
  transform: translate3d(0, 0, 0) rotate(45deg);
}

.navbar .navbar-toggler.open .line-2 {
  transform: translate3d(0, 0, 0) scale(0.1, 1);
}

.navbar .navbar-toggler.open .line-3 {
  transform: translate3d(0, 0, 0) rotate(-45deg);
}

.navbar .navbar-toggler:focus {
  outline: 0;
  box-shadow: none;
  border: 0;
}

.navbar .navbar-right {
  z-index: 1;
}

.navbar .navbar-nav {
  position: relative;
  flex-grow: 1;
  padding-left: 40px;
}

@media (min-width: 1600px) {
  .navbar .navbar-nav {
    flex-grow: 0;
  }
}
@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
  }
}
.navbar .navbar-nav .nav-item {
  font-size: 0.8em;
  max-width: 160px;
  display: flex;
  align-items: center;
  margin-right: 40px;
}

@media (max-width: 1400px) {
  .navbar .navbar-nav .nav-item {
    flex-grow: 0;
    margin-right: 40px;
  }
}
@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-item {
    margin-right: 0;
    max-width: unset;
  }
}
.navbar .navbar-nav .nav-item .nav-link {
  color: #797A74;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  display: flex;
  height: 80px;
  align-items: center;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-item .nav-link {
    height: auto;
  }
}
.navbar .navbar-nav .nav-item .nav-link:after {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  height: 3px;
  background: #008800;
  left: 0;
  bottom: 0;
  transition: all 0.25s ease-out;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-item .nav-link {
    text-align: center;
    color: white;
  }
}
.navbar .navbar-nav .nav-item:hover .nav-link, .navbar .navbar-nav .nav-item.active .nav-link {
  color: #008800;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-item:hover .nav-link, .navbar .navbar-nav .nav-item.active .nav-link {
    color: white;
  }
}
.navbar .navbar-nav .nav-item:hover .nav-link:after, .navbar .navbar-nav .nav-item.active .nav-link:after {
  width: 100%;
}

@media (max-width: 991.98px) {
  .navbar:after {
    display: none;
  }
  .offcanvas-collapse {
    position: fixed;
    top: 80px;
    /* Height of navbar */
    bottom: 0;
    left: 100%;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    visibility: hidden;
    background-color: #008800;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  .offcanvas-collapse.open {
    visibility: visible;
    transform: translateX(-100%);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.nav-underline .nav-link {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #6c757d;
}

.nav-underline .nav-link:hover {
  color: #007bff;
}

.nav-underline .active {
  font-weight: 500;
  color: #343a40;
}

@media (min-width: 991px) {
  /*=== Append and Prepend ===*/
  .desk-hide {
    display: none;
  }
  .overlay {
    display: none;
  }
  /*=== Append and prepend ====*/
  /*==== Menu ====*/
  .main-nav,
.extra-link {
    margin-top: 19px;
    padding-top: 4px;
    position: relative;
    z-index: 2;
    font-weight: 600;
    text-align: right;
    text-transform: uppercase;
    display: block;
  }
  .main-nav a,
.extra-link a {
    text-decoration: none;
    text-align: left;
    color: #000;
    padding: 0 0 20px;
  }
  .main-nav > ul,
.extra-link > ul {
    margin: 0;
    padding: 0;
  }
  .main-nav > ul > li,
.extra-link > ul > li {
    display: inline-block;
    position: relative;
    color: #000;
    cursor: default;
    padding: 0 20px;
  }
  .main-nav > ul > li.current-page-ancestor > a, .main-nav > ul > li.current-menu-ancestor > a, .main-nav > ul > li.current_page_ancestor > a, .main-nav > ul > li.current-menu-item > a, .main-nav > ul > li.current-page-parent > a, .main-nav > ul > li.current_page_parent > a, .main-nav > ul > li:hover > a,
.extra-link > ul > li.current-page-ancestor > a,
.extra-link > ul > li.current-menu-ancestor > a,
.extra-link > ul > li.current_page_ancestor > a,
.extra-link > ul > li.current-menu-item > a,
.extra-link > ul > li.current-page-parent > a,
.extra-link > ul > li.current_page_parent > a,
.extra-link > ul > li:hover > a {
    color: #008800;
  }
  .main-nav > ul > li.current-page-ancestor > a:hover, .main-nav > ul > li.current-menu-ancestor > a:hover, .main-nav > ul > li.current_page_ancestor > a:hover, .main-nav > ul > li.current-menu-item > a:hover, .main-nav > ul > li.current-page-parent > a:hover, .main-nav > ul > li.current_page_parent > a:hover, .main-nav > ul > li:hover > a:hover,
.extra-link > ul > li.current-page-ancestor > a:hover,
.extra-link > ul > li.current-menu-ancestor > a:hover,
.extra-link > ul > li.current_page_ancestor > a:hover,
.extra-link > ul > li.current-menu-item > a:hover,
.extra-link > ul > li.current-page-parent > a:hover,
.extra-link > ul > li.current_page_parent > a:hover,
.extra-link > ul > li:hover > a:hover {
    color: #008800;
  }
  .main-nav > ul > li.current-page-ancestor > ul, .main-nav > ul > li.current-menu-ancestor > ul, .main-nav > ul > li.current_page_ancestor > ul, .main-nav > ul > li.current-menu-item > ul, .main-nav > ul > li.current-page-parent > ul, .main-nav > ul > li.current_page_parent > ul, .main-nav > ul > li:hover > ul,
.extra-link > ul > li.current-page-ancestor > ul,
.extra-link > ul > li.current-menu-ancestor > ul,
.extra-link > ul > li.current_page_ancestor > ul,
.extra-link > ul > li.current-menu-item > ul,
.extra-link > ul > li.current-page-parent > ul,
.extra-link > ul > li.current_page_parent > ul,
.extra-link > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .main-nav > ul > li.current-page-ancestor.submenu:after, .main-nav > ul > li.current-menu-ancestor.submenu:after, .main-nav > ul > li.current_page_ancestor.submenu:after, .main-nav > ul > li.current-menu-item.submenu:after, .main-nav > ul > li.current-page-parent.submenu:after, .main-nav > ul > li.current_page_parent.submenu:after, .main-nav > ul > li:hover.submenu:after,
.extra-link > ul > li.current-page-ancestor.submenu:after,
.extra-link > ul > li.current-menu-ancestor.submenu:after,
.extra-link > ul > li.current_page_ancestor.submenu:after,
.extra-link > ul > li.current-menu-item.submenu:after,
.extra-link > ul > li.current-page-parent.submenu:after,
.extra-link > ul > li.current_page_parent.submenu:after,
.extra-link > ul > li:hover.submenu:after {
    color: #13b9a5;
  }
  .main-nav > ul > li.submenu:after,
.extra-link > ul > li.submenu:after {
    content: "";
    position: absolute;
    right: 4px;
    top: 8px;
    font-size: 9px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000;
  }
  .main-nav > ul > li:last-child,
.extra-link > ul > li:last-child {
    padding-right: 0;
  }
  .main-nav > ul ul,
.extra-link > ul ul {
    position: absolute;
    white-space: nowrap;
    background: #fff;
    border: 1px solid #e6e6e6;
    margin: 0;
    z-index: 2;
    padding: 10px 0;
    min-width: 200px;
    border-radius: 4px;
    top: 37px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all ease 0.3s;
    box-shadow: 0 0 5px rgba(204, 204, 204, 0.3);
  }
  .main-nav > ul ul:after,
.extra-link > ul ul:after {
    content: "";
    position: absolute;
    top: -9px;
    left: 20px;
  }
  .main-nav > ul ul:before,
.extra-link > ul ul:before {
    content: "";
    position: absolute;
    top: -8px;
    left: 20px;
    z-index: 1;
  }
  .main-nav > ul ul li,
.extra-link > ul ul li {
    display: block;
    text-transform: uppercase;
  }
  .main-nav > ul ul li a,
.extra-link > ul ul li a {
    padding: 7px 10px;
    display: block;
    color: #000;
  }
  .main-nav > ul ul li a:hover,
.extra-link > ul ul li a:hover {
    background: #008800;
    color: #fff;
  }
  .extra-link {
    z-index: 1;
  }
  .mob-btn, .services-mob {
    display: none;
  }
  /*==== Menu End ====*/
}
@media (max-width: 990px) {
  /*==== Menu ====*/
  .main-nav {
    position: fixed;
    width: 260px;
    top: 0;
    right: -260px;
    background: #fff;
    height: 100%;
    transition: all ease 0.2s;
    z-index: 1005;
    overflow-y: auto;
  }
  .main-nav ul {
    margin: 0;
    padding: 0;
  }
  .main-nav ul li {
    display: block;
    position: relative;
    text-align: left;
  }
  .main-nav ul li.open > a {
    color: #10609C;
  }
  .main-nav ul li a {
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid #f2f2f2;
    font-weight: 600;
    color: #10609C;
    background: #fff;
  }
  .main-nav ul li a:hover {
    background: #10609C;
    color: #fff;
  }
  .main-nav ul li.submenu i {
    font-style: normal;
    position: absolute;
    width: 45px;
    height: 38px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 38px;
    cursor: pointer;
  }
  .main-nav ul li.submenu i:after {
    content: "+";
  }
  .main-nav ul li.submenu.open > i:after {
    content: "-";
    line-height: 34px;
    height: 34px;
  }
  .main-nav ul ul {
    display: none;
  }
  .main-nav ul ul li {
    font-size: 14px;
  }
  .main-nav ul ul li a {
    padding-left: 25px;
  }
  .show-menu .main-nav {
    right: 0;
  }
  .show-menu .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1001;
  }
  .submenu {
    display: block;
    padding: 10px 15px 10px;
    border-bottom: 1px solid #f2f2f2;
    font-weight: 600;
    color: #10609C;
    background: #fff;
  }
  .mob-btn {
    position: absolute;
    float: right;
    padding: 5px 7px;
    margin: 0px;
    background-color: transparent;
    cursor: pointer;
    right: 8px;
    top: 6px;
  }
  .mob-btn span {
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 1px;
    background: #10609C;
  }
  .mob-btn span + span {
    margin-top: 5px;
  }
  /*==== Menu End ====*/
  /*=== Append and Prepend ===*/
  .extra-link {
    display: none;
  }
  /*==== Append and Prepend End ====*/
}
.sec-home-features {
  position: relative;
  width: 100%;
}

.sec-home-features .home-features {
  margin-top: -70px;
  margin-bottom: 0;
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
}

.sec-home-features .home-features .feature-wrap {
  background: white;
  width: 100%;
  height: 150px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.sec-home-features .home-features .feature-wrap h2 {
  font-size: 26px;
  line-height: 32px;
  padding: 0;
  margin: 0;
  font-weight: 600;
}

.sec-home-features .home-features .feature-wrap h2 span {
  display: block;
}

.sec-home-features .home-features .feature-wrap .icon-holder {
  flex-shrink: 0;
  width: 120px;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding-top: 20px;
}

.sec-home-features .home-features .feature-wrap .icon-holder img {
  margin-left: 10px;
  height: 42px;
  width: auto;
}

.sec-home-features .home-features .feature-wrap .icon-holder:after {
  position: absolute;
  content: "";
  width: 240px;
  height: 240px;
  display: block;
  border-radius: 50%;
  top: 0%;
  right: 0px;
  transform: translate(50%, -50%);
  background: #000000;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #000000 0%, #545454 100%);
  opacity: 0.08;
}

.white-block,
.white-block-in {
  padding-top: 40px;
  padding-bottom: 30px;
}

.white-block.padding-sm,
.white-block-in.padding-sm {
  padding-top: 30px;
  padding-bottom: 20px;
}

.white-block-in {
  padding-bottom: 50px;
}

.light-block {
  background-color: #F8F8F8;
  padding-top: 54px;
  padding-bottom: 60px;
}

.dark-block {
  background-color: #212529;
  padding-top: 120px;
  padding-bottom: 90px;
}

.dark-block h5 {
  color: white;
  font-size: 21px;
  line-height: 32px;
  position: relative;
  padding-left: 80px;
}

.dark-block h5:after {
  content: "";
  display: block;
  position: absolute;
  width: 60px;
  height: 6px;
  top: 50%;
  left: 0px;
  margin-top: -3px;
  background: #008800;
}

.dark-block h2 {
  color: white;
  font-size: 38px;
  line-height: 46px;
  text-transform: uppercase;
}

.dark-block p {
  color: white;
}

@media (min-width: 768px) {
  .container {
    max-width: 750px !important;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 970px !important;
  }
}
@media (min-width: 1230px) {
  .container {
    max-width: 1170x !important;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1170px !important;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1170px !important;
  }
}
h2 {
  font-size: 40px;
  line-height: 56px;
  -moz-columns: #1B1D21;
  columns: #1B1D21;
  color: #1B1D21;
  font-weight: 800;
}

h3 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 800;
  color: #1B1D21;
}

h3.decor {
  position: relative;
}

h3.decor:after {
  content: "";
  display: block;
  width: 4px;
  position: absolute;
  left: -24px;
  top: 10px;
  bottom: 10px;
  background-color: #008800;
}

h5 {
  font-size: 22px;
  line-height: 56px;
  letter-spacing: 1px;
  font-weight: 700;
}

h6 {
  font-size: 24px;
  line-height: 32px;
  color: #1B1D21;
  font-weight: 600;
}

p {
  line-height: 32px;
}

p b {
  font-weight: 700;
}

p.text-md {
  font-size: 18px;
  font-weight: 600;
}

.link-primary {
  color: #008800;
}

.link-primary.decor {
  position: relative;
}

.link-primary.decor:after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background-color: #797A74;
}

.link-primary:hover {
  color: #008800;
  text-decoration: none;
}

.section-block-img {
  max-height: 413px;
  width: auto;
}

.button-default {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 6px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 50px;
  padding-right: 50px;
  color: white;
  background: #008800;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #008800 21%, #4e6121 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* IE6-9 */
  transition: all 0.25s ease-in;
  border: none;
}

.button-default:hover {
  color: white;
  text-decoration: none;
}

.button-default:focus, .button-default:active {
  outline: 0;
}

.slider-link {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 6px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 50px;
  padding-right: 50px;
  color: white;
  background: #008800;
  transition: all 0.25s ease-in;
  border: none;
}

.slider-link:hover {
  color: white;
  text-decoration: none;
}

.slider-link:focus, .slider-link:active {
  outline: 0;
}

.button-border {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 6px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 50px;
  padding-right: 50px;
  color: #008800;
  transition: all 0.25s ease-in;
  border: 2px solid #008800;
}

.button-border:hover {
  color: white;
  background: #008800;
  text-decoration: none;
}

.button-border:focus, .button-border:active {
  outline: 0;
}

.card .card-icon-lg {
  width: auto;
  max-height: 100px;
}

.card .card-icon-md {
  width: auto;
  max-height: 54px;
}

.card.car-white {
  border: 0;
  background-color: white;
  border-radius: 5px;
  min-height: 280px;
  box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.15);
  padding: 50px 50px;
  position: relative;
}

.card.car-white .link-btn {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #008800;
  color: white;
  border-radius: 50%;
}

.card.car-border {
  border: 1px solid #E7E7E7;
  background-color: white;
  border-radius: 0px;
  padding: 40px 40px;
  box-shadow: none;
}

.card.car-border h6 {
  font-size: 20px;
  line-height: 36px;
  text-transform: uppercase;
}

.img-fill {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.img-fill img {
  min-height: 100%;
  min-width: 100%;
  position: relative;
  display: inline-block;
  max-width: none;
}

.Grid1k {
  padding: 0 15px;
  max-width: 1200px;
  margin: auto;
}

.blocks-box,
.slick-slider {
  margin: 0;
  padding: 0 !important;
}

.slick-slide {
  float: left;
  padding: 0;
}

/* ==== Slider Style === */
.Modern-Slider .item .img-fill {
  height: 80vh;
  background: #F8F8F8;
}

.Modern-Slider .item .img-fill .info {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.Modern-Slider .NextArrow {
  position: absolute;
  top: 50%;
  right: 0px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.5);
  border: 0 none;
  margin-top: -22.5px;
  text-align: center;
  z-index: 5;
  transition: all 0.25s ease-in;
}

.Modern-Slider .NextArrow img {
  width: 20px;
  height: auto;
}

.Modern-Slider .NextArrow:hover {
  background: rgb(255, 255, 255);
}

.Modern-Slider .PrevArrow {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.5);
  border: 0 none;
  margin-top: -22.5px;
  text-align: center;
  z-index: 5;
  transition: all 0.25s ease-in;
}

.Modern-Slider .PrevArrow img {
  width: 20px;
  height: auto;
}

.Modern-Slider .PrevArrow:hover {
  background: rgb(255, 255, 255);
}

.Modern-Slider .slick-dots {
  position: absolute;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0px;
  width: 100%;
  left: 0px;
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

.Modern-Slider .slick-dots li button {
  display: none;
}

.Modern-Slider .slick-dots li {
  float: left;
  width: 0px;
  height: 5px;
  background: #008800;
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.Modern-Slider .slick-dots li.slick-active {
  width: 100%;
  -webkit-animation: ProgressDots 11s both;
  animation: ProgressDots 11s both;
}

.Modern-Slider .item h3 {
  text-transform: uppercase;
  color: #FFF;
  -webkit-animation: fadeOutRight 1s both;
  animation: fadeOutRight 1s both;
  margin: 0;
  padding: 0;
  font-size: 40px;
  font-weight: 800;
}

.Modern-Slider .item h5 {
  margin: 0;
  padding: 0;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  color: #FFF;
  overflow: hidden;
  -webkit-animation: fadeOutLeft 1s both;
  animation: fadeOutLeft 1s both;
}

.Modern-Slider .item .slider-link {
  margin: 0;
  padding: 0;
  font-weight: 400;
  color: #FFF;
  -webkit-animation: fadeOutLeft 1s both;
  animation: fadeOutLeft 1s both;
}

.Modern-Slider .item.slick-active .slider-link {
  -webkit-animation: fadeInLeft 1s both 2s;
  animation: fadeInLeft 1s both 2s;
}

.Modern-Slider .item.slick-active h3 {
  -webkit-animation: fadeInDown 1s both 1s;
  animation: fadeInDown 1s both 1s;
}

.Modern-Slider .item.slick-active h5 {
  -webkit-animation: fadeInLeft 1s both 1.5s;
  animation: fadeInLeft 1s both 1.5s;
}

.Modern-Slider .item.slick-active {
  -webkit-animation: Slick-FastSwipeIn 1s both;
  animation: Slick-FastSwipeIn 1s both;
}

.Modern-Slider {
  background: #000;
}

/* ==== Slider Image Transition === */
@-webkit-keyframes Slick-FastSwipeIn {
  0% {
    transform: rotate3d(0, 1, 0, 150deg) scale(0) perspective(400px);
  }
  100% {
    transform: rotate3d(0, 1, 0, 0deg) scale(1) perspective(400px);
  }
}
@keyframes Slick-FastSwipeIn {
  0% {
    transform: rotate3d(0, 1, 0, 150deg) scale(0) perspective(400px);
  }
  100% {
    transform: rotate3d(0, 1, 0, 0deg) scale(1) perspective(400px);
  }
}
@-webkit-keyframes ProgressDots {
  from {
    width: 0px;
  }
  to {
    width: 100%;
  }
}
@keyframes ProgressDots {
  from {
    width: 0px;
  }
  to {
    width: 100%;
  }
}
/* ==== Slick Slider Css Ruls === */
.slick-slider {
  position: relative;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/*-- banner --*/
.banner {
  background: url(../images/banner.jpg) no-repeat 0px 0px;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  min-height: 700px;
  margin-top: 152px;
}

.banner-info h3 {
  font-size: 5em;
  color: #fff;
  margin: 0;
}

.banner-info {
  margin: 9em 0 0;
  text-align: center;
}

.banner-info h4 {
  font-size: 3em;
  color: #fff;
  margin: 0em 0 0 7.5em;
  font-weight: 300;
  font-family: "Lato", sans-serif;
}

.banner-info h4 span {
  padding: 0.8em 0.9em;
  background: #b12437;
  border-radius: 100%;
  display: inline-block;
}

.banner-info h4 span i {
  display: block;
}

.banner-info1 p {
  font-size: 2em;
  color: #fff;
  margin: 0;
  line-height: 1.8em;
  width: 65%;
}

/*-- //banner --*/
/*-- banner-bottom --*/
.banner-bottom,
.new-collections,
.checkout,
.collections-bottom,
.timer,
.register,
.products,
.typo,
.mail,
.single,
.login,
.single-related-products {
  padding: 4em 0;
}

.banner-bottom-grid-left {
  float: left;
  width: 33.1%;
}

.banner-bottom-grid-left1 {
  float: left;
  width: 30%;
  margin: 0 1em;
}

.banner-bottom-grid-right {
  float: left;
  width: 31.5%;
}

.left1-grid:nth-child(2) {
  margin: 1em 0 0;
}

.grid-left-grid1 {
  position: relative;
  display: block;
  overflow: hidden;
  text-align: center;
}

.grid-left-grid1,
.banner-bottom-grid-left-grid1 {
  position: relative;
  width: 100%;
}

.grid-left-grid1:hover img,
.products-right-grids-position:hover img,
.timer-grid-right1:hover img {
  transform: scale(1.5);
}

.grid-left-grid1 img,
.products-right-grids-position img,
.timer-grid-right1 img {
  transition: all 3s ease-in-out;
}

.grid-left-grid1-pos {
  position: absolute;
  bottom: 14%;
  left: 2%;
  width: 90%;
  text-align: center;
  text-transform: capitalize;
}

.grid-left-grid1-pos p {
  font-size: 2em;
  color: #fff;
  margin: 0;
}

.grid-left-grid1-pos p span {
  display: block;
}

.banner-bottom-grid-left1-pos {
  position: absolute;
  top: 36%;
  left: 3%;
  width: 90%;
}

.banner-bottom-grid-left1-pos p {
  font-size: 2em;
  color: #fff;
  margin: 0;
}

.banner-bottom-grid-left1-position {
  position: absolute;
  top: 6%;
  left: 3%;
  width: 94%;
  height: 89%;
  padding: 1em;
  border: 1px solid #fff;
}

.banner-bottom-grid-left1-pos1 {
  padding: 1.8em;
  /*background:rgba(0, 0, 0, 0.22);*/
}

.banner-bottom-grid-left1-pos1 p {
  font-size: 2em;
  color: #fff;
  margin: 0;
}

.grid {
  position: relative;
  clear: both;
  margin: 0 auto;
  padding: 0;
  max-width: 1000px;
  list-style: none;
  text-align: center;
}

/* Common style */
.grid figure {
  position: relative;
  float: none;
  overflow: hidden;
  margin: 0;
  min-width: 376px;
  max-width: 480px;
  max-height: 470px;
  width: 48%;
  height: auto;
  background: #3085a3;
  text-align: center;
}

.grid figure img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
  opacity: 0.8;
}

.grid figure figcaption {
  padding: 2em;
  color: #fff;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
  pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

.grid figure h3 {
  word-spacing: -0.15em;
}

.grid figure h3 span {
  color: #F31F08;
}

.grid figure h3 i {
  display: block;
  font-style: normal;
  font-size: 0.5em;
  line-height: 0.5;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.grid figure h3,
.grid figure p {
  margin: 0;
}

.grid figure p {
  letter-spacing: 1px;
  font-size: 68.5%;
}

/*---------------*/
/***** Julia *****/
/*---------------*/
figure.effect-julia {
  background: #2f3238;
}

figure.effect-julia img {
  transition: opacity 1s, transform 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

figure.effect-julia figcaption {
  text-align: left;
}

figure.effect-julia h3 {
  position: relative;
  padding: 0.5em 0 1em;
  font-size: 2em;
  line-height: 1.2em;
}

figure.effect-julia p {
  display: inline-block;
  margin: 0 0 0.5em;
  padding: 0.4em 1em;
  background: #fff;
  color: #2f3238;
  text-transform: none;
  font-weight: 500;
  font-size: 75%;
  transition: opacity 0.35s, transform 0.35s;
  transform: translate3d(-360px, 0, 0);
}

figure.effect-julia p:first-child {
  transition-delay: 0.15s;
}

figure.effect-julia p:nth-of-type(2) {
  transition-delay: 0.1s;
}

figure.effect-julia p:nth-of-type(3) {
  transition-delay: 0.05s;
}

figure.effect-julia:hover p:first-child {
  transition-delay: 0s;
}

figure.effect-julia:hover p:nth-of-type(2) {
  transition-delay: 0.05s;
}

figure.effect-julia:hover p:nth-of-type(3) {
  transition-delay: 0.1s;
}

figure.effect-julia:hover img {
  opacity: 0.4;
  transform: scale3d(1.1, 1.1, 1);
}

figure.effect-julia:hover p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}

.new-collections-grid {
  padding-left: 0;
}

.new-collections-grids {
  margin: 3em 0 0;
}

.new-collections-grid1 {
  padding: 1em;
  background: #fff;
}

.new-collections-grid1 img {
  margin: 0 auto;
}

.new-collections-grid1 h4 a {
  font-size: 0.7em;
  min-height: 40px;
  color: #222;
  margin: 1em 0 0.3em;
  text-transform: uppercase;
  display: block;
  text-decoration: none;
}

.new-collections-grid1 h4 a:hover {
  color: #008800;
}

.new-collections-grid1 p {
  font-size: 14px;
  color: #999;
  line-height: 1.8em;
  margin: 0 0 0.5em;
}

.new-collections-grid1-left p a,
.occasion-cart a {
  font-size: 14px;
  color: #008800;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.5em 1em;
  border: 1px solid;
}

.new-collections-grid1-left p i {
  color: #999;
  position: relative;
  font-style: normal;
  font-size: 14px;
}

.new-collections-grid1-left p span {
  margin: 0 1em 0 0.5em;
}

.new-collections-grid1-left p i:before,
.products-right-grid1-add-cart p i:before {
  background: #999 none repeat scroll 0 0;
  content: "";
  height: 1px;
  left: -26%;
  position: absolute;
  right: -20%;
  top: 54%;
  transform: rotate(-8deg) translate(0, -50%);
  -moz-transform: rotate(-8deg) translate(0, -50%);
  -webkit-transform: rotate(-8deg) translate(0, -50%);
}

.new-collections-grid1-left p {
  margin: 0 !important;
  text-transform: capitalize;
  color: #000;
  font-size: 1.2em !important;
}

.new-collections {
  background: #F7F7F9;
}

.rating-left {
  float: left;
}

.new-collections-grid1-left p a:hover,
.occasion-cart a:hover,
.products-right-grid1-add-cart p a:hover,
.new-products-grid-right-add-cart p a:hover {
  color: #222;
  border: 1px solid;
}

.new-collections-grid1-left {
  margin: 1.5em 0 0.8em;
}

.new-collections-grid1-right {
  position: absolute;
  bottom: 29%;
  left: 30%;
  display: none;
  z-index: 999;
}

.new-collections-grid1-right-rate {
  left: 44% !important;
}

.new-collections-grid1:hover .new-collections-grid1-right {
  display: block;
}

.rating-left img {
  margin: 0.3em 0.1em 0;
}

.new-collections-grid1:nth-child(2) {
  margin: 1em 0 0;
}

.new-collections-grid1 {
  position: relative;
}

.new-collections-grid1:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 72%;
  left: 50%;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  z-index: 3;
}

.new-collections-grid1:hover:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 72%;
}

.product-image:not(.zoom-available):hover {
  position: relative;
  display: block;
  border: none;
  text-align: center;
}

.product-image {
  width: 100%;
}

.new-collections-grid1-image {
  position: relative;
}

.new-collections-grid1-image-pos {
  position: absolute;
  top: 50%;
  left: 26%;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  z-index: 9999;
  display: none;
}

.new-collections-grid1-image-pos a {
  padding: 10px 20px;
  color: #fff;
  background: #10609C;
  text-decoration: none;
  font-size: 14px;
}

.new-collections-grid1:hover .new-collections-grid1-image-pos {
  display: block;
}

.new-collections-grid1-image-pos a:hover {
  background: #ffc229;
}

.new-collections-grid1-image-pos1 {
  left: 41% !important;
}

.new-collections-grid1-sub {
  float: left;
  width: 48.5%;
}

.new-collections-grid1-sub:nth-child(2) {
  margin-left: 1em;
}

.new-collections-grid-sub-grids {
  margin: 1em 0 0;
}

.new-one {
  position: absolute;
  top: 0%;
  right: 0%;
  padding: 0.1em 0.5em;
  background: #10609C;
}

.new-one p {
  font-size: 14px;
  color: #fff;
  margin: 0;
}

.footer {
  background: #2E2E2E;
  padding-top: 30px;
}

.footer h2 {
  color: white;
  border-bottom: 1px solid #cccccc;
  font-size: 1.8em;
  font-weight: 500;
}

.footer p {
  line-height: 1.6em;
  color: #cccccc;
  font-weight: 400;
}

.footer ul {
  padding: 0;
  margin: 0;
}

.footer ul li {
  list-style: none;
  margin-bottom: 10px;
}

.footer ul li img {
  width: 18px;
  height: auto;
}

.footer ul li a {
  color: #797A74;
}

.footer ul li a:hover {
  color: white;
}

.f-hardwares {
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.f-hardwares img {
  width: 33%;
  height: auto;
  border: 1px solid #2E2E2E;
}

.copyright {
  border-top: 1px solid #777777;
  margin-top: 15px;
  padding: 8px 0;
}

.copyright p {
  text-align: center;
  margin-bottom: 0;
}

.navbar-fixed-top {
  position: fixed;
  z-index: 161;
  width: 100%;
}

.main {
  padding-top: 121px;
}

@media (max-width: 992px) {
  .main {
    padding-top: 64px;
  }
}
.inner-banner {
  height: 392px;
}

.inner-banner .banner-sf {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 392px;
  flex-direction: column;
}

@media (max-width: 992px) {
  .inner-banner .banner-sf {
    height: 250px;
  }
}
.inner-banner .banner-sf h2 {
  color: #FFF;
}

.inner-banner .banner-sf h3 {
  font-size: 22px;
  color: #FFF;
}

.about-banner {
  background: url(../img/inner-banner.jpg) top center no-repeat;
  background-size: cover;
}

.inner-about {
  background: url(../img/inner-about.jpg) top center no-repeat;
  background-size: cover;
}

.structurel-banner {
  background: url(../img/structurel-banner.jpg) top center no-repeat;
  background-size: cover;
}

.electrical-banner {
  background: url(../img/electrical-banner.jpg) top center no-repeat;
  background-size: cover;
}

.estimation-banner {
  background: url(../img/estimation-banner.jpg) top center no-repeat;
  background-size: cover;
}

.contact-banner {
  background: url(../img/contact-banner.jpg) top center no-repeat;
  background-size: cover;
}

.drainage-banner {
  background: url(../img/drainage-banner.jpg) top center no-repeat;
  background-size: cover;
}

.soil-banner {
  background: url(../img/soil-banner.jpg) top center no-repeat;
  background-size: cover;
}

.inner-box-wrap {
  margin-top: 40px;
}

@media (min-width: 991px) {
  .inner-box-wrap {
    display: flex;
    justify-content: space-between;
  }
}
.inner-box-wrap .inner-box {
  padding: 20px;
  background: #008800;
  width: 33%;
  margin: 0 15px;
}

@media (max-width: 991px) {
  .inner-box-wrap .inner-box {
    width: 100%;
    margin: 0 0 20px;
  }
}
.inner-box-wrap ul {
  margin: 0 0 0 17px;
  padding: 0;
  color: #fff;
}

.inner-box-wrap p {
  color: #fff;
}

@media (min-width: 768px) {
  .services-img-box {
    display: flex;
    flex-direction: row;
  }
}
.services-img {
  background: #F8F8F8;
  padding: 15px;
  margin: 10px 30px 0px 0px;
  float: left;
  max-width: 320px;
}

@media (max-width: 768px) {
  .services-img {
    margin: 0px 0px 10px 0px;
    float: none;
    max-width: 100%;
  }
}
.services-img img {
  width: 100%;
}

.m-none {
  margin: 0;
}

textarea.form-control {
  height: 38px;
  resize: none;
}

.card-header, .card-body {
  padding: 0;
}

.acc-head {
  margin: 0;
  padding: 0;
}

.card-ac, .card-header-none {
  background: none;
  border: none;
}

.card-ac {
  margin-bottom: 10px;
}

.ac-h5 {
  color: rgb(255, 255, 255);
  font-size: 18px;
  text-align: left;
  font-weight: 600;
}

.ac-h5:hover {
  color: rgb(255, 255, 255);
  text-decoration: none;
  outline: none;
}

.ac-h5.active, .ac-h5:focus {
  color: rgb(255, 255, 255);
  text-decoration: none;
  outline: none;
  border: none;
}

.card-body-ac {
  color: rgb(221, 221, 221);
}

.ac-collapse {
  margin-bottom: 15px;
}

.btn-ac {
  border: none;
} /*# sourceMappingURL=main.css.map */

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