@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,200;9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800;9..40,900;9..40,1000&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul, ol {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-size: 16px;
  font-family: var(--ff-primary);
}

p {
  position: relative;
  font-size: 18px;
  line-height: 1.5;
  font-size: 500;
}

#main {
  position: relative;
  overflow: hidden;
}
#main.marginTop {
  margin-top: 76px;
}

:root {
  --clr-primary-500: #61359E;
  --clr-primary-600: #55308a;
  --clr-neutral-900: #111111;
  --clr-neutral-800: #414142;
  --clr-neutral-600: #6D6F71;
  --clr-neutral-400: #BCBEC0;
  --clr-neutral-200: #E7E8E9;
  --clr-neutral-150: #F3F3F3;
  --clr-neutral-100: hsl(0 0% 100%);
  --ff-primary:"DM Sans", sans-serif;
  --ff-body: var(--ff-primary);
  --ff-heading: var(--ff-primary);
  --fw-regular: 400;
  --fw-semi-bold: 500;
  --fw-semi-bold-600: 600;
  --fw-bold: 700;
  --fs-200: 0.75rem;
  --fs-300: 0.8125rem;
  --fs-350: 0.85rem;
  --fs-400: 0.875rem;
  --fs-500: 0.9375rem;
  --fs-600: 1.1rem;
  --fs-650: 1.3rem;
  --fs-700: 1.875rem;
  --fs-800: 2.5rem;
  --fs-900: 3.5rem;
  --fs-body: var(--fs-400);
  --fs-primary-heading: var(--fs-700);
  --fs-secondary-heading: var(--fs-600);
  --fs-nav: var(--fs-500);
  --fs-button: var(--fs-300);
  --size-100: 0.25rem;
  --size-200: 0.5rem;
  --size-300: 0.75rem;
  --size-400: 1rem;
  --size-500: 1.5rem;
  --size-600: 2rem;
  --size-700: 3rem;
  --size-800: 4rem;
  --size-900: 5rem;
  --size-1000: 7rem;
}

.vertical-align-center {
  align-items: center;
}

.vertical-align-top {
  align-items: flex-start;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-spacebetween {
  justify-content: space-between;
}

.justify-self-end {
  justify-self: end;
}

@media (min-width: 50em) {
  .justify-self-end-md {
    justify-self: end;
  }
}
:where(.flow :not(:first-child)) {
  margin-top: var(--flow-spacer, 3em);
}

.text-center {
  text-align: center;
}

.text-center p {
  margin-inline: auto;
}

@media (max-width: 50em) {
  .text-center-sm-only {
    text-align: center;
  }
  .text-center-sm-only p {
    margin-inline: auto;
  }
}
.text-primary-500 {
  color: var(--clr-primary-500);
}

.text-primary-400 {
  color: var(--clr-primary-400);
}

.text-primary-300 {
  color: var(--clr-primary-300);
}

.text-accent-400 {
  color: var(--clr-accent-400);
}

.text-accent-300 {
  color: var(--clr-accent-300);
}

.text-accent-100 {
  color: var(--clr-accent-100);
}

.text-neutral-100 {
  color: var(--clr-neutral-100);
}

.text-neutral-600 {
  color: var(--clr-neutral-600);
}

.text-neutral-800 {
  color: var(--clr-neutral-800);
}

.text-neutral-900 {
  color: var(--clr-neutral-900);
}

.text-green-500 {
  color: var(--clr-green-500);
}

.text-green-200 {
  color: var(--clr-green-200);
}

.bg-primary-500 {
  background-color: var(--clr-primary-500);
}

.bg-neutral-100 {
  background-color: var(--clr-neutral-100);
}

.bg-neutral-150 {
  background-color: var(--clr-neutral-150);
}

.bg-neutral-200 {
  background-color: var(--clr-neutral-200);
}

.bg-neutral-800 {
  background-color: var(--clr-neutral-800);
}

.bg-neutral-900 {
  background-color: var(--clr-neutral-900);
}

.fw-bold {
  font-weight: var(--fw-bold);
}

.fw-semi-bold {
  font-weight: var(--fw-semi-bold);
}

.fw-semi-bold-600 {
  font-weight: var(--fw-semi-bold-600);
}

.fw-regular {
  font-weight: var(--fw-regular);
}

.fs-primary-heading {
  font-size: var(--fs-primary-heading);
  line-height: 1.5;
}

.fs-secondary-heading {
  font-size: var(--fs-secondary-heading);
  line-height: 1.5;
}

.fs-200 {
  font-size: var(--fs-200);
}

.fs-300 {
  font-size: var(--fs-300);
}

.fs-400 {
  font-size: var(--fs-400);
}

.fs-600 {
  font-size: var(--fs-600);
}

.fs-650 {
  font-size: var(--fs-650);
}

.fs-700 {
  font-size: var(--fs-700);
}

.fs-800 {
  font-size: var(--fs-800);
}

.h-100 {
  height: 100vh !important;
}

.text-uppercase {
  text-transform: uppercase;
}

@media (min-width: 50em) {
  .display-md-inline-flex {
    display: inline-flex;
  }
}
.padding-block-1000 {
  padding: var(--size-1000) 0;
}

.padding-block-900 {
  padding: var(--size-900) 0;
}

.padding-block-700 {
  padding: var(--size-700) 0;
}

.padding-block-500 {
  padding: var(--size-500) 0;
}

.padding-block-300 {
  padding: var(--size-300) 0;
}

.padding-block-200 {
  padding: var(--size-200) 0;
}

.padding-500 {
  padding: var(--size-500);
}

.padding-300 {
  padding: var(--size-500);
}

.padding-side-300 {
  padding: 0 var(--size-500);
}

.padding-top-900 {
  padding-top: var(--size-900);
}

.padding-top-400 {
  padding-top: var(--size-400);
}

.padding-top-0 {
  padding-top: 0 !important;
}

.margin-top-auto {
  margin-top: auto !important;
}

.margin-top-100 {
  margin-top: var(--size-100) !important;
}

.margin-top-200 {
  margin-top: var(--size-200) !important;
}

.margin-top-300 {
  margin-top: var(--size-300) !important;
}

.margin-top-400 {
  margin-top: var(--size-400) !important;
}

.margin-top-500 {
  margin-top: var(--size-500) !important;
}

.margin-top-900 {
  margin-top: var(--size-900) !important;
}

.margin-top-800 {
  margin-top: var(--size-800) !important;
}

.margin-top-700 {
  margin-top: var(--size-700);
}

.margin-top-600 {
  margin-top: var(--size-600);
}

.margin-top-500 {
  margin-top: var(--size-500);
}

.margin-top-300 {
  margin-top: var(--size-300);
}

.margin-top-0 {
  margin-top: 0 !important;
}

.margin-top-auto {
  margin-top: auto !important;
}

.margin-bottom-700 {
  margin-bottom: var(--size-700);
}

.margin-bottom-900 {
  margin-bottom: var(--size-900);
}

.container {
  max-width: 1240px !important;
}

.heading1 {
  position: relative;
  color: var(--clr-neutral-900);
}
.heading1 h2 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
}
.heading1 h1 {
  position: relative;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
}

.btn1 {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 8px;
  color: var(--clr-neutral-100);
  background-color: var(--clr-primary-500);
  text-decoration: none;
  gap: 10px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  overflow: hidden;
}
.btn1 span, .btn1 img {
  z-index: 2;
}
.btn1::before {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #000;
  opacity: 0.2;
  z-index: 1;
  transition: all 0.5s;
}
.btn1:hover {
  transform: scale(0.95);
}
.btn1:hover::before {
  width: 140px;
  height: 140px;
}

.btn2 {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 8px;
  color: var(--clr-neutral-100);
  background-color: var(--clr-primary-500);
  text-decoration: none;
  gap: 10px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  overflow: hidden;
}
.btn2 span, .btn2 i {
  z-index: 2;
}
.btn2::before {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #000;
  opacity: 0.2;
  z-index: 1;
  transition: all 0.5s;
}
.btn2:hover {
  transform: scale(0.95);
}
.btn2:hover::before {
  width: 140px;
  height: 140px;
}

.btn3 {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 8px;
  color: var(--clr-neutral-900);
  text-decoration: none;
  gap: 10px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}
.btn3 i {
  position: relative;
  transition: all 0.3s;
}
.btn3:hover i {
  margin-left: 15px;
}

header {
  position: fixed;
  width: 100%;
  z-index: 8;
}
header .topBar {
  position: relative;
  padding: 10px 0;
  height: 41px;
  background-color: var(--clr-primary-500);
}
header .topBar .socialLink {
  position: relative;
  list-style: none;
  display: flex;
  gap: 5px;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 800px) {
  header .topBar .socialLink {
    display: none;
  }
}
header .topBar .socialLink a {
  position: relative;
  display: flex;
  width: 20px;
  height: 20px;
  font-size: 14px;
  text-decoration: none;
  background-color: #FAFCFF;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  color: var(--clr-primary-500);
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s;
}
header .topBar .socialLink a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 120%;
  left: 0;
  top: 100%;
  z-index: -1;
  background-color: var(--clr-accent-300);
  transition: all 0.3s;
}
header .topBar .socialLink a:hover {
  color: var(--clr-neutral-100);
  background: var(--clr-primary-500);
}
header .topBar .socialLink a:hover::before {
  top: 0;
}
header .topBar .contactLink {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  color: var(--clr-neutral-100);
  gap: 5px;
  font-size: 14px;
}
header .innerWrapper {
  position: relative;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}
header .logo {
  display: block;
  width: 150px;
}
@media only screen and (max-width:1200px){
header .logo {
    width: 120px !important;
  }
  }
@media screen and (max-width: 800px) {
  header .logo {
    width: 90px !important;
  }
}
header .logoScroll {
  display: none;
}
header .mainWarpper {
  transition: all 0.3s;
}
header.background .mainWarpper {
  background: #ffffff !important;
  border-bottom: 1px solid var(--clr-neutral-200);
}
header.background .innerWrapper {
  padding: 10px 0;
}
header.background .logoScroll {
  display: block;
  width: 220px;
}
@media screen and (max-width: 800px){
  header.background .logoScroll{
            width: 170px !important;
        }
      }
header.background .logo {
  display: none;
}
header .mainMenu #cssmenu,
header .mainMenu #cssmenu ul,
header .mainMenu #cssmenu ul li,
header .mainMenu #cssmenu ul li a,
header .mainMenu #cssmenu #head-mobile {
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  box-sizing: border-box;
}
header .mainMenu #cssmenu:after,
header .mainMenu #cssmenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
header .mainMenu #cssmenu #head-mobile {
  display: none;
}
header .mainMenu #cssmenu > ul {
  margin: 0;
  padding: 0;
}
header .mainMenu #cssmenu > ul > li {
  float: left;
}
header .mainMenu #cssmenu > ul > li::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--clr-primary-500);
  transition: all 0.3s ease-in-out;
  left: 50%;
}
header .mainMenu #cssmenu > ul > li > a {
  padding: 10px 15px;
  font-size: 15px;
  text-decoration: none;
  color: var(--light);
  font-weight: 500;
}
header .mainMenu #cssmenu > ul > li:hover > a,
header .mainMenu #cssmenu ul li.active a {
  color: var(--clr-neutral-900);
}
header .mainMenu #cssmenu > ul > li:hover,
header .mainMenu #cssmenu ul li.active:hover,
header .mainMenu #cssmenu ul li.active,
header .mainMenu #cssmenu ul li.has-sub.active:hover {
  transition: background 0.3s ease;
}
header .mainMenu #cssmenu > ul > li:hover::after,
header .mainMenu #cssmenu ul li.active:hover::after,
header .mainMenu #cssmenu ul li.active::after,
header .mainMenu #cssmenu ul li.has-sub.active:hover::after {
  width: 100%;
  left: 0;
}
header .mainMenu #cssmenu > ul > li.has-sub > a {
  padding-right: 30px;
}
header .mainMenu #cssmenu > ul > li.has-sub > a:after {
  position: absolute;
  top: 16px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #ddd;
  content: "";
}
header .mainMenu #cssmenu > ul > li.has-sub > a:before {
  position: absolute;
  top: 13px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #ddd;
  content: "";
  transition: all 0.25s ease;
}
header .mainMenu #cssmenu > ul > li.has-sub:hover > a:before {
  top: 17px;
  height: 0;
}
header .mainMenu #cssmenu ul ul {
  position: absolute;
  left: -9999px;
  padding: 0;
}
header .mainMenu #cssmenu ul ul li {
  height: 0;
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  background: var(--clr-neutral-900);
  transition: all 0.25s ease;
}
header .mainMenu #cssmenu li:hover > ul {
  left: auto;
  background: var(--color2);
}
header .mainMenu #cssmenu li:hover > ul > li {
  height: auto;
}
header .mainMenu #cssmenu li:hover > ul > li:hover {
  background: var(--clr-primary-500);
}
header .mainMenu #cssmenu ul ul ul {
  margin-left: 100%;
  top: 0;
}
header .mainMenu #cssmenu ul ul li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 11px 15px;
  width: 220px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  color: white;
  font-weight: 400;
}
header .mainMenu #cssmenu ul ul li:last-child > a,
header .mainMenu #cssmenu ul ul li.last-item > a {
  border-bottom: 0;
}
header .mainMenu #cssmenu ul ul li:hover > a,
header .mainMenu #cssmenu ul ul li a:hover {
  color: #fff;
}
header .mainMenu #cssmenu ul ul li.has-sub > a:after {
  position: absolute;
  top: 16px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #ddd;
  content: "";
}
header .mainMenu #cssmenu ul ul li.has-sub > a:before {
  position: absolute;
  top: 13px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #ddd;
  content: "";
  transition: all 0.25s ease;
}
header .mainMenu #cssmenu ul ul > li.has-sub:hover > a:before {
  top: 17px;
  height: 0;
}
header .mainMenu #cssmenu ul ul li.has-sub:hover,
header .mainMenu #cssmenu ul li.has-sub ul li.has-sub ul li:hover {
  background: var(--clr-primary-500);
}
header .mainMenu #cssmenu ul ul ul li.active a {
  border-left: 1px solid #333;
}
header .mainMenu #cssmenu > ul > li.has-sub > ul > li.active > a,
header .mainMenu #cssmenu > ul ul > li.has-sub > ul > li.active > a {
  border-top: 1px solid #333;
}
@media screen and (max-width: 1000px) {
  header .mainMenu .logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 46px;
    text-align: center;
    padding: 10px 0 0 0;
    float: none;
  }
  header .mainMenu .logo2 {
    display: none;
  }
  header .mainMenu nav {
    width: 100%;
  }
  header .mainMenu #cssmenu {
    width: 100%;
  }
  header .mainMenu #cssmenu ul {
    width: 100vw;
    height: 90vh;
    overflow-y: scroll;
    position: absolute;
    right: -10px;
    top: 70px;
    display: none;
    background-color: #ffffff;
  }
  header .mainMenu #cssmenu ul ul {
    top: 0;
    height: auto !important;
  }
  header .mainMenu #cssmenu ul li {
    width: 100%;
    border-top: 1px solid rgb(184, 184, 184);
  }
  header .mainMenu #cssmenu ul li:hover {
    background: var(--clr-primary-500);
  }
  header .mainMenu #cssmenu ul li:hover a {
    color: #ffffff !important;
  }
  header .mainMenu #cssmenu li:hover > ul {
    left: 0;
  }
  header .mainMenu #cssmenu ul ul li,
  header .mainMenu #cssmenu li:hover > ul > li {
    height: auto;
  }
  header .mainMenu #cssmenu ul li a,
  header .mainMenu #cssmenu ul ul li a {
    width: 100%;
    border-bottom: 0;
  }
  header .mainMenu #cssmenu > ul > li {
    float: none;
  }
  header .mainMenu #cssmenu > ul > li a {
    padding: 16px 20px;
    color: #000;
  }
  header .mainMenu #cssmenu ul ul li a {
    padding-left: 25px;
  }
  header .mainMenu #cssmenu ul ul li {
    background: var(--clr-primary-500);
    border-top: 1px solid rgb(235, 235, 235);
  }
  header .mainMenu #cssmenu ul ul li:hover {
    background: #123D8F !important;
  }
  header .mainMenu #cssmenu ul ul ul li {
    background: #123D8F;
    border-top: 1px solid rgb(235, 235, 235);
  }
  header .mainMenu #cssmenu ul ul ul li a {
    padding-left: 35px;
  }
  header .mainMenu #cssmenu ul ul li a {
    color: #ffffff;
  }
  header .mainMenu #cssmenu ul ul li:hover > a,
  header .mainMenu #cssmenu ul ul li.active > a {
    color: #fff;
  }
  header .mainMenu #cssmenu ul ul,
  header .mainMenu #cssmenu ul ul ul {
    position: relative;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: left;
  }
  header .mainMenu #cssmenu > ul > li.has-sub > a:after,
  header .mainMenu #cssmenu > ul > li.has-sub > a:before,
  header .mainMenu #cssmenu ul ul > li.has-sub > a:after,
  header .mainMenu #cssmenu ul ul > li.has-sub > a:before {
    display: none;
  }
  header .mainMenu #cssmenu #head-mobile {
    display: block;
    padding: 23px;
    color: #ddd;
    font-size: 12px;
    font-weight: 700;
  }
  header .mainMenu .button {
    width: 55px;
    height: 46px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    z-index: 12399994;
  }
  header .mainMenu .button:after {
    position: absolute;
    top: 22px;
    right: 20px;
    display: block;
    height: 8px;
    width: 20px;
    border-top: 2px solid var(--clr-primary-500);
    border-bottom: 2px solid var(--clr-primary-500);
    content: "";
  }
  header .mainMenu .button:before {
    transition: all 0.3s ease;
    position: absolute;
    top: 16px;
    right: 20px;
    display: block;
    height: 2px;
    width: 20px;
    background: var(--clr-primary-500);
    content: "";
  }
  header .mainMenu .button.menu-opened:after {
    transition: all 0.3s ease;
    top: 23px;
    border: 0;
    height: 2px;
    width: 19px;
    background: var(--clr-primary-500);
    transform: rotate(45deg);
  }
  header .mainMenu .button.menu-opened:before {
    top: 23px;
    background: var(--clr-primary-500);
    width: 19px;
    transform: rotate(-45deg);
  }
  header .mainMenu #cssmenu .submenu-button {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid rgb(226, 226, 226);
    height: 46px;
    width: 46px;
    cursor: pointer;
  }
  header .mainMenu #cssmenu .submenu-button.submenu-opened {
    background: var(--clr-primary-500);
  }
  header .mainMenu #cssmenu ul ul .submenu-button {
    height: 34px;
    width: 34px;
  }
  header .mainMenu #cssmenu .submenu-button:after {
    position: absolute;
    top: 22px;
    right: 19px;
    width: 8px;
    height: 2px;
    display: block;
    background: #ddd;
    content: "";
  }
  header .mainMenu #cssmenu ul ul .submenu-button:after {
    top: 15px;
    right: 13px;
  }
  header .mainMenu #cssmenu .submenu-button.submenu-opened:after {
    background: #fff;
  }
  header .mainMenu #cssmenu .submenu-button:before {
    position: absolute;
    top: 19px;
    right: 22px;
    display: block;
    width: 2px;
    height: 8px;
    background: #ddd;
    content: "";
  }
  header .mainMenu #cssmenu ul ul .submenu-button:before {
    top: 12px;
    right: 16px;
  }
  header .mainMenu #cssmenu .submenu-button.submenu-opened:before {
    display: none;
  }
  header .mainMenu #cssmenu ul ul ul li.active a {
    border-left: none;
  }
  header .mainMenu #cssmenu > ul > li.has-sub > ul > li.active > a,
  header .mainMenu #cssmenu > ul ul > li.has-sub > ul > li.active > a {
    border-top: none;
  }
}
header .forMobile {
  display: none !important;
}
@media screen and (max-width: 1000px) {
  header .forMobile {
    display: block !important;
  }
}

.is-nav-dark header {
  background: #ffffff;
}

.banner {
  position: relative;
  width: 100%;
  background: url("../images/banner/vector.jpg");
  background-repeat: no-repeat;
  background-position: center right 15%;
  background-size: auto 100vh;
}
.banner .wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
 /* align-items: flex-end;*/
}
@media screen and (max-width: 800px){
     .banner .wrapper{   background: rgb(255 255 255 / 75%);}
        }
.banner .wrapper .details {
  position: relative;
  padding: 40px 0;
 /* background: rgb(255 255 255 / 75%);*/
}
.banner .wrapper p {
  position: relative;
  color: var(--clr-neutral-900);
  font-size: 16px;
  font-weight: 600;
}
.banner .wrapper h1 {
  position: relative;
  color: var(--clr-primary-600);
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}
.banner .experience {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  bottom:20%;
  left: 50%;
  transform: translate(-50%, -50%);
  background:#fff;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}
.banner .experience .details {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #61359e;
}
.banner .experience .details .num {
  position: relative;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}
.banner .experience .details p {
  position: relative;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #61359e;
}
@media (max-width: 50em) {
  .banner .experience {
    bottom: 40%;
    left: 73%;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

.aboutSection {
  position: relative;
  padding: 30px 0;
  background: var(--clr-primary-600);
}
.aboutSection .photo {
  position: relative;
  overflow: hidden;
}
.aboutSection .mask {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: var(--clr-primary-600);
  transition: all 0.9s 0.1s ease-in-out;
}
.aboutSection .active .mask {
  top: -100%;
}
.aboutSection .active .parallaxImg {
  transform: scale(1) !important;
}
.aboutSection h1 {
  position: relative;
  font-size: 42px;
  text-transform: uppercase;
  color: var(--clr-primary-600);
}
.aboutSection .details {
  padding-left: 0px;
}
@media (max-width: 50em) {
  .aboutSection .details {
    padding: 0;
  }
}
.aboutSection p {
  color: #B9B9B9;
}
.aboutSection a {
  font-weight: 400;
  color: var(--clr-neutral-100);
}

.solutions {
  position: relative;
  padding: 44px 0 120px;
}
.solutions .desc {
  max-width: 550px;
  padding-top: 76px;
}
@media (max-width: 50em) {
  .solutions .desc {
    padding: 0;
  }
}
.solutions .heading1 {
  padding-top: 76px;
}
.solutions .heading1 h1 {
  color: var(--clr-primary-600);
}
.solutions ul {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 60px 0 0 0;
}
.solutions ul li {
  position: relative;
  width: 100%;
}
.solutions ul li::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgb(97,53,158);
  background: linear-gradient(90deg, rgba(97,53,158,1) 0%, rgba(43,16,80,1) 49%);
  transition: all ease 0.6s;
}
.solutions ul li a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--clr-neutral-900);
  text-decoration: none;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--clr-neutral-400);
  transition: all 0.4s;
}
@media (max-width: 50em) {
  .solutions ul li a {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.solutions ul li a .num {
  position: relative;
  font-size: 30px;
  font-weight: 700;
}
.solutions ul li a .title {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  min-width: 250px;
  line-height: 1;
}
.solutions ul li a p {
  margin: 0;
}
.solutions ul li a svg {
  stroke: var(--clr-neutral-900);
  transition: all 0.4s;
}
.solutions ul li:first-child a {
  border-top: 1px solid var(--clr-neutral-400);
}
.solutions ul li:hover::before {
  height: 100%;
}
.solutions ul li:hover a {
  color: var(--clr-neutral-100);
  padding: 32px 20px;
}
.solutions ul li:hover a svg {
  stroke: var(--clr-neutral-100);
  transform: rotate(45deg);
}

.creativeStudio {
  position: relative;
  padding: 70px 0;
  background: #F2F2F2;
}
.creativeStudio .mainhead {
  color: var(--clr-primary-600);
}
.creativeStudio .wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 50em) {
  .creativeStudio .wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.creativeStudio .wrapper .photoWrapper {
  position: relative;
  display: flex;
  width: 50%;
  flex-shrink: 0;
  height: 450px;
  justify-content: flex-end;
}
@media (max-width: 50em) {
  .creativeStudio .wrapper .photoWrapper {
    width: 100%;
    height: auto;
  }
}
.creativeStudio .wrapper .photoWrapper .photo {
  position: absolute;
  min-width: 50vw;
  height: 450px;
  z-index: 2;
}
@media (max-width: 50em) {
  .creativeStudio .wrapper .photoWrapper .photo {
    position: relative;
    width: 100%;
    height: auto;
  }
}
.creativeStudio .wrapper .photoWrapper .photo img {
  min-width: 50vw;
}
.creativeStudio .wrapper .details {
  position: relative;
  width: 100%;
  height: 43vw;
  padding-left: 150px;
  display: flex;
  align-items: center;
}
@media (max-width: 50em) {
  .creativeStudio .wrapper .details {
    width: 100%;
    height: auto;
    padding: 30px;
  }
  .creativeStudio .wrapper .details h1 {
    font-size: 26px !important;
  }
}
.creativeStudio .wrapper .details::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
}
@media (max-width: 50em) {
  .creativeStudio .wrapper .details::before {
    width: 100%;
  }
}
.creativeStudio .insight {
  position: relative;
  padding-top: 70px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 50em) {
  .creativeStudio .insight {
    flex-direction: column;
    gap: 30px;
  }
}
.creativeStudio .insight .wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 50em) {
  .creativeStudio .insight .wrap {
    flex-direction: column;
    gap: 0px;
  }
}
.creativeStudio .insight .wrap .num {
  position: relative;
  font-size: 70px;
  font-weight: 700;
}
.creativeStudio .insight .wrap p {
  position: relative;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 50em) {
  .creativeStudio .insight .wrap {
    flex-direction: column;
    gap: 0px;
  }
  .creativeStudio .insight .wrap p {
    text-align: center;
  }
}

.testimonials {
  position: relative;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 100px 0;
}
.testimonials .carousel-indicators {
  margin-bottom: -50px;
}
.testimonials .carousel-indicators button {
  background-color: var(--clr-primary-500);
}
.testimonials .carousel-control-next-icon {
  background-image: url("../images/icons/arrowRight.svg");
  width: 3rem !important;
  height: 3rem !important;
}
.testimonials .carousel-control-prev-icon {
  background-image: url("../images/icons/arrowLeft.svg");
  width: 3rem !important;
  height: 3rem !important;
}
.testimonials .carousel-control-next, .testimonials .carousel-control-prev {
  color: var(--clr-primary-500);
}
.testimonials h2 {
  position: relative;
  text-align: center;
  font-size: var(--fs-400);
  font-weight: var(--fw-bold);
  color: var(--clr-primary-500);
}
.testimonials .testimialBox {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials .testimialBox p {
  position: relative;
  text-align: center;
  font-size: var(--fs-600);
  font-weight: var(--fw-semi-bold-600);
  max-width: 600px;
}
@media (max-width: 50em) {
  .testimonials .testimialBox p {
    font-size: var(--fs-600);
  }
}
.testimonials .testimialBox .photo {
  position: relative;
  width: 75px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--clr-primary-500);
}
.testimonials .testimialBox h3 {
  position: relative;
  text-align: center;
  font-size: var(--fs-500);
  font-weight: var(--fw-bold);
  margin-top: 20px;
  color: var(--clr-neutral-900);
}
.testimonials .testimialBox h3 span {
  color: var(--clr-neutral-800);
  font-size: var(--fs-400);
  font-weight: var(--fw-semi-bold-600);
}

footer {
  position: relative;
  width: 100%;
}
footer .contact {
  padding: 70px 0;
  width: 100%;
	background: linear-gradient(90deg, rgba(97,53,158,1) 0%, rgba(43,16,80,1) 49%);
  /*background-color: var(--clr-neutral-900);*/
}
footer .contact .top {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--clr-neutral-800);
}
@media (max-width: 50em) {
  footer .contact .top {
    flex-direction: column;
    align-items: flex-start;
  }
}
footer .contact .top h1 {
  color: var(--clr-neutral-100);
}
footer .contact .bottom {
  position: relative;
  padding-top: 30px;
  max-width: 800px;
}
footer .contact .bottom p {
  color: var(--clr-neutral-100);
  margin: 0;
}
footer .copyright {
  position: relative;
  padding: 60px 0;
  background-color: #fff;
}
footer .copyright .wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
footer .copyright .wrapper img {
  max-width: 210px;
}
footer .copyright .wrapper p {
  text-align: center;
  font-size: 14px;
}/*# sourceMappingURL=style.css.map */