@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

p {
  line-height: 1.4rem;
  margin-bottom: 20px;
}

.kli-ul-list li {
  line-height: 1.4rem;
}

/*********************************************
 * FLOATING CIRCLE PROGRESS INDICATOR - START
 ****************************************** */
.kli-progress-wrap {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  display: none;
  cursor: pointer;
}

.kli-progress-circle {
  transform: rotate(-90deg);
}

/* .kli-bg-circle {
  fill: #f0f8ff;
} */
.kli-progress {
  stroke-dasharray: 157; /* 2 * π * r (2 * π * 25) */
  stroke-dashoffset: 157;
  transition: stroke-dashoffset 0.2s ease;
}

.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 16px;
  color: #5ce1e6;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-weight: bold;
}

/*********************************************
 * FLOATING CIRCLE PROGRESS INDICATOR - END
 ****************************************** */
/*********************************************
 * START OF TEMPORARY HOMEPAGE STYLES
 ****************************************** */
.kli-logo-message-wrap {
  background-color: #000;
  color: #fff;
  gap: 20px;
}
.kli-logo-message-wrap > figure {
  margin: 1rem;
}

.kli-logo-message-wrap,
.kli-temphome-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kli-temphome-banner img {
  width: 800px;
  height: auto;
}

/*********************************************
 * END OF TEMPORARY HOMEPAGE STYLES
 ****************************************** */
/*********************************************
 * SITE HEADER, LOGO, MENU - START
 ****************************************** */
.site-header,
.site-before-nav-wrap {
  display: flex;
  justify-content: center;
}

.site-before-nav {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-size: 12px;
  padding: 4px 0;
}
.site-before-nav div {
  display: flex;
  gap: 5px;
}
.site-before-nav a {
  color: #5ce1e6;
  opacity: 1;
  text-decoration: none;
}
.site-before-nav a:hover {
  opacity: 0.8;
}

.site-brand-wrap {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px 10px 10px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-brand {
  background-color: #000;
  padding: 20px 8px 4px 8px;
  border-radius: 0 0 20px 20px;
}

.site-name {
  font-size: 2rem;
  color: #5ce1e6;
  text-decoration: none;
}
.site-name:hover {
  color: #646464;
}

.site-tagline {
  font-size: 14px;
}

.site-menu-wrap {
  display: flex;
  gap: 10px;
  z-index: 1;
}

#site-menu-navbars {
  width: 30px;
  height: auto;
  cursor: pointer;
}

#site-navbar {
  display: none;
}

#navbar-nav {
  list-style-type: none; /* Remove bullets */
  padding: 0;
  margin: 0;
  white-space: nowrap;
  display: flex;
}
#navbar-nav li a {
  color: #5ce1e6;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  font-size: 12px;
  font-weight: 400;
  padding: 16px;
  background-color: #18181b;
}
#navbar-nav li a:hover {
  color: #18181b;
  background-color: #5ce1e6;
}
#navbar-nav .menu-item-has-children > a::after {
  content: "▼";
  font-size: 0.7em;
  margin-left: 5px;
}
#navbar-nav > li:first-child a {
  border-radius: 10px 0 0 10px;
}
#navbar-nav > li:last-child a {
  border-radius: 0 10px 10px 0;
}
#navbar-nav .sub-menu {
  position: static;
  list-style-type: none; /* Remove bullets */
  display: none;
}
#navbar-nav .sub-menu > li a {
  background-color: #272729;
  color: #5ce1e6;
}
#navbar-nav .sub-menu > li a:hover {
  color: #18181b;
  background-color: #5ce1e6;
}
#navbar-nav .sub-menu > li:last-child a {
  border-radius: 0 0 10px 10px;
}

.nav-parent-bg {
  background-color: #272729 !important;
}
.nav-parent-bg:hover {
  color: #18181b !important;
  background-color: #5ce1e6 !important;
}

@media screen and (max-width: 781px) {
  .kli-column-reverse {
    flex-direction: column-reverse;
  }
  #kli-special-spacer {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  div:has(> #navbar-nav) {
    position: relative;
  }
  #navbar-nav {
    flex-direction: column;
    position: absolute;
    right: 0;
  }
  #navbar-nav > li:first-child a {
    border-radius: 10px 10px 0 0;
  }
  #navbar-nav > li:last-child a {
    border-radius: 0 0 10px 10px;
  }
  #navbar-nav .sub-menu > li:last-child a {
    border-radius: 0;
  }
}
/*********************************************
 * SITE HEADER, LOGO, MENU - END
 ****************************************** */
/*********************************************
 * SITE CONTENT - START
 ****************************************** */
#site-content-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

.site-content-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 20px;
}

.site-content-full {
  width: 100%;
  padding: 40px 0;
}

.site-content-full-col {
  flex-direction: column;
  align-items: center;
}

.site-content {
  width: 90%;
  max-width: 1200px;
  padding: 40px 0;
}

.site-content-90 {
  width: 90%;
  max-width: 1200px;
}

.site-content-80 {
  width: 80%;
  max-width: 1200px;
}

.site-page-title {
  font-size: 11px;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
}

.site-small-text {
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
}

.site-smaller-text, .site-footer-copyright-wrap, .site-footer-contact-wrap {
  font-size: 0.75rem;
  font-weight: 400;
}

.site-smallest-text {
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
}

.site-content,
.site-content-full {
  display: flex;
  justify-content: center;
}

.site-content-links {
  display: flex;
  justify-content: end;
}

.site-content-flex-col {
  flex-direction: column;
}

.site-content-align-center {
  align-items: center;
}

.site-content-prim {
  background-color: #000;
}

.site-content-sec {
  background-color: #18181b;
}

.site-content-tertiary {
  background-color: #272729;
}

.site-color-prim {
  color: #5ce1e6;
}

.site-color-sec {
  color: #fff;
}

.site-color-tertiary {
  color: #929292;
}

.site-color-quaternary {
  color: #646464;
}

.site-headline-1 {
  font-weight: 200;
  font-size: clamp(30px, 2.2rem + 1.4vw, 50px);
}

.site-headline-2 {
  font-weight: 200;
  font-size: clamp(25px, 2rem + 1.4vw, 42px);
}

.site-headline-3 {
  font-weight: 200;
  font-size: clamp(20px, 1.5rem + 1.4vw, 36px);
}

.site-headline-4 {
  font-weight: 200;
  font-size: clamp(15px, 1rem + 1.4vw, 30px);
}

.site-headline-5, .kli-su-faq-question, .kli-blog-card-wrap > h2 {
  font-weight: 200;
  font-size: clamp(12px, 0.75rem + 1.4vw, 25px);
}

.site-headline-bg-prim {
  background-color: rgba(39, 39, 41, 0.8);
  padding: 10px;
  color: #5ce1e6;
  border-radius: 10px;
}

.site-padding-tb-10 {
  padding: 10px 0;
}

.site-padding-tb-40 {
  padding: 40px 0;
}

.site-a-tag {
  color: #5ce1e6;
  text-decoration: none;
  padding: 4px;
  font-size: 10px;
}

.site-a-tag:hover {
  color: #fff;
}

.site-paragraph {
  padding: 40px;
  border-radius: 10px;
}

.site-p {
  margin-bottom: 40px;
}

.site-text-shadow-1 {
  text-shadow: 1px 2px 5px #d7e4d7;
}

.wp-block-list {
  margin-left: 16px;
}

.kli-anchors {
  color: #000;
  text-decoration: none;
}
.kli-anchors:hover {
  color: #5ce1e6;
}

.kli-anchors-tertiary {
  color: #929292;
  opacity: 1;
}

.kli-anchors-tertiary:hover {
  opacity: 0.8;
}

.kli-services-subpage-vid video {
  border-radius: 10px;
}

/*********************************************
 * SITE CONTENT - END
 ****************************************** */
/*********************************************
 * HOMEPAGE STYLES - START
 ****************************************** */
.site-content-video-wrap {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.site-content-video-inner-wrap {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  /* Apply the top and bottom gradients */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, transparent 20%), linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 20%); /* Bottom gradient */
  /* Ensure the gradients cover the full height and width */
  background-size: 100% 100%;
  /* Position the gradients at the top and bottom */
  background-position: top, bottom;
  /* Prevent repetition of the gradients */
  background-repeat: no-repeat;
}

.site-content-video-wrap video {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.site-content-video-wrap .site-content-video {
  z-index: 1;
  position: relative;
}

.kli-services-cards-wrap {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  justify-content: space-evenly;
  row-gap: 30px;
}

.kli-services-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #4C4C4F;
  min-width: 210px;
  row-gap: 10px;
}

.kli-services-svg-wrap {
  width: 100px;
  height: auto;
}

.kli-home-services-cards {
  opacity: 1;
}
.kli-home-services-cards:hover {
  opacity: 0.8;
}

.kli-services-socmed-grid {
  grid-template-columns: auto auto !important;
  justify-content: center;
}

.kli-services-socmed-svg-wrap {
  width: 44px;
  height: auto;
}

.kli-hero-banner {
  background-image: url("../images/klicked-business-transition.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.kli-leads-90-wrap {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 20px 10px;
  border-radius: 10px;
}

.kli-leads-hero-banner {
  background-image: url("../images/klicked-home-leads.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  flex-direction: column;
  align-items: center;
}

/*********************************************
 * HOMEPAGE STYLES - END
 ****************************************** */
/*********************************************
 * SERVICES - START
 ****************************************** */
.kli-web-branding-banner {
  background-image: url("../images/services/kli-website-branding.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.kli-socmed-mktg-banner {
  background-image: url("../images/services/kli-socmed-marketing.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.kli-add-on-services-banner {
  background-image: url("../images/services/kli-add-on-services-2.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.kli-seo-banner {
  background-image: url("../images/services/kli-seo-2.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.kli-lead-generation-banner {
  background-image: url("../images/services/kli-lead-generation.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/*********************************************
 * SERVICES - END
 ****************************************** */
/*********************************************
 * BLOG - START
 ****************************************** */
.kli-loop-item-wrap {
  padding: 0 !important;
  border-radius: 0 0 10px 10px;
}
.kli-loop-item-wrap > p {
  padding: 4px 10px;
  margin-bottom: 0px !important;
}
.kli-loop-item-wrap > a {
  color: #646464;
}
.kli-loop-item-wrap > a:hover {
  color: #5ce1e6;
}

.kli-blog-card-wrap > figure {
  margin-bottom: 10px;
}
.kli-blog-card-wrap > figure:hover {
  opacity: 0.8;
}
.kli-blog-card-wrap > figure > a > img {
  border-radius: 10px 10px 0 0;
}
.kli-blog-card-wrap > h2 {
  padding: 4px 10px;
}
.kli-blog-card-wrap > h2 > a {
  color: #646464;
}
.kli-blog-card-wrap > h2 > a:hover {
  color: #5ce1e6;
}

.kli-blog-read-more {
  padding: 10px;
}

/*********************************************
 * BLOG - END
 ****************************************** */
/*********************************************
 * ABOUT US - START
 ****************************************** */
.kli-about-banner {
  background-image: url("../images/klicked-about-us.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

.kli-about-banner-2 {
  background-image: url("../images/klicked-digital-partner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.kli-about-banner-3 {
  background-image: url("../images/klicked-digital-growth.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.kli-about-banner-4 {
  background-image: url("../images/klicked-core-values.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.kli-banner-leadership {
  background-image: url("../images/klicked-the-leadership.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

.kli-about-columns-wrap > div {
  color: #929292;
  background-color: #272729;
  padding: 24px;
  border-radius: 10px;
}

.kli-card-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}

.kli-leadership-column-wrap {
  background-color: rgba(39, 39, 41, 0.6);
  padding: 20px;
  border-radius: 10px;
}
.kli-leadership-column-wrap img {
  border-radius: 10px;
  border: 1px solid #fff;
}

.kli-leadership-details-wrap {
  color: #fff;
}

.kli-leadership-name-wrap {
  color: #5ce1e6;
}

.kli-leadership-position-wrap {
  font-size: 10px;
  font-weight: 400;
  padding-bottom: 10px;
}

.kli-paragraph-highlight {
  color: #929292;
  font-size: 1.2rem;
}

.kli-headline-white {
  color: #fff;
}

.kli-center-text {
  text-align: center;
}

.kli-right-text {
  text-align: right;
}

.kli-about-contact-us {
  color: #5ce1e6;
  opacity: 1;
}

.kli-about-contact-us:hover {
  opacity: 0.8;
}

/*********************************************
 * ABOUT US - END
 ****************************************** */
/*********************************************
 * PRIVACY POLICY - START
 ****************************************** */
.kli-privacy-policy-banner {
  background-image: url("../images/klicked-privacy-policy-locks.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/*********************************************
 * PRIVACY POLICY - END
 ****************************************** */
/*********************************************
 * FAQ - START
 ****************************************** */
.kli-faq-banner {
  background-image: url("../images/klicked-faq.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.faq-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  padding: 1rem;
  cursor: pointer;
  position: relative;
}

.accordion-question::after {
  content: "+";
  position: absolute;
  right: 1rem;
}

.accordion-question.active::after {
  content: "–";
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1rem;
}

.accordion-answer.open {
  max-height: 500px; /* enough to show the content */
  padding: 0 1rem 1rem;
}

.faq-section-dark .faq-title {
  color: #5ce1e6;
}
.faq-section-dark .accordion-question {
  color: #fff;
}
.faq-section-dark .accordion-answer {
  color: #fff;
}
.faq-section-dark .accordion-item {
  border-bottom: 1px solid #fff;
}

/*********************************************
 * FAQ - END
 ****************************************** */
/*********************************************
 * CONTACT US - START
 ****************************************** */
.kli-contact-us-banner {
  background-image: url("../images/klicked-contact-us.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.kli-contact-details-wrap a {
  color: #5ce1e6;
  opacity: 1;
  white-space: nowrap;
  text-decoration: none;
}
.kli-contact-details-wrap a:hover {
  opacity: 0.8;
}

/*********************************************
 * CONTACT US - END
 ****************************************** */
/*********************************************
 * SIGN UP - START
 ****************************************** */
.kli-sign-up-col-wrap {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
}

.kli-su-faq-wrap {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.kli-su-faq-wrap p {
  margin-bottom: 0;
}

.kli-su-faq {
  flex: 1;
  min-width: 300px; /* Allows wrapping based on width */
  padding: 1rem;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 10px;
}

/* Optional: force 1 column layout on small screens */
@media (max-width: 768px) {
  .kli-su-faq-wrap {
    flex-direction: column;
  }
}
.kli-su-faq-terms {
  display: flex;
  gap: 5px;
}
.kli-su-faq-terms div {
  color: #5ce1e6;
  background-color: #000;
  padding: 5px;
  border-radius: 5px;
}

.kli-su-faq-question {
  margin: 5px 0;
}

.kli-su-faq-answer a {
  color: #646464;
}
.kli-su-faq-answer a:hover {
  opacity: 0.8;
}

/*********************************************
 * SIGN UP - END
 ****************************************** */
/*********************************************
 * OPT-IN - START
 ****************************************** */
.kli-opt-in-checklist {
  list-style-type: none;
}

.kli-opt-in-bullet {
  padding-left: 20px;
}

/*********************************************
 * OPT-IN - START
 ****************************************** */
/*********************************************
* FOOTER - START
****************************************** */
#site-footer-wrap {
  background-color: #000;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 0px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.site-footer-logo {
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-brand-footer {
  color: #5ce1e6;
  text-decoration: none;
}
.site-brand-footer:hover {
  color: #fff;
}

.site-footer-columns {
  display: flex;
  gap: 20px;
  row-gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
}
.site-footer-columns .site-footer-company-wrap {
  display: flex;
  gap: 60px;
}

.kli-nav-footer-list {
  list-style-type: none; /* Removes the bullets */
  padding: 0; /* Removes default left padding */
  margin: 10px 0 0 0;
  display: flex;
  flex-direction: column;
}
.kli-nav-footer-list a {
  color: #fff;
  text-decoration: none;
}
.kli-nav-footer-list a:hover {
  color: #5ce1e6;
}

.site-footer-contact-wrap {
  color: #fff;
}
.site-footer-contact-wrap a {
  color: #fff;
  text-decoration: none;
}
.site-footer-contact-wrap a:hover {
  color: #5ce1e6;
}
.site-footer-contact-wrap div {
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.site-footer-contact-wrap > div:not(:last-child) {
  border-bottom: 1px solid #646464;
}
.site-footer-contact-wrap .site-footer-social-wrap div a svg:hover {
  fill: #5ce1e6;
  stroke: #5ce1e6;
}

.site-footer-social-wrap {
  display: flex;
  gap: 10px;
}

.site-footer-copyright-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
.site-footer-copyright-wrap a {
  color: #929292;
  text-decoration: none;
}
.site-footer-copyright-wrap a:hover {
  color: #5ce1e6;
}

/*********************************************
 * FOOTER - END
 ****************************************** */
/*********************************************
 * GRAVITY FORMS - START
 ****************************************** */
#gform_submit_button_1,
#gform_submit_button_2,
#gform_submit_button_3 {
  color: #000;
  background-color: #5ce1e6;
}
#gform_submit_button_1:hover,
#gform_submit_button_2:hover,
#gform_submit_button_3:hover {
  color: #5ce1e6;
  background-color: #000;
}

#gform_submit_button_2,
#gform_submit_button_3 {
  width: 100%;
}

.kli-gform-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

#gform_wrapper_2 {
  background-color: #ababab;
  padding: 0px 20px 80px 20px;
  border-radius: 10px;
  position: absolute;
  clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
  box-shadow: 0 4px 2px -2px gray;
}

#field_3_7 {
  border-bottom: none;
}
#field_3_7 h3 {
  display: none;
}

#gfield_description_3_7 {
  font-size: 12px;
}

@media screen and (max-width: 950px) {
  #gform_wrapper_2 {
    position: initial;
  }
}
@media only screen and (max-width: 839px) {
  .ginput_recaptcha iframe {
    transform: scale(0.9);
    transform-origin: 0 0;
  }
}
@media only screen and (max-width: 390px) {
  .ginput_recaptcha iframe {
    transform: scale(0.85);
    transform-origin: 0 0;
  }
}
.gform-theme--foundation #gform_fields_2 {
  grid-row-gap: 10px !important;
}

/*********************************************
 * GRAVITY FORMS - END
 ****************************************** *//*# sourceMappingURL=styles.css.map */