:root {
  --themecolor: #f7c25e;
  --themecolorrgba: 247, 194, 94;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-bg: #fff;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}
* {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  line-height: 1.5;
  color: #333;
  font-family: "Heebo", sans-serif;
  margin: 0;
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#wrapper {
  position: relative;
  float: none;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
#content {
  position: relative;
  background-color: #fff;
}
.content-wrap {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.stretched #wrapper {
  width: 100%;
  margin: 0;
  box-shadow: none;
}
.col-mb-30 {
  --col-mb: 30px;
}
.col-mb-50 {
  --col-mb: 50px;
}
[class*="col-mb-"] {
  margin-bottom: calc(var(--col-mb) / -1);
}
[class*="col-mb-"] > .col,
[class*="col-mb-"] > [class*="col-"] {
  padding-bottom: var(--col-mb);
}
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
img,
svg {
  vertical-align: middle;
}
img {
  max-width: 100%;
}
.rounded-pill {
  border-radius: 50rem !important;
}
a {
  text-decoration: none !important;
  color: #1abc9c;
}
.button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  margin: 5px;
  padding: 8px 22px;
  font-size: 0.875rem;
  line-height: 24px;
  background-color: #1abc9c;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  text-shadow: 1px 1px 1px rgb(0 0 0 / 20%);
}
.button.button-reveal span {
  display: inline-block;
  position: relative;
  left: 0;
  transition: all 0.2s linear;
}
.button.button-reveal.text-end:hover span {
  left: -16px;
}
.button.button-reveal.text-end i {
  opacity: 0;
  left: auto;
  right: 32px;
  background-color: transparent;
  transition: all 0.3s ease !important;
}
.button:hover.button-reveal.text-end i {
  opacity: 1;
  right: -22px;
  transform: translateX(-10px);
}
.button.button-large {
  padding: 8px 26px;
  font-size: 1rem;
  line-height: 30px;
}
.button.button-dark {
  background-color: #444;
}
.tf-ts {
  -webkit-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.translatey-3,
.h-translatey-3:hover {
  transform: translateY(-3px) !important;
}
.button.button-reveal.text-end:hover span {
  left: -16px;
}
.button-hero {
  padding: 23px 48px !important;
  font-size: 1rem;
  border-radius: 50px;
  box-shadow: 0px 13px 18px -14px rgb(0 0 0 / 35%);
}
.button.button-light {
  background-color: #eee;
  color: #333;
  text-shadow: none !important;
}
.button i {
  position: relative;
  margin-right: 5px;
  width: 16px;
  text-align: center;
}
.button.button-reveal {
  padding-left: 28px;
  padding-right: 28px;
  overflow: hidden;
}
.button.button-border {
  border: 2px solid #444;
  background-color: transparent;
  color: #333;
  font-weight: 700;
  text-shadow: none;
}
body:not(.device-touch) .button {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.button.button-border:not(.button-fill):hover {
  background-color: #444;
  color: #fff;
  border-color: transparent !important;
  text-shadow: 1px 1px 1px rgb(0 0 0 / 20%);
}
.overflow-visible {
  overflow: visible !important;
}
.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.shadow {
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%) !important;
}
.text-end {
  text-align: right !important;
}
p,
pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset,
form {
  margin-bottom: 30px;
}
dl,
dt,
dd,
ol,
ul,
li {
  margin: 0;
  padding: 0;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.h-100 {
  height: 100% !important;
}
.min-vh-75 {
  min-height: 75vh !important;
}
.min-vh-md-100 {
  min-height: 100vh !important;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}
.card-title {
  margin-bottom: 0.5rem;
}
.p-0 {
  padding: 0 !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.fw-normal {
  font-weight: 400 !important;
}
.text-center {
  text-align: center !important;
}
.emphasis-title {
  margin: 0 0 50px;
  color: #333;
}
.emphasis-title h1,
.emphasis-title h2 {
  font-size: 64px;
  letter-spacing: -2px;
  text-transform: none;
  margin-bottom: 0;
}
.emphasis-title h1 {
  font-size: calc(8.82629vw + 12.9014px) !important;
  font-weight: 900;
}
.mx-auto {
  float: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
}
.position-relative {
  position: relative !important;
}
.d-flex {
  display: flex !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.justify-content-center {
  justify-content: center !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.flex-column {
  flex-direction: column !important;
}
[class*="col-"]:not([class*="sticky-"]):not([class*="position-"]) {
  position: relative;
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
.m-0 {
  margin: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.ms-2 {
  margin-left: 0.5rem !important;
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.ls3 {
  letter-spacing: 3px !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.fw-bolder {
  font-weight: bolder !important;
}
.fw-extralight {
  font-weight: 100 !important;
}
.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}
.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 30px 0;
  color: #333;
}
h1,
.h1 {
  font-size: calc(1.375rem + 1.5vw);
}
h1 {
  font-size: 36px;
}
h3 {
  font-size: 1.5rem;
}
h4,
.h4 {
  font-size: calc(1.275rem + 0.3vw);
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 0.875rem;
}
h5,
h6 {
  margin-bottom: 20px;
  font-weight: bold;
}
:focus-visible {
  outline: none;
}
.border-0 {
  border: 0 !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.h6,
.h5,
.h4,
.h3,
.h2,
.h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.d-block {
  display: block !important;
}
.gutter-50 {
  --custom-gutter: 50px !important;
}
[class*="gutter-"] {
  --custom-gutter: var(--bs-gutter-x);
  margin-right: calc(var(--custom-gutter) / -2);
  margin-left: calc(var(--custom-gutter) / -2);
  margin-top: calc(var(--custom-gutter) * -1);
}
.section {
  position: relative;
  width: 100%;
  margin: 60px 0;
  padding: 60px 0;
  background-color: #f9f9f9;
  overflow: hidden;
}
.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}
.op-1,
.h-op-1:hover {
  opacity: 1 !important;
}
.op-ts {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#content .container {
  position: relative;
}
.section .container {
  z-index: 2;
}
h1 > span:not(.nocolor):not(.badge),
h2 > span:not(.nocolor):not(.badge),
h3 > span:not(.nocolor):not(.badge),
h4 > span:not(.nocolor):not(.badge),
h5 > span:not(.nocolor):not(.badge),
h6 > span:not(.nocolor):not(.badge) {
  color: #1abc9c;
}
.gradient-horizon,
.h-gradient-horizon:hover {
  background-image: -webkit-linear-gradient(
    90deg,
    rgba(131, 58, 180, 1) 0%,
    rgba(253, 29, 29, 1) 50%,
    rgba(252, 176, 69, 1) 100%
  ) !important;
  background-image: linear-gradient(
    90deg,
    rgba(131, 58, 180, 1) 0%,
    rgba(253, 29, 29, 1) 50%,
    rgba(252, 176, 69, 1) 100%
  ) !important;
}
.gradient-red-yellow,
.h-gradient-red-yellow:hover {
  background-image: -webkit-linear-gradient(
    110.78deg,
    rgb(118, 230, 80) -1.13%,
    rgb(249, 214, 73) 15.22%,
    rgb(240, 142, 53) 32.09%,
    rgb(236, 81, 87) 48.96%,
    rgb(255, 24, 189) 67.94%,
    rgb(26, 75, 255) 85.34%
  ) !important;
  background-image: linear-gradient(
    110.78deg,
    rgb(118, 230, 80) -1.13%,
    rgb(249, 214, 73) 15.22%,
    rgb(240, 142, 53) 32.09%,
    rgb(236, 81, 87) 48.96%,
    rgb(255, 24, 189) 67.94%,
    rgb(26, 75, 255) 85.34%
  ) !important;
}
.color {
  color: #1abc9c !important;
}
.gradient-text {
  text-shadow: none !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#content p {
  line-height: 1.5;
}
.d-inline-block {
  display: inline-block !important;
}
.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
.form-control.error,
.sm-form-control.error {
  border-color: #e42c3e;
}
label.error {
  margin-top: 5px;
  color: #e42c3e;
  font-weight: 400;
  display: none !important;
}
/* Header css :: BEGIN */
#header {
  position: relative;
  background-color: #fff;
  border-bottom: 1px solid #f5f5f5;
}
#header-wrap {
  position: relative;
  background-color: #fff;
  width: 100%;
}
.header-row {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#logo {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  margin-right: auto;
  max-height: 100%;
}
#logo a.standard-logo {
  display: -ms-flexbox;
  display: flex;
}
#logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: 46px !important;
  width: 150px;
}
.fw-light {
  font-weight: 300 !important;
}
[class*="gutter-"] > .col,
[class*="gutter-"] > [class*="col-"] {
  padding-right: calc(var(--custom-gutter) / 2);
  padding-left: calc(var(--custom-gutter) / 2);
  margin-top: var(--custom-gutter);
}
a img {
  border: none;
}
#logo a.retina-logo {
  display: none;
}
.header-misc {
  position: initial;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-left: 15px;
}
#primary-menu-trigger,
#page-menu-trigger {
  display: -ms-flex;
  display: flex;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  cursor: pointer;
  font-size: 0.875rem;
  width: 50px;
  height: 50px;
  line-height: 50px;
  justify-content: center;
  align-items: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.svg-trigger {
  width: 30px;
  height: 30px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.svg-trigger path {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #333;
  stroke-width: 5;
  stroke-linecap: round;
}
.svg-trigger path:nth-child(1) {
  stroke-dasharray: 40 160;
}
.svg-trigger path:nth-child(2) {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}
.svg-trigger path:nth-child(3) {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}
.primary-menu {
  display: -ms-flexbox;
  display: flex;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
}
.menu-container {
  display: none;
  list-style: none;
  margin: 0;
  width: 100%;
}
.menu-item {
  position: relative;
}
.menu-link {
  font-weight: 600;
  font-size: 0.925em;
  display: block;
  line-height: 22px;
  padding: 14px 5px;
  color: #444;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.menu-item:not(:first-child) {
  border-top: 1px solid #eee;
}
.menu-item.current > .menu-link,
.menu-item:hover > .menu-link {
  background-image: -webkit-linear-gradient(
    90deg,
    rgba(131, 58, 180, 1) 0%,
    rgba(253, 29, 29, 1) 50%,
    rgba(252, 176, 69, 1) 100%
  );
  background-image: linear-gradient(
    90deg,
    rgba(131, 58, 180, 1) 0%,
    rgba(253, 29, 29, 1) 50%,
    rgba(252, 176, 69, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header-wrap-clone {
  display: none;
}
/* Header css :: END */

/* Slider section css :: BEGIN */
.slider-element {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slider-inner {
  position: absolute;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.vertical-middle {
  z-index: 3;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 100%;
  justify-content: center;
  flex-flow: column;
}
.slider-element .container,
.slider-element .container-fluid {
  position: relative;
  height: 100%;
}
.owl-carousel.owl-loaded {
  display: block;
}
.slider-element .owl-carousel {
  margin: 0;
}
.owl-carousel {
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
  width: 100%;
  touch-action: manipulation;
  --owl-nav-sizes: 36px;
  --owl-dots-gutters: 4px;
  --owl-dots-sizes: 8px;
  --owl-nav-bg: var(--themecolor, #1abc9c);
  --owl-nav-margin: calc(var(--owl-nav-sizes) / -2);
  --owl-nav-with-dots: calc(
    var(--owl-nav-margin) - calc(calc(30px + var(--owl-dots-sizes)) / 2)
  );
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-carousel .owl-stage::after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-nav .owl-prev,
.owl-nav .owl-next,
.owl-dot,
.owl-dots button {
  cursor: pointer;
  cursor: hand;
  padding: 0;
  border: 0;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.mega-menu-content .owl-carousel.owl-hidden {
  opacity: 1;
}
/* Slider section css :: END */

/* About section css :: BEGIN */
.shape-divider {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.shape-divider[data-position="bottom"],
.shape-divider[data-flip-vertical="true"] {
  transform: rotate(180deg);
}
.shape-divider[data-position="bottom"],
.shape-divider[data-flip-vertical="true"] {
  transform: rotate(180deg);
}
#shape-divider-3040.shape-divider {
  top: -149px;
}
.shape-divider svg {
  position: relative;
  width: 100%;
  width: calc(100% + 1.3px);
  height: 50px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}
#shape-divider-3040.shape-divider svg {
  width: calc(100% + 1.5px);
  height: 150px;
}
.shape-divider-fill {
  fill: #fff;
  transform-origin: center;
  transform: rotateY(0deg);
}
#shape-divider-3040.shape-divider .shape-divider-fill {
  fill: #f4f4f4;
}
.parallax {
  background-color: transparent;
  background-attachment: fixed;
  background-position: 50% 0;
  background-repeat: no-repeat;
  overflow: hidden;
  will-change: auto;
}
.shape-divider {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.shape-divider[data-position="bottom"] {
  top: auto;
  bottom: -1px;
}
.shape-divider[data-position="bottom"],
.shape-divider[data-flip-vertical="true"] {
  transform: rotate(180deg);
}
.shape-divider svg {
  position: relative;
  width: 100%;
  width: calc(100% + 1.3px);
  height: 50px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}
#shape-divider-1821.shape-divider svg {
  width: calc(100% + 1.5px);
  height: 100px;
}
.shape-divider-fill {
  fill: #fff;
  transform-origin: center;
  transform: rotateY(0deg);
}
.counter.counter-xlarge {
  font-size: 64px;
  font-weight: 400;
}
.counter.counter-xlarge {
  font-size: 4.5rem;
  letter-spacing: -2px;
}
.counter + span {
  font-size: 1.125rem;
  line-height: 1.3;
  margin: 0 0 0 12px;
  text-transform: lowercase;
}
.line,
.double-line {
  clear: both;
  position: relative;
  width: 100%;
  margin: 4rem 0;
  border-top: 1px solid #eee;
}
.line.line-sm {
  margin: 2rem 0;
}
/* About section css :: END */

/* Testimonial section css :: BEGIN */
.testimonials-carousel::before {
  content: "\e7ad";
  font-family: font-icons;
  position: absolute;
  top: -20px;
  left: 10px;
  font-size: 5rem;
  color: #eee;
  z-index: 0;
}
.testimonial {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.shadow-none {
  box-shadow: none !important;
}
.testi-content {
  position: relative;
  overflow: hidden;
}
.testi-meta {
  margin-top: 10px;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
}
.testi-meta img {
  width: 40px !important;
  margin-right: 10px;
}
.owl-carousel .owl-dots,
.owl-carousel .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  line-height: 1;
}
#oc-testi.owl-carousel .owl-dots {
  text-align: left;
  margin-left: 20px;
}
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  width: 8px;
  height: 8px;
  margin: 30px 4px 0 4px;
  opacity: 0.5;
  border-radius: 50%;
  background-color: #1abc9c;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.owl-carousel .owl-dots .owl-dot {
  width: var(--owl-dots-sizes);
  height: var(--owl-dots-sizes);
  background-color: var(--owl-nav-bg);
  margin-left: var(--owl-dots-gutters);
  margin-right: var(--owl-dots-gutters);
  transition: all 0.3s;
}
.owl-carousel .owl-dots .owl-dot.active,
.owl-carousel .owl-dots .owl-dot:hover {
  opacity: 1;
}
.clear {
  clear: both;
  display: block;
  font-size: 0px;
  height: 0px;
  line-height: 0;
  width: 100%;
  overflow: hidden;
}
/* Testimonial section css :: END */

/* Projeccts section css :: BEGIN */
.portfolio,
.portfolio-item {
  position: relative;
}
.portfolio-item .portfolio-image {
  position: relative;
  overflow: hidden;
}
.portfolio-item .portfolio-image,
.portfolio-item .portfolio-image > a,
.portfolio-item .portfolio-image img {
  display: block;
  width: 100%;
  height: auto;
}
.portfolio-image img {
  border-radius: 10px;
}
.bg-overlay,
.bg-overlay-bg,
.bg-overlay-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.bg-overlay {
  z-index: 5;
}
.bg-overlay-content {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 20px;
}
.fadeOutUpSmall {
  -webkit-animation-name: fadeOutUpSmall;
  animation-name: fadeOutUpSmall;
}
.overlay-trigger-icon {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 0.25rem;
  font-size: 1.125rem;
  text-align: center;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
  transition: all 0.3s linear;
  display: none;
}
.portfolio-item:hover .overlay-trigger-icon {
  display: block;
}
body:not(.device-touch) .portfolio {
  -webkit-transition: height 0.4s linear;
  -o-transition: height 0.4s linear;
  transition: height 0.4s linear;
}
.portfolio-reveal .portfolio-item {
  overflow: hidden;
}
/* Projeccts section css :: END */

/* faq section css :: BEGIN */
#shape-divider-6989.shape-divider svg {
  width: calc(100% + 1.5px);
  height: 150px;
}
.accordion {
  margin-bottom: 20px;
}
.accordion-header {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
  padding: 1.25rem 0;
  font-size: 1.125rem;
  font-weight: 700;
  border-top: 1px dotted #d5d5d5 !important;
  color: #aaa;
  cursor: pointer;
}
.accordion-header:first-child {
  border-top: none;
}
.accordion-header.accordion-active {
  color: #222;
}
.accordion-icon {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  padding: 0 5px;
  text-align: center;
}
.accordion-header:not(.accordion-active) .accordion-open,
.accordion-active .accordion-closed {
  display: none;
}
.accordion-active .accordion-open {
  display: inline-block;
}
.accordion-title {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  padding: 0 5px;
}
.accordion-content {
  padding-bottom: 2rem;
  padding-left: 30px;
  padding-top: 0;
  position: relative;
}
/* faq section css :: END */

/* Footer section css :: BEGIN */
#footer {
  position: relative;
  background-color: #eee;
  border-top: 5px solid rgba(0, 0, 0, 0.2);
}
#footer .footer-widgets-wrap {
  position: relative;
  padding: 80px 0;
}
.widget {
  position: relative;
  margin-top: 50px;
}
.social-icon.si-small {
  width: 32px;
  height: 32px;
  font-size: 0.875rem;
  line-height: 30px !important;
  margin: 0 5px 5px 0;
  color: #fff;
  text-shadow: none;
  border: 1px solid #aaa;
  border-radius: 3px;
  overflow: hidden;
  display: block;
  float: left;
  text-align: center !important;
  cursor: pointer;
  font-style: normal;
}
.widget:first-child {
  margin-top: 0;
}
.social-icon i {
  display: block;
  position: relative;
}
.si-colored i {
  color: #fff;
}
.social-icon i:last-child {
  color: #fff !important;
}
.si-facebook:hover,
.si-colored.si-facebook {
  background-color: #3b5998 !important;
}
.si-colored.social-icon {
  border-color: transparent;
}
body:not(.device-touch) .social-icon i {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.social-icon.si-small:hover i:first-child {
  margin-top: -30px;
}
.si-instagram:hover,
.si-colored.si-instagram {
  background-color: #8a3ab9 !important;
}
.si-linkedin:hover,
.si-colored.si-linkedin {
  background-color: #0e76a8 !important;
}
.si-youtube:hover,
.si-colored.si-youtube {
  background-color: #c4302b !important;
}
.preloader,
.preloader2,
.form-process {
  display: block;
  width: 100%;
  height: 100%;
  background: center center no-repeat #fff;
}
.form-process {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background-color: transparent;
}
.form-group {
  margin-bottom: 1rem;
}
form label {
  text-transform: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 3px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.border-form-control {
  height: 42px;
  padding: 0;
  font-size: 1.25rem;
  background-color: transparent !important;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.07);
}
textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
  resize: vertical;
}
.d-none {
  display: none !important;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
#gotoTop {
  display: none;
  z-index: 599;
  position: fixed;
  width: 40px;
  height: 40px;
  background-color: #333;
  background-color: rgba(0, 0, 0, 0.3);
  font-size: 1.25rem;
  line-height: 36px;
  text-align: center;
  color: #fff;
  top: auto;
  left: auto;
  right: 30px;
  bottom: 50px;
  cursor: pointer;
  border-radius: 2px;
}
body:not(.device-touch) #gotoTop {
  transition: background-color 0.2s linear;
  -webkit-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
}
.stretched #gotoTop {
  bottom: 30px;
}
#gotoTop:hover {
  background-color: #1abc9c;
}
.newsletter {
  box-shadow: 0px 1px 7px #0003;
  padding: 15px;
  margin-bottom: 40px;
}
.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
.alert-success .alert-link {
  color: #0c4128;
}
.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}
.alert-danger .alert-link {
  color: #6a1a21;
}
/* Footer section css :: END */

/* Media Query */
@media (min-width: 576px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .portfolio-reveal .portfolio-image img,
  .portfolio-reveal .bg-overlay {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media (min-width: 992px) {
  .menu-link {
    padding: 39px 15px;
    -webkit-transition: margin 0.4s ease, padding 0.4s ease;
    -o-transition: margin 0.4s ease, padding 0.4s ease;
    transition: margin 0.4s ease, padding 0.4s ease;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .menu-item:not(:first-child) {
    border-top: 0;
  }
  .section,
  #footer .footer-widgets-wrap {
    margin: 100px 0;
    padding: 100px 0;
  }
  .menu-container > .menu-item:not(:first-child) {
    margin-left: 2px;
  }
  .header-misc:not([class*="order-"]) {
    -ms-flex-order: 6;
    order: 6;
  }
  .menu-container:not(.mobile-primary-menu) {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
  }
  #logo img {
    -webkit-transition: height 0.4s ease, padding 0.4s ease, margin 0.4s ease,
      opacity 0.3s ease;
    transition: height 0.4s ease, padding 0.4s ease, margin 0.4s ease,
      opacity 0.3s ease;
  }
  #header + .include-header {
    margin-top: calc(-100px - 2px);
    display: inline-block;
    vertical-align: bottom;
    width: 100%;
  }
  #header.transparent-header,
  #header.transparent-header:not(.sticky-header) #header-wrap {
    background: transparent;
    border-bottom: 1px solid transparent;
    z-index: 299;
  }
  .primary-menu {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  #primary-menu-trigger,
  #page-menu-trigger {
    display: none;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
  }
  .header-row {
    position: initial;
  }
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
  #header-wrap {
    position: fixed;
    height: auto;
    z-index: 299;
    box-shadow: 0 0 0 rgb(0 0 0 / 10%);
    transition: height 0.2s ease 0s, background-color 0.3s ease 0s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: left, top, transform;
  }
  .header-wrap-clone {
    display: block;
    height: calc(100px + 1px);
  }
  #top-bar + #header:not(.sticky-header) #header-wrap,
  #slider + #header:not(.sticky-header) #header-wrap,
  .floating-header:not(.sticky-header) #header-wrap,
  div + #header-wrap,
  .no-sticky #header-wrap,
  [data-sticky-offset]:not([data-sticky-offset="full"]):not(.sticky-header)
    #header-wrap,
  body:not(.stretched) #header:not(.sticky-header) #header-wrap {
    position: absolute;
  }
}
@media (min-width: 1200px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1320px;
  }
}
@media (max-width: 1200px) {
  .display-4 {
    font-size: calc(1.475rem + 2.7vw);
  }
}
@media (max-width: 767px) {
  #logo img {
    height: 25px !important;
    width: 100px;
    margin-top: -5px;
  }
  .header-misc a {
    font-size: 14px;
    padding: 5px 10px;
    margin: 15px 0;
  }
  .bg-overlay-content:first-child {
    position: relative;
  }
  .bg-overlay {
    position: relative;
  }
  .bg-overlay-content {
    padding: 5px !important;
  }
  .bg-overlay-content h3 {
    font-size: 20px;
    margin-top: 0 !important;
  }
  .bg-overlay .bg-overlay-content:last-child {
    display: none;
  }
  .bg-overlay-content h5 {
    margin-bottom: 0;
  }
  .col-lg-6.h-translatey-3.tf-ts {
    padding-bottom: 15px;
  }
  .section.bg-transparent.py-5 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  #footer .footer-widgets-wrap {
    padding: 50px 0;
  }
  .mb-5 {
    margin-bottom: 10px !important;
  }
  .mt-5 {
    margin-top: 10px !important;
  }
  h5 {
    margin-bottom: 10px !important;
  }
  .gutter-50 {
    --custom-gutter: 20px !important;
  }
  h1,
  .h1 {
    font-size: 24px !important;
  }
  .faq-section {
    padding-top: 100px !important;
  }
  /* .section {
    padding: 10px 0 !important;
    margin: 10px 0 !important;
  } */
}
