@charset "UTF-8";
*,
figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input,
select {
  border: none;
  box-shadow: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 25px;
}
@media screen and (max-width: 1440px) {
  h1, h2, h3, h4, h5, h6, p {
    margin-bottom: 20px;
  }
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus {
  text-decoration: none;
  outline: none;
}

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

html {
  scroll-behavior: smooth;
  font-size: 10px;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 2.4rem;
  color: #2C2C2C;
  line-height: 1.4;
  font-weight: 400;
  overflow-x: hidden;
}
body.hiddenoverflow {
  overflow: hidden;
}
@media screen and (max-width: 1600px) {
  body {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1440px) {
  body {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1199px) {
  body {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}

.container-fluid {
  padding: 0 160px;
}
@media screen and (max-width: 1600px) {
  .container-fluid {
    padding: 0 140px;
  }
}
@media screen and (max-width: 1440px) {
  .container-fluid {
    padding: 0 60px;
  }
}
@media screen and (max-width: 991px) {
  .container-fluid {
    padding: 0 10px;
  }
}

section {
  overflow: hidden;
}
section.cmssection {
  overflow: visible;
}

header {
  padding: 13px 0;
  position: relative;
  z-index: 9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
header .container-fluid {
  padding: 0 32px;
}
@media screen and (max-width: 1440px) {
  header .container-fluid {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  header .container-fluid {
    padding: 0 10px;
  }
}

.headerwraper {
  background: linear-gradient(180deg, rgba(239, 235, 255, 0.6) 0%, rgba(255, 252, 248, 0.8) 100%);
  padding: 12px 25px;
  border: 1px solid #9A9A9A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media screen and (max-width: 1440px) {
  .headerwraper {
    padding: 10px 15px;
  }
}
@media screen and (max-width: 767px) {
  .headerwraper {
    padding: 10px;
  }
}

.brandlogo {
  width: 166px;
  cursor: pointer;
  margin-left: 22px;
}
@media screen and (max-width: 1440px) {
  .brandlogo {
    margin-left: 10px;
    width: 150px;
  }
}
@media screen and (max-width: 1199px) {
  .brandlogo {
    margin-left: 0px;
    width: 130px;
  }
}
@media screen and (max-width: 767px) {
  .brandlogo {
    width: 100px;
  }
}
@media screen and (max-width: 374px) {
  .brandlogo {
    width: 80px;
  }
}
.brandlogo img {
  width: 100%;
}

.openmenu {
  width: 30px;
  height: 26px;
  border-top: 2px solid #D08431;
  border-bottom: 2px solid #D08431;
  position: relative;
  margin-left: 20px;
  cursor: pointer;
  display: none;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 991px) {
  .openmenu {
    display: block;
  }
}
@media screen and (max-width: 374px) {
  .openmenu {
    margin-left: 10px;
  }
}
.openmenu:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  height: 2px;
  width: 100%;
  background: #D08431;
  content: "";
  transition: all 0.2s ease-in-out;
}
.openmenu:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  height: 2px;
  width: 100%;
  background: #D08431;
  content: "";
  transition: all 0.2s ease-in-out;
}
.openmenu.active {
  border-color: transparent;
}
.openmenu.active::before {
  transform: translateY(-50%) rotate(45deg);
}
.openmenu.active::after {
  transform: translateY(-50%) rotate(-45deg);
}

.talkto {
  background: linear-gradient(90deg, #220C7A 0%, #0B0426 100%);
  padding: 13px 30px;
  border-radius: 20px;
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1440px) {
  .talkto {
    font-size: 1.8rem;
    padding: 12px 25px;
  }
}
@media screen and (max-width: 1199px) {
  .talkto {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 991px) {
  .talkto {
    padding: 10px 20px;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .talkto {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 374px) {
  .talkto {
    font-size: 1.4frem;
    padding: 10px;
  }
}
.talkto svg {
  fill: #ffffff;
  margin-right: 15px;
}
@media screen and (max-width: 1199px) {
  .talkto svg {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .talkto svg {
    width: 14px;
  }
}
@media screen and (max-width: 374px) {
  .talkto svg {
    width: 13px;
    margin-right: 5px;
  }
}
.talkto:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #220C7A 0%, #220C7A 100%);
}

.ctabutton {
  background: linear-gradient(90deg, #220C7A 0%, #0B0426 100%);
  padding: 13px 33px 14px;
  border-radius: 10px;
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  min-width: 220px;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .ctabutton {
    font-size: 1.8rem;
    padding: 12px 25px;
  }
}
@media screen and (max-width: 1199px) {
  .ctabutton {
    min-width: 190px;
  }
}
.ctabutton svg {
  fill: #ffffff;
  margin-right: 15px;
}
.ctabutton:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #220C7A 0%, #220C7A 100%);
}

@media screen and (max-width: 991px) {
  .mainmenu {
    position: absolute;
    top: 66px;
    right: 0px;
    display: none;
    width: 400px;
    z-index: 5;
    background: #ffffff;
    border-radius: 15px;
    padding: 0 15px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    overflow-y: scroll;
    height: auto;
    max-height: calc(100vh - 85px);
  }
}
@media screen and (max-width: 499px) {
  .mainmenu {
    width: 300px;
  }
}
@media screen and (max-width: 991px) {
  .mainmenu.opened {
    display: block;
  }
}
.mainmenu ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .mainmenu ul {
    display: block;
  }
}
.mainmenu ul li {
  margin: 0 43px;
}
@media screen and (max-width: 1440px) {
  .mainmenu ul li {
    margin: 0 15px;
  }
}
@media screen and (max-width: 1199px) {
  .mainmenu ul li {
    margin: 0 10px;
  }
}
@media screen and (max-width: 991px) {
  .mainmenu ul li {
    margin: 0;
    border-bottom: 1px solid #eee;
  }
}
.mainmenu ul li a {
  font-size: 20px;
  padding: 7px;
  color: #2C2C2C;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .mainmenu ul li a {
    padding: 7px 4px;
  }
}
@media screen and (max-width: 991px) {
  .mainmenu ul li a {
    padding: 10px 0;
    border: none;
  }
}
.mainmenu ul li a.active, .mainmenu ul li a:hover {
  border-color: #D08431;
}
@media screen and (max-width: 767px) {
  .mainmenu ul li a.active, .mainmenu ul li a:hover {
    background: #D08431;
    color: #ffffff;
  }
}
.mainmenu ul li a svg {
  width: 26px;
  margin-left: 20px;
}
@media screen and (max-width: 1199px) {
  .mainmenu ul li a svg {
    margin-left: 10px;
  }
}
.mainmenu ul li a.hasmenu {
  display: flex;
  align-items: center;
}
.mainmenu ul li a.hasmenu span {
  transform: rotate(90deg);
  padding: 0 10px;
}
.mainmenu ul li a.hasmenu span svg {
  width: 18px;
  margin: 0;
}
.mainmenu ul li .megamenu {
  display: none;
}
.mainmenu ul li .megamenu .container {
  max-width: 1320px;
}
.mainmenu ul li:hover a {
  border-color: #D08431;
}
.mainmenu ul li:hover .megamenu {
  display: block;
}

.megamenu {
  position: absolute;
  left: 0;
  top: 61px;
  width: 100%;
  z-index: 99;
  background: #ffffff;
  border: 1px solid #eee;
  padding: 50px;
  box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
}
@media screen and (max-width: 1199px) {
  .megamenu {
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  .megamenu {
    box-shadow: none;
    border-radius: 0;
    border: none;
    border-top: 1px solid #eee;
    padding-top: 10px;
    padding-left: 15px;
    position: relative;
    top: 0;
    left: 0;
    display: block !important;
  }
}
@media screen and (max-width: 991px) {
  .megamenu .container {
    padding: 0;
  }
}

.megamenulistwrap {
  display: flex;
}
@media screen and (max-width: 991px) {
  .megamenulistwrap {
    display: block;
  }
}
.megamenulistwrap .megalist {
  width: 20%;
  padding: 15px;
}
@media screen and (max-width: 991px) {
  .megamenulistwrap .megalist {
    width: 100%;
    padding: 0;
  }
}
.megamenulistwrap .megalist h3 {
  display: flex;
  padding: 0 0 10px;
  border-bottom: 2px solid #D08431;
}
@media screen and (max-width: 991px) {
  .megamenulistwrap .megalist h3 {
    border-bottom: 1px solid #eee;
    padding: 0 0 10px 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
}
.megamenulistwrap .megalist h3 a {
  color: #D08431;
  font-size: 1.8rem;
  border: none;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .megamenulistwrap .megalist h3 a {
    color: #2C2C2C;
    font-weight: 400;
  }
}
.megamenulistwrap .megalist h3 a:hover {
  text-decoration: underline;
}
.megamenulistwrap .megalist h3 span {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .megamenulistwrap .megalist h3 span {
    display: flex;
  }
}
.megamenulistwrap .megalist h3 span svg {
  width: 20px;
  transform: rotate(90deg);
  transition: all 0.2s ease-in-out;
}
.megamenulistwrap .megalist h3 span.active svg {
  transform: rotate(-90deg);
}
.megamenulistwrap .megalist ul {
  display: block;
}
@media screen and (max-width: 991px) {
  .megamenulistwrap .megalist ul {
    display: none;
    padding-left: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.megamenulistwrap .megalist ul li {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.megamenulistwrap .megalist ul li:last-child {
  border: none;
  margin: 0;
  padding: 0;
}
.megamenulistwrap .megalist ul li a {
  border: none;
  padding: 0;
  font-size: 1.6rem;
}
.megamenulistwrap .megalist ul li a:hover {
  color: #D08431;
  text-decoration: underline;
}
.megamenulistwrap .megalist:last-child h3 {
  margin: 0;
  border: none;
}

@keyframes bstar {
  0% {
    transform: scale(0.2);
  }
  50% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.2);
  }
}
@keyframes bline {
  0% {
    left: 15%;
    width: 0%;
  }
  70% {
    left: -25%;
    width: 310px;
  }
  100% {
    left: -25%;
    width: 310px;
  }
}
@keyframes gline {
  0% {
    left: 5%;
  }
  50% {
    left: 90%;
  }
  100% {
    left: 5%;
  }
}
@keyframes gcercle {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes yetext {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  20% {
    transform: scale(1);
    opacity: 1;
  }
  90% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}
.typing {
  border-right: 1px solid green;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  display: inline-block;
  animation: typing 6s steps(36, end) forwards, blink 0.7s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 36ch;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
.homebanner1 {
  position: relative;
  padding: 106px 0 20px;
  background: linear-gradient(98.19deg, rgba(188, 186, 241, 0.58) 0.46%, rgba(237, 200, 211, 0.5) 99.63%);
}
.homebanner1 figure {
  position: relative;
  padding: 0 15% 4px 25%;
}
.homebanner1 figure img {
  width: 100%;
  border-radius: 20px;
}
.homebanner1 figure .firstimg {
  overflow: hidden;
  display: block;
  position: relative;
}
.homebanner1 figure .bstar {
  position: absolute;
  top: 30%;
  left: 5%;
  z-index: 2;
  animation: linear bstar 5s infinite;
  transform: scale(0.2);
}
.homebanner1 figure .bstar svg {
  width: 50px;
}
.homebanner1 figure .cercle1 {
  position: absolute;
  top: -10%;
  right: -20%;
  width: 55%;
  height: 50%;
  border: 8px solid rgba(255, 255, 255, 0.8);
  z-index: 2;
  border-radius: 50%;
  opacity: 1;
  animation: linear gcercle 5s;
}
.homebanner1 figure .expblock {
  position: absolute;
  top: 5%;
  right: 4px;
  background: radial-gradient(85.68% 274.5% at 94.37% 12.18%, rgba(251, 251, 251, 0.2) 0%, rgba(197, 197, 197, 0.2) 100%);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-radius: 5px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.4);
  width: 27%;
  padding: 15px;
  font-size: 18px;
  color: #2C2C2C;
  text-align: center;
  z-index: 3;
  animation: linear yetext 10s infinite;
}
@media screen and (max-width: 1199px) {
  .homebanner1 figure .expblock {
    padding: 5px;
    font-size: 13px;
  }
}
.homebanner1 figure .expblock strong {
  font-weight: 700;
  font-size: 24px;
  color: #C837AB;
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 1199px) {
  .homebanner1 figure .expblock strong {
    margin-bottom: 0;
  }
}
.homebanner1 figure .bottombox {
  -webkit-backdrop-filter: blur(70px);
          backdrop-filter: blur(70px);
  background: rgba(217, 217, 217, 0.3);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  position: absolute;
  left: 4px;
  bottom: 4px;
  width: calc(85% - 4px);
  padding: 20px;
  text-align: center;
  border-radius: 20px;
  font-size: 20px;
}
@media screen and (max-width: 1440px) {
  .homebanner1 figure .bottombox {
    font-size: 18px;
  }
}
@media screen and (max-width: 1199px) {
  .homebanner1 figure .bottombox {
    padding: 8px 10px 5px;
    width: calc(100% - 4px);
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .homebanner1 figure .bottombox {
    display: none;
  }
}
.homebanner1 figure .greenbox {
  position: absolute;
  width: 35%;
  padding: 30px 10px;
  left: 4px;
  top: 50%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  background: rgba(208, 132, 49, 0.2);
  z-index: 8;
  border-radius: 10px;
  border-top: 8px solid #319F43;
}
@media screen and (max-width: 1199px) {
  .homebanner1 figure .greenbox {
    padding: 20px 10px;
    top: 55%;
  }
}
.homebanner1 figure .greenbox:before {
  position: absolute;
  width: 84%;
  height: 1px;
  left: 7%;
  top: 50%;
  content: "";
  transform: translateY(-50%);
  background: #2C2C2C;
  display: block;
  z-index: 2;
}
.homebanner1 figure .greenbox:after {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background: #2C2C2C;
  display: block;
  z-index: 3;
  animation: linear gline 20s infinite;
}
.homebanner1 figure .bline {
  position: absolute;
  left: 15%;
  bottom: 20%;
  width: 0%;
  height: 76px;
  z-index: 7;
  overflow: hidden;
  animation: linear bline 10s infinite;
}
@media screen and (max-width: 1199px) {
  .homebanner1 figure .bline {
    display: none;
  }
}
.homebanner1 figure .bline svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 310px;
}
@media screen and (max-width: 1199px) {
  .homebanner1 figure .bline svg {
    width: 200px;
  }
}
.homebanner1 figure.animationstart .bline:after {
  left: -100%;
}
@media screen and (max-width: 991px) {
  .homebanner1 .homecaption {
    text-align: center;
    padding: 30px 0 0;
  }
}
.homebanner1 .homecaption h1 {
  font-size: 6rem;
  font-weight: 900;
}
@media screen and (max-width: 1600px) {
  .homebanner1 .homecaption h1 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 1440px) {
  .homebanner1 .homecaption h1 {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 1299px) {
  .homebanner1 .homecaption h1 {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 1199px) {
  .homebanner1 .homecaption h1 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .homebanner1 .homecaption h1 {
    font-size: 2.4rem;
  }
}
.homebanner1 .homecaption h1 span {
  display: inline;
  background: #000000;
  padding: 0 10px;
  border-radius: 10px;
  color: #ffffff;
}
.homebanner1 .homecaption p {
  width: 85%;
  font-size: 2.8rem;
  font-weight: 600;
}
@media screen and (max-width: 1600px) {
  .homebanner1 .homecaption p {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1299px) {
  .homebanner1 .homecaption p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1199px) {
  .homebanner1 .homecaption p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 991px) {
  .homebanner1 .homecaption p {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .homebanner1 .homecaption p {
    font-size: 1.6rem;
  }
}

.aboutsec {
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .aboutsec {
    padding: 60px 0 0;
  }
}
@media screen and (max-width: 991px) {
  .aboutsec {
    padding: 40px 0 0;
  }
}
.aboutsec::after {
  position: absolute;
  width: 70%;
  top: 100px;
  left: 30%;
  height: 100%;
  background: #F7F5FF;
  border-top-left-radius: 40px;
  content: "";
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .aboutsec::after {
    top: 60px;
  }
}
@media screen and (max-width: 991px) {
  .aboutsec::after {
    left: 0;
    top: 0;
    width: 100%;
    border-top-left-radius: 0px;
  }
}
.aboutsec .container-fluid {
  z-index: 2;
  position: relative;
}
.aboutsec .aboutimg {
  width: 96%;
}
@media screen and (max-width: 1440px) {
  .aboutsec .aboutimg {
    width: 100%;
  }
}

.h2-heading {
  font-size: 4.5rem;
  font-weight: 700;
}
@media screen and (max-width: 1440px) {
  .h2-heading {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 1199px) {
  .h2-heading {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .h2-heading {
    font-size: 2.4rem;
  }
}
.h2-heading .heighlight {
  color: #D08431;
  font-size: 3.2rem;
  display: block;
  margin-bottom: 25px;
}
@media screen and (max-width: 1440px) {
  .h2-heading .heighlight {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .h2-heading .heighlight {
    font-size: 2rem;
  }
}

.aboutcontent {
  padding: 50px 0;
}
@media screen and (max-width: 991px) {
  .aboutcontent {
    padding: 40px 0;
  }
}

.countersec {
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .countersec {
    padding: 60px 0;
  }
}
.countersec .counterwraper {
  position: relative;
  z-index: 5;
}
.countersec .bganim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.countersec .bganim canvas {
  width: 100% !important;
  height: 100% !important;
}
.countersec h2 {
  color: #260E89;
}

.impactbox {
  text-align: center;
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .impactbox {
    margin-top: 30px;
  }
}
.impactbox h2 {
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 1199px) {
  .impactbox h2 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .impactbox h2 {
    font-size: 4rem;
  }
}
.impactbox h2.pur {
  color: #C837AB;
}
.impactbox h2.org {
  color: #FF543E;
}
.impactbox h2.grn {
  color: #32A800;
}
.impactbox h2.blu {
  color: #1877F2;
}
.impactbox h2.pnk {
  color: #F98AFF;
}
.impactbox h2.ylo {
  color: #FFB222;
}
.impactbox p {
  font-size: 3.2rem;
}
@media screen and (max-width: 1199px) {
  .impactbox p {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .impactbox p {
    font-size: 1.6rem;
  }
}

.letsknow {
  background: radial-gradient(100% 100% at 100% 0%, #FFEEDB 0%, #F6F4FF 100%);
  padding: 40px 0;
}
.letsknow figure {
  padding: 40px 40px 40px 0;
}

.letsknowlist {
  position: relative;
}
.letsknowlist li {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.letsknowlist li span {
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(221, 221, 221, 0.2) 100%);
  -webkit-backdrop-filter: blur(70px);
          backdrop-filter: blur(70px);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922) inset;
  margin-right: 20px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .letsknowlist li span {
    width: 70px;
    height: 70px;
    min-width: 70px;
  }
}
.letsknowlist li span svg {
  width: 45px;
  fill: #2C2C2C;
}
@media screen and (max-width: 1440px) {
  .letsknowlist li span svg {
    width: 35px;
  }
}
.letsknowlist li:last-child {
  margin: 0;
}
.letsknowlist li:last-child span::after {
  display: none;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 430px;
  perspective: 1000px;
}
@media screen and (max-width: 1440px) {
  .flip-card {
    height: 360px;
  }
}
@media screen and (max-width: 1199px) {
  .flip-card {
    height: 240px;
  }
}
@media screen and (max-width: 991px) {
  .flip-card {
    height: 350px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .flip-card {
    height: 240px;
  }
}
@media screen and (max-width: 499px) {
  .flip-card {
    height: 170px;
  }
}
.flip-card .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.flip-card .flip-card-front {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}
.flip-card .flip-card-front img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.flip-card .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(98.19deg, rgba(166, 163, 235, 0.5803921569) 0.46%, rgba(239, 195, 208, 0.6509803922) 99.63%);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  transform: rotateY(180deg);
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.services {
  padding: 100px 0;
}
@media screen and (max-width: 1440px) {
  .services {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .services {
    padding: 50px 0;
  }
}
.services .service-subheading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .services .service-subheading {
    display: block;
    margin-bottom: 20px;
  }
}
.services .service-subheading p {
  margin: 0;
}
.services .service-subheading a {
  color: #2C2C2C;
}
@media screen and (max-width: 767px) {
  .services .service-subheading a {
    margin-top: 20px;
    display: inline-block;
  }
}
.services .service-subheading a:hover {
  text-decoration: underline;
}

.services-slider {
  position: relative;
}
@media screen and (max-width: 1199px) {
  .services-slider {
    padding: 0 30px;
  }
}
@media screen and (max-width: 991px) {
  .services-slider {
    padding: 0;
  }
}
.services-slider .carousel-control {
  position: absolute;
  top: 50%;
  right: -90px;
  width: 77px;
  height: 77px;
  border: none;
  border-radius: 50%;
  background: #d9d9d9;
  cursor: pointer;
  z-index: 99;
  transform: translateY(-50%);
}
@media screen and (max-width: 1440px) {
  .services-slider .carousel-control {
    width: 50px;
    height: 50px;
    right: -55px;
  }
}
@media screen and (max-width: 1199px) {
  .services-slider .carousel-control {
    right: -40px;
  }
}
@media screen and (max-width: 991px) {
  .services-slider .carousel-control {
    display: none;
  }
}
.services-slider .carousel-control svg {
  width: 10px;
  fill: #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.services-slider .carousel-control.carousel-control-left {
  left: -90px;
}
@media screen and (max-width: 1440px) {
  .services-slider .carousel-control.carousel-control-left {
    left: -55px;
  }
}
@media screen and (max-width: 1199px) {
  .services-slider .carousel-control.carousel-control-left {
    left: -40px;
  }
}

.service-card {
  display: block;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  position: relative;
}
.service-card.servicepage {
  margin-top: 30px;
}
.service-card figure {
  overflow: hidden;
}
.service-card figure img {
  width: 100%;
  transition: all 0.6s ease-in-out;
  transform: scale(1) rotate(0deg);
}
.service-card::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  content: "";
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.service-card .service-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 145px 20px 20px;
  z-index: 3;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.service-card .bottomrightarrow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 142px;
  height: 57px;
  background: url("../images/service-card-bg.png") top left no-repeat;
  background-size: 100%;
  z-index: 5;
}
.service-card .bottomrightarrow svg {
  width: 32px;
  position: absolute;
  bottom: 12px;
  right: 50px;
}
.service-card:hover::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 66.83%);
}
.service-card:hover .bottomrightarrow svg {
  animation: infinite movearrow 1.4s linear;
}
.service-card:hover figure img {
  transform: scale(1.1) rotate(1deg);
}

@keyframes movearrow {
  0% {
    right: 50px;
  }
  25% {
    right: 40px;
  }
  50% {
    right: 50px;
  }
  75% {
    right: 60px;
  }
  100% {
    right: 50px;
  }
}
.hoverImage {
  position: relative;
  align-self: stretch;
  height: 250px;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  max-width: 100%;
}

.tiltimages {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .tiltimages {
    margin-bottom: 30px;
  }
}

.tilt-card {
  width: 100%;
  perspective: 1000px; /* enables 3D effect */
}
.tilt-card .tilt-inner {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease;
  transform-style: preserve-3d;
  background: #fff;
}
.tilt-card .tilt-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.partnersec {
  padding: 50px 0 100px;
}
@media screen and (max-width: 1199px) {
  .partnersec {
    padding: 50px 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .partnersec {
    padding: 0px 0 50px;
  }
}

.partnerswraper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 454px;
  border: 1px dashed #2C2C2C;
  border-radius: 50%/50%;
}
@media screen and (max-width: 1600px) {
  .partnerswraper {
    height: 400px;
  }
}
@media screen and (max-width: 1440px) {
  .partnerswraper {
    height: 350px;
  }
}
@media screen and (max-width: 767px) {
  .partnerswraper {
    flex-wrap: wrap;
    border: none;
    height: auto;
    gap: 15px;
  }
}
.partnerswraper span {
  background: url("../images/p-bg.png") center center no-repeat;
  background-size: 100%;
  width: 500px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .partnerswraper span {
    width: 350px;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .partnerswraper span {
    background: none;
    width: 100%;
    height: auto;
    text-align: center;
  }
}
.partnerswraper .pitems {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 290px;
  height: 90px;
  border-radius: 50%/50%;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
@media screen and (max-width: 1199px) {
  .partnerswraper .pitems {
    width: 200px;
    height: 70px;
  }
}
@media screen and (max-width: 767px) {
  .partnerswraper .pitems {
    position: relative;
    top: 0 !important;
    left: 0 !important;
    margin-bottom: 20px;
    transform: translate(0) !important;
    width: calc(50% - 10px);
  }
}
.partnerswraper .pitems img {
  max-width: 50%;
  max-height: 50%;
}
@media screen and (max-width: 767px) {
  .partnerswraper .pitems img {
    max-width: 60%;
  }
}
.partnerswraper .pitems.pt1 {
  top: 8%;
  left: -5%;
}
@media screen and (max-width: 1199px) {
  .partnerswraper .pitems.pt1 {
    left: 0;
  }
}
.partnerswraper .pitems.pt2 {
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.partnerswraper .pitems.pt3 {
  top: 8%;
  left: 80%;
}
@media screen and (max-width: 1199px) {
  .partnerswraper .pitems.pt3 {
    left: 75%;
  }
}
.partnerswraper .pitems.pt4 {
  top: 80%;
  left: 60%;
}
.partnerswraper .pitems.pt5 {
  top: 80%;
  left: 10%;
}

.business-today {
  background: #F7F5FF;
  padding: 50px 0 70px;
}
@media screen and (max-width: 767px) {
  .business-today {
    padding: 50px 0;
  }
}

.b-today-wraper {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 20px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
  margin-top: 50px;
}
@media screen and (max-width: 991px) {
  .b-today-wraper {
    display: block;
  }
}
.b-today-wraper .b-content {
  padding: 0 50px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .b-today-wraper .b-content {
    padding: 0 20px;
  }
}
@media screen and (max-width: 991px) {
  .b-today-wraper .b-content {
    padding: 30px 30px 10px;
  }
}
.b-today-wraper .b-content::after {
  width: 50%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 40px;
  content: "";
  background: #D08431;
}
@media screen and (max-width: 1199px) {
  .b-today-wraper .b-content::after {
    left: 20px;
  }
}
.b-today-wraper .b-content h3 {
  font-size: 3.2rem;
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  .b-today-wraper .b-content h3 {
    font-size: 2.6rem;
  }
}
.b-today-wraper figure {
  width: 50%;
  max-width: 50%;
  min-width: 50%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .b-today-wraper figure {
    min-width: 100%;
  }
}
.b-today-wraper figure img {
  width: 100%;
  transform: scale(1) rotate(0deg);
  transition: all 2s ease-in-out;
}
.b-today-wraper figure img:hover {
  transform: scale(1.2) rotate(5deg);
}

.crsec {
  padding: 100px 0 0;
  background: url("../images/cr-right-bg.png") bottom right no-repeat;
  background-size: 35%;
  min-height: 670px;
}
@media screen and (max-width: 1440px) {
  .crsec {
    padding: 60px 0 0;
    min-height: auto;
  }
}
@media screen and (max-width: 991px) {
  .crsec {
    background: transparent;
  }
}
@media screen and (max-width: 767px) {
  .crsec {
    padding: 50px 0 0;
  }
}
.crsec .crcontent {
  width: 65%;
  padding-left: 130px;
}
@media screen and (max-width: 1440px) {
  .crsec .crcontent {
    padding-left: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .crsec .crcontent {
    margin-bottom: 20px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 991px) {
  .crsec .crcontent {
    padding: 0 15px;
    width: 100%;
  }
}
.crsec .crcontent h2 {
  padding-left: 30px;
}
.crsec .crcontent .swiper-slide {
  padding: 30px;
}
@media screen and (max-width: 1199px) {
  .crsec .crcontent .swiper-slide {
    padding: 10px;
  }
}
.crsec .crcontent .creview {
  background: #f9f9f9;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  padding: 30px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .crsec .crcontent .creview {
    padding: 15px;
  }
}
@media screen and (max-width: 991px) {
  .crsec .crcontent .creview {
    padding: 20px;
  }
}
.crsec .crcontent .creview h3 {
  font-size: 4.5rem;
  font-weight: 600;
  padding-top: 30px;
  margin-bottom: 10px;
  padding-right: 20%;
}
@media screen and (max-width: 1600px) {
  .crsec .crcontent .creview h3 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1440px) {
  .crsec .crcontent .creview h3 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 1199px) {
  .crsec .crcontent .creview h3 {
    font-size: 2.6rem;
  }
}
.crsec .crcontent .creview p {
  font-size: 3.2rem;
  font-weight: 500;
  padding-right: 20%;
}
@media screen and (max-width: 1600px) {
  .crsec .crcontent .creview p {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1440px) {
  .crsec .crcontent .creview p {
    font-size: 2rem;
    padding-right: 0;
  }
}
.crsec .crcontent .creview::after {
  width: 245px;
  height: 130px;
  background: url("../images/cr-arrowbg.png") top right no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: -7px;
  right: -4px;
  content: "";
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  .crsec .crcontent .creview::after {
    background: url("../images/cr-arrowbg-s.png") top right no-repeat;
    width: 215px;
    height: 104px;
  }
}

.crating {
  border-bottom: 1px solid #000000;
}

.stars {
  display: flex;
  gap: 10px;
  font-size: 4rem;
}
@media screen and (max-width: 1440px) {
  .stars {
    font-size: 3rem;
  }
}
.stars .star {
  color: #ddd; /* default empty color */
  position: relative;
  display: inline-block;
}
.stars .star.full {
  color: #F4BF00; /* full star */
}
.stars .star.half {
  color: #ddd; /* empty base */
}
.stars .star.half::before {
  content: "★";
  color: #F4BF00;
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden;
}

.cr-slider {
  position: relative;
}
@media screen and (max-width: 1199px) {
  .cr-slider {
    padding: 0 30px;
  }
}
@media screen and (max-width: 991px) {
  .cr-slider {
    padding: 0;
  }
}
.cr-slider .carousel-control {
  position: absolute;
  bottom: 30px;
  right: 40px;
  width: 77px;
  height: 77px;
  border: none;
  border-radius: 50%;
  background: rgba(217, 217, 217, 0.3);
  cursor: pointer;
  z-index: 99;
}
@media screen and (max-width: 1440px) {
  .cr-slider .carousel-control {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .cr-slider .carousel-control {
    bottom: 10px;
    right: 40px;
  }
}
.cr-slider .carousel-control:hover {
  background: rgba(217, 217, 217, 0.7);
}
.cr-slider .carousel-control svg {
  width: 12px;
  fill: #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cr-slider .carousel-control.carousel-control-left {
  right: 137px;
}
@media screen and (max-width: 1440px) {
  .cr-slider .carousel-control.carousel-control-left {
    right: 110px;
  }
}

.have-qa {
  background: #FFF5EA;
  padding: 50px 0;
}
.have-qa figure {
  padding-right: 30px;
}
@media screen and (max-width: 991px) {
  .have-qa figure {
    display: none;
  }
}

.connectform .form-group {
  margin-bottom: 50px;
}
@media screen and (max-width: 1600px) {
  .connectform .form-group {
    margin-bottom: 30px;
  }
}
.connectform .form-control {
  height: auto;
  padding: 10px;
  font-size: 1.8rem;
  line-height: 1.3;
  min-height: auto;
  border: none;
  border-bottom: 1px solid #555555;
  color: #2C2C2C;
  background: transparent;
  border-radius: 0;
}
.connectform .form-control:focus {
  outline: none;
  box-shadow: none;
}
.connectform .form-control.textarea {
  border: 1px solid #000000;
  border-radius: 20px;
  padding: 15px 20px;
}

.selectgrp {
  position: relative;
}
.selectgrp select {
  width: 100%;
  padding: 10px;
  font-size: 1.8rem;
  line-height: 1.3;
  min-height: auto;
  border: none;
  border-bottom: 1px solid #555555;
  color: #2C2C2C;
  background: transparent;
}
.selectgrp select:hover, .selectgrp select:focus {
  box-shadow: none;
  outline: none;
}
.selectgrp::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(45deg);
  border-right: 1px solid #2C2C2C;
  border-bottom: 1px solid #2C2C2C;
  content: "";
  pointer-events: none;
  z-index: 2;
}

.grsec {
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  .grsec {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .grsec iframe {
    margin-top: 30px;
  }
}

.vidreview {
  width: 100%;
  height: 315px;
}
@media screen and (max-width: 1600px) {
  .vidreview {
    height: 260px;
  }
}

.getintouch {
  background: #F7F5FF;
  padding: 40px 0;
}
.getintouch.contactpage {
  background: #ffffff;
  padding: 100px 0;
}
@media screen and (max-width: 1440px) {
  .getintouch.contactpage {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .getintouch.contactpage {
    padding: 50px 0;
  }
}
.getintouch h3 {
  font-size: 12.8rem;
  font-weight: 700;
}
@media screen and (max-width: 1600px) {
  .getintouch h3 {
    font-size: 10rem;
  }
}
@media screen and (max-width: 1440px) {
  .getintouch h3 {
    font-size: 9rem;
  }
}
@media screen and (max-width: 1199px) {
  .getintouch h3 {
    font-size: 7rem;
  }
}
@media screen and (max-width: 991px) {
  .getintouch h3 {
    font-size: 3rem;
  }
}

.getintouchlist {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.getintouchlist li {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: start;
  font-weight: 500;
  width: 50%;
}
@media screen and (max-width: 1199px) {
  .getintouchlist li {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .getintouchlist li {
    margin-bottom: 30px;
  }
}
.getintouchlist li span {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #DAFFE0;
  -webkit-backdrop-filter: blur(70px);
          backdrop-filter: blur(70px);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922) inset;
  margin-right: 10px;
  position: relative;
  margin-top: 2px;
}
.getintouchlist li span svg {
  width: 24px;
  fill: #2C2C2C;
}
.getintouchlist li:last-child {
  margin: 0;
}
.getintouchlist li:last-child span::after {
  display: none;
}
.getintouchlist li p {
  margin: 0;
}
.getintouchlist li p strong {
  display: block;
  margin-bottom: 15px;
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 1440px) {
  .getintouchlist li p strong {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1199px) {
  .getintouchlist li p strong {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}
.getintouchlist li p a {
  color: #2C2C2C;
}
.getintouchlist li p a:hover {
  text-decoration: underline;
}
.getintouchlist.contactpg li:last-child {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .getintouchlist.contactpg li:last-child {
    margin-bottom: 30px;
  }
}

footer {
  padding: 0;
  margin: 0;
  background: #A48EFF;
  color: #ffffff;
}
footer .footertop {
  display: flex;
  align-items: center;
  padding: 5px 75px;
}
@media screen and (max-width: 991px) {
  footer .footertop {
    padding: 15px;
  }
}
footer .footertop a {
  margin-right: 75px;
  width: 162px;
  min-width: 162px;
}
@media screen and (max-width: 991px) {
  footer .footertop a {
    margin-right: 30px;
    min-width: 100px;
  }
}
footer .footertop a img {
  width: 100%;
}
footer .footertop p {
  font-size: 2rem;
  color: #ffffff;
  margin: 0;
}
@media screen and (max-width: 767px) {
  footer .footertop p {
    font-size: 1.6rem;
  }
}
footer .footerbottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 75px;
}
@media screen and (max-width: 991px) {
  footer .footerbottom {
    padding: 8px 15px;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 40px;
  }
}
footer .footerbottom ul {
  display: flex;
}
@media screen and (max-width: 991px) {
  footer .footerbottom ul {
    justify-content: center;
    width: 100%;
  }
}
footer .footerbottom ul li a {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  border-right: 2px solid #ffffff;
  padding-right: 10px;
  margin-right: 10px;
}
@media screen and (max-width: 1600px) {
  footer .footerbottom ul li a {
    font-size: 1.6rem;
  }
}
footer .footerbottom ul li:last-child a {
  margin: 0;
  padding: 0;
  border: none;
}
footer .footerbottom p {
  font-size: 2rem;
  color: #ffffff;
  margin: 0;
}
@media screen and (max-width: 1600px) {
  footer .footerbottom p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 991px) {
  footer .footerbottom p {
    width: 100%;
    bottom: 0px;
    left: 0;
    padding: 15px;
    font-size: 1.3rem;
    position: absolute;
    text-align: center;
  }
}
footer .footermain {
  background: #000 url("../images/footer-bg.png") top center no-repeat;
  background-size: 100%;
  padding: 30px 75px;
}
@media screen and (max-width: 1199px) {
  footer .footermain {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 767px) {
  footer .footermain {
    padding: 10px 15px 30px;
  }
}
footer .footermain h3 {
  margin-top: 40px;
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 1440px) {
  footer .footermain h3 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1199px) {
  footer .footermain h3 {
    font-size: 2.2rem;
  }
}
footer .footermain ul {
  list-style-type: disc;
  margin-left: 30px;
}
footer .footermain ul li {
  margin-bottom: 15px;
}
footer .footermain ul li a {
  color: #ffffff;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  footer .footermain ul li a {
    font-size: 1.6rem;
  }
}
footer .footermain ul li a:hover {
  color: #D08431;
}
footer .footermain p {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  footer .footermain p {
    font-size: 1.6rem;
  }
}
footer .footermain p small {
  font-size: 1.8rem;
  text-align: center;
  display: block;
}
footer .footermain p a {
  color: #ffffff;
}
footer .footermain p.listicon svg {
  width: 18px;
  fill: #ffffff;
  margin-right: 10px;
}

.columnsaperator {
  margin-bottom: 40px;
}
.columnsaperator .col-lg-4, .columnsaperator .col-lg-3 {
  position: relative;
  padding: 0 30px;
}
@media screen and (max-width: 1199px) {
  .columnsaperator .col-lg-4, .columnsaperator .col-lg-3 {
    padding: 0 10px;
  }
}
.columnsaperator .col-lg-4::after, .columnsaperator .col-lg-3::after {
  position: absolute;
  top: 15%;
  right: 10px;
  width: 1px;
  height: 80%;
  background: #ffffff;
  content: "";
}
@media screen and (max-width: 991px) {
  .columnsaperator .col-lg-4::after, .columnsaperator .col-lg-3::after {
    display: none;
  }
}

.backtotop {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background: #A48EFF;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
}
.backtotop svg {
  width: 40px;
  fill: #ffffff;
}

.socialicon {
  display: flex;
  list-style: none !important;
  margin-left: 0 !important;
}
.socialicon li {
  margin-right: 30px;
}
.socialicon li a svg {
  width: 35px;
}

.innerbanner {
  padding: 106px 0 20px;
}
.innerbanner .container-fluid {
  padding: 0 32px;
}
@media screen and (max-width: 1440px) {
  .innerbanner .container-fluid {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .innerbanner .container-fluid {
    padding: 0 10px;
  }
}

.servicebanner {
  padding-top: 106px;
}
@media screen and (max-width: 1199px) {
  .servicebanner {
    padding-top: 90px;
  }
}
.servicebanner .container-fluid {
  padding: 0 32px;
}
@media screen and (max-width: 1440px) {
  .servicebanner .container-fluid {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .servicebanner .container-fluid {
    padding: 0 10px;
  }
}
.servicebanner .s-bannerwraper {
  background: radial-gradient(98.98% 98.98% at 1.02% 0%, #FFF9ED 0%, #DCD4FC 78.9%, #FFDB93 100%);
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 90px 125px;
}
@media screen and (max-width: 1440px) {
  .servicebanner .s-bannerwraper {
    padding: 90px 45px;
  }
}
@media screen and (max-width: 1199px) {
  .servicebanner .s-bannerwraper {
    padding: 70px 45px;
  }
}
@media screen and (max-width: 767px) {
  .servicebanner .s-bannerwraper {
    padding: 50px 15px;
  }
}
.servicebanner .s-bannerwraper h1 {
  font-size: 5.4rem;
  font-weight: 900;
  margin: 0;
  width: 60%;
}
@media screen and (max-width: 1600px) {
  .servicebanner .s-bannerwraper h1 {
    font-size: 5.4rem;
  }
}
@media screen and (max-width: 1440px) {
  .servicebanner .s-bannerwraper h1 {
    font-size: 4.8rem;
    width: 70%;
  }
}
@media screen and (max-width: 1199px) {
  .servicebanner .s-bannerwraper h1 {
    font-size: 3.8rem;
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .servicebanner .s-bannerwraper h1 {
    font-size: 2rem;
  }
}
.servicebanner .s-bannerwraper p {
  margin: 0;
}

.innerbannerwraper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.innerbannerwraper img {
  width: 100%;
}
.innerbannerwraper img.banner-d {
  display: block;
}
@media screen and (max-width: 991px) {
  .innerbannerwraper img.banner-d {
    display: none;
  }
}
.innerbannerwraper img.banner-m {
  display: none;
}
@media screen and (max-width: 991px) {
  .innerbannerwraper img.banner-m {
    display: block;
  }
}
.innerbannerwraper .homecaption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  padding-left: 160px;
  width: 100%;
  max-width: 55%;
  z-index: 3;
}
@media screen and (max-width: 1440px) {
  .innerbannerwraper .homecaption {
    padding-left: 50px;
  }
}
@media screen and (max-width: 991px) {
  .innerbannerwraper .homecaption {
    padding: 0px;
    top: auto;
    bottom: 0;
    transform: translateY(0);
    max-width: 100%;
    text-align: center;
  }
}
.innerbannerwraper .homecaption h1 {
  font-size: 6.4rem;
  font-weight: 900;
}
@media screen and (max-width: 1600px) {
  .innerbannerwraper .homecaption h1 {
    font-size: 5.4rem;
  }
}
@media screen and (max-width: 1440px) {
  .innerbannerwraper .homecaption h1 {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 1199px) {
  .innerbannerwraper .homecaption h1 {
    font-size: 3.8rem;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding: 10px;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .innerbannerwraper .homecaption h1 {
    font-size: 2rem;
    font-weight: 500;
    padding: 5px;
  }
}
.innerbannerwraper .homecaption h1 span {
  display: inline;
  background: #000000;
  padding: 0 10px;
  border-radius: 10px;
  color: #ffffff;
}

.whoweare {
  padding: 60px 0;
}
@media screen and (max-width: 1199px) {
  .whoweare {
    padding: 40px 0;
  }
}
.whoweare p {
  font-size: 2.2rem;
}
@media screen and (max-width: 1440px) {
  .whoweare p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1199px) {
  .whoweare p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .whoweare p {
    font-size: 1.6rem;
  }
}
.whoweare figure {
  padding-right: 30px;
}
@media screen and (max-width: 1199px) {
  .whoweare figure {
    padding-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .whoweare figure {
    display: none;
  }
}
.whoweare figure.servicepage {
  display: block;
}
@media screen and (max-width: 767px) {
  .whoweare figure.servicepage {
    margin-bottom: 30px;
  }
}

.mission-vision {
  position: relative;
}
.mission-vision img {
  width: 100%;
  min-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .mission-vision img {
    min-height: 200px;
  }
}
.mission-vision .visionwrap {
  position: absolute;
  left: 145px;
  top: 50%;
  transform: translateY(-50%);
  width: 38%;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.4);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
  padding: 40px 30px 10px;
  color: #ffffff;
  border-radius: 20px;
}
@media screen and (max-width: 1440px) {
  .mission-vision .visionwrap {
    left: 65px;
  }
}
@media screen and (max-width: 1199px) {
  .mission-vision .visionwrap {
    padding: 20px 15px 0px;
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .mission-vision .visionwrap {
    position: relative;
    transform: translateY(0);
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 30px 15px;
    box-shadow: none;
  }
}
.mission-vision .visionwrap h2 {
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 1440px) {
  .mission-vision .visionwrap h2 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1199px) {
  .mission-vision .visionwrap h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .mission-vision .visionwrap h2 {
    font-size: 2.2rem;
  }
}

.meettheteam {
  padding: 60px 0;
}
@media screen and (max-width: 1199px) {
  .meettheteam {
    padding: 40px 0;
  }
}

.team-slider {
  position: relative;
  margin-top: 50px;
}
@media screen and (max-width: 1199px) {
  .team-slider {
    padding: 0 30px;
  }
}
@media screen and (max-width: 991px) {
  .team-slider {
    padding: 0;
  }
}
.team-slider .carousel-control {
  position: absolute;
  top: 50%;
  right: -90px;
  width: 77px;
  height: 77px;
  border: none;
  border-radius: 50%;
  background: #d9d9d9;
  cursor: pointer;
  z-index: 99;
  transform: translateY(-50%);
}
@media screen and (max-width: 1440px) {
  .team-slider .carousel-control {
    width: 50px;
    height: 50px;
    right: -55px;
  }
}
@media screen and (max-width: 1199px) {
  .team-slider .carousel-control {
    right: -40px;
  }
}
@media screen and (max-width: 991px) {
  .team-slider .carousel-control {
    display: none;
  }
}
.team-slider .carousel-control svg {
  width: 10px;
  fill: #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.team-slider .carousel-control.carousel-control-left {
  left: -90px;
}
@media screen and (max-width: 1440px) {
  .team-slider .carousel-control.carousel-control-left {
    left: -55px;
  }
}
@media screen and (max-width: 1199px) {
  .team-slider .carousel-control.carousel-control-left {
    left: -40px;
  }
}

.team-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
.team-card figure {
  overflow: hidden;
}
.team-card figure img {
  width: 100%;
  transition: all 0.3s ease-in-out;
  transform: scale(1);
}
.team-card .teamwrap {
  position: absolute;
  top: 100%;
  left: 20px;
  width: calc(100% - 40px);
  height: auto;
  padding: 15px;
  border-radius: 15px;
  background: #ffffff;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
.team-card .teamwrap h3 {
  font-size: 3.2rem;
  line-height: 40px;
  font-weight: 500;
  margin: 0px;
}
@media screen and (max-width: 1440px) {
  .team-card .teamwrap h3 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1199px) {
  .team-card .teamwrap h3 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .team-card .teamwrap h3 {
    font-size: 2rem;
  }
}
.team-card .teamwrap p {
  color: #919191;
  font-size: 2rem;
  margin: 0;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .team-card .teamwrap p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1199px) {
  .team-card .teamwrap p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .team-card .teamwrap p {
    font-size: 1.3rem;
  }
}
.team-card .teamwrap .teaminfo {
  display: flex;
  gap: 15px;
}
.team-card .teamwrap .teaminfo a svg {
  width: 40px;
}
.team-card:hover figure img {
  transform: scale(1.05);
}
.team-card:hover .teamwrap {
  top: 70%;
}

.bloglisting {
  padding: 50px 0;
}

.blogfilter .form-group {
  margin: 0;
}
.blogfilter .ctabutton {
  padding: 7px 30px;
  min-width: auto;
}

.loadmore {
  margin-top: 50px;
}

.blog-card {
  display: block;
  position: relative;
  height: 100%;
  text-decoration: none;
  margin-top: 50px;
}
.blog-card figure {
  box-shadow: 7px 7px 5px 0px #A48EFF;
  margin-bottom: 10px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
.blog-card .ctabutton {
  min-width: auto;
  padding: 10px 20px;
}
.blog-card .blistcaption {
  padding: 10px 15px;
  line-height: 1.5;
  transition: all 0.2s ease-in-out;
  color: #2C2C2C;
}
.blog-card .blistcaption p {
  font-size: 2.4rem;
  transition: all 0.2s ease-in-out;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media screen and (max-width: 1440px) {
  .blog-card .blistcaption p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1199px) {
  .blog-card .blistcaption p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .blog-card .blistcaption p {
    font-size: 1.6rem;
  }
}
.blog-card .blistcaption p span {
  display: inline-block;
  padding: 5px 15px;
  font-weight: bold;
  color: #C59B02;
  background: #FFF7D5;
}
.blog-card .blistcaption h3 {
  font-size: 3.2rem;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  margin-bottom: 15px;
}
@media screen and (max-width: 1440px) {
  .blog-card .blistcaption h3 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1199px) {
  .blog-card .blistcaption h3 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .blog-card .blistcaption h3 {
    font-size: 2rem;
  }
}

.blogdetailpage {
  background: #f1f1f1;
}

.bbbanner {
  background: linear-gradient(98.19deg, rgba(188, 186, 241, 0.58) 0.46%, rgba(237, 200, 211, 0.5) 99.63%);
  padding: 200px 0;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .bbbanner {
    padding: 170px 0;
  }
}
@media screen and (max-width: 991px) {
  .bbbanner {
    padding: 130px 0;
  }
}
@media screen and (max-width: 767px) {
  .bbbanner {
    padding: 100px 0;
  }
}
.bbbanner:after {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 35%;
  content: "";
  opacity: 0.2;
  background: url(../images/cmpagepg.png) top center repeat;
}
.bbbanner h1 {
  font-size: 4rem;
  font-weight: 700;
}
@media screen and (max-width: 1440px) {
  .bbbanner h1 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 1199px) {
  .bbbanner h1 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 991px) {
  .bbbanner h1 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .bbbanner h1 {
    font-size: 2.4rem;
  }
}
.bbbanner h1 span {
  display: inline;
  background: #000000;
  padding: 0 10px;
  border-radius: 10px;
  color: #ffffff;
}
.bbbanner .bloginfo {
  display: flex;
  margin-top: 15px;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 0;
}
@media screen and (max-width: 1440px) {
  .bbbanner .bloginfo {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1199px) {
  .bbbanner .bloginfo {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 991px) {
  .bbbanner .bloginfo {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .bbbanner .bloginfo {
    font-size: 1.6rem;
  }
}
.bbbanner .bloginfo span {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.bbbanner .bloginfo span svg {
  fill: #2C2C2C;
  width: 20px;
  min-width: 20px;
  margin-right: 10px;
}

.cmscontainer {
  width: 100%;
  margin-top: -130px;
  background: #FFFFFF;
  border-radius: 10px;
  z-index: 1;
  position: relative;
  min-height: 500px;
  padding: 40px 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
  .cmscontainer {
    margin-top: -90px;
  }
}
@media screen and (max-width: 767px) {
  .cmscontainer {
    margin-top: -60px;
    padding: 10px;
  }
}
.cmscontainer .article-image {
  display: block;
}
.cmscontainer .article-image img {
  width: 100%;
}
.cmscontainer p {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  .cmscontainer p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 991px) {
  .cmscontainer p {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}
.cmscontainer h4 {
  font-size: 3.2rem;
  color: #D08431;
  font-weight: 600;
  padding-top: 20px;
}
@media screen and (max-width: 1440px) {
  .cmscontainer h4 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 991px) {
  .cmscontainer h4 {
    font-size: 2.4rem;
    padding-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .cmscontainer h4 {
    font-size: 2.2rem;
  }
}
.cmscontainer ul {
  padding-left: 25px;
  list-style-type: disc;
}
@media screen and (max-width: 767px) {
  .cmscontainer ul {
    padding-left: 20px;
  }
}
.cmscontainer ul li {
  list-style: inherit;
  font-size: 2.4rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 1440px) {
  .cmscontainer ul li {
    font-size: 2rem;
  }
}
@media screen and (max-width: 991px) {
  .cmscontainer ul li {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}
.cmscontainer ul li ul {
  list-style-type: disc;
}

.related-slider {
  position: relative;
  margin-top: 50px;
}
@media screen and (max-width: 1199px) {
  .related-slider {
    padding: 0 30px;
  }
}
@media screen and (max-width: 991px) {
  .related-slider {
    padding: 0;
  }
}
.related-slider .carousel-control {
  position: absolute;
  top: 50%;
  right: -90px;
  width: 77px;
  height: 77px;
  border: none;
  border-radius: 50%;
  background: #d9d9d9;
  cursor: pointer;
  z-index: 99;
  transform: translateY(-50%);
}
@media screen and (max-width: 1440px) {
  .related-slider .carousel-control {
    width: 50px;
    height: 50px;
    right: -55px;
  }
}
@media screen and (max-width: 1199px) {
  .related-slider .carousel-control {
    right: -40px;
  }
}
@media screen and (max-width: 991px) {
  .related-slider .carousel-control {
    display: none;
  }
}
.related-slider .carousel-control svg {
  width: 10px;
  fill: #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.related-slider .carousel-control.carousel-control-left {
  left: -90px;
}
@media screen and (max-width: 1440px) {
  .related-slider .carousel-control.carousel-control-left {
    left: -55px;
  }
}
@media screen and (max-width: 1199px) {
  .related-slider .carousel-control.carousel-control-left {
    left: -40px;
  }
}
.related-slider .blog-card {
  margin-top: 0 !important;
}

.whychoosecard {
  text-align: center;
  padding: 40px 20px 0;
}
@media screen and (max-width: 767px) {
  .whychoosecard {
    padding: 20px 20px 0;
  }
}
.whychoosecard svg {
  width: 92px;
  margin-bottom: 15px;
}
.whychoosecard h4 {
  font-size: 3.2rem;
}
@media screen and (max-width: 1499px) {
  .whychoosecard h4 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1199px) {
  .whychoosecard h4 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .whychoosecard h4 {
    font-size: 1.6rem;
  }
}

.whychoosecard1 {
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922) inset;
  background: linear-gradient(180deg, rgb(245, 245, 245) 0%, rgb(255, 255, 255) 100%);
  border-radius: 20px;
}
@media screen and (max-width: 1199px) {
  .whychoosecard1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 991px) {
  .whychoosecard1 {
    min-height: 150px;
  }
}
@media screen and (max-width: 767px) {
  .whychoosecard1 {
    font-size: 1.6rem;
    padding: 20px 10px;
    min-height: 120px;
  }
}

.services-content {
  padding-bottom: 100px;
}
@media screen and (max-width: 1499px) {
  .services-content {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 991px) {
  .services-content {
    padding-bottom: 40px;
  }
}

.servicecontentwraper {
  margin-top: 100px;
}
@media screen and (max-width: 1499px) {
  .servicecontentwraper {
    margin-top: 60px;
  }
}
@media screen and (max-width: 991px) {
  .servicecontentwraper {
    margin-top: 40px;
  }
}
.servicecontentwraper h4 {
  font-size: 3.2rem;
}
@media screen and (max-width: 1199px) {
  .servicecontentwraper h4 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .servicecontentwraper h4 {
    font-size: 1.6rem;
  }
}
.servicecontentwraper p {
  font-size: 2rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 1440px) {
  .servicecontentwraper p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .servicecontentwraper p {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.servicecontentwraper ul {
  list-style-type: disc;
  padding-left: 30px;
  margin-bottom: 15px;
}
.servicecontentwraper ul.decimal {
  list-style-type: decimal;
}
.servicecontentwraper ul li {
  list-style: inherit;
  font-size: 2rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 1440px) {
  .servicecontentwraper ul li {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .servicecontentwraper ul li {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}

.imagecontentwraper {
  margin-top: 60px;
  padding: 0 8px;
}
@media screen and (max-width: 1199px) {
  .imagecontentwraper {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .imagecontentwraper {
    margin-top: 40px;
  }
}
.imagecontentwraper figure {
  text-align: center;
}
.imagecontentwraper figure img {
  max-width: 100%;
}
@media screen and (max-width: 1199px) {
  .imagecontentwraper figure img {
    margin-bottom: 40px;
    max-width: 80%;
  }
}

.quicktxtinfo {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .quicktxtinfo {
    margin-bottom: 40px;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .quicktxtinfo.havedes {
    align-items: start;
  }
}
.quicktxtinfo svg {
  width: 40px;
  margin-right: 15px;
  margin-top: 5px;
  min-width: 40px;
}
@media screen and (max-width: 1199px) {
  .quicktxtinfo svg {
    width: 30px;
    min-width: 30px;
  }
}
.quicktxtinfo p {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .quicktxtinfo p {
    font-size: 18px;
  }
}
.quicktxtinfo p span {
  display: block;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 1199px) {
  .quicktxtinfo p span {
    font-size: 15px;
    margin-top: 10px;
  }
}
.quicktxtinfo.normallist {
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .quicktxtinfo.normallist {
    margin-bottom: 15px;
  }
}
.quicktxtinfo.normallist p {
  margin: 0;
}
.quicktxtinfo.normallist svg {
  margin: 0 15px 0 0;
}

.moreservices {
  background: radial-gradient(100% 100% at 100% 0%, #FFEEDB 0%, #F6F4FF 100%);
  padding: 60px 0;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .moreservices {
    padding: 40px 0;
  }
}
.moreservices.nobg {
  background: #ffffff;
}/*# sourceMappingURL=stylesheet.css.map */