@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,600&amp;family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&amp;display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
--primary-color:#1eba8b;
--secondary-color:#ffa513;
}

body,
html {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}
html, body, div, span, img,
ol, ul, li, a, p, h1, h2, h3,
h4, h5, h6, option, legend, label,
table, th, td, tr, article, aside,
caption, figure, footer, header, hgroup,
mark, nav, section, time, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
img {
  max-width: 100%;
}
a:hover, a:focus, a:active {
  text-decoration: none;
  outline: none !important;
  border: 0;
}
input:focus {
  outline: none;
}
input::-moz-focus-inner {
  border: 0;
  display: none;
}
input::-webkit-focus-inner {
  border: 0;
  display: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px rgba(119, 255, 210, 0.788) inset !important;
}
input:focus, textarea:focus, select:focus {
  outline: none;
}
::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
  /* Firefox */
}
:-ms-input-placeholder {
  color: #666;
  opacity: 1;
  /* Firefox */
}
::-ms-input-placeholder {
  color: #666;
  opacity: 1;
  /* Firefox */
}
::placeholder {
  color: #666;
  opacity: 1;
  /* Firefox */
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #666;
}
::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #666;
}
table {
  border-collapse: collapse;
}
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
ul, li {
  margin: 0;
  padding: 0;
}
figure {
  margin: 0px;
}
form {
  position: relative;
}
.form-control:focus {
  outline: none !important;
  border: none !important;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-size: inherit;
  color: inherit;
}
h1:hover a, h2:hover a, h3:hover a, h4:hover a, h5:hover a, h6:hover a {
  font-size: inherit;
  color: inherit;
}
hr {
  margin: 0;
  padding: 0;
  border-color: #000;
}
ul {
  list-style-type: none;
}
li {
  list-style: none;
  position: relative;
}
a,
button {
  position: relative;
}
a:hover, a:focus,
button:hover,
button:focus {
  outline: 0;
  text-decoration: none;
}
input, textarea, button {
  border: 0px;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #6D6D6D;
  background-color: #fff;
}
h1,h2,h3,h4,h5,h6 {
  font-family: "Montserrat", sans-serif;
  margin: 0px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #0D0D0F;
  line-height: 130%;
}
h1 {
  font-size: 48px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 22px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 18px;
}
a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  font-size: 16px;
  line-height: 28px;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  color: #0D0D0F;
}
p {
  margin: 0px;
}
.coverbg {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover !important;
}
/* ----------------------------------
  Helps Classes - Styles
 ------------------------------------ */
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white a {
  color: #fff !important;
}
.scroll-up {
  position: fixed;
  background: #00baa3;
  border-radius: 50%;
  bottom: 0px;
  color: #fff;
  font-size: 18px;
  height: 40px;
  line-height: 44px;
  right: 20px;
  text-align: center;
  width: 40px;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(1, 29, 80, 0.1);
          box-shadow: 0px 5px 15px 0px rgba(1, 29, 80, 0.1);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 990;
}
.scroll-up i {
  color: #fff;
}
.scroll-up:hover {
  background-color: #f86048;
  color: #fff;
}
.scroll-up.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
button {
  border: none;
}
section {
  position: relative;
  z-index: 1;
}
@-webkit-keyframes sticky {
  0% {
    opacity: 0;
    margin-top: -120px;
  }
  50% {
    opacity: 0;
    margin-top: -60px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
@keyframes sticky {
  0% {
    opacity: 0;
    margin-top: -120px;
  }
  50% {
    opacity: 0;
    margin-top: -60px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
.overlay {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  width: 40%;
  opacity: 0;
  visibility: hidden;
}
.overlay.active {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: #000;
  z-index: 99;
  opacity: .5;
  visibility: visible;
}
@-webkit-keyframes left-to-right {
  0% {
    background-position: left center;
  }
  100% {
    background-position: right center;
  }
}
@keyframes left-to-right {
  0% {
    background-position: left center;
  }
  100% {
    background-position: right center;
  }
}
@-webkit-keyframes right-to-left {
  0% {
    background-position: right center;
  }
  100% {
    background-position: left center;
  }
}
@keyframes right-to-left {
  0% {
    background-position: right center;
  }
  100% {
    background-position: left center;
  }
}
@-webkit-keyframes left-to-center {
  0% {
    background-position: left center;
  }
  100% {
    background-position: center center;
  }
}
@keyframes left-to-center {
  0% {
    background-position: left center;
  }
  100% {
    background-position: center center;
  }
}
@-webkit-keyframes right-to-center {
  0% {
    background-position: right center;
  }
  100% {
    background-position: center center;
  }
}
@keyframes right-to-center {
  0% {
    background-position: right center;
  }
  100% {
    background-position: center center;
  }
}
@-webkit-keyframes top-to-bottom {
  0% {
    background-position: center top;
  }
  100% {
    background-position: center bottom;
  }
}
@keyframes top-to-bottom {
  0% {
    background-position: center top;
  }
  100% {
    background-position: center bottom;
  }
}
@-webkit-keyframes top-to-center {
  0% {
    background-position: center top;
  }
  100% {
    background-position: center center;
  }
}
@keyframes top-to-center {
  0% {
    background-position: center top;
  }
  100% {
    background-position: center center;
  }
}
@-webkit-keyframes bottom-to-top {
  0% {
    background-position: center bottom;
  }
  100% {
    background-position: center top;
  }
}
@keyframes bottom-to-top {
  0% {
    background-position: center bottom;
  }
  100% {
    background-position: center top;
  }
}
@-webkit-keyframes bottom-to-center {
  0% {
    background-position: center bottom;
  }
  100% {
    background-position: center center;
  }
}
@keyframes bottom-to-center {
  0% {
    background-position: center bottom;
  }
  100% {
    background-position: center center;
  }
}
@-webkit-keyframes top-left-to-bottom-right {
  0% {
    background-position: left top;
  }
  100% {
    background-position: right bottom;
  }
}
@keyframes top-left-to-bottom-right {
  0% {
    background-position: left top;
  }
  100% {
    background-position: right bottom;
  }
}
@-webkit-keyframes top-left-to-center {
  0% {
    background-position: left top;
  }
  100% {
    background-position: center center;
  }
}
@keyframes top-left-to-center {
  0% {
    background-position: left top;
  }
  100% {
    background-position: center center;
  }
}
@-webkit-keyframes top-right-to-bottom-left {
  0% {
    background-position: right top;
  }
  100% {
    background-position: left bottom;
  }
}
@keyframes top-right-to-bottom-left {
  0% {
    background-position: right top;
  }
  100% {
    background-position: left bottom;
  }
}
@-webkit-keyframes top-right-to-center {
  0% {
    background-position: right top;
  }
  100% {
    background-position: center center;
  }
}
@keyframes top-right-to-center {
  0% {
    background-position: right top;
  }
  100% {
    background-position: center center;
  }
}
@-webkit-keyframes bottom-left-to-top-right {
  0% {
    background-position: left bottom;
  }
  100% {
    background-position: right top;
  }
}
@keyframes bottom-left-to-top-right {
  0% {
    background-position: left bottom;
  }
  100% {
    background-position: right top;
  }
}
@-webkit-keyframes bottom-left-to-center {
  0% {
    background-position: left bottom;
  }
  100% {
    background-position: center center;
  }
}
@keyframes bottom-left-to-center {
  0% {
    background-position: left bottom;
  }
  100% {
    background-position: center center;
  }
}
@-webkit-keyframes bottom-right-to-top-left {
  0% {
    background-position: right bottom;
  }
  100% {
    background-position: left top;
  }
}
@keyframes bottom-right-to-top-left {
  0% {
    background-position: right bottom;
  }
  100% {
    background-position: left top;
  }
}
@-webkit-keyframes bottom-right-to-center {
  0% {
    background-position: right bottom;
  }
  100% {
    background-position: center center;
  }
}
@keyframes bottom-right-to-center {
  0% {
    background-position: right bottom;
  }
  100% {
    background-position: center center;
  }
}
@-webkit-keyframes zoomIn {
  0% {
    background-position: right center;
  }
  100% {
    background-position: left center;
  }
}
@keyframes zoomIn {
  0% {
    background-position: right center;
  }
  100% {
    background-position: left center;
  }
}
.animation_left-to-right {
  background-position: left center;
}
.active .animation_left-to-right {
  -webkit-animation: left-to-right 5s ease 0s 1 normal forwards running;
          animation: left-to-right 5s ease 0s 1 normal forwards running;
}
.animation_right-to-left {
  background-position: right center;
}
.active .animation_right-to-left {
  -webkit-animation: right-to-left 5s ease 0s 1 normal forwards running;
          animation: right-to-left 5s ease 0s 1 normal forwards running;
}
.animation_left-to-center {
  background-position: left center;
}
.active .animation_left-to-center {
  -webkit-animation: left-to-center 5s ease 0s 1 normal forwards running;
          animation: left-to-center 5s ease 0s 1 normal forwards running;
}
.animation_right-to-center {
  background-position: right center;
}
.active .animation_right-to-center {
  -webkit-animation: right-to-center 5s ease 0s 1 normal forwards running;
          animation: right-to-center 5s ease 0s 1 normal forwards running;
}
.animation_top-to-bottom {
  background-position: center top;
}
.active .animation_top-to-bottom {
  -webkit-animation: top-to-bottom 5s ease 0s 1 normal forwards running;
          animation: top-to-bottom 5s ease 0s 1 normal forwards running;
}
.animation_top-to-center {
  background-position: center top;
}
.active .animation_top-to-center {
  -webkit-animation: top-to-center 5s ease 0s 1 normal forwards running;
          animation: top-to-center 5s ease 0s 1 normal forwards running;
}
.animation_bottom-to-top {
  background-position: center bottom;
}
.active .animation_bottom-to-top {
  -webkit-animation: bottom-to-top 5s ease 0s 1 normal forwards running;
          animation: bottom-to-top 5s ease 0s 1 normal forwards running;
}
.animation_bottom-to-center {
  background-position: center bottom;
}
.active .animation_bottom-to-center {
  -webkit-animation: bottom-to-center 5s ease 0s 1 normal forwards running;
          animation: bottom-to-center 5s ease 0s 1 normal forwards running;
}
.animation_top-left-to-bottom-right {
  background-position: left top;
}
.active .animation_top-left-to-bottom-right {
  -webkit-animation: top-left-to-bottom-right 5s ease 0s 1 normal forwards running;
          animation: top-left-to-bottom-right 5s ease 0s 1 normal forwards running;
}
.animation_top-left-to-center {
  background-position: left top;
}
.active .animation_top-left-to-center {
  -webkit-animation: top-left-to-center 5s ease 0s 1 normal forwards running;
          animation: top-left-to-center 5s ease 0s 1 normal forwards running;
}
.animation_top-right-to-bottom-left {
  background-position: right top;
}
.active .animation_top-right-to-bottom-left {
  -webkit-animation: top-right-to-bottom-left 5s ease 0s 1 normal forwards running;
          animation: top-right-to-bottom-left 5s ease 0s 1 normal forwards running;
}
.animation_top-right-to-center {
  background-position: right top;
}
.active .animation_top-right-to-center {
  -webkit-animation: top-right-to-center 5s ease 0s 1 normal forwards running;
          animation: top-right-to-center 5s ease 0s 1 normal forwards running;
}
.animation_bottom-left-to-top-right {
  background-position: left bottom;
}
.active .animation_bottom-left-to-top-right {
  -webkit-animation: bottom-left-to-top-right 5s ease 0s 1 normal forwards running;
          animation: bottom-left-to-top-right 5s ease 0s 1 normal forwards running;
}
.animation_bottom-left-to-center {
  background-position: left bottom;
}
.active .animation_bottom-left-to-center {
  -webkit-animation: bottom-left-to-center 5s ease 0s 1 normal forwards running;
          animation: bottom-left-to-center 5s ease 0s 1 normal forwards running;
}
.animation_bottom-right-to-top-left {
  background-position: right bottom;
}
.active .animation_bottom-right-to-top-left {
  -webkit-animation: bottom-right-to-top-left 5s ease 0s 1 normal forwards running;
          animation: bottom-right-to-top-left 5s ease 0s 1 normal forwards running;
}
.animation_bottom-right-to-center {
  background-position: right bottom;
}
.active .animation_bottom-right-to-center {
  -webkit-animation: bottom-right-to-center 5s ease 0s 1 normal forwards running;
          animation: bottom-right-to-center 5s ease 0s 1 normal forwards running;
}
#scrollUp {
  background-color: var(--primary-color);
  border-radius: 50%;
  bottom: 20px;
  color: #ffffff;
  font-size: 22px;
  height: 40px;
  line-height: 44px;
  right: 20px;
  text-align: center;
  width: 40px;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(1, 29, 80, 0.1);
          box-shadow: 0px 5px 15px 0px rgba(1, 29, 80, 0.1);
  font-weight: 400;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
#scrollUp:hover {
  background-color: #ff6c02;
  color: #FFF;
}
@-webkit-keyframes stroke {
  52% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}
@keyframes stroke {
  52% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}
@-webkit-keyframes arrow {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  23% {
    -webkit-transform: translateX(17px);
            transform: translateX(17px);
    opacity: 1;
  }
  24%,
  80% {
    -webkit-transform: translateX(-22px);
            transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    -webkit-transform: translateX(-22px);
            transform: translateX(-22px);
  }
}
@keyframes arrow {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  23% {
    -webkit-transform: translateX(17px);
            transform: translateX(17px);
    opacity: 1;
  }
  24%,
  80% {
    -webkit-transform: translateX(-22px);
            transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    -webkit-transform: translateX(-22px);
            transform: translateX(-22px);
  }
}
@-webkit-keyframes arrowUp {
  0%,
  100% {
    -webkit-transform: rotate(-40deg) scaleX(1);
            transform: rotate(-40deg) scaleX(1);
  }
  20%,
  80% {
    -webkit-transform: rotate(0deg) scaleX(0.1);
            transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowUp {
  0%,
  100% {
    -webkit-transform: rotate(-40deg) scaleX(1);
            transform: rotate(-40deg) scaleX(1);
  }
  20%,
  80% {
    -webkit-transform: rotate(0deg) scaleX(0.1);
            transform: rotate(0deg) scaleX(0.1);
  }
}
@-webkit-keyframes arrowDown {
  0%,
  100% {
    -webkit-transform: rotate(40deg) scaleX(1);
            transform: rotate(40deg) scaleX(1);
  }
  20%,
  80% {
    -webkit-transform: rotate(0deg) scaleX(0.1);
            transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowDown {
  0%,
  100% {
    -webkit-transform: rotate(40deg) scaleX(1);
            transform: rotate(40deg) scaleX(1);
  }
  20%,
  80% {
    -webkit-transform: rotate(0deg) scaleX(0.1);
            transform: rotate(0deg) scaleX(0.1);
  }
}
@-webkit-keyframes zoomInImage {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    -webkit-transition: 1s;
    transition: 1s;
  }
  to {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: 1s;
    transition: 1s;
  }
}
@keyframes zoomInImage {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    -webkit-transition: 1s;
    transition: 1s;
  }
  to {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: 1s;
    transition: 1s;
  }
}
.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
}
@-webkit-keyframes zoomBg {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  to {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
}
@keyframes zoomBg {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  to {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
}
.zoomBg {
  -webkit-animation-name: zoomMe;
          animation-name: zoomMe;
}
@-webkit-keyframes zoomOutImage {
  from {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: 1s;
    transition: 1s;
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    -webkit-transition: 1s;
    transition: 1s;
  }
}
@keyframes zoomOutImage {
  from {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: 1s;
    transition: 1s;
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    -webkit-transition: 1s;
    transition: 1s;
  }
}
.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
          animation-name: zoomOutImage;
  -webkit-transition: 1s;
  transition: 1s;
}
@-webkit-keyframes playVideo {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(37, 106, 215, 0.2);
    box-shadow: 0 0 0 0 rgba(37, 106, 215, 0.2);
  }
  40% {
    -webkit-box-shadow: 0 0 0 20px rgba(37, 106, 215, 0);
    box-shadow: 0 0 0 20px rgba(37, 106, 215, 0);
  }
  80% {
    -webkit-box-shadow: 0 0 0 20px rgba(37, 106, 215, 0);
    box-shadow: 0 0 0 20px rgba(37, 106, 215, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(37, 106, 215, 0);
    box-shadow: 0 0 0 0 rgba(37, 106, 215, 0);
  }
}
@keyframes playVideo {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(37, 106, 215, 0.2);
    box-shadow: 0 0 0 0 rgba(37, 106, 215, 0.2);
  }
  40% {
    -webkit-box-shadow: 0 0 0 20px rgba(37, 106, 215, 0);
    box-shadow: 0 0 0 20px rgba(37, 106, 215, 0);
  }
  80% {
    -webkit-box-shadow: 0 0 0 20px rgba(37, 106, 215, 0);
    box-shadow: 0 0 0 20px rgba(37, 106, 215, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(37, 106, 215, 0);
    box-shadow: 0 0 0 0 rgba(37, 106, 215, 0);
  }
}
@-webkit-keyframes dimond {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes dimond {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes layerBounce {
  0% {
    -webkit-transform: scale(0) rotate(-44.13deg);
            transform: scale(0) rotate(-44.13deg);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    -webkit-transform: scale(1) rotate(-44.13deg);
            transform: scale(1) rotate(-44.13deg);
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes layerBounce {
  0% {
    -webkit-transform: scale(0) rotate(-44.13deg);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    -webkit-transform: scale(1) rotate(-44.13deg);
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes movebounce {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes movebounce {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-webkit-keyframes bounceUp {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes bounceUp {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-webkit-keyframes moveleftbounce {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes moveleftbounce {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@-webkit-keyframes moverightbounce {
  0% {
    margin-left: 0px;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0px;
  }
}
@keyframes moverightbounce {
  0% {
    margin-left: 0px;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0px;
  }
}
.rotateme {
  -webkit-animation-name: rotateme;
  animation-name: rotateme;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@keyframes guraguri {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes guraguri {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@keyframes move_wave {
  0% {
    -webkit-transform: translateX(0) translateZ(0) scaleY(1);
            transform: translateX(0) translateZ(0) scaleY(1);
  }
  50% {
    -webkit-transform: translateX(-25%) translateZ(0) scaleY(0.55);
            transform: translateX(-25%) translateZ(0) scaleY(0.55);
  }
  100% {
    -webkit-transform: translateX(-50%) translateZ(0) scaleY(1);
            transform: translateX(-50%) translateZ(0) scaleY(1);
  }
}
@-webkit-keyframes move_wave {
  0% {
    -webkit-transform: translateX(0) translateZ(0) scaleY(1);
            transform: translateX(0) translateZ(0) scaleY(1);
  }
  50% {
    -webkit-transform: translateX(-25%) translateZ(0) scaleY(0.55);
            transform: translateX(-25%) translateZ(0) scaleY(0.55);
  }
  100% {
    -webkit-transform: translateX(-50%) translateZ(0) scaleY(1);
            transform: translateX(-50%) translateZ(0) scaleY(1);
  }
}
/* ----------------------------------
  All Aniamtion Styles
 ------------------------------------ */
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
            transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
            transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
/* ------------------------------------------------------------------
  Default Button, Input Styles
 -------------------------------------------------------------------- */
.btnd, .default-btn, .video-btn {
  line-height: 1;
  display: inline-block;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  border-radius: 4px;
}
.default-btn {
  padding: 18px 38px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: var(--primary-color);
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.trans-btn {
  padding: 10px 40px;
  font-size: 30px;
  border: 4px solid var(--primary-color);
  color: black;
  background-color: var(--secondary-color);
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.trans-btn:hover {
  background: transparent;
  border: 4px solid #ffffff;
  color: #ffffff;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.default-btn.btn-radius {
  border-radius: 30px;
}
.default-btn.no-fil {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  margin-left: 15px;
}
.default-btn.no-fil:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.default-btn.black {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
}
.default-btn.black:hover {
  background-color: #ff6c02;
}
.default-btn.minimal-btn {
  color: #727475;
  background: transparent;
}
.default-btn:hover {
  background: var(--secondary-color);
  color: #FFF;
}
.video-btn {
  font-size: 16px;
  font-weight: 700;
  color: #ff6c02;
}
.video-btn i {
  margin-right: 10px;
}
.video-play-btn .play-video:hover {
  color: var(--primary-color);
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.video-play-btn .play-text {
  font-weight: 600;
}
.video-play-btn.small-circle .play-video {
  width: 60px;
  height: 60px;
  line-height: 64px;
  font-size: 18px;
  background: #FFF;
  color: #ff6c02;
  -webkit-animation: playVideo infinite 3.5s;
          animation: playVideo infinite 3.5s;
  -webkit-box-shadow: 0px 16px 32px 0px rgba(51, 51, 51, 0.04);
          box-shadow: 0px 16px 32px 0px rgba(51, 51, 51, 0.04);
}
.cat-btn {
  font-size: 16px;
  line-height: 1;
  padding: 20px 30px;
  font-weight: 700;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  background: transparent;
  display: inline-block;
  margin-right: 10px;
  margin-top: 30px;
}
.cat-btn i {
  margin-right: 10px;
}
.cat-btn.color {
  background-color: #00baa3;
  border-color: #00baa3;
  color: #fff;
}
.cat-btn:hover {
  background-color: #00baa3;
  border-color: #00baa3;
  border-style: solid;
  border-width: 1px;
}
.circle-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.circle-dots li {
  display: inline-block;
  margin: 0 6px;
  text-align: center;
}
.circle-dots li button {
  position: relative;
  text-indent: -9999px;
  border-radius: 30px;
  width: 12px;
  height: 12px;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--primary-color)), to(#ff6c02));
  background: linear-gradient(180deg, var(--primary-color) 0%, #ff6c02 100%);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  opacity: .2;
}
.circle-dots li button:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--primary-color)), to(#ff6c02));
  background: linear-gradient(180deg, var(--primary-color) 0%, #ff6c02 100%);
  opacity: 1;
}
.circle-dots li button::before {
  position: absolute;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  border: 2px solid #ff6c02;
  content: "";
  left: -50%;
  top: -50%;
  z-index: -1;
  -webkit-transform: translate(1px, 1px);
          transform: translate(1px, 1px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.circle-dots li.slick-active button {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--primary-color)), to(#ff6c02));
  background: linear-gradient(180deg, var(--primary-color) 0%, #ff6c02 100%);
  opacity: 1;
}
.circle-dots li.slick-active button::before {
  opacity: 1;
  visibility: visible;
}

/* ----------------------------------
    Section Styles
 ------------------------------------*/
header {
  position: relative;
  z-index: 99;
}
header ul {
  padding: 0;
  margin: 0;
}
header.sticky {
  top: 0 !important;
  width: 100%;
  position: fixed !important;
  background: #fff;
  -webkit-animation: sticky .8s ease-in-out;
          animation: sticky .8s ease-in-out;
  -webkit-box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
          box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
}
header .logo a {
  display: block;
  padding: 0;
  margin: 0;
}
header .main-menu ul {
  line-height: 1;
}
header .main-menu ul > li {
  display: inline-block;
  line-height: 1;
}
header .main-menu ul > li.active > a {
  display: block;
  color: var(--primary-color);
}
header .main-menu ul > li li.menu-item-has-children > a:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f105";
  position: absolute;
  right: 15px;
}
header .main-menu ul > li > a {
  display: inline-block;
  font-weight: 600;
  text-transform: capitalize;
  color: #0D0D0F;
  line-height: 1;
  padding: 30px 20px;
  overflow: hidden;
  text-align: left;
  position: relative;
}
header .main-menu ul > li > a span {
  margin-left: 3px;
  font-size: 14px;
}
header .main-menu ul > li:hover > a {
  color: var(--primary-color);
}
header .main-menu ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
header .main-menu ul > li:hover > ul li:hover a {
  color: var(--primary-color);
}
header .main-menu ul > li:hover > ul li:hover ul a:hover {
  color: #fff;
}
header .main-menu ul > li > ul {
  position: absolute;
  top: 100%;
  width: 200px;
  background-color: #ff6c02;
  left: 0;
  z-index: 999;
  -webkit-box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
          box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  padding: 10px 0px;
}
header .main-menu ul > li > ul li {
  display: block;
}
header .main-menu ul > li > ul li a {
  display: block;
  color: #FFF;
  padding: 10px 24px;
  line-height: 1.5;
}
header .main-menu ul > li > ul li a:hover {
  color: var(--primary-color);
}
header .main-menu ul > li > ul ul {
  left: 100%;
  top: 0;
}
.logo img {
  width: 140px;
}
header .logo_text {
  text-transform: uppercase;
  color: var(--primary-color);
  font-size: 27px;
  line-height: 1;
}
header.transparent-menu {
  background: transparent;
  position: absolute;
  left: 0;
  z-index: 3;
  width: 100%;
  border-bottom: 1px solid rgba(178, 168, 205, 0.2);
}
header.transparent-menu ul li a {
  color: #fff !important;
}
header.transparent-menu.sticky {
  background: #ff6c02;
}
header .header-right-element .default-btn i {
  margin-left: 4px;
}
header .header-right-element .search-btn {
  margin-left: 10px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
header .header-right-element .search-btn:hover {
  color: var(--primary-color);
}
header .header-right-element .search-box {
  width: 0;
  position: absolute;
  right: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  -webkit-box-shadow: 0px 15px 40px 0px rgba(109, 109, 109, 0.06);
          box-shadow: 0px 15px 40px 0px rgba(109, 109, 109, 0.06);
}
header .header-right-element .search-box.show {
  width: 320px;
  opacity: 1;
  visibility: visible;
}
header .header-right-element .search-box form input {
  border: 0px;
  width: 100%;
  line-height: 1;
  padding: 0px 20px;
  color: var(--primary-color);
  font-size: 16px;
  height: 60px;
  background-color: #fff;
}
header .header-right-element .search-box form button {
  border: 0px;
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  height: 60px;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 0px 25px;
  font-size: 16px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
header .header-right-element .search-box form button:hover {
  background-color: #ff6c02;
  color: #fff;
}
.top-bar-wrapper {
  background-color: var(--primary-color);
  padding: 10px 0px;
  position: relative;
  overflow: hidden;
  color: white;
}
.top-left a {
  font-weight: 500;
  color: black;
  margin-right: 15px;
  font-size: 14px;
}
.top-left a i {
  padding-right: 8px;
}
.social-pages a {
  margin-left: 15px;
  font-weight: 500;
  color: #fff;
}
.social-pages a:hover {
  color: var(--primary-color);
}
.top-header-bar {
  background: #E9F0FB;
  color: #0D0D0F;
}
.call-us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.call-us .text h5 {
  margin-bottom: 3px;
  text-transform: capitalize;
  margin-top: -3px;
  font-weight: 500;
  font-size: 14px;
}
.single-info-element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.single-info-element .text h5 {
  margin-bottom: 0px;
  font-size: 16px;
  text-transform: capitalize;
  margin-top: -4px;
  margin-bottom: -1px;
}
.action-bar .single-info-element {
  margin-bottom: 25px;
}
.action-bar .single-info-element .icon {
  color: #FFF;
  font-size: 26px;
  margin-right: 15px;
}
.action-bar .single-info-element h5 {
  font-size: 15px !important;
  font-weight: 600;
}
.action-bar .single-info-element span {
  font-size: 15px !important;
}
.action-bar .call-us .icon {
  font-size: 26px;
  margin-right: 15px;
}
.action-bar .call-us span {
  font-size: 15px !important;
}
.page-banner-wrap {
  background-color: var(--primary-color);
    padding-top: 80px;
    padding-bottom: 80px;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}
.page-banner-wrap::before, .page-banner-wrap::after {
  position: absolute;
    left: 0;
    content: "";
    top: 0;
    background: linear-gradient(95.06deg, var(--primary-color) 37.5%, var(--primary-color) 109.04%);
    opacity: 0.50;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.page-banner-wrap h1 {
  text-transform: capitalize;
}
.page-banner-wrap a:hover {
  color: #5f2dee;
}
.page-banner-wrap .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-banner-wrap .breadcrumb .breadcrumb-item {
  font-weight: 600;
  text-transform: capitalize;
}
.page-banner-wrap .breadcrumb .breadcrumb-item a {
  color: #FFF !important;
  font-weight: 600;
}
.page-banner-wrap .breadcrumb .breadcrumb-item a:hover {
  color: #FFF;
}
.page-banner-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item {
  color: #fff;
}
.page-banner-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  font-size: 14px;
  color: #fff;
}
.breadcrumb-wrapper {
  background-color: #f8f8f8;
  padding: 20px 0px;
  color: #5f2dee;
}
.breadcrumb-wrapper a:hover {
  color: #5f2dee;
}
.breadcrumb-wrapper .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item {
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item a {
  color: #5f2dee;
  font-weight: 500;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item a:hover {
  color: var(--primary-color);
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-size: 14px;
}
.mobile-nav {
  position: fixed;
  right: -380px;
  top: 0;
  width: 320px;
  height: 100vh;
  scroll-behavior: smooth;
  overflow-y: scroll;
  -webkit-transition: right .5s ease-in;
  transition: right .5s ease-in;
  background-color: var(--primary-color);
  padding: 20px;
  z-index: 9999;
  -webkit-box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
  box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
}
.mobile-nav.show {
  right: 0px;
}
.mobile-nav .close-nav {
  border: 0;
  background: transparent;
  color: #fff;
  border-radius: 30px;
  font-size: 20px;
  position: absolute;
  left: 20px;
  top: 10px;
}
.mobile-nav .sidebar-nav {
  margin-top: 30px;
}
.mobile-nav .sidebar-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: transparent;
}
.mobile-nav .sidebar-nav .metismenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobile-nav .sidebar-nav .metismenu > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.mobile-nav .sidebar-nav .metismenu a {
  position: relative;
  display: block;
  padding: 10px 15px;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  text-decoration: none;
  color: #fff;
  outline-width: 0;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.mobile-nav .sidebar-nav .metismenu ul a {
  padding: 10px 15px 10px 35px;
  position: relative;
}
.mobile-nav .sidebar-nav .metismenu ul a:hover {
  padding-left: 40px;
}
.mobile-nav .sidebar-nav .metismenu ul a:hover::before {
  background-color: #fff;
}
.mobile-nav .sidebar-nav .metismenu ul a::before {
  position: absolute;
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  content: "";
  top: 50%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mobile-nav .sidebar-nav .metismenu ul ul {
  list-style-type: circle !important;
}
.mobile-nav .sidebar-nav .metismenu ul ul a {
  padding: 10px 15px 10px 45px;
}
.mobile-nav .sidebar-nav .metismenu a:hover,
.mobile-nav .sidebar-nav .metismenu a:focus,
.mobile-nav .sidebar-nav .metismenu a:active {
  text-decoration: none;
  color: #0D0D0F;
  background: var(--primary-color);
}

#hamburger {
  color: var(--primary-color);
  font-size: 32px;
  line-height: 1;
  text-align: right;
  display: none;
}
#hamburger i {
  cursor: pointer;
}
.action-bar {
  margin-top: 30px;
  padding-left: 20px;
}
.action-bar a {
  color: #ffffff;
  display: block;
}
.action-bar a i {
  margin-right: 10px;
}
.action-bar a.default-btn {
  text-align: center;
  background: #ffffff;
  color: var(--primary-color) !important;
}

/* ---------------------------------
    Offset Canvas Menu Style 
------------------------------------*/
.offset-menu {
  position: fixed;
  height: 100vh;
  top: 0;
  z-index: 9999999;
  opacity: 0;
  visibility: hidden;
  right: -30%;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  background-color: #ff6c02;
  -webkit-box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
          box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
}
.offset-menu.show {
  opacity: 1;
  visibility: visible;
  right: 0;
}
.offset-menu .offset-menu-wrapper {
  width: 360px;
  padding: 80px 30px;
}
.offset-menu .default-btn {
  padding: 20px 45px;
  font-weight: 500;
  margin-top: 40px;
}
.offset-menu .offset-menu-section {
  margin-top: 40px;
}
.offset-menu .offset-menu-section h3, .offset-menu .offset-menu-section h4, .offset-menu .offset-menu-section h5 {
  line-height: 1;
  margin-bottom: 20px;
}
.offset-menu .offset-menu-section a {
  margin-bottom: 10px;
}
.offset-menu .offset-menu-section ul li {
  margin-bottom: 5px;
}
.offset-menu .offset-menu-section ul li span {
  margin-right: 10px;
}
.offset-menu #offset-menu-close-btn {
  position: fixed;
  right: 30px;
  font-size: 28px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  color: #fff;
  cursor: pointer;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  z-index: 9;
  top: 20px;
}
.offset-menu #offset-menu-close-btn:hover {
  color: var(--primary-color);
}
.offset-menu .offset-menu-footer {
  margin-top: 35px;
}
.offset-menu .offset-menu-social-icon a {
  font-size: 16px;
  background: #ff6c02;
  display: inline-block;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-right: 5px;
}
.offset-menu .offset-menu-social-icon a:hover {
  background: var(--primary-color);
}
.offset-menu img {
  display: inline-block;
  background: #fff;
  padding: 10px 20px;
}
/* ----------------------------------
   Hero Section - Styles
 ------------------------------------ */
.hero-1 .single-slide {
  padding-top: 160px;
  padding-bottom: 160px;
  background-position: top center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hero-1 .single-slide .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-1 .single-slide .hero-contents {
  position: relative;
  z-index: 2;
}
.hero-1 .single-slide .hero-contents h1 {
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: rgb(0, 0, 0) 3px 3px 3px;
  transition: none 0s ease 0s;
  text-align: center;
  border-width: 0px;
  font-size: 80px;
  margin-bottom: 20px;
  padding: 0px;
  letter-spacing: 0px;
}
.hero-1 .single-slide .hero-contents h6 {
  display: inline-block;
}
.hero-1 .single-slide .hero-contents p {
  margin-top: 20px;
  display: block;
  font-size: 18px;
  font-weight: 500;
}
.hero-1 .single-slide .hero-contents a {
  padding: 10px 40px;
  font-size: 30px;
  border: 4px solid #ffffff;
}
.hero-1 .single-slide .hero-contents a:hover {
  color: #FFF !important;
}
.hero-1 .single-slide .hero-contents h6 {
  position: relative;
  padding-left: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}
.hero-1 .single-slide .hero-contents h6::before {
  position: absolute;
  left: 0;
  content: "//";
  color: #fff;
}
.hero-1 .single-slide [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-transition: opacity 0.5s ease 0.3s;
  transition: opacity 0.5s ease 0.3s;
  -webkit-transition: 1s;
  transition: 1s;
}
.hero-1 .slick-nav {
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
}
.hero-1 .slick-nav.prev-arrow {
  left: 3%;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  z-index: 999;
}
.hero-1 .slick-nav.next-arrow {
  left: auto;
  right: 3%;
}
.hero-1 .slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}
.hero-1 .slick-nav i:before, .hero-1 .slick-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  margin: -1px 0 0 -5px;
  display: block;
  -webkit-transform-origin: 9px 50%;
          transform-origin: 9px 50%;
}
.hero-1 .slick-nav i:before {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}
.hero-1 .slick-nav i:after {
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}
.hero-1 .slick-nav::before, .hero-1 .slick-nav::after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
}
.hero-1 .slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: #fff;
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.hero-1 .slick-nav.animate svg {
  -webkit-animation: stroke 1s ease forwards 0.3s;
          animation: stroke 1s ease forwards 0.3s;
}
.hero-1 .slick-nav.animate i {
  -webkit-animation: arrow 1.6s ease forwards;
          animation: arrow 1.6s ease forwards;
}
.hero-1 .slick-nav.animate i:before {
  -webkit-animation: arrowUp 1.6s ease forwards;
          animation: arrowUp 1.6s ease forwards;
}
.hero-1 .slick-nav.animate i:after {
  -webkit-animation: arrowDown 1.6s ease forwards;
          animation: arrowDown 1.6s ease forwards;
}
.hero-1 .animated {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hero-2 .single-slide {
  padding: 240px 0px;
  background-position: top center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hero-2 .single-slide .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-2 .single-slide .slide-bg::before, .hero-2 .single-slide .slide-bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #0D0D0F;
  opacity: 0.4;
  z-index: -1;
}
.hero-2 .single-slide .hero-contents {
  position: relative;
  z-index: 2;
}
.hero-2 .single-slide .hero-contents h1 {
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1.1;
  font-size: 148px;
  color: #fff;
}
.hero-2 .single-slide .hero-contents h2 {
  color: var(--primary-color);
  margin-bottom: 0;
  text-transform: capitalize;
  font-weight: 600;
}
.hero-2 .single-slide .hero-contents p {
  margin-top: 20px;
  display: block;
  color: #fff;
  font-size: 20px;
}
.hero-2 .single-slide .hero-contents .play-text {
  color: #FFF;
  padding-left: 5px;
}
.hero-2 .layer1 {
  position: absolute;
  left: -600px;
  top: 190px;
  background: linear-gradient(92.51deg, rgba(37, 106, 215, 0.4) 29.19%, rgba(95, 45, 238, 0.4) 79.13%);
  -webkit-transform: rotate(-44.13deg);
          transform: rotate(-44.13deg);
  content: "";
  height: 192px;
  width: 1800px;
  z-index: 2;
  -webkit-animation: layerBounce 1s linear 1.1s 1;
          animation: layerBounce 1s linear 1.1s 1;
}
.hero-2 .layer2 {
  position: absolute;
  left: -330px;
  top: 190px;
  -webkit-transform: rotate(-44.13deg);
          transform: rotate(-44.13deg);
  background: #ff6c02;
  content: "";
  height: 192px;
  width: 1800px;
  z-index: 2;
  opacity: 0.16;
  -webkit-animation: layerBounce 1s linear 1.3s 1;
          animation: layerBounce 1s linear 1.3s 1;
}
.hero-2 .single-slide [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-transition: opacity 0.5s ease 0.3s;
  transition: opacity 0.5s ease 0.3s;
  -webkit-transition: 1s;
  transition: 1s;
}
.hero-2 .animated {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hero-3 {
  position: relative;
}
.hero-3 .single-slide {
  padding: 80px 0px 180px;
  position: relative;
  z-index: 1;
}
.hero-3 .single-slide::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff6c02), to(var(--primary-color)));
  background: linear-gradient(180deg, #ff6c02 0%, var(--primary-color) 100%);
}
.hero-3 .single-slide::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-image: url("../img/home3/square-shape.png");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: .2;
  background-position: center top;
}
.hero-3 .single-slide .hero-contents {
  position: relative;
  z-index: 2;
}
.hero-3 .single-slide .hero-contents h1 {
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1.2;
  font-size: 80px;
  color: #FFF;
}
.hero-3 .single-slide .hero-contents h1 span {
  color: var(--primary-color);
  text-decoration: underline;
}
.hero-3 .single-slide .hero-contents p {
  font-size: 20px;
  margin-bottom: 10px;
  color: #FFF;
  text-transform: capitalize;
}
.hero-3 .single-slide .hero-contents .play-text {
  color: #FFF;
  padding-left: 5px;
}
.hero-3::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 100%;
  background-image: url("../img/home3/wave-shape.png");
  height: 155px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 9;
}
.slide-right-dots {
  position: absolute;
  right: 20px;
  z-index: 9;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
}
.slide-right-dots li {
  display: block;
  width: 100%;
}
.slide-right-dots li.slick-active button::before {
  opacity: 1;
  visibility: visible;
}
.slide-right-dots li button {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  margin: 2px 0px;
  display: inline-block;
  text-indent: -3000em;
}
.slide-right-dots li button::before {
  position: absolute;
  width: 6px;
  height: 6px;
  content: "";
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.slide-dots {
  position: absolute;
  left: 50%;
  bottom: 40px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
.slide-dots li {
  display: inline-block;
  margin: 0 4px;
  text-align: center;
}
.slide-dots li button {
  position: relative;
  text-indent: -9999px;
  border: 1px solid rgba(248, 248, 248, 0.4);
  border-radius: 30px;
  width: 16px;
  height: 16px;
  background-color: rgba(248, 248, 248, 0.4);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.slide-dots li button:hover {
  background-color: var(--primary-color);
}
.slide-dots li.slick-active button {
  background-color: #FFF;
  border-color: #FFF;
}
.section-padding {
  padding: 60px 0px;
}
.section-title {
  margin-bottom: 30px;
}
.section-title.text-white > span::before {
  color: #FFF !important;
}
.section-title > span {
  position: relative;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  background: #ff6c02;
  background: -webkit-gradient(linear, left top, right top, from(#ff6c02), to(var(--primary-color)));
  background: linear-gradient(to right, #ff6c02, var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-left: 22px;
}
.section-title > span::before {
  position: absolute;
  left: 0;
  bottom: 3px;
  content: "//";
  background: #ff6c02;
  background: -webkit-gradient(linear, left top, right top, from(#ff6c02), to(var(--primary-color)));
  background: linear-gradient(to right, #ff6c02, var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 18px;
}
.section-title h2 {
  font-size: 38px;
  text-transform: capitalize;
}
.section-title h2 span {
  color: var(--primary-color);
}
.section-title h6 {
  color: #0d0d0f;
  position: relative;
  display: inline-block;
  padding: 0px 20px;
  font-size: 22px;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 12px;
  font-weight: 500;
}
.section-protection {
  background: var(--primary-color);
}
.about-wrapper .section-title p {
  margin-bottom: 15px;
}
.about-wrapper .section-title p:last-child {
  margin-bottom: 0;
}
.about-wrapper .section-title {
  margin-bottom: 40px;
}
.about-images-video-popup img {
  border-radius: 4px;
}
.about-techno a {
  display: block;
}
.about-techno p {
  margin-top: 20px;
}
.industries-service-img {
  margin: 0 -12px;
  height: 100%;
}
.industries-service-img img {
  width: 100%;
  height: 100%;
}
.service-content {
  position: relative;
  background: var(--primary-color);
  color: #fff;
  padding: 80px 50px 50px 50px;
  height: 100%;
} 
.service-content-group .description {
  letter-spacing: 2px;
  text-align: justify;
}
.service-content-group .service-content h2 {
  letter-spacing: 2px;
}
.service-content-group {
  margin: 0 -12px;
  height: 100%;
}
.single-project-card {
  position: relative;
  width: 100%;
  background-size: cover;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 25px !important;
}
.single-project-card:hover::before {
  opacity: 0.4;
  -webkit-transform: scale(1);
          transform: scale(1);
  visibility: visible;
}
.single-project-card:hover .plus-link {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.single-project-card::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background: var(--secondary-color);
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
}
.single-project-card .plus-link {
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 50%;
  line-height: 60px;
  border: 2px solid #fff;
  font-size: 24px;
  position: absolute;
  left: 50%;
  top: 40%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  z-index: 2;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.single-project-card .plus-link:hover {
  background: var(--primary-color);
  color: #ffffff !important;
  border-color: var(--primary-color);
}
.single-project-card .content {
  position: relative;
  z-index: 1;
}
.single-project-card .content h3 {
  margin-bottom: 5px;
  color: #fff;
}
.single-project-card .content p {
  color: #fff;
}
.single-testimonial-card {
  border: 1px solid rgba(109, 109, 109, 0.16);
  padding: 30px 25px;
  border-radius: 8px;
  margin-top: 30px !important;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.single-testimonial-card:hover {
  border-color: var(--primary-color);
}
.single-testimonial-card .client-img {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  float: left;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: relative;
  margin-right: 35px;
}
.single-testimonial-card .client-img::before {
  position: absolute;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  text-align: center;
  background: var(--primary-color);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  color: #ffffff;
  content: "\f10d";
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  line-height: 48px;
  right: -10px;
  font-weight: 900;
  bottom: 0;
}
.single-testimonial-card .content p {
  text-transform: capitalize;
}
.single-testimonial-card .content {
  overflow: hidden;
}
.single-testimonial-card .content .client-rating {
  margin-bottom: 5px;
}
.single-testimonial-card .content .client-rating i {
  color: #F9DE59;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  cursor: pointer;
}
.single-testimonial-card .content .client-rating i:hover {
  color: #F9DE59;
}
.single-testimonial-card .content h4 {
  margin-bottom: 3px;
  text-transform: capitalize;
}
.single-testimonial-card .content span {
  text-transform: capitalize;
}
.testimonial-carousel-wrapper {
  padding: 60px 0 120px;
}
.testimonial-carousel-grid-active {
  position: relative;
}
.testimonial-carousel-grid-active .slick-slide {
  margin: 0 15px;
}
.testimonial-carousel-grid-active .slick-list {
  margin: 0 -15px;
}
.testimonial-carousel-grid-active .circle-dots {
  bottom: -70px;
}
.cta-banner-box {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: -95px;
  padding: 40px 0;
  z-index: 2;
  position: relative;
  background: var(--primary-color);
}
.single-testimonial-box {
  background-color: #fff;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  padding: 0px 35px 60px;
  margin-top: 80px;
}
.single-testimonial-box:hover {
  -webkit-box-shadow: 0px 10px 35px 0px rgba(38, 42, 76, 0.1);
          box-shadow: 0px 10px 35px 0px rgba(38, 42, 76, 0.1);
}
.single-testimonial-box .client-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #f8f8f8;
  -webkit-box-shadow: 0px 10px 35px 0px rgba(38, 42, 76, 0.1);
          box-shadow: 0px 10px 35px 0px rgba(38, 42, 76, 0.1);
  margin: 0 auto;
  display: inline-block;
  margin-top: -50px;
  position: relative;
  z-index: 1;
}
.single-testimonial-box .client-img::before {
  position: absolute;
  content: "\f10e";
  left: 50%;
  top: 0;
  font-family: "Font Awesome 5 Pro";
  color: #5f2dee;
  font-size: 20px;
  font-weight: 400;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.single-testimonial-box .client-info {
  margin-top: 15px;
}
.single-testimonial-box .client-info h4 {
  margin-bottom: 5px;
  text-transform: capitalize;
}
.single-testimonial-box .feedback {
  position: relative;
  margin-top: 20px;
}
.single-testimonial-box .feedback p {
  margin: 20px 0px;
}
.single-testimonial-box .feedback .star {
  color: var(--primary-color);
  line-height: 1;
}
.single-testimonial-box .feedback .star span {
  margin: 0 1px;
}
.project-showcase-carousel-active .slick-slide {
  margin: 0 15px;
}
.project-showcase-carousel-active .slick-list {
  margin: 0 -15px;
}
.case-study-carousel-arrow div {
  width: 52px;
  display: inline-block;
  height: 52px;
  border-radius: 50%;
  line-height: 52px;
  border: 1px solid rgba(109, 109, 108, 0.8);
  background: transparent;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  color: #6D6D6DCC;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
}
.case-study-carousel-arrow div:hover {
  color: #0D0D0F;
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.case-cat-filter button {
  border: none;
  background-color: #fff;
  display: inline-block;
  padding: 12px 20px;
  line-height: 1;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin: 0px 5px;
  font-weight: 600;
  -webkit-box-shadow: 0px 16px 32px 0px rgba(51, 51, 51, 0.04);
          box-shadow: 0px 16px 32px 0px rgba(51, 51, 51, 0.04);
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
  color: #0D0D0F;
  border-radius: 7px;
}
.case-cat-filter button.active, .case-cat-filter button:hover {
  background-color: var(--primary-color);
}
.case-grid-photos {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  grid-gap: 30px;
}
.case-study-post-wrapper .case-details-content p {
  margin-bottom: 20px;
  margin-top: 10px;
}
.case-study-post-wrapper .case-details-content p:nth-child(1)::first-letter {
  font-size: 20px;
  color: #fff;
  border-radius: 7px;
  background-color: var(--primary-color);
  -webkit-box-shadow: 0px 10px 30px 0px rgba(8, 106, 215, 0.5);
          box-shadow: 0px 10px 30px 0px rgba(8, 106, 215, 0.5);
  padding: 20px;
  line-height: 1;
  margin-right: 15px;
  float: left;
  overflow: hidden;
  font-weight: 700;
  text-transform: uppercase;
}
.case-study-post-wrapper .case-details-content ul {
  margin-top: 20px;
}
.case-study-post-wrapper .case-details-content ul li {
  color: #0D0D0F;
  margin-top: 8px;
  padding-left: 30px;
  font-weight: 700;
}
.case-study-post-wrapper .case-details-content ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Pro";
  font-size: 20px;
  color: #5f2dee;
}
.case-info-card {
  border-radius: 7px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 7px;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(212, 212, 212, 0.38);
          box-shadow: 0px 10px 60px 0px rgba(212, 212, 212, 0.38);
  margin-top: -70px;
  position: relative;
}
.case-info-card .case-head {
  padding: 20px 35px;
  background-color: #5f2dee;
}
.case-info-card .case-head h3 {
  color: #fff;
  margin-bottom: 5px;
  padding-top: 5px;
}
.case-info-card .project-data {
  padding: 35px;
}
.case-info-card .project-data .single-info-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30% 65%;
      grid-template-columns: 30% 65%;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  grid-gap: 50px;
  margin-bottom: 10px;
}
.case-info-card .project-data .single-info-item .left-data {
  color: #0D0D0F;
  position: relative;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.case-info-card .project-data .single-info-item .left-data::before {
  position: absolute;
  right: -10px;
  content: ":";
}
.case-info-card .project-data .single-info-item .right-data {
  color: #5f2dee;
  font-weight: 700;
}
.case-info-card .project-data .single-info-item .social-link a {
  display: inline-block;
  margin: 0px 4px;
  color: var(--primary-color);
  font-weight: 400;
}
.case-info-card .project-data .single-info-item .social-link a:hover {
  color: #5f2dee;
}
.project-case-study {
  padding: 0px 30px;
}
.project-case-study.owl-carousel .owl-item.center .single-project-card .contents {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
.project-case-study .single-project-card {
  -webkit-clip-path: polygon(13% 0, 100% 0, 100% 100%, 52% 100%, 0 100%, 0 14%);
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 52% 100%, 0 100%, 0 14%);
  position: relative;
  margin-top: 30px;
}
.project-case-study .single-project-card .case-thumb {
  height: 530px;
}
.project-case-study .single-project-card .contents {
  width: 90%;
  background-color: #fff;
  border-radius: 7px;
  position: absolute;
  left: 50%;
  bottom: 0px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 9;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.project-case-study .single-project-card .contents h3 {
  margin-bottom: 20px;
}
.project-case-study .single-project-card .contents .default-btn {
  margin-top: 20px;
}
.project-case-study .owl-dots {
  margin-top: 30px !important;
  margin-bottom: -10px;
}
.project-case-study .owl-dots .owl-dot {
  border-width: 3px;
  border-color: transparent;
  border-style: solid;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-block;
  line-height: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  position: relative;
  margin: 0px 5px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.project-case-study .owl-dots .owl-dot:hover, .project-case-study .owl-dots .owl-dot.active {
  border-color: #5f2dee;
}
.project-case-study .owl-dots .owl-dot:hover span, .project-case-study .owl-dots .owl-dot.active span {
  background-color: #5f2dee;
}
.project-case-study .owl-dots .owl-dot span {
  background-color: #dae9f9;
  margin: 0;
  line-height: 24px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 50%;
  margin-left: -5px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.single-photo-grid {
  margin-bottom: 25px;
}
.single-photo-grid img {
  border-radius: 4px;
}
.testimonial-carousel-wrapper-active {
  margin-top: -30px;
}
.testimonial-carousel-wrapper-active .single-testimonial-box {
  padding: 0px 20px 30px;
  background-color: #fff;
}
.testimonial-carousel-wrapper-active .slide-dots {
  margin-bottom: -15px;
}
.testimnial-carousel-wrapper {
  padding: 65px 0px 70px;
}
.single-customer-review {
  background: #FFFFFF;
  -webkit-box-shadow: -8px 0px 1px rgba(37, 106, 215, 0.04), 8px 0px 24px rgba(37, 106, 215, 0.12);
          box-shadow: -8px 0px 1px rgba(37, 106, 215, 0.04), 8px 0px 24px rgba(37, 106, 215, 0.12);
  border-radius: 8px;
  padding: 30px 60px;
  margin: 50px;
}
.single-customer-review .rating {
  margin-bottom: 20px;
}
.single-customer-review .rating i {
  color: #F9DE59;
}
.single-customer-review p {
  font-size: 18px;
  font-family: 600;
}
.single-customer-review .client-info-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
.single-customer-review .client-info-card .img-wrapper {
  width: 100px;
  height: 100px;
  border: 6px solid #5f2dee;
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.single-customer-review .client-info-card .img-wrapper .client-img {
  width: 80px;
  height: 80px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 50%;
  background-color: #f8f8f8;
  border: 2px solid var(--primary-color);
  position: relative;
}
.single-customer-review .client-info-card .client-details {
  margin-left: 20px;
}
.single-customer-review .client-info-card .client-details h4 {
  margin-bottom: 0px;
}
.single-pricing-plan {
  background-color: var(--primary-color);
  position: relative;
  padding: 60px;
  margin-top: 30px;
  border-radius: 4px;
}
.single-pricing-plan .plan-title h2 {
  text-transform: capitalize;
  margin-top: -5px;
}
.single-pricing-plan .plan-value {
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 25px;
}
.single-pricing-plan .plan-value span {
  display: block;
  font-size: 80px;
  font-family: "Montserrat", sans-serif;
  color: var(--primary-color);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -3px;
  margin-bottom: 10px;
}
.single-pricing-plan .plan-buy-btn {
  position: relative;
  z-index: 1;
  padding-top: 15px;
  font-size: 16px;
}
.single-pricing-plan .plan-buy-btn::before {
  position: absolute;
  left: -15%;
  top: 0;
  background-color: #fff;
  width: 130%;
  height: 70%;
  z-index: -1;
  content: "";
}
.single-pricing-plan .plan-buy-btn .default-btn {
  margin-top: 10px;
  background: #5f2dee;
  color: #fff;
}
.single-pricing-plan .plan-buy-btn .default-btn:hover {
  background: var(--primary-color);
  color: #fff;
}
.single-pricing-plan .plan-buy-btn .default-btn i {
  margin-left: 8px;
}
.single-pricing-plan .plan-service-list {
  margin-top: 40px;
  display: block;
}
.single-pricing-plan .plan-service-list li {
  margin-top: 12px;
  position: relative;
  color: #0D0D0F;
}
.single-pricing-plan .plan-service-list li.no::before, .single-pricing-plan .plan-service-list li.not::before {
  content: "\f00d";
}
.single-pricing-plan .plan-service-list li::before {
  position: absolute;
  right: 0;
  top: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
  opacity: .5;
}
.get-in-touch .single-contact-info {
  margin-top: 5px;
}
.get-in-touch .single-contact-info .icon {
  float: left;
  overflow: hidden;
  margin-right: 15px;
  color: #f8f9fa;
  padding-left: 2px;
}
.get-in-touch .single-contact-info .icon.id2 {
  color: #f8f9fa;
}
.get-in-touch .single-contact-info .icon.id3 {
  color: #f8f9fa;
}
.get-in-touch .single-contact-info .contact-info {
  overflow: hidden;
  color: #FFF;
}
.contact-form {
  padding-top: 40px;
}
.contact-form .single-personal-info {
  margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #f8f8f8;
  line-height: 1;
  padding: 25px 30px;
  border: 0px;
}
.contact-form textarea {
  height: 180px;
}
.contact-form label {
  color: #202426;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.contact-form label span {
  color: #727475;
  margin-left: 5px;
}
.contact-form input[type='submit'],
.contact-form .submit-btn {
  background: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  line-height: 1;
  padding: 25px 40px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  width: 280px;
}
.contact-form input[type='submit'].active, .contact-form input[type='submit']:hover,
.contact-form .submit-btn.active,
.contact-form .submit-btn:hover {
  background-color: var(--primary-color);
}
.contact-form input[type='submit'] i,
.contact-form .submit-btn i {
  margin-right: 8px;
}
.single-contact-card {
  background-color: #F3F2F8;
  padding: 40px;
  margin-bottom: 30px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.single-contact-card h4 {
  margin-bottom: 0px;
}
.single-contact-card p {
  font-size: 16px;
  font-weight: 500;
  color: #0D0D0F;
  line-height: 28px;
}
.single-contact-card:hover {
  background-color: var(--primary-color);
}
.single-contact-card:hover .icon {
  color: #0D0D0F !important;
  background-color: #ffffff !important;
}
.single-contact-card:hover .bottom-part .icon {
  color: var(--primary-color) !important;
  background-color: #fff !important;
}
.single-contact-card:hover p,
.single-contact-card:hover span, .single-contact-card:hover h4 {
  color: #fff;
  text-transform: capitalize;
}
.single-contact-card:hover p a {
  color: #fff;
  text-transform: lowercase;
}
.single-contact-card .top-part {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-contact-card .top-part .icon {
  width: 70px;
  height: 70px;
  font-size: 20px;
  line-height: 70px;
  border-radius: 50%;
  background-color: var(--primary-color);
  text-align: center;
  float: left;
  color: #ffffff;
  overflow: hidden;
  margin-right: 20px;
}
.single-contact-card .top-part .title {
  overflow: hidden;
}
.single-contact-card .bottom-part {
  margin-top: 25px;
  overflow: hidden;
}
.single-contact-card .bottom-part .icon {
  width: 50px;
  height: 50px;
  font-size: 14px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  float: right;
  overflow: hidden;
  margin-left: 20px;
}
.single-contact-card .bottom-part .info {
  display: inline-block;
  overflow: hidden;
}
.contact-map-wrap iframe {
  height: 450px;
}
.contact-img-wrapper {
  position: relative;
  z-index: 1;
}
.contact-img-wrapper img {
  border-radius: 8px;
}
.contact-img-wrapper::after {
  position: absolute;
  width: 0;
  height: 0;
  border-bottom: 330px solid var(--primary-color);
  border-left: 330px solid transparent;
  content: "";
  right: -25px;
  bottom: -25px;
  z-index: -1;
}
footer {
  background: linear-gradient(hsla(0, 0%, 0%, 0.750)),url(../img/footer-bg-img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
footer ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
footer ul li {
  list-style: none;
}
footer .footer-widgets-wrapper {
  padding: 60px 0px;
  padding-top: 120px;
}
footer .single-footer-wid .wid-title {
  margin-bottom: 25px;
}
footer .single-footer-wid .wid-title h3 {
  color: #FFF;
}
footer .single-footer-wid ul li a {
  margin-top: 8px;
  color: #6D6D6D;
  display: block;
  text-transform: capitalize;
  font-size: 16px;
}
footer .single-footer-wid ul li a:hover {
  color: var(--primary-color) !important;
}
footer.footer-2 {
  background-color: #ff6c02;
}
footer.footer-2.bg-overlay::before {
  opacity: .9;
}
footer.footer-2 .footer-bottom {
  background: transparent;
}
footer.footer-2 .footer-bottom .bottom-content-wrapper {
  background: #ff6c02;
}
footer .footer-bottom {
  background-color: #191a1b;
}
footer .footer-bottom .bottom-content-wrapper {
  padding: 20px 0;
}
footer .footer-bottom .bottom-content-wrapper p, footer .footer-bottom .bottom-content-wrapper b, footer .footer-bottom .bottom-content-wrapper strong {
  color: #ffffff;
  text-transform: capitalize;
}
footer .footer-bottom .bottom-content-wrapper ul li {
  display: inline-block;
}
footer .footer-bottom .bottom-content-wrapper ul li:first-of-type a {
  margin-left: 0;
}
footer .footer-bottom .bottom-content-wrapper ul li a {
  display: inline-block;
  margin-left: 15px;
  color: #0D0D0F;
  text-transform: capitalize;
}
footer .footer-bottom .social-links a {
  display: inline-block;
  margin-right: 15px;
  color: #ffffff;
}
footer .footer-bottom .social-links a:hover {
  color: #ff6c02;
}
footer .footer-bottom .social-links a:last-of-type {
  margin-left: 0;
}
.footer-social-icon {
  margin-top: 25px;
}
.footer-social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  background-color: #ff6c02;
  color: #FFF;
  font-size: 16px;
  margin-right: 5px;
}
.newsletter_widget .newsletter_box {
  position: relative;
  margin-top: 30px;
}
.newsletter_widget .newsletter_box input {
  border: 0px;
  border-radius: 0;
  width: 100%;
  position: relative;
  background-color: var(--primary-color);
  height: 64px;
  padding-left: 25px;
  padding-right: 15px;
  line-height: 64px;
  color: #0D0D0F;
}
.newsletter_widget .newsletter_box input::-webkit-input-placeholder {
  color: #0D0D0F;
}
.newsletter_widget .newsletter_box input:-ms-input-placeholder {
  color: #0D0D0F;
}
.newsletter_widget .newsletter_box input::-ms-input-placeholder {
  color: #0D0D0F;
}
.newsletter_widget .newsletter_box input::placeholder {
  color: #0D0D0F;
}
.newsletter_widget .newsletter_box button {
  height: 100%;
  color: var(--primary-color);
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  background: #ff6c02;
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
}
.newsletter_widget .newsletter_box button:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Responsive */
@media (max-width: 1399.98px) {
  header .main-menu ul > li > a {
    padding: 40px 15px;
  }  
  .default-btn {
    padding: 16px 30px;
  } 
  .single-project-card {
    height: 370px;  
  }
  .hero-1 .single-slide .hero-contents h1 {
    font-size: 60px;
  }
  .hero-1 .single-slide .hero-contents a {
    padding: 8px 40px;
    font-size: 22px;
  } 
  .section-title h2 {
    font-size: 32px;
  } 
  
}
@media (max-width: 1299.98px) {
  h2 {
    font-size: 26px;
  }  
}
@media (max-width: 1199.98px) {
  .logo img {
    width: 120px;
  }
  header .main-menu ul > li > a {
    padding: 25px 10px;
    font-size: 15px;
  }
  .default-btn {
    padding: 14px 25px;
    font-size: 14px;
  }  
  .hero-1 .single-slide .hero-contents h1 {
    font-size: 50px;
  }
  h3 {
    font-size: 22px;
  }
  .trans-btn {
    padding: 8px 35px;
    font-size: 20px;
    background-color: var(--secondary-color);
    color: black;
  }
  .section-title h2 {
    font-size: 30px;
  } 
  .testimonial-carousel-wrapper {
    padding: 40px 0 90px;
  }
}
@media (max-width: 991.98px) {
  
  #hamburger {
    display: block;
  }
  .section-padding {
    padding: 40px 0px;
  }
  .section-title h2 {
    font-size: 26px;
  }
  .hero-1 .single-slide {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .single-project-card {
    height: 350px;
  }
  .social-links {
    text-align: center;
    margin: 15px 0 0;
  }
  .copy-rights {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  
  .hero-1 .single-slide .hero-contents h1 {
    font-size: 40px;
  }
  h3 {
    font-size: 20px;
  }
  .hero-1 .single-slide {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .hero-1 .single-slide .hero-contents a {
    padding: 8px 40px;
    font-size: 16px;
  }
  .single-project-card {
    height: 540px;
  }
  .service-content {
    padding: 40px 40px 40px 40px;
  }
}
@media (max-width: 575.98px) {
  footer .single-footer-wid .wid-title {
    margin-top: 25px;
  }
  .single-project-card {
    height: 575px;
  }
  .hero-1 .single-slide .hero-contents h3 {
    max-width: 450px;
    margin: auto;
    font-size: 16px;
  }
  .cta-banner-box {
    padding: 30px 20px;
  }
  .hero-1 .single-slide .hero-contents h1 {
    font-size: 26px;
  }
  .hero-1 .slick-nav {
    display: none !important;
  }
  .service-content-group .description {
    letter-spacing: 0px;
    text-align: left;
  }
  
}
@media (max-width: 299.98px) {
  
  
}

/* ///////////  */
.about-wrapper .fa-solid {
  color: var(--secondary-color);
}

.bg-section-green {
  background-color: var(--primary-color);
}
.product-section .grid-item {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid #f2f2f2;
    margin-top: 25px;
}
.product-section .product-content {
    padding: 20px;
    border-top: 1px solid #f2f2f2;
}
.product-section .product-content h2 {
    text-align: center;
    font-size: 22px;
}
.product-section .single-project-card {
    margin-top: 0 !important;
}
.product-grid {
  .nav .nav-item button.active {
  background-color: transparent;
  color: var(--bs-danger) !important;
}
.product-grid-container .nav .nav-item button.active::after {
  content: "";
  border-bottom: 4px solid var(--bs-danger);
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
  border-radius: 5px 5px 0 0;
}

}
.product-grid-section {
    background-color: #1eba8b;
}
.product-grid-container .tab-content {
  background-color: #fff;
  width: 100%;
  padding: 25px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid #f2f2f2;
}
.product-grid-container .tab-content img {
  margin-bottom: 25px;
  width: 100%;
}
.product-grid-container .nav .nav-item button.active img {
  filter: invert(2);
}
