@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Comfortaa", sans-serif;
  border: none;
  outline: none;
  text-decoration: none;
  color: var(--primarydark);
}
:root {
  --primary: #2ec592;
  --primarydark: #1d2435;
  --secoundary: #335cc5;
  --secbg: #e9fff8;
  --border: 2px solid var(--primarydark);
  --gradient: linear-gradient(90deg, #1dbdbd 0%, #2ec592 100%);
}
[class*="grid"] {
  display: grid;
}
[class*="grid"].align-center {
  align-items: center;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}
body {
  -webkit-text-size-adjust: 100%;
}
p,
a,
input,
select,
textarea,
button {
  font-size: 1.6rem;
  font-weight: 500;
}
p {
  line-height: 1.6;
}
img,
video {
  max-width: 100%;
}
.image img {
  width: 100%;
}
.container {
  max-width: 1240px;
  padding: 0 2rem;
  margin: auto;
  width: 100%;
}
button {
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--primarydark);
  color: white;
  border-radius: 5rem;
  text-transform: capitalize;
  font-weight: 500;
}

section {
  padding: 8rem 0;
}
/* header section */
header {
  height: 10rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: transparent;
  transition: 0.3s;
}
header.sticky {
  background: white;
  transition: 0.3s;
  border: unset;
  box-shadow: #959da533 0px 8px 24px;
}
header .color {
  display: none;
}
header.sticky .color {
  display: block;
}
header .links a {
  color: white;
}
header.sticky .links a {
  color: var(--primarydark);
}
header.sticky .white {
  display: none;
}
.logo img {
  height: 9rem;
  max-width: 20rem;
}
header .container {
  height: 100%;
  max-width: 100%;
  padding: 0 5rem;
}
header .container,
.links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.menu {
  font-size: 3rem;
  display: none;
}
header button {
  padding: 1.5rem 2rem;
}
/* header section end */

@media (max-width: 1024px) {
  html {
    font-size: 45%;
  }
  .container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 660px) {
  html {
    font-size: 60%;
  }
  header .container {
    padding: 0 1.5rem;
    align-items: center;
    height: 100%;
  }
  .menu {
    display: block;
  }
  header .links {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    height: calc(100vh - 8rem);
    position: fixed;
    top: 8rem;
    background: #000000b8;
    backdrop-filter: blur(15px);
    width: 100%;
    padding: 5rem 0;
    left: 0px;
    transition: all 0.3s ease 0s;
    transform: translateX(100%);
  }
  .active {
    transform: translateX(0%) !important;
  }
  header .links a {
    color: white;
  }
  section {
    padding: 5rem 0;
    overflow: hidden;
  }
  header.sticky .menu {
    color: white;
  }
  [class*="grid"],
  .active {
    grid-template-columns: 1fr !important;
    gap: 5rem !important;
  }
  .fix {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
main {
  background: var(--gradient);
  clip-path: polygon(0% 0%, 100% 0, 100% 80%, 50% 100%, 0 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 0;

  height: calc(70vh - 8rem);
}
main .container {
  display: grid;
  place-items: center;
}
main .content {
  display: grid;
  place-items: center;
  gap: 1.5rem;
  text-align: center;
}
main .content h1 {
  font-size: 8.5rem;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.2;
  color: white;
}
main .content :is(span, small, i) {
  color: white;
  font-weight: 700;
}
main .content p {
  font-size: 1.8rem;
  max-width: 85rem;
  width: 100%;
  color: white;
}

.process {
  width: fit-content;
  margin: auto;
}
.process .typo h3 {
  font-size: 3rem;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.wraper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  border-top: var(--border);
  padding-top: 5rem;
  row-gap: 5rem;
}
.card-sm {
  padding: 1.5rem;
  border-radius: 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  background: white;
  box-shadow: #959da533 0px 8px 24px;
}
.card-sm::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 4rem;
  top: -5rem;
  background: var(--primarydark);
  left: 50%;
  transform: translateX(-50%);
}
.card-sm::after {
  content: "";
  position: absolute;
  width: 1.5rem;
  aspect-ratio: 1/1;
  top: -2rem;
  background: var(--primary);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5rem;
}
.card-sm .ico {
  width: 5rem;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  background: var(--gradient);
  border-radius: 50%;
}
.ico :is(span, i) {
  color: white;
  font-size: 2.5rem;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
.text-block :is(h2, h3) {
  font-size: 5rem;
  line-height: 1.1;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}
.text-block :is(span, small) {
  color: var(--primary);
  font-weight: 600;
}
.text-block button {
  margin-top: 3rem;
}
.typo {
  text-align: center;
  max-width: 70rem;
  margin: auto;
  margin-bottom: 5rem;
}
.typo h2 {
  font-size: 5rem;
  line-height: 1.2;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.typo h2 span {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logos .logo {
  padding: 1.5rem;
  border-radius: 3rem;
  aspect-ratio: 2/1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  margin: 5rem 1rem;
  box-shadow: #959da533 0px 8px 24px;
}
.logos .logo img {
  height: unset;
  width: unset;
  max-height: 10rem;
  max-width: 100%;
  filter: grayscale(1);
  transition: 0.3s;
}
.slick-center img {
  filter: grayscale(0) !important;
  transition: 0.3s !important;
}
section.bg {
  background: var(--secbg);
}
.card-2 {
  background: white;
  padding: 3rem;
  box-shadow: #00000029 0px 8.76206px 43.8103px -13.1431px;
  border-radius: 1rem;
  transition: all 0.3s ease 0s;
}
.card-2:hover {
  transform: translateY(-1rem);
}
.card-2 .icon img {
  height: 5rem;
  display: block;
  margin: auto;
}
.card-2 .body {
  text-align: center;
  margin-top: 3rem;
}
.card-2 h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.card-2 p {
  font-size: 1.4rem;
}
.testimonial .client {
  padding: 3rem;
  margin: 5rem 2rem;
  background: white;
  border-radius: 3rem;
  box-shadow: #959da533 0px 8px 24px;
}
.quote {
  position: relative;
}
.quote p {
  font-weight: 500;
  height: 15rem;
  overflow: hidden;
  color: var(--primarydark) !important;
  font-size: 1.4rem !important;
}
.quote img {
  position: absolute;
  width: 5rem;
  top: -5rem;
}
.profile {
  width: 4rem;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
}
.profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.testimonial .details {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}
.testimonial .details .stars svg {
  fill: var(--primary);
  width: 1.8rem;
}
.testimonial .details .stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonial .details h5 {
  font-size: 1.6rem;
}
.testimonial,
.logos {
  position: relative;
}
.testimonial::before,
.logos::before {
  content: "";
  height: 100%;
  position: absolute;
  left: 0px;
  width: 10rem;
  top: 0px;
  background: linear-gradient(
    90deg,
    rgb(255, 255, 255),
    rgba(255, 255, 255, 0)
  );
  z-index: 99;
}
.testimonial::after,
.logos::after {
  content: "";
  height: 100%;
  position: absolute;
  right: 0px;
  width: 10rem;
  top: 0px;
  background: linear-gradient(
    -90deg,
    rgb(255, 255, 255),
    rgba(255, 255, 255, 0)
  );
  z-index: 99;
}
section.bg .logos::after {
  background: linear-gradient(-90deg, #e9fff8, #e9fff800);
}
section.bg .logos::before {
  background: linear-gradient(90deg, #e9fff8, #e9fff800);
}
section button {
  background: var(--gradient);
  font-weight: 700;
}
.page-navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.page-navigation p {
  font-size: 1.6rem !important;
  line-height: 1;
  font-weight: 700 !important;
  text-wrap: nowrap;
}
.page-navigation i {
  font-size: 2.5rem;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-3 .card-3 {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1.5;
  overflow: hidden;
  border-radius: 3rem;
}
.card-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.card-3::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(#0000006e 0%, #000000 100%);
  left: 0;
  top: 0;
}
.card-3 .txt {
  position: absolute;
  padding: 3rem;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.card-3 .txt :is(h3, p) {
  color: white;
}
.card-3 .txt h3 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.card-3 .txt p {
  font-size: 1.5rem;
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.grid-4 .card-2 {
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
  border-radius: 3rem;
  background: var(--gradient);
}
.grid-4 .card-2 button {
  position: absolute;
  padding: 0;
  width: 8rem;
  height: 5rem;
  right: 0;
  bottom: 0;
  border-radius: unset;
  border-top-left-radius: 2rem;
  background: var(--primarydark);
}
.grid-4 .card-2 button i {
  color: white;
  font-size: 3rem;
}
.grid-4 .card-2 :is(p, h3) {
  color: white;
}
.grid-2 .typo {
  text-align: left;
}
.map {
  position: relative;
  display: grid;
  gap: 5rem;
}
.map .ico {
  background: var(--gradient);
  width: 6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
}
.map > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-self: start;
  gap: 1.5rem;
  height: fit-content;
}
.map > div h3 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}
.map::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  background: var(--gradient);
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.bg-img {
  position: relative;
  background: var(--gradient);
}
.bg-img img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  filter: grayscale(1);
  opacity: 0.2;
}
.bg-img .typo {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.bg-img .typo :is(h2, p) {
  color: white;
}
.bg-img button {
  display: inline-block;
  margin: auto;
  background: var(--primarydark);
  margin-top: 3rem;
}
input,
.select {
  background: none;
  color: var(--secoundary);
  padding: 2.5rem 3rem 1rem;
  width: 100%;
  font-size: 1.6rem;
}
.select {
  padding: 0;
  position: relative;
}
.select label {
  position: absolute;
  font-size: 1.3rem;
  left: 3rem;
  top: 0.5rem;
  color: var(--secoundary);
}
.select select {
  background: none;
  padding: 2.5rem 3rem 1rem;
  width: 100%;
  appearance: none;
  color: var(--secoundary);
  cursor: pointer;
}
select option {
  color: var(--secoundary);
}
.fild,
.select {
  background: #f5f5f5;
  border-radius: 1rem;
  position: relative;
  margin-bottom: 1.5rem;
  border: 1px solid #06213217;
}

.fild label {
  color: var(--primarydark);
  font-size: 1.6rem;
  left: 3rem;
  line-height: 1;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 0.3s;
  font-weight: 500;
  pointer-events: none;
}

.fild input:-webkit-autofill ~ label,
.fild input:focus ~ label,
.fild input:not(:placeholder-shown) ~ label {
  color: var(--primary);
  font-size: 1.3rem;
  opacity: 1;
  top: 1.5rem;
}
form .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
form {
  width: 100%;
}
textarea {
  border: 1px solid #06213217;
  height: 20rem;
  width: 100%;
  padding: 3rem;
  resize: none;
  border-radius: 1rem;
  background: #f5f5f5;
  color: var(--primarydark);
}
form button {
  width: 100%;
  margin-top: 1.5rem;
  border-radius: 1rem;
  text-transform: uppercase;
  font-size: 2rem;
  color: white;
}
.form {
  background: white;
  padding: 5rem;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border-radius: 3rem;
}
.form .info {
  display: grid;
  gap: 3rem;
}
.info .grd {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}
.info .grd i {
  font-size: 3rem;
  width: 5rem;
  aspect-ratio: 1/1;
  background: var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
}
.info .grd h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.case {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  padding: 5rem;
  background: white;
  border-radius: 3rem;
  box-shadow: #110c2e18 0px 48px 80px 0px;
  margin-bottom: 3rem;
}
.case h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.case .content {
  display: grid;
  gap: 3rem;
}
.case .testimonial::before,
.case .testimonial::after {
  display: none;
}

.case .testimonial .client {
  margin: 0;
  margin-top: 5rem;
}
.case .testimonial .client p {
  height: fit-content;
}
