@import url(settings.css);

/* Start Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: rtl;
  padding: 0 30px;
  background-color: var(--white-color);
  border-bottom: 1px solid hsla(0, 0%, 12%, 20%);
}

header .logo-div {
  z-index: 100;
}

header .logo {
  width: 100px;
}

header .navList {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}

header .navList .item a {
  font-weight: 500;
  font-size: 18px;
  color: var(--dark-color);
  transition: var(--main-transition);
}

header .navList .item a:hover {
  color: var(--main-color);
}

header .nav-button {
  background: var(--vertical-background);
  background: var(--vertical-linar-gradiant);
  color: var(--white-color);
  padding: 18px 35px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 3;
}

header .nav-button:hover {
  background: rgb(41, 23, 236);
  background: linear-gradient(
    90deg,
    rgb(30, 14, 205) 0%,
    rgb(83, 33, 222) 100%
  );
}

header .navToggle,
header .x-button {
  display: none;
}

@media screen and (max-width: 991px) {
  header {
    padding: 0 20px;
  }
  header .navList {
    gap: 25px;
  }

  header .nav-button {
    font-size: 15px;
    padding: 15px 20px;
  }
}

@media screen and (max-width: 767px) {
  header .navList .item a {
    font-size: 13px;
  }

  header .nav-button {
    padding: 15px;
    font-size: 13px;
    font-weight: 500;
  }
}

/* Phone design */
@media screen and (max-width: 678px) {
  header .nav-button {
    position: absolute;
    bottom: 15%;
    font-size: 18px;
    width: 255px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all var(--main-transition);
    right: -100%;
  }

  header .navList {
    flex-direction: column;
    background-color: var(--white-color);
    -webkit-box-shadow: 14px -20px 20px 20px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: -1px 4px 23px -7px rgba(0, 0, 0, 0.24);
    box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, 0.24);
    width: calc(100% - 70px);
    height: 100vh;
    position: absolute;
    right: -100%;
    top: 0;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 8.5em;
    gap: 40px;
    transition: all var(--main-transition);
    border-left: 1px solid hsla(0, 0%, 12%, 20%);
  }

  header .navList .item a {
    padding-right: 2em;
    font-size: 19px;
    font-weight: 700;
  }

  header .navToggle {
    display: block;
  }
}

header.active .navList {
  right: 0;
}

header.active .nav-button {
  right: 1em;
}

/* End Header */

/* Start Hero section */
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero .container .content h1 {
  /* opacity: 0; */
  width: 80%;
  font-size: 50px;
  color: var(--dark-color);
  font-weight: 700;
  line-height: 75px;
}

.hero .container .content h1 span {
  background-image: linear-gradient(
    90deg,
    rgba(74, 58, 255, 1) 0%,
    rgba(109, 58, 255, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 900;
  width: 100%;
}

.hero .container .content .buttons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.hero .container .content .buttons a {
  display: flex;
  width: 200px;
  height: 55px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
}

.hero .container .content .buttons a.primButton {
  color: var(--white-color);
  background: var(--vertical-background);
  background: var(--vertical-linar-gradiant);
  /* border: 2px solid var(--main-color); */
  /* opacity: 0; */
}

.hero .container .content .buttons a.primButton:hover {
  background: rgb(41, 23, 236);
  background: linear-gradient(
    90deg,
    rgb(30, 14, 205) 0%,
    rgb(83, 33, 222) 100%
  );
}

.hero .container .content .buttons a.SecondButton {
  display: flex;
  gap: 10px;
  color: var(--main-color);
  outline: 2px solid var(--main-color);
  transition: var(--main-transition);
  /* opacity: 0; */
}

.hero .container .image img {
  width: 550px;
}

@media screen and (max-width: 767px) {
  .hero .container {
    flex-direction: column-reverse;
    margin: auto;
    text-align: center;
    gap: 33px;
  }

  .hero .container .image img {
    width: 340px;
  }

  .hero .container .content h1 {
    font-size: 32px;
    text-align: center;
    margin: auto;
    line-height: 45px;
    margin-bottom: 30px;
    width: 100%;
  }

  .hero .container .content .buttons {
    margin: auto;
    justify-content: center;
    margin-bottom: 60px;
    gap: 10px;
  }

  .hero .container .content .buttons a {
    width: 180px;
  }
}

/* End Hero section */

/* Start About us section */
.about {
  margin-top: 40px;
  margin-bottom: 100px;
  position: relative;
}

.about .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about .content .text {
  position: relative;
}

.about .content .text .title {
  position: relative;
  background-image: linear-gradient(
    90deg,
    rgba(74, 58, 255, 1) 0%,
    rgba(109, 58, 255, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 35px;
  width: fit-content;
  text-align: right;
  margin-bottom: 23px !important;
}

.about .content .text .title::before {
  content: "";
  position: absolute;
  width: 124px;
  height: 2.5px;
  background: var(--vertical-linar-gradiant);
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 48px;
}

.about .content .text .paragraph .firstP {
  font-weight: bold;
  color: var(--dark-color);
  font-size: 30px;
  max-width: 90%;
  line-height: 45px;
  margin-bottom: 0 !important;
  text-align: right;
}

.about .content .text .paragraph .secondP {
  font-weight: normal;
  color: hsla(0, 0%, 12%, 80%);
  font-size: 17px;
  line-height: 30px;
  text-align: right;
  max-width: 90%;
}

.about .content .stats {
  display: flex;
  align-items: center;
  margin-left: 5em;
}

.about .content .stats .stat:not(:first-child) {
  margin-right: 40px;
}

.about .content .stats .stat {
  text-align: center;
}

.about .content .stats .stat h1 {
  font-weight: bold;
  color: var(--main-color);
  font-size: 36px;
  margin: 0;
}

.about .content .stats .stat p {
  font-weight: normal;
  font-size: 18px;
  color: var(--dark-color);
}

.about .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.about .cards .card {
  width: 250px;
  height: 250px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 25%);
  border-radius: 35px;
  padding: 20px 20px 0 10px;
}

.about .cards .card .icon {
  background: var(--vertical-linar-gradiant);
  width: 70px;
  height: 70px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .cards .card .text h1 {
  background-image: linear-gradient(
    90deg,
    rgba(74, 58, 255, 1) 0%,
    rgba(109, 58, 255, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
  font-size: 30px;
}

.about .cards .card .text p {
  color: rgba(30, 30, 30, 70%);
  line-height: 24px;
}

/* Styles for mobile devices */
@media screen and (max-width: 820px) {
  .about .container {
    flex-direction: column;
  }

  .about .content .text .paragraph .secondP {
    margin-bottom: 25px;
  }

  /* .about .content .stats {
    justify-content: center;
  } */

  .about .content {
    padding-right: 40px;
    width: 99%;
  }

  .about .cards {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    margin-top: 30px;
    scroll-snap-type: x mandatory;
    margin-right: 100px;
  }
  .about .cards .card {
    width: calc(50% - 15px);
    padding: 10px 10px 0 10px;
    scroll-snap-align: start;
    flex: 0 0 auto;
  }

  @supports (-webkit-overflow-scrolling: touch) {
    html,
    body {
      overflow-x: hidden !important; /* Hide horizontal overflow in WebKit browsers */
    }
  }
}

@media screen and (max-width: 1000px) {
  .about .content .text .title {
    font-size: 30px;
  }

  .about .content .text .paragraph .firstP {
    font-size: 24px;
    max-width: 100%;
    line-height: 34px;
  }
}

.about .cards .card:nth-child(1) .icon {
  border-bottom-left-radius: 35px;
}
.about .cards .card:nth-child(2) .icon {
  border-bottom-right-radius: 35px;
  margin: 0 auto 0 10px;
}
.about .cards .card:nth-child(3) .icon {
  border-top-left-radius: 35px;
}
.about .cards .card:nth-child(4) .icon {
  border-top-right-radius: 35px;
  margin: 0 auto 0 10px;
}

.about .cards .card:nth-child(1) {
  border-bottom-left-radius: 98px;
}
.about .cards .card:nth-child(2) {
  border-bottom-right-radius: 98px;
}
.about .cards .card:nth-child(3) {
  border-top-left-radius: 98px;
}
.about .cards .card:nth-child(4) {
  border-top-right-radius: 98px;
}

/* End About us section */

/* Start Work steps section */
.steps {
  margin-top: 20px;
  margin-bottom: 250px;
}

@media screen and (max-width: 767px) {
  .steps {
    margin-bottom: 100px;
  }
}

.steps .title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.steps .title p {
  color: var(--dark-color);
  font-size: 18px;
}

.steps .title h1 {
  position: relative;
  background-image: linear-gradient(
    90deg,
    rgba(74, 58, 255, 1) 0%,
    rgba(109, 58, 255, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 35px;
  width: fit-content;
  text-align: right;
  margin-bottom: 3em !important;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .steps .title h1 {
    font-size: 28px;
  }
}

.steps .title h1::before {
  content: "";
  position: absolute;
  width: 124px;
  height: 2.5px;
  background: var(--vertical-linar-gradiant);
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 48px;
}

.steps .cards {
  background-image: url(../assets/images/icons/line-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.steps .cards .card {
  position: relative;
  box-shadow: 0 0 3px rgba(0, 0, 0, 25%);
  background-color: #fff;
  z-index: 1000;
  width: 300px;
  height: 250px;
  padding: 16px;
  border-radius: 16px;
}

.steps .cards .card:nth-child(even) {
  top: 128px;
}

@media screen and (max-width: 767px) {
  .steps .cards .card:nth-child(even) {
    top: 0;
  }

  .steps .cards {
    background-image: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .steps .cards .card {
    width: 180px;
    height: 280px;
  }
}
.steps .cards .card .num {
  position: absolute;
  left: 20px;
  color: rgba(30, 30, 30, 20%);
  opacity: 40%;
  font-weight: bold;
  font-size: 50px;
}

.steps .card .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.steps .cards .card .content .icon {
  background-color: var(--main-color);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-top: 30px;
}

.steps .cards .card .content h1 {
  color: var(--dark-color);
  font-weight: bold;
  font-size: 32px;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .steps .cards .card .content .icon {
    margin-top: 55px;
  }

  .steps .cards .card .content h1 {
    font-size: 24px;
  }
}

.steps .cards .card:nth-child(2) .content h1 {
  font-size: 26px;
}

.steps .cards .card .content p {
  color: rgba(30, 30, 30, 70%);
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  text-align: center;
}

/* End Work steps section */

/* Start Projects Section */
.projects {
  padding-top: 70px;
  padding-bottom: 100px;
  background-color: #eff5f5;
  z-index: 1000;
}

.projects .head-text {
  display: flex;
  justify-content: center;
  align-items: center;
}

.projects .head-text .content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 67%;
}

.projects .head-text .content .main-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projects .head-text .content .main-title h1 {
  background-image: linear-gradient(
    90deg,
    rgba(74, 58, 255, 1) 0%,
    rgba(109, 58, 255, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 2.2em;
}

.projects .head-text .content p {
  color: #777;
  font-size: 22px;
  line-height: 36px;
  max-width: 60%;
}

.projects .head-text .button {
  border: 2px solid var(--dark-color);
  color: var(--dark-color);
  border-radius: 12px;
  width: 380px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 7em;
  font-weight: 700;
  font-size: 20px;
}

.projects .projects-cards {
  display: grid;
  grid-template-columns: repeat(2, 0fr);
  gap: 30px;
}

.projects .projects-cards .project {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
  border-radius: 50px;
  width: 580px;
  height: 320px;
  padding: 1.3em;
  position: relative;
  overflow: hidden;
}

.projects .project .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 100%;
}

.projects .project .header .logo {
  width: 150px;
}

.projects .project .header .stars i {
  color: var(--main-color);
}

.projects .project .main-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.projects .project .empty-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.projects .project .empty-content .text {
  justify-content: center;
  align-items: center;
}

.projects .project .empty-content .text h1 {
  margin: 0;
  color: #4a4a4a;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.projects .project .empty-content .text p {
  color: #4a4a4a;
  font-size: 20px;
  text-align: center;
  font-weight: regular;
  max-width: 90%;
}

.projects .project .main-content .tags {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.projects .project .main-content .tags .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 2px; */
  background-color: #e9e1ff;
  color: var(--dark-color);
  font-size: 16px;
  border-radius: 20px;
  padding: 0px 10px;
}

.projects .project .tags .tag p {
  font-family: var(--en-font);
  margin: 0;
  font-size: 14px;
  padding: 7px 5px;
}

.projects .project .tags .tag i {
  font-size: 20px;
}

.projects .project .text {
  display: flex;
  flex-direction: column;
}

.projects .project .text h1 {
  color: var(--dark-color);
  margin-bottom: 3px;
  font-weight: 900;
  font-size: 36px;
}

.projects .project .text p {
  color: #777;
  font-size: 18px;
  width: 80%;
  line-height: 25px;
}

.projects .project-hover {
  display: none;
}

.projects .project:hover .main-content,
.projects .project:hover .stars {
  display: none;
}

.projects .project:hover .project-hover {
  display: block;
  transition: all var(--main-transition);
  width: 100%;
  height: 100%;
  position: relative;
}

.projects .project:hover .project-hover .images {
  display: flex;
  align-items: center;
  position: absolute;
  top: -7em;
  left: 4em;
  width: 100%;
}

.projects .project:hover .project-hover .images img:nth-child(1) {
  z-index: 2;
}

.projects .project:hover .project-hover .images img:nth-child(2) {
  width: 300px;
  height: 200px;
  transform: scale(0.3);
  position: absolute;
  left: 2.5em;
}

.projects .project-hover .images img {
  opacity: 0;
  animation-timing-function: ease-in-out;
  width: 430px;
  height: 250px;
  border: 1px solid rgba(30, 30, 30, 0.2);
  border-radius: 38px;
  position: relative;
  left: 5em;
}

.projects .project:hover .project-hover .images .image1 {
  animation: fade 1s forwards;
}

.projects .project:hover .project-hover .images .image1.goLeft {
  left: 7em;
}

.projects .project:hover .project-hover .images .image2 {
  animation: fade 1s forwards;
  animation-delay: 0.2s;
}

.projects .project:hover .project-hover.bottom .images {
  top: -4em;
}

@keyframes fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.projects .project:hover .project-hover .button {
  position: absolute;
  bottom: 0.5em;
  left: 2em;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  color: var(--dark-color);
  border: 2px solid var(--dark-color);
  width: 168px;
  height: 46px;
  font-weight: 600;
  font-size: 18px;
  animation: fade 1s forwards;
}

.circle {
  position: absolute;
  user-select: none; /* Prevents text/image selection */
  pointer-events: none; /* Prevents mouse interactions like dragging */
}

.circle.prim {
  top: 35%;
}

.circle.second {
  left: 30%;
  top: 0;
}

.button-next,
.button-prev {
  display: none;
}

@media screen and (max-width: 1550px) {
  .projects .projects-cards {
    gap: 20px;
  }
  .projects .projects-cards .project {
    width: 490px;
    height: 280px;
  }
}

@media screen and (min-width: 1151px) {
  .projects .project .main-content.bottom {
    position: relative;
    bottom: -2em;
  }
}

@media screen and (max-width: 1400px) {
  .projects .projects-cards .project {
    width: 480px;
    height: 270px;
  }

  .projects .project.main-content.buttom {
    position: relative;
    bottom: -2em;
  }

  .projects .projects-cards {
    gap: 15px;
  }
  .projects .container {
    margin: 1.5em;
  }
}

@media screen and (max-width: 1200px) {
  .projects .container {
    margin: 0;
  }

  .projects .head-text .button {
    margin-left: 1.5em;
  }
}

/* Mobile */

@media screen and (max-width: 1150px) {
  .projects .projects-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    /* flex-direction: column; */
  }

  .projects .projects-cards .project {
    position: relative;
    height: 450px;
    width: 380px;
  }

  .projects .container {
    margin: auto;
  }

  .projects .project .main-content {
    position: absolute;
    bottom: 1em;
    right: 1.5em;
  }
  .projects .project .header {
    position: absolute;
    top: 0;
    width: 92%;
    right: 1.5em;
  }

  .circle.second {
    top: 0;
    width: 500px;
    height: 556px;
  }

  .projects .head-text .button {
    width: 360px;
    margin-bottom: 2.5em;
  }

  .projects .head-text .content p {
    max-width: 90%;
    text-align: center;
  }

  .projects .head-text {
    flex-direction: column;
    /* align-items: flex-start; */
  }

  .projects .head-text .content {
    flex-direction: column;
    gap: 0;
  }

  .projects .head-text .content .main-title {
    flex-direction: row;
    gap: 60px;
  }

  .projects .head-text .content .main-title img {
    width: 65px;
  }

  .projects .project .header.top {
    top: 2em;
  }

  .projects .project .header.top {
    top: 2em;
  }
}

@media screen and (max-width: 910px) {
  .button-next,
  .button-prev {
    display: block;
  }

  .arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 45px;
  }

  .arrows .button {
    background-color: var(--dark-color);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 35px;
    cursor: pointer;
  }

  .button-next {
    transform: scaleX(-1);
  }
}

@media screen and (max-width: 767px) {
  .projects-cards {
    width: 100%;
    /* overflow: hidden;  */
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out;
  }

  .projects .projects-cards .project {
    width: 100%;
    max-width: 330px;
    padding: 1em;
    overflow: hidden;
  }

  .projects-cards.mySwiper .swiper-wrapper {
    display: flex;
  }

  .projects .head-text .content {
    width: 104%;
  }

  .projects .head-text .content .main-title {
    gap: 30px;
  }

  .projects .head-text .content .main-title img {
    width: 50px;
  }
}

/* End Projects Section */

/* Start testimonials */
.testimonials {
  margin-top: 70px;
  margin-bottom: 200px;
}

.testimonials .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.testimonials .head .head-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials .head .head-title .title {
  position: relative;
  display: flex;
}

.testimonials .head .head-title .title .star-background {
  position: absolute;
  right: -50px;
  top: 0;
  width: 100px;
}

.testimonials .head .head-title .title h1 {
  margin-right: 74px;
  background-image: linear-gradient(
    90deg,
    rgba(74, 58, 255, 1) 0%,
    rgba(109, 58, 255, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 40px;
}

.testimonials .head .arrows {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 16px;
  margin-left: 5em;
}

.testimonials .head .arrows .button {
  background-color: var(--dark-color);
  color: var(--white-color);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.testimonials .testi-button-prev {
  transform: scaleX(-1);
}

.testimonials .cards {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-left: 30px; */
}

/* Adjusting client styles for responsive */
.testimonials .cards .client.center {
  width: 680px !important;
  height: 340px !important;
  box-shadow: 0px 0px 25px 0px #1e1e1e1c;
  background-color: #f4e4ff;
}

.testimonials .cards .client {
  position: relative;
  background-color: #f8eeff;
  width: 600px !important;
  height: 320px !important;
  border-radius: 12px;
}

.testimonials .moveing-logo {
  display: block !important;
}

.testimonials .cards .client .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

.testimonials .cards .client .logo-img {
  background-color: var(--white-color);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials .cards .client .logo img {
  width: 38px;
}

.testimonials .cards .client .logo img.full {
  border-radius: 50%;
  width: 100%;
}

.testimonials .cards .client .clientName {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 700;
}

.testimonials .cards .client .review {
  position: relative;
  padding: 0 25px;
}

.testimonials .review p {
  color: var(--dark-color);
  font-size: 22px;
  text-align: right;
  width: 510px;
  margin: 1em 3.5em;
  margin-bottom: 0em !important;
  line-height: 30px;
}

.testimonials .client:not(.center) .review p {
  margin-right: 2.5em;
  margin-left: 2.5em;
  max-width: 90%;
}

.testimonials .review .quote-down,
.testimonials .review .quote-up {
  position: absolute;
}

.testimonials .review .quote-down {
  top: -1em;
}

.testimonials .review .quote-up {
  left: 3em;
}

.testimonials .moveing-star {
  position: absolute;
  bottom: 1em;
  right: 1.5em;
}

.testimonials .swiper-wrapper {
  align-items: center !important;
}

@media screen and (max-width: 1450px) {
  .testimonials .cards .client.center {
    width: 630px !important;
  }

  .testimonials .cards .client {
    width: 530px !important;
  }

  .testimonials .review p {
    margin: 1em 2.5em;
    font-size: 22px;
    max-width: 90%;
  }
}

@media screen and (max-width: 1150px) {
  .testimonials .cards .client {
    width: 400px !important;
    height: 480px !important;
  }
  .testimonials .cards .client.center {
    width: 450px !important;
    height: 500px !important;
  }

  .testimonials .cards .client .logo {
    margin-bottom: 5em;
  }

  .testimonials .review p {
    margin: 1em 1.5em;
    /* text-align: center; */
  }

  .testimonials .review .quote-down {
    top: -3em;
  }
}

@media screen and (max-width: 910px) {
  .testimonials .cards .client {
    width: 390px !important;
    height: 450px !important;
  }

  .testimonials .cards .client.center {
    width: 400px !important;
    height: 480px !important;
  }

  .testimonials .cards .client .logo {
    margin-bottom: 3em;
  }

  .testimonials .cards .client.center .logo {
    margin-bottom: 4em;
  }

  .testimonials .review p {
    margin-right: 1.5em !important;
  }
}

@media screen and (max-width: 676px) {
  .testimonials .head {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonials .head .arrows {
    margin: auto;
    margin-top: 2.5em;
    margin-bottom: 2em;
  }

  .testimonials .head .head-title {
    flex-direction: row;
    justify-content: space-between;
    width: 95%;
  }

  .testimonials .head .head-title .title h1 {
    font-size: 30px;
    margin-right: 60px;
  }
}

/* End testimonials */

/* Start Get Started Section */
.get-started {
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}

.get-started .content {
  background: rgb(200, 192, 248);
  background: linear-gradient(
    90deg,
    rgba(200, 192, 248, 1) 0%,
    rgba(248, 238, 255, 1) 10%,
    rgba(244, 244, 245, 1) 50%,
    rgba(248, 238, 255, 1) 88%,
    rgba(200, 192, 248, 1) 100%
  );
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.glass-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 50%;
  filter: blur(7px);
}

.left {
  left: 0;
  bottom: -130px;
}

.right {
  right: 0;
  top: -130px;
}

.get-started .star {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -50px;
  width: 100px;
}

.get-started .content h1 {
  background-image: linear-gradient(
    90deg,
    rgba(74, 58, 255, 1) 0%,
    rgba(109, 58, 255, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 30px;
  text-align: center;
}

.get-started .content p {
  text-align: center;
  color: var(--dark-color);
  font-size: 18px;
  line-height: 30px;
}

.get-started .content p span {
  font-weight: 700;
}

.get-started .content .button {
  background: rgb(129, 110, 249);
  background: linear-gradient(
    90deg,
    rgba(129, 110, 249, 1) 0%,
    rgba(103, 100, 241, 1) 50%,
    rgba(137, 119, 246, 1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 350px;
  height: 58px;
  margin: auto;
  border-radius: 10px;
  color: var(--white-color);
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .glass-circle {
    display: none;
  }

  .get-started .content h1 {
    font-size: 28px;
  }

  .get-started .content .button {
    width: 320px;
    margin-top: 30px;
  }
}
/* End Get Started Section */

/* Start Footer */
.footer .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.footer .content .navlist {
  display: flex;
  gap: 50px;
}

.footer .content .navlist a {
  color: #283646;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
  text-align: center;
}

.footer .content .navlist a:hover {
  color: #2b4057;
}

.footer .content .social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  margin-top: 40px;
}

.footer .content .social a {
  border: 1px solid #283646;
  border-radius: 50%;
  /* padding: 10px; */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.footer .content .social a:hover {
  background-color: #283646;
}
.footer .content .social a:hover i {
  color: var(--white-color);
}

.footer .content .social i {
  color: #283646;
  font-size: 20px;
}

.footer .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--dark-color);
  padding: 15px 50px;
}

.footer .foot p {
  background: rgb(200, 192, 248);
  background: linear-gradient(
    90deg,
    rgba(200, 192, 248, 1) 0%,
    rgba(248, 238, 255, 1) 10%,
    rgba(244, 244, 245, 1) 50%,
    rgba(248, 238, 255, 1) 88%,
    rgba(200, 192, 248, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.footer .foot .payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.footer .foot .payments img {
  width: 60px;
}

.footer .foot .politics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  background: rgb(200, 192, 248);
  background: linear-gradient(
    90deg,
    rgba(200, 192, 248, 1) 0%,
    rgba(248, 238, 255, 1) 10%,
    rgba(244, 244, 245, 1) 50%,
    rgba(248, 238, 255, 1) 88%,
    rgba(200, 192, 248, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.footer .foot .politics a {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer .foot {
    flex-direction: column;
  }
}
/* End Footer */

/* Start Go top top button */
.go-toTop {
  width: 50px;
  height: 50px;
  /* border: 3px solid red;  */
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 2em;
  right: 2em;
  z-index: 1000;
  border-radius: 50%;
  color: var(--white-color);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, border-color 0.3s;
}

@media (max-width: 767px) {
  .go-toTop {
    display: none;
  }
}
/* End Go top top button */

/* Start Modals */
.modaal-container {
  text-align: center !important;
  border-radius: 8px !important;
}

.modaal-wrapper h1 {
  color: var(--main-color) !important;
}

.modaal-wrapper p {
  font-size: 18px !important;
}

.modaal-confirm-btn.modaal-ok {
  background-color: var(--main-color) !important;
}
/* End Modals */
