/* common styles by J.S */

:root {
  --black-color: #000;
  --white-color: #fff;
  --dark-color: #0F1631;
  --orange-color: #F26424;
  --grey-color: #E7E8EC;
  --dark-mode: #C2C2C2;
}

@font-face {
  font-family: "DMSans-Regular";
  src: url("../fonts/DMSans-Regular.ttf");
  font-weight: normal;
}

@font-face {
  font-family: "DMSans-Medium";
  src: url("../fonts/DMSans_Medium.ttf");
  font-weight: normal;
}

@font-face {
  font-family: "Helvetica-Thin";
  src: url("../fonts/HelveticaNeueThin.otf");
  font-weight: normal;
}

@font-face {
  font-family: "Helvetica-Medium";
  src: url("../fonts/HelveticaNeueMedium.otf");
  font-weight: normal;
}

.content-fonts h1 {
  font-weight: 600;
  line-height: normal;
  margin: 0;
  font-family: "Helvetica-Thin";
}

.content-fonts h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 57px;
  margin: 0;
  font-family: 'Helvetica-Thin';
}

.content-fonts h3 {
  font-size: 32px;
  line-height: normal;
  margin: 0;
}

.content-fonts h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

.content-fonts h5 {
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

.content-fonts h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  -webkit-line-clamp: 28px;
  margin: 0;
}

.content-fonts p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin: 0px;
  font-family: "DMSans-Regular";
}

.content-fonts a {
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
}

.content-fonts .title-italic {
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.72px;
  text-transform: uppercase;
}

.content-fonts .padding-136 {
  padding: 80px 0px;
}

.content-fonts .padding-100 {
  padding: 100px 0px;
}

.content-fonts .padding-68 {
  padding: 68px 0px;
}

.content-fonts .container {
  max-width: 1320px;
  margin: 0 auto;
}

.content-fonts .btn {
  padding: 13px 26px;
  border-radius: 12px;
  font-family: "DMSans-Regular";
  font-size: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.content-fonts .org .btn {
  background: var(--orange-color);
  color: var(--white-color);
  border: 1px solid transparent;
}

.content-fonts .trans .btn {
  background: transparent;
  color: var(--white-color);
  border: 1px solid #FFF;
}

.content-fonts .trans-org .btn {
  border: 1px solid rgba(242, 100, 36, 0.30);
  color: var(--orange-color);
}

.content-fonts .trans .btn:hover {
  color: var(--black-color);
  background: var(--white-color);
}

.content-fonts .trans .btn:hover img {
  filter: invert(1);
}

.content-fonts .btn img {
  transition: all 0.4s ease-in-out;
}

.content-fonts .dark-bg {
  background-color: var(--dark-color);
  color: var(--grey-color);
}

.content-fonts .org:hover .btn {
  border: 1px solid rgba(242, 100, 36, 0.30);
  color: var(--orange-color);
  background: transparent;
}

.content-fonts .trans-org .trans-org-img {
  width: 22px;
  height: 20px;
  background-image: url(/wp-content/uploads/2025/01/right-o-arrow.svg);
  background-size: contain;
  background-position: center;
  transition: all 0.4s ease-in-out;

}

.content-fonts .trans-org:hover .btn {
  background: var(--orange-color);
  color: var(--white-color);
}

.content-fonts .trans-org:hover .trans-org-img {
  background-image: url(/wp-content/uploads/2025/01/right-w-arrow.svg);
}

.content-fonts .white-bg {
  background: #EBEBEB;
  color: #363636;
}

.content-fonts .d-flex {
  display: flex;
}

.serv-inner-title.dark-bg span {
  background: linear-gradient(88deg, #202846 -49.15%, #1B223B 110.6%);
  color: #E7E8EC;
}

.header-call-desc .blink-dot {
  width: 7px;
  height: 7px;
  background-color: #3498db;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0% {
    transform: scale(1);
    background-color: #00B388;
  }

  50% {
    transform: scale(1.4);
    background-color: #00B388;
  }

  100% {
    transform: scale(0.9);
    background-color: #00B388;
  }
}

.header-call-main {
  gap: 12px;
  align-items: center;
  color: #fff;
  font-family: 'Helvetica-Thin';
}

.header-call-desc {
  flex-direction: column;
  gap: 5px;
}

.header-call-desc h6 {
  font-size: 21.285px;
  font-style: normal;
  font-weight: 400;
}

.header-call-desc span {
  color: #00B388;
  text-align: center;
  font-size: 13.303px;
  font-style: normal;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* header */
header#masthead {
  border-bottom: 1px solid rgb(61 61 61);
  box-shadow: 0px 2px 2px 0px var(--dark-color);
  animation-duration: 0.9s;
  animation-fill-mode: both;
  transition: all 0.3s ease;
  position: relative;
  z-index: 99;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
}

.header-inner ul#menu-header-menu a {
  color: var(--grey-color);
  font-family: "Helvetica-Thin";
  font-weight: 400;
  letter-spacing: 0.7px;
}

.header-menu ul#menu-header-menu {
  column-gap: 24px;
}

.header-buttons a:hover {
  opacity: 0.9;
}

.mob-block {
  display: none;
}

.header-buttons a {
  font-size: 16px;
}

/* white header */
header#masthead .trans-header {
  background: transparent;
  transition: transform 0.8s ease;
  width: 100%;
  position: fixed;
}

header#masthead.trans-header .header-inner ul#menu-header-menu a {
  color: #E7E8EC;
}

/* white header */

/* sticky header */

header#masthead.sticky-header {
  top: 0px;
  transition: all 0.8s ease;
  z-index: 9999;
  width: 100%;
  left: 0;
  right: 0;
  position: fixed;
  animation-name: fadeInDown;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

header#masthead.sticky-header .header.trans-header {
  background: var(--dark-color);
}

/* sticky header */

/* header */

/* footer */
.site-footer-inner-top {
  display: flex;
  justify-content: space-between;
}

.site-footer-inner-top-left {
  flex: 0 25%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.site-footer-inner-top-right {
  flex: 0 35%;
}

.footer-inner {
  padding: 80px 0px 40px;
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.site-footer-connect ul {
  margin: 0px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-footer-connect ul li a {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  font-family: 'Helvetica-Thin';
  line-height: 24px;
}

.site-footer-inner-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgb(182 185 195 / 9%);
  border-bottom: 1px solid rgb(182 185 195 / 9%);
  padding: 24px 0px;
}

.site-footer-pages ul {
  margin: 0px;
  display: flex;
  gap: 32px;
}

.site-footer-pages ul li a {
  color: #B6B9C4;
  font-size: 20px;
  line-height: 36px;
  position: relative;
  font-family: 'Helvetica-Thin';
}

.site-footer-images>figure.wp-block-gallery {
  gap: 24px;
}

.site-footer-images figure.wp-block-gallery figure.wp-block-image {
  width: auto !important;
}

.site-footer-pages ul li:not(:last-child) a:after {
  content: "|";
  position: absolute;
  right: -17px;
}

.site-footer-social figure.wp-block-gallery {
  display: flex;
  gap: 18px;
  width: 100%;
}

.site-footer-social figure.wp-block-gallery figure.wp-block-image img {
  width: 27px !important;
  height: 27px !important;
  object-fit: contain;
}

.site-footer-social figure.wp-block-gallery figure.wp-block-image {
  width: auto !important;
  flex-grow: unset !important;
}

.site-footer-inner-top-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.site-footer-social {
  /* width: 215px; */
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.site-footer-social hr {
  width: 100%;
}

.site-footer-social p {
  font-family: "Helvetica-Thin";
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.6px;
}

.site-footer-top-form h5 {
  font-family: 'Helvetica-Medium';
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.28px;
  text-transform: capitalize;
}

.site-footer-top-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

form.footer_newsletter {
  position: relative;
  max-width: 400px;
}

form.footer_newsletter .gform_footer.top_label {
  position: absolute;
  left: 87%;
  right: auto;
  z-index: 999;
  top: 10px;
  opacity: 0;
  margin: 0px;
  padding: 0px;
  max-width: 10px;
}

form.footer_newsletter .footer-news-email .ginput_container_email {
  position: relative;
  display: flex;
  flex-direction: column;
}

form.footer_newsletter .footer-news-email .ginput_container_email:after {
  content: "";
  padding: 5px;
  border-radius: 5.714px;
  opacity: 0.3;
  background: #ffffff;
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 999;
  left: 87%;
  top: 10px;
  background-image: url(/wp-content/uploads/2025/01/right-up.svg);
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.3s ease-in-out;
}

form.footer_newsletter:hover .footer-news-email .ginput_container_email:after {
  opacity: 1;
}

form.footer_newsletter .footer-news-email .ginput_container_email input[type="email"] {
  border-radius: 16px;
  /* background: rgba(255, 255, 255, 0.10); */
  padding: 12px 24px;
  height: 60px;
  color: var(--dark-color);
}

form.footer_newsletter .gform_footer.top_label input[type="submit"] {
  max-width: 40px;
}

form.footer_newsletter div.footer-news-email {
  grid-column: unset;
  min-inline-size: unset;
}

form.footer_newsletter .footer-news-email {
  grid-column: auto;
  min-inline-size: unset;
}

form.footer_newsletter .gform_fields.top_label {
  display: flex;
  flex-direction: column;
}

.site-footer-top-form p {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-family: 'Helvetica-Thin';
}

.site-footer-social ul.wp-block-social-links li svg {
  width: 24px;
  height: 24px;
}

.site-footer-social>div {
  gap: 16px;
  width: 100%;
  margin: 0px;
}

.site-footer-social ul.wp-block-social-links {
  margin: 0;
}

.site-footer-social>div.wp-block-columns>.wp-block-column {
  flex-grow: unset !important;
  flex-basis: max-content !important;
}
.site-copy-inner {
  display: flex;
  justify-content: center;
  margin-top: -16px;
  text-align: center;
}

.site-copy-inner p {
  font-size: 20px;
  font-style: normal;
  font-weight: 200;
  line-height: 36px; /* 180% */
  letter-spacing: -0.2px;
  text-transform: capitalize;
  font-family: 'DMSans-Regular';
  color: #B6B9C3;
}
.site-copy-inner p a {
  text-decoration: none;
  color: inherit;
}
/* footer */

/* homepage */
.hero-top {
  flex-direction: column;
  gap: 48px;
  align-items: center;
  text-align: center;
}

.hero-top-desc {
  flex-direction: column;
  gap: 8px;
}

.hero-top-btn a {
  display: block;
}

.serv-inner-top {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.serv-inner-desc {
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.serv-inner {
  flex-direction: column;
  gap: 56px;
}

.serv-inner,
.serv-sec-main {
  flex-direction: column;
  gap: 56px;
}

.serv-inner-title span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 16px;
  background: #ffffff;
}

.serv-cards-inner .serv-card-single {
  padding: 40px;
  border-radius: 32px;
  background: #FFF;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.serv-card-desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.serv-cards-inner .serv-card-single h3 {
  font-family: 'Helvetica-Medium';
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
  min-height: 2.1em;
  margin: 0px;
  color: #595959;
  transition: all 0.2s ease-in-out;
}

.serv-cards-inner .serv-card-single:hover h3 {
  color: var(--orange-color);
}

.serv-card-desc a {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #747474;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.serv-card-desc p {
  color: #A0A0A0;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  font-family: "DMSans-Regular";
}

.platform-sec {
  padding: 50px 0px;
}

.platform-inner {
  flex-direction: column;
  gap: 56px;
  align-items: center;
}

.platform-inner-slider .owl-stage {
  direction: ltr;
  /* Left to Right */
}

.serv-cards-inner.process-sec {
  gap: 20px;
}

/* .serv-sec {
  background: linear-gradient(181deg, #FEFEFE 1.01%, #F6F8FE 60.34%, #EDF1FF 131.4%);
} */

/* .process-sec-main {
  background: linear-gradient(180deg, #FAFAFA 0%, #ECECEC 100%);
} */

.meeting-sec-inner {
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.serv-card-desc a {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #747474;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.meeting-left-sec {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

section.meeting-sec {
  position: relative;
  background-color: #EBEBEB;
}
section.meeting-sec .serv-inner-title span {
  color: #595959;
}
.meeting-right-sec {
  position: relative;
  z-index: 9;
}

.serv-review-single {
  gap: 8px;
}

.serv-inner-review-sec {
  gap: 40px;
}

section.serv-sec.feedback-desc .serv-cards-inner .serv-card-single {
  background: rgba(234, 234, 234, 0.08);
  margin-bottom: 35px;
}

section.serv-sec.feedback-desc .serv-cards-inner .serv-card-single .feedback-client-title {
  display: flex;
  flex-direction: unset;
  align-items: center;
  gap: 16px;
}

.hero-inner .hero-top {
  max-width: 910px;
  margin: 0 auto;
}

.homer-hero-inner-main {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.hero-inner p {
  max-width: 70%;
  margin: 0 auto;
  font-family: "DMSans-Regular";
  font-weight: 400;
  color: #B6B9C3
}


.hero-bottom-inner {
  display: flex;
  justify-content: center;
  height: 500px;
}

.hero-bottom-inner .hero-bottom-left,
.hero-bottom-inner .hero-bottom-right {
  border-radius: 27px;
  overflow: hidden;
  flex: 0 46%;
  position: absolute;
  top: 0;
  height: 100%;
  transition: all 1s ease-in-out;
}

.hero-bottom-left {
  right: 50%;
  transform: translateX(50%);
  opacity: 0;
}

.hero-bottom-right {
  left: 50%;
  transform: translateX(-50%);
}

section.home-hero {
  background-image: url(/wp-content/uploads/2025/01/hero-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-bottom {
  position: relative;
  max-width: calc(100vw - 10%);
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}

.hero-bottom-inner img {
  width: 100%;
  height: 100%;
  max-width: 850px;
  max-height: 500px;
}

.hero-bottom-inner:hover .hero-bottom-left {
  right: 0px;
  transform: none;
  opacity: 1;
}

.hero-bottom-inner:hover .hero-bottom-right {
  left: 0;
  transform: none;
}

.platform-inner-title h3 {
  color: var(--white-color);
  font-size: 32px;
  font-weight: 600;
  font-family: 'Helvetica-Thin';
  letter-spacing: -0.32px;
  line-height: 38.4px;
}

.serv-cards-inner .owl-stage {
  display: flex;
}

.serv-cards {
  overflow: hidden;
}

.serv-inner-bottom.manged-main {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.controls-slider-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.manged-slider-btn {
  display: flex;
  gap: 24px;
  align-items: center;
}

.feedback-desc .manged-slider-btn {
  visibility: hidden;
}

.custom-prev-next button {
  padding: 14px 26px;
  border-radius: 12px;
  border: 1px solid #0a0f22;
}

.case-study-btn button {
  padding: 14px 26px;
  border-radius: 12px;
  border: 1px solid var(--orange-color);
  color: var(--orange-color);
}

.feedback-prev-next button {
  padding: 14px 26px;
  border-radius: 12px;
  border: 1px solid #595959;
  background-color: transparent;
}

.custom-prev-next button.owl-prev img,
.case-study-btn button.owl-prev img,
.feedback-prev-next button.owl-prev img {
  transform: rotate(180deg);
}

.feedback-prev-next button img {
  filter: invert(1);
}

.process-sec-main .process-sec-inner {
  gap: 20px;
}

section.serv-sec.feedback-desc {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

section.serv-sec.feedback-desc .serv-cards {
  flex-direction: column;
  gap: 24px;
}

.serv-card-img {
  max-width: 80px;
  width: 100%;
  max-height: 80px;
}

section.serv-sec.feedback-desc .serv-cards-inner .serv-card-single .feedback-desc {
  color: #A0A0A0;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  font-family: 'DMSans-Regular';
}

.feedback-client-name h6 {
  color: #9297A6;
  font-family: 'DMSans-Regular';
}

.feedback-client-name h5 {
  color: #E7E8EC;
  font-family: 'Helvetica-Medium';
  font-weight: 100;
}

.serv-review-single {
  font-family: 'DMSans-Regular';
  font-size: 20px;
  color: #B6B9C3;
  letter-spacing: -0.6px;
}

.meeting-left-sec h2 {
  color: #303030;
}

.meeting-left-sec p {
  color: #595959;
  line-height: 28px;
  font-family: 'DMSans-Regular';
}

.serv-card-desc h5 {
  font-family: 'DMSans-Regular';
  font-weight: 100;
}

.homer-hero-inner-main h1 {
  font-size: 72px;
  line-height: 86px;
}

/* .custom-prev-next .disabled,
.feedback-prev-next .disabled {
  visibility: hidden;
} */

.meeting-right-sec img {
  max-width: 550px;
  max-height: 550px;
}

.manged-cards-dots {
  display: none;
}

.platform-inner .owl-carousel img {
  width: 200px;
  height: 50px;
  object-fit: contain;
}

/* .serv-inner-top p {
  color: #A0A0A0;
} */

.feedback-dots button span {
  width: 8px;
  height: 8px;
  display: block;
}

.feedback-dots button {
  padding: 0px;
  border: none;
  background: #d9d9d9;
  margin-right: 6px;
  border-radius: 18px;
}

.feedback-dots button.active {
  background-color: var(--white-color);
}

.feedback-dots {
  justify-content: center;
}

.feedback-dots button {
  background-color: #D9D9D933;
}

/* homepage */

/* dark/light */
.content-fonts .dark-bg .serv-inner-title {
  color: var(--dark-color);
}

.serv-inner-title {
  border-radius: 16px;
}

.content-fonts section.serv-sec.feedback-desc.white-bg .serv-cards-inner .serv-card-single {
  background: rgb(31 38 66);
}

.content-fonts .white-bg .trans a {
  background: var(--dark-color);
}

.content-fonts .white-bg .feedback-prev-next button {
  background-color: var(--dark-color);
}

.content-fonts .dark-bg .meeting-left-sec h2 {
  color: var(--grey-color);
}

.content-fonts .white-bg .trans .btn:hover {
  border: 1px solid var(--dark-color);
}

.content-fonts .white-bg .platform-inner-title h3 {
  color: #303030;
}

/* dark/light */

/* cta popup */
div.modal-main-cta.cta_popup {
  position: fixed;
  z-index: 19999;
  top: 0;
  right: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
}


@media (max-width: 1340px) {}

@media (max-width: 1200px) {
  .content-fonts .padding-136 {
    padding: 60px 0px;
  }

  .site-footer-inner-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .site-footer-inner-top-left {
    flex: 0 35%;
  }

  .header-menu ul#menu-header-menu {
    column-gap: 14px;
  }

  .header-call-main {
    gap: 6px;
  }

  .header-inner ul#menu-header-menu a {
    font-size: 16px;
  }
}

@media (max-width: 991px) {


  .content-fonts .container {
    padding: 0px 16px;
  }

  .content-fonts .padding-68 {
    padding: 40px 0px;
  }

  .homer-hero-inner-main h1 {
    font-size: 48px;
    line-height: 44px;
  }

  .content-fonts h3 {
    font-size: 25px;
  }

  .homer-hero-inner-main {
    gap: 52px;
  }


  .header-inner .header-logo {
    order: 1;
    flex-grow: 1;
  }

  .header-buttons {
    order: 2;
  }

  .header-inner .mobile-menu {
    order: 3;
  }

  .header-menu-main {
    position: fixed;
    display: block;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    box-sizing: border-box;
    transition: top .8s ease-in-out, bottom .8s ease-in-out, visibility .8s ease-in-out;
    overflow: auto;
    z-index: 9999999999;
    overscroll-behavior: contain;
    visibility: hidden;
    background: var(--dark-color);
    top: -100vh;
    left: 0px;
    right: 0px;
    color: #fff;
  }

  .header-menu-main.active {
    top: 0px;
    visibility: visible;
  }

  .header-menu ul#menu-header-menu {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  ul#menu-header-menu li {
    padding-bottom: 20px;
    border-bottom: 1px solid #dcdcdc61;
  }

  .header-inner {
    gap: 16px;
  }

  .mob-block {
    display: block;
  }

  .header-main-menu-inner-top {
    display: flex;
    justify-content: space-between;
    padding: 24px 16px;
    border: 1px solid #ebedf038
  }

  .header-menu-main ul#menu-header-menu li a {
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    font-family: 'Helvetica-Thin';
  }

  .header-main-menu-inner-top-cross img {
    filter: invert(1);
  }

  /* footer */
  .site-footer-inner-top-left,
  .site-footer-inner-top-right {
    gap: 28px;
  }

  .site-footer-inner-top {
    flex-direction: column;
    gap: 52px;
  }

  .site-footer-social {
    gap: 6px;
  }

  .footer-inner {
    padding: 60px 0px 30px;
  }

  .site-footer-top-form {
    max-width: 500px;
  }
  .site-copy-inner p {
    font-size: 16px;
    line-height: 24px;
}
  /* footer */

  /* homepage */
  .meeting-sec-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .content-fonts h2 {
    font-size: 32px;
    font-style: normal;
    line-height: 44px;
  }

  .meeting-right-sec img {
    max-height: 358px;
  }

  .serv-inner,
  .serv-sec-main {
    gap: 32px;
  }

  .serv-inner-bottom.manged-main,
  .feedback-desc .serv-inner-bottom {
    gap: 24px;
    padding: 0px 16px;
  }

  section.serv-sec.feedback-desc {
    gap: 32px;
  }

  .process-sec-main .process-sec-inner {
    flex-wrap: wrap;
  }

  .hero-bottom-left,
  .hero-bottom-right {
    transform: none;
    opacity: 1;
  }

  .hero-bottom-inner .hero-bottom-left,
  .hero-bottom-inner .hero-bottom-right {
    position: initial;
  }

  .hero-bottom-inner .owl-stage {
    display: flex;
  }

  .hero-bottom-inner {
    height: auto;
  }

  .hero-top {
    gap: 24px;
  }

  .serv-card-desc {
    gap: 12px;
  }

  /* homepage */

}

@media (max-width: 767px) {
  .content-fonts .padding-136 {
    padding: 40px 0px;
  }
  .content-fonts .padding-100 {
    padding: 52px 0px;
  }

  .site-footer-inner-top {
    gap: 40px;
  }

  .site-footer-inner-bottom {
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .site-footer-pages ul li a {
    font-size: 20px;
    line-height: 36px;
  }

  /* header */
  .header-call-desc span {
    font-size: 10.303px;
  }

  .header-call-desc h6 {
    font-size: 16.285px;
    line-height: 18px;
  }

  .header-inner {
    padding: 10px 0px;
  }

  .header-call-main .header-call-desc {
    display: none;
  }

  .header-call-img {
    width: 40px;
    height: 40px;
  }

  /* header */

  /* homepage */
  .serv-inner-review-sec {
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 16px;
  }

  .serv-review-single {
    font-size: 16px;
    line-height: 24px;
  }

  .serv-inner-top {
    gap: 16px;
  }

  .platform-inner-title h3 {
    font-size: 24px;
    letter-spacing: -0.24px;
    line-height: normal;
    text-align: center;
  }

  .custom-prev-next,
  .feedback-prev-next {
    display: none;
  }

  .manged-slider-btn {
    width: 100%;
    justify-content: space-between;
  }

  .controls-slider-inner,
  .controls-slider-inner {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .manged-cards-dots {
    display: block;
  }

  .manged-cards-dots button span {
    width: 8px;
    height: 8px;
    display: block;
  }

  .manged-cards-dots button {
    padding: 0px;
    border: none;
    background: #d9d9d9;
    margin-right: 6px;
    border-radius: 18px;
  }

  .manged-cards-dots button.active {
    background: #494949;
  }

  .feedback-desc .manged-slider-btn {
    justify-content: center;
    display: none
  }

  section.serv-sec.feedback-desc .serv-cards-inner .serv-card-single {
    margin-bottom: 0px;
  }

  .serv-cards-inner.process-sec-inner .serv-card-single {
    gap: 24px;
    padding: 32px;
  }

  /* homepage */
}

@media (max-width: 650px) {
  .content-fonts .padding-100 {
    padding: 40px 0px;
  }

  ul#menu-footer-pages {
    flex-direction: column;
    gap: 24px;
  }

  .site-footer-inner-bottom {
    align-items: flex-start;
  }

  .site-footer-pages ul li:not(:last-child) a:after {
    display: none;
  }

  .site-footer-images>figure.wp-block-gallery {
    gap: 12px;
    margin: 0px;
  }

  .site-footer-images figure.wp-block-gallery figure.wp-block-image {
    flex-grow: unset;
  }

  .site-footer-inner-bottom {
    padding-bottom: 12px;
  }

  .site-footer-top-form p {
    line-height: 30px;
  }

  .site-footer-inner-bottom {
    gap: 40px;
    align-items: center;
  }

  .site-footer-images>figure.wp-block-gallery {
    gap: 24px;
    align-items: center;
    flex-direction: column;
  }

  form.footer_newsletter .footer-news-email .ginput_container_email input[type="email"] {
    height: 48px;
    padding: 12px 16px;
  }

  form.footer_newsletter .footer-news-email .ginput_container_email:after,
  form.footer_newsletter .gform_footer.top_label {
    top: 4px;
  }

  .footer-inner {
    padding: 40px 0px 40px;
  }

  /* homepage */
  .serv-cards-inner .serv-card-single h3 {
    min-height: auto;
  }

  .hero-inner p {
    max-width: calc(100vw - 10%);
  }

  /* homepage */
}

@media (max-width: 350px) {


  .header-call-img img {
    width: 35px;
    height: 35px;
  }
}