@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.4;
  font-style: normal;
  --prime: #d62717;
  --text: #2e2e2e;
  --accent: #ea9993;
  scroll-behavior: smooth;
  --base-size: clamp(0.9rem, calc(0.6rem + 0.5vw), 1.1rem);
  font-size: var(--base-font);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where(*:not(.bg-prime *, .fancybox-container *)) {
  color: var(--text);
}

@media (width < 768px){
	main{
	max-width:100vw;
	overflow-x:hidden;
}
}

.bg-prime {
  background: var(--prime);
  color: #fff;
}

.bg-prime * {
  color: #fff;
}

.text-prime {
  color: var(--prime);
}
.text-center {
  text-align: center;
}
.bold {
  font-weight: 700 !important;
}
/* typography */

h1 {
  font-size: clamp(2rem, calc(1.5rem + 2.5vw), 3rem);
  font-weight: 500;
}

.h2 {
  font-size: clamp(1.8rem, calc(1.3rem + 2.2vw), 3rem);
  font-weight: 500;
  line-height: 1.3;
}

.h3 {
  font-size: clamp(1.6rem, calc(1.2rem + 1.8vw), 2.5rem);
  font-weight: 500;
}

.h4 {
  font-size: clamp(1.4rem, calc(1.1rem + 1.5vw), 2.2rem);
  font-weight: 500;
}

.h5 {
  font-size: clamp(1rem, calc(0.9rem + 1vw), 1.5rem);
  font-weight: 500;
}

.h6 {
  font-weight: 500;
}
h1:has(span),
h2:has(span) {
  font-weight: 200 !important;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-weight: 600 !important;
  color: var(--prime);
}

.richtext h1 span,
.richtext h2 span,
.richtext h3 span,
.richtext h4 span,
.richtext h5 span,
.richtext h6 span {
  font-weight: 600 !important;
  color: inherit;
}

blockquote,
.quote {
  padding: 3rem;
/*   font-size: inherit; */
/*   text-align: center; */
  position: relative;
  max-width: min(var(--max-w), 100%);
  margin: auto;
}

.quote {
  font-size: calc(var(--base-size) * 1.5);
}

blockquote::before,
blockquote::after,
.quote::before,
.quote::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}


blockquote::before,
.quote::before {
  top: 0;
  left: 0;
  background-image: url('../img/openquote.png');
}

blockquote::after,
.quote::after {
  bottom: 0;
  right: 0;
  background-image: url('../img/closequote.png');
}


img:not(img[class*=wp-image-]) {
  width: 100%;
  height: auto;
}

.blog-card {
	cursor:pointer;
}

.blog-card-image img{
	 width: 100%;
	  height: 100% !important;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
}

li,
p {
  margin-bottom: 1rem;
}
p {
  line-height: 26px;
}
/* blocks & sections */
main {
  min-height: 70vh;
}

.container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: clamp(1rem, calc(1rem + 3.5vw), 6rem);
}

section > .container {
  padding-block: clamp(2rem, calc(1.5rem + 3.5vw), 6rem);
}

.row {
  display: grid;
  gap: 20px;
}

.row .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (width > 1024px) {
  .row {
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--base-size) * 1.5);
  }

  .row.reverse {
    direction: rtl;
  }

  .row.reverse > * {
    direction: ltr;
  }
}

.btn-prime {
  background: var(--prime);
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 400;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all.3s ease-in-out;
}

.btn-prime:hover {
  border-radius: 24px;
}

/* footer */
footer {
  background: radial-gradient(
    38.18% 118.85% at 50% 50%,
    #1e1a70 0%,
    #0f0e2b 100%
  );
}

footer * {
  color: #fff !important;
}

footer .columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
  gap: 1.4rem;
  padding-block: 1.9rem;
}

footer .columns > div {
  max-width: 420px;
}

footer .columns h3,
footer .columns h4,
footer .columns h5 {
  font-weight: 500;
  font-size: 24px;
  margin-top: 10px;
}

footer .columns h3 {
  font-size: 36px;
  text-transform: uppercase;
}

footer .columns h5 {
  font-size: 40px;
  font-weight: 300;
}

footer .columns p {
  font-weight: 300 !important;
  font-size: 13px !important;
  margin-top: 0.8rem;
}

footer .columns a {
  display: block;
  font-size: 18px !important;
  font-weight: 300 !important;
}

.social-media {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.social-media a {
  max-width: 50px;
  aspect-ratio: 1;
}

footer .credit-area .flex,
footer .credit-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-block: 1rem;
}

footer .credit-area * {
  font-size: 18px;
  font-weight: 300;
}

footer .credit-area img {
  width: 48px;
  height: auto;
}

/* Dialog Modal */
dialog {
  padding: 2rem;
  margin: auto;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
}

.hero {
  background: var(--lgr-prime);
  color: #fff;
}

.hero .container {
  padding-block: var(--base-font);
}

/* Animations - Effective if user has no preferance for reduced motion */

@media (prefers-reduced-motion: no-preference) {
  .banner-home .owl-item .banner_inn p,
  .banner-home .owl-item .banner_inn h2,
  .banner-home .owl-item .banner_inn .banner-link,
  .animate-this.up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-in-out;
  }
  .banner-home .owl-item.active .banner_inn p,
  .banner-home .owl-item.active .banner_inn h2,
  .banner-home .owl-item.active .banner_inn .banner-link,
  .animate-this.up.animated {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-in-out;
  }

  .banner-home .owl-item.active .banner_inn h2 {
    transition-delay: 0.2s;
  }
  .banner-home .owl-item.active .banner_inn p.tab-name {
    transition-delay: 0.4s;
  }
  .banner-home .owl-item.active .banner_inn .banner-link {
    transition-delay: 0.6s;
  }

  .animate-this.swipe {
    opacity: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .animate-this.swipe.animated {
    opacity: 1;
    animation: text-slice-animation 1.2s ease-in-out forwards;
  }

  /* .animate-this.quickup{
    opacity: 0 !important;
    transform: translateY(200px) !important;
    transition: all 0.8s ease-in-out !important;
  }
  .animate-this.quickup.animated{
    opacity: 1 !important;
    transform: translateY(0)!important;
    transition: all 0.8s ease-in-out !important;
  } */

  @keyframes text-slice-animation {
    0% {
      clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }

    100% {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
  }

  .animate-this.spin {
    transform: rotate(0deg);
    transition: transform 1s ease-in-out;
  }

  .animate-this.spin.animated {
    transform: rotate(90deg);
    transition: transform 1s ease-in-out;
  }
  .animate-this.swipeleft {
    opacity: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .animate-this.swipeleft.animated {
    opacity: 1;
    animation: text-slice-animation-left 1.2s ease-in-out forwards;
  }

  @keyframes text-slice-animation-left {
    0% {
      clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }

    100% {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
  }

  .animate-this.animated {
    animation: fade-in 0.8s ease-in-out forwards;
  }

  .animate-this.rtl {
    opacity: 0;
    transform: translateX(50px);
  }

  .animate-this.animated.rtl {
    animation: fade-in-right 0.8s ease-in-out forwards;
  }

  .animate-this.lft {
    opacity: 0;
    transform: translateX(-20px);
  }

  .animate-this.animated.lft {
    animation: fade-in-left 0.8s ease-in-out forwards;
  }

  @keyframes fade-in {
    to {
      opacity: 1;
      transform: translateY(0px);
    }
  }

  @keyframes fade-in-right {
    to {
      opacity: 1;
      transform: translateX(0px);
    }
  }
  @keyframes fade-in-left {
    to {
      opacity: 1;
      transform: translateX(0px);
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fadeInUp {
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.5s;
  }
}
.contact_image {
  max-width: 560px;
}
.contact_txt {
  max-width: 523px;
  margin-left: auto;
}
.contact_txt h2 {
  margin-bottom: 10px;
}
.contact_txt p {
  font-size: 18px;
  margin-bottom: 25px;
}
.contact_btmtxt h6 {
  font-size: 18px;
  font-weight: 400;
}
.contact_btmtxt a {
  font-size: 18px;
  text-decoration: underline;
}

.getin_sec h2 {
  margin-bottom: 5px;
}
.getin_sec p {
  font-size: 18px;
}
.getin_txt {
  max-width: 460px;
}
.footer-logo {
  max-width: 197px;
}
.footer-logo img {
  margin-bottom: 15px;
}
footer ul {
  column-count: 2;
  gap: 45px;
}
footer ul li {
  display: block;
  margin-bottom: 18px;
}
footer ul li {
  display: block;
}
footer .columns h4 {
  margin-bottom: 15px;
}
.contact-link a {
  margin-bottom: 10px;
  display: block;
}

@media (width > 1200px) {
  .contact-link {
    padding-right: calc(1rem + 5vw);
  }
}

.contact-form label {
  font-size: 16px;
  font-weight: 600;
  color: #2e2e2e;
}
.contact-form {
  max-width: 598px;
  margin-left: auto;
  padding: 15px 0px 0;
}
.contact-form input,
.contact-form select {
  border: 0;
  padding: 10px 0px;
  width: 100%;
  font-size: 14px;
  color: #2e2e2e;
  line-height: 22px;
  outline: none;
  border-radius: 0px;
  border-bottom: 1px solid #2e2e2e;
  background: transparent;
}
.contact-form div.halfs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.contact-form textarea {
  border: 0;
  height: 40px;
  border-bottom: 1px solid #2e2e2e;
  background: transparent;
  padding: 10px 0px;
  width: 100%;
  font-size: 14px;
  color: #2e2e2e;
  line-height: 22px;
  outline: none;
  font-family: "Inter", sans-serif;
}
.contact-form input[type="submit"] {
  width: 100%;
  color: #fff;
  background-color: var(--prime);
  font-weight: 500;
  padding: 12px 20px 13px;
  text-align: center;
  font-size: 16px;
  border-radius: 10px;
  transition: background-color 0.4s ease-in-out;
  border: 0;
  -webkit-appearance: none;
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 30px 0 40px;
  position: relative;
}
/* .categories-list:before{
	content:'';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	border-bottom: 10px dotted #D9D9D9;
	z-index: -1;
} */
.category-link {
  padding: 6px 0px;
  color: #0008;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 400;
  margin-right: 15px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.category-link:last-child {
  margin-right: 0px;
}
.category-link:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
/*   background: #d63427; */
  transition: all 0.5s ease-in-out;
}
.category-link.hover:before,
.category-link.active:before {
  width: 100%;
  transition: all 0.5s ease-in-out;
	background:#000;
}
.category-link:hover:before {
  width: 100%;
  left: 0;
  transition: all 0.5s ease-in-out;
  right: auto;
}
/* .category-link.active:before {
    content: '';
	position: absolute;
	left: 2px;
    bottom: -10px;
    width: 105%;
	height: 10px;
	background: #fff;
	background-size: cover;
	z-index: -1;
} */
.category-link.active,
.category-link:hover {
  color: #000;
  transition: all 0.5s ease-in-out;
}

.latest-blog > h2 {
  margin-bottom: 30px;
  font-weight: 600;
}
.blog-card-image {
  padding: 0;
  width: 100%;
  padding-bottom: 64%;
  border: 0;
  position: relative;
  margin-bottom: 22px;
}
.blog-card-image img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.blog-grid .blog-card:nth-child(1) .blog-card-image,
.blog-grid .blog-card:nth-child(2) .blog-card-image {
  padding-bottom: 52%;
}
.blog-card {
  margin: 10px 0;
}

.blog-card h2 {
  font-size: 24px;
  margin-bottom: 8px;
}
.blog-meta span.separator {
  color: #d63427;
}
.blog-card p {
  margin-bottom: 15px;
}
.vacancies .item {
  padding: 16px 24px 24px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
  background-color: #ffffff;
}
.vacancies .item:last-child {
  margin-bottom: 0;
}
.vacancies .item h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 9px;
}
.career-head {
  margin-bottom: 40px;
}
.vacancies .item .desc {
  max-width: 1080px;
}
.vacancies .item .jobfoot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vacancies .item .jobfoot .badges {
  display: flex;
  gap: 14px;
}
.vacancies .badge {
  background-color: rgba(215, 51, 40, 0.15);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
  color: #2e2e2e;
}
.vacancies .badge img {
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
}
.vacancies .desc ul {
  padding-left: 20px;
}
.vacancies .desc h4 {
  margin-bottom: 10px;
}
.apply-now {
  font-size: 14px;
  padding: 10px 20px;
}
.getin_sec {
  background: #f6f7fb;
}
.values-sec {
  padding: 20px 0;
}
.values {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}
.values .valuecard {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  padding: 17px 20px 13px;
  border-radius: 10px;
  width: 47%;
  transition: transform 0.3s ease;
}
.values .valuecard:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}
.values-main {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.values-txt {
  max-width: 572px;
}
.values-txt p {
  font-size: 15px;
  margin-bottom: 8px;
}
.values-txt .h2 p {
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
  margin-bottom: 0;
}
.values-txt .h2 p span {
  display: inline-block;
  color: #d63427;
}
.values-desc {
  width: calc(100% - 572px);
}
.values-desc p {
  margin-bottom: 0;
  line-height: 32px;
}
.values-images img {
  border-radius: 10px;
}
.values .valuecard h3 {
  font-weight: 600;
  margin-bottom: 5px;
}
.values .valuecard p {
  margin-bottom: 10px;
}
.values .valuecard .number {
  font-size: 32px;
  font-weight: 600;
  text-align: right;
}
.values-sec .row {
  align-items: center;
  display: block;
}
.value-gallery h2,
.team_sec h2,
.team_sec h2,
.points_sec h2,
.insights_sec h2 {
  margin-bottom: 50px;
}
.points_sec .whychoose {
  overflow-y: inherit;
  max-height: inherit;
  padding-right: 0;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 15rem;
  row-gap: 20px;
  column-gap: 20px;
}
.gallery-img {
  grid-row: span 1;
  transition: transform 0.3s ease;
}
.gallery-img:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.gallery-img:nth-child(2) {
  grid-row: span 2;
}
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.service_title {
  max-width: 956px;
}
.service_title h2 {
  max-width: 590px;
  margin-bottom: 20px;
  font-weight: 600;
}
.service_title p {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 0px;
}
.service_image {
  max-width: 520px;
  margin-left: auto;
}
.service-row.reverse .service_image {
  margin-left: 0;
  margin-right: auto;
}
.service_txt h2 {
  margin-bottom: 14px;
  line-height: 1.3;
}

.service_txt p {
  font-size: 24px;
  margin-bottom: 25px;
}
.service_txt ul li {
  padding-left: 44px;
  font-size: 20px;
  margin-bottom: 18px;
  position: relative;
  display: block;
}
.service_txt ul li:last-child {
  margin-bottom: 0px;
}
.service_txt ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url("../img/arrow-right.svg") no-repeat;
  background-size: cover;
}
.service-row {
  margin-top: 20px;
  margin-bottom: 80px;
  align-items: center;
}
.service_image img {
  display: block;
  border-radius: 10px;
}
.work-title {
  max-width: 721px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.work-title h2 {
  margin-bottom: 18px;
  font-weight: 300 !important;
}
.nav-tabs {
  position: relative;
  margin-bottom: 44px;
  text-align: center;
  position: relative;
}
/* .nav-tabs:before{
	content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 10px dotted #D9D9D9;
} */
.work-sec .nav-tabs:before {
  z-index: -1;
}
.nav-tabs label {
  color: #0008;
  font-size: 16px;
  padding: 6px 0;
  margin-right: 25px;
  display: inline-block;
  position: relative;
}
.tabswrapper label:last-child {
  margin-right: 0px;
}
.tabswrapper label:has(input:checked),
.nav-tabs label:hover {
  color: #000;
}
.nav-tabs label:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #000;
  transition: all 0.5s ease-in-out;
}
.tabswrapper label:has(input:checked):before {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.nav-tabs label:hover:before {
  width: 100%;
  left: 0;
  transition: all 0.5s ease-in-out;
  right: auto;
}
.industry-image {
  margin-bottom: 14px;
}
.industry-image img {
  display: block;
}
.industry-slide h3,
.featured-slide h3 {
  font-weight: 700;
  margin-bottom: 5px;
}
.team_sec .items {
  padding: 8px;
  margin: 10px 0;
  transition: transform 0.6s ease-in-out;
  text-align: center;
  cursor: pointer;
}

.team_sec .items h3 {
  font-weight: 700;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
}
.team_sec .items p {
  margin-bottom: 0px;
}
.team_sec .items h3:before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  bottom: 0;
  background: #d63427;
  transition: 0.6s ease-in-out;
}
.team_image {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.team_image img {
  border-radius: 10px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
.items:hover .team_image img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.team_sec .items:hover h3:before {
  width: 100%;
}
.aboutus_top h2 {
  font-weight: 600;
}
.aboutus_top .container {
  padding-bottom: 130px;
}
.aboutus_image {
  overflow: hidden;
}
.aboutus_image img {
  width: 100%;
  transition: transform 0.2s ease-out;
  transform-origin: center center;
  will-change: transform;
}
.philosophy_sec .number,
.about_sec .number {
  font-size: 50px;
  color: #bbc4d2;
  margin-bottom: 15px;
  font-weight: 700;
}
.philosophy_sec h2,
.about_sec h2 {
  margin-bottom: 25px;
}
.philosophy_sec p,
.about_sec p {
  margin-bottom: 25px;
}
.philosophy_sec h3 {
  margin-bottom: 4px;
  font-size: 24px;
}
.philosophy_sec h3 strong {
  font-weight: 700;
}

.philosophy_txt {
  max-width: 593px;
}
.philosophy_img,
.about_img {
  max-width: 485px;
  margin-left: auto;
}

.about_sec .row {
  align-items: center;
}

.whychoose {
  max-width: 816px;
  margin: 0 auto;
}
.whyrow {
  display: flex;
  align-items: center;
  margin: 10px;
  transition: transform 0.3s ease;
  position: relative;
}
.whyrow:hover {
  transform: translateY(-5px);
}

.whyrow .number {
  width: 210px;
  color: rgba(215, 51, 40, 0.51);
  font-size: 160px;
  font-weight: 700;
  line-height: 165px;
}
.whyrow .whyrow-txt {
  width: calc(100% - 210px);
  padding-left: 100px;
}
.whyrow .whyrow-txt h3 {
  color: #2e2e2e;
  font-size: 24px;
  margin-bottom: 10px;
}
.whyrow .whyrow-txt p {
  font-size: 18px;
  margin-bottom: 0;
}
.whyrow.reverse {
  flex-direction: row-reverse;
}
.whyrow.reverse .whyrow-txt {
  padding-left: 0px;
  padding-right: 100px;
}
.network_title {
  text-align: left;
  max-width: 650px;
  margin-bottom: 40px;
}
.network_title h2 {
  margin-bottom: 14px;
}
.network_title p {
  font-size: 18px;
  line-height: 1.6;
}
.network_main {
  display: flex;
  gap: 13px;
}
.network_box {
  position: relative;
  padding: 25px 25px 91px;
  width: 33%;
}
.network_box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 400;
}
.network_box .num {
  font-size: 90px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 60px;
}
.network_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding-bottom: 67%;
}
.network_bg img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.insights_sec .blogs-slider {
  margin-bottom: 30px;
}
.insights_sec .blog-card {
  background: #fff;
  padding: 12px 12px 20px;
  border-radius: 10px;
  margin: 10px 0;
  transition: transform 0.3s ease;
}
.insights_sec .blog-card:hover {
  transform: translateY(-5px);
}

.insights_sec .blog-card-image {
  padding-bottom: 52%;
}
.blog-card-txt {
  padding: 0px 12px;
}
.blog-card-txt .categories {
  margin-bottom: 10px;
}
.blog-card-txt .categories a {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.54);
}
.blog-card-txt h5 {
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.blog-card-txt a.read-more {
  color: #d63427;
  text-decoration: underline;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.blog-card-txt a.read-more:hover svg {
  transform: translateX(6px);
  transition: all 0.5s ease-in-out;
}
.red-btn a {
  color: #d63427;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}
.red-btn a span {
  position: relative;
  color: #d63427;
  font-weight: 700;
}
.red-btn a span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: rgba(215, 51, 40, 0.3);
  transition: all 0.5s ease-in-out;
}
.red-btn a span:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #d63427;
  transition: all 0.5s ease-in-out;
}
.red-btn a:hover span:after {
  width: 100%;
  background: #d63427;
  transition: all 0.5s ease-in-out;
}
.red-btn a svg {
  width: 42px;
  fill: #d63427;
  transition: all 0.5s ease-in-out;
  display: inline-block;
  vertical-align: middle;
  margin-top: -6px;
}
.red-btn a:hover svg {
  transform: translateX(6px);
  transition: all 0.5s ease-in-out;
}
.testimonail_main h2 {
  margin-bottom: 26px;
}
.testimonail_main {
  max-width: 847px;
  margin: 0 auto;
  padding-bottom: 15px;
}
.testiminails .items .profile-ico h4 {
  font-size: 20px;
  font-weight: 700;
}
.testiminails .items .profile-ico p {
  font-size: 20px;
  font-weight: 200;
}
.testiminails .owl-nav.disabled {
  display: block !important;
}
.testiminails button.owl-prev {
  content: "";
  position: absolute;
  right: 50px;
  top: -50px;
  width: 28px;
  height: 21px;
  background: url("../img/arrow-left1.svg") no-repeat !important;
  background-size: cover !important;
}
.testiminails button.owl-next {
  content: "";
  position: absolute;
  right: 0px;
  top: -50px;
  width: 28px;
  height: 21px;
  background: url("../img/arrow-right1.svg") no-repeat !important;
  background-size: cover !important;
}
.testiminails .owl-nav span {
  display: none;
}
.transformation_sec h2 {
  margin-bottom: 50px;
}
.transformation_sec h2 span {
  display: block;
}
.transformationswrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: minmax(var(--rh), auto);
  gap: 20px;
  margin-bottom: 45px;
}
.transformationswrap .items {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.transformationswrap .items:hover {
  transform: translateY(-5px);
  background: #fff;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.transformationswrap .items img {
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.transformationswrap .items:first-child {
  grid-column: span 1;
  grid-row: span 2;
  /* max-width: 413px; */
}

/* .transformationswrap .items:last-child {
  grid-column: span 2;
  background: #f0f2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 290px;
  border-radius: 10px;
} 
 .transformationswrap .items:last-child img {
  height: 79px;
  object-fit: contain;
} */
.transformationswrap .items a {
  display: flex;
  font-size: 20px;
  font-weight: 600;
  background: #ffffff;
  border-radius: 16px 0px 16px 0;
  padding: 15px 18px;
  color: #000000;
  display: inline-block;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.strategic_sec h2 {
  margin-bottom: 50px;
  line-height: 1.25;
}
.strategic_sec h2 span {
  display: block;
}
.impactswrap {
  display: flex;
  gap: 40px;
  margin-bottom: 15px;
}

.impactswrap .items p {
  color: #d63427;
  font-size: 72px;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.4;
}
.impactswrap .items:last-child p {
  font-size: 110px;
  line-height: 0.91;
}
.impactswrap .items p span {
  color: #d63427;
}
.impactswrap .items h5 {
  font-size: 20px;
  font-weight: 300;
  color: #444444;
}
.promise_sec {
  position: relative;
}
.promise-main {
  padding: 80px 0px;
}
.promise-main h2 {
  font-weight: 200;
  color: #ffffff;
  margin-bottom: 50px;
}
.promise-main b {
  font-weight: 600;
  color: #ffffff;
}
.promise-slider .items {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 28px 28px;
  margin: 10px 0;
  transition: all 0.3s ease-in-out;
}
.promise-slider .items:hover {
  transform: translateY(-5px);
  background: #fff;
  transition: all 0.3s ease-in-out;
}
.promise-slider .items span {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  margin-bottom: 25px;
}
.promise-slider .items span img {
  width: 70px;
}
.promise-slider .owl-nav.disabled {
  display: block !important;
}
.promise-slider button.owl-prev {
  content: "";
  position: absolute;
  right: 50px;
  top: -83px;
  width: 28px;
  height: 21px;
  background: url("../img/white-arrow-left1.svg") no-repeat !important;
  background-size: cover !important;
}
.promise-slider button.owl-next {
  content: "";
  position: absolute;
  right: 0px;
  top: -83px;
  width: 28px;
  height: 21px;
  background: url("../img/white-arrow-right1.svg") no-repeat !important;
  background-size: cover !important;
}
.promise-slider .owl-nav span {
  display: none;
}
/* .promise-slider .items:hover span img{
	filter: brightness(0);
} */
.promise-slider .items h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}
.promise-slider .items p {
  font-size: 18px;
  font-weight: 300;
}
.business_stick {
  position: sticky;
  top: 110px;
}
.business_sec {
  padding-bottom: 30px;
}
.business_sec h2 {
  margin-bottom: 40px;
}
.business_sec h2 span {
  display: block;
}
.business_img {
  max-width: 425px;
}
.whychoose {
  max-width: 800px;
}
.bizrow {
  display: flex;
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  align-items: center;
}
.bizrow .number {
  color: rgba(19, 48, 154, 0.11);
  font-weight: 800;
  font-size: 64px;
  width: 90px;
}
.bizrow-txt {
  width: calc(100% - 90px);
  padding-left: 32px;
}
.bizrow-txt p {
  margin-bottom: 0;
  font-style: italic;
}
.banner_img {
  overflow: hidden;
}
.banner_img img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
/*.banner-home .owl-item.active .banner_img img{
    -webkit-animation: 10s zoom;
    animation: 20s zoom
}
@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1,1)
    }

    to {
        -webkit-transform: scale(1.5,1.5)
    }
}

@keyframes zoom {
    from {
        transform: scale(1,1)
    }

    to {
        transform: scale(1.5,1.5)
    }
}*/

.banner-home {
  position: relative;
}
.banner_main {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 100px 0;
  display: flex;
  align-items: center;
  max-width: 1381px;
  margin-inline: auto;
  padding-inline: clamp(1rem, calc(1rem + 2.5vw), 3rem);
}
.banner-home.common-dots .owl-dots {
  position: absolute;
  bottom: 0;
  justify-content: space-between !important;
  padding: 60px 50px 15px 50px;
  display: flex;
  max-width: 1381px;
  margin-inline: auto;
  padding-inline: clamp(1rem, calc(1rem + 2.5vw), 3rem);
  left: 0;
  right: 0;
}

.banner-home.common-dots .owl-dots .owl-dot {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  border-top: 4px solid rgba(255, 255, 255, 0.3);
  border-bottom: 3px solid transparent;
  padding-bottom: 15px;
  display: block;
  background-color: transparent !important;
  text-align: left;
  margin-bottom: 15px;
  position: relative;
}

.banner-home.common-dots .owl-dots .owl-dot span {
  display: block !important;
  width: 100% !important;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 18px;
/*   text-transform: capitalize; */
  max-width: 270px;
  min-height: 54px;
}
.banner-home.common-dots .owl-dots .owl-dot.active span {
  color: #fff;
}
.slide-progress {
  width: 0;
  max-width: 100%;
  height: 4px;
  margin-bottom: 10px;
  border-top: 4px solid #d63427;
  position: relative;
  top: -4px;
}

.banner_inn {
  max-width: 530px;
}
.banner_inn p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
/*   text-transform: capitalize; */
  margin-bottom: 0;
  font-weight: 300;
}
.banner_inn h2 {
  color: #ffffff;
  font-weight: 400;
/*   text-transform: capitalize; */
  margin: 20px 0;
  line-height: 125%;
}
.banner_inn p.tab-name {
  display: none;
}
.bigcard {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  margin: 20px 0;
}
.bigcard .leftside {
  padding: 45px 45px;
  width: calc(100% - 516px);
}
.bigcard .leftside h1 {
  font-weight: 300;
  margin-bottom: 40px;
}
.bigcard .leftside h1 span {
  font-weight: 400 !important;
}
.bigcard .rightside {
  width: 516px;
  background: url("../img/decoration_1.webp") no-repeat;
  border-radius: 20px;
  background-size: cover;
  padding: 40px 35px;
}
.bigcard .rightside ul li {
  font-size: 20px;
  color: #ffffff;
  font-weight: 400;
  padding: 15px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 0;
  border-radius: 0 0.5rem 0.5rem 0;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.bigcard .rightside ul li:hover {
  background-color: #0000;
  background-image: radial-gradient(
    circle at 100%,
    #d63427,
    rgba(225, 225, 225, 0.05)
  );
  border-bottom-style: 1;
}
.services h3 {
  padding: 15px 0px;
  color: #666666;
  font-size: 24px;
  font-weight: 400;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  border-radius: 0 0.5rem 0.5rem 0;
}
.services h3 span {
  color: #666666;
  font-weight: 400 !important;
}
.bigcard .rightside ul li:last-child,
.services h3:last-child {
  border-bottom: 0;
}

.logo-row a img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  transition: 0.5s;
}
.logo-row a img:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.services-details {
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.services-details ul {
  overflow-y: auto;
  max-height: 500px;
  padding-right: 30px;
}
.services-details ul::-webkit-scrollbar {
  width: 4px;
}
.services-details ul::-webkit-scrollbar-track {
  background-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 35%,
    #424242 35%,
    #737373 65%,
    transparent 65%,
    transparent 100%
  );
}
.services-details ul::-webkit-scrollbar-thumb {
  background-color: #d63427;
  border-radius: 5px;
}

.industry-image,
.featured-image,
.industry-image {
  padding: 0;
  width: 100%;
  padding-bottom: 60%;
  border: 0;
  position: relative;
  margin-bottom: 15px;
}
.industry-image img,
.featured-image img,
.industry-image img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  border-radius: 10px;
  object-position: top;
}
.tableofcontent {
  padding-top: 7px;
}
.tableofcontent h3 {
  display: none;
}
.tableofcontent ul {
  padding-left: 20px;
}
.tableofcontent ul li {
  margin-left: 0px !important;
  list-style: disc;
}
.contentsection .content .description {
  margin-top: 0 !important;
}
.contentsection .content .description h4 {
  font-size: 24px;
  color: #d63427;
  font-weight: 600;
}
.contentsection .content .description ul {
  padding-left: 15px;
}
.contentsection .content .description ul li {
  list-style: disc;
}
.question-sec h2 {
  margin-bottom: 5px;
}
.question-sec h3 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
}
.question-sec p strong {
  color: #2e2e2e;
  font-weight: 700;
}
.question-sec .image-row {
  margin-top: 20px;
}
.beforeafter-sec img {
  display: block;
}
.beforeafter-sec h5 {
  font-size: 24px;
  margin-bottom: 8px;
}
.beforeafter-sec h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.beforeafter-sec .wrapper {
  padding-top: 0;
}
.beforeafter-btmimage {
  max-width: 630px;
  margin: 0 auto;
}
.projects_sec h2 {
  margin-bottom: 24px;
}
.projects_sec .row {
  grid-template-columns: 1fr 1fr 1fr;
}
.exploremore {
  margin-top: 10px;
}
.banner-link a {
  display: flex;
  font-size: 20px;
/*   text-transform: capitalize; */
  color: rgba(255, 255, 255, 0.7);
  align-items: center;
  font-weight: 300;
}
.banner-link a span {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}
.banner-link a span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: #bbc4d2;
  transition: all 0.5s ease-in-out;
}
.banner-link a span:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: all 0.5s ease-in-out;
}
.banner-link a:hover span:after {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.banner-link a svg {
  padding-left: 8px;
  width: 44px;
  display: inline-block;
  vertical-align: middle;
  margin-top: 3px;
}
.banner-link a svg {
  fill: #ffffff;
  opacity: 0.6;
  transition: all 0.5s ease-in-out;
}
.banner-link a:hover svg {
  opacity: 1;
  transform: translateX(6px);
  transition: all 0.5s ease-in-out;
}
.banner {
  position: relative;
}
.scroll-arrow {
  width: 80px;
  position: absolute;
  bottom: 35px;
  right: 20px;
  z-index: 9;
}
.scroll-arrow a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  width: 80px;
  height: 80px;
  border: 1px solid #ffffff;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 64px;
  padding: 20px 0px;
}
.scroll-arrow a span {
  display: block;
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}
.blog-slider h2 {
  margin-bottom: 30px;
  font-weight: 600;
}
.image-row img {
  width: 100%;
}
.blogs-top h2 {
  font-weight: 300 !important;
  margin-bottom: 20px;
}
.blogs-top p {
  font-size: 18px;
}
.industry-slide {
  margin: 10px 0 20px;
  transition: transform 0.3s ease;
}
.industry-slide:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.featured-slide {
  margin: 10px 0;
  transition: transform 0.3s ease;
}
.featured-slide:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.letter {
  color: rgba(46, 46, 46, 0.05);
  display: inline-block;
}
.color-change-text {
  font-size: 16px;
  line-height: 26px;
}
/* .ourwork-feature-image .top-image img {
  width: 100%;
  height: calc(100vh - 88px);
  object-fit: cover;
} */
.newtop-image img {
  height: calc(100vh - 76px);
  object-fit: cover;
}
.excerpt p {
  margin-bottom: 0;
}

@media (max-width: 1639px) {
  .network_bg {
    padding-bottom: 67%;
  }
}
@media (max-width: 1439px) {
  .values-images {
    padding-left: 15px;
  }
  .service_image {
    max-width: 480px;
  }
}
@media (max-width: 1365px) {
  .scroll-arrow {
    width: 65px;
  }
  .scroll-arrow a {
    width: 65px;
    height: 65px;
    border-radius: 64px;
    padding: 15px 0px;
  }
  footer .columns h5 {
    font-size: 40px;
  }
  footer .columns a {
    font-size: 17px !important;
  }
  footer .credit-area * {
    font-size: 17px;
  }
  .banner-home.common-dots .owl-dots .owl-dot:before {
    right: -64%;
    width: 60%;
  }
}
@media (max-width: 1279px) {
  .values {
    gap: 30px;
  }
  .service-row {
    gap: calc(var(--base-size) * 2.5);
  }
  .service_txt p {
    font-size: 20px;
    line-height: 1.6;
  }
  .service_txt ul li {
    font-size: 18px;
    padding-left: 36px;
  }
  .service_txt ul li:before {
    width: 22px;
    height: 22px;
  }
  .service_txt h2 {
    font-size: clamp(1.8rem, calc(1rem + 2.2vw), 3rem);
  }
  .network_box h3 {
    font-size: 18px;
  }
  .network_box .num {
    font-size: 28px;
  }
  .about_txt {
    padding-left: 20px;
  }
  .values-images {
    padding-left: 20px;
  }
  .banner-home.common-dots .owl-dots .owl-dot {
    margin-bottom: 10px;
  }
  .impactswrap .items h5,
  .blog-card-txt h5,
  .banner-link a {
    font-size: 22px;
  }
  .banner-home.common-dots .owl-dots .owl-dot:before {
    right: -55%;
    width: 53%;
  }
  footer .columns a {
    font-size: 16px !important;
  }
  footer .credit-area * {
    font-size: 16px;
  }
  footer .columns > div {
    max-width: 336px;
  }
  footer .columns h5 {
    font-size: 36px;
  }
}
@media (max-width: 1179px) {
  .values {
    gap: 29px;
  }
  .bigcard .leftside {
    width: calc(100% - 50%);
  }
  .bigcard .rightside {
    width: 50%;
  }
  .banner-home.common-dots .owl-dots .owl-dot:before {
    right: -31%;
    width: 28%;
  }
}
@media (max-width: 1079px) {
  .values {
    gap: 26px;
  }
  .service_txt ul li {
    font-size: 16px;
    padding-left: 36px;
    margin-bottom: 14px;
  }
  .service_txt h2 {
    margin-bottom: 8px;
  }
  .service_txt p {
    margin-bottom: 15px;
  }
  .service_title p {
    font-size: 20px;
  }
  footer .columns h5 {
    font-size: 32px;
  }
}
@media (max-width: 1025px) {
  .row {
    grid-template-columns: 1fr 1fr;
  }
  .row.reverse {
    direction: rtl;
  }
  .row.reverse > * {
    direction: ltr;
  }
}
@media (max-width: 1024px) {
  header.homepage:not(.stick) nav > ul > li > a {
    color: #2e2e2e;
  }
}
@media (max-width: 991px) {
  .contact_btmtxt {
    display: block;
  }
  .contact_btmtxt a {
    margin-bottom: 10px;
    display: block;
  }
  .categories-list {
    margin: 1.3rem 0;
	  justify-content:center;
	  position:relative;
	  padding-top:1rem;
	  border-top:1px solid #0008;
  }
	
/* 	.categories-list:before{
		content:"";
		width:90vw;
		top:0;
		background: #0008;
		height:1px;
		
	} */
  .latest-blog > h2 {
    margin-bottom: 25px;
  }
  .categories a {
    font-size: 16px;
  }
  .blog-card h2 {
    font-size: 20px;
  }
  .values-sec .row {
    display: block;
  }
  .values-txt {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .vacancies .item .jobfoot {
    flex-wrap: wrap;
    gap: 15px;
  }
  .service_txt p {
    font-size: 18px;
    line-height: 1.5;
  }
  .whyrow .whyrow-txt {
    padding-left: 30px;
    width: calc(100% - 160px);
  }
  .whyrow.reverse .whyrow-txt {
    padding-left: 0px;
    padding-right: 30px;
  }
  .whyrow .number {
    width: 160px;
    font-size: 120px;
  }
  .network_main {
    flex-wrap: wrap;
  }
  .network_box {
    width: 49%;
  }
  .banner-home.common-dots .owl-dots .owl-dot:before {
    display: none;
  }
  .banner-home.common-dots .owl-dots .owl-dot {
    margin-right: 5px;
  }
  .bigcard .leftside {
    padding: 35px 30px;
  }
  .bigcard .leftside h1 {
    font-size: 28px;
  }
  .services h3 {
    font-size: 20px;
  }
  .bigcard .rightside ul li {
    font-size: 20px;
  }
  .scroll-arrow {
    bottom: 110px;
  }
  .bigcard .rightside {
    padding: 40px 25px;
  }
  .bizrow .number {
    font-size: 50px;
    width: 70px;
  }
  .bizrow-txt {
    width: calc(100% - 70px);
    padding-left: 25px;
  }
  .impactswrap {
    gap: 20px;
  }
  .impactswrap .items p {
    color: #d63427;
    font-size: 50px;
  }
  .impactswrap .items h5 {
    font-size: 18px;
  }
  .impactswrap .items:last-child p {
    font-size: 90px;
    line-height: 0.76;
  }
  .transformationswrap .items a {
    font-size: 16px;
    padding: 11px 18px;
  }
  .testimonail_main {
    max-width: 93%;
  }
  .category-link {
    margin-right: 10px;
  }

  .category-link.active {
    border-bottom: 1px solid;
  }

  .categories-list {
    gap: 0.6rem;
	  margin-bottom:1rem;
  }
  header nav ul li:hover div {
    left: -95px;
  }
  .values-images {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .row {
    display: block;
  }
  .contact_image {
    max-width: 100%;
  }
  .contact_txt {
    max-width: 100%;
  }
  .contact_txt h2 {
    margin-bottom: 5px;
  }
  .contact_txt p {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .getin_sec p {
    font-size: 16px;
  }
  .contact-form {
    max-width: 100%;
  }
  footer .columns h5 {
    font-size: 24px;
  }
  header nav {
    padding-block: 8px;
  }
  .footer-logo {
    max-width: 144px;
  }
  .categories-list {
    margin: 1.2rem 0;
  }
  .latest-blog > h2 {
    margin-bottom: 20px;
  }
  .blog-card {
    margin-bottom: 25px;
  }
  .career-head {
    margin-bottom: 30px;
  }
  .vacancies .item .jobfoot .badges {
    flex-wrap: wrap;
  }
  .vacancies .item h3 {
    font-size: 20px;
  }
  .vacancies .item:last-child {
    margin-bottom: 0px;
  }
  .service_title p {
    font-size: 18px;
  }
  .service-row {
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .service_txt {
    margin-bottom: 30px;
  }
  .service_image {
    max-width: 100%;
  }
  .service_title h2 {
    font-size: clamp(1.6rem, calc(1.3rem + 2.2vw), 3rem);
  }
  .service_txt p {
    font-size: 16px;
  }
  .service_txt ul li:before {
    width: 18px;
    height: 18px;
    top: 1px;
  }
  .service_txt h2 {
    font-size: clamp(1.5rem, calc(1rem + 2.2vw), 3rem);
  }
  .industry-slider {
    display: grid;
  }
  .industry-slide {
    margin-bottom: 20px;
  }
  .work-title p {
    font-size: 16px;
  }

  .philosophy_sec h2 {
    margin-bottom: 0px;
  }
  .philosophy_img {
    max-width: 100%;
    margin-left: 0;
  }
  .about_img {
    margin-bottom: 10px;
  }
  .about_txt {
    padding-left: 0px;
    max-width: 100%;
    margin-left: 0;
  }
  .whyrow .number {
    line-height: 130px;
  }
  .network_main {
    justify-content: space-between;
  }
  .network_box {
    width: 48%;
  }
  .whyrow .whyrow-txt h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .whyrow .whyrow-txt p,
  .network_title p {
    font-size: 16px;
  }
  .network_box {
    padding: 18px 16px 50px;
  }
  .network_box h3 {
    font-size: 16px;
  }
  .owl-dots {
    text-align: center;
  }

  .owl-dots button.owl-dot {
    background: #d9d9d9;
    border-radius: 50%;
    height: 8px;
    width: 8px;
    position: relative;
    outline: none;
    margin: 0px 2px;
  }
	
	.banner .owl-dots button.owl-dot{
		border-radius: 0;
		width:16px;
	}

  .owl-dots button.owl-dot.active span,
  .owl-dots button.owl-dot:hover span {
    background-color: #d63427;
    border-radius: 50%;
    height: 8px;
    width: 8px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .question-sec .image-row {
    display: block;
  }
  .bigcard {
    flex-wrap: wrap;
  }
  .bigcard .leftside {
    width: 100%;
  }
  .bigcard .rightside {
    width: 100%;
  }
  .bigcard .leftside h1 {
    margin-bottom: 25px;
  }
  .logo-row a img {
    height: 50px !important;
  }
  .impactswrap {
    flex-wrap: wrap;
  }
  .impactswrap .items {
    width: 48%;
  }
  .transformationswrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonail-section {
    margin-bottom: 10px;
  }
  .banner-home.common-dots .owl-dots .owl-dot span {
    display: none !important;
  }
  .scroll-arrow {
    bottom: 20px;
  }
  .banner-home.common-dots .owl-dots {
    justify-content: center !important;
  }
  .banner_inn p.tab-name {
    display: block;
    padding: 10px 0;
  }
  .banner-link a {
    font-size: 18px;
  }

  .testiminails .owl-dots button.owl-dot {
    height: 6px;
  }
  .testiminails .owl-dots .owl-dot {
    flex: inherit;
    border: 0;
    border-radius: 0;
    margin: 0;
  }
  .testiminails .owl-dots {
    align-items: center;
  }
  .testiminails .owl-dots .owl-dot.active span {
    width: 100%;
  }
  .transformation_sec h2 {
    margin-bottom: 25px !important;
  }
  .testiminails .items p {
    font-size: 18px !important;
  }
  .testiminails .owl-dots {
    width: 260px !important;
    bottom: 0 !important;
    left: 0 !important;
    margin: 0 auto !important;
  }
  .testiminails .owl-dots::after,
  .testiminails .owl-dots::before {
    font-size: 28px !important;
  }
  .testiminails {
    padding: 20px 30px 60px !important;
  }
  .promise-slider .items p {
    font-size: 18px;
    margin-bottom: 0;
  }
  .promise-slider .items span {
    width: 75px;
    height: 75px;
    margin-bottom: 15px;
  }
  .promise-slider .items span img {
    width: 40px;
  }
  .promise-slider .items {
    padding: 25px 22px;
  }

  .blog-card-txt .categories a {
    font-size: 16px;
  }
  .insights_sec .blogs-slider {
    margin-bottom: 0;
  }
  .explore-btn a,
  .work-btn a {
    font-size: 16px;
  }
  article .contentsection {
    display: block !important;
  }
  .blog-slider h2 {
    margin-bottom: 10px;
  }
  .contentsection .content .description {
    margin-bottom: 0;
  }
  .banner_inn p {
    font-size: 16px;
  }
  .promise-slider .items p {
    font-size: 16px;
    line-height: 24px;
  }
  .promise-main {
    padding: 40px 0px;
  }
  .promise-main h2 {
    margin-bottom: 25px;
  }
  .single_blogs .container {
    padding-bottom: 0;
  }
  .nav-tabs:before {
    display: none;
  }
  .tabswrapper label.active {
    border-bottom: 2px solid #d63427;
  }
  .blog-card .match {
    height: auto !important;
  }
  .industry-header .h2 {
    margin-bottom: 8px;
  }
  .question-sec h3 {
    font-size: 16px;
    margin-top: 10px;
  }
  .quote {
    padding: 1.5rem !important;
  }
  .beforeafter .warp {
    margin-bottom: 10px;
  }
  .featured-slide {
    margin-bottom: 20px;
  }
  .nav-tabs {
    margin-bottom: 30px;
  }
  .nav-tabs label {
    padding: 10px 14px;
  }
  .blogs-slider .owl-dots {
    margin-bottom: 10px;
    position: relative;
    top: -5px;
  }
  .promise-slider .owl-dots {
    position: relative;
    top: 10px;
  }
}
@media (max-width: 575px) {
  .values {
    gap: 25px;
  }
  .gallery {
    grid-template-columns: repeat(1, 1fr);
  }
  .industry-slider {
    display: block;
  }
  .philosophy_sec h3 {
    font-size: 16px;
  }
  .whyrow .number {
    width: 120px;
    font-size: 90px;
  }
  .whyrow .whyrow-txt {
    padding-left: 20px;
    width: calc(100% - 120px);
  }
  .whyrow.reverse .whyrow-txt {
    padding-left: 0px;
    padding-right: 20px;
  }
  .impactswrap .items {
    width: 47%;
  }
  .transformationswrap {
    display: block;
  }
  .transformationswrap .items {
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
  }
  .transformationswrap .items:hover img {
    transform: scale(1.01) !important;
    transition: all 0.3s ease-in-out;
  }
  .bigcard .leftside {
    padding: 30px 20px;
  }
  .bigcard .leftside h1 {
    font-size: 22px;
  }
  .services h3 {
    font-size: 18px;
  }
  .services-details ul {
    padding-right: 15px;
  }
  .bigcard .rightside ul li {
    font-size: 18px;
  }
  .bizrow .number {
    font-size: 36px;
    width: 50px;
  }
  .bizrow-txt {
    width: calc(100% - 50px);
    padding-left: 15px;
  }
}
@media (max-width: 479px) {
  .contact-form div.halfs {
    display: block;
  }
  .footer-logo img {
    margin-bottom: 8px;
  }
  footer .columns h5 {
    font-size: 18px;
  }
  footer .columns h4 {
    margin-bottom: 10px;
    font-size: 20px;
    margin-top: 0;
  }
  .blog-grid {
    display: block !important;
  }
  .categories a {
    font-size: 16px;
  }
  .blog-card h2 {
    font-size: 18px;
  }
  .vacancies .badge {
    padding: 8px 13px;
  }
  .vacancies .item,
  .value-gallery h2,
  .team_sec h2,
  .points_sec h2,
  .insights_sec h2 {
    margin-bottom: 20px;
  }
  .values .valuecard {
    width: 100%;
  }
  .service_title h2 {
    margin-bottom: 15px;
  }
  .service_title p {
    font-size: 16px;
  }
  .service_txt ul li {
    padding-left: 30px;
    margin-bottom: 10px;
  }
  .network_box {
    width: 100%;
  }
  .network_box {
    padding: 18px 16px 90px;
  }
  .whyrow {
    flex-wrap: wrap;
  }
  .whyrow .whyrow-txt {
    width: 100%;
    padding-left: 0px;
  }
  .whyrow.reverse {
    flex-direction: inherit;
  }
  .whyrow .number {
    width: 60px;
    font-size: 50px;
    line-height: 80px;
  }
  .whyrow.reverse .whyrow-txt {
    padding-right: 0px;
  }
  .whyrow .whyrow-txt h3 {
    font-size: 18px;
  }
  .h2 {
    font-size: 28px;
  }
  .aboutus_top .h2 {
    font-size: 24px;
  }
  .banner_inn h2 {
    margin-top: 10px;
  }
  .banner-link a {
    font-size: 16px;
  }
  .bizrow {
    flex-wrap: wrap;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .bizrow-txt {
    width: 100%;
    padding-left: 0px;
  }
  .impactswrap .items {
    width: 100%;
  }
  .impactswrap .items p {
    font-size: 40px;
    line-height: 1.2;
  }
  .strategic_sec h2 {
    margin-bottom: 15px;
  }
  .impactswrap .items:last-child p {
    font-size: 80px;
    line-height: 0.5;
  }
	.promise-slider button.owl-prev{
		width:20px;
		height:18px;
		right:30px;
	}
	.promise-slider button.owl-next{
		width:20px;
		height:18px;
		background-position:right !important;
	}
  .transformationswrap .items:last-child {
    min-height: 46vw;
  }
  .transformationswrap .items:last-child img {
    min-height: 46vw;
  }
	.testimonail_main{
		max-width:100%;
	}
	.testiminails .owl-nav{
/* 		display:none !important; */
		position:absolute;
		right:50%;
		transform:translatex(50%);
		bottom:-50px;
		margin-right:-40px;
	}
	.testimonail_main h2{
		margin-bottom:0;
	}

  .testiminails {
    padding: 20px 0px !important;
  }
  .testiminails .items .profile-ico h4 {
    font-size: 18px;
  }
  .testiminails .items p {
    font-size: 16px !important;
  }
  .profile-ico img {
    width: 65px !important;
  }
  .banner-link a {
    font-size: 16px;
  }
  .testiminails .owl-dots {
    width: 240px !important;
  }
  .testiminails .owl-dots::after,
  .testiminails .owl-dots::before {
    font-size: 22px !important;
  }
  .bigcard .rightside ul li {
    font-size: 16px;
    padding: 10px 0px;
  }
  .services h3 {
    font-size: 16px;
  }
  .promise-slider .items h4 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .blog-card-txt {
    padding: 0 5px;
  }
  .categories-list {
    gap: 0.4rem;
  }
  .promise-slider .items p {
    font-size: 16px;
    line-height: 24px;
  }
  .impactswrap .items h5,
  .blog-card-txt h5 {
    font-size: 16px;
  }
}


/* WYSIWYG content image alignment css */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1em;
    display: inline;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1em;
    display: inline;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
}

.alignnone {
    display: inline;
    margin: 0 0 1em 0;
}

.entry-content img,
.wp-block-image img,
img.alignleft,
img.alignright,
img.aligncenter {
    height: auto;
    max-width: 100%;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

