@import url(https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css);
@import url(https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.min.css);
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");
:root {
  --primary-color: $primary-color;
  --secondary-color: $secondary-color;
  --tertiary-color: #f8f7f5;
  /* --tertiary-dark-color: #8fb417; */
  --black-color: var(--primary-color);
  --green-color: var(--secondary-color);
  /* --green-color: var(--tertiary-color);
  --green-dark-color: var(--tertiary-dark-color); */
  /* transparent color */
  --transparent-color: #ffffff00;
  /* bg-colors */
  --primary-bg-color: #ffffff;
  --secondary-bg-color: var(--secondary-color);
  --tertiary-bg-color: var(--tertiary-color);
  /* overlay color */
  --overlay-color: var(--primary-color) !important;
  /* text color */
  --font-size: 16px;
  --font-weight: 500;
  --primary-text-color: var(--primary-color);
  --secondary-text-color: var(--secondary-color);
  --tertiary-text-color: var(--tertiary-color);
}


:root {
  --gradient-primary-color: rgb(255, 255, 255);
  --gradient-secondary-color: rgba(0, 0, 0, 0);
}

/* gradient / overlays */
.gradient,
.overlay,
.overlay-green {
  position: relative;
}

.gradient > *,
.overlay > *,
.overlay-green > * {
  position: relative;
  z-index: 2;
}

.gradient::after,
.overlay::after,
.overlay-green::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1;
}

.overlay::after,
.overlay-green::after {
  opacity: 0.9 !important;
}

.overlay::after,
.overlay-green::after {
  background-color: #000000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.overlay-green::after {
  background-color: #46a01b;
}

.gradient > *,
.overlay > * {
  z-index: 2;
}

.gradient-left::after {
  background: linear-gradient(to right, var(--secondary-color) 30%, var(--transparent-color) 70%);
}

.gradient-right::after {
  background: linear-gradient(to left, var(--secondary-color) 30%, var(--transparent-color) 70%);
}

.gradient-top::after {
  background: linear-gradient(to bottom, var(--secondary-color) 30%, var(--transparent-color) 70%);
}

.gradient-bottom::after {
  background: linear-gradient(to top, var(--secondary-color) 30%, var(--transparent-color) 70%);
}

.gradient-bg::after {
  background: linear-gradient(to right, var(--secondary-b-color) 30%, var(--secondary-color) 70%);
}

.fas,
.fa-solid {
  font-family: "Font Awesome 6 Free";
}

.shadow {
  box-shadow: rgba(125, 125, 125, 0.15) 0px 0px 15px 0px;
}

.shadow-0 {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.shdaow-1 {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.fa-family {
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
}

@media (min-width: 992px) {
  .absolute {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
  }
}
@media (max-width: 992px) {
  .absolute {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
  }
}
body {
  font-size: 1.125rem;
  font-family: "Mulish", sans-serif !important;
  color: #000 !important;
}

h1,
h2,
h3 {
  font-family: "Mulish", sans-serif !important;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
  padding-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 16px !important;
}

@media (min-width: 992px) {
  h1, h2 {
    margin-bottom: 20px !important;
  }
  h1 span, h2 span {
    color: #BC9746;
  }
  h3 {
    font-size: 26px;
    padding-bottom: 16px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  h1, h2 {
    font-size: 36px !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
  }
  h1 span, h2 span {
    color: #BC9746;
  }
  h3 {
    font-size: 22px !important;
    padding-bottom: 15px;
    line-height: 1.2 !important;
  }
  h4 {
    font-size: 20px !important;
  }
  h5 {
    font-size: 18px !important;
  }
}
@media (max-width: 768px) {
  h1, h2 {
    font-size: 32px !important;
  }
}
:root {
  --col-default-padding: 30px;
}

/* nav */
nav {
  padding: 20px 0;
}

.breadcrumb > li:last-child {
  color: var(--secondary-color);
  font-weight: 700;
}

.text-primary {
  color: var(--primary-text-color) !important;
}

.text-secondary {
  color: var(--secondary-text-color) !important;
}

a.text-white,
.text-white h1,
.text-white h2,
.text-white h3 {
  color: #fff !important;
}

/* grid layout */
.row {
  align-items: center;
}

.navbar-expand-lg .navbar-collapse {
  justify-content: flex-end;
}

/* round corners */
.rounded-4 {
  border-radius: 0.4rem !important;
}

.rounded-5 {
  border-radius: 0.5rem !important;
}

.accordion .card-body p:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .w-lg-0 {
    width: 40%;
  }
  .w-lg-50 {
    width: 50%;
  }
  .w-lg-60 {
    width: 60%;
  }
  .w-lg-70 {
    width: 70%;
  }
  .w-lg-80 {
    width: 80%;
  }
  .w-lg-90 {
    width: 90%;
  }
}
.arrow-fontawesome, .btn::after, .gform_footer > input::after,
.btn-arrow::after, .btn-secondary::after,
.btn-secondary:focus::after {
  font-family: "Font Awesome 6 Free";
  margin-right: 0px;
  font-weight: 900;
  font-size: 14px;
  opacity: 1;
  transition: all 0.2s;
  margin-left: 15px;
  position: relative;
  left: 0%;
  color: #000 !important;
  vertical-align: middle;
}
.arrow-fontawesome:hover::after, .btn:hover::after, .gform_footer > input:hover::after,
.btn-arrow:hover::after, .btn-secondary:hover::after {
  left: 2%;
  opacity: 1;
  color: #fff !important;
}

/* when using image icon */
.arrow-img::after {
  /* content: url(../images/leaf-icon.png);
  margin-left: 16px; */
  /* filter: invert(0%) sepia(0%) saturate(3207%) hue-rotate(132deg) brightness(1000%) contrast(100%); */
}

/* buttons css */
.btn, .gform_footer > input,
.btn:focus,
.btn:hover {
  font-size: 1rem;
  font-weight: 600 !important;
  border: 1px solid transparent !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 50px !important;
  padding: 0.8rem 2rem !important;
  position: relative;
  text-transform: initial;
  transition: all 0.3s ease-in-out;
  /* box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.3) !important; */
}

.btn-primary,
.btn-primary:focus {
  color: #fff !important;
  background: #f8f8f8 !important;
}
.btn-primary:hover,
.btn-primary:focus:hover {
  color: #fff !important;
  background-color: #679148 !important;
}

.btn-secondary,
.btn-secondary:focus {
  color: #fff !important;
  background: #679148;
}
.btn-secondary:hover,
.btn-secondary:focus:hover {
  color: #fff !important;
  background-color: #f8f8f8 !important;
}
.btn-secondary::after,
.btn-secondary:focus::after {
  color: #fff !important;
}
.btn-secondary:hover::after,
.btn-secondary:focus:hover::after {
  color: #000 !important;
}

/* when using font awesome icon */
.btn-link,
.btn-link:hover {
  padding: 0 !important;
}

.accordion .accordion__item {
  position: relative;
  background: #fff;
  border: 1px solid #e2e3e4;
  border-radius: 0;
}
.accordion .accordion__item:not(:last-child) {
  margin: 0 0 1rem;
}
.accordion .accordion__item .accordion__item__header {
  padding: 1rem 1.5rem 1rem 1rem;
}
@media (min-width: 992px) {
  .accordion .accordion__item .accordion__item__header {
    padding: 1rem 3.5rem 1rem 1rem;
  }
}
.accordion .accordion__item .accordion__item__header {
  cursor: pointer;
}
.accordion .accordion__item .accordion__item__header:before {
  position: absolute;
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  right: 1rem;
  top: 10px;
}
.accordion .accordion__item .accordion__item__header h4 {
  color: #000;
  font-size: 1.125rem;
  margin: 0;
}
.accordion .accordion__item.active .accordion__item__header:before {
  color: #679148;
}
.accordion .accordion__item__content {
  padding: 0 1rem 1rem;
}
@media (min-width: 992px) {
  .accordion .accordion__item__content {
    padding: 0 3.5rem 1rem 1rem;
  }
}
.accordion .accordion__item__content p {
  margin: 0;
  font-weight: 300;
}

/* contact form */
form {
  background: var(--secondary-bg-light-color);
  border-radius: 8px;
}
form .gfield input,
form .gfield textarea {
  padding: 16px 16px !important;
  border: 1px solid #f9f9f9 !important;
  outline: none !important;
  background: #f9f9f9;
  border: 1px solid #ddd !important;
}

.gform_wrapper.gravity-theme .gfield_label {
  font-weight: normal !important;
}

form div.ginput_container_fileupload span.gform_fileupload_rules {
  display: none;
}

::placeholder,
::-webkit-input-placeholder {
  font-size: 14px !important;
  color: #444;
}

/* ignore below this */
/* contact form */
form .row > * {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.form-group {
  margin-bottom: 24px;
  /* border: 2px solid #e8e7e8;
  border-radius: 6px;
  margin-bottom: 18px; */
}

.form-group > label {
  /* position: relative;
  top: -13px;
  left: 10px;
  background-color: white;
  padding: 0 10px;
  color: #5d5d5d;
  font-weight: 500; */
}

.form-control,
.form-control:focus {
  box-shadow: none !important;
  /* border: none !important; */
  outline: none !important;
}

.gform_footer > input {
  margin-top: 0 !important;
}

.gfield_checkbox > div {
  display: flex;
  align-items: start;
}
.gfield_checkbox > div > input {
  margin-right: 10px;
  width: 16px;
  height: 16px;
  margin-top: 4px !important;
}

.owl-theme .owl-nav {
  /* font-size: 84px; */
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav span {
  background: #fff;
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  font-size: 28px;
  padding-bottom: 4px;
}

.owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
  margin: auto;
}

.owl-stage .owl-item {
  /* margin: 0 15px; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 15px;
}

.owl-stage .owl-item img {
  width: auto !important;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  cursor: pointer;
  opacity: 0.8;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  text-decoration: none;
  opacity: 1;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.3;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot {
  margin-top: 30px;
}
.owl-theme .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  margin: 5px 5px;
  background: #ccc !important;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 50%;
}
.owl-theme .owl-dots .owl-dot.active span {
  background: #aaa !important;
}

.owl-stage {
  align-items: flex-start !important;
}

:root {
  --section-sm-padding: 40px;
  --section-padding: 80px;
  --section-lg-padding: 160px;
}

* {
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat !important;
  word-break: initial !important;
}

html,
body {
  overflow-x: hidden;
  color: var(--primary-text-color);
  scroll-behavior: smooth;
  height: 100vh;
}

section {
  padding: var(--section-padding) 0;
}

section.section-sm {
  padding: var(--section-sm-padding) 0;
}

section.section-lg {
  padding: var(--section-lg-padding) 0;
}

section:first-child {
  margin-top: 0 !important;
}

section:last-child {
  margin-bottom: 0 !important;
}

.bg-primary {
  background-color: var(--primary-bg-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-bg-color) !important;
}

.bg-tertiary {
  background-color: var(--tertiary-bg-color) !important;
}

.section-heading {
  text-align: center;
}

.heading-label {
  display: block;
  color: var(--tertiary-co lor);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 6px;
}

section h2 {
  margin-bottom: 20px;
}

.section-heading h2 {
  margin-bottom: 20px;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: var(--primary-color);
  word-break: break-all;
}

a:not(.reset),
a:not(.reset):hover,
a:not(.reset):focus {
  font-weight: 600;
  color: var(--primary-color);
}

a:not(.reset):hover {
  color: var(--secondary-color);
}

.testi-carousel .owl-nav {
  position: absolute;
  bottom: 0;
  right: 50px;
  z-index: 1;
  font-size: 74px;
  color: var(--secondary-text-color);
}

@media (max-width: 768px) {
  section {
    padding: var(--section-sm-padding) 0;
  }
  [class*=col]:last-child {
    margin-bottom: 0px;
  }
  .testi-carousel .owl-nav {
    display: none;
  }
  .section-heading {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .section-heading {
    width: 70%;
    margin: auto;
    margin-bottom: 60px;
  }
  .div-404 {
    min-height: 300px;
    max-width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/* ---------------------------- Utils ------------------------------ */
/* gradient bg */
.gradient-bg-down {
  background: linear-gradient(to bottom, #f7faff 0%, #fff 20%, #fff 100%) !important;
}

.gradient-bg-up {
  background: linear-gradient(to top, #f7faff 0%, #fff 20%, #fff 100%) !important;
}

/* quote marks */
/* testimonials css start */
.quote {
  color: var(--secondary-text-color);
  font-size: 22px !important;
  font-weight: 600;
  margin-right: 8px;
}

.page-kontakt .mapouter,
.page-kontakt .gmap_canvas,
.page-kontakt .gmap_iframe {
  height: 600px !important;
}

.mapouter {
  position: relative;
  text-align: right;
  width: 100%;
  height: 600px;
}

@media (min-width: 992px) {
  .quote-start {
    margin-right: 8px;
  }
  .quote-end {
    margin-left: 8px;
  }
}
header #masthead nav ul li:last-child {
  display: none;
}
header #masthead nav ul li:nth-child(4) {
  margin-right: 0;
}
header #masthead nav ul li ul.sub-menu {
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  width: 270px;
}
@media (min-width: 992px) {
  header #masthead nav ul li ul.sub-menu {
    margin-top: 20px;
  }
}
header #masthead nav ul li ul.sub-menu > li {
  padding: 0;
  display: block;
}
header #masthead nav ul li ul.sub-menu > li > a {
  font-size: 15px;
  line-height: 130%;
  padding: 10px 15px;
}
header #masthead nav ul li ul.sub-menu > li.current-menu-item > a {
  color: #bc9746;
}
@media (max-width: 992px) {
  header #masthead nav ul li ul.sub-menu > li.current-menu-item > a {
    color: #fff;
  }
}

@media (min-width: 992px) {
  .hfe-creative-menu {
    padding-inline: 10px !important;
  }
}
.hfe-creative-menu a {
  line-height: 1.4 !important;
}
.hfe-creative-menu a:hover {
  color: #bc9746 !important;
}

.ehf-header #masthead {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
}

.sticky_header header#masthead {
  transition: all 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  z-index: 9999;
}

@media only screen and (max-width: 1024px) {
  .sticky_header header#masthead .header-nav-menu {
    margin-top: 0;
  }
  header #masthead .hfe-nav-menu__toggle .hfe-nav-menu-icon {
    display: block;
    opacity: 0;
  }
  header #masthead .hfe-nav-menu__toggle::before {
    content: "";
    position: absolute;
    height: 3px;
    width: 26px;
    background: #000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    box-shadow: 0 -7px 0 0 #000, 0 7px 0 0 #000;
    transition: 0.5s all;
    z-index: auto;
  }
  header #masthead .hfe-nav-menu__toggle.hfe-active-menu {
    z-index: 999999;
    background-color: #BC9746;
  }
  header #masthead .hfe-nav-menu__toggle.hfe-active-menu::before {
    box-shadow: none;
    transform: rotate(45deg);
    background: #000;
  }
  header #masthead .hfe-nav-menu__toggle.hfe-active-menu::after {
    height: 3px;
    width: 26px;
    background: #000;
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    transform: rotate(-45deg);
    transition: 0.5s all;
  }
  header #masthead .hfe-nav-menu__toggle.hfe-active-menu + nav {
    transform: translateY(0);
  }
  .no-scroll.show.menu {
    overflow: hidden;
  }
  header #masthead nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0 !important;
    bottom: 0;
    padding: 110px 0 0 0;
    background: #BC9746;
    height: 110vh;
    overflow: hidden;
    transform: translateX(100%);
    transition: 0.5s all;
    z-index: 99999 !important;
    width: 100% !important;
    margin: 0;
    border-radius: 0;
    display: block;
  }
  header #masthead nav ul li:last-child {
    display: block;
  }
  header #masthead nav ul > ul {
    overflow: hidden;
    max-height: calc(100vh - 104px);
    display: block;
    opacity: 1;
  }
  header #masthead nav > ul > li {
    margin: 0;
    background: transparent;
    padding: 0px;
    border-radius: 0;
  }
  header #masthead nav > ul > li:first-child {
    border-left: 0;
  }
  header #masthead nav > ul > li > a, header #masthead nav > ul > li > div > a {
    background: transparent;
    margin: 0px !important;
    padding: 13px 15px !important;
    color: white;
  }
  header #masthead nav > ul > li span.sub-arrow {
    display: block;
    background: transparent;
    border: 0;
    margin-left: 0px;
  }
  header #masthead nav > ul > li span.sub-arrow i.fa:before {
    background: transparent;
  }
  header #masthead nav > ul.current_page_item > div > a,
  header #masthead nav > ul.current_page_item > a {
    background: #FFF !important;
    color: #333 !important;
    width: 100%;
  }
  header #masthead nav > ul.current-menu-parent > div i::before, header #masthead nav > ul.current-menu-parent > div i::after {
    background: #333;
  }
  header #masthead nav ul li > a,
  header #masthead nav ul li > div > a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  header #masthead nav ul li ul.sub-menu {
    border-radius: 0;
    box-shadow: unset;
    width: 100%;
    min-width: 100%;
    position: static !important;
  }
  header #masthead nav ul li ul.sub-menu > li > a {
    font-size: 16px;
    line-height: 165%;
    padding: 10px 35px;
    background-color: #bc9746;
    color: #fff;
  }
  header #masthead nav ul li.current_page_ancestor a {
    background-color: #fff;
    color: #000;
  }
  header #masthead nav ul li a:hover {
    color: #000 !important;
    background-color: #fff !important;
  }
  body #page .from-ali-second-section:after {
    right: 2px;
    top: 15px;
    height: 50px;
    width: 50px;
    background-size: contain;
  }
  body #page .from-ali-second-section:before {
    height: 75px;
    width: 58px;
  }
}
@media only screen and (max-width: 767px) {
  header #masthead nav > ul > li > a,
  header #masthead nav ul li > div > a {
    padding: 8px 15px !important;
    font-size: 22px;
  }
  header #masthead nav ul li ul.sub-menu > li > a {
    font-size: 16px;
    padding: 9px 24px;
  }
  header #masthead nav ul li:last-child {
    display: block;
  }
  .sticky_header header #masthead .header-section > .e-con-inner {
    padding: 10px 0;
  }
}
footer #colophon .social-media a {
  height: 43px;
  width: 43px;
  border: 1px solid #fff;
  border-radius: 100%;
  background-color: #000;
  position: relative;
  margin-right: 11px;
}
footer #colophon .social-media a > svg {
  display: none;
}
footer #colophon .social-media a::before {
  content: "";
  height: 30px;
  width: 30px;
  background-image: url("../images/social-icon.png");
  background-repeat: no-repeat;
  position: absolute;
  left: 10px;
  top: 6px;
  right: 0;
  bottom: auto;
  background-position: -21px -85px;
}
footer #colophon .social-media a:hover {
  background-color: #BF9148;
  border-color: #BF9148;
}
footer #colophon .social-media span.elementor-grid-item:nth-child(2) a::before {
  background-position: -23px -22.5px;
}
footer #colophon .social-media span.elementor-grid-item:nth-child(3) a::before {
  background-position: -109px -25.5px;
}
footer #colophon .social-media span.elementor-grid-item:nth-child(4) a::before {
  background-position: -98px -84.5px;
}
footer #colophon .copy-right p a:hover {
  color: #BF9148;
}
footer #colophon nav ul li.current-page-ancestor a {
  color: #bc9746;
}

.cnt-wrap-address a,
.cnt-wrap-email a,
.cnt-wrap-phone a {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0%;
  color: #000;
}
.cnt-wrap-address a:hover,
.cnt-wrap-email a:hover,
.cnt-wrap-phone a:hover {
  color: #bc9746;
}

.cnt-wrap-phone a {
  font-weight: 600;
  font-size: 18px;
}

.hfe-nav-menu li.menu-item a.hfe-menu-item {
  display: inline-flex;
  width: auto;
}

.social-media a.elementor-icon {
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: transparent;
  height: 43px;
  width: 43px;
}

.cnt-address-phone-wrap > div {
  padding-left: 36px;
  position: relative;
}
.cnt-address-phone-wrap > div:not(:last-child) {
  margin-bottom: 25px;
}
.cnt-address-phone-wrap > div::before {
  content: "";
  height: 30px;
  width: 30px;
  background-image: url("../images/contact-icons.png");
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 3px;
  right: 0;
  bottom: auto;
  background-position: 0px 4px;
}

@media only screen and (max-width: 1024px) {
  footer #colophon .footer-menu-wrap {
    display: none;
  }
  footer #colophon .footer-cnt-wrap {
    width: 48%;
  }
}
@media only screen and (max-width: 767px) {
  footer #colophon .footer-cnt-wrap {
    width: 100%;
    padding: 0;
  }
  footer #colophon .social-media a {
    height: 36px;
    width: 36px;
    margin: 0 4px;
  }
  footer #colophon .social-media a::before {
    height: 20px;
    width: 20px;
    background-position: -19px -73px;
    background-size: 136px;
  }
  footer #colophon .social-media span.elementor-grid-item:nth-child(2) a::before {
    background-position: -19px -18.5px;
    background-size: 128px;
    left: 9.5px;
    top: 6px;
  }
  footer #colophon .social-media span.elementor-grid-item:nth-child(3) a::before {
    background-position: -91px -25.5px;
    top: 9px;
    left: 7px;
  }
  footer #colophon .social-media span.elementor-grid-item:nth-child(4) a::before {
    background-position: -84px -72px;
  }
  footer #colophon .footer-logo-wrap div {
    --align-self: center !important;
  }
  .cnt-address-phone-wrap > div {
    padding-left: 30px;
  }
  .cnt-address-phone-wrap > div:not(:last-child) {
    margin-bottom: 16px;
  }
  .cnt-address-phone-wrap > div.cnt-wrap-phone::before {
    top: 0px;
  }
  .cnt-address-phone-wrap > div.cnt-wrap-email::before {
    background-position: 0px -152px;
  }
  .footer-section h2.elementor-heading-title::after {
    margin: 17px 0 15px;
  }
}
section {
  position: relative;
  padding: 6rem 0;
}
section .shape {
  position: absolute;
  content: "";
  height: 50px;
  width: 322px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
section .shape-bottom {
  bottom: -20px;
  background-image: url(/assets/images/section-shape-top.png);
}
section .shape-top {
  top: -20px;
  background-image: url(/assets/images/section-shape-down.png);
}
@media (max-width: 992px) {
  section {
    padding: 3rem 1rem;
  }
}

@media (min-width: 992px) {
  .section-heaidng {
    max-width: 70%;
    margin: 0 auto 3rem;
  }
}
p,
span,
li,
a {
  transition: all 0.3s ease-in-out;
}

.div-link {
  margin: 3rem 0px 0px !important;
}

@media (max-width: 992px) {
  .div-img {
    text-align: center;
  }
}
.div-txt > *:not(:last-child) {
  margin: 0 0 1.6rem;
}

.primary-btn, .gform_footer > input {
  background: #679148;
  font-weight: 500 !important;
  color: #fff !important;
  display: inline-block;
  padding: 1rem 1.5rem;
  border-radius: 0.4rem;
  border: 2px solid transparent;
}
.primary-btn i, .gform_footer > input i {
  margin-left: 0.5rem;
}
.primary-btn:hover, .gform_footer > input:hover {
  background: transparent;
  color: #679148 !important;
  border-color: #679148;
}

.secondary-btn {
  background: #fff;
  font-weight: 500 !important;
  color: #679148 !important;
  display: inline-block;
  padding: 1rem 1.5rem;
  border-radius: 0.4rem;
  border: 2px solid transparent;
}
.secondary-btn i {
  margin-left: 0.5rem;
}
.secondary-btn:hover {
  background: transparent;
  color: #fff !important;
  border-color: #fff;
}

body {
  overflow-x: hidden;
}
body main {
  background-color: #fff;
  z-index: 0;
  position: relative;
}

.ai-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
  border-radius: 30px;
  padding: 30px 30px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.05), 0 25px 60px rgba(0, 0, 0, 0.07);
  transition: all 0.35s ease;
}
.ai-card .card-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8b1bd;
  font-size: 20px;
  text-decoration: none;
  z-index: 5;
  transition: 0.3s ease;
}
.ai-card .card-arrow:hover {
  color: #111827;
  transform: translate(2px, -2px);
}
.ai-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 25px 60px rgba(0, 0, 0, 0.1);
}

.why-dac {
  gap: 30px;
}
.why-dac .elementor-element-95f8ec8 {
  height: 100%;
}
.why-dac .elementor-element-95f8ec8 .elementor-element-6132d48 {
  height: 100%;
}
.why-dac .elementor-element-95f8ec8 .elementor-element-6132d48 img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.elementor-button-link {
  position: relative;
  background-color: #BC9746 !important;
  text-transform: capitalize !important;
  border-radius: 50px !important;
  padding: 12px 45px 12px 20px !important;
}
.elementor-button-link::before {
  position: absolute;
  width: 35px;
  height: 25px;
  /* background-image: url(../images/arrow-bg-icon.png); */
  /* background-repeat: no-repeat; */
  right: 6px;
  bottom: 0;
  margin: auto;
  font-weight: bold;
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 0;
}
.elementor-button-link:hover {
  font-weight: inherit !important;
  background-color: #000 !important;
  padding: 12px 45px 12px 20px !important;
}
@media (max-width: 992px) {
  .elementor-button-link {
    font-size: 16px !important;
  }
}

.btn-secondary-new a {
  background-color: #000 !important;
}
.btn-secondary-new a:hover {
  background-color: #BC9746 !important;
}

.main-btn-wrap.orange-btn a {
  background-color: #BC9746;
}
.main-btn-wrap.orange-btn a:hover {
  background-color: #000 !important;
}

@media (max-width: 1200px) {
  .transformation-section {
    background-size: 126% auto !important;
  }
}
@media (max-width: 992px) {
  .transformation-section {
    background-size: 142% auto !important;
  }
}
@media (max-width: 576px) {
  .transformation-section {
    background-image: none !important;
  }
}
@media (min-width: 1200px) {
  .transformation-section {
    background-size: 92% auto !important;
  }
}
@media (min-width: 1400px) {
  .transformation-section {
    background-size: 80% auto !important;
  }
}
@media (min-width: 1500px) {
  .transformation-section {
    background-size: 68% auto !important;
  }
}
@media (1860px <= width <= 2500px) {
  .transformation-section {
    background-size: 55% auto !important;
  }
}
@media (min-width: 2500px) {
  .transformation-section {
    background-size: 45% auto !important;
  }
}

.why-digital-section {
  background-size: 100% auto !important;
}

@media (min-width: 992px) {
  .operational-right-section {
    background-size: 128% auto !important;
    padding-bottom: 70px !important;
  }
}
@media (max-width: 768px) {
  .operational-right-section {
    background-size: 106% auto !important;
    padding-bottom: 160px !important;
  }
}

.swiper-pagination {
  bottom: -40px !important;
}

.box-heading-underline h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 35px !important;
  font-size: 24px !important;
}
.box-heading-underline h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 38px;
  height: 3px;
  background: #bd9848;
  border-radius: 10px;
}

.box {
  background: #fff;
  border-radius: 20px;
  padding: 20px 30px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.05), 0 25px 60px rgba(0, 0, 0, 0.07);
  transition: all 0.35s ease;
}
.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 15px 35px rgba(0, 0, 0, 0.1), 0 35px 70px rgba(0, 0, 0, 0.12);
}

.contact-main-form {
  padding: 20px 15px;
  margin-bottom: 20px;
}

.input-group {
  flex-wrap: nowrap !important;
  display: block;
}
@media (max-width: 992px) {
  .input-group {
    display: block !important;
  }
}

.input-field input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=file]),
.input-field textarea,
select {
  font-size: 14px;
  padding-left: 55px;
  min-height: 55px;
  line-height: 16px;
}

.contact-main-form .input-field label {
  font-size: 14px;
  line-height: 16px;
  top: 17px;
  opacity: 0.5;
  left: 55px;
}

.contact-main-form .input-field.value_focus label, .contact-main-form .input-field input:focus + label {
    top: -8px;
    left: 10px;
    font-size: 12px;
    background: #fff;
    padding: 0 5px;
    opacity: 1;
}

.contact-main-form .input-group.role-group span.wpcf7-form-control-wrap:before {
  left: 11px;
  top: -2px;
  background-size: 23px;
}

.input-group.role-group:before {
  top: 10px;
  right: 10px;
  font-size: 22px;
}

.contact-main-form span.wpcf7-form-control-wrap:before {
  top: 0px;
  left: 14px;
}

.contact-main-form span.wpcf7-form-control-wrap:after {
  width: 1.5px;
  height: 23px;
  top: 0px;
  left: 44px;
}

.input-group.name-organization-wrap,
.input-group.email-phone-group {
  display: block;
}

.input-group.name-organization-wrap > div:last-child,
.input-group.email-phone-group > div:last-child {
  margin-bottom: 15px;
}

.enq-cont.submit input {
  min-height: 55px;
  font-size: 18px;
}

.enq-cont.submit {
  margin-top: 20px;
}

.cntpage-address-phone-wrap {
  gap: 80px 15px;
  margin-top: 65px;
  flex-wrap: wrap;
}

.cntpage-address-phone-wrap > div {
  width: 48%;
}

body #page .trusted-by-section.common-last-sec-pages {
  margin: 60px auto 60px;
  min-height: 330px;
}

.input-field textarea {
  height: 120px;
  padding-top: 17px;
}

.contact-main-form .message-icon span.wpcf7-form-control-wrap:before {
  top: 12px;
}

.contact-main-form .message-icon span.wpcf7-form-control-wrap:after {
  top: 14px;
}

.input-field input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=file]),
.input-field textarea,
select {
  font-family: Poppins, sans-serif;
  background-color: #FFFFFF;
  color: rgba(0, 0, 0, 0.4784313725);
  font-size: 16px;
  padding-left: 75px;
  border-radius: 9px;
  min-height: 76px;
  line-height: 20px;
  border: 1px solid #E0E0E0;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.0784313725);
}

.input-group.name-organization-wrap,
.input-group.email-phone-group {
  display: flex !important;
  gap: 0 15px;
}
@media (max-width: 992px) {
  .input-group.name-organization-wrap,
  .input-group.email-phone-group {
    display: block !important;
  }
}

.input-group.role-group {
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 992px) {
  .input-group.role-group {
    margin-bottom: 15px;
  }
}

/*.input-group.role-group:before {
    content: "\f107";
    font-family: FontAwesome;
    position: absolute;
    top: 15px;
    left: auto;
    right: 19px;
    bottom: 0;
    font-size: 27px;
    color: #7F7F7F;
    z-index: 1;
    pointer-events: none;
    font-weight: 600;
}*/
.contact-main-form .input-group.role-group span.wpcf7-form-control-wrap:before {
  background-image: url("../images/role.png");
  background-position: 1px 2px;
  height: 32px;
  width: 30px;
  left: 14px;
  top: -3px;
}

span.wpcf7-form-control-wrap {
  position: relative;
}

.contact-main-form span.wpcf7-form-control-wrap:after {
  content: "";
  position: absolute;
  width: 1.5px;
  height: 28px;
  background-color: #000000;
  top: 0px;
  left: 55px;
  opacity: 0.2;
}

.contact-main-form span.wpcf7-form-control-wrap:before {
  content: "";
  width: 19px;
  height: 24px;
  position: absolute;
  top: 2px;
  left: 21px;
  background-image: url(../images/stripe-imgs.png);
  background-repeat: no-repeat;
  background-position: 0 0;
}

.contact-main-form .input-field.organization-input span.wpcf7-form-control-wrap:before {
  background-image: url(../images/organization.svg);
  background-size: contain;
  width: 25px;
  height: 25px;
}

.contact-main-form span.wpcf7-form-control-wrap[data-name=Email]:before {
  background-position: 0px -43px;
}

.contact-main-form span.wpcf7-form-control-wrap[data-name=Phone]:before {
  background-position: 0 -85px;
}

.contact-main-form .message-icon span.wpcf7-form-control-wrap:before {
  background-position: 0px -122px;
  top: 22px;
}

.map-cnt-form-sec .map-section {
  box-shadow: 0px 14px 44px 0px rgba(0, 0, 0, 0.14) !important;
  margin-bottom: 40px;
  border-radius: 20px;
}

.map-cnt-form-sec .map-section * {
  height: 100%;
}

.map-cnt-form-sec .map-section .elementor-custom-embed {
  height: 100%;
}

.map-cnt-form-sec .map-section .elementor-custom-embed iframe {
  height: 100% !important;
}
@media (max-width: 992px) {
  .map-cnt-form-sec .map-section .elementor-custom-embed iframe {
    height: 320px !important;
  }
}

.input-field.message-icon span.wpcf7-form-control-wrap {
  display: block;
}

.contact-main-form .message-icon span.wpcf7-form-control-wrap:after {
  top: 24px;
}

.input-field textarea {
  resize: none;
  overflow: auto;
  height: 150px;
  padding-top: 27px;
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 14px;
  font-weight: normal;
  display: block;
  font-family: "Poppins", sans-serif;
}

.input-field label {
  display: none;
}

.input-field:not(:last-child) {
  margin-bottom: 15px;
}

.contact-main-form {
  padding: 32px 32px 35px 35px;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 20px;
  box-shadow: 0 9px 44px rgba(0, 0, 0, 0.1411764706);
  background-color: #fff;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .contact-main-form {
    padding: 32px 20px 35px 20px;
  }
}

.enq-cont.submit input {
  width: 100%;
  border-radius: 50px;
  min-height: 76px;
  border: 0;
  line-height: 100%;
  font-size: 22px;
  font-weight: 600;
  padding: 0;
  pointer-events: all;
  cursor: pointer;
  background: #BC9746;
}
@media (max-width: 992px) {
  .enq-cont.submit input {
    font-size: 18px;
    text-transform: capitalize;
    padding-inline: 10px;
  }
}

.enq-cont.submit p {
  position: relative;
}

.enq-cont.submit span.wpcf7-spinner {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto -35px;
}

body .wpcf7-spinner {
  background-color: #fff;
}

body .wpcf7-spinner::before {
  background-color: #000;
}

.enq-cont.submit {
  margin-top: 30px;
}

.contact-main-form .recaptcha span.wpcf7-form-control-wrap.recaptcha:before,
.contact-main-form .recaptcha span.wpcf7-form-control-wrap.recaptcha::after {
  display: none;
}

.contact-main-form .input-field label {
  display: block;
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #000;
  position: absolute;
  z-index: 9;
  top: 28px;
  opacity: 0.5;
  pointer-events: none;
  left: 74px;
  transition: 0.5s all ease;
}

.contact-main-form p {
  position: relative;
}

.cntpage-address-phone-wrap {
  display: flex;
  justify-content: space-between;
}

.cntpage-address-phone-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 105px;
}

.cntpage-address-phone-wrap > div p {
  font-family: Poppins;
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: 0%;
  text-align: center;
  color: #000;
  margin-bottom: 8px;
}

.cntpage-address-phone-wrap > div {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  box-shadow: 0px 14px 44px 0px rgba(0, 0, 0, 0.1411764706);
  border-radius: 19px;
  width: 100%;
  text-align: center;
  min-height: 205px;
  padding: 69px 10px 0;
  position: relative;
}

.cntpage-address-phone-wrap > div a {
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
}

.cntpage-address-phone-wrap > div:before {
  content: "";
  height: 97px;
  width: 97px;
  position: absolute;
  background-color: #000;
  border-radius: 100%;
  top: -51px;
  bottom: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.cntpage-address-phone-wrap > div:after {
  content: "";
  height: 80px;
  width: 80px;
  position: absolute;
  top: -51px;
  bottom: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-image: url(../images/stripe-imgs.png);
  background-repeat: no-repeat;
  background-position: -30px 24px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: red;
  color: red;
  text-align: center;
  padding: 0 10px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.cntpage-address-phone-wrap > div:nth-child(1):before,
.cntpage-address-phone-wrap > div:nth-child(3):before {
  background-color: #BC9746;
}

.cntpage-address-phone-wrap > div.cntpage-wrap-email:after {
  background-position: -40px -50px;
  height: 60px;
  width: 60px;
  top: -46px;
}

.cntpage-address-phone-wrap > div.cntpage-wrap-address:after {
  background-position: -32px -111px;
  height: 75px;
  width: 75px;
  top: -40px;
}

.cntpage-address-phone-wrap > div.cnt-wrap-website:after {
  background-position: -48px -191px;
  height: 60px;
  width: 60px;
  top: -34px;
  left: -3px;
}/*# sourceMappingURL=site.css.map */