/*
Icon classes can be used entirely standalone. They are named after their original file names.

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
.icon-cart {
  background-image: url(../img/sprite.png);
  background-position: 0px 0px;
  width: 24px;
  height: 24px;
}

.icon-facebook {
  background-image: url(../img/sprite.png);
  background-position: -34px 0px;
  width: 24px;
  height: 24px;
}

.icon-instagram {
  background-image: url(../img/sprite.png);
  background-position: 0px -34px;
  width: 24px;
  height: 24px;
}

.icon-search {
  background-image: url(../img/sprite.png);
  background-position: -34px -34px;
  width: 24px;
  height: 24px;
}

.icon-twitter {
  background-image: url(../img/sprite.png);
  background-position: -68px 0px;
  width: 24px;
  height: 24px;
}

.icon-user {
  background-image: url(../img/sprite.png);
  background-position: -68px -34px;
  width: 24px;
  height: 24px;
}

/*
 * Vendor Prefix generator
 */
/*
 * a small mixin for easy use of rem with px as fallback
 * usage: @include x-rem(font-size, 14px)
 * usage: @include x-rem(margin, 0 12px 2 1.2)
 * usage: @include x-rem(padding, 1.5 24px)
 *
 * thanks to Eric Meyer for https://github.com/ericam/susy
 * and Hans Christian Reinl for http://drublic.de/blog/rem-fallback-sass-less/
 */
/*
 * Linear gradient generator. 'start' is top, 'end' is bottom. IE9 support not included using CSS SVG include.
 *
 * Use http://www.colorzilla.com/gradient-editor/ to generate IE9 SVG element
 *
 */
/****************** BUTTONS **************************/
/*
 * Linear gradient generator. 'start' is top, 'end' is bottom. IE9 support not included using CSS SVG include.
 *
 * Use http://www.colorzilla.com/gradient-editor/ to generate IE9 SVG element
 *
 */
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.alert[style*=inline] {
  display: block !important;
}

:root {
  font-size: 20px;
  line-height: 1.5;
  font-family: "Mulish", sans-serif;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  :root {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    font-size: 16px;
  }
}

h1, .h1 {
  font-family: "Mulish", sans-serif;
  color: #071e57;
  font-weight: 700;
  line-height: 75px;
  letter-spacing: 0;
  font-size: 65px;
}

h2, .h2 {
  font-family: "Mulish", sans-serif;
  color: #071e57;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
}

h3 {
  font-size: 20px;
  line-height: 30px;
  font-family: "Mulish", sans-serif;
  color: #071e57;
  font-weight: 700;
  margin-bottom: 0;
}

p {
  font-family: "Mulish", sans-serif;
  color: #748494;
  font-style: normal;
  font-size: 18px;
  font-weight: 500;
  line-height: 29px;
}

@media screen and (max-width: 767px) {
  h1, .h1 {
    font-size: 30px;
    line-height: 45px;
  }
  h2, .h2 {
    font-size: 25px;
    line-height: 35px;
  }
  h3 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  h1, .h1 {
    line-height: 45px;
    font-size: 35px;
  }
  h2, .h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media screen and (max-width: 1599px) and (min-width: 1366px) {
  h1, .h1 {
    line-height: 55px;
    font-size: 45px;
  }
  h2, .h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  h1, .h1 {
    line-height: 50px;
    font-size: 40px;
  }
  h2, .h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
a {
  color: #000000;
}
a:hover {
  color: #e88a24;
}

img {
  max-width: 100%;
}

.social-links {
  list-style: none;
  padding: 0;
}
.social-links li {
  display: inline-block;
}

.btn-style, .home-contactForm-section .inner-form .form a, .home-contactUs-section a, .home-pricing-section .price-box .download-btn a, .home-services-section .col-lg-6:first-of-type .text-box a, .home-text-section .container > a, header ul li:last-of-type > a {
  display: inline-block;
  position: relative;
  transition: 0.5s;
  border: 2px solid #e88a24;
  height: 54px;
  padding: 13px 40px 18px;
  text-align: center;
  text-transform: capitalize;
  background: #e88a24;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  min-width: 175px;
  border-radius: 3px;
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  font-family: "Mulish", sans-serif;
  letter-spacing: 0.84px;
  text-decoration: none;
}
.btn-style:hover, .home-contactForm-section .inner-form .form a:hover, .home-contactUs-section a:hover, .home-pricing-section .price-box .download-btn a:hover, .home-services-section .col-lg-6:first-of-type .text-box a:hover, .home-text-section .container > a:hover, header ul li:last-of-type > a:hover, .btn-style:focus, .home-contactForm-section .inner-form .form a:focus, .home-contactUs-section a:focus, .home-pricing-section .price-box .download-btn a:focus, .home-services-section .col-lg-6:first-of-type .text-box a:focus, .home-text-section .container > a:focus, header ul li:last-of-type > a:focus, .btn-style:active, .home-contactForm-section .inner-form .form a:active, .home-contactUs-section a:active, .home-pricing-section .price-box .download-btn a:active, .home-services-section .col-lg-6:first-of-type .text-box a:active, .home-text-section .container > a:active, header ul li:last-of-type > a:active {
  color: #e88a24;
  text-decoration: none;
  outline: none !important;
  background: transparent;
}
.btn-style:hover:before, .home-contactForm-section .inner-form .form a:hover:before, .home-contactUs-section a:hover:before, .home-pricing-section .price-box .download-btn a:hover:before, .home-services-section .col-lg-6:first-of-type .text-box a:hover:before, .home-text-section .container > a:hover:before, header ul li:last-of-type > a:hover:before, .btn-style:focus:before, .home-contactForm-section .inner-form .form a:focus:before, .home-contactUs-section a:focus:before, .home-pricing-section .price-box .download-btn a:focus:before, .home-services-section .col-lg-6:first-of-type .text-box a:focus:before, .home-text-section .container > a:focus:before, header ul li:last-of-type > a:focus:before, .btn-style:active:before, .home-contactForm-section .inner-form .form a:active:before, .home-contactUs-section a:active:before, .home-pricing-section .price-box .download-btn a:active:before, .home-services-section .col-lg-6:first-of-type .text-box a:active:before, .home-text-section .container > a:active:before, header ul li:last-of-type > a:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.btn-style.green, .home-contactForm-section .inner-form .form a.green, .home-contactUs-section a.green, .home-pricing-section .price-box .download-btn a.green, .home-services-section .col-lg-6:first-of-type .text-box a.green, .home-text-section .container > a.green, header ul li:last-of-type > a.green {
  text-align: center;
  box-shadow: none;
  color: #ffffff;
  background: #2ed47d;
  border: 2px solid #2ed47d;
}
.btn-style.green:hover, .home-contactForm-section .inner-form .form a.green:hover, .home-contactUs-section a.green:hover, .home-pricing-section .price-box .download-btn a.green:hover, .home-services-section .col-lg-6:first-of-type .text-box a.green:hover, .home-text-section .container > a.green:hover, header ul li:last-of-type > a.green:hover, .btn-style.green:focus, .home-contactForm-section .inner-form .form a.green:focus, .home-contactUs-section a.green:focus, .home-pricing-section .price-box .download-btn a.green:focus, .home-services-section .col-lg-6:first-of-type .text-box a.green:focus, .home-text-section .container > a.green:focus, header ul li:last-of-type > a.green:focus, .btn-style.green:active, .home-contactForm-section .inner-form .form a.green:active, .home-contactUs-section a.green:active, .home-pricing-section .price-box .download-btn a.green:active, .home-services-section .col-lg-6:first-of-type .text-box a.green:active, .home-text-section .container > a.green:active, header ul li:last-of-type > a.green:active {
  text-decoration: none;
  background: #1d2b37;
  border: 2px solid #1d2b37;
}
.btn-style.green:hover:before, .home-contactForm-section .inner-form .form a.green:hover:before, .home-contactUs-section a.green:hover:before, .home-pricing-section .price-box .download-btn a.green:hover:before, .home-services-section .col-lg-6:first-of-type .text-box a.green:hover:before, .home-text-section .container > a.green:hover:before, header ul li:last-of-type > a.green:hover:before, .btn-style.green:focus:before, .home-contactForm-section .inner-form .form a.green:focus:before, .home-contactUs-section a.green:focus:before, .home-pricing-section .price-box .download-btn a.green:focus:before, .home-services-section .col-lg-6:first-of-type .text-box a.green:focus:before, .home-text-section .container > a.green:focus:before, header ul li:last-of-type > a.green:focus:before, .btn-style.green:active:before, .home-contactForm-section .inner-form .form a.green:active:before, .home-contactUs-section a.green:active:before, .home-pricing-section .price-box .download-btn a.green:active:before, .home-services-section .col-lg-6:first-of-type .text-box a.green:active:before, .home-text-section .container > a.green:active:before, header ul li:last-of-type > a.green:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.btn-style.white, .home-contactForm-section .inner-form .form a.white, .home-contactUs-section a.white, .home-pricing-section .price-box .download-btn a.white, .home-services-section .col-lg-6:first-of-type .text-box a.white, .home-text-section .container > a.white, header ul li:last-of-type > a.white {
  text-align: center;
  background: transparent;
  border: 2px solid #7d7d7d;
  color: #7d7d7d;
  box-shadow: none;
}
.btn-style.white:hover, .home-contactForm-section .inner-form .form a.white:hover, .home-contactUs-section a.white:hover, .home-pricing-section .price-box .download-btn a.white:hover, .home-services-section .col-lg-6:first-of-type .text-box a.white:hover, .home-text-section .container > a.white:hover, header ul li:last-of-type > a.white:hover, .btn-style.white:focus, .home-contactForm-section .inner-form .form a.white:focus, .home-contactUs-section a.white:focus, .home-pricing-section .price-box .download-btn a.white:focus, .home-services-section .col-lg-6:first-of-type .text-box a.white:focus, .home-text-section .container > a.white:focus, header ul li:last-of-type > a.white:focus, .btn-style.white:active, .home-contactForm-section .inner-form .form a.white:active, .home-contactUs-section a.white:active, .home-pricing-section .price-box .download-btn a.white:active, .home-services-section .col-lg-6:first-of-type .text-box a.white:active, .home-text-section .container > a.white:active, header ul li:last-of-type > a.white:active {
  color: #7d7d7d;
  text-decoration: none;
  background: #cfcfcf;
}
.btn-style.white:hover:before, .home-contactForm-section .inner-form .form a.white:hover:before, .home-contactUs-section a.white:hover:before, .home-pricing-section .price-box .download-btn a.white:hover:before, .home-services-section .col-lg-6:first-of-type .text-box a.white:hover:before, .home-text-section .container > a.white:hover:before, header ul li:last-of-type > a.white:hover:before, .btn-style.white:focus:before, .home-contactForm-section .inner-form .form a.white:focus:before, .home-contactUs-section a.white:focus:before, .home-pricing-section .price-box .download-btn a.white:focus:before, .home-services-section .col-lg-6:first-of-type .text-box a.white:focus:before, .home-text-section .container > a.white:focus:before, header ul li:last-of-type > a.white:focus:before, .btn-style.white:active:before, .home-contactForm-section .inner-form .form a.white:active:before, .home-contactUs-section a.white:active:before, .home-pricing-section .price-box .download-btn a.white:active:before, .home-services-section .col-lg-6:first-of-type .text-box a.white:active:before, .home-text-section .container > a.white:active:before, header ul li:last-of-type > a.white:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.btn-style.small, .home-contactForm-section .inner-form .form a.small, .home-contactUs-section a.small, .home-pricing-section .price-box .download-btn a.small, .home-services-section .col-lg-6:first-of-type .text-box a.small, .home-text-section .container > a.small, header ul li:last-of-type > a.small {
  padding: 14px 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 45px;
}

.btn-link {
  color: #2D2D2D;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

label {
  line-height: 26px;
  color: #2D2D2D;
  font-family: "Mulish", sans-serif;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  label {
    font-size: 14px !important;
    margin: 0;
    line-height: 16px !important;
  }
}

.form-control {
  border: 0 solid #eeeeee;
  background-color: rgba(69, 69, 69, 0.05);
  box-shadow: none;
  height: 40px;
  border-radius: 0;
  padding-left: 15px;
  font-family: "Mulish", sans-serif;
  color: #2D2D2D;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
.form-control::-webkit-input-placeholder {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}
.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
}
.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
}
.form-control:-ms-input-placeholder {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .form-control {
    height: 40px;
  }
}
.form-control:focus, .form-control:active, .form-control:hover {
  color: #2D2D2D;
  outline: none;
  box-shadow: none;
  background-color: rgba(69, 69, 69, 0.05);
}

.form-group {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .form-group {
    margin-bottom: 5px;
  }
}

textarea.form-control {
  padding-top: 15px;
  padding-bottom: 15px;
  min-height: 150px;
  max-height: 200px;
  resize: none;
}
@media screen and (max-width: 767px) {
  textarea.form-control {
    min-height: 100px;
    max-height: 100px;
  }
}

.screen-reader-response, .wpcf7-validation-errors {
  display: none;
}

.wpcf7-not-valid-tip {
  color: #2D2D2D;
  text-shadow: 0 0 0;
  line-height: 47px;
  font-size: 12px;
  font-weight: normal;
  display: block;
  margin-top: 8px;
}

.wpcf7-mail-sent-ok {
  text-align: center;
  padding: 10px !important;
  margin: 20px auto 0;
  font-weight: 600;
  width: 100%;
  display: block;
  max-width: 100%;
  clear: both;
  margin-top: 90px;
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

div.wpcf7-validation-errors {
  border: 2px solid #f7e700;
  text-align: center;
  padding: 10px 30px !important;
  font-weight: 600;
  width: 100%;
  display: block;
  max-width: 100%;
  clear: both;
}

.pagination {
  width: 100%;
  text-align: center;
  margin: 30px 0;
  display: inline-block;
}
.pagination li {
  display: inline-block;
  margin: 0 3px;
}
.pagination li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
  display: inline-block;
  height: 34px;
  width: 34px;
  padding: 2px;
  border: 1px solid #e88a24;
  color: #e88a24;
  transition: 0.5s;
  padding-top: 6px;
}
.pagination li a:hover, .pagination li a:focus, .pagination li a:active {
  background: #e88a24;
  color: #ffffff;
  border: 1px solid #e88a24;
  text-decoration: none;
}
.pagination li.active a {
  background: #e88a24;
  color: #ffffff;
  border: 1px solid #e88a24;
}
.pagination li.active a:hover {
  background: #e88a24;
  color: #ffffff;
  border: 1px solid #e88a24;
  text-decoration: none;
}

.wpcf7-not-valid-tip {
  color: red;
  line-height: 20px;
  font-size: 12px !important;
  font-weight: normal;
  margin-top: 8px;
}

iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.container.more-smaller {
  max-width: 700px;
}

.container .smaller {
  max-width: 800px;
}

.blue-bg {
  background: #071e57;
}

.silver-bg {
  background: #f9f9f9;
}

.red-bg {
  background: #e88a24;
}
.red-bg .btn-style, .red-bg .home-contactForm-section .inner-form .form a, .home-contactForm-section .inner-form .form .red-bg a, .red-bg .home-contactUs-section a, .home-contactUs-section .red-bg a, .red-bg .home-pricing-section .price-box .download-btn a, .home-pricing-section .price-box .download-btn .red-bg a, .red-bg .home-services-section .col-lg-6:first-of-type .text-box a, .home-services-section .col-lg-6:first-of-type .text-box .red-bg a, .red-bg .home-text-section .container > a, .home-text-section .red-bg .container > a, .red-bg header ul li:last-of-type > a, header ul .red-bg li:last-of-type > a {
  border: 2px solid #ffffff;
  color: #ffffff;
}
.red-bg .btn-style:before, .red-bg .home-contactForm-section .inner-form .form a:before, .home-contactForm-section .inner-form .form .red-bg a:before, .red-bg .home-contactUs-section a:before, .home-contactUs-section .red-bg a:before, .red-bg .home-pricing-section .price-box .download-btn a:before, .home-pricing-section .price-box .download-btn .red-bg a:before, .red-bg .home-services-section .col-lg-6:first-of-type .text-box a:before, .home-services-section .col-lg-6:first-of-type .text-box .red-bg a:before, .red-bg .home-text-section .container > a:before, .home-text-section .red-bg .container > a:before, .red-bg header ul li:last-of-type > a:before, header ul .red-bg li:last-of-type > a:before {
  background: #ffffff;
}
.red-bg .btn-style:hover, .red-bg .home-contactForm-section .inner-form .form a:hover, .home-contactForm-section .inner-form .form .red-bg a:hover, .red-bg .home-contactUs-section a:hover, .home-contactUs-section .red-bg a:hover, .red-bg .home-pricing-section .price-box .download-btn a:hover, .home-pricing-section .price-box .download-btn .red-bg a:hover, .red-bg .home-services-section .col-lg-6:first-of-type .text-box a:hover, .home-services-section .col-lg-6:first-of-type .text-box .red-bg a:hover, .red-bg .home-text-section .container > a:hover, .home-text-section .red-bg .container > a:hover, .red-bg header ul li:last-of-type > a:hover, header ul .red-bg li:last-of-type > a:hover, .red-bg .btn-style:active, .red-bg .home-contactForm-section .inner-form .form a:active, .home-contactForm-section .inner-form .form .red-bg a:active, .red-bg .home-contactUs-section a:active, .home-contactUs-section .red-bg a:active, .red-bg .home-pricing-section .price-box .download-btn a:active, .home-pricing-section .price-box .download-btn .red-bg a:active, .red-bg .home-services-section .col-lg-6:first-of-type .text-box a:active, .home-services-section .col-lg-6:first-of-type .text-box .red-bg a:active, .red-bg .home-text-section .container > a:active, .home-text-section .red-bg .container > a:active, .red-bg header ul li:last-of-type > a:active, header ul .red-bg li:last-of-type > a:active, .red-bg .btn-style:focus, .red-bg .home-contactForm-section .inner-form .form a:focus, .home-contactForm-section .inner-form .form .red-bg a:focus, .red-bg .home-contactUs-section a:focus, .home-contactUs-section .red-bg a:focus, .red-bg .home-pricing-section .price-box .download-btn a:focus, .home-pricing-section .price-box .download-btn .red-bg a:focus, .red-bg .home-services-section .col-lg-6:first-of-type .text-box a:focus, .home-services-section .col-lg-6:first-of-type .text-box .red-bg a:focus, .red-bg .home-text-section .container > a:focus, .home-text-section .red-bg .container > a:focus, .red-bg header ul li:last-of-type > a:focus, header ul .red-bg li:last-of-type > a:focus {
  color: #e88a24;
}

section {
  padding: 20px 0;
}
@media screen and (max-width: 991px) {
  section {
    padding: 40px 0;
  }
}

.no-style-submit {
  border: none;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  padding: 14px 20px;
  width: 100%;
  text-indent: 0;
  z-index: 9999;
  font-weight: 500;
  transition: 0.5s;
}

.container > h2 {
  text-align: center;
  position: relative;
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .container > h2 {
    margin-bottom: 30px;
  }
}

.owl-dot:hover, .owl-dot:focus, .owl-dot:active, .owl-nav button:hover, .owl-nav button:focus, .owl-nav button:active {
  outline: none;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-list li {
  display: inline-block;
}

.owl-dots {
  display: none !important;
}

.owl-carousel .owl-nav {
  /*  .owl-prev {
      position: absolute;
      top: -41px;
      bottom: 0;
      left: -100px;
      margin: auto;
      &:before {
        content: "";
        //@extend .icon-left-arrow;
        position: absolute;
        top: 80px;
        bottom: 0;
        left: 80px;
        right: 0;
        margin: auto;
      }
    }
    .owl-next {
      position: absolute;
      top: -30px;
      bottom: 0;
      right: -25px;
      margin: auto;
      &:before {
        content: "";
        //@extend .icon-right-arrow;
        position: absolute;
        top: 80px;
        bottom: 0;
        left: -80px;
        right: 0;
        margin: auto;
      }
    }*/
}
.owl-carousel .owl-nav span {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .owl-carousel .owl-nav {
    display: none !important;
  }
}

img.float-left {
  margin-right: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  img.float-left {
    margin-right: 0;
    width: 100%;
  }
}

img.float-right {
  margin-left: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  img.float-right {
    margin-left: 0;
    width: 100%;
  }
}

.image-wrapper {
  overflow: hidden;
}
.image-wrapper img {
  transition: 0.5s;
}
.image-wrapper:hover img, .image-wrapper:focus img, .image-wrapper:active img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

#menu-btn {
  display: none;
}
@media screen and (max-width: 991px) {
  #menu-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 15px;
    height: 25px;
    width: 25px;
    background: url("../img/001-menu.svg") no-repeat;
    background-size: 100%;
    z-index: 9999;
  }
  #menu-btn.active {
    background: url("../img/002-cancel.svg") no-repeat;
    background-size: 100%;
    z-index: 99999;
    position: fixed;
    top: 20px;
    right: 20px;
    left: auto;
    margin: auto;
    height: 50px;
    width: 20px;
  }
}

#main-menu {
  display: block;
}
@media screen and (max-width: 991px) {
  #main-menu {
    display: none;
    background: #ffffff;
    margin-top: 0;
    position: fixed;
    height: 100%;
    text-align: center !important;
    z-index: 9999;
    padding: 20px 0;
    left: 0;
    width: 100%;
    top: 0;
    padding-top: 100px;
  }
  #main-menu ul {
    padding-left: 20px;
    /*    padding-top: 100px;
        top: 0;*/
    width: 100%;
  }
  #main-menu ul li {
    display: block;
    text-align: left;
  }
  #main-menu ul li a {
    display: block;
  }
  #main-menu.active {
    display: block;
  }
}

.captcha-image {
  border-color: #eeeeee !important;
  width: 100%;
}

.split2 {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
@media screen and (max-width: 767px) {
  .split2 {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}

.split3 {
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
}
@media screen and (max-width: 767px) {
  .split3 {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}

.gray-bg {
  background: #f9f9f9;
}

.text-black {
  color: #000000 !important;
}

[class^=icon-], [class^=svg-] {
  display: inline-block;
}

@media screen and (max-width: 991px) {
  [class^=svg-b] {
    display: none !important;
  }
}

.ekko-lightbox-nav-overlay {
  display: flex !important;
  z-index: 999999;
}

.error-404 {
  padding: 100px 0;
}

.coming-soon {
  padding: 100px 0;
}

.admin-bar header {
  top: 32px;
}

ul {
  padding-left: 0;
}

.standard-content {
  font-size: 16px;
  line-height: 24px;
}
.standard-content h3, .standard-content h4, .standard-content h5, .standard-content h6 {
  margin: 0 0 10px;
}
.standard-content h3 {
  font-weight: 700;
  margin: 35px 0 5px;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .standard-content h3 {
    font-size: 16px;
    line-height: 24px;
    margin: 25px 0 5px;
  }
}
.standard-content h4 {
  font-weight: 600;
  padding: 12px 0 5px;
  margin: 0;
}
.standard-content hr {
  margin: 0 0 15px;
  border-top: 1px solid #d6dfe8;
}
.standard-content p {
  font-size: 16px;
  margin: 0 0 20px;
}
.standard-content ol, .standard-content ul {
  font-size: 16px;
}
.standard-content ol.wrapped li, .standard-content ul.wrapped li {
  font-weight: 600;
  color: #2D2D2D;
  font-size: 16px;
}
.standard-content ol.wrapped li span, .standard-content ul.wrapped li span {
  font-weight: 400;
  color: #2D2D2D;
  display: inline-block;
  vertical-align: top;
}
.standard-content ol.wrapped li span {
  margin-left: 3px;
}
.standard-content ul {
  padding: 0;
  margin: 20px 0;
  padding-left: 20px;
  list-style: none;
  font-size: 16px;
}
.standard-content ul li {
  font-size: 16px;
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
.standard-content ul li ul {
  margin: 0;
  font-size: 16px;
}
.standard-content ul li:before {
  content: "";
  left: 0;
  top: 9px;
  background: #ffffff;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  border: 2px solid #e88a24;
  display: block;
  position: absolute;
  transition: 0.1s;
}
.standard-content ul li:hover {
  /*&:before {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 5px solid $blue;
    border-bottom: 5px solid transparent;
    border-radius: 0;
    border-right: 0;
  }*/
}
.standard-content ul.social-icons li {
  padding-left: 25px;
}
.standard-content ul.social-icons li:before {
  background: url("../img/sprite.png") no-repeat;
  left: 0;
  top: 9px;
  border-radius: 0;
  border: none;
}
.standard-content img {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
  margin: 20px 0;
}
.standard-content img.left, .standard-content img[style*="float: left;"], .standard-content img[style*="float:left;"] {
  width: auto;
  height: auto;
  float: left;
  margin: 7px 15px 10px 0;
}
@media screen and (max-width: 767px) {
  .standard-content img.left, .standard-content img[style*="float: left;"], .standard-content img[style*="float:left;"] {
    float: none !important;
    display: block;
    margin: 20px 0 20px 0;
  }
}
.standard-content img.right, .standard-content img[style*="float: right;"], .standard-content img[style*="float:right;"] {
  width: auto;
  height: auto;
  float: right;
  margin: 7px 0 10px 15px;
}
@media screen and (max-width: 767px) {
  .standard-content img.right, .standard-content img[style*="float: right;"], .standard-content img[style*="float:right;"] {
    float: none !important;
    display: block;
    margin: 20px 0 20px 0;
  }
}
.standard-content img.kv-play-icon {
  position: absolute;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  margin: auto !important;
}
.standard-content figure {
  margin: 0 0 10px;
}
.standard-content figure figcaption {
  text-align: center;
  font-style: italic;
  font-size: 12px;
}
.standard-content dl {
  margin: 0 0 10px;
  font-size: 16px;
}
.standard-content dl dd {
  padding: 0 0 0 10px;
  margin: 0 0 10px;
  font-size: 16px;
}
.standard-content meter {
  width: 100%;
  margin: 0 0 10px;
}
.standard-content progress {
  width: 100%;
  margin: 0 0 10px;
}
.standard-content details {
  margin: 0 0 10px;
}
.standard-content details summary {
  font-weight: bold;
}
.standard-content details p {
  margin-left: 15px;
}
.standard-content blockquote {
  margin: 0 0 30px;
}
.standard-content blockquote:before, .standard-content blockquote:after {
  font-size: 20px;
  content: '"';
}
.standard-content table {
  visibility: hidden;
}
.standard-content table.table {
  visibility: visible;
}
.standard-content .table-wrapper {
  width: 100%;
  overflow-y: auto;
  padding-bottom: 6px;
  margin: 25px 0 20px;
}
@media screen and (max-width: 767px) {
  .standard-content .table-wrapper {
    margin: 15px 0 15px;
  }
}
.standard-content .table-wrapper::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
}
.standard-content .table-wrapper::-webkit-scrollbar-thumb {
  border: 1px solid #eeeeee;
  background-color: #eeeeee;
}
.standard-content .table-wrapper table {
  visibility: visible;
  width: 100%;
  margin: 0;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .standard-content .table-wrapper table {
    width: 1200px;
    font-size: 17px;
  }
}
.standard-content .table-wrapper table caption {
  display: none;
}
.standard-content .table-wrapper table thead {
  background-color: #e88a24;
}
.standard-content .table-wrapper table thead tr th {
  color: #ffffff;
  line-height: 28px;
  font-weight: 600;
  border-bottom: 0;
  padding: 12px 15px;
  text-transform: uppercase;
  font-size: 16px;
}
.standard-content .table-wrapper table tbody tr td {
  padding: 15px 15px;
  font-weight: 500;
  font-size: 16px;
}
.standard-content .table-wrapper table tbody tr:last-of-type {
  border-bottom: 1px solid #eeeeee;
}
.standard-content iframe {
  display: block;
}
.standard-content .embed-responsive {
  margin-top: 25px;
  margin-bottom: 25px;
}
.standard-content .embed-responsive iframe {
  visibility: visible;
}
.standard-content .show-iframe iframe {
  visibility: visible;
  width: 100%;
  height: 530px;
}
@media screen and (max-width: 767px) {
  .standard-content .show-iframe iframe {
    height: 257px;
  }
}
.standard-content .show-iframe iframe[src*="/slideshows/"] {
  width: 100% !important;
  max-width: 100% !important;
  height: 530px !important;
  margin-top: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .standard-content .show-iframe iframe[src*="/slideshows/"] {
    height: 257px !important;
  }
}
.standard-content iframe.cke_wysiwyg_frame.cke_reset {
  visibility: visible;
}
.standard-content a.btn {
  margin: 0 10px 0 0;
}
@media screen and (max-width: 767px) {
  .standard-content a.btn {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
.standard-content a.btn-download span, .standard-content a.btn-download strong {
  display: inline-block;
  margin-right: 10px;
}
.standard-content #h5 {
  margin-top: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .standard-content #h5[style*=width] {
    width: 0 !important;
    height: 0 !important;
    overflow: hidden;
  }
}
.standard-content .centered-image img {
  left: auto !important;
  transform: none;
}

body.post-type-archive header, body.single-portfolios header {
  border-bottom: 2px solid #eeeeee;
}
body.woocommerce header {
  border-bottom: 2px solid #eeeeee;
}
body.home header .logo-dark {
  display: none;
}
body.home header .logo-white {
  display: block;
}
body.home header .search-div .pe-7s-search {
  color: #556575 !important;
}
body.home header .search-div .pe-7s-search:hover {
  color: red !important;
}
body.home header ul li {
  /*  &:nth-of-type(7) {
      a {
        .pe-7s-search {
          color: #556575;
        }
      }
    }*/
}
body.home header ul li:last-of-type a {
  border: 2px solid #e88a24;
  background: #e88a24;
}
body.home header ul li:last-of-type a:hover {
  background: transparent;
  color: #e88a24 !important;
}
body.home header ul li a {
  color: #556575 !important;
}
body.home.banner-header #navbar ul li a {
  color: #556575 !important;
}
body.home.banner-header #navbar ul li:last-of-type a {
  min-width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  text-align: left;
  color: #556575 !important;
}
body.home.banner-header #navbar ul li a:before {
  background-color: #e88a24;
}
body.search-form-open {
  position: relative;
  overflow: hidden;
}
body.post-type-archive-products .new-footer, body.tax-products-categories .new-footer, body.single-products .new-footer {
  display: block;
}
body.post-type-archive-products .copyright, body.tax-products-categories .copyright, body.single-products .copyright {
  display: none;
}

.search-main {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  margin: auto;
  text-align: center;
  bottom: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.search-main.search-form-open {
  display: block;
}
.search-main #cross-btn {
  height: 30px;
  width: 30px;
  background: url("../img/cross.svg") no-repeat;
  background-size: 100%;
  z-index: 999999;
  position: absolute;
  top: 30px;
  right: 70px;
  cursor: pointer;
}
.search-main .search-form {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.search-main label {
  width: 30%;
}
.search-main label input {
  background: transparent;
  color: #ffffff;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #ffffff;
  padding: 0 5px;
  font-size: 24px;
  line-height: 34px;
  height: 42px;
}
.search-main label input::-webkit-input-placeholder {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}
.search-main label input:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
}
.search-main label input::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
}
.search-main label input:-ms-input-placeholder {
  color: #ffffff;
}
.search-main label input:focus {
  outline: none;
}
.search-main .search-submit {
  height: 42px;
  padding: 10px 20px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-size: 20px;
  line-height: 10px;
}

header {
  padding: 15px 0;
  background: transparent;
  position: relative;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9999;
  /*.col-lg-2 {
    @media screen and (max-width: 991px) and (min-width: 768px) {
      text-align: center;
      margin-bottom: 20px;
    }
  }*/
}
@media screen and (max-width: 991px) {
  header {
    padding: 10px 0 15px;
  }
}
header.sticky {
  box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  transition: 0.5s;
}
header.sticky .search-div {
  position: relative;
}
header.sticky .search-div a .pe-7s-search {
  color: #556575 !important;
}
header.sticky .search-div a .pe-7s-search:hover {
  color: red !important;
}
header.sticky ul li {
  /* &:nth-of-type(7) {
     a {
       .pe-7s-search {
         color: #556575;
       }
     }
   }*/
}
header.sticky ul li:last-of-type a {
  border: 2px solid #e88a24;
  background: #e88a24;
}
header.sticky ul li:last-of-type a:hover {
  background: transparent;
  color: #e88a24 !important;
}
header.sticky ul li a {
  color: #556575;
}
header.sticky .logo-dark {
  display: block;
}
header.sticky .logo-white {
  display: none;
}
header.banner-header.sticky #navbar ul li:last-of-type a {
  color: #fff;
}
header.banner-header.sticky #navbar ul li a {
  color: #556575 !important;
}
header.banner-header.sticky #navbar ul li a:before {
  background-color: #e88a24;
}
header.banner-header #navbar ul li:last-of-type a {
  min-width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  text-align: left;
  color: #556575;
}
header.banner-header #navbar ul li a:before {
  background-color: #e88a24;
}
header.banner-header .btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 30px;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  header.banner-header .btn-wrapper {
    gap: 15px;
  }
}
header.banner-header .btn-wrapper ul.social li {
  display: inline-block;
}
header.banner-header .btn-wrapper ul.social li:not(:last-of-type) {
  margin: 0 25px 0 0;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  header.banner-header .btn-wrapper ul.social li:not(:last-of-type) {
    margin: 0 10px 0 0;
  }
}
header.banner-header .btn-wrapper ul.social li:last-of-type a {
  min-width: 20px;
  height: auto;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  text-align: left;
  color: #556575 !important;
}
header.banner-header .btn-wrapper ul.social li:last-of-type a:hover {
  background: transparent;
}
header.banner-header .btn-wrapper ul.social li a:before {
  background-color: #e88a24;
}
header.banner-header .btn-wrapper ul.social li a img {
  max-width: 20px;
}
header.banner-header .btn-wrapper a.btn-style, header.banner-header .btn-wrapper .home-contactForm-section .inner-form .form a, .home-contactForm-section .inner-form .form header.banner-header .btn-wrapper a, header.banner-header .btn-wrapper .home-contactUs-section a, .home-contactUs-section header.banner-header .btn-wrapper a, header.banner-header .btn-wrapper .home-pricing-section .price-box .download-btn a, .home-pricing-section .price-box .download-btn header.banner-header .btn-wrapper a, header.banner-header .btn-wrapper .home-services-section .col-lg-6:first-of-type .text-box a, .home-services-section .col-lg-6:first-of-type .text-box header.banner-header .btn-wrapper a, header.banner-header .btn-wrapper .home-text-section .container > a, .home-text-section header.banner-header .btn-wrapper .container > a, header.banner-header .btn-wrapper ul li:last-of-type > a, header.banner-header ul .btn-wrapper li:last-of-type > a {
  height: 45px;
  min-width: 100px;
  padding: 9px 15px 10px;
  background: transparent;
  color: #071e57;
}
header.banner-header .btn-wrapper a.btn-style:hover, header.banner-header .btn-wrapper .home-contactForm-section .inner-form .form a:hover, .home-contactForm-section .inner-form .form header.banner-header .btn-wrapper a:hover, header.banner-header .btn-wrapper .home-contactUs-section a:hover, .home-contactUs-section header.banner-header .btn-wrapper a:hover, header.banner-header .btn-wrapper .home-pricing-section .price-box .download-btn a:hover, .home-pricing-section .price-box .download-btn header.banner-header .btn-wrapper a:hover, header.banner-header .btn-wrapper .home-services-section .col-lg-6:first-of-type .text-box a:hover, .home-services-section .col-lg-6:first-of-type .text-box header.banner-header .btn-wrapper a:hover, header.banner-header .btn-wrapper .home-text-section .container > a:hover, .home-text-section header.banner-header .btn-wrapper .container > a:hover, header.banner-header .btn-wrapper ul li:last-of-type > a:hover, header.banner-header ul .btn-wrapper li:last-of-type > a:hover {
  background: #e88a24;
  color: #ffffff;
}
header.banner-header .logo-dark {
  display: none !important;
}
header.banner-header .logo-dark, header.banner-header .logo-white {
  display: inline-block;
  text-align: center;
}
@media screen and (max-width: 991px) {
  header.banner-header .logo-dark, header.banner-header .logo-white {
    text-align: left;
  }
}
header.banner-header .logo-dark img, header.banner-header .logo-white img {
  max-width: 150px;
  width: 150px;
}
@media screen and (max-width: 1199px) {
  header.banner-header .logo-dark img, header.banner-header .logo-white img {
    max-width: 100px;
    width: 100px;
  }
}
header #navbar {
  text-align: center;
}
header #navbar > div {
  display: inline-block;
}
header #navbar .search-div {
  position: relative;
}
header #navbar .search-div a i {
  position: absolute;
  top: -20px;
  left: 10px;
}
header #navbar .search-div a .pe-7s-search {
  content: "\e618";
  font-size: 30px;
  color: #ffffff;
  font-weight: 600;
}
header #navbar .search-div a .pe-7s-search:hover {
  color: red;
}
header ul {
  /*    margin: 19px 0;
      float: right;*/
  padding-left: 0;
  margin-bottom: 0;
}
header ul li {
  position: relative;
  display: inline-block;
  list-style-type: none;
  /*&:nth-of-type(7) {
    @media screen and (max-width: $screen-xs) {
      //display: none;
      padding: 22px 0 15px 15px;
    }
    @media screen and (max-width: 991px) and (min-width: 768px) {
      width: 10px;
      height: auto;
    }
    a {
      &:before {
        display: none;
      }
      i {
        position: absolute;
        top: -20px;
        left: -17px;
      }
      .pe-7s-search {
        content: "\e618";
        font-size: 30px;
        color: $white;
        //color: #556575;
        font-weight: 600;
        &:hover {
          color: red;
        }
      }
    }
  }*/
}
header ul li:not(:last-of-type) {
  margin-right: 32px;
}
@media screen and (max-width: 991px) {
  header ul li:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  header ul li:not(:last-of-type) {
    margin-right: 20px;
  }
}
header ul li:last-of-type > a {
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  header ul li:last-of-type > a {
    display: inline-block !important;
    border: 2px solid #e88a24;
    background: #e88a24;
    color: #ffffff;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  header ul li:last-of-type > a {
    padding: 15px 10px 18px;
    min-width: 130px;
  }
}
header ul li:last-of-type > a:hover {
  background: #e88a24;
  color: #e88a24 !important;
  border: 2px solid #e88a24;
}
header ul li a {
  position: relative;
  text-decoration: none;
  color: #556575;
  font-weight: 600;
  letter-spacing: 0.25px;
  font-size: 16px;
  line-height: 22px;
}
@media screen and (max-width: 991px) {
  header ul li a {
    color: #556575;
  }
}
header ul li a:before {
  background-color: #2ed47d;
  opacity: 0;
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  transition: all 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
header ul li a:hover {
  color: #e88a24;
}
header ul li a:hover:before {
  opacity: 1;
  left: 50%;
  margin-left: -4px;
  transition: all 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  header .col-lg-10 {
    text-align: center !important;
  }
}
header .logo-dark {
  display: none;
}
header .logo-white {
  display: block;
}
header .logo-white img {
  max-width: 166px;
}

.home-banner-section {
  background-image: url("../img/about-slider-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 100px;
  /*    transition: all ease-in .4s;
  &:hover {
    transform: translateY(-10px) !important;
    transition: all ease-out .4s;
  }*/
}
.home-banner-section h1 {
  margin-bottom: 40px;
}
.home-banner-section p {
  color: rgb(7, 30, 87);
  line-height: 35px;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .home-banner-section p {
    line-height: 24px;
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .home-banner-section p {
    line-height: 28px;
    font-size: 18px;
  }
}
@media screen and (max-width: 374px) and (min-width: 320px) {
  .home-banner-section a {
    padding: 15px 0 18px;
    min-width: 130px;
  }
}
@media screen and (max-width: 767px) and (min-width: 375px) {
  .home-banner-section a {
    padding: 15px 20px 18px;
    min-width: 150px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .home-banner-section a {
    padding: 15px 20px 18px;
    min-width: 150px;
  }
}
.home-banner-section a:not(:last-of-type) {
  margin-right: 20px;
  /* @media screen and (max-width: $screen-xs) {
     margin-right: 0;
     margin-bottom: 20px;
   }*/
}
.home-banner-section a:last-of-type {
  border: 2px solid #c2cbd3;
  color: #0077cc;
  background: transparent;
}
.home-banner-section a:last-of-type:hover {
  background: #c2cbd3;
  border: 2px solid #c2cbd3;
  color: #071e57 !important;
}
.home-banner-section .col-md-6:last-of-type {
  position: relative;
}
@media screen and (max-width: 767px) {
  .home-banner-section .col-md-6:last-of-type {
    margin-top: 40px;
  }
}

.home-text-section {
  padding: 50px 0 80px 0;
  background: url("../img/section2 bg.png");
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.home-text-section .container {
  text-align: center;
}
.home-text-section .container > p {
  max-width: 60%;
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .home-text-section .container > p {
    max-width: 100%;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .home-text-section .container > p {
    max-width: 100%;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .home-text-section .container > p {
    width: 100%;
  }
}
.home-text-section .container > h2 {
  margin-bottom: 20px;
}
.home-text-section .container > a {
  margin-right: 20px;
}

.home-card-section {
  padding: 20px 0;
  background: #f6f6f6;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .home-card-section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .home-card-section {
    padding: 40px 0;
  }
}
.home-card-section .col-lg-4 {
  margin-top: 30px;
}
.home-card-section .col-lg-4:first-of-type, .home-card-section .col-lg-4:nth-of-type(2), .home-card-section .col-lg-4:nth-of-type(3) {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .home-card-section .col-lg-4:not(:last-of-type) {
    margin-bottom: 30px;
    margin-top: 0;
  }
}
.home-card-section .inner-card {
  padding: 50px 15px 70px;
  text-align: center;
  /*width: 370px;
  height: 440px;*/
  border-bottom: 4px solid #e88a24;
  background: #ffffff;
  transition: all ease-in 0.2s;
  border-radius: 0;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .home-card-section .inner-card {
    padding: 40px 25px 65px;
  }
}
.home-card-section .inner-card:hover {
  transition: all ease-out 0.2s;
  overflow: hidden;
  box-shadow: 0 5px 15px 0 rgb(166, 166, 166);
}
.home-card-section .inner-card img {
  width: 60px;
  height: 60px;
}
.home-card-section .inner-card h3 {
  margin: 15px 0;
  font-size: 18px;
}
.home-card-section .inner-card p:not(:last-of-type) {
  margin-bottom: 35px;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .home-card-section .inner-card p:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
.home-card-section .inner-card p:last-of-type {
  margin-bottom: 0;
}
.home-card-section a {
  color: #e88a24;
  text-decoration: none;
  font-weight: 700;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 25px;
  display: inline-block;
}
.home-card-section a:hover:after {
  transition: all ease 0.3s;
  right: 131px;
}
@media screen and (max-width: 767px) {
  .home-card-section a:hover:after {
    right: 87px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .home-card-section a:hover:after {
    right: 41px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .home-card-section a:hover:after {
    right: 72px;
  }
}
@media screen and (max-width: 1599px) and (min-width: 1200px) {
  .home-card-section a:hover:after {
    right: 105px;
  }
}
.home-card-section a:after {
  content: "";
  border: solid #e88a24;
  border-width: 0 2px 2px 0;
  transform: rotate(316deg);
  padding: 3px;
  position: absolute;
  top: 13px;
  right: 135px;
  transition: all ease 0.3s;
}
@media screen and (max-width: 767px) {
  .home-card-section a:after {
    top: 11px;
    right: 90px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .home-card-section a:after {
    right: 44px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .home-card-section a:after {
    top: 15px;
    right: 75px;
  }
}
@media screen and (max-width: 1599px) and (min-width: 1200px) {
  .home-card-section a:after {
    top: 14px;
    right: 108px;
  }
}

.home-services-section {
  padding: 20px 0;
  /* &:hover {
     img {
       transform: translateY(-10px) !important;
       overflow: hidden;
       transition: all ease-out .4s;
     }
   }*/
}
@media screen and (max-width: 767px) {
  .home-services-section {
    padding: 40px 0;
  }
}
.home-services-section .col-lg-6:first-of-type {
  align-self: center;
}
.home-services-section .col-lg-6:first-of-type .text-box {
  max-width: 84%;
  /*span {
    font-size: 20px;
    color: $red;
  }*/
}
@media screen and (max-width: 767px) {
  .home-services-section .col-lg-6:first-of-type .text-box {
    max-width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .home-services-section .col-lg-6:first-of-type .text-box {
    max-width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .home-services-section .col-lg-6:first-of-type .text-box {
    max-width: 100%;
  }
}
.home-services-section .col-lg-6:first-of-type .text-box h2 {
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .home-services-section .col-lg-6:first-of-type .text-box h2 {
    margin: 10px 0;
  }
}
.home-services-section .col-lg-6:first-of-type .text-box p {
  margin-bottom: 12px;
  font-style: italic;
}
.home-services-section .col-lg-6:first-of-type .text-box b {
  margin-bottom: 42px;
}
.home-services-section .col-lg-6:first-of-type .text-box .discover-btn {
  margin-top: 42px;
}
@media screen and (max-width: 767px) {
  .home-services-section .col-lg-6:first-of-type .text-box .discover-btn {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .home-services-section .col-lg-6:last-of-type .service-img {
    display: none;
  }
}
.home-services-section .col-lg-6:last-of-type .service-img img {
  position: relative;
  width: 100%;
  transition: all ease-in 0.4s;
  transform: translateY(0);
  animation: MoveImg 4s linear infinite;
}

@keyframes MoveImg {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.home-accordion-section {
  background-image: url("/img/accordian bg.png");
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 0 0 100px 0;
}
@media screen and (max-width: 767px) {
  .home-accordion-section {
    padding: 0 0 100px;
  }
}
.home-accordion-section .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}
.home-accordion-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='red' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}
.home-accordion-section .accordion-button {
  padding: 25px 20px;
  color: #071e57;
  font-weight: 600;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .home-accordion-section .accordion-button {
    padding: 15px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .home-accordion-section .accordion-button {
    padding: 15px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .home-accordion-section .accordion-button {
    padding: 15px;
  }
}
.home-accordion-section .accordion-button:hover {
  color: red;
}
.home-accordion-section .accordion-button:focus {
  box-shadow: none !important;
}
.home-accordion-section .accordion-button:not(.collapsed) {
  color: #ffffff;
  font-weight: 600;
  background: red;
  font-size: 20px;
  border: none;
}
.home-accordion-section:hover img {
  transform: translateX(-10px) !important;
  overflow: hidden;
  transition: all ease-out 0.4s;
}
@media screen and (max-width: 767px) {
  .home-accordion-section:hover img {
    transform: unset !important;
  }
}
.home-accordion-section img {
  border-radius: 6px;
  transition: all ease-in-out 0.4s;
}
@media screen and (max-width: 767px) {
  .home-accordion-section img {
    margin-bottom: 30px;
  }
}

.home-portfolio-section {
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .home-portfolio-section {
    padding: 40px 0;
  }
}
.home-portfolio-section .testimonials {
  display: block !important;
}
.home-portfolio-section .container > h2 {
  margin: 20px 0 12px;
}
.home-portfolio-section .container > .tag-line {
  text-align: center;
  margin-bottom: 20px;
}
.home-portfolio-section .container > p {
  text-align: center;
  max-width: 66%;
  margin: 0 auto 70px;
}
@media screen and (max-width: 767px) {
  .home-portfolio-section .container > p {
    margin: 0 auto 40px;
    max-width: 100%;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .home-portfolio-section .container > p {
    margin: 0 auto 50px;
    max-width: 100%;
  }
}
.home-portfolio-section .owl-carousel .owl-stage {
  display: flex;
}
.home-portfolio-section .owl-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
  padding: 6px 0;
}
.home-portfolio-section .owl-carousel .owl-dots {
  display: block !important;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .home-portfolio-section .owl-carousel .owl-dots {
    margin-top: 40px;
  }
}
.home-portfolio-section .owl-carousel .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ed47d;
  opacity: 0.5;
}
.home-portfolio-section .owl-carousel .owl-dots .owl-dot:not(:last-of-type) {
  margin-right: 10px;
}
.home-portfolio-section .owl-carousel .owl-dots .owl-dot.active {
  width: 12px;
  height: 12px;
  opacity: 1;
}
.home-portfolio-section .item {
  gap: 10px;
  display: flex;
  width: calc(100% - 10px);
  margin: auto;
}
.home-portfolio-section .item .img-div {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
  display: block;
  padding: 20px;
  text-decoration: none;
  width: 100%;
}
.home-portfolio-section .item .img-div .front-feature {
  display: block;
}
.home-portfolio-section .item .img-div .back-feature {
  display: none;
}
.home-portfolio-section .item .img-div:before {
  background: red;
  width: 100%;
  height: 30px;
  bottom: 0;
  border-radius: 0;
  position: absolute;
  left: 0;
  opacity: 1;
  transform: scale(0.95);
  transition: transform ease 0.35s, opacity ease 0.35s;
}
.home-portfolio-section .item .img-div p {
  text-decoration: none;
  font-weight: 700;
  line-height: 1.4;
  opacity: 1;
  font-size: 16px;
  padding: 0;
  margin: 20px 0 0;
  color: #071e57;
  width: 100%;
  text-align: center;
  z-index: 2;
  transition-duration: 0.35s;
  transition-property: opacity, padding, margin;
}
.home-portfolio-section .item .img-div p:after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  margin-left: -20px;
  background-color: #fff;
  transition-delay: 0.05s;
  transition-duration: 0.4s;
  transition-property: width, margin;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.home-portfolio-section .item .img-div img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.home-pricing-section {
  padding: 120px 0;
  background-image: url("../img/pricing bg.png");
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: top;
  /*.logo{
    padding: 40px 0;
    display: flex;
    a{
      img{
        width: 190px;
        height: 114px;
        transition: all ease 0.3s;
        &:hover{
          width: 200px;
          height: 124px;
          transition: all ease 0.3s;
          overflow: hidden;
        }
      }
    }
  }*/
}
@media screen and (max-width: 767px) {
  .home-pricing-section {
    padding: 0 0 100px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .home-pricing-section {
    padding: 50px 0 80px;
  }
}
.home-pricing-section .container > h2 {
  text-align: center;
}
.home-pricing-section .container > p {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .home-pricing-section .col-md-4:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.home-pricing-section .col-md-4:nth-of-type(2) .price-box {
  box-shadow: 0 5px 15px 0 rgb(166, 166, 166);
}
.home-pricing-section .price-box {
  background: #ffffff;
  border-radius: 6px;
  transition: all ease-in 0.2s;
  padding: 48px 40px 130px;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .home-pricing-section .price-box {
    padding: 40px 15px 130px;
  }
}
.home-pricing-section .price-box:hover {
  transform: translateY(-5px) !important;
  overflow: hidden;
  transition: all ease-out 0.2s;
  box-shadow: 0 5px 15px 0 rgb(166, 166, 166);
}
.home-pricing-section .price-box h5 {
  color: red;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .home-pricing-section .price-box p {
    font-size: 14px;
    line-height: 24px;
  }
}
.home-pricing-section .price-box h1 {
  color: #071e57;
  font-size: 90px;
  line-height: 90px;
  text-align: center;
  margin: 30px 0;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .home-pricing-section .price-box h1 {
    font-size: 45px;
    line-height: 55px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .home-pricing-section .price-box h1 {
    font-size: 50px;
    line-height: 60px;
  }
}
.home-pricing-section .price-box h1 sup {
  font-size: 40px;
  line-height: 46px;
  vertical-align: revert;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .home-pricing-section .price-box h1 sup {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .home-pricing-section .price-box h1 sup {
    font-size: 25px;
    line-height: 35px;
  }
}
.home-pricing-section .price-box ul {
  list-style-type: none;
  margin-bottom: 20px;
}
.home-pricing-section .price-box ul li {
  position: relative;
  color: #748494;
  font-style: normal;
  font-size: 18px;
  font-weight: 500;
  line-height: 29px;
  padding: 7px 0;
}
.home-pricing-section .price-box ul li:before {
  color: #f63440;
  content: "";
  display: block;
  transform: rotate(45deg);
  height: 14px;
  width: 8px;
  border-bottom: 4px solid #f63440;
  border-right: 4px solid #f63440;
  position: absolute;
  left: -27px;
  top: 15px;
}
.home-pricing-section .price-box .download-btn {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 40px;
}
.home-contactUs-section {
  padding: 100px 0;
  background-image: url("../img/contact us.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}
.home-contactUs-section h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 42px;
}
@media screen and (max-width: 767px) {
  .home-contactUs-section h2 br {
    display: none;
  }
}
.home-contactUs-section a {
  background: #2ed47d;
  border: 2px solid #2ed47d;
}
.home-contactUs-section a:hover {
  color: #2ed47d;
  background: transparent;
}

.home-blog-section {
  padding: 20px 0;
  position: relative;
  /* .item {
     &:not(:last-of-type) {
       margin-bottom: 40px;
     }
   }*/
}
.home-blog-section:after {
  content: "";
  background: #e7e7e7;
  width: 90%;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.home-blog-section strong {
  margin-bottom: 20px;
}
.home-blog-section h2 {
  text-align: left;
  margin-bottom: 50px;
  font-weight: 700;
}
.home-blog-section .item {
  padding: 3px 5px;
}
.home-blog-section .blog-img {
  height: 100%;
  text-align: center;
}
.home-blog-section .blog-img .img-div {
  overflow: hidden;
  border-radius: 10px;
  margin: 0 0 35px;
}
.home-blog-section .blog-img .img-div img {
  transition: transform ease 0.3s;
  height: 300px;
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}
.home-blog-section .blog-img .img-div img:hover {
  transform: scale(1.2);
  transition: transform ease 0.3s;
  overflow: hidden;
}
.home-blog-section .blog-categories {
  margin: 16px 0 4px;
}
.home-blog-section .blog-categories p {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 0;
  color: #e88a24;
}
.home-blog-section .blog-title {
  margin: 5px 0 12px;
}
.home-blog-section .blog-title a {
  font-size: 22px;
  color: #071e57;
  text-decoration: none;
  font-weight: 700;
}
.home-blog-section .gravatar {
  color: #748494;
  font-size: 12px;
  margin-top: 10px;
  font-weight: 700;
}
.home-blog-section .gravatar img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  margin-right: 10px;
}
.home-blog-section .gravatar a {
  color: #e88a24;
  font-weight: 700;
}
.home-blog-section .gravatar a:hover {
  color: #071e57;
}
.home-blog-section .learn-more {
  text-align: center;
  margin: 20px 0;
  /*   a {
       padding: 13px 35px;
       border: 1px solid $red;
       border-radius: 3px;
       color: $red;
       font-weight: 700;
       text-decoration: none;
       &:hover {
         background: rgba(0, 0, 0, 0.2);
         border: 1px solid rgba(0, 0, 0, 0.2);
       }
     }*/
}
@media screen and (max-width: 991px) {
  .home-blog-section .learn-more {
    margin-top: 30px;
  }
}
.home-blog-section .filter-list {
  padding-left: 0;
  margin: 40px 0;
  list-style-type: none;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .home-blog-section .filter-list {
    text-align: left;
  }
}
.home-blog-section .filter-list li {
  display: inline-block;
}
.home-blog-section .filter-list li:not(:last-of-type) {
  margin-right: 25px;
}
@media screen and (max-width: 767px) {
  .home-blog-section .filter-list li:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.home-blog-section .filter-list li a {
  text-decoration: none;
  color: #071e57;
  font-weight: 700;
  position: relative;
}
.home-blog-section .filter-list li a:before {
  background-color: #e88a24;
  opacity: 0;
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  transition: all 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.home-blog-section .filter-list li a:hover {
  color: #e88a24;
}
.home-blog-section .filter-list li a:hover:before {
  opacity: 1;
  left: 50%;
  margin-left: -4px;
  transition: all 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@media screen and (max-width: 767px) {
  .home-blog-section .filter-list li {
    display: block;
  }
}

.home-newsletter-section {
  padding: 80px 0;
  text-align: center;
}

.home-contactForm-section {
  padding: 80px 0;
  background-image: url("../img/contact form.jpg");
}
.home-contactForm-section .contact-detail {
  max-width: 87%;
}
.home-contactForm-section .contact-detail strong {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}
.home-contactForm-section .contact-detail h2 {
  color: #ffffff;
  margin-top: 30px;
}
.home-contactForm-section .contact-detail p {
  color: #cacaca;
}
.home-contactForm-section .contact-detail .icons {
  margin: 50px 0;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .home-contactForm-section .contact-detail .icons {
    margin: 0;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .home-contactForm-section .contact-detail .icons {
    margin: 0;
  }
}
.home-contactForm-section .contact-detail .icons i {
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 54px;
  height: 54px;
}
.home-contactForm-section .contact-detail .icons i:before {
  font-size: 54px;
  color: #ffffff;
}
.home-contactForm-section .contact-detail .icons > div {
  position: relative;
  padding: 30px 0;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .home-contactForm-section .contact-detail .icons > div {
    padding: 15px 0;
  }
}
.home-contactForm-section .contact-detail .icons > div:not(:last-of-type) {
  border-bottom: 1px solid #748494;
}
.home-contactForm-section .contact-detail .icons > div h5 {
  color: #ffffff;
  font-size: 22px;
  line-height: 32px;
}
.home-contactForm-section .contact-detail .icons > div p, .home-contactForm-section .contact-detail .icons > div address {
  color: #cacaca;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 22px;
}
.home-contactForm-section .contact-detail .icons > div a {
  color: #cacaca;
  text-decoration: none;
  font-size: 16px;
  line-height: 22px;
}
.home-contactForm-section .contact-detail .text {
  margin-left: 75px;
}
.home-contactForm-section .inner-form {
  padding: 60px 80px 70px;
  text-align: center;
  background: #ffffff;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .home-contactForm-section .inner-form {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .home-contactForm-section .inner-form {
    padding: 30px 15px 40px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .home-contactForm-section .inner-form {
    padding: 60px 30px 70px;
  }
}
.home-contactForm-section .inner-form.inquiry-form {
  max-width: 900px;
  margin: auto;
  padding-top: 0 !important;
  text-align: left !important;
}
.home-contactForm-section .inner-form.inquiry-form > p {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 24px;
}
.home-contactForm-section .inner-form.inquiry-form .form .form-group {
  text-align: left !important;
}
.home-contactForm-section .inner-form.inquiry-form .form .form-group label {
  font-size: 13px;
  font-weight: 700;
  line-height: 13px;
  display: inline-block;
  margin-bottom: 0;
}
.home-contactForm-section .inner-form.inquiry-form .form .form-group p {
  margin-bottom: 0 !important;
}
.home-contactForm-section .inner-form.inquiry-form .form .form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 8px;
  border-radius: 2px;
}
.home-contactForm-section .inner-form.inquiry-form .form .form-group .wpcf7-checkbox {
  display: block;
  margin: 10px 0 0;
}
.home-contactForm-section .inner-form.inquiry-form .form .form-group .wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin: 0 0 2px;
}
.home-contactForm-section .inner-form.inquiry-form .form .form-group .form-control {
  font-size: 11px;
  line-height: 15px;
  margin: 5px 0 0;
}
.home-contactForm-section .inner-form.inquiry-form .form .form-group .form-control::placeholder {
  font-size: 11px;
  line-height: 15px;
}
.home-contactForm-section .inner-form.inquiry-form .form .form-group .checkbox {
  text-align: left;
}
.home-contactForm-section .inner-form.inquiry-form .form .form-group textarea {
  margin-bottom: 0 !important;
}
.home-contactForm-section .inner-form h2 {
  margin-bottom: 25px;
}
.home-contactForm-section .inner-form p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 40px;
}
.home-contactForm-section .inner-form .form .form-control {
  color: #748494;
  background-color: #f8f8f8;
  padding: 12px 20px;
  border-radius: 3px;
  height: 42px;
  border: 1px solid #748494;
  font-size: 15px;
}
.home-contactForm-section .inner-form .form .form-control::-webkit-input-placeholder {
  color: #748494;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}
.home-contactForm-section .inner-form .form .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #748494;
}
.home-contactForm-section .inner-form .form .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #748494;
}
.home-contactForm-section .inner-form .form .form-control:-ms-input-placeholder {
  color: #748494;
}
.home-contactForm-section .inner-form .form textarea {
  color: #748494;
  background-color: #f8f8f8;
  padding: 12px 20px;
  border-radius: 3px;
  border: 1px solid #f8f8f8;
  font-size: 15px;
  text-shadow: none;
  box-shadow: none;
  box-sizing: border-box;
  transition: all ease 0.3s;
  height: 220px;
  margin-bottom: 56px;
}
.home-contactForm-section.contact-page {
  background-image: unset;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .home-contactForm-section.contact-page {
    padding: 60px 0;
  }
}
.home-contactForm-section.contact-page .col-md-6:first-of-type * {
  color: #000000 !important;
}
.home-contactForm-section.contact-page .col-md-6:first-of-type i:before {
  color: #000000;
}

.copyright {
  display: block;
  background: #1d2b37;
  position: relative;
  padding: 15px;
}
.copyright:before {
  content: "";
  background: #405261;
  width: 90%;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.copyright p {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.banner-section {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0;
}
@media screen and (max-width: 767px) {
  .banner-section {
    padding: 80px 0 90px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .banner-section {
    padding: 100px 0;
  }
}
.banner-section.contact-section {
  padding: 150px 0 100px;
}
.banner-section.contact-section h1 {
  margin-bottom: 0 !important;
}
.banner-section h1 {
  color: #ffffff;
  margin-bottom: 50px;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .banner-section h1 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .banner-section h1 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .banner-section h1 {
    margin-bottom: 15px;
  }
}
.banner-section ol {
  display: block;
  flex-wrap: unset;
  padding: 0 0;
  margin-bottom: 0;
  list-style: none;
  width: 100%;
}
.banner-section ol li {
  display: inline-block;
  position: relative;
}
.banner-section ol li.active a {
  color: #ffffff;
}
.banner-section ol li:not(:last-of-type) {
  margin-right: 25px;
}
.banner-section ol li:not(:last-of-type):before {
  background-color: #2ed47d;
  content: "";
  position: absolute;
  top: 5px;
  bottom: 0;
  margin: auto;
  right: -19px;
  width: 8px;
  height: 8px;
  border-radius: 4px;
}
.banner-section ol li a {
  color: #cacaca;
  text-decoration: none;
}
.banner-section.portfolios {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding: 50px 0 50px;
  background-color: #f6f6f6;
}
.banner-section.portfolios h1 {
  position: relative;
  margin: 0;
  color: #000000;
  font-size: 20px;
  line-height: 30px;
}

.tag-line {
  font-size: 20px;
  line-height: 30px;
  color: #e88a24;
  display: block;
}

.about-page {
  padding: 20px 0 20px;
}
.about-page .col-md-6 h2 {
  font-size: 25px;
  line-height: 35px;
}
.about-page .col-md-6:first-of-type .tag-line {
  margin-bottom: 20px;
}
.about-page .col-md-6:first-of-type h2 {
  color: #071e57;
  margin-bottom: 15px;
}
.about-page .col-md-6:first-of-type .project {
  margin-top: 50px;
}
.about-page .col-md-6:first-of-type .project .counter {
  padding-bottom: 10px;
  border-bottom: 1px solid #071e57;
  margin-bottom: 25px;
}
.about-page .col-md-6:first-of-type .project .counter strong {
  font-size: 30px;
  line-height: 40px;
  display: block;
  margin-bottom: 15px;
  color: #e88a24;
}
.about-page .col-md-6:first-of-type .project .counter h3 {
  font-size: 18px;
  line-height: 28px;
  color: #071e57;
  margin-bottom: 15px;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .about-page .col-md-6:last-of-type {
    align-self: center;
  }
}
.about-page .col-md-6:last-of-type .img-div {
  position: relative;
}
.about-page .col-md-6:last-of-type .img-div .play {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 80px;
  width: 80px;
  background: #e88a24;
  border-radius: 50px;
}
.about-page .col-md-6:last-of-type .img-div .play:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-left: 25px solid #ffffff;
  border-bottom: 15px solid transparent;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 8px;
  right: 0;
}
.about-page .col-md-6:last-of-type .img-div .play:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 0;
  margin: auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-left: -50px;
  border: 2px solid #e88a24;
  animation: MoveCircle 4s linear infinite;
}
@keyframes MoveCircle {
  0%, 100% {
    width: 100px;
    height: 100px;
    margin-left: -50px;
  }
  50% {
    width: 120px;
    height: 120px;
    margin-left: -60px;
  }
  50% {
    width: 140px;
    height: 140px;
    margin-left: -70px;
  }
}
@media (min-width: 576px) {
  .about-page .modal .modal-dialog {
    max-width: 750px;
  }
}
.about-page .modal .btn-close {
  position: absolute;
  right: 0;
  top: -27px;
  background-color: #ffffff;
  padding: 5px;
}
.about-page .modal .modal-body {
  padding: 0;
  margin: 0;
  font-size: 0;
  height: 500px;
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .about-page .modal .modal-body {
    height: 432px;
  }
}
@media screen and (max-width: 767px) {
  .about-page .modal .modal-body {
    height: 222px;
  }
}
.about-page .modal iframe {
  width: 100%;
  height: 100%;
}

.match-section {
  padding: 20px 0 20px;
  background: #f8faff;
}
@media screen and (max-width: 767px) {
  .match-section {
    padding: 40px 0;
  }
}
.match-section .container > h2 {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .match-section .container > h2 > br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .match-section .container .col-md-4:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.match-section .container .col-md-4 .content {
  position: relative;
  text-align: center;
  background-color: #ffffff;
  padding: 40px 25px 40px;
  border-radius: 5px;
  box-shadow: 0 20px 70px 0 rgba(0, 0, 0, 0.05);
  height: 100%;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .match-section .container .col-md-4 .content {
    padding: 40px 15px 40px;
  }
}
.match-section .container .col-md-4 .content .img-div {
  margin-bottom: 20px;
}
.match-section .container .col-md-4 .content strong {
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #071e57;
  margin-bottom: 30px;
}
.match-section .container .col-md-4 .content a {
  text-decoration: none;
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  margin: auto;
  color: #e88a24;
  font-weight: 700;
}

.about-services-section {
  padding: 20px 0;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .about-services-section .col-md-6:first-of-type {
    align-self: center;
  }
}
@media screen and (max-width: 767px) {
  .about-services-section .col-md-6:last-of-type {
    margin-top: 40px;
  }
}
.about-services-section .col-md-6:last-of-type .tag-line {
  font-size: 20px;
  line-height: 30px;
  color: #e88a24;
  display: block;
  margin-bottom: 20px;
}
.about-services-section .col-md-6:last-of-type h2 {
  color: #071e57;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .about-services-section .col-md-6:last-of-type h2 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .about-services-section .col-md-6:last-of-type p {
    margin: 0 0 10px;
  }
}
.about-services-section .col-md-6:last-of-type ul {
  margin: 40px 0 50px;
}
@media screen and (max-width: 767px) {
  .about-services-section .col-md-6:last-of-type ul {
    margin: 20px 0 30px 40px;
  }
}
.about-services-section .col-md-6:last-of-type ul li {
  position: relative;
  list-style-type: none;
  color: #748494;
}
.about-services-section .col-md-6:last-of-type ul li:not(:last-of-type) {
  margin-bottom: 20px;
}
.about-services-section .col-md-6:last-of-type ul li:before {
  content: url("../img/check-mark.png");
  position: absolute;
  transform: scale(0.03);
  top: 0;
  left: -40px;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 374px) and (min-width: 320px) {
  .about-services-section .col-md-6:last-of-type .btn-div a {
    padding: 15px 0 18px;
    min-width: 130px;
  }
}
@media screen and (max-width: 767px) and (min-width: 375px) {
  .about-services-section .col-md-6:last-of-type .btn-div a {
    padding: 15px 15px 18px;
    min-width: 150px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .about-services-section .col-md-6:last-of-type .btn-div a {
    margin-right: 5px;
    padding: 15px 0 18px;
    min-width: 140px;
  }
}
.about-services-section .col-md-6:last-of-type .btn-div a:not(:last-of-type) {
  margin-right: 20px;
}

.outstanding-section {
  padding: 20px 0;
  background: #f8faff;
}
.outstanding-section .container > h2 {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .outstanding-section .container > h2 {
    margin-bottom: 40px;
  }
}
.outstanding-section .col-md-3 {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .outstanding-section .col-md-3:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.outstanding-section .col-md-3 strong {
  display: block;
  font-size: 40px;
  line-height: 50px;
  color: #2ed47d;
  margin-bottom: 20px;
}

.slider {
  padding: 20px 0;
}
@media screen and (max-width: 991px) {
  .slider {
    padding: 0 0 30px;
  }
}
.slider .owl-stage-outer {
  padding: 0 0 35px;
}
.slider .owl-stage {
  display: flex;
}
.slider .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.slider .container > h2 {
  margin-bottom: 80px;
}
.slider .container .item .content {
  padding: 20px 25px 30px;
  position: relative;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #cfcfcf;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .slider .container .item .content {
    padding: 40px 15px 40px;
  }
}
.slider .container .item .content:before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  width: 50px;
  height: 50px;
  margin: auto;
  background: url("../img/quote.png") no-repeat center center;
  background-size: 50px 50px;
}
.slider .container .item .content .text {
  margin-bottom: 20px;
}
.slider .container .item .content .text > div {
  display: inline-block;
}
.slider .container .item .content .text .img-div {
  width: 17%;
}
@media screen and (max-width: 767px) {
  .slider .container .item .content .text .img-div {
    width: 16%;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .slider .container .item .content .text .img-div {
    width: 16%;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .slider .container .item .content .text .img-div {
    width: 16%;
  }
}
.slider .container .item .content .text .name {
  width: 82%;
  position: relative;
  top: 20px;
}
.slider .container .item .content .text img {
  display: unset;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .slider .container .item .content .text img {
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .slider .container .item .content .text img {
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .slider .container .item .content .text img {
    width: auto;
    height: auto;
  }
}
.slider .container .item .content .text h3 {
  font-size: 20px;
  line-height: 30px;
}
.slider .container .item .content .text strong {
  font-size: 16px;
  line-height: 22px;
  color: #7d7d7d;
}
.slider .container .item .content .content-wrapper {
  max-height: 165px;
  overflow: auto;
}
.slider .container .item .content .content-wrapper::-webkit-scrollbar {
  background-color: #fff;
  width: 12px;
}
.slider .container .item .content .content-wrapper::-webkit-scrollbar-track {
  background-color: #fff;
}
.slider .container .item .content .content-wrapper::-webkit-scrollbar-thumb {
  background-color: #e88a24;
  border-radius: 16px;
  border: 4px solid #fff;
}
.slider .container .item .content .content-wrapper::-webkit-scrollbar-button {
  display: none;
}
.slider .container .owl-nav {
  display: none !important;
}
.slider .container .owl-dots {
  display: block !important;
  text-align: center;
}
.slider .container .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ed47d;
  opacity: 0.5;
}
.slider .container .owl-dots .owl-dot:not(:last-of-type) {
  margin-right: 10px;
}
.slider .container .owl-dots .owl-dot.active {
  width: 12px;
  height: 12px;
  opacity: 1;
}

.service-page {
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .service-page {
    text-align: center;
  }
}
.service-page .col-xl-5 .tag-line {
  margin-bottom: 10px;
}
@media screen and (max-width: 1199px) {
  .service-page .col-xl-5 .tag-line {
    text-align: center;
  }
}
.service-page .col-xl-5 h2 {
  margin-bottom: 25px;
}
@media screen and (max-width: 1199px) {
  .service-page .col-xl-5 h2 {
    text-align: center;
  }
}
.service-page .col-xl-5 p {
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  .service-page .col-xl-5 p {
    margin-bottom: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .service-page .col-xl-7 {
    margin-top: 40px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .service-page .col-xl-7 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .service-page .col-xl-7 {
    margin-top: 50px;
  }
}
.service-page .col-xl-7 .row > .col-md-6 {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .service-page .col-xl-7 .row > .col-md-6 {
    margin-top: 0;
  }
  .service-page .col-xl-7 .row > .col-md-6:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
.service-page .col-xl-7 .row > .col-md-6:nth-of-type(1), .service-page .col-xl-7 .row > .col-md-6:nth-of-type(2) {
  margin-top: 0;
}
.service-page .col-xl-7 .col-md-4 {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service-page .col-xl-7 .col-md-4 {
    margin-bottom: 25px;
  }
}
.service-page .col-xl-7 .col-md-4 .icon {
  position: relative;
  width: 98px;
  height: auto;
  border: 1px solid #e88a24;
  border-radius: 50%;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .service-page .col-xl-7 .col-md-4 .icon {
    width: 85px;
    margin: auto;
  }
}
@media screen and (max-width: 1365px) and (min-width: 1200px) {
  .service-page .col-xl-7 .col-md-4 .icon {
    width: 80px;
  }
}
.service-page .col-xl-7 .col-md-4 .icon:hover {
  background-color: #071e57;
  border: 1px solid #071e57;
}
.service-page .col-xl-7 .col-md-4 .icon:hover i {
  color: #ffffff;
}
.service-page .col-xl-7 .col-md-4 i {
  font-size: 50px;
  color: #e88a24;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .service-page .col-xl-7 .col-md-4 i {
    font-size: 40px;
  }
}
@media screen and (max-width: 1365px) and (min-width: 1200px) {
  .service-page .col-xl-7 .col-md-4 i {
    font-size: 40px;
  }
}
.service-page .col-xl-7 .col-md-8 h3 {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 20px;
}
.service-page .col-xl-7 .col-md-8 p {
  font-size: 18px;
  line-height: 24px;
}

.services-about {
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .services-about {
    text-align: center;
  }
}
.services-about .tag-line {
  margin-bottom: 30px;
}
.services-about h2 {
  margin-bottom: 25px;
}
.services-about p {
  margin-bottom: 40px;
}

.work-section {
  padding: 40px 0;
  background-image: url("../img/work-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
.work-section h2 {
  color: #ffffff;
  margin-bottom: 30px;
  font-size: 50px;
  line-height: 60px;
}

.our-services {
  padding: 30px 0;
}
.our-services .tag-line {
  margin-bottom: 30px;
}
.our-services h2 {
  margin-bottom: 25px;
}
.our-services .progress-wrapper .bar p {
  margin-bottom: 10px;
}
.our-services .progress-wrapper .bar:not(:last-of-type) {
  margin-bottom: 30px;
}
.our-services .progress-wrapper .bar:first-of-type .progress {
  background: linear-gradient(to right, rgb(1, 139, 190) 0%, rgba(1, 139, 190, 0.3) 100%);
}
.our-services .progress-wrapper .bar:first-of-type .percentage {
  background: linear-gradient(to right, rgb(1, 139, 190) 0%, rgba(1, 139, 190, 0.3) 100%);
}
.our-services .progress-wrapper .bar:first-of-type .percentage:after {
  background: linear-gradient(to right, rgb(1, 139, 190) 0%, rgba(1, 139, 190, 0.3) 100%);
}
.our-services .progress-wrapper .bar:nth-of-type(2) .progress {
  background: linear-gradient(to right, rgb(255, 0, 0) 0%, rgba(255, 0, 0, 0.3) 100%) !important;
}
.our-services .progress-wrapper .bar:nth-of-type(2) .percentage {
  background: linear-gradient(to right, rgb(255, 0, 0) 0%, rgba(255, 0, 0, 0.3) 100%) !important;
}
.our-services .progress-wrapper .bar:nth-of-type(2) .percentage:after {
  background: linear-gradient(to right, rgb(255, 0, 0) 0%, rgba(255, 0, 0, 0.3) 100%) !important;
}
.our-services .progress-wrapper .bar:nth-of-type(3) .progress {
  background: linear-gradient(to right, rgb(235, 131, 87) 0%, rgba(235, 131, 87, 0.3) 100%);
}
.our-services .progress-wrapper .bar:nth-of-type(3) .percentage {
  background: linear-gradient(to right, rgb(235, 131, 87) 0%, rgba(235, 131, 87, 0.3) 100%);
}
.our-services .progress-wrapper .bar:nth-of-type(3) .percentage:after {
  background: linear-gradient(to right, rgb(235, 131, 87) 0%, rgba(235, 131, 87, 0.3) 100%);
}
.our-services .progress-wrapper .bar:nth-of-type(4) .progress {
  background: linear-gradient(to right, rgb(124, 84, 217) 0%, rgba(124, 84, 217, 0.3) 100%);
}
.our-services .progress-wrapper .bar:nth-of-type(4) .percentage {
  background: linear-gradient(to right, rgb(124, 84, 217) 0%, rgba(124, 84, 217, 0.3) 100%);
}
.our-services .progress-wrapper .bar:nth-of-type(4) .percentage:after {
  background: linear-gradient(to right, rgb(124, 84, 217) 0%, rgba(124, 84, 217, 0.3) 100%);
}
.our-services .progress-container {
  background-color: #eee;
  border-radius: 5px;
  position: relative;
  height: 5px;
  width: 100%;
}
.our-services .progress-container .progress {
  border-radius: 5px;
  position: relative;
  height: 5px;
  background-color: #6F39B0;
  width: 0;
  transition: width 0.4s linear;
}
.our-services .progress-container .percentage {
  background-color: #6F39B0;
  border-radius: 5px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 12px;
  padding: 4px;
  position: absolute;
  top: -40px;
  left: 0;
  transform: translateX(-50%);
  width: 40px;
  text-align: center;
  transition: left 0.4s linear;
}
.our-services .progress-container .percentage:after {
  background-color: #6F39B0;
  content: "";
  position: absolute;
  top: 21px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  height: 10px;
  width: 10px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .our-services .col-md-6:last-of-type {
    margin-top: 40px;
  }
}

.services-portfolio-section {
  padding: 40px 0;
}
.services-portfolio-section .container > .tag-line {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .services-portfolio-section .container > .tag-line {
    margin-bottom: 10px;
  }
}
.services-portfolio-section .container > h2 {
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .services-portfolio-section .container > h2 {
    margin-bottom: 0;
  }
}
.services-portfolio-section .container > p {
  text-align: center;
  margin-bottom: 35px;
}
.services-portfolio-section .container > .text-center {
  margin: 40px 0 15px;
}
.services-portfolio-section .feature-content h3.title {
  position: relative;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .services-portfolio-section .feature-content h3.title {
    font-size: 24px;
    line-height: 34px;
  }
}
.services-portfolio-section .feature-content h3.title:before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 25%;
  height: 2px;
  background-color: #e88a24;
}
.services-portfolio-section .feature-content ul.categories li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
}
.services-portfolio-section .feature-content ul.categories li a {
  position: relative;
  transition: 0.3s ease-in-out;
}
.services-portfolio-section .feature-content ul.categories li a:before {
  position: absolute;
  content: "";
  background: url("../img/arrow-right.svg") no-repeat center;
  background-size: cover;
  display: inline-block;
  right: -20px;
  width: 15px;
  height: 15px;
  top: 6px;
  transition: 0.3s ease-in-out;
}
.services-portfolio-section .feature-content ul.categories li a:hover {
  color: #e88a24;
}
.services-portfolio-section .feature-content ul.categories li a:hover:before {
  right: -25px;
  filter: brightness(0) saturate(100%) invert(81%) sepia(34%) saturate(6073%) hue-rotate(341deg) brightness(93%) contrast(96%);
}
.services-portfolio-section .feature-content ul.categories li:not(:last-of-type) {
  margin-bottom: 10px;
}
.services-portfolio-section .feature-content ul.categories li.active ul.categories {
  display: block;
}
.services-portfolio-section .feature-content ul.categories li.active ul.categories li {
  display: block;
}
.services-portfolio-section .feature-content ul.categories li.active ul.categories li.active ul.categories {
  display: block;
}
.services-portfolio-section .feature-content ul.categories li.active ul.categories li ul.categories {
  display: block;
}
.services-portfolio-section .feature-content ul.categories li.active ul.categories li ul.categories li:first-of-type a:before {
  display: none;
}
.services-portfolio-section .feature-content ul.categories li.active a:before {
  right: -25px;
  transform: rotate(90deg);
}
.services-portfolio-section .feature-content ul.categories li a {
  color: #000000;
  font-size: 16px;
  line-height: 26px;
  text-decoration: none;
}
.services-portfolio-section .feature-content ul.categories li > ul {
  padding-left: 20px;
  display: block;
  margin: 10px 0 15px;
}
.services-portfolio-section .feature-content ul.categories li > ul li {
  margin-bottom: 0 !important;
}
.services-portfolio-section .feature-content ul.categories li > ul li a {
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
}
.services-portfolio-section .feature-content ul.categories li > ul li a:before {
  display: none !important;
}
.services-portfolio-section:last-of-type, .services-portfolio-section:nth-last-of-type(2), .services-portfolio-section:nth-last-of-type(3) {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .services-portfolio-section {
    margin-bottom: 0;
  }
  .services-portfolio-section:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.services-portfolio-section .col-lg-4 {
  padding: 0 10px;
}
.services-portfolio-section .img-div {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.services-portfolio-section .img-div:before {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.services-portfolio-section .img-div img {
  max-width: 298px;
  max-height: 298px;
  object-fit: cover;
}
.services-portfolio-section .img-div .front-feature {
  display: block;
}
.services-portfolio-section .img-div p {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  position: absolute;
  text-align: center;
  padding: 0 20px;
  color: #ffffff;
  width: 100%;
  z-index: 5;
  opacity: 0;
  transition: 0.3s ease-in-out;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.services-portfolio-section .img-div span {
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  padding: 0 0 3px;
  position: absolute;
  top: 56%;
  background-color: #e88a24;
  color: #ffffff;
  width: 120px;
  height: 40px;
  opacity: 0;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .services-portfolio-section .img-div:hover {
    display: none;
  }
}
.services-portfolio-section .img-div:hover:before {
  opacity: 1;
}
.services-portfolio-section .img-div:hover span {
  opacity: 1;
}
.services-portfolio-section .img-div:hover p {
  opacity: 1;
}

.cloth-page {
  padding: 30px 0;
}
.cloth-page .row:not(:last-of-type) {
  margin-bottom: 80px;
}
.cloth-page .row:nth-of-type(even) .col-md-3:first-of-type {
  order: 4;
}
@media screen and (max-width: 767px) {
  .cloth-page .row:nth-of-type(even) .col-md-3:first-of-type {
    order: 0;
  }
}
.cloth-page .col-md-3 {
  text-align: center;
  /*    &:not(:last-of-type) {
        @media screen and (max-width: $screen-xs) {
          margin-bottom: 40px;
        }
      }*/
}
.cloth-page .col-md-3 h2 {
  text-transform: uppercase;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .cloth-page .col-md-3 h2 {
    font-size: 21px;
    line-height: 31px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .cloth-page .col-md-3 h2 {
    font-size: 25px;
    line-height: 35px;
  }
}
.cloth-page .col-md-3 .btn-style, .cloth-page .col-md-3 header ul li:last-of-type > a, header ul .cloth-page .col-md-3 li:last-of-type > a, .cloth-page .col-md-3 .home-text-section .container > a, .home-text-section .cloth-page .col-md-3 .container > a, .cloth-page .col-md-3 .home-services-section .col-lg-6:first-of-type .text-box a, .home-services-section .col-lg-6:first-of-type .text-box .cloth-page .col-md-3 a, .cloth-page .col-md-3 .home-pricing-section .price-box .download-btn a, .home-pricing-section .price-box .download-btn .cloth-page .col-md-3 a, .cloth-page .col-md-3 .home-contactUs-section a, .home-contactUs-section .cloth-page .col-md-3 a, .cloth-page .col-md-3 .home-contactForm-section .inner-form .form a, .home-contactForm-section .inner-form .form .cloth-page .col-md-3 a {
  padding: 15px 10px 18px;
  min-width: 160px;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .cloth-page .col-md-3 .btn-style, .cloth-page .col-md-3 header ul li:last-of-type > a, header ul .cloth-page .col-md-3 li:last-of-type > a, .cloth-page .col-md-3 .home-text-section .container > a, .home-text-section .cloth-page .col-md-3 .container > a, .cloth-page .col-md-3 .home-services-section .col-lg-6:first-of-type .text-box a, .home-services-section .col-lg-6:first-of-type .text-box .cloth-page .col-md-3 a, .cloth-page .col-md-3 .home-pricing-section .price-box .download-btn a, .home-pricing-section .price-box .download-btn .cloth-page .col-md-3 a, .cloth-page .col-md-3 .home-contactUs-section a, .home-contactUs-section .cloth-page .col-md-3 a, .cloth-page .col-md-3 .home-contactForm-section .inner-form .form a, .home-contactForm-section .inner-form .form .cloth-page .col-md-3 a {
    padding: 15px 2px 18px;
    font-size: 12px;
    line-height: 20px;
  }
}
.cloth-page .col-md-9 h3 {
  text-transform: capitalize;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .cloth-page .col-md-9 h3 {
    font-size: 18px;
    line-height: 28px;
  }
}
.cloth-page .col-md-9 .item a {
  text-align: center;
  text-decoration: none;
}
.cloth-page .col-md-9 .item a .image-wrapper {
  margin-bottom: 20px;
  position: relative;
}
.cloth-page .col-md-9 .item a .image-wrapper:hover:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9;
  left: 0;
  right: 0;
  margin: auto;
}
.cloth-page .col-md-9 .item a img {
  object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cloth-page .col-md-9 .item a img {
    height: auto;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .cloth-page .col-md-9 .item a img {
    height: 211px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .cloth-page .col-md-9 .item a img {
    height: 290px;
  }
}
@media screen and (max-width: 1399px) and (min-width: 1200px) {
  .cloth-page .col-md-9 .item a img {
    height: 345px;
  }
}
@media screen and (min-width: 1400px) {
  .cloth-page .col-md-9 .item a img {
    height: 414px;
  }
}
.cloth-page .col-md-9 .owl-nav {
  display: block !important;
}
.cloth-page .col-md-9 .owl-nav .owl-prev, .cloth-page .col-md-9 .owl-nav .owl-next {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.cloth-page .col-md-9 .owl-nav .owl-prev:before, .cloth-page .col-md-9 .owl-nav .owl-next:before {
  content: "";
  position: absolute;
  border: solid #e88a24;
  border-width: 0 0 3px 3px;
  padding: 7px;
  top: 34%;
  right: 5px;
  transition: all ease 0.3s;
}
.cloth-page .col-md-9 .owl-nav .owl-next {
  right: -25px;
}
.cloth-page .col-md-9 .owl-nav .owl-next:before {
  transform: rotate(227deg);
}
.cloth-page .col-md-9 .owl-nav .owl-prev {
  left: 0;
}
.cloth-page .col-md-9 .owl-nav .owl-prev:before {
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .single-product-page .col-md-3 {
    margin-bottom: 40px;
  }
}
.single-product-page .col-md-3 > ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.single-product-page .col-md-3 > ul > li {
  display: block;
}
.single-product-page .col-md-3 > ul > li:not(:last-of-type) {
  margin-bottom: 10px;
}
.single-product-page .col-md-3 > ul > li > ul {
  margin-top: 10px;
  padding-left: 30px;
  margin-bottom: 0;
  list-style-type: none;
  overflow: hidden;
  display: none;
  /*
  height: 0;
  transition-delay: .5s;
  &.active {
    display: block;
    height: auto;
    transition-delay: .5s;
  }*/
}
.single-product-page .col-md-3 > ul > li > ul > li:not(:last-of-type) {
  margin-bottom: 10px;
}
.single-product-page .col-md-3 > ul > li > ul > li > a {
  display: block;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.25px;
  font-size: 14px;
  line-height: 20px;
}
.single-product-page .col-md-3 > ul > li.unactive > a:before {
  content: "";
  border: solid #e88a24;
  border-width: 0 0 2px 2px;
  transform: rotate(135deg);
  padding: 3px;
  position: absolute;
  top: 34%;
  right: 5px;
  transition: all ease 0.3s;
}
.single-product-page .col-md-3 > ul > li.active > a:before {
  transform: rotate(316deg);
}
.single-product-page .col-md-3 > ul > li > a {
  display: block;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.25px;
  font-size: 16px;
  line-height: 22px;
  position: relative;
}
.single-product-page .col-md-9 .col-lg-4 {
  margin-bottom: 30px;
}
.single-product-page .col-md-9 .col-lg-4:last-of-type, .single-product-page .col-md-9 .col-lg-4:nth-last-of-type(2), .single-product-page .col-md-9 .col-lg-4:nth-last-of-type(3) {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .single-product-page .col-md-9 .col-lg-4 {
    margin-bottom: 0;
  }
  .single-product-page .col-md-9 .col-lg-4:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.single-product-page .col-md-9 .col-lg-4 .img-div {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  height: 100%;
}
.single-product-page .col-md-9 .col-lg-4 .img-div img {
  width: 100%;
  height: 273px;
  object-fit: cover;
}
.single-product-page .col-md-9 .col-lg-4 .img-div:hover:before {
  transform: scale(1);
  opacity: 0.9;
}
.single-product-page .col-md-9 .col-lg-4 .img-div:hover a {
  margin-left: 0;
  opacity: 1;
}
.single-product-page .col-md-9 .col-lg-4 .img-div:hover a:after {
  width: 40px;
}
.single-product-page .col-md-9 .col-lg-4 .img-div:hover a:hover:after {
  width: 80px;
  margin-left: -35px;
}
.single-product-page .col-md-9 .col-lg-4 .img-div:before {
  content: "";
  background: red;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  position: absolute;
  left: 0;
  opacity: 0;
  transform: scale(0.95);
  transition: transform ease 0.35s, opacity ease 0.35s;
}
.single-product-page .col-md-9 .col-lg-4 .img-div a {
  text-decoration: none;
  font-weight: 700;
  line-height: 1.4;
  opacity: 0;
  font-size: 16px;
  padding: 0 0 12px;
  margin: 0 0 0 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 2;
  transition-duration: 0.35s;
  transition-property: opacity, padding, margin;
}
.single-product-page .col-md-9 .col-lg-4 .img-div a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  margin-left: -20px;
  background-color: #fff;
  transition-delay: 0.05s;
  transition-duration: 0.4s;
  transition-property: width, margin;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.single-product .col-md-6:first-of-type {
  padding: 0 150px 0 15px;
}
@media screen and (max-width: 767px) {
  .single-product .col-md-6:first-of-type {
    padding: 0 15px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .single-product .col-md-6:first-of-type {
    padding: 0 50px 0 15px;
  }
}
@media screen and (max-width: 1599px) and (min-width: 1200px) {
  .single-product .col-md-6:first-of-type {
    padding: 0 100px 0 15px;
  }
}
.single-product .col-md-6:first-of-type .main-img {
  text-align: center;
  box-shadow: 0 5px 15px 0 #a6a6a6;
  /*img {
    width: 100%;
  }*/
}
.single-product .col-md-6:first-of-type ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  margin-top: 20px;
  font-size: 0;
}
@media screen and (max-width: 767px) {
  .single-product .col-md-6:first-of-type ul {
    text-align: center;
  }
}
.single-product .col-md-6:first-of-type ul li {
  display: inline-block;
  text-align: center;
  margin-right: 37px;
  margin-bottom: 15px;
  width: 14%;
}
.single-product .col-md-6:first-of-type ul li:nth-child(5n+5) {
  margin-right: 0 !important;
}
@media screen and (max-width: 767px) {
  .single-product .col-md-6:first-of-type ul li {
    margin-right: 20px !important;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .single-product .col-md-6:first-of-type ul li {
    margin-right: 27px;
    width: 80px;
    height: auto;
  }
  .single-product .col-md-6:first-of-type ul li:nth-child(3n+3) {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .single-product .col-md-6:first-of-type ul li {
    margin-right: 28px;
    width: 80px;
    height: auto;
  }
  .single-product .col-md-6:first-of-type ul li:nth-child(3n+3) {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 1599px) and (min-width: 1200px) {
  .single-product .col-md-6:first-of-type ul li {
    margin-right: 17px;
    width: 80px;
  }
}
@media screen and (max-width: 767px) {
  .single-product .col-md-6:last-of-type {
    margin-top: 50px;
  }
}
.single-product .col-md-6:last-of-type .about-porduct h2 {
  margin-bottom: 20px;
}

#search-product ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
#search-product ul li {
  padding: 25px 0;
  border-bottom: 1px solid #000000;
}
#search-product ul li a {
  text-decoration: none;
}
#search-product ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-footer {
  background-image: url("../img/footer-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 30px;
  display: none;
}
@media screen and (max-width: 767px) {
  .new-footer .col-md-3:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.new-footer .col-md-3:first-of-type img {
  max-width: 170px;
  height: auto;
}
.new-footer .col-md-3 h3 {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .new-footer .col-md-3 h3 {
    font-size: 16px;
    line-height: 22px;
  }
}
.new-footer .col-md-3 address {
  margin-bottom: 8px;
}
.new-footer .col-md-3 address, .new-footer .col-md-3 p, .new-footer .col-md-3 a {
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
}
.new-footer .col-md-3 ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.new-footer .col-md-3 ul li {
  display: block;
}
.new-footer .bottom-bar {
  margin-top: 100px;
}
.new-footer .bottom-bar p {
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}

.banner-new {
  padding: 0;
  overflow: hidden;
}
.banner-new .owl-carousel .owl-item {
  /*&.active {
    .item {
      background-size: 115%!important;;
      @media screen and (max-width: 1199px) and (min-width: 992px) {
        background-size: 130%;
      }
      @media screen and (max-width: $screen-xs) {
        background-size: cover;
      }
      .content-wrapper {
        left: 0;
      }
    }
  }*/
}
.banner-new .owl-carousel .item {
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 1s ease-in-out;
  min-height: 70vh;
  overflow: hidden;
}
@media screen and (max-width: 1366px) and (min-width: 1200px) {
  .banner-new .owl-carousel .item {
    min-height: 70vh;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .banner-new .owl-carousel .item {
    padding: 80px 0 100px;
    min-height: 25vh;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .banner-new .owl-carousel .item {
    padding: 50px 0 150px;
    min-height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .banner-new .owl-carousel .item {
    padding: 35px 0 70px;
    min-height: 140px;
  }
}
.banner-new .owl-carousel .item:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 1px;
  left: 0;
}
.banner-new .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .banner-new .owl-carousel .owl-nav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .banner-new .owl-carousel .owl-nav {
    display: none;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .banner-new .owl-carousel .owl-nav {
    display: none;
  }
}
.banner-new .owl-carousel .owl-nav .owl-prev {
  display: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 40px;
  height: 40px;
  position: relative;
  left: 50px;
  text-indent: -1000px;
}
.banner-new .owl-carousel .owl-nav .owl-prev span {
  display: none;
}
.banner-new .owl-carousel .owl-nav .owl-next {
  display: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 40px;
  height: 40px;
  position: relative;
  right: 50px;
  text-indent: 1000px;
}
.banner-new .owl-carousel .owl-nav .owl-next span {
  display: none;
}
.banner-new .owl-carousel .owl-dots {
  display: none;
}

.work-process .container > h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .work-process .container > h2 {
    margin-bottom: 40px;
  }
}
.work-process .process-cards {
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .work-process .process-cards {
    margin-bottom: 40px;
  }
}
.work-process .process-cards .img-wrapper {
  margin-bottom: 20px;
}
.work-process .process-cards .img-wrapper img {
  max-width: 150px;
}
@media screen and (max-width: 1199px) {
  .work-process .process-cards .img-wrapper img {
    max-width: 120px;
  }
}
.work-process .process-cards .content-wrapper h3 {
  margin-bottom: 10px;
}
.work-process .process-cards .content-wrapper p {
  line-height: 24px;
  margin-bottom: 0;
}

.marque-slider {
  background: #e88a24;
  padding: 15px 0 13px;
  display: none;
}
@media screen and (max-width: 767px) {
  .marque-slider {
    padding: 10px 0 11px;
  }
}
.marque-slider .owl-carousel {
  display: block;
}
.marque-slider .item {
  display: flex;
  align-items: start;
  gap: 10px;
}
.marque-slider .item p {
  margin-bottom: 0;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .marque-slider .item p {
    font-size: 14px;
    line-height: 20px;
  }
}
.marque-slider .item img {
  max-width: 25px;
}

.footer {
  padding: 50px 30px 20px 30px;
  background-image: url("../img/contact form.jpg");
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 50px 0 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .footer .barcode-wrapper .content-wrapper {
    margin: 0 0 25px;
  }
}
.footer .barcode-wrapper .content-wrapper h3 {
  margin-bottom: 20px;
  color: white;
  font-size: 30px;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .footer .barcode-wrapper .content-wrapper h3 {
    margin-bottom: 10px;
  }
}
.footer .barcode-wrapper .content-wrapper p {
  margin-bottom: 0;
  color: white;
}
@media screen and (max-width: 767px) {
  .footer .barcode-wrapper .content-wrapper p br {
    display: none;
  }
}
.footer .barcode-wrapper .img-wrapper img {
  max-width: 150px;
}
.footer .social-wrapper {
  margin: 40px 0 70px;
}
@media screen and (max-width: 767px) {
  .footer .social-wrapper {
    margin: 40px 0 30px;
  }
}
.footer .social-wrapper .social-card {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .footer .social-wrapper .social-card {
    gap: 15px;
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .footer .social-wrapper .social-card .img-wrapper {
    display: none;
  }
}
.footer .social-wrapper .social-card .img-wrapper svg {
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .footer .social-wrapper .social-card .img-wrapper svg {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer .social-wrapper .social-card .img-wrapper svg {
    width: 40px;
    height: 40px;
  }
}
.footer .social-wrapper .social-card .content-wrapper h3 {
  color: white;
  margin: 0 0 5px;
  font-size: 25px;
  line-height: 35px;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .footer .social-wrapper .social-card .content-wrapper h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer .social-wrapper .social-card .content-wrapper h3 {
    font-size: 21px;
    line-height: 25px;
    margin: 0 0 2px;
  }
}
.footer .social-wrapper .social-card .content-wrapper a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .footer .bottom-footer {
    text-align: center;
  }
}
.footer .bottom-footer p {
  color: white;
}
@media screen and (max-width: 767px) {
  .footer .bottom-footer p {
    text-align: center;
    margin: 15px 0 0;
  }
}
.footer .bottom-footer p strong {
  color: white;
}
.footer .bottom-footer ul.social {
  padding: 0;
  margin: 0;
}
.footer .bottom-footer ul.social li {
  display: inline-block;
}
.footer .bottom-footer ul.social li:not(:last-of-type) {
  margin: 0 25px 0 0;
}
.footer .bottom-footer ul.social li a svg {
  width: 20px;
  height: 20px;
}

.footer-1 {
  background-color: #283646;
  padding: 50px 0 0;
}
.footer-1 .main-content .logo img {
  max-width: 166px;
}
.footer-1 .main-content .footer-menu {
  margin-top: 40px;
}
.footer-1 .main-content .footer-menu ul li {
  display: inline-block;
}
.footer-1 .main-content .footer-menu ul li:not(:last-of-type) {
  margin-right: 30px;
}
.footer-1 .main-content .footer-menu ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}
.footer-1 .main-content .footer-menu ul li a:hover {
  color: #e88a24;
}
.footer-1 .form-wrapper p {
  margin: 0 0 20px;
}
.footer-1 .form-wrapper .form {
  display: flex;
  align-items: center;
}
.footer-1 .form-wrapper .form .form-group {
  margin: 0;
}
.footer-1 .form-wrapper .form .form-group label {
  display: block;
}
.footer-1 .form-wrapper .form .form-group .form-control {
  background-color: #ffffff;
  font-size: 12px;
  border-radius: 5px;
  color: #959595;
  height: 45px;
  margin-right: 7px;
  width: 320px;
  line-height: 20px;
}
.footer-1 .form-wrapper .form .form-group .form-control::placeholder {
  color: #959595;
  font-size: 12px;
}
.footer-1 .bottom-bar {
  border-top: 2px solid #959595;
  margin-top: 40px;
  padding: 30px 0;
}
.footer-1 .bottom-bar ul {
  margin: 0;
}
.footer-1 .bottom-bar ul li {
  display: inline-block;
  position: relative;
  margin-right: 30px;
}
.footer-1 .bottom-bar ul li:after {
  position: absolute;
  content: "";
  right: -18px;
  border-left: 1px solid #959595;
  height: 20px;
  top: 8px;
}
.footer-1 .bottom-bar ul li a {
  color: #959595;
  text-decoration: none;
  font-size: 14px;
  line-height: 24px;
}
.footer-1 .bottom-bar .copyright-content p {
  margin: 0;
}

.footer-2 {
  padding: 50px 30px 0 30px;
  background-image: url("../img/contact form.jpg");
}
@media screen and (max-width: 767px) {
  .footer-2 {
    padding: 50px 0 20px 0;
  }
}
.footer-2 ul li {
  display: block;
  margin-bottom: 0;
}
.footer-2 ul li a {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}
.footer-2 ul li a:hover {
  color: #e88a24;
}
.footer-2 .title {
  color: #ffffff;
  margin-bottom: 30px;
  position: relative;
}
.footer-2 .title:before {
  position: absolute;
  background-color: #e88a24;
  width: 50px;
  height: 2px;
  content: "";
  top: 40px;
  left: 0;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .footer-2 .title:before {
    top: 40px;
  }
}
.footer-2 p {
  color: #ffffff;
}
.footer-2 .content a.logo img {
  max-width: 150px;
  margin-bottom: 30px;
}
.footer-2 .content p {
  margin: 0 !important;
}
.footer-2 .bar-code .img-wrapper img {
  max-width: 100px;
  margin-right: 10px;
}
.footer-2 .bottom-bar {
  text-align: center;
  padding: 20px 0 0;
  border-top: 1px solid #ffffff;
  margin-top: 20px;
}
.footer-2 .bottom-bar ul.social {
  text-align: start;
}
.footer-2 .bottom-bar ul.social li {
  display: inline-block;
  margin-right: 15px;
  transition: all 0.5s ease-in-out;
}
.footer-2 .bottom-bar ul.social li a svg {
  width: 20px;
  height: 20px;
}
.footer-2 .bottom-bar ul.social li:hover {
  transform: translateY(-5px);
}
.footer-2 .bottom-bar .copyright-content {
  text-align: end;
}
.footer-2 .bottom-bar .copyright-content p {
  margin: 0;
  font-size: 14px;
}

.popular-post {
  padding: 0 0 0 30px;
}
@media screen and (max-width: 767px) {
  .popular-post {
    padding: 0;
  }
}
.popular-post > h3 {
  font-size: 14px;
  line-height: 25px;
  font-weight: 800;
  margin: 0 0 20px;
}
.popular-post .popular-post-card {
  display: grid;
  grid-template-columns: 81px auto;
  align-items: self-start;
  column-gap: 15px;
  border-bottom: 1px solid #33553A;
  padding-bottom: 16px;
  margin-bottom: 22px;
  text-decoration: none;
}
.popular-post .popular-post-card:hover .content-wrapper h3 {
  color: #302EA7;
}
.popular-post .popular-post-card .img-wrapper img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin: 0;
}
.popular-post .popular-post-card .content-wrapper p {
  margin-bottom: 0;
}
.popular-post .popular-post-card .content-wrapper h3 {
  font-size: 15px;
  line-height: 25px;
  color: #33553A;
  transition: all 0.3s ease-in-out;
  margin: 0 0 4px;
}

.blog-editor-pick {
  padding: 30px 0 0;
}
.blog-editor-pick .editor-pick-wrapper > h3 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 15px;
}
.blog-editor-pick .editor-pick-wrapper .editor-pick-card {
  display: block;
  padding: 12px 20px 16px;
  border: 2px solid rgba(252, 101, 36, 0.2);
  border-radius: 8px;
  background: transparent;
  text-decoration: none;
  outline: 0;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}
.blog-editor-pick .editor-pick-wrapper .editor-pick-card:hover {
  border-color: rgb(252, 101, 36);
  box-shadow: 0 0 8px 0 rgba(252, 101, 36, 0.2);
}
.blog-editor-pick .editor-pick-wrapper .editor-pick-card:hover h3.title {
  color: rgb(252, 101, 36);
}
.blog-editor-pick .editor-pick-wrapper .editor-pick-card span.publish-detail {
  display: flex;
  align-items: center;
  color: #33553A;
  font-size: 12px;
  font-weight: 600;
}
.blog-editor-pick .editor-pick-wrapper .editor-pick-card h3.title {
  font-size: 22px;
  line-height: 32px;
  margin: 10px 0 0;
  transition: all 0.3s ease-in-out;
}
.blog-editor-pick .featured-blog {
  display: block;
  text-decoration: none;
}
.blog-editor-pick .featured-blog:hover .img-wrapper {
  box-shadow: 0 0 12px 0 rgba(252, 101, 36, 0.2);
  /*img {
    transform: scale(1.1);
    border-radius: 5px;
  }*/
}
.blog-editor-pick .featured-blog:hover .content-wrapper h2.title {
  color: #302EA7;
}
.blog-editor-pick .featured-blog .img-wrapper {
  box-shadow: 0 0 12px 0 rgba(121, 226, 242, 0);
  margin-bottom: 28px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.blog-editor-pick .featured-blog .img-wrapper img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}
.blog-editor-pick .featured-blog .content-wrapper span.publish-detail {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-editor-pick .featured-blog .content-wrapper h2.title {
  margin: 10px 0 16px;
  color: #33553A;
  line-height: 46px;
  transition: all 0.3s ease-in-out;
}
.blog-editor-pick .featured-blog .content-wrapper p {
  color: #33553A;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 40px;
}
.blog-editor-pick .featured-blog .content-wrapper strong {
  text-transform: uppercase;
  font-size: 13px;
  line-height: 22px;
}
.blog-editor-pick .featured-blog .content-wrapper strong span {
  color: #33553A;
}

ul.post-tag, ul.post-categories {
  margin-bottom: 0;
}
ul.post-tag.post-detail li, ul.post-categories.post-detail li {
  list-style: none;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  ul.post-tag.post-detail li:first-of-type, ul.post-categories.post-detail li:first-of-type {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  ul.post-tag.post-detail li, ul.post-categories.post-detail li {
    display: block;
  }
}
ul.post-tag.post-detail li:after, ul.post-categories.post-detail li:after {
  background: #33553A;
}
@media screen and (max-width: 767px) {
  ul.post-tag.post-detail li:after, ul.post-categories.post-detail li:after {
    display: none;
  }
}
ul.post-tag.post-detail li p, ul.post-categories.post-detail li p {
  font-weight: 500;
  text-transform: capitalize;
  font-size: 16px;
}
ul.post-tag.post-detail li a, ul.post-categories.post-detail li a {
  color: #33553A;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 16px;
}
ul.post-tag.popular-post-tag, ul.post-categories.popular-post-tag {
  margin-bottom: 2px;
}
ul.post-tag.popular-post-tag li:not(:last-of-type), ul.post-categories.popular-post-tag li:not(:last-of-type) {
  margin: 0 10px 0 0;
}
ul.post-tag.popular-post-tag li:not(:last-of-type):after, ul.post-categories.popular-post-tag li:not(:last-of-type):after {
  right: -7px;
}
ul.post-tag.popular-post-tag li p, ul.post-categories.popular-post-tag li p {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  ul.post-tag.popular-post-tag li p, ul.post-categories.popular-post-tag li p {
    font-size: 12px !important;
  }
}
ul.post-tag li, ul.post-categories li {
  list-style: none;
  display: inline-block;
  position: relative;
}
ul.post-tag li:last-of-type, ul.post-categories li:last-of-type {
  margin: 0;
}
ul.post-tag li:not(:last-of-type), ul.post-categories li:not(:last-of-type) {
  margin: 0 25px 0 0;
}
ul.post-tag li:not(:last-of-type):after, ul.post-categories li:not(:last-of-type):after {
  content: "";
  background: #302EA7;
  height: calc(100% - 10px);
  width: 1px;
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
}
ul.post-tag li a, ul.post-categories li a {
  color: #33553A;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  transition: all 0.3s ease-in-out;
}
ul.post-tag li a:hover, ul.post-categories li a:hover {
  color: #302EA7;
}
ul.post-tag li a.black, ul.post-categories li a.black {
  color: #33553A;
}
ul.post-tag li p, ul.post-categories li p {
  color: #33553A;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 0;
}

.shop-banner {
  background: url("../img/shop-banner-img.jpg") no-repeat center;
  background-size: cover;
  position: relative;
  padding: 100px 0 100px;
}
.shop-banner:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.shop-banner .content-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: auto;
}
.shop-banner .content-wrapper h1 {
  color: #ffffff;
  margin: 0 0 10px;
}
.shop-banner .content-wrapper h2 {
  margin-bottom: 0;
  color: #ffffff;
}
.shop-banner .content-wrapper p {
  color: #ffffff;
}

.sec-product-shop {
  padding: 80px 0;
}
@media screen and (max-width: 575.98px) {
  .sec-product-shop ul.products li {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.sec-product-shop .product-categories h3 {
  position: relative;
  margin-bottom: 25px;
}
.sec-product-shop .product-categories h3:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #071e57;
}
.sec-product-shop .product-categories ul.categories li {
  position: relative;
  display: block;
}
.sec-product-shop .product-categories ul.categories li:not(:last-of-type) {
  margin-bottom: 5px;
}
.sec-product-shop .product-categories ul.categories li.has-subcategories > a:before {
  display: block;
}
.sec-product-shop .product-categories ul.categories li.has-subcategories.active > a:before {
  transform: rotate(90deg);
  transform-origin: center center;
  top: 4px;
  right: -10px;
}
.sec-product-shop .product-categories ul.categories li a {
  position: relative;
  display: block;
}
.sec-product-shop .product-categories ul.categories li a:before {
  position: absolute;
  content: url(../img/arrow-right.png);
  width: 8px;
  height: 8px;
  display: none;
  top: 3px;
  right: 0;
}
.sec-product-shop .product-categories ul.categories li.active ul.categories {
  display: block;
}
.sec-product-shop .product-categories ul.categories li.active ul.categories li {
  display: block;
}
.sec-product-shop .product-categories ul.categories li.active ul.categories li.active ul.categories {
  display: block;
}
.sec-product-shop .product-categories ul.categories li.active ul.categories li ul.categories {
  display: none;
}
.sec-product-shop .product-categories ul.categories li.active ul.categories li ul.categories li:first-of-type:before {
  display: none;
}
.sec-product-shop .product-categories ul.categories li a {
  color: #000000;
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
}
.sec-product-shop .product-categories ul.categories li a:hover {
  color: #e88a24;
}
.sec-product-shop .product-categories ul.categories li > ul {
  padding-left: 20px;
  display: block;
}
.sec-product-shop .product-categories ul.categories li > ul li a {
  font-size: 15px;
  line-height: 25px;
}
.sec-product-shop .content-area .site-main .woocommerce-breadcrumb {
  display: none;
}
.sec-product-shop .content-area .site-main .woocommerce-result-count, .sec-product-shop .content-area .site-main .woocommerce-ordering {
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .sec-product-shop .content-area .site-main .woocommerce-result-count, .sec-product-shop .content-area .site-main .woocommerce-ordering {
    margin: 0 0 20px;
    width: 100%;
    text-align: center;
  }
}
.sec-product-shop .content-area .site-main ul.products li {
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
}
@media screen and (max-width: 1600px) and (min-width: 1367px) {
  .sec-product-shop .content-area .site-main ul.products li {
    width: 22%;
  }
}
@media screen and (max-width: 1366px) and (min-width: 1024px) {
  .sec-product-shop .content-area .site-main ul.products li {
    width: 45%;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .sec-product-shop .content-area .site-main ul.products li {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .sec-product-shop .content-area .site-main ul.products li {
    width: 100%;
  }
}
.sec-product-shop .content-area .site-main ul.products li .button {
  width: 170px;
}
.sec-product-shop .content-area .site-main ul.products li:hover a.add_to_cart_button {
  background: #e88a24;
  color: #fff;
}
.sec-product-shop .content-area .site-main ul.products li a h2 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.sec-product-shop .content-area .site-main ul.products li .product-meta {
  color: #767676;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  margin: 0;
}

.sec-product-single .content-area .site-main .woocommerce-breadcrumb {
  display: none;
}
.sec-product-single .content-area .site-main .product .summary > h1 {
  font-size: 32px;
  line-height: 42px;
}
.sec-product-single .content-area .site-main .product .summary .container-fluid {
  padding: 0;
}
.sec-product-single .content-area .site-main .product .summary .container-fluid .col-md-12 > h2 {
  display: none;
}
.sec-product-single .content-area .site-main .product .summary p, .sec-product-single .content-area .site-main .product .summary a {
  font-size: 14px !important;
  line-height: 24px;
}
.sec-product-single .content-area .site-main .product .summary .variations_form .woocommerce-variation-add-to-cart a.button {
  display: none !important;
}
.sec-product-single .content-area .site-main .product .summary .variations_form .woocommerce-variation-add-to-cart .quantity input[type=button] {
  background: #e88a24;
  border: none;
  width: 30px;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sec-product-single .content-area .site-main .product .summary .variations_form .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  height: 38px;
  padding: 0 15px;
  font-size: 14px;
  line-height: 24px;
  margin: 0 0 0 15px;
}
.sec-product-single .content-area .site-main .product .woocommerce-tabs {
  display: none;
}
.sec-product-single .content-area .site-main .product .related.products {
  clear: both;
  padding: 80px 0;
}
.sec-product-single .content-area .site-main .product .related.products > h2 {
  text-align: center;
  margin: 0 0 60px;
}
.sec-product-single .content-area .site-main .product .related.products ul.products {
  display: block;
  clear: unset;
}
.sec-product-single .content-area .site-main .product .related.products ul.products li {
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
}
@media screen and (max-width: 767px) {
  .sec-product-single .content-area .site-main .product .related.products ul.products li {
    width: 100%;
  }
}
.sec-product-single .content-area .site-main .product .related.products ul.products li:hover a.add_to_cart_button {
  background: #e88a24;
  color: #fff;
}
.sec-product-single .content-area .site-main .product .related.products ul.products li a h2 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

/*
#fkcart-floating-toggler{
  position: relative;
  bottom: 0;
  right: 0;
  box-shadow: unset;
  width: auto;
  height: auto;
}
.fkcart-toggler{
  //display: none;
}
*/
.singel-protfolio .img-wrapper {
  text-align: center;
}
.singel-protfolio .img-wrapper figure {
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
}
.singel-protfolio .img-wrapper img {
  width: 100%;
  height: 100%;
}
.singel-protfolio h2 {
  font-size: 40px;
  line-height: 1.3em;
  font-weight: 600;
  color: #333;
}
.singel-protfolio a {
  color: #e88a24;
}
.singel-protfolio a:first-of-type {
  text-decoration: none;
}
.singel-protfolio p {
  font-size: 15px;
  line-height: 25px;
  color: rgb(69, 69, 69);
}
.singel-protfolio p strong {
  color: #000000;
  font-size: 18px;
  margin-right: 5px;
}
.singel-protfolio ul.portfolio-detail-list {
  padding: 10px 0;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  margin-bottom: 10px;
}
.singel-protfolio ul.portfolio-detail-list li {
  list-style: none;
  font-size: 15px;
  margin-bottom: 10px;
  margin-right: 4px;
}
.singel-protfolio ul.portfolio-detail-list li a {
  font-size: 15px;
}
.singel-protfolio .accordion {
  border-bottom: 1px solid #dedede;
  border-top: 1px solid #dedede;
  margin-bottom: 30px;
}
.singel-protfolio .accordion .accordion-item {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}
.singel-protfolio .accordion .accordion-item:last-of-type {
  border-bottom: 1px solid #dedede;
}
.singel-protfolio .accordion .accordion-item button {
  background: none repeat scroll 0 0;
  border: 0;
  border-radius: 0;
  color: #000000;
  font-weight: 600;
  font-size: 18px;
  padding: 10px 10px 10px 10px;
  box-shadow: unset;
}
@media screen and (max-width: 767px) {
  .singel-protfolio .accordion .accordion-item button {
    font-size: 16px;
  }
}
.singel-protfolio .accordion .accordion-item button:before {
  content: url(../img/minus.png);
  font: normal normal normal 14px/1 FontAwesome;
  display: inline-block;
  position: absolute;
  top: 18px;
  color: #e88a24;
  font-size: 16px;
  filter: brightness(0) saturate(100%) invert(59%) sepia(69%) saturate(701%) hue-rotate(343deg) brightness(94%) contrast(93%);
  width: 10px;
  right: 20px;
}
@media screen and (max-width: 767px) {
  .singel-protfolio .accordion .accordion-item button:before {
    top: 14px;
  }
}
.singel-protfolio .accordion .accordion-item button.collapsed:before {
  content: "+";
  top: 18px;
  font-size: 22px;
  right: 20px;
  font-weight: bold;
  color: #e88a24;
}
.singel-protfolio .accordion .accordion-item button:after {
  display: none;
}
.singel-protfolio .accordion .accordion-body {
  padding: 0 5px 10px 14px;
}
.singel-protfolio .accordion h2 {
  line-height: 1;
}
.singel-protfolio .accordion h2:before, .singel-protfolio .accordion h2:after {
  display: none;
}
.singel-protfolio .accordion p {
  font-size: 14px;
  margin: 0;
}
.singel-protfolio li {
  display: flex;
}
.singel-protfolio li strong {
  margin-right: 5px;
}
.singel-protfolio li ul.social {
  margin-left: 10px;
}
.singel-protfolio li ul.social li {
  display: inline-block;
}
.singel-protfolio li ul.social li:not(:last-of-type) {
  margin: 0 8px 0 0;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .singel-protfolio li ul.social li:not(:last-of-type) {
    margin: 0 10px 0 0;
  }
}
.singel-protfolio li ul.social li:last-of-type a {
  min-width: 20px;
  height: auto;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  text-align: left;
  color: #556575 !important;
}
.singel-protfolio li ul.social li:last-of-type a:hover {
  background: transparent;
}
.singel-protfolio li ul.social li a:before {
  background-color: #e88a24;
}
.singel-protfolio li ul.social li a img {
  max-width: 15px;
}
.singel-protfolio .form-group input, .singel-protfolio .form-group textarea {
  background-color: transparent;
  border: 1px solid;
}
.singel-protfolio .form-group input.btn-style, .singel-protfolio .form-group textarea.btn-style {
  background-color: #e88a24;
}
.singel-protfolio .form-group input.btn-style:hover, .singel-protfolio .form-group textarea.btn-style:hover {
  background-color: transparent;
}
.singel-protfolio .form-group input::placeholder, .singel-protfolio .form-group textarea::placeholder {
  color: #000000 !important;
  font-size: 12px;
}

.woocommerce form .form-row.woocommerce-validated input.input-text {
  border-color: #6dc22e !important;
}

.woocommerce-pagination {
  background: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
  display: inline-block;
  padding: 10px 5px;
  border-radius: 10px;
}
.woocommerce-pagination ul {
  display: flex;
  gap: 5px !important;
}

.custom-pagination {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}
.custom-pagination .pagination-links {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.custom-pagination .pagination-links li {
  display: inline-block;
}
.custom-pagination .pagination-links li.next-link a {
  background-color: #e88a24;
  width: 100px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  border: 2px solid #e88a24;
  align-items: center;
  justify-content: center;
}
.custom-pagination .pagination-links li.prev-link a {
  color: #e88a24;
  font-size: 28px;
  line-height: 0;
  /* margin-bottom: 5px; */
  border: 2px solid #e88a24;
  width: 70px;
  border-radius: 5px;
  height: 40px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  text-align: center;
  padding-top: 15px;
}
.custom-pagination .pagination-links li.prev-link a:hover {
  color: #ffffff;
  background-color: #e88a24;
}
.custom-pagination .pagination-links li a {
  text-decoration: none;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
}
.custom-pagination .pagination-links li a:hover {
  color: #ffffff;
}
.custom-pagination .page-count {
  position: absolute;
  right: 0;
  font-size: 16px;
}
.custom-pagination .page-count .currect {
  border: 1px solid;
  width: 60px;
  display: inline-block;
  text-align: center;
  border-radius: 10px;
}

form.cart {
  display: flex;
  align-items: center;
}

form.variations_form.cart {
  display: block;
}

.default-page .container {
  max-width: 800px;
}
.default-page .container h1 {
  margin-top: 50px;
}
.default-page .container h1, .default-page .container h2 {
  text-align: left;
}
.default-page .container .rt-reading-time {
  display: none !important;
}

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