:root {
  --font-color: #313944;
}

html {
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;

}
body {
  color: var(--font-color);
  cursor: none !important;
/* scroll-behavior: smooth; */
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}
a,
button,
input,
div {
  cursor: none;
}
a {
  text-decoration: none !important;
}
body:hover .cursor {
  display: block;
}
.cursor {
  transition: scale ease-in-out 0.3s;
  position: fixed;
  width: 18px;
  height: 18px;
  z-index: 10000;
  pointer-events: none;
  transform: translate(-100%, -100%);
  display: none;
}

p {
  font-weight: 200;
}
ul {
  list-style-type: none;
}
li a {
  color: white;
}
.navImg {
  background-image: url("/img/icon/navInitialLogo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100px;height: 50px;
}
.navImg.active {
  background-image: url("/img/icon/aashiDesignz.svg");
}
.borderAnimate {
  display: inline-block;
  position: relative;
}
.borderAnimate::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 2px;
  background: #b388eb;
  transition: all ease-in-out 0.5s;
}
.borderAnimate.visible::after {
  width: 100%;
}

.hamburger {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all ease-in-out 0.3s;
  margin-right: 2rem;
}

.bar {
  width: 30px;
  height: 3px;
  background-color: #313944;
  border-radius: 5px;
  position: absolute;
  transition: all ease-in-out 0.2s;
  z-index: 1;
}
.bar:nth-child(1) {
  transform: translate(0px, -10px);
}
.bar:nth-child(2) {
  transform: translate(0);
}
.bar:nth-child(3) {
  transform: translate(0px, 10px);
}
.bar:nth-child(4) {
  transform: translate(0, 0);
  z-index: 0;
  background-color: #fff;
  width: 40px;
  height: 40px;
  scale: 0;
}
.hamburger.btnClicked {
  margin-right: 0rem;
}
.hamburger.btnClicked .bar:nth-child(1) {
  transform: translate(0, 0) rotate(45deg);
}
.hamburger.btnClicked .bar:nth-child(2) {
  scale: 0;
}
.hamburger.btnClicked .bar:nth-child(3) {
  transform: translate(0, 0) rotate(-45deg);
}

.hamburger.btnClicked .bar:nth-child(4) {
  scale: 1;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all ease-in-out 0.3s;
  backdrop-filter: blur(30px);
  background-color: #b487ef70;
}



.navbarContainer {
  padding: 0.5rem 1rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navMenuDiv {
  display: none;
  width: 100fw;
  height: 100vh;
}

.navbar.open .navMenuDiv {
  display: block;
}

.navLinkDiv {
  display: flex;
  flex-wrap: wrap;
}
.navbar.open .navLinks {
  animation: navFadeIn 0.8s forwards;
}
@keyframes navFadeIn {
  to {
    opacity: 1;
  }
}
.navLinks {
  opacity: 0;
  padding: 3rem;
  line-height: 50px;
}
.navLinks button {
  width: fit-content;
}

.navLink {
  font-size: 2rem;
  display: block;
  color: #313944;
  width: fit-content;
}
.navLinkArrow {
  margin: 0 0 -5px 10px;
  width: 30px;
}
.subLinks {
  display: block;
  font-size: 1rem;
  margin-left: 2rem;
  line-height: 30px;
}
.contact,
.connectBtn {
  width: fit-content;
  height: 2.4rem;
  margin-top: 1rem;
  font-size: 1rem;
  border-radius: 20px;
  background-color: #b487ef;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.1rem 0.5rem 0.1rem 0.5rem;
}
.contact h5 {
  color: white;
  margin: 0 0 0 5px;
}
.arrowDiv {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  position: relative;
  overflow: hidden !important;
}
.arrow,
.arrow2 {
  width: 20px;
  height: 20px;
  margin-left: 0.4rem;
  transform: rotate(-30deg);
  transition: all ease-in-out 0.2s;
  margin-top: 0.35rem;
  margin-right: 1rem;
}
.userDetails h3:nth-child(1) {
  font-size: 1.2rem;
}

.navSocialLinks {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.socialLogo {
  width: 25px;
  height: 25px;
  margin-right: 1rem;
}
.socialLogo:nth-child(4) {
  margin-bottom: 0.5rem;
}
.socialLogos {
  position: absolute;
  bottom: 0;
}

.silverDot {
  width: 5px;
  height: 5px;
  background-color: #d9d9d9;
  border-radius: 50%;
  margin: 0 0.5rem;
}
.userDetails h6 {
  font-size: 0.8rem;
  color: #8f9091;
}
.arrow2 {
  transform: rotate(-30deg) translate(-15px, -25px);
}
button:hover .arrow {
  transform: rotate(-30deg) translate(25px, 0px);
}
button:hover .arrow2 {
  transform: rotate(-30deg) translate(15px, -25px);
}
.container {
  margin: 1rem 0;
  padding: 1rem 12rem 1rem;
}

.logoContainer {
  top: 1rem;
  left: 3rem;
  position: absolute;

  z-index: 1000;
}

.img img {
  width: 600px;
  height: 550px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  z-index: 0;
}

.text {
  width: 40%;
}

.text p {
  width: 25rem;
}
.nameContainer {
  text-align: center;
  position: relative;
  font-size: 5rem;
  z-index: 1;
  border: none;
  box-shadow: inset 0px -50px 50px 0px #fff;
  transform: translate(0, -15px);
}
.header {
  margin-top: 4rem;
  height: 90vh;
}

.header,
.aboutHeader {
  overflow: hidden;
  padding: 0rem 6rem 0 !important;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header::after {
  width: 100%;
  height: 10rem;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  border: none;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 1)
  );
}

.headerContainer1,
.headerContainer2 {
  width: 40%;
  z-index: 4;
  height: fit-content;
  padding: 1rem;
  margin: 6rem 0;
}

.pfpImg {
  --scale: 1;
  width: 26rem;
  height: 29rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%) scale(var(--scale));

}

.nameAyushi {
  width: 100vw;
  position: absolute;
  left: 0;
  bottom: 0em;
  z-index: 4;
  text-align: center;
  font-size: 9rem;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff,
    1px -1px 0 #fff;
}

.headerContainer1 h1 {
  font-size: 3rem;
}
.dotContainer {
  font-size: 1.2rem;
  font-weight: bold;
  height: 2.5rem;
  line-height: 0;
  width: fit-content;
  display: flex;
  align-items: center;
  background-color: #b388eb4e;
  padding: 0 1rem;
  border-radius: 20px;
}
.headerContainer1 .dot {
  margin-bottom: 0.4rem;
}
.dot {
  float: left;
  width: 7px;
  height: 7px;
  background-color: #b388eb;
  margin: 0.4rem 0.5rem 0 0rem;
  border-radius: 50%;
}

.innerDot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #8f6dbc;
  animation: heartBeat 0.8s infinite;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
    opacity: 1;
    background-color: #b388eb;
  }
  100% {
    opacity: 0.2;
    transform: scale(2.4);
  }
}

.flex-box {
  display: flex;
  flex-wrap: wrap;
}
.heading {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 0rem;
}
.container2 .heading {
  margin-bottom: 2.5rem;
}
.text:nth-child(1) {
  width: 30%;
}
.text:nth-child(1) h2 {
  font-size: 48px;
}
/* 
.text:nth-child(2) {
  display: flex;
  width: 70%;
  justify-content: center;
  align-items: center;
} */

.text:nth-child(2) p {
  margin: 3rem 0 1rem;
}
.text:nth-child(2) .img {
  margin-top: 5rem;
  margin-right: -7rem;
}
/* carousel */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.logos {
  overflow: hidden;
  margin: 1rem 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  content: "";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 2;
}
.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}
.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}
.logos-slide {
  display: inline-block;

  animation: 35s slide infinite linear;
}
.logos-slide img {
  border-radius: 15px;
  /* width: 15rem; */
  width: 150px;
  height: 100px;
  margin: 0 20px;
  /* padding: 1rem 2rem; */
  /*  */
}

.boxText {
  z-index: 999;
  backdrop-filter: blur(30px);
  background-color: #ffffff80;
  padding: 0.5rem;
  border-radius: 20px;
}
.grid-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  justify-self: center;

  width: 100%;
}
.grid-item {
  margin: 16px;
}
.box {
  width: 350px;
  height: 250px;
  border-radius: 20px;
  background-color: black;
  display: flex;
  color: white;
  padding: 1rem;
  align-items: end;
  font-size: 1.5rem;
  line-height: 2.5rem;
  overflow: hidden;
  position: relative;
}
.boxBtn {
  background: transparent;
  border-radius: 20px;
  color: white;
  border: 2px solid #fff;
  height: 2rem;
  padding: 0.5rem 2rem;
}
button,
a {
  transition: all ease-in-out 0.2s;
}
button:hover,
a:hover {
  transform: scale(0.98);
}
.headingPara {
  text-align: center;
  margin-bottom: 2.5rem;
}
.skillPara {
  position: relative;
  background-color: #fff;
  border-radius: 16px;
  padding: 1rem;
  height: 27rem;
}
.skillPara p {
  height: 9rem;
  color: #65696e;
  font-size: 16px;
}
.card-item:nth-child(2) .skillPara {
  background-color: #e7daf9;
}
.card-item:nth-child(2) .skillPara p {
  color: #8f6dbc;
  background-color: #e7daf9;
}
.skillName {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: black;
}
.skill {
  font-size: 24px;
}
.card-item:nth-child(2) .textChange {
  background-color: #b388eb !important;
  color: #fff;
}

.skillImg {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 1rem;
}
.skillImg img {
  margin: 0.5rem;
  width: 4rem;
  height: 4rem;
  border-radius: 10px;
}
.textChange {
  width: 82%;
  border-radius: 16px;
  background-color: #fff;
  font-size: 1.2rem;
  height: 3rem;
  padding: 0.4rem 1rem;
  overflow: hidden;
  line-height: 2.2rem;
  margin-right: 5px;
}
.skill {
  transition: all ease-in-out 0.2s;
  margin-top: 0.1rem;
}
.shadow {
  top: 0;
  left: 0;
  border-radius: 16px;
  opacity: 0;
  z-index: 999;
  background-color: white;
  width: 100%;
  height: 0;
  position: absolute;
  transition: all ease-in-out 0.2s;
}
.card-item:nth-child(2) .skillPara .shadow {
  background-color: #2d3047;
}

.card-item:hover .textChange .skill:nth-child(1) {
  margin-top: -2.4rem;
}
.card-item:hover .skillPara .shadow {
  opacity: 0.7;
  height: 100%;
}
.card-item:hover .empty .serviceCardIcon:nth-child(1) {
  transform: translate(0px, -2.5rem);
}
.card-item:hover .empty .serviceCardIcon:nth-child(2) {
  transform: translate(0, -2.2rem) rotate(-30deg);
}
.card-item:hover {
  transform: scale(0.99);
}

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

.skillTab div h3 {
  padding: 0.2rem 1rem;
  margin: 0.2rem 0rem;
  border: none;
  border-radius: 20px;
  background-color: #ebeced;
}

.cardContainer {
  display: flex;
  justify-content: center;
  flex-wrap: no-wrap;
}

.card-item {
  width: 25rem;
  padding: 0.5rem;
  border-radius: 24px;
  margin: 1rem;
  background-color: #ebeced;
  transition: all ease-in-out 0.1s;
}
.card-item:nth-child(2) {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}
.spanUnderline {
  border-bottom: 1px solid black;
}

.card-item:nth-child(2) {
  background-color: #313944;
  color: #8f6dbc;
}
.card-item:nth-child(2) .skillTab h3 {
  border: 1px solid #8f6dbc;
  color: #8f6dbc;
  border-radius: 20px;
  background: transparent;
}
.designStrategyDiv {
  display: grid;
  grid-template-columns: auto auto;
}
.masonryItem {
  margin: 0 0.5rem 0.5rem 0;
}

.container4 {
  display: flex;
  justify-content: center;
  background-image: url("../img/banner.png");
  border-radius: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  height: 550px;
  align-items: center;
}
.banner {
  backdrop-filter: blur(30px); /* main blur effect */
  background-color: #0f031d3f;
  padding: 3rem;
  border-radius: 30px;
}

.bannerText h1,
.bannerText p {
  color: white;
  margin-bottom: 1.2rem;
  text-align: center;
}
.bannerText h1 {
  font-size: 48px;
  font-weight: 500;
}
.bannerText p {
  font-size: 20px;
}
.form1 {
  display: flex;
  padding: 1rem 0;
  justify-content: center;
}
.form1 input {
  width: 20rem;
  height: 3rem;
  padding: 1rem 1rem;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  margin-right: 0.2rem;
}
.form1 input:hover {
  border: 1px solid #b388eb;
}
.formSubmit {
  width: 10rem;
  height: 3rem;
  font-size: 1rem;
  background-color: #b388eb;
  border-radius: 10px;
  border: none;
  color: white;
  font-weight: bold;
    margin: 0.6rem auto;
  font-weight: 400;
}

/* slide css */
/* .swipper-wrapper{
    width: 100%;
}
.card{
    background-color: red;
    width: 20rem !important; 
} */

/* second slider */

.swiperContainer {
  margin-top: 5rem;
  width: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}
.swiper {
  border-radius: 20px;
  position: relative;
}

.swiper:hover .slider-btn {
  opacity: 1;
  scale: 1;
}

.swiper-slide {
  padding: 1rem;
}
.testimonialContainer {
  display: flex;
  justify-content: space-between !important;
  flex-wrap: wrap;
  height: 300px;
  background-color: #2d3047;
  padding: 2rem;
  border-radius: 10px;
  color: white;
  position: relative;
}

.swiper-slide-active .testimonialContainer {
  transform: scale(1.1) !important;
  background-color: #222435;
}
.quotesImg {
  width: 2em;
  height: 2rem;
}
.slider-btn {
  opacity: 0;
  scale: 0.8;
  transition: all ease-in-out 0.3s;
  position: absolute;
  background-color: black;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 1000;
  top: 40%;
  border-radius: 50% !important;
  padding: 0.6rem;

  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.previous-btn {
  left: 1rem;
}
.next-btn {
  right: 1rem;
}
.slider-btn:hover {
  transform: scale(0.95);
}
.clientDetails {
  display: flex;
}
.clientImg {
  margin-right: 1rem;
  background-color: red;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 5px;
}
.blurBox {
  background-color: white;
  /* border: 1px solid black; */
  width: 200px;
  height: 200px;
  opacity: 10%;
  backdrop-filter: blur(100px); /* main blur effect */
  box-shadow: inset 5px 5px 10px 10px;
}

.faqContainer {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  flex-wrap: wrap;
  /* padding: 3rem 0; */
}
.faqText {
  width: 30%;
}
.faqAccordian {
  /* overflow-y: scroll; */
  border-radius: 20px;
  padding: 1rem 1rem 0;
  background-color: #e7daf9;
  width: 65%;
  transition: all ease-in-out 0.5s;
}
.questionDiv {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.question {
  font-size: 24px;
  font-weight: 500;
}
.cross {
  float: right;
  width: 20px;
  height: 20px;
  transition: all ease-in-out 0.3s;
  position: relative;
  display: flex;
  justify-content: center;

  align-items: center;
}
.line {
  width: 15px;
  height: 2px;
  border: none;
  background-color: black;
  content: "";
  border-radius: 10px;
}
.line:nth-child(2) {
  position: absolute;
  transform: rotate(90deg);
}
.tab {
  border-radius: 15px;
  background-color: #fff;
  padding: 1rem;
  margin-bottom: 1rem;
}
.answer {
  color: #65696e;
  transition: all ease-in-out 0.5s;
  overflow: hidden;
  height: 0;
  font-size: 16px;
}
.answer.show {
  margin-top: 1.3rem;
  height: 5rem;
}

.cross.rotate {
  transform: rotate(45deg);
}
.hireMeBtn,
.pdfDownload,
.formSubmit {
  width: 9rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff !important;
  background-color: #b388eb;
  border: none;
  border-radius: 35px;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
}
.btnArrow {
  transform: rotate(-30deg);
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
}
.footer {
  background: #313944;

  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  padding: 2rem 2rem 0.5rem;
}
.footerMain {
  align-items: center;
  height: 200px;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 2px solid #475467;
}
.footerMain h1 {
  font-size: 70px;
  color: white !important;
}
.footerMenu {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #475467;
  height: 200px;
  padding: 2rem 0;
  line-height: 1.5rem;
  flex-wrap: wrap;
}
.footerDiv1 {
  width: 40%;

  position: relative;
}

.formEmail {
  display: flex;
  justify-content: center;
  align-items: center;
}
.submit {
  border: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 0.4rem;
  background-color: #b388eb;
  border: none;
  width: 3rem;
}
.formEmail input {
  width: 15rem;
  height: 2.2rem;
  padding: 0rem 0.6rem;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border: none;
  font-size: 1rem;
}

.footerCopyright {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  height: 50px;
}

.footer p {
  color: white;
}
.footerList li:nth-child(1) p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #b388eb;
  font-weight: 600;
}
.footerList li {
  margin-bottom: 0.8rem;
}

.footerList li a:hover {
  color: #b388eb;
}
.footerDiv4 p {
  font-size: 1.1rem;
  color: #b388eb;
  margin-bottom: 0.5rem;
}

.container5 h1 {
  font-size: 54px;
  margin-bottom: 1rem;
}
.container5 h3 {
  color: #65696e;
}
.faqText {
  color: #65696e;
}
.faqText h4 {
  margin-bottom: 1rem;
}
.faqText h3 {
  font-size: 1.2rem;
  font-weight: 500;
}

.text h4 {
  width: fit-content;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  background-color: #e7daf962;
  margin-bottom: 1rem;
}

/* ABOUT */
.aboutImg {
  width: fit-content;
  height: 500px;
  margin-top: -2rem;
  border-radius: 20px !important;
}
.aboutText h4 {
  font-size: 20px;
}
.aboutText h3 {
  line-height: 4rem;
}
.aboutImg img {
  object-fit: cover;
  width: 100%;
  height: 450px;
  border-radius: 20px;
}
.aboutText {
  padding: 0rem;
  color: #b388eb;
  font-size: 54px;
  width: 50%;
  order: 1;
}
.aboutContainer {
  margin-top: 10rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.container1Heading .dot {
  margin-top: 0.55rem;
}
.container1Heading h1 {
  line-height: 1.5rem;
}

.aboutDiv {
  display: flex;
  justify-content: center;
  line-height: 1.5;
  flex-wrap: wrap;
}
.aboutDiv h4 {
  width: 25%;
  font-size: 30px;
  color: #65696e;
}
.aboutDiv div {
  width: 75%;
}
.aboutDiv div h3 {
  font-size: 30px;
}
.aboutDiv div h6 {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #65696e;
  margin-bottom: 0.5rem;
}
.container3Heading {
  margin-top: 1.6rem;
  width: 35%;
}
.container3Content {
  width: 60%;
}
.container3Heading h3 {
  font-size: 3rem;
}
.container4Heading h3 {
  font-size: 2.2rem;
    color: #8f6dbc;
}

.serviceCardIcon {
  width: 32px;
  height: 32px;
  transition: all ease-in-out 0.2s;
}
.serviceCardIcon:nth-child(2) {
  margin-left: 4px;
  height: 27px;
  width: 27px;
  transform: rotate(-30deg) translate(0);
}
.empty {
  width: 3rem;
  height: 3rem;
  overflow: hidden;
  padding: 0.5rem;
  overflow: hidden;
}
.aboutContainer3 {
  background-color: #f7f3fd;
}
.aboutContainer3,
.moreServiceLinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grid {
  display: grid;
  grid-template-columns: auto auto;
}
.gridIcon {
  background-color: #b388eb;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.gridIcon img {
  margin: 6.5px;
  width: 37px;
  transform: rotate(-45deg);
}
.aboutGrid-item div:nth-child(1) {
  display: flex;
  justify-content: space-between;
}
.gridItemContent h3 {
  font-size: 2rem;
  font-weight: 500;
}
.aboutGrid-item {
  background-color: #b487ef3d;
  padding: 1rem;
  border-radius: 20px;
  margin: 20px;
  height: fit-content;
  color: #313944;
}
.aboutGrid-item:nth-child(6) {
  background-color: #b388eb;
}
.aboutGrid-item:nth-child(6) .gridIcon {
  background-color: #313944;
}
.userDetails {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.container4Content {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
}
.testimonialImg {
  width: 50%;
  border-radius: 20px;
}
.testimonialImg img {
  width: 100%;
  height: 420px;
  border-radius: 20px;
}
.testimonial {
  padding: 1rem;
  background-color: #ebeced;
  margin-right: 2rem;
  width: 45%;
  border-radius: 20px;
  overflow-y: scroll;
  height: 435px;
  scrollbar-width: none;
}
.testimonial > div {
  background-color: #fff;
  padding: 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.aboutContainer5 h1:nth-child(1) {
  font-size: 4rem;
}
.workingModelCard {
  display: flex;
  justify-content: right;
}
.modelCardGrid {
  width: 70%;
  display: grid;
  grid-template-columns: auto auto;
}
.modelCard {
  margin: 1rem;
  border-radius: 10px;
}
.modelCard h1 {
  font-size: 100px !important;
  font-weight: 500;
}
.modelCard h3 {
  font-size: 42px;
}
.serviceHeaderContainer h1 {
  font-size: 72px;
  line-height: 4.5rem;
}
.serviceHeaderContainer {
  padding: 7rem 6rem 0;
}
.readMoreBtn {
  border: none;
}
#more {
  overflow: hidden;
  transition: all ease-in-out 0.5s;
}
.serviceParagraph {
  margin: 1.5rem 0 1rem;
}
.serviceTabs {
  font-size: 1.5rem;
  margin: 3rem 0;
  color: gray;
  display: flex;
  padding: 0 6rem;
  justify-content: space-between;
  text-align: center;
}

.serviceTestimonial h1 {
  font-size: 56px;
  font-weight: 500;
}
.serviceTestimonial h3 {
  color: gray;
}

.purpleDiv {
  width: 100%;
  height: 100%;
  transition: all ease-in-out 0.6s;
}
.purpleDiv.onScreen {
  background-color: #b388eb;
}
.circle {
  width: 50px;
  height: 50px;
  background-color: #313944;
  border-radius: 50%;
  overflow: hidden;
}
.column {
  margin: auto auto;
  width: 10px;
  background-color: #313944;
  height: 100%;
  overflow: hidden;
}

.featureTitleContainer,
.featureTextContainer {
  display: grid;
  grid-template-columns: 50px 1fr;
}
.design {
  height: 100%;
  width: 50px;
  display: flex;
  justify-content: center;
}
.featureTitle,
.featureText {
  margin-left: 10px;
}

.featureTabDesc {
  margin: 2rem 0;
  color: #475467;
}
.featureTitle {
  align-self: center;
}
.featureText {
  color: #475467;
  align-self: start;
  padding: 0.2rem 0 1rem;
}
.tabFeature {
  padding: 2rem 0;
}

.pdfDownload {
  justify-content: center;
}

.contactLink {
  display: flex;
  justify-content: center;
}

.serviceGrid {
  padding: 1rem;
}

.masonryItem img {
  width: 100%;
  /* margin: 0.4rem; */
  border-radius: 20px;
}
.masonryItem {
  transition: all ease-in-out 0.2s;
}
.masonryItem:hover {
  transform: scale(0.99);
}

.serviceVideo {
  /* display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; */
 display: grid;
 grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.videoWrapper {
  margin: .5rem;
  width: 10rem;
height: fit-content;
border-radius: 20px;
overflow: hidden;
}

.serviceGridItems {
  columns: 5;
}
.poster {
  width: 400px;
  height: 300px;
  border-radius: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.poster:hover .boxImg {
  transform: translate(-50%, -50%) scale(1.05);
}
.posterDesign {
  width: 400px;
  height: 300px;
  position: absolute;
  background-color: #31394436;
  backdrop-filter: blur(10px);
  transform: translate(00px, 350px);
  transition: all ease-in-out 0.3s;
  border-radius: 20px;
  z-index: 1;
}
.poster:hover .posterDesign {
  transform: translate(0);
}
.posterText1,
.posterText2 {
  display: flex;
  height: 150px;
  position: relative;
  transition: all ease-in-out 0.4s;
  margin: 0.5rem;
  text-align: center;
  z-index: 2;
}
.posterText1 {
  align-items: flex-end;
  justify-content: center;
  transform: translate(400px, 00px);
}
.posterText2 {
  transform: translate(-400px, 0px);
  align-items: start;
  justify-content: center;
}
.poster:hover .posterText1 {
  transform: translate(0);
}
.poster:hover .posterText2 {
  transform: translate(0);
}
.caseStudy {
  border: 1px solid white;
  border-radius: 20px;
  padding: 0.2rem 1rem;
  width: fit-content;
  height: fit-content;
}
.poster:hover .posterText2 {
  justify-content: center;
}

.boxImg {
  position: absolute;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.poster:hover .posterText1 h1 {
  right: 30%;
  opacity: 1;
}
.poster:hover .posterText2 .caseStudy {
  left: 45%;
  opacity: 1;
}
.contactContainer {
  height: 100vh;
  width: 100%;
  background-color: #b388eb77;
  display: flex;
  justify-content: center;
  padding: 5rem 6rem 5rem;
}

.contactImg {
  margin-top: auto;
  margin-right: -2rem;
  z-index: 99;
}
.contactImg img {
  border-radius: 20px;
  width: 500px;
  height: 400px;
}
textarea {
  resize: none;
}
.popup {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 990;
  backdrop-filter: blur(30px);
  background-color: #b388ebc4;
  padding: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.popup img {
  margin-bottom: 1rem;
}
.contactForm {
  padding: 1.5rem 2rem;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: white;
  border-radius: 20px;
  width: 40rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 1;
}

.contactForm h1 {
  font-size: 50px;
  margin-bottom: 0.5rem;
}
.contactForm p {
  margin-top: 0.5rem;
}

.form h3 {
  margin: 0.3rem 0 0.2rem;
  color: #513d6a;
}

input:focus,
textarea:focus {
  outline: none;
}

.form input,
.form textarea {
  border: 1px solid #8f6dbc;
  border-radius: 5px;
  padding: 0.5rem;
  font-size: 1rem;
  width: 18rem;
  color: #513d6a;
}


.privacyPage li {
  list-style-type: disc;
  line-height: 10px;
  margin: 1rem 2rem;
  font-size: 0.9rem;
}
.privacyPage h3 {
  margin: 01rem 0;
  font-size: 1.5rem;
  font-weight: 600;
}
.privacyPage h4 {
  font-size: 1.2rem;
  /* margin-bottom: 1rem; */
}

.privacyPage .container:nth-child(1) {
  margin-top: 5rem;
}
@media (max-width: 412px) {
  .cursor {
    display: none !important;
  }

  .navMenuDiv {
    padding: 0rem 0rem 4rem;
    overflow: scroll;
  }
  .navLinks {
    padding: 2rem 1rem 1rem;
  }
  .container {
    padding: 0.5rem 1rem !important;
  }
  .header,
  .aboutHeader {
    padding: 1rem !important;
    margin-top: 5rem;
    height: fit-content;
  }
  .headerContainer1,
  .headerContainer2 {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .headerContainer1 h1 {
    margin-top: 0.5rem;
    font-size: 2rem;
  }

  .pfpImg {
 
    position: static;
  transform: translateX(0) scale(var(--scale));
    width: 100%;
    height: 70%;
  }
  .nameAyushi {
    bottom: 0;
    font-size: 3.5rem;
  }

  .container2 .heading,
  .container3 .heading {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  .container3 {
    height: fit-content;
  }
  .cardContainer {
    flex-wrap: wrap;
  }
  .card-item {
    margin: 0 0 1rem;
    padding: 0.5rem;
    width: 300px;

    height: fit-content;
  }

  .skillName {
    margin-bottom: 0.2rem;
  }
  .skillPara {
    overflow: hidden;
    height: 0;
    padding: 0;
  }
  .card-item:hover .skillPara {
    margin-top: 0.5rem;
    height: fit-content;
    padding: 1rem;
  }
  .card-item:hover .skillName {
    margin-bottom: 0.2rem;
  }
  .swiperContainer {
    margin-top: 3rem;
  }

  .skillImg {
    margin: 2rem 0;
  }
  .skillImg img {
    width: 3.5rem;
    height: 3.5rem;
  }
  /* .container4 {
    margin: 3rem 0;
  } */
  .container5 h1 {
    font-size: 2rem;
  }
  .banner {
    padding: 1rem;
  }

  .bannerText h1 {
    font-size: 1.5rem;
  }
  .swiper-slide {
    padding: 0rem;
  }


  .swiper-slide-active .testimonialContainer {
    transform: scale(1.1) !important;
    background-color: #222435;
    border-radius: 20px !important;
  }
  .faqContainer {
    display: block;
  }
  .faqText {
    width: 100%;
    margin-bottom: 2rem;
  }
  .faqAccordian {
    width: 100%;
    padding: 0.5rem;
  }
  .tab {
    margin-bottom: 0.5rem;
  }
  .question {
    font-size: 1rem;
  }
  .answer {
    font-size: 0.8rem;
  }

  .footerMain {
    padding: 0;
  }
  .footerMain h1 {
    font-size: 2rem;
  }
  .footerMenu {
    height: 100%;
  }
  .footerDiv1 {
    width: 100%;
    margin-bottom: 2rem;
  }
  .footerCopyright {
    margin: 1rem 0;
    padding: 1rem 0 !important;
  }
  .footerCopyright p {
    margin-bottom: 0.6rem;
    font-size: 0.7rem;
  }

  .aboutText {
    width: 100%;
    order: 0;
  }
  .aboutText h3 {
    font-size: 2rem;
  }
  .aboutImg {
    margin-top: 3rem;
    width: 100%;
    height: 20rem;
  }
  .aboutImg img {
    height: auto;
  }
  .aboutDiv div {
    width: 100%;
  }
  .aboutDiv h4 {
    width: 100%;
    text-align: center;  margin-bottom: 1rem;
  }

  .container3Heading {
    width: 100%;
  }
  .container3Heading h3 {
    font-size: 2rem;
  }
  .container3Content {
    width: 100%;
  }

  .grid {
    margin: 1rem 0;
    grid-template-columns: auto;
  }

  .container3Heading h4 {
    margin-bottom: 1rem;
  }
  .container4Heading h4 {
    margin-bottom: 1rem;
  }
  .container4Content {
    display: block;
  }
  .testimonial {
    width: 100%;
  }
  .testimonialImg {
    margin: 3rem 0;
    width: 100%;
  }
  .aboutContainer {
    margin-top: 2rem;
  }
  .aboutContainer5 h1:nth-child(1) {
    font-size: 2rem;
  }
  .workingModelCard {
    display: block;
  }
  .modelCardGrid {
    width: 100%;
    display: block;
  }
  .aboutContainer5 {
    margin-bottom: 2rem;
  }
  .serviceHeaderContainer {
    margin: 6rem 0rem 2rem;
    padding: 1rem;
  }

  .text:nth-child(1) {
    width: 100%;
  }
  .serviceHeaderContainer h1 {
    font-size: 3rem;
  }
  .serviceParagraph {
    margin: 2rem 0;
  }
  .serviceTabs {
    padding: 0 2rem;
    display: block;
  }
  .serviceTabs h3 {
    margin: 1rem 0;
  }
  .serviceGridItems {
    columns: 2;
  }
  .serviceGrid {
    padding: 0;
  }
  .masonryItem img {
    margin: 0.5rem 0;
  }
  .serviceTestimonial h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .serviceTestimonial {
    margin-bottom: 3rem;
  }
  .serviceCcontainer2 h1 {
    margin-bottom: 1rem;
  }
  .contactContainer {
    padding: 6rem 1rem 3rem;
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }
  .contactImg {
    display: none;
  }
  .contactForm {
    width: 100%;
  }
  .contactForm h1 {
    font-size: 2rem;
  }
  .form input,
  .form textarea {
    width: 250px;
  }
  .contactForm p {
    text-align: center;
  }

  .poster {
    width: 300px;
  }
  .privacyPage li {
    line-height: 20px;
  }
  .footerDiv1 {
    height: 8rem;
  }
  .testimonialImg img {
    height: 350px;
  }
  .videoWrapper{
    margin: 0;
    padding: .2rem;
    width: 8rem;
  }
.serviceVideo {
 grid-template-columns: 1fr 1fr ;
}
}
