:root {
  --primary: #0B0C0D;
  --secondary: #2ED06E;
  --tertiary: #2AD2FF;
  --light: #FFF;
  --dark: #000;
  --bg-light: #F3F4F6;
}

* {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 0.9375rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s;
}
a:hover {
  color: var(--secondary);
}
a:visited {
  color: var(--primary);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  color: var(--primary);
  font-family: "Manrope", sans-serif;
}

h2,
.h2 {
  font-size: 3.125rem;
  color: var(--primary);
  margin-bottom: 0;
  text-transform: capitalize;
  font-weight: bold;
}
@media (min-width: 992px) and (max-width: 1119px) {
  h2,
  .h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  h2,
  .h2 {
    font-size: 1.75rem;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  h2,
  .h2 {
    font-size: 1.75rem;
    margin-bottom: 0;
  }
}

h3 {
  font-size: 2.25rem;
  color: var(--primary);
  font-weight: bold;
}
@media (min-width: 992px) and (max-width: 1119px) {
  h3 {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 1.5rem;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4,
.h4 {
  font-size: 1.375rem;
  color: var(--primary);
  font-weight: bold;
}
@media (min-width: 992px) and (max-width: 1119px) {
  h4,
  .h4 {
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  h4,
  .h4 {
    font-size: 1.125rem;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  h4,
  .h4 {
    font-size: 1rem;
  }
}

.st-pt {
  padding-top: 5rem;
}
@media (min-width: 992px) and (max-width: 1119px) {
  .st-pt {
    padding-top: 3.4375rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .st-pt {
    padding-top: 2.8125rem;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .st-pt {
    padding-top: 2.1875rem;
  }
}

.st-pb {
  padding-bottom: 5rem;
}
@media (min-width: 992px) and (max-width: 1119px) {
  .st-pb {
    padding-bottom: 3.4375rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .st-pb {
    padding-bottom: 2.8125rem;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .st-pb {
    padding-bottom: 2.1875rem;
  }
}

.sticky-video {
  position: fixed;
  z-index: 9999;
  bottom: 20px;
  right: 20px;
  width: 250px;
  transition: width 0.3s ease-in-out;
}
.sticky-video .close-video {
  position: absolute;
  width: 30px;
  height: 30px;
  font-size: 26px;
  border-radius: 100%;
  background: #fff;
  border: 2px solid #000;
  text-align: center;
  right: 10px;
  top: 10px;
  line-height: 26px;
  font-weight: bold;
  cursor: pointer;
}
.sticky-video video {
  max-width: 100%;
  box-shadow: 0 11px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border: 5px solid #fff;
}
.sticky-video:hover {
  width: 600px;
}

.slick-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
}
.slick-dots button {
  width: 15px;
  height: 15px;
  padding: 0;
  font-size: 0;
  border-radius: 100%;
  background: rgba(42, 210, 255, 0.5);
  border: none;
}
.slick-dots li.slick-active button {
  background: #2AD2FF;
}

@media (min-width: 992px) and (max-width: 1119px) {
  .hide-lg-tablet {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hide-sm {
    display: none;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .hide-xs {
    display: none;
  }
}
.title-block {
  margin-bottom: 20px;
}
.title-block h2 {
  margin: 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .title-block {
    margin-bottom: 15px;
  }
}

button,
.th-btn {
  padding: 15px 30px;
  color: var(--light);
  background: var(--primary);
  border: 1px solid var(--primary);
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.5s;
}
@media (min-width: 320px) and (max-width: 767px) {
  button,
  .th-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
button:hover,
.th-btn:hover {
  background-color: var(--tertiary);
  border-color: var(--tertiary);
  color: var(--light);
}
button:visited,
.th-btn:visited {
  color: var(--light);
}
button .btn-arrow,
.th-btn .btn-arrow {
  width: 15px;
  height: 10px;
  background-image: url(../../images/arrow-light.svg);
  background-size: 100%;
  display: inline-table;
  margin-left: 5px;
}
button.light,
.th-btn.light {
  background-color: var(--tertiary);
  color: var(--primary);
  border-color: var(--tertiary);
}
button.light:hover,
.th-btn.light:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}
button .icon,
.th-btn .icon {
  margin-left: 5px;
  position: relative;
  top: -2px;
}
button.btn-inverse,
.th-btn.btn-inverse {
  color: var(--primary);
  background-color: var(--secondary);
  border-color: var(--secondary);
}
button.btn-inverse:hover,
.th-btn.btn-inverse:hover {
  color: var(--light);
  background: var(--primary);
  border-color: var(--primary);
}
button.btn-inverse:hover svg path,
.th-btn.btn-inverse:hover svg path {
  fill: var(--light);
}
button.arrow-left,
.th-btn.arrow-left {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 5px;
}
button.arrow-left .btn-arrow,
.th-btn.arrow-left .btn-arrow {
  transform: rotate(177deg);
  margin: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  button,
  .th-btn {
    padding: 12px 24px;
  }
}

input[type=date],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
select,
textarea {
  border: 1px solid #6F7070;
  border-radius: 8px;
  padding: 15px 15px;
  width: 100%;
}
input[type=date]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=url]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #000;
}
input[type=date]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=text]::placeholder,
input[type=url]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #000;
}
input[type=date]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=url]:focus,
select:focus,
textarea:focus {
  outline: none;
}

.footer {
  background: var(--primary);
  color: var(--light);
  padding: 60px 0 20px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .footer {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
.footer__top {
  padding-bottom: 25px;
}
.footer__middle {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__middle .ft-locations-title {
  color: #737373;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}
.footer__middle .ft-locations-title:before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--secondary);
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 5px;
}
.footer__middle .ft-address {
  margin: 25px 0;
}
.footer__middle .ft-address h4 {
  color: var(--light);
  font-weight: normal;
}
.footer__middle .ft-address p {
  margin-top: 10px;
  font-size: 14px;
  color: #737373;
  line-height: 1.9;
}
.footer__middle .ft-address p a {
  color: #737373;
}
.footer__bottom {
  padding: 20px 0;
}
.footer__bottom address {
  font-size: 14px;
  margin: 0;
}

.ftBlock {
  margin-bottom: 35px;
}
.ftBlock h3 {
  color: var(--secondary);
  font-size: 18px;
  line-height: 1;
  margin-bottom: 20px;
  padding-left: 25px;
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center left;
}
.ftBlock h3.ft-menu {
  background-image: url(../images/menu.png);
}
.ftBlock h3.ft-contact {
  background-image: url(../images/contact.png);
}
.ftBlock h3.ft-social {
  background-image: url(../images/share.png);
}
.ftBlock--links ul li {
  margin: 10px 0;
  font-size: 14px;
}
.ftBlock--links ul li a {
  color: var(--light);
  opacity: 0.9;
}
.ftBlock--links ul li a:hover {
  color: var(--tertiary);
}
.ftBlock--about .logo {
  margin-bottom: 20px;
}
.ftBlock--about .ft-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  max-width: 300px;
}
.ftBlock--about .ft-cta h5 {
  font-size: 18px;
}
.ftBlock--about .ft-cta p {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}
.ftBlock--about .ft-cta .ft-btn {
  background: rgba(46, 208, 110, 0.2);
  border: 1px solid rgba(46, 208, 110, 0.3);
  border-radius: 16px;
  padding: 16px 24px;
  color: var(--secondary);
  font-size: 12px;
}
.ftBlock--social ul {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.ftBlock--social ul a {
  background: rgba(46, 208, 110, 0.2);
  border: 1px solid rgba(46, 208, 110, 0.3);
  border-radius: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header {
  position: fixed;
  top: 15px;
  left: 0;
  right: 0;
  z-index: 9999;
}
.header__wrapper {
  background-color: var(--light);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  padding: 15px;
  border-radius: 15px;
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .wrapper .navbar-nav {
  flex-direction: row;
  gap: 25px;
}
.header .wrapper .navbar-nav > li > a {
  color: var(--dark);
  font-weight: bold;
}
.header .wrapper .navbar-nav > li > a:hover, .header .wrapper .navbar-nav > li > a:focus, .header .wrapper .navbar-nav > li > a.active {
  color: var(--tertiary);
}
.header .wrapper .navbar-nav a.is-parent:before {
  content: "";
  width: 50px;
  height: 50px;
  background: transparent;
  position: absolute;
  bottom: -14px;
}
.header .wrapper .navbar-nav .megamenu {
  width: 100%;
  border: none;
  border-radius: 0;
  background: transparent;
}
.header .wrapper .navbar-nav .megamenu__title {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  max-width: 250px;
}
.header .wrapper .navbar-nav .megamenu__link {
  font-weight: bold;
  display: block;
  padding: 12px;
  border-radius: 10px;
}
.header .wrapper .navbar-nav .megamenu__link:hover {
  background: linear-gradient(90deg, rgba(42, 210, 255, 0.3) 0%, rgba(42, 210, 255, 0) 100%);
  color: var(--dark);
}
.header .wrapper .navbar-nav .megamenu__wrapper {
  padding: 20px;
  background: var(--light);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.05);
}
.header .wrapper menu button {
  display: none;
}
.header .wrapper menu > ul {
  display: flex;
  gap: 25px;
}
.header .wrapper menu > ul li a {
  font-weight: bold;
}
.header .wrapper menu > ul li a:hover, .header .wrapper menu > ul li a.active {
  color: var(--tertiary);
}
.header .wrapper .action {
  display: flex;
  gap: 15px;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .header .wrapper .action {
    display: none !important;
  }
}
.header .wrapper .action a:not(.th-btn) {
  font-weight: bold;
}
.header .wrapper .action a:not(.th-btn):hover {
  color: var(--tertiary);
}

.mobile-menu-btn {
  background: transparent;
  border: 0;
  padding: 0;
}

.mobile-menu-btn svg {
  width: 28px;
}

.mobile-menu .btn-close {
  width: 1.5rem;
  height: 1.5rem;
  background-size: 1.5rem;
}
.mobile-menu nav > ul > li > a {
  font-size: 26px;
  font-weight: bold;
  color: var(--dark);
  border-bottom: 1px solid #ccc;
}
.mobile-menu nav > ul > li > a.show {
  border-color: transparent;
}
.mobile-menu nav > ul > li > a.show:after {
  transform: rotate(180deg);
}
.mobile-menu nav > ul > li > a.dropdown-toggle {
  display: flex;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu nav .dropdown-menu {
  position: static !important;
  top: 0 !important;
  transform: none !important;
  border: none;
  border-bottom: 1px solid #ccc;
  padding-top: 0;
}
.mobile-menu nav .dropdown-menu a {
  color: var(--dark);
  font-size: 22px;
  padding: 6px 0;
  display: block;
  font-weight: bold;
}

.case-study-single {
  background-image: url(../images/Case\ Study\ Desktop.jpg);
  background-position: top center;
  background-size: cover;
}

.hero {
  position: relative;
  background-image: url(../images/hero-bg.webp);
  background-position: center;
  background-size: cover;
  padding-top: 200px;
  padding-bottom: 100px;
  text-align: center;
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .hero {
    text-align: left;
    padding-top: 150px;
  }
}
.hero__content-block {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.hero__heading {
  font-size: 60px;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero__heading {
    font-size: 40px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .hero__heading {
    font-size: 34px;
    line-height: 1.4;
  }
}
.hero__content {
  font-size: 24px;
  max-width: 950px;
  margin: 0 auto 25px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .hero__content {
    font-size: 18px;
  }
}
.hero__videoBlock {
  max-width: 1320px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 40px;
  transform: translateY(80px);
  position: relative;
}
@media (min-width: 992px) and (max-width: 1119px) {
  .hero__videoBlock {
    max-width: 90%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero__videoBlock {
    max-width: 90%;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .hero__videoBlock {
    transform: translateY(58px);
    max-width: 90%;
    border-radius: 15px;
  }
}
.hero__videoBlock video {
  width: 100%;
}
@media (min-width: 320px) and (max-width: 767px) {
  .hero__videoBlock video {
    min-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero__videoBlock .hero-video-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url(../images/video-bg.png);
  background-position: center;
  background-size: cover;
}
.hero__videoBlock .hero-video-btn button {
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.hero__videoBlock .hero-video-btn button:hover {
  transform: scale(1.1);
}
@media (min-width: 320px) and (max-width: 767px) {
  .hero__videoBlock .hero-video-btn button {
    width: 100px;
  }
  .hero__videoBlock .hero-video-btn button svg {
    width: 100%;
  }
}

.logoCarousel {
  padding: 15px 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .logoCarousel {
    padding: 10px 0;
  }
}
.logoCarousel__wrapper {
  position: relative;
}
.logoCarousel__wrapper:before, .logoCarousel__wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 1;
  background: #ffffff;
  background: linear-gradient(90deg, rgb(255, 255, 255) 44%, rgba(255, 255, 255, 0) 100%);
}
.logoCarousel__wrapper:before {
  left: 0;
}
.logoCarousel__wrapper:after {
  right: 0;
  transform: rotate(180deg);
}
.logoCarousel__item {
  max-width: 300px;
  padding: 0 25px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .logoCarousel__item {
    max-width: 150px;
    padding: 0 15px;
  }
}
.logoCarousel__item img {
  filter: grayscale(1) brightness(0);
  max-width: 150px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .logoCarousel__item img {
    max-width: 100px;
  }
}
.logoCarousel--about :before, .logoCarousel--about :after {
  display: none;
}

.caseStudies {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 320px) and (max-width: 767px) {
  .caseStudies {
    padding: 30px 0;
  }
}
.caseStudies__titleBlock {
  margin-bottom: 40px;
  position: relative;
  z-index: 999;
  text-align: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .caseStudies__titleBlock {
    text-align: left;
    margin-bottom: 20px;
  }
}
.caseStudies__titleBlock p {
  font-size: 20px;
  line-height: 1.9;
  margin: 0 auto;
}
@media (min-width: 320px) and (max-width: 767px) {
  .caseStudies__titleBlock p {
    font-size: 16px;
  }
}
.caseStudies__link {
  padding-right: 40px;
  background-image: url(../images/arrow-right.svg);
  background-position: right center;
  background-repeat: no-repeat;
}
@media (min-width: 320px) and (max-width: 767px) {
  .caseStudies__link {
    display: inline-block;
    margin: 20px 0 0;
  }
}
.caseStudies .grid__mt {
  margin-top: 250px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .caseStudies .grid__mt {
    margin-top: 0 !important;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .caseStudies .grid__mt {
    margin-top: 0 !important;
  }
}
.caseStudies .grid__mt-inverse {
  margin-top: -150px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .caseStudies .grid__mt-inverse {
    margin-top: 0 !important;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .caseStudies .grid__mt-inverse {
    margin-top: 0 !important;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .caseStudies .col-lg-6:last-child {
    margin: 0 !important;
  }
}
.caseStudies .caseStudiesItem {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  z-index: 999;
  border: 1px solid #E5E7EB;
}
.caseStudies .caseStudiesItem .imgBlock {
  overflow: hidden;
}
.caseStudies .caseStudiesItem .imgBlock a {
  display: block;
}
.caseStudies .caseStudiesItem .imgBlock img {
  width: 100%;
}
.caseStudies .caseStudiesItem .dis {
  padding: 20px;
}
.caseStudies .caseStudiesItem .h3 {
  font-weight: bold;
}
.caseStudies .caseStudiesItem .h4 {
  margin-bottom: 10px;
  font-weight: normal;
}
.caseStudies .caseStudiesItem__link {
  position: relative;
  display: block;
}
.caseStudies .caseStudiesItem__link:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.caseStudies__shape {
  position: absolute;
}
.caseStudies__shape--one {
  top: 0;
  left: 0;
}
.caseStudies__shape--two {
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
.caseStudies__shape--three {
  bottom: 0;
  left: 0;
}

.ourJourney {
  padding: 60px 0;
  position: relative;
}
@media (min-width: 320px) and (max-width: 767px) {
  .ourJourney {
    padding: 30px 0;
  }
}
.ourJourney__contentBlock {
  margin-bottom: 50px;
  position: relative;
  z-index: 100;
}
.ourJourney__contentBlock .content {
  margin-top: 15px;
  line-height: 1.5;
  font-size: 20px;
  max-width: 1000px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .ourJourney__contentBlock .content {
    font-size: 16px;
  }
}
.ourJourney .shape {
  position: absolute;
  width: 571px;
  height: 609px;
  left: 0;
  top: 28px;
  background: linear-gradient(180deg, rgba(0, 255, 143, 0.5) 47.5%, rgba(0, 161, 255, 0.5) 67.5%, rgba(0, 0, 0, 0.5) 97%);
  opacity: 0.5;
  filter: blur(125px);
  z-index: 1;
}
@media (min-width: 320px) and (max-width: 767px) {
  .ourJourney .shape {
    display: none;
  }
}

.counterBlock {
  text-align: center;
  padding: 25px 15px;
  border: 1px solid #CCCCCC;
  border-radius: 15px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .counterBlock {
    padding: 12px 15px;
  }
  .counterBlock svg {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }
  .counterBlock__text {
    font-size: 14px;
  }
}
.counterBlock__counter {
  position: relative;
}
.counterBlock__counter:after {
  content: "+";
  color: var(--tertiary);
}
.counterBlock__text {
  font-weight: normal;
}

.textCarousel {
  padding: 60px 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .textCarousel {
    padding: 30px 0;
  }
}
.textCarousel__text {
  padding: 0 30px;
  position: relative;
}
.textCarousel__text:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 20px;
  background: var(--primary);
  border-radius: 100%;
}

.ourProcess {
  background: var(--primary);
  padding: 60px 0;
  color: var(--light);
}
@media (min-width: 320px) and (max-width: 767px) {
  .ourProcess {
    padding: 30px 0;
  }
}
.ourProcess__titleBlock {
  margin-bottom: 60px;
}
.ourProcess__titleBlock h2 {
  color: var(--light);
}
.ourProcess__titleBlock h2 span {
  color: var(--tertiary);
}
.ourProcess__titleBlock p {
  margin-top: 15px;
  line-height: 1.9;
  max-width: 900px;
  font-size: 20px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .ourProcess__titleBlock p {
    font-size: 16px;
  }
}
.ourProcess__titleBlock .th-btn:hover {
  background: var(--tertiary);
  color: var(--primary);
}
.ourProcess__titleBlock .th-btn:hover svg path {
  fill: var(--primary);
}
.ourProcess__link {
  color: var(--light);
  margin-top: 20px;
}
.ourProcess__link:visited {
  color: var(--light);
}
.ourProcess__link span {
  margin-left: 5px;
}
.ourProcess__contentBlock {
  padding-left: 60px;
  max-width: 500px;
  border-left: 1px solid var(--light);
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}
.ourProcess__contentBlock .progressBar {
  position: absolute;
  left: -3px;
  content: "";
  width: 5px;
  background: var(--light);
  height: 0;
  top: 0;
}
.ourProcess__contentItem {
  padding-bottom: 7rem;
  padding-top: 2rem;
}
.ourProcess__contentItem h4 {
  color: var(--light);
  font-weight: lighter;
  margin-bottom: 20px;
}
.ourProcess__contentItem h3 {
  color: var(--secondary);
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 48px;
}
.ourProcess__contentItem p {
  line-height: 1.9;
}
.ourProcess__contentItem:nth-child(even) h3 {
  color: var(--tertiary);
}
.ourProcess__imageFrames {
  max-width: 500px;
  margin: 0 auto;
  padding: 60px 0;
  position: sticky;
  top: 100px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ourProcess__imageFrames img {
  margin: 0 auto;
  display: block;
}
.ourProcess__imageFrames .imageBlock {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.5s;
  transform: scale(0);
}
.ourProcess__imageFrames .imageBlock.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.ourProcess__imageFrames .imageBlock.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.ourProcess__carouselItem {
  padding: 0 0;
}
.ourProcess__carouselItem img {
  height: 220px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.ourProcess__carouselItem .contentBlock {
  margin-top: 25px;
}
.ourProcess__carouselItem .contentBlock h3 {
  color: var(--secondary);
  font-size: 36px;
}
.ourProcess__carouselItem:nth-child(even) h3 {
  color: var(--tertiary);
}
.ourProcess .slick-arrow {
  border: 1px solid var(--light);
  background: transparent !important;
  color: var(--light) !important;
  width: 35px;
  height: 35px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  position: absolute;
  top: -102px;
  right: 0;
}
.ourProcess .slick-arrow svg {
  width: 13px;
  height: 13px;
}
.ourProcess .slick-arrow svg path {
  stroke: var(--light);
}
.ourProcess .slick-arrow.slick-prev {
  right: 43px;
}

.technologies {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.technologies .shape {
  background: linear-gradient(180deg, rgba(0, 255, 143, 0.5) 47.5%, rgba(0, 161, 255, 0.5) 67.5%, rgba(0, 0, 0, 0.5) 97%);
  opacity: 0.5;
  filter: blur(125px);
  position: absolute;
  width: 571px;
  height: 350px;
  top: 0;
  right: -350px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .technologies .shape {
    display: none;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .technologies {
    padding: 30px 0;
  }
}
.technologies__titleBlock {
  max-width: 1000px;
  margin-bottom: 50px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .technologies__titleBlock {
    margin-bottom: 0;
  }
}
.technologies__titleBlock h2 {
  margin-bottom: 20px;
}
.technologies__titleBlock h2 span {
  color: var(--secondary);
}
.technologies__titleBlock p {
  line-height: 1.9;
  font-size: 20px;
  max-width: 800px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .technologies__titleBlock p {
    font-size: 16px;
  }
}
.technologies .tabsControlScrollingBtn {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.technologies .tabsControlScrollingBtn button {
  border: 1px solid var(--primary);
  width: 35px;
  height: 35px;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.technologies .tabsControlScrollingBtn button svg {
  width: 13px;
  height: 13px;
}
.technologies__tabsBlock {
  border-top: 1px solid;
}

.technologies__tabsBlock {
  border-top: 1px solid #D1D5DB;
}
@media (min-width: 320px) and (max-width: 767px) {
  .technologies__tabsBlock {
    border: none;
  }
}
.technologies__tabsBlock .tabsContentWrapper {
  padding: 40px 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .technologies__tabsBlock .tabsContentWrapper {
    padding: 20px 0 0;
  }
}
.technologies__tabsBlock .tabsControl {
  border-right: 1px solid #D1D5DB;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .technologies__tabsBlock .tabsControl {
    overflow: scroll;
    padding: 0;
    border-right: none;
    border-bottom: 1px solid #D1D5DB;
  }
}
.technologies__tabsBlock .tab {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .technologies__tabsBlock .tab {
    flex-direction: row;
  }
}
.technologies__tabsBlock .tab button {
  background: transparent;
  border-color: transparent;
  color: var(--primary);
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 30px;
  padding-left: 70px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.technologies__tabsBlock .tab button:before {
  content: "";
  position: absolute;
  left: 25px;
  top: 16px;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.3s;
}
.technologies__tabsBlock .tab button.icon-ui-ux:before {
  background-image: url(../images/icon-ui-ux.png);
}
.technologies__tabsBlock .tab button.icon-web:before {
  background-image: url(../images/icon-web.png);
}
.technologies__tabsBlock .tab button.icon-mobile:before {
  background-image: url(../images/icon-mobile.png);
}
.technologies__tabsBlock .tab button.icon-qa:before {
  background-image: url(../images/icon-qa.png);
}
.technologies__tabsBlock .tab button.icon-shopify-wordpress:before {
  background-image: url(../images/icon-shopify-wordpress.png);
}
.technologies__tabsBlock .tab button.active {
  background: linear-gradient(90deg, rgba(42, 210, 255, 0.3) 0%, rgba(42, 210, 255, 0) 100%);
}
@media (min-width: 320px) and (max-width: 767px) {
  .technologies__tabsBlock .tab button {
    padding: 15px 15px;
    font-size: 16px;
    white-space: nowrap;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    padding-left: 50px;
  }
  .technologies__tabsBlock .tab button::before {
    left: 10px;
  }
  .technologies__tabsBlock .tab button.active {
    border-bottom-color: var(--tertiary);
    background: transparent;
  }
}
.technologies__tabsBlock .tabcontent {
  display: none;
}
.technologies__tabsBlock .tabcontent p {
  font-size: 20px;
  line-height: 1.9;
  margin-bottom: 35px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .technologies__tabsBlock .tabcontent p {
    font-size: 16px;
  }
}
.technologies__tabsBlock .tabcontent:first-child {
  display: block;
}

.stacksBlock:not(:last-child) {
  margin-bottom: 51px;
}
.stacksBlock h3 {
  margin-bottom: 20px;
  font-size: 24px;
}
.stacksBlock .stackItem {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 15px;
  padding: 10px 30px;
  border-radius: 50px;
  background: #F3F4F6;
}
@media (min-width: 320px) and (max-width: 767px) {
  .stacksBlock .stackItem {
    padding: 10px 15px;
    font-size: 12px;
  }
}
.stacksBlock .stackItem .icon img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.industries {
  padding: 60px 0;
  background-image: url(../images/industrie-bg.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 1000px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .industries {
    padding: 30px 0;
  }
}
.industries__titleBlock h2 {
  margin-bottom: 20px;
}
.industries__titleBlock h2 span {
  color: var(--tertiary);
}
.industries__titleBlock p {
  line-height: 1.9;
}
.industries__titleBlock {
  margin-bottom: 40px;
}

.industriesBox {
  padding: 35px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: space-between;
  background: #fff;
  box-shadow: 15px 15px 25px rgba(0, 0, 0, 0.06);
  height: 100%;
  border: 1px solid #CCCCCC;
}
.industriesBox h3 {
  display: flex;
  gap: 15px;
  align-content: center;
  align-items: center;
  margin-bottom: 15px;
  font-size: 30px;
}
@media (min-width: 992px) and (max-width: 1119px) {
  .industriesBox h3 {
    font-size: 26px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .industriesBox h3 {
    font-size: 24px;
  }
}
.industriesBox h3 .text {
  line-height: 1;
}
.industriesBox h3 .icon {
  line-height: 1;
}
@media (min-width: 320px) and (max-width: 767px) {
  .industriesBox h3 .icon svg {
    width: 28px;
    height: 28px;
  }
}
.industriesBox p {
  font-size: 18px;
  line-height: 1.6;
}
.industriesBox .stacks ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.industriesBox .stacks ul li {
  border: 1px solid #000;
  padding: 10px 15px;
  line-height: 1;
  border-radius: 50px;
}

.awards {
  background: var(--primary);
  padding: 60px 0;
  overflow: hidden;
}
.awards__titleBlock {
  margin-bottom: 40px;
}
.awards__titleBlock h2 {
  color: var(--light);
  margin-bottom: 20px;
}
.awards__titleBlock h2 span {
  color: var(--secondary);
}
.awards__titleBlock p {
  color: var(--light);
  line-height: 1.9;
}
.awards .slick-list {
  overflow: hidden;
}
.awards__blockItem {
  color: #737373;
  padding: 30px;
  margin-bottom: 15px;
  border-radius: 15px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  background: linear-gradient(90deg, #050505 0%, #201F21 100%);
  min-height: 150px;
  justify-content: space-between;
}
.awards__blockItem p {
  font-size: 18px;
  line-height: 1.9;
}
.awards__blockItem .logo-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.highlights {
  padding: 60px 0;
  background: var(--primary);
  color: var(--light);
  overflow: hidden;
}
.highlights__titleBlock {
  margin-bottom: 40px;
}
.highlights__titleBlock h2 {
  color: var(--light);
}
.highlights__titleBlock h2 span {
  color: var(--secondary);
}
.highlights__blocks .slick-list {
  overflow: hidden;
}
.highlights__videoItem {
  max-width: 380px;
  transition: all 0.5s;
}
@media (min-width: 320px) and (max-width: 767px) {
  .highlights__videoItem {
    max-width: 90%;
  }
}
.highlights__videoItem:hover {
  transform: scale(1.1);
}
.highlights__videoItem .imgBlock {
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}
.highlights__videoItem .imgBlock a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: url(../images/play.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60px;
}
.highlights__videoItem img {
  width: 100%;
  border-radius: 15px;
}
.highlights__videoItem h4 {
  color: #E5E5E5;
  font-weight: normal;
  margin-top: 10px;
}

.cta {
  padding: 60px 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .cta {
    padding: 30px 0;
  }
}
.cta__wrapper {
  background-image: url(../images/cta-bg.webp);
  background-position: center;
  background-size: cover;
  padding: 150px 60px;
  border-radius: 50px;
  border: 1px solid #E5E7EB;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .cta__wrapper {
    padding: 35px;
  }
}
.cta .content-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta .content-block p {
  line-height: 1.9 !important;
}

.csHeader {
  padding: 180px 0 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csHeader {
    padding: 100px 0 0px;
  }
}
.csHeader__titleBLock {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csHeader__titleBLock {
    flex-direction: column;
  }
}
.csHeader__titleBLock h1 {
  margin: 0;
  font-size: 72px;
  font-weight: bold;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csHeader__titleBLock h1 {
    font-size: 32px;
  }
}
.csHeader__titleBLock h1 span {
  color: var(--secondary);
}
.csHeader__titleBLock .logoBlock {
  max-width: 100%;
}
.csHeader__titleBLock .logoBlock svg {
  width: 100%;
}
.csHeader__titleBLock .logoBlock img {
  width: 100%;
}

.csContentWithImage {
  padding: 60px 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csContentWithImage {
    padding: 30px 0;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .csContentWithImage {
    padding-top: 40px;
    padding-bottom: 0;
  }
}
.csContentWithImage h2 {
  margin-bottom: 25px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csContentWithImage h2 {
    margin-bottom: 15px;
  }
}
.csContentWithImage h4 {
  font-weight: 500;
  margin-bottom: 15px;
}
.csContentWithImage .content p {
  font-size: 20px;
  line-height: 1.9;
  font-weight: 500;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csContentWithImage .content p {
    font-size: 16px;
  }
}
.csContentWithImage .content p .highlighted {
  color: var(--secondary);
}
.csContentWithImage .content ul {
  counter-reset: contentBlockCounter;
  font-size: 20px;
  font-weight: 500;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csContentWithImage .content ul {
    font-size: 16px;
  }
}
.csContentWithImage .content ul li {
  margin: 10px 0;
  padding-left: 40px;
  position: relative;
}
.csContentWithImage .content ul li:before {
  counter-increment: contentBlockCounter;
  content: counter(contentBlockCounter);
  position: absolute;
  left: 0;
  width: 25px;
  height: 25px;
  left: 0;
  top: 2px;
  background: #2AD2FF;
  border-radius: 100%;
  text-align: center;
  line-height: 25px;
  font-size: 16px;
  color: var(--light);
  font-weight: bold;
}
.csContentWithImage--bullet-list .content ul li:before {
  font-size: 0;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 10px;
}

.csObjectives {
  padding: 60px 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csObjectives {
    padding: 30px 0;
  }
}
.csObjectives p {
  font-size: 20px;
  font-weight: 400;
}
.csObjectives p span {
  color: var(--tertiary);
}
@media (min-width: 320px) and (max-width: 767px) {
  .csObjectives p {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .csObjectives {
    padding: 40px 0 0;
  }
}
.csObjectives h2 {
  margin-bottom: 25px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csObjectives h2 {
    margin-bottom: 15px;
  }
}
.csObjectives ul {
  counter-reset: objectivesCounter;
}
.csObjectives ul li {
  position: relative;
  margin: 12px 0;
  padding-left: 40px;
  font-weight: 500;
  font-size: 20px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csObjectives ul li {
    font-size: 16px;
  }
}
.csObjectives ul li:before {
  counter-increment: objectivesCounter;
  content: counter(objectivesCounter);
  position: absolute;
  left: 0;
  width: 30px;
  height: 30px;
  left: 0;
  background: #2AD2FF;
  border-radius: 100%;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  color: var(--light);
  font-weight: bold;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csObjectives ul li:before {
    font-size: 14px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    top: 5px;
  }
}

.csContentBoxes {
  padding: 60px 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csContentBoxes {
    padding: 30px 0;
  }
}
.csContentBoxes__box {
  height: 100%;
  border: 1px solid #CCCCCC;
  padding: 40px;
  border-radius: 25px;
  background: var(--light);
}
@media (min-width: 320px) and (max-width: 767px) {
  .csContentBoxes__box {
    padding: 30px;
  }
}
.csContentBoxes__box h2 {
  margin-bottom: 20px;
}
.csContentBoxes__box p {
  font-size: 20px;
  font-weight: 400;
}
.csContentBoxes__box p span {
  color: var(--tertiary);
}
@media (min-width: 320px) and (max-width: 767px) {
  .csContentBoxes__box p {
    font-size: 16px;
  }
}

.csAutomation {
  padding: 60px 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csAutomation {
    padding: 40px 0 0;
  }
}
.csAutomation__titleBlock {
  text-align: center;
  margin-bottom: 40px;
}
.csAutomation__titleBlock p {
  font-size: 20px;
  margin-top: 15px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csAutomation__titleBlock p {
    font-size: 16px;
  }
}
.csAutomation__checklist {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 40px;
}
.csAutomation__checklist ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csAutomation__checklist ul {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 15px;
    text-align: left;
  }
}
.csAutomation__checklist ul li {
  max-width: 320px;
  font-size: 20px;
  padding-left: 30px;
  background-image: url(../images/check-green.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: left top;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csAutomation__checklist ul li {
    font-size: 16px;
    padding-left: 35px;
    max-width: 100%;
  }
}
.csAutomation__box {
  border: 1px solid #CCCCCC;
  height: 100%;
  padding: 35px;
  border-radius: 15px;
  background-color: var(--light);
}
.csAutomation__box h3 {
  font-size: 30px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csAutomation__box h3 {
    font-size: 24px;
  }
}
.csAutomation__box p {
  font-size: 20px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csAutomation__box p {
    font-size: 16px;
  }
}
.csAutomation__box ul li {
  padding-left: 25px;
  margin: 10px 0;
  position: relative;
  background-image: url(../images/check-dark.png);
  background-position: 0 4px;
  background-size: 20px;
  background-repeat: no-repeat;
}

.csConclusion {
  padding: 60px 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csConclusion {
    padding: 40px 0 0;
  }
}
.csConclusion h2 {
  margin-bottom: 25px;
}
.csConclusion p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 320px) and (max-width: 767px) {
  .csConclusion p {
    font-size: 16px;
  }
}

.discoveryCall {
  padding: 150px 0 0;
}
.discoveryCall h1 {
  text-align: center;
  font-weight: bold;
}

.sdPageTitle {
  padding: 150px 0 60px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdPageTitle {
    padding: 100px 0 60px;
  }
}
.sdPageTitle__wrapper {
  background-image: url(../images/services-detail-bg.jpg);
  padding: 35px;
  border-radius: 25px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.sdPageTitle__wrapper:before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  top: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 25px;
}
.sdPageTitle__title {
  color: var(--light);
  font-size: 52px;
  font-weight: bold;
  margin: 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdPageTitle__title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
  }
}
.sdPageTitle__title span {
  color: var(--secondary);
}
.sdPageTitle__content {
  color: var(--light);
  font-size: 20px;
  line-height: 1.9;
  position: relative;
  z-index: 1;
  text-align: right;
  max-width: 500px;
  margin-left: auto;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdPageTitle__content {
    text-align: center;
    font-size: 16px;
  }
}

.sdCarouselVersionOne {
  overflow: hidden;
  padding-bottom: 60px;
}
.sdCarouselVersionOne__titleBlock {
  margin-bottom: 35px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdCarouselVersionOne__titleBlock {
    padding-right: 86px;
  }
}
.sdCarouselVersionOne__item {
  border: 1px solid #ccc;
  background-color: var(--light);
  max-width: 97%;
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 15px;
}
.sdCarouselVersionOne__item h4 {
  font-size: 40px;
  color: #CCCCCC;
}
.sdCarouselVersionOne__item p {
  color: black;
}
.sdCarouselVersionOne .slick-list {
  overflow: hidden !important;
}
.sdCarouselVersionOne .slick-arrow {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  padding: 0;
  top: -90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdCarouselVersionOne .slick-arrow {
    top: -71px;
    width: 35px;
    height: 35px;
  }
  .sdCarouselVersionOne .slick-arrow svg {
    height: 13px;
    height: 13px;
  }
}
.sdCarouselVersionOne .slick-arrow:hover {
  background-color: var(--primary);
}
.sdCarouselVersionOne .slick-arrow:hover svg path {
  stroke: var(--light);
}
.sdCarouselVersionOne .slick-next {
  right: 0;
}
.sdCarouselVersionOne .slick-prev {
  right: 68px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdCarouselVersionOne .slick-prev {
    right: 40px;
  }
}

.sdContentWithAccordion {
  padding-bottom: 60px;
}
.sdContentWithAccordion__titleBlock {
  margin-bottom: 35px;
}
.sdContentWithAccordion__wrapper {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;
}
.sdContentWithAccordion__imageBlock {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdContentWithAccordion__imageBlock {
    min-height: 350px;
  }
}
.sdContentWithAccordion__contentBlock {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 35px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdContentWithAccordion__contentBlock {
    padding: 20px;
  }
}
.sdContentWithAccordion p {
  font-size: 18px;
  line-height: 1.9;
  font-weight: 500;
  color: #535353;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdContentWithAccordion p {
    font-size: 16px;
  }
}
.sdContentWithAccordion__tagwtitle {
  margin: 0;
  color: var(--primary) !important;
  font-size: 14px !important;
}
.sdContentWithAccordion__tagwtitle span {
  opacity: 0.7;
}
.sdContentWithAccordion .accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.sdContentWithAccordion .accordion .accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  background-color: rgba(243, 244, 246, 0.8);
}
.sdContentWithAccordion .accordion .accordion-button {
  background: transparent;
  color: var(--dark);
  box-shadow: none;
}
.sdContentWithAccordion .accordion .accordion-button:after {
  background-image: url(../images/plus.svg);
}
.sdContentWithAccordion .accordion .accordion-button:not(.collapsed)::after {
  background-image: url(../images/minus.svg);
}
.sdContentWithAccordion .accordion .accordion-body {
  padding-top: 0;
  color: #535353;
}
.sdContentWithAccordion__link a {
  font-weight: 500;
}
.sdContentWithAccordion__link a .icon {
  margin-left: 5px;
}

.sdCarouselVersionTwo {
  overflow: hidden;
  padding-bottom: 60px;
}
.sdCarouselVersionTwo__titleBlock {
  margin-bottom: 35px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdCarouselVersionTwo__titleBlock {
    margin-top: 15px;
  }
}
.sdCarouselVersionTwo .slick-list {
  overflow: hidden;
}
.sdCarouselVersionTwo__item {
  border: 1px solid #ccc;
  max-width: 97%;
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 15px;
  background-color: var(--light);
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdCarouselVersionTwo__item {
    max-width: 100%;
  }
}
.sdCarouselVersionTwo__item img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
.sdCarouselVersionTwo__item h4 {
  font-size: 40px;
  color: #CCCCCC;
}
.sdCarouselVersionTwo__item p {
  color: black;
}
.sdCarouselVersionTwo .slick-arrow {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  padding: 0;
  top: -90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdCarouselVersionTwo .slick-arrow {
    top: -71px;
    width: 35px;
    height: 35px;
  }
  .sdCarouselVersionTwo .slick-arrow svg {
    height: 13px;
    height: 13px;
  }
}
.sdCarouselVersionTwo .slick-arrow:hover {
  background-color: var(--primary);
}
.sdCarouselVersionTwo .slick-arrow:hover svg path {
  stroke: var(--light);
}
.sdCarouselVersionTwo .slick-next {
  right: 0;
}
.sdCarouselVersionTwo .slick-prev {
  right: 68px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdCarouselVersionTwo .slick-prev {
    right: 40px;
  }
}

.sdCommitment {
  padding-bottom: 60px;
}
.sdCommitment__titleBlock {
  margin-bottom: 35px;
}
.sdCommitment__icon img {
  filter: invert(1);
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.sdCommitment__item {
  background-color: var(--dark);
  max-width: 97%;
  margin: 0 auto;
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 15px;
  min-height: 350px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdCommitment__item {
    width: 100%;
  }
}
.sdCommitment__item h3 {
  color: var(--light);
  margin-bottom: 15px;
  font-size: 24px;
}
.sdCommitment__item p {
  color: var(--light);
  line-height: 1.9;
}
.sdCommitment__icon svg {
  width: 100px;
  height: 100px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdCommitment__icon svg {
    width: 50px;
    height: 50px;
  }
}
.sdCommitment__button a {
  display: inline-flex;
  background-color: var(--sdCommitmentColor);
  padding: 15px 30px;
  border-radius: 50px;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  font-weight: 500;
  width: 100%;
  max-width: 200px;
  justify-content: center;
}
.sdCommitment__button a:hover {
  color: var(--dark);
  opacity: 0.9;
}
.sdCommitment .slick-arrow {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  padding: 0;
  top: -90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdCommitment .slick-arrow {
    top: -71px;
    width: 35px;
    height: 35px;
  }
  .sdCommitment .slick-arrow svg {
    height: 13px;
    height: 13px;
  }
}
.sdCommitment .slick-arrow:hover {
  background-color: var(--primary);
}
.sdCommitment .slick-arrow:hover svg path {
  stroke: var(--light);
}
.sdCommitment .slick-next {
  right: 0;
}
.sdCommitment .slick-prev {
  right: 68px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdCommitment .slick-prev {
    right: 40px;
  }
}

.sdInsights {
  display: none;
  padding-bottom: 60px;
}
.sdInsights__titleBlock {
  margin-bottom: 35px;
}
.sdInsights__item {
  padding: 0 15px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdInsights__item {
    padding: 0;
  }
}
.sdInsights__imageBlock a {
  display: block;
}
.sdInsights__imageBlock a img {
  width: 100%;
  border-radius: 25px;
}
.sdInsights__content {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.sdInsights__content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.sdInsights__content ul li a {
  border: 1px solid #000;
  font-size: 12px;
  padding: 10px 15px;
  line-height: 1;
  border-radius: 50px;
  position: relative;
  padding-right: 35px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdInsights__content ul li a {
    font-size: 10px;
    padding: 7px 10px;
    padding-right: 29px;
  }
}
.sdInsights__content ul li a:before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  right: 15px;
  top: 10px;
  background-image: url(../images/link.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdInsights__content ul li a:before {
    width: 9px;
    height: 9px;
    right: 12px;
    top: 8px;
  }
}
.sdInsights__content h3 a:hover {
  color: var(--dark);
}
.sdInsights .slick-arrow {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  padding: 0;
  top: -90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdInsights .slick-arrow {
    top: -71px;
    width: 35px;
    height: 35px;
  }
  .sdInsights .slick-arrow svg {
    height: 13px;
    height: 13px;
  }
}
.sdInsights .slick-arrow:hover {
  background-color: var(--primary);
}
.sdInsights .slick-arrow:hover svg path {
  stroke: var(--light);
}
.sdInsights .slick-next {
  right: 0;
}
.sdInsights .slick-prev {
  right: 68px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdInsights .slick-prev {
    right: 40px;
  }
}

.sdFeatureBoxes__titleBlock {
  margin-bottom: 35px;
}
.sdFeatureBoxes__item {
  border: 1px solid #ccc;
  background-color: var(--light);
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 15px;
  height: 100%;
}
.sdFeatureBoxes__item img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sdFeatureBoxes__item img {
    width: 50px;
    height: 50px;
  }
}
.sdFeatureBoxes__item h3 {
  font-size: 24px;
}
.sdFeatureBoxes__item p {
  color: black;
}

.aboutTitleBlock {
  padding: 150px 0 60px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .aboutTitleBlock {
    padding: 100px 0 60px;
  }
}
.aboutTitleBlock__wrapper {
  background-image: url(../images/services-detail-bg.jpg);
  padding: 35px;
  border-radius: 25px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.aboutTitleBlock__wrapper:before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  top: 20px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(7.5px);
  border-radius: 25px;
}
.aboutTitleBlock__title {
  color: var(--light);
  font-size: 66px;
  font-weight: bold;
  margin: 0;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .aboutTitleBlock__title {
    font-size: 52px;
    text-align: center;
    margin-bottom: 15px;
  }
}
.aboutTitleBlock__title span {
  color: var(--secondary);
}

.aboutUs-services {
  padding-bottom: 60px;
}
.aboutUs-services__title {
  margin-bottom: 35px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .aboutUs-services__title {
    padding-right: 86px;
  }
}
.aboutUs-services__carousel-item {
  border-radius: 15px;
  max-width: 95%;
  margin: 25px auto;
  padding: 25px;
  position: relative;
  background: #fff;
  padding-left: 120px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  min-height: 215px;
}
.aboutUs-services__carousel-item h4 {
  font-size: 1.75rem;
}
.aboutUs-services__carousel-item p {
  font-size: 1.25rem;
}
.aboutUs-services__carousel-item-image {
  position: absolute;
  left: 25px;
  width: 84px;
  height: 84px;
}
.aboutUs-services__carousel-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.aboutUs-services .slick-arrow {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  padding: 0;
  top: -90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .aboutUs-services .slick-arrow {
    top: -71px;
    width: 35px;
    height: 35px;
  }
  .aboutUs-services .slick-arrow svg {
    height: 13px;
    height: 13px;
  }
}
.aboutUs-services .slick-arrow:hover {
  background-color: var(--primary);
}
.aboutUs-services .slick-arrow:hover svg path {
  stroke: var(--light);
}
.aboutUs-services .slick-next {
  right: 0;
}
.aboutUs-services .slick-prev {
  right: 68px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .aboutUs-services .slick-prev {
    right: 40px;
  }
}

.aboutUs-expertise {
  padding-bottom: 60px;
}
.aboutUs-expertise__titleBlock {
  margin-bottom: 35px;
}
.aboutUs-expertise__wrapper {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;
}
.aboutUs-expertise__imageBlock {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .aboutUs-expertise__imageBlock {
    min-height: 350px;
  }
}
.aboutUs-expertise__contentBlock {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 35px;
  background-color: var(--light);
}
@media (min-width: 320px) and (max-width: 767px) {
  .aboutUs-expertise__contentBlock {
    padding: 20px;
  }
}
.aboutUs-expertise p {
  font-size: 18px;
  line-height: 1.9;
  font-weight: 500;
  color: #535353;
}
@media (min-width: 320px) and (max-width: 767px) {
  .aboutUs-expertise p {
    font-size: 16px;
  }
}
.aboutUs-expertise__tagwtitle {
  margin: 0;
  color: var(--primary) !important;
  font-size: 14px !important;
}
.aboutUs-expertise__tagwtitle span {
  opacity: 0.7;
}
.aboutUs-expertise__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.aboutUs-expertise__list-item {
  position: relative;
  padding-left: 60px;
  display: flex;
}
.aboutUs-expertise__list-image {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 0;
  top: 4px;
}
.aboutUs-expertise__list-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.aboutUs-expertise__list-content h4 {
  margin: 0;
}
.aboutUs-expertise__link a {
  font-weight: 500;
}
.aboutUs-expertise__link a .icon {
  margin-left: 5px;
}

.aboutUs-team {
  padding-bottom: 60px;
}
.aboutUs-team__title {
  margin-bottom: 35px;
}
.aboutUs-team__item {
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  max-width: 95%;
  margin: 20px auto;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.aboutUs-team__item-image img {
  width: 100%;
}
.aboutUs-team__item-content {
  padding: 0 25px 25px;
}
.aboutUs-team__item-content ul {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.aboutUs-team__item-content ul a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.aboutUs-team__item-content ul a svg {
  width: 15px;
  height: 15px;
}
.aboutUs-team__item-dis {
  padding: 15px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.2);
  transform: translate(0, -50px);
  max-width: 360px;
  margin: 0 auto;
}
.aboutUs-team__item-dis h3 {
  font-size: 26px;
  margin: 0 0 10px;
}
.aboutUs-team .slick-arrow {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  padding: 0;
  top: -90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .aboutUs-team .slick-arrow {
    top: -71px;
    width: 35px;
    height: 35px;
  }
  .aboutUs-team .slick-arrow svg {
    height: 13px;
    height: 13px;
  }
}
.aboutUs-team .slick-arrow:hover {
  background-color: var(--primary);
}
.aboutUs-team .slick-arrow:hover svg path {
  stroke: var(--light);
}
.aboutUs-team .slick-next {
  right: 0;
}
.aboutUs-team .slick-prev {
  right: 68px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .aboutUs-team .slick-prev {
    right: 40px;
  }
}

.aboutUs-trust {
  overflow: hidden;
}
.aboutUs-trust__title {
  margin-bottom: 0;
}
.aboutUs-trust__item {
  padding: 0 25px;
}
.aboutUs-trust__item img {
  max-width: 200px;
}
.aboutUs-trust .slick-list {
  overflow: hidden;
}

.aboutUs-comments {
  padding: 60px 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .aboutUs-comments {
    padding: 30px 0;
  }
}
.aboutUs-comments__title {
  margin-bottom: 35px;
}
.aboutUs-comments__item-image {
  display: flex;
  justify-content: center;
  margin: 0 auto -50px;
}
.aboutUs-comments__item-image img {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}
@media (min-width: 320px) and (max-width: 767px) {
  .aboutUs-comments__item-image img {
    width: 90px;
    height: 90px;
  }
}
.aboutUs-comments__item-content {
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  max-width: 95%;
  margin: 0 auto 20px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 70px 25px 25px;
  min-height: 295px;
}
.aboutUs-comments__item-content h3 {
  font-size: 26px;
  margin: 0 0 10px;
}
.aboutUs-comments__item-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #535353;
}
.aboutUs-comments__item-rating {
  margin-bottom: 15px;
}
.aboutUs-comments .slick-arrow {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  padding: 0;
  top: -90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .aboutUs-comments .slick-arrow {
    top: -71px;
    width: 35px;
    height: 35px;
  }
  .aboutUs-comments .slick-arrow svg {
    height: 13px;
    height: 13px;
  }
}
.aboutUs-comments .slick-arrow:hover {
  background-color: var(--primary);
}
.aboutUs-comments .slick-arrow:hover svg path {
  stroke: var(--light);
}
.aboutUs-comments .slick-next {
  right: 0;
}
.aboutUs-comments .slick-prev {
  right: 68px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .aboutUs-comments .slick-prev {
    right: 40px;
  }
}

.aboutUs-steps {
  padding-top: 60px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .aboutUs-steps {
    padding: 30px 0;
  }
}
.aboutUs-steps__title {
  margin-bottom: 35px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .aboutUs-steps__title {
    margin-bottom: 0;
  }
}
.aboutUs-steps__button {
  border: 1px solid #ccc;
  border-radius: 50px;
  background-color: var(--light);
  font-size: 24px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  padding: 10px 30px;
  gap: 15px;
  position: relative;
  z-index: 9;
}
.aboutUs-steps__button.last:before {
  display: none;
}
.aboutUs-steps__button:before {
  content: "";
  position: absolute;
  height: 1px;
  left: 100%;
  width: 300px;
  background: #ccc;
}
@media (min-width: 320px) and (max-width: 767px) {
  .aboutUs-steps__button {
    display: none;
  }
}
.aboutUs-steps__button-icon {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: all 0.5s;
}
.aboutUs-steps__button-icon img {
  width: 15px;
  height: 15px;
}
.aboutUs-steps__box {
  padding: 30px;
  border: 1px solid #ccc;
  background-color: var(--light);
  border-radius: 15px;
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
}
.aboutUs-steps .col-md-4:hover .aboutUs-steps__button-icon {
  background-color: var(--secondary);
}
.aboutUs-steps .col-md-4:hover .aboutUs-steps__button-icon img {
  filter: brightness(0) invert(1);
}

.video-testimonial {
  padding: 60px 0;
  background-color: var(--primary);
  color: var(--light);
}
@media (min-width: 320px) and (max-width: 767px) {
  .video-testimonial {
    padding: 30px 0;
  }
}
.video-testimonial .th-btn:hover {
  background: var(--tertiary);
  color: var(--primary);
}
.video-testimonial .th-btn:hover svg path {
  fill: var(--primary);
}
.video-testimonial__content {
  margin-bottom: 40px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .video-testimonial__content {
    margin-bottom: 20px;
  }
}
.video-testimonial__content h2 {
  color: var(--light);
  margin-bottom: 25px;
}
.video-testimonial__content h2 span {
  color: var(--secondary);
}
.video-testimonial__content p {
  color: var(--light);
  line-height: 1.9;
  font-size: 20px;
  max-width: 800px;
  margin-bottom: 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .video-testimonial__content p {
    font-size: 16px;
  }
}
.video-testimonial__item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  overflow: hidden;
}
.video-testimonial__item a {
  display: block;
  position: relative;
}
.video-testimonial__item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-testimonial__item-title {
  color: var(--light);
  margin: 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .video-testimonial__item-title {
    font-size: 16px;
  }
}
.video-testimonial__item-content {
  padding: 15px 20px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .video-testimonial__item-content {
    padding: 12px;
  }
}
.video-testimonial__item-text {
  text-align: right;
  font-size: 20px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .video-testimonial__item-text {
    font-size: 12px;
  }
}
.video-testimonial .slick-arrow {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  padding: 0;
  top: -90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .video-testimonial .slick-arrow {
    top: -71px;
    width: 35px;
    height: 35px;
  }
  .video-testimonial .slick-arrow svg {
    height: 13px;
    height: 13px;
  }
}
.video-testimonial .slick-arrow:hover {
  background-color: var(--primary);
}
.video-testimonial .slick-arrow:hover svg path {
  stroke: var(--light);
}
.video-testimonial .slick-next {
  right: 0;
}
.video-testimonial .slick-prev {
  right: 68px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .video-testimonial .slick-prev {
    right: 40px;
  }
}
.video-testimonial .slick-arrow {
  top: -62px;
  border-color: var(--light);
}
.video-testimonial .slick-arrow svg path {
  stroke: var(--light);
}

.simple-content {
  padding: 60px 0;
  background-color: var(--primary);
  color: var(--light);
}
@media (min-width: 320px) and (max-width: 767px) {
  .simple-content {
    padding: 30px 0;
  }
}
.simple-content h2 {
  color: var(--light);
  margin-bottom: 20px;
}
.simple-content h2 span {
  color: var(--tertiary);
}
.simple-content h3 {
  font-weight: normal;
  color: var(--light);
  line-height: 1.6;
  font-size: 27px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .simple-content h3 {
    font-size: 18px;
  }
}
.simple-content img {
  border-radius: 15px;
}
.simple-content .th-btn:hover {
  background: var(--tertiary);
  color: var(--primary);
}
.simple-content .th-btn:hover svg path {
  fill: var(--primary);
}

/* Contact Us Section */
.contact-us {
  padding: 60px 0;
}

.contact-us-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-us-info,
.contact-us-form {
  padding: 30px;
  height: 100%;
}

/* Headings */
.contact-us-info h2,
.contact-us-form h2 {
  margin-bottom: 20px;
}

/* Contact Info */
.contact-us-info p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  margin-bottom: 12px;
}

.contact-details a {
  text-decoration: none;
}

/* Form Styles */
.contact-us-form form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

.form-group textarea {
  resize: vertical;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-us-info,
  .contact-us-form {
    padding: 20px;
  }
}/*# sourceMappingURL=main.css.map */

.whatWeBuild {
    
  .slick-track {

      .slick-slide {

          .sdCarouselVersionOne__item {

              img {

                  height: 78px;
                  width: 78px !important;
                  margin: 0px;
                  
              }
              
          }
          
      }
      
  }
  
}