@media only screen and (min-width: 768px) {
  @font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-VariableFont_wght.woff2") format("woff2"), url("../fonts/PlusJakartaSans-VariableFont_wght.woff") format("woff"), url("../fonts/PlusJakartaSans-VariableFont_wght.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: normal;
  font-size: 18px;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
  font-family: "Plus Jakarta Sans";
}

h1 {
  font-size: 74px;
  line-height: 90px;
  color: #ffffff;
  margin: 0 0 20px;
  font-weight: 800;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #000;
  margin: 0 0 20px;
  font-weight: 700;
}

h3 {
  font-size: 32px;
  line-height: 52px;
  color: #000;
  font-weight: 700;
}

h4 {
  font-size: 22px;
  color: #000;
  font-weight: 700;
}

h6 {
  font-size: 18px;
  font-weight: 600;
}

p {
  font-size: 18px;
  color: #000;
  line-height: 29px;
  margin: 0 0 20px;
}

ul {
  list-style: none;
}

p:last-child {
  margin-bottom: 0px;
}

a {
  color: #000;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  position: relative;
}

.strong,
strong {
  font-weight: 600;
}

.dis-flex {
  display: flex;
  flex-wrap: wrap;
}

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

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

.item-end {
  align-items: flex-end;
}

.justify-sb {
  justify-content: space-between;
}

.block {
  display: block;
}

.flex-2 {
  flex-basis: 50%;
}
.flex-2:first-child {
  padding-right: 20px;
}

.flex-3 {
  flex-basis: 33.33%;
}

.flex-4 {
  flex-basis: 25%;
}

.flex-5 {
  flex-basis: 20%;
}

.padding-t-100 {
  padding-top: 100px;
}

.padding-b-100 {
  padding-bottom: 100px;
}

.padding-t-90 {
  padding-top: 90px;
}

.padding-t-50 {
  padding-top: 50px;
}

.padding-b-50 {
  padding-bottom: 50px;
}

.padding-b-90 {
  padding-bottom: 90px;
}

.padding-t-30 {
  padding-top: 30px;
}

.padding-b-30 {
  padding-bottom: 30px;
}

.margin-b-150 {
  margin-bottom: 150px;
}

.margin-t-100 {
  margin-top: 100px;
}

.margin-t-80 {
  margin-top: 80px;
}

.margin-b-80 {
  margin-bottom: 80px;
}

.margin-t-70 {
  margin-top: 70px;
}

.margin-t-60 {
  margin-top: 60px;
}

.margin-t-50 {
  margin-top: 50px;
}

.margin-t-30 {
  margin-top: 30px;
}

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

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

.heading {
  max-width: 1060px;
  margin: auto;
}
.heading p {
  margin-top: 10px;
}
.heading a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.heading a:hover {
  text-decoration: underline;
}

.btn-blue {
  background: transparent;
  color: #000;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 13px 20px;
  min-width: 190px;
  font-size: 16px;
  text-align: center;
  border: 1px solid #000;
  display: inline-block;
  font-weight: 700;
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
.btn-blue:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  background-size: 100%;
  vertical-align: middle;
  background: url(../images/btn-arrow.svg) no-repeat;
  webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
.btn-blue:hover {
  background: #000;
  color: #ffffff;
}
.btn-blue:hover:after {
  background: url(../images/white-arrow.svg) no-repeat;
  width: 35px;
}

.btn-white {
  background: transparent;
  color: #ffffff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 13px 20px;
  min-width: 190px;
  font-size: 16px;
  text-align: center;
  border: 1px solid #ffffff;
  display: inline-block;
  font-weight: 700;
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
.btn-white:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  background-size: 100%;
  vertical-align: middle;
  background: url(../images/white-arrow.svg) no-repeat;
  webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
.btn-white:hover {
  background: #000;
  border-color: #000;
  color: #ffffff;
}
.btn-white:hover:after {
  background: url(../images/white-arrow.svg) no-repeat;
  width: 35px;
}

.input-field {
  color: #ffffff;
}

::placeholder {
  color: #9b9b9b;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

::placeholder {
  color: #9b9b9b;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: capitalize;
}

input,
textarea {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.trusted-sec h3 {
  text-align: center;
  font-size: 24px;
}
.trusted-sec img {
  margin: 30px auto 0;
}

.join-us .dis-flex .left-box ul {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0 0;
}
.join-us .dis-flex .left-box ul li {
  margin: 0 0 20px;
  flex-basis: 50%;
  display: flex;
  align-items: center;
}
.join-us .dis-flex .left-box ul li picture {
  width: 55px;
  text-align: center;
}
.join-us .dis-flex .left-box ul li span {
  width: calc(100% - 70px);
}

.innovation .inov-outer {
  position: relative;
  background: rgba(63, 63, 63, 0.0196078431);
  border: 1px solid rgba(63, 63, 63, 0.2);
  border-radius: 30px;
  width: 930px;
  margin: 0 auto;
}
.innovation .inov-outer:before {
  content: "";
  width: 105px;
  height: 105px;
  background-size: 100%;
  background: url(../images/shape-02.png) no-repeat;
  position: absolute;
  right: 20px;
  top: -50px;
  z-index: 9;
}
.innovation .inov-outer .inno-wrap {
  position: relative;
  overflow: hidden;
  padding: 40px 100px;
}
.innovation .inov-outer .inno-wrap:before {
  content: "";
  width: 226px;
  height: 253px;
  background-size: 100%;
  background: url(../images/shape-01.png) no-repeat;
  position: absolute;
  left: -100px;
  top: -35px;
}
.innovation .inov-outer .inno-wrap:after {
  content: "";
  content: "";
  width: 354px;
  height: 374px;
  background-size: 100%;
  background: url(../images/shape-03.png) no-repeat;
  position: absolute;
  right: -33px;
  top: 0px;
}

.footer {
  background: #000;
  font-size: 14px;
  padding: 12px 0;
  color: #ffffff;
}
.footer .dis-flex {
  justify-content: space-between;
  align-items: center;
}
.footer .dis-flex .fotleft {
  flex-basis: 50%;
}
.footer .dis-flex .fot-right {
  display: flex;
  align-items: center;
  flex-basis: 50%;
  justify-content: right;
}
.footer .dis-flex .fot-right .cmmi {
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.footer .dis-flex .fot-right .cmmi img {
  vertical-align: middle;
  opacity: 0.8;
}
.footer .dis-flex .fot-right .cmmi:hover img {
  opacity: 1;
}
.footer .dis-flex .fot-right a {
  display: inline-block;
  margin: 0 5px;
  width: 28px;
  height: 28px;
}
.footer .dis-flex .fot-right a img {
  vertical-align: middle;
  opacity: 0.8;
}
.footer .dis-flex .fot-right a:hover img {
  opacity: 1;
}

/*Responsive Style start from here*/
@media (max-width: 1600px) {
  .container {
    max-width: 1380px;
  }
}
@media (max-width: 1440px) {
  .container {
    max-width: 1260px;
  }
  h1 {
    font-size: 68px;
  }
}
@media (max-width: 1280px) {
  h1 {
    font-size: 60px;
    line-height: 80px;
  }
  .padding-t-100 {
    padding-top: 80px;
  }
  .padding-b-100 {
    padding-bottom: 80px;
  }
  .padding-t-90 {
    padding-top: 70px;
  }
  .padding-t-50 {
    padding-top: 40px;
  }
  .padding-b-50 {
    padding-bottom: 40px;
  }
  .padding-b-90 {
    padding-bottom: 70px;
  }
  .padding-t-30 {
    padding-top: 30px;
  }
  .padding-b-30 {
    padding-bottom: 30px;
  }
  .margin-b-150 {
    margin-bottom: 100px;
  }
  .margin-t-100 {
    margin-top: 100px;
  }
  .margin-t-80 {
    margin-top: 50px;
  }
  .margin-b-80 {
    margin-bottom: 50px;
  }
  .margin-t-60 {
    margin-top: 40px;
  }
  .margin-t-50 {
    margin-top: 40px;
  }
}
@media (max-width: 980px) {
  .innovation .inov-outer {
    width: 100%;
  }
  .innovation .inov-outer:before {
    top: -46px;
    width: 78px;
    height: 79px;
    background-size: 100%;
  }
  .innovation .inov-outer .inno-wrap {
    padding: 35px 40px;
  }
  .innovation .inov-outer .inno-wrap:before {
    left: -93px;
    width: 199px;
    height: 191px;
    background-size: 100%;
  }
  .innovation .inov-outer .inno-wrap:after {
    background-size: 100%;
    top: 22px;
    width: 289px;
    height: 336px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
    font-family: sans-serif;
  }
  h1,
  h2,
  h3,
  h4 {
    font-family: sans-serif;
    font-weight: 500;
  }
  h1 {
    font-size: 40px;
    line-height: 1.3;
    margin: 0 0 15px;
  }
  h2 {
    font-size: 32px;
    line-height: 38px;
    margin: 0 0 15px;
  }
  h3 {
    font-size: 28px;
    line-height: 1.2;
  }
  h4 {
    font-size: 20px;
  }
  h6 {
    font-size: 16px;
  }
  p {
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 15px;
  }
  .flex-2,
  .flex-3,
  .flex-4,
  .flex-5 {
    flex-basis: 100%;
  }
  .padding-t-100 {
    padding-top: 60px;
  }
  .padding-b-100 {
    padding-bottom: 60px;
  }
  .padding-t-90 {
    padding-top: 50px;
  }
  .padding-t-50 {
    padding-top: 30px;
  }
  .padding-b-50 {
    padding-bottom: 30px;
  }
  .padding-b-90 {
    padding-bottom: 50px;
  }
  .padding-t-30 {
    padding-top: 20px;
  }
  .padding-b-30 {
    padding-bottom: 20px;
  }
  .margin-b-150 {
    margin-bottom: 80px;
  }
  .margin-t-100 {
    margin-top: 80px;
  }
  .margin-t-80 {
    margin-top: 40px;
  }
  .margin-b-80 {
    margin-bottom: 40px;
  }
  .margin-t-70 {
    margin-top: 50px;
  }
  .margin-t-60 {
    margin-top: 40px;
  }
  .margin-t-50 {
    margin-top: 40px;
  }
  .margin-t-30 {
    margin-top: 20px;
  }
  .heading {
    max-width: 100%;
  }
  .btn-blue {
    padding: 11px 20px;
    min-width: 170px;
    font-size: 15px;
  }
  .btn-white {
    padding: 11px 20px;
    min-width: 170px;
    font-size: 15px;
  }
  .flex-2:first-child {
    padding-right: 0;
  }
  .join-us .dis-flex .left-box ul li {
    margin: 0 0 10px;
    flex-basis: 100%;
    font-size: 16px;
    line-height: 1.2;
    display: flex;
    align-items: center;
  }
  .innovation .inov-outer {
    width: 100%;
  }
  .innovation .inov-outer:before {
    top: -24px;
    width: 58px;
    height: 46px;
  }
  .innovation .inov-outer .inno-wrap {
    padding: 25px 20px;
  }
  .innovation .inov-outer .inno-wrap:before {
    display: none;
  }
  .innovation .inov-outer .inno-wrap:after {
    display: none;
  }
  .footer .dis-flex .fotleft {
    flex-basis: 100%;
    margin: 0 0 15px;
    font-size: 13px;
    text-align: center;
  }
  .footer .dis-flex .fot-right {
    flex-basis: 100%;
    text-align: center;
    justify-content: center;
  }
}
/*Responsive Style Ends here*/
.header {
  background: transparent;
  padding: 20px 0;
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}
.header.shady {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  background: #000;
  transition: all 0.5s ease 0s;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.3294117647);
  padding: 15px 0;
}
.header .site-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .site-navbar .logo a {
  display: block;
}
.header .site-navbar .logo .logo-lt {
  display: block;
}
.header .site-navbar .logo .logo-dark {
  display: none;
}
.header .site-navbar .menu-items ul li {
  margin: 0 20px;
  display: inline-block;
}
.header .site-navbar .menu-items ul li a {
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  transition: 0.3s ease;
  position: relative;
}
.header .site-navbar .menu-items ul li a:before {
  content: "";
  display: block;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.header .site-navbar .menu-items ul li a.cont-us {
  background: #fff;
  color: #000;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 13px 30px;
  line-height: 1;
  min-width: 180px;
  text-align: center;
  border: 1px solid #ffffff;
}
.header .site-navbar .menu-items ul li a.cont-us:before {
  display: none;
}
.header .site-navbar .menu-items ul li a.cont-us:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  background-size: 100%;
  vertical-align: middle;
  background: url(../images/btn-arrow.svg) no-repeat;
}
.header .site-navbar .menu-items ul li a:hover {
  background: transparent;
  color: #ffffff;
}
.header .site-navbar .menu-items ul li a:hover:after {
  background: url(../images/white-arrow.svg) no-repeat;
}
.header .site-navbar .menu-items ul li a:hover:before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #fff;
  position: absolute;
  bottom: -10px;
  left: 0;
  margin: auto;
}
.header .site-navbar .menu-items ul li:last-child {
  margin-right: 0;
}
.header .site-navbar .menu-items ul li:last-child a:hover:before {
  background: no-repeat;
}

/* nav-toggler css start */
.nav-toggler {
  border: none;
  padding: 5px;
  background-color: transparent;
  cursor: pointer;
  height: 39px;
  display: none;
}

.nav-toggler span,
.nav-toggler span:before,
.nav-toggler span:after {
  width: 28px;
  height: 3px;
  background-color: #fff;
  display: block;
  transition: 0.3s;
}

.nav-toggler span:before {
  content: "";
  transform: translateY(-9px);
}

.nav-toggler span:after {
  content: "";
  transform: translateY(6px);
}

.nav-toggler.toggler-open span {
  background-color: transparent;
}

.nav-toggler.toggler-open span:before {
  transform: translateY(0px) rotate(45deg);
}

.nav-toggler.toggler-open span:after {
  transform: translateY(-3px) rotate(-45deg);
}

/* nav-toggler css Ends */
/* mobile breakpoint start */
@media (max-width: 1024px) {
  .header .site-navbar .menu-items ul li {
    margin: 0 14px;
  }
}
@media screen and (max-width: 979px) {
  .nav-toggler {
    display: block;
  }
  .header {
    padding: 15px 0;
    background: #000;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.3294117647);
  }
  .header .site-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .site-navbar .menu-items ul {
    position: absolute;
    width: 100%;
    height: calc(100vh - 85px);
    left: 0;
    top: 82px;
    flex-direction: column;
    align-items: center;
    background-color: #000;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    z-index: 9;
  }
  .header .site-navbar .menu-items ul li {
    margin: 0;
    display: block;
  }
  .header .site-navbar .menu-items ul li a {
    font-size: 16px;
    padding: 20px;
    display: block;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header .site-navbar .menu-items ul li a:hover {
    background: #f5f7fe;
    color: #202020;
  }
  .header .site-navbar .menu-items ul li a:hover:before {
    display: none;
  }
  .header .site-navbar .menu-items ul li a.cont-us:hover {
    color: #ffffff;
    border-color: #ffffff;
    background: transparent;
  }
  .header .site-navbar .menu-items ul li:last-child {
    margin-right: 0;
    padding: 0 20px;
    display: flex;
    margin-top: 30px;
    text-align: center;
    justify-content: center;
  }
  .header .site-navbar .menu-items ul.open {
    max-height: 100vh;
    overflow: visible;
  }
}
.testimonials-section .slider {
  width: 100%;
  margin: 80px auto 0;
  display: flex;
  justify-content: space-between;
}
.testimonials-section .slider .slide {
  position: relative;
  width: 100%;
  padding: 0 10px;
}
.testimonials-section .slider .slide .slide-columns {
  border-radius: 20px;
  min-height: 354px;
  background: rgba(63, 63, 63, 0.02);
  position: relative;
}
.testimonials-section .slider .slide .slide-columns:after {
  content: "";
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  border-radius: 0 0 20px 20px;
}
.testimonials-section .slider .slide .slide-columns:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 9px solid rgba(0, 0, 0, 0.05);
  bottom: -9px;
  transform: rotate(180deg);
}
.testimonials-section .slider .slide .slide-columns.slide2:after {
  background: rgba(0, 0, 0, 0.05);
}
.testimonials-section .slider .slide .slide-columns.slide2:before {
  content: "";
  border-bottom: 9px solid rgba(0, 0, 0, 0.05);
}
.testimonials-section .slider .slide .desc {
  padding: 40px 30px 0;
}
.testimonials-section .slider .slide .desc img {
  margin: 0 0 20px;
}
.testimonials-section .slider .slide iframe {
  width: 100%;
  height: 227px;
  border-radius: 20px 20px 0 0;
}
.testimonials-section .slider .slide .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 87px;
  height: 87px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}
.testimonials-section .slider .slide .play-button img {
  width: 60px;
  height: 60px;
  transition: 0.4s ease-in-out;
}
.testimonials-section .slider .slide .play-button:hover {
  transition: 0.4s ease-in-out;
}
.testimonials-section .slider .slide .play-button:hover img {
  transition: 0.4s ease-in-out;
  scale: 1.2;
}
.testimonials-section .slider .slide .top-banner {
  width: 100%;
  position: relative;
}
.testimonials-section .slider .slide .detail-sec {
  padding: 28px 30px;
  border-radius: 0 0 20px 20px;
}
.testimonials-section .slider .slide .detail-sec .dis-flex {
  align-items: center;
  justify-content: space-between;
}
.testimonials-section .slider .slide .detail-sec .dis-flex .leftsc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.testimonials-section .slider .slide .detail-sec .dis-flex .leftsc img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  margin-right: 8px;
}
.testimonials-section .slider .slide .detail-sec .dis-flex .leftsc .cont p {
  font-size: 14px;
}
.testimonials-section .slider .slide .test-title {
  margin: 20px 0 0;
  display: block;
  font-size: 16px;
  text-align: center;
}
.testimonials-section .slick-dots {
  bottom: -80px;
}
.testimonials-section .slick-dots li {
  margin: 0 7px;
  width: auto;
  height: auto;
}
.testimonials-section .slick-dots li button {
  width: 45px;
  height: 5px;
  border-radius: 10px;
  background: rgb(240, 240, 247);
}
.testimonials-section .slick-dots li button:before {
  display: none;
}
.testimonials-section .slick-dots li.slick-active button {
  background: #000;
}
.testimonials-section .slick-prev,
.testimonials-section .slick-next {
  bottom: -80px;
  width: 46px;
  height: 44px;
  border: 2px solid rgb(244, 247, 250);
  border-radius: 6px;
  background: #fff;
  right: 0;
  top: auto;
  bottom: -120px;
  z-index: 99;
}
.testimonials-section .slick-prev:hover,
.testimonials-section .slick-next:hover {
  opacity: 0.8;
}
.testimonials-section .slick-prev {
  left: 30%;
}
.testimonials-section .slick-next {
  right: 30%;
}
.testimonials-section .slick-prev:before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 16px;
  background-size: 100%;
  opacity: 1;
  vertical-align: middle;
  background: url(../images/arrow.png) no-repeat;
}
.testimonials-section .slick-next:before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 16px;
  background-size: 100%;
  opacity: 1;
  vertical-align: middle;
  background: url(../images/arow-next.png) no-repeat;
}

@media (max-width: 1440px) {
  .testimonials-section .slick-prev {
    left: 27%;
  }
  .testimonials-section .slick-next {
    right: 27%;
  }
}
@media (max-width: 1280px) {
  .testimonials-section .slider .slide .slide-columns {
    min-height: 368px;
  }
}
@media (max-width: 1024px) {
  .testimonials-section .slider .slide .slide-columns {
    min-height: 397px;
  }
  .testimonials-section .slick-prev {
    left: 24%;
  }
  .testimonials-section .slick-next {
    right: 24%;
  }
}
@media (max-width: 979px) {
  .testimonials-section .slick-prev {
    left: 12%;
  }
  .testimonials-section .slick-next {
    right: 12%;
  }
}
@media (max-width: 767px) {
  .testimonials-section .slider {
    margin: 40px auto 0;
  }
  .testimonials-section .slider .slide .slide-columns {
    min-height: initial;
  }
  .testimonials-section .slider .slide .desc {
    padding: 30px 25px 0;
  }
  .testimonials-section .slider .slide .desc img {
    margin: 0 0 15px;
  }
  .testimonials-section .slider .slide .play-button {
    width: 80px;
    height: 80px;
  }
  .testimonials-section .slider .slide .play-button img {
    width: 50px;
    height: 50px;
  }
  .testimonials-section .slider .slide .detail-sec {
    padding: 25px 25px;
  }
  .testimonials-section .slider .slide .detail-sec .dis-flex .ritsc {
    width: 100%;
    margin: 20px 0 0;
  }
  .testimonials-section .slider .slide .test-title {
    font-size: 14px;
  }
  .testimonials-section .slick-dots {
    bottom: -50px;
  }
  .testimonials-section .slick-dots li {
    margin: 0 3px;
  }
  .testimonials-section .slick-dots li button {
    width: 40px;
    height: 4px;
  }
  .testimonials-section .slick-prev,
  .testimonials-section .slick-next {
    display: none !important;
  }
  .testimonials-section .slick-prev:before {
    display: none;
  }
  .testimonials-section .slick-next:before {
    display: none;
  }
}
.insights-section .insight-row {
  grid-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}
.insights-section .insight-row .box-3 {
  width: 100%;
  padding: 25px 25px 40px;
  border-radius: 20px;
  border: 1px solid #f0f0f7;
  position: relative;
  display: flex;
  flex-direction: column;
}
.insights-section .insight-row .box-3 .card-image {
  width: 100%;
  overflow: hidden;
  transition: 0.5s ease;
  border-radius: 20px;
}
.insights-section .insight-row .box-3 .card-image img {
  width: 100%;
  border-radius: 20px;
}
.insights-section .insight-row .box-3 .card-image a {
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
}
.insights-section .insight-row .box-3 .card-image a img {
  transition: 0.5s ease;
}
.insights-section .insight-row .box-3 .card-image a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.insights-section .insight-row .box-3 .card-cont {
  padding: 20px 0 0;
}
.insights-section .insight-row .box-3 .card-cont span {
  position: relative;
  padding-left: 12px;
  color: #3f3f3f;
}
.insights-section .insight-row .box-3 .card-cont span:before {
  content: "";
  background: #000;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 8px;
}
.insights-section .insight-row .box-3 .card-cont h3 {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  margin: 15px 0 0;
}
.insights-section .insight-row .box-3 .card-cont h3 a {
  color: #000;
}
.insights-section .insight-row .box-3 .card-cont h3 a:hover {
  text-decoration: underline;
}

@media (max-width: 1280px) {
  .insights-section .insight-row {
    grid-gap: 20px;
  }
  .insights-section .insight-row .box-3 .card-cont h3 {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .insights-section {
    padding: 0;
  }
  .insights-section .insight-row {
    grid-gap: 0;
    grid-template-columns: repeat(1, 1fr);
  }
  .insights-section .insight-row .box-3 {
    width: 100%;
    padding: 20px 20px 30px;
    margin: 0 0 20px;
  }
  .insights-section .insight-row .box-3 .card-cont {
    padding: 15px 0 0;
  }
  .insights-section .insight-row .box-3 .card-cont span:before {
    top: 5px;
  }
  .insights-section .insight-row .box-3 .card-cont h3 {
    font-size: 18px;
    line-height: 30px;
    font-family: sans-serif;
  }
}
.who-we .who-wrap {
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  min-height: 630px;
  border-radius: 20px;
  padding: 100px 40px;
  position: relative;
}
.who-we .who-wrap:after {
  content: "";
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(115, 115, 115) 100%);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.4;
}
.who-we .who-wrap .content-part {
  position: relative;
  z-index: 9;
  width: 55%;
  color: #ffffff;
}
.who-we .who-wrap .content-part h2 {
  color: #ffffff;
}
.who-we .who-wrap .content-part p {
  color: #ffffff;
}
.who-we .who-wrap .content-part ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.who-we .who-wrap .content-part ul li {
  flex-basis: 48%;
  margin: 0 0 15px;
  padding-left: 16px;
  position: relative;
  font-size: 16px;
}
.who-we .who-wrap .content-part ul li:before {
  content: "";
  background: #ffffff;
  width: 9px;
  height: 9px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 5px;
}
.who-we .who-wrap .count-box-outer {
  position: relative;
  z-index: 9;
}
.who-we .who-wrap .count-box-outer .count-box {
  position: relative;
  padding: 10px 0;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}
.who-we .who-wrap .count-box-outer .count-box h2 {
  font-weight: 700;
  font-size: 64px;
  color: #ffffff;
  display: block;
}
.who-we .who-wrap .count-box-outer .count-box p {
  color: #ffffff;
  display: block;
  line-height: initial;
}
.who-we .who-wrap .count-box-outer .count-box:first-child {
  flex-basis: 23%;
  text-align: left;
}
.who-we .who-wrap .count-box-outer .count-box:last-child {
  border-right: 0;
}
.who-we .who-wrap .play-btn {
  position: absolute;
  top: 27%;
  right: 25%;
  z-index: 9;
  transition: 0.4s ease-in-out;
}
.who-we .who-wrap .play-btn a {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.4s ease-in-out;
}
.who-we .who-wrap .play-btn a:hover {
  transition: 0.4s ease-in-out;
  scale: 1.2;
  opacity: 0.8;
}

@media (max-width: 1280px) {
  .who-we .who-wrap {
    padding: 80px 40px;
  }
  .who-we .who-wrap .content-part {
    width: 65%;
  }
  .who-we .who-wrap .count-box-outer .count-box h2 {
    font-size: 50px;
    margin: 0 0 10px;
  }
  .who-we .who-wrap .play-btn {
    right: 10%;
  }
}
@media (max-width: 1024px) {
  .who-we .who-wrap {
    min-height: initial;
    padding: 70px 40px;
  }
  .who-we .who-wrap .content-part {
    width: 80%;
  }
  .who-we .who-wrap .count-box-outer .count-box h2 {
    font-size: 45px;
  }
}
@media (max-width: 979px) {
  .who-we .who-wrap {
    min-height: initial;
    padding: 50px 20px;
  }
  .who-we .who-wrap .content-part {
    width: 100%;
  }
  .who-we .who-wrap .count-box-outer .count-box:first-child {
    flex-basis: 25%;
  }
  .who-we .who-wrap .count-box-outer .count-box h2 {
    font-size: 40px;
  }
  .who-we .who-wrap .play-btn {
    right: 5%;
    top: 10%;
  }
}
@media (max-width: 767px) {
  .who-we .who-wrap {
    min-height: initial;
    padding: 40px 20px;
  }
  .who-we .who-wrap .content-part {
    width: 100%;
  }
  .who-we .who-wrap .content-part ul {
    margin: 10px 0 0;
  }
  .who-we .who-wrap .content-part ul li {
    flex-basis: 100%;
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 24px;
  }
  .who-we .who-wrap .count-box-outer {
    margin-top: 30px;
  }
  .who-we .who-wrap .count-box-outer .count-box {
    flex-basis: 50%;
    margin: 0 0 15px;
    padding: 0 3px;
  }
  .who-we .who-wrap .count-box-outer .count-box:first-child {
    flex-basis: 50%;
    text-align: center;
  }
  .who-we .who-wrap .count-box-outer .count-box:nth-child(2n) {
    border: 0;
  }
  .who-we .who-wrap .count-box-outer .count-box h2 {
    font-size: 32px;
    margin: 0 0 5px;
  }
  .who-we .who-wrap .count-box-outer .count-box p {
    font-size: 15px;
  }
  .who-we .who-wrap .play-btn {
    right: 0;
    top: 30px;
  }
  .who-we .who-wrap .play-btn img {
    width: 80%;
  }
}
.brand-tabs .tab-nav {
  display: flex;
  justify-content: space-between;
  border: 1px solid rgba(63, 63, 63, 0.1);
  background: rgba(63, 63, 63, 0.02);
  width: 790px;
  margin: 0 auto 50px;
  border-radius: 50px;
  gap: 10px;
}
.brand-tabs .tab-nav .tab-link {
  display: block;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  color: #000;
  padding: 14px 30px;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.brand-tabs .tab-nav .tab-link a {
  display: flex;
  align-items: center;
}
.brand-tabs .tab-nav .tab-link img {
  display: inline-block;
  margin-right: 5px;
}
.brand-tabs .tab-nav .tab-link:hover {
  border: 1px solid rgba(63, 63, 63, 0.1);
  background: #fff;
  border-radius: 30px;
  font-weight: 700;
}
.brand-tabs .tab-nav .tab-link.is-active {
  border: 1px solid rgba(63, 63, 63, 0.1);
  border-radius: 30px;
  background: #fff;
  font-weight: 700;
}
.brand-tabs .tab-row {
  flex-basis: 100%;
}
.brand-tabs .tab-row .tab-content {
  display: none;
}
.brand-tabs .tab-row .tab-content .tab-left {
  flex-basis: 50%;
  padding: 58px 50px;
  position: relative;
  background: #4231AC;
  border-radius: 30px 0 0 30px;
  color: #ffffff;
  overflow: hidden;
}
.brand-tabs .tab-row .tab-content .tab-left h5 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
}
.brand-tabs .tab-row .tab-content .tab-left p {
  color: #ffffff;
  opacity: 0.9;
}
.brand-tabs .tab-row .tab-content .tab-left ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.brand-tabs .tab-row .tab-content .tab-left ul li {
  flex-basis: 48%;
  margin: 0 0 15px;
  padding-left: 16px;
  position: relative;
  line-height: 26px;
  opacity: 0.9;
}
.brand-tabs .tab-row .tab-content .tab-left ul li:before {
  content: "";
  background: #ffffff;
  width: 9px;
  height: 9px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 7px;
}
.brand-tabs .tab-row .tab-content .tab-left .partwrap {
  width: 100%;
  margin: 30px 0 0;
  position: relative;
  display: flex;
  gap: 10px;
  max-width: 100%;
}
.brand-tabs .tab-row .tab-content .tab-left .partwrap .part-col {
  flex-basis: 25%;
  text-align: center;
  padding: 15px 5px;
  border-radius: 9px;
  border: 1px solid #4F3FB6;
  background: #3B28AA;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.brand-tabs .tab-row .tab-content .tab-left .partwrap .part-col .part-logo {
  width: 93px;
  height: 32px;
  display: block;
  position: relative;
  margin: 0 auto;
  background-position: center;
}
.brand-tabs .tab-row .tab-content .tab-left .partwrap .part-col .part-logo.part-logo1 {
  background: url(../images/hicon-01.svg) no-repeat;
}
.brand-tabs .tab-row .tab-content .tab-left .partwrap .part-col .part-logo.part-logo2 {
  background: url(../images/hicon-02.svg) no-repeat;
}
.brand-tabs .tab-row .tab-content .tab-left .partwrap .part-col .part-logo.part-logo3 {
  background: url(../images/hicon-03.svg) no-repeat;
}
.brand-tabs .tab-row .tab-content .tab-left .partwrap .part-col .part-logo.part-logo4 {
  background: url(../images/hicon-04.svg) no-repeat;
  width: 78px;
}
.brand-tabs .tab-row .tab-content .tab-left .partwrap .part-col p {
  font-size: 12px;
  color: #867CCA;
  margin: 0 0 5px;
  font-weight: 600;
  line-height: 1;
}
.brand-tabs .tab-row .tab-content .tab-left .partwrap .part-col .star-icon {
  display: block;
  line-height: 8px;
}
.brand-tabs .tab-row .tab-content .tab-left:before {
  content: "";
  content: "";
  position: absolute;
  left: 0;
  bottom: -48px;
  background: url(../images/shape-line01.png) no-repeat;
  width: 200px;
  height: 200px;
  background-size: 100%;
}
.brand-tabs .tab-row .tab-content .tab-left:after {
  content: "";
  content: "";
  position: absolute;
  right: -269px;
  bottom: -192px;
  background: url(../images/shape-line02.png) no-repeat;
  width: 380px;
  height: 389px;
  background-size: 100%;
}
.brand-tabs .tab-row .tab-content .tab-left .btn-white {
  position: relative;
  z-index: 99;
}
.brand-tabs .tab-row .tab-content .tab-left .btn-white:hover {
  background: #ffffff;
  color: #000;
}
.brand-tabs .tab-row .tab-content .tab-left .btn-white:hover:after {
  background: url(../images/btn-arrow.svg) no-repeat;
}
.brand-tabs .tab-row .tab-content .tab-right {
  flex-basis: 50%;
  background: #efecff;
  border-radius: 0 30px 30px 0;
  position: relative;
  z-index: 99;
}
.brand-tabs .tab-row .tab-content .tab-right .brand-videos {
  flex-basis: 100%;
  position: relative;
}
.brand-tabs .tab-row .tab-content .tab-right .brand-videos .brand-video-box {
  position: relative;
}
.brand-tabs .tab-row .tab-content .tab-right .brand-videos iframe {
  vertical-align: bottom;
  background-color: #656565;
  width: 100%;
  border: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  border-radius: 0 30px 30px 0;
}
.brand-tabs .tab-row .tab-content .tab-right .brand-videos .frame-mask {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}
.brand-tabs .tab-row .tab-content .tab-right .brand-videos .frame-mask img {
  display: block;
}
.brand-tabs .tab-row .tab-content .tab-right .brand-videos .frame-mask .playBtn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  z-index: 9;
  height: 100%;
  cursor: pointer;
}
.brand-tabs .tab-row .tab-content .tab-right .brand-videos .frame-mask .playsc {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 0 auto;
  transition: 0.4s ease-in-out;
}
.brand-tabs .tab-row .tab-content .tab-right .brand-videos .frame-mask .playsc::before {
  content: "";
  position: absolute;
  top: -11px;
  left: -10px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(204, 204, 204, 0.33);
  transition: 0.4s ease-in-out;
}
.brand-tabs .tab-row .tab-content .tab-right .brand-videos .frame-mask .playsc .playicon {
  width: 100%;
  height: 100%;
  background: url(../images/playbtn-ws.png) center center/contain no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 1;
  transition: 0.4s ease-in-out;
}
.brand-tabs .tab-row .tab-content .tab-right .brand-videos .frame-mask .playsc:hover .playicon {
  top: 10px;
  transition: 0.4s ease-in-out;
}
.brand-tabs .tab-row .tab-content .tab-right .brand-videos .frame-mask .playsc:hover:before {
  width: 85px;
  height: 85px;
  left: -13px;
  top: -5px;
  transition: 0.4s ease-in-out;
}
.brand-tabs .tab-row .tab-content.is-active {
  display: flex;
  justify-content: space-between;
  border-radius: 30px;
}
.brand-tabs .tab-row .tab-content:nth-child(2) .tab-right {
  background: #efecff;
}
.brand-tabs .tab-row .tab-content:nth-child(3) .tab-right {
  background: #fff3eb;
}
.brand-tabs .tab-row .tab-content:nth-child(4) .tab-right {
  background: #fffbf2;
}
.brand-tabs .tab-row .tab-content:nth-child(2) .tab-left {
  background: linear-gradient(270deg, #0B147C 21.77%, #4B1BAC 100%);
}
.brand-tabs .tab-row .tab-content:nth-child(2) .tab-left .partwrap .part-col {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}
.brand-tabs .tab-row .tab-content:nth-child(2) .tab-right .brand-videos .frame-mask .playsc::before {
  content: "";
  background: rgba(0, 120, 255, 0.29);
}
.brand-tabs .tab-row .tab-content:nth-child(2) .tab-right .brand-videos .frame-mask .playsc .playicon {
  background: url(../images/playbtn-px.png) center center/contain no-repeat;
}
.brand-tabs .tab-row .tab-content:nth-child(3) .tab-left {
  background: #05164D;
}
.brand-tabs .tab-row .tab-content:nth-child(3) .tab-left:before {
  opacity: 0.2;
}
.brand-tabs .tab-row .tab-content:nth-child(3) .tab-left:after {
  opacity: 0.2;
}
.brand-tabs .tab-row .tab-content:nth-child(3) .tab-left .partwrap .part-col {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}
.brand-tabs .tab-row .tab-content:nth-child(3) .tab-right .brand-videos .frame-mask .playsc::before {
  background: rgba(254, 144, 66, 0.26);
}
.brand-tabs .tab-row .tab-content:nth-child(3) .tab-right .brand-videos .frame-mask .playsc .playicon {
  background: url(../images/play-buttoninv.png) center center/contain no-repeat;
}
.brand-tabs .tab-row .tab-content:nth-child(4) .tab-left {
  background: #05164D;
}
.brand-tabs .tab-row .tab-content:nth-child(4) .tab-left:before {
  opacity: 0.2;
}
.brand-tabs .tab-row .tab-content:nth-child(4) .tab-left:after {
  opacity: 0.2;
}
.brand-tabs .tab-row .tab-content:nth-child(4) .tab-left .partwrap .part-col {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}
.brand-tabs .tab-row .tab-content:nth-child(4) .tab-right .brand-videos .frame-mask .playsc::before {
  background: rgba(255, 173, 0, 0.29);
}
.brand-tabs .tab-row .tab-content:nth-child(4) .tab-right .brand-videos .frame-mask .playsc .playicon {
  background: url(../images/playbtn-vc.png) center center/contain no-repeat;
}

@media (max-width: 991px) {
  .brand-tabs .tab-nav .tab-link {
    font-size: 18px;
    padding: 14px 20px;
  }
  .brand-tabs .tab-row {
    flex-basis: 100%;
  }
  .brand-tabs .tab-row .tab-content {
    display: none;
  }
  .brand-tabs .tab-row .tab-content .tab-left {
    flex-basis: 100%;
    padding: 30px 20px;
    border-radius: 30px 30px 0 0;
  }
  .brand-tabs .tab-row .tab-content .tab-left h5 {
    font-size: 28px;
  }
  .brand-tabs .tab-row .tab-content .tab-left ul li {
    flex-basis: 48%;
    margin: 0 0 15px;
    padding-left: 16px;
    position: relative;
    line-height: 26px;
    opacity: 0.9;
  }
  .brand-tabs .tab-row .tab-content .tab-left ul li:before {
    content: "";
    background: #ffffff;
    width: 9px;
    height: 9px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 7px;
  }
  .brand-tabs .tab-row .tab-content .tab-left .partwrap {
    margin: 20px 0 0;
  }
  .brand-tabs .tab-row .tab-content .tab-left .partwrap .part-col {
    padding: 10px 5px;
  }
  .brand-tabs .tab-row .tab-content .tab-left:before {
    display: none;
  }
  .brand-tabs .tab-row .tab-content .tab-left:after {
    display: none;
  }
  .brand-tabs .tab-row .tab-content .tab-right {
    flex-basis: 100%;
    background: #efecff;
    border-radius: 0 0 30px 30px;
  }
  .brand-tabs .tab-row .tab-content.is-active {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .brand-tabs {
    padding-top: 0;
  }
  .brand-tabs .tab-nav {
    width: 100%;
    margin: 0 auto 30px;
    border-radius: 50px;
    gap: 2px;
  }
  .brand-tabs .tab-nav .tab-link {
    padding: 5px 30px;
    font-size: 0;
  }
  .brand-tabs .tab-row {
    flex-basis: 100%;
  }
  .brand-tabs .tab-row .tab-content {
    display: none;
    flex-wrap: wrap;
  }
  .brand-tabs .tab-row .tab-content .tab-left {
    flex-basis: 100%;
    padding: 30px 20px;
    border-radius: 30px 30px 0 0;
  }
  .brand-tabs .tab-row .tab-content .tab-left h5 {
    font-size: 28px;
  }
  .brand-tabs .tab-row .tab-content .tab-left ul li {
    flex-basis: 100%;
    margin: 0 0 12px;
    padding-left: 16px;
    line-height: 24px;
  }
  .brand-tabs .tab-row .tab-content .tab-left ul li:before {
    width: 8px;
    height: 8px;
    top: 7px;
  }
  .brand-tabs .tab-row .tab-content .tab-left .partwrap {
    margin: 20px 0 0;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .brand-tabs .tab-row .tab-content .tab-left .partwrap .part-col {
    flex-basis: 48%;
    padding: 10px 5px;
  }
  .brand-tabs .tab-row .tab-content .tab-left .btn-div {
    text-align: center;
  }
  .brand-tabs .tab-row .tab-content .tab-right {
    flex-basis: 100%;
    background: #efecff;
    border-radius: 0 0 30px 30px;
  }
}
.video-popup {
  width: 100%;
}
.video-popup .popup-wrapper {
  z-index: 999;
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.6);
}
.video-popup .popWrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-popup .popup-content {
  background-color: #000;
  height: initial;
  width: 60%;
  height: 500px;
  border-radius: 5px;
  position: relative;
}
.video-popup .popup-content .closeicon {
  background: url("../images/cross-black.png") no-repeat;
  background-size: 100%;
  width: 20px;
  height: 21px;
  float: right;
  z-index: 1;
  position: absolute;
  right: -36px;
  top: 0;
  cursor: pointer;
}
.video-popup .popup-content .closeicon:hover {
  opacity: 0.8;
}
.video-popup .popup-content .video-src iframe {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
}

@media (max-width: 1440px) {
  .video-popup .popup-content {
    height: 450px;
  }
}
@media (max-width: 1280px) {
  .video-popup .popup-content {
    height: 400px;
  }
}
@media (max-width: 979px) {
  .video-popup .popup-content {
    height: 350px;
    width: 80%;
  }
}
@media (max-width: 767px) {
  .video-popup .popup-content {
    width: 95%;
  }
  .video-popup .popup-content .closeicon {
    right: 5px;
    top: -20px;
    width: 16px;
    height: 17px;
  }
}
.hero-section {
  position: relative;
}
.hero-section .slider .slide {
  width: 100%;
  padding: 110px 0 80px;
  background-size: cover;
  align-items: center;
  position: relative;
  display: flex !important;
  background-repeat: no-repeat;
  background-color: rgba(4, 12, 23, 0.7);
  min-height: 100vh;
}
.hero-section .slider .slide:before {
  content: "";
  background: rgba(4, 12, 23, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-section .left-box {
  flex-basis: 100%;
  position: relative;
}
.hero-section .left-box p {
  font-size: 20px;
  color: #ffffff;
}
.hero-section .left-box a {
  color: #ffffff;
}
.hero-section .left-box .for-client-logo-box {
  margin-top: 40px;
}
.hero-section .left-box .for-client-logo-box .logo-box img {
  margin-right: 15px;
}
.hero-section .slide-otwrap {
  position: relative;
}
.hero-section .custom-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 60px;
}
.hero-section .custom-dots .dot {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0 20px 0 0;
  padding: 0;
  cursor: pointer;
}
.hero-section .custom-dots .dot .button-custom-dot {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  transition: all 0.5s ease;
  padding: 10px;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  position: relative;
  width: auto;
  height: auto;
  background: 0 0;
  border-radius: 0;
  display: inline-block;
  cursor: pointer;
}
.hero-section .custom-dots .dot .button-custom-dot:before {
  content: "";
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  opacity: 0;
  display: block;
  top: auto;
}
.hero-section .custom-dots .dot .button-custom-dot:after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  bottom: 0;
  height: 2px;
  background: #fff;
  border-radius: 5px;
}
.hero-section .custom-dots .dot.active {
  background-color: transparent;
  color: #ffffff;
}
.hero-section .custom-dots .dot.active .button-custom-dot {
  color: #ffffff;
}
.hero-section .custom-dots .dot.active .button-custom-dot:before {
  opacity: 1;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
}
.hero-section .custom-dots .dot.active .button-custom-dot:after {
  background: #ffffff;
  width: 100%;
  -webkit-transition: width 7s ease;
  -o-transition: width 7s ease;
  transition: width 7s ease;
}
.hero-section .play-pause {
  position: absolute;
  z-index: 1;
  left: 70%;
  bottom: 60px;
}
.hero-section .play-pause button {
  width: 39px;
  height: 42px;
  border-radius: 10px;
  background: 0 0;
  position: relative;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  font-size: 0;
  font-weight: 700;
  color: #ffffff;
  display: none;
  cursor: pointer;
}
.hero-section .play-pause button:focus {
  display: none;
}
.hero-section .play-pause button.active {
  display: inline-block;
}
.hero-section .play-pause button:hover {
  width: 88px;
  font-size: 16px;
}
.hero-section .play-pause button:hover .btnspc img {
  margin-right: 10px;
}
.hero-section .play-pause button .btnspc {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section .play-pause button .btnspc img {
  vertical-align: middle;
  height: 13px;
  width: 11px;
}
.hero-section .play-pause button:focus .icon-pause,
.hero-section .play-pause .play-pause button:hover .icon-pause {
  opacity: 1;
}
.hero-section .scroll-next {
  width: 36px;
  height: 54px;
  border: 5px solid #bacaf3;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 15px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  position: absolute;
  bottom: 60px;
  right: 100px;
}
.hero-section .scroll-next .scroll-downicon {
  background: url(../images/scroll-arrow.svg) no-repeat;
  width: 21px;
  height: 22px;
  display: inline-block;
  position: absolute;
  bottom: -35px;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-size: 0;
}
.hero-section .scroll-next:after {
  content: "";
  background: #bacaf3;
  width: 4px;
  height: 15px;
  border-radius: 10px;
  display: inline-block;
  position: absolute;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  animation: up-down 1s ease-in-out infinite alternate-reverse both;
}
.hero-section .scroll-next:hover .scroll-downicon {
  bottom: -26px;
}
.hero-section .slick-next {
  right: 0 !important;
  display: none;
}
.hero-section .slick-prev,
.hero-section .slick-next {
  display: none !important;
}

.awards-section .award-wrap .clutch-rate {
  background: #f8f8fb;
  border-radius: 30px;
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.awards-section .award-wrap .clutch-rate h5 {
  font-weight: 700;
  font-size: 20px;
}
.awards-section .award-wrap .clutch-rate .clrate {
  display: flex;
  align-items: center;
  margin: 20px 0 0;
  font-size: 40px;
  font-weight: 700;
}
.awards-section .award-row .award-col {
  padding: 0 10px;
  flex-basis: 16.66%;
}
.awards-section .award-row .award-col .awrd-outer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.awards-section .award-row .award-col .awrd-outer .box {
  width: 100%;
  background: #F8F8FB;
  padding: 18px 25px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.awards-section .award-row .award-col .awrd-outer p {
  width: 90%;
  font-size: 16px;
  text-align: center;
  line-height: 26px;
  margin: 10px 0 0;
}

@keyframes up-down {
  0% {
    -webkit-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@media (max-width: 1440px) {
  .hero-section .play-pause {
    left: 76%;
  }
}
@media (max-width: 1280px) {
  .hero-section .left-box .for-client-logo-box {
    margin-top: 30px;
  }
  .hero-section .left-box .for-client-logo-box .logo-box {
    width: 10%;
    margin-right: 15px;
  }
  .hero-section .slider .slide {
    padding: 100px 0 80px;
  }
  .hero-section .custom-dots {
    bottom: 30px;
  }
  .hero-section .custom-dots .dot .button-custom-dot {
    font-size: 15px;
    padding: 5px;
  }
  .hero-section .play-pause {
    left: 75%;
    bottom: 28px;
  }
  .hero-section .play-pause button {
    width: 41px;
    height: 37px;
  }
  .hero-section .play-pause button:hover {
    font-size: 15px;
  }
  .hero-section .play-pause button:hover .btnspc {
    margin-right: 6px;
  }
}
@media (max-width: 1024px) {
  .hero-section .slider .slide {
    padding: 100px 0;
    min-height: 550px;
  }
  .hero-section .custom-dots .dot {
    margin: 0 8px 0 0;
  }
  .hero-section .custom-dots .dot .button-custom-dot {
    font-size: 13px;
  }
  .hero-section .scroll-next {
    bottom: 200px;
  }
}
@media (max-width: 979px) {
  .hero-section .slider .slide {
    padding: 150px 0;
    min-height: initial;
  }
  .hero-section .left-box {
    flex-basis: 100%;
  }
  .hero-section .custom-dots {
    bottom: 50px;
  }
  .hero-section .custom-dots .dot {
    margin: 0 8px 0 0;
  }
  .hero-section .custom-dots .dot .button-custom-dot {
    font-size: 13px;
    padding: 2px;
  }
  .hero-section .play-pause {
    bottom: 45px;
    left: 89%;
  }
  .hero-section .scroll-next {
    bottom: 150px;
    right: 30px;
    width: 28px;
    height: 46px;
    border: 3px solid #bacaf3;
  }
  .awards-section .award-wrap .clutch-rate {
    padding: 20px 25px;
    display: flex;
  }
  .awards-section .award-wrap .clutch-rate h5 {
    font-size: 18px;
  }
  .awards-section .award-wrap .clutch-rate .clrate {
    font-size: 35px;
  }
  .awards-section .award-row .award-col {
    padding: 0 5px;
  }
  .awards-section .award-row .award-col .awrd-outer .box {
    padding: 14px 15px;
    min-height: 150px;
  }
  .awards-section .award-row .award-col .awrd-outer p {
    line-height: 22px;
    width: 95%;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .hero-section .slider .slide {
    padding: 120px 0;
  }
  .hero-section .left-box {
    text-align: center;
  }
  .hero-section .left-box p {
    font-size: 18px;
    line-height: 28px;
  }
  .hero-section .left-box .for-client-logo-box {
    justify-content: center;
  }
  .hero-section .left-box .for-client-logo-box .logo-box {
    width: 31%;
    margin: 0 1% 7px;
  }
  .hero-section .slide-otwrap {
    width: 100%;
    padding: 0 20px;
  }
  .hero-section .custom-dots {
    width: 100%;
    left: -73px;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }
  .hero-section .custom-dots .dot {
    margin: 0 8px 0 0;
  }
  .hero-section .custom-dots .dot .button-custom-dot {
    font-size: 0;
    padding: 0;
    width: 40px;
    height: 5px;
    border-radius: 10px;
    background: #f0f0f7;
  }
  .hero-section .custom-dots .dot .button-custom-dot:before {
    display: none;
  }
  .hero-section .custom-dots .dot .button-custom-dot:after {
    display: none;
  }
  .hero-section .custom-dots .dot.active .button-custom-dot {
    background: #ffb10b;
    background-color: #ffb10b;
  }
  .hero-section .play-pause {
    left: 75%;
  }
  .hero-section .scroll-next {
    display: none;
  }
  .awards-section .award-wrap .heading {
    text-align: center;
  }
  .awards-section .award-wrap .clutch-rate {
    margin: 30px 0 0;
  }
  .awards-section .award-wrap .clutch-rate .clrate {
    font-size: 30px;
  }
  .awards-section .award-wrap .clutch-rate .clrate img {
    width: 80%;
  }
  .awards-section .award-row .award-col {
    padding: 0 5px;
    flex-basis: 33.33%;
    margin: 0 0 25px;
  }
  .awards-section .award-row .award-col .awrd-outer .box {
    min-height: 120px;
  }
  .awards-section .award-row .award-col .awrd-outer p {
    line-height: 20px;
    width: 95%;
    font-size: 13px;
  }
}

/*# sourceMappingURL=index.css.map */
