@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400&family=Raleway:wght@400&family=Smooch+Sans:wght@500&family=Rubik&display=swap");

body {
  overflow-x: hidden;
}

.thumbnailImage {
  width: 70px;
  height: auto;
}
.typingWords {
  color: rgb(165, 40, 40);
  font-family: monospace;
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid orange; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: 0.15em; /* Adjust as needed */
  animation: typing 3.5s steps(30, end), blink-caret 1s step-end infinite;
}

/* button {
  background-color: #eac100 !important;
  color: rgb(120, 74, 226) !important;
} */

h2 {
  font-size: 24px;
  color: #0b8457;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}

h3 {
  font-size: 20px;
  font-family: "Manrope", sans-serif;
  font-weight: 200;

}
.btn {
  margin-left: 1rem;
  margin-top: 1rem;
}

.promotional {
  height: 150px;
  width: 150px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%; /* may require vendor prefixes */
  background: rgb(192, 192, 40);
  left: 50%;
}
.serviceImage {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  max-width: 80%;
  animation: bounce 4s linear infinite;
}

.serviceImage2 {
  width: 100px;
  animation: slide 3s linear infinite;
}

.serviceList li {
  list-style-type: none;
  font-size: 18px;
}
.serviceList li span {
  color: blue !important;
}

.serviceList h5 {
  text-align: center;
}

.serviceContainer .card {
  padding: 1rem;
  margin-top: 1rem;
}

.serviceContainer .container h2 h3 p {
  color: white;
}

.makeTheMost {
  background-image: image("");
}

:root {
  --surface-color: #fff;
  --curve: 40;
}

* {
  box-sizing: border-box;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 5vw;
  padding: 0;
  list-style-type: none;
}

.card {
  position: relative;
  display: block;

  height: 100%;
  border-radius: calc(var(--curve) * 1px);
  overflow: hidden;
  text-decoration: none;
}



.card__image {
  width: 100%;
  height: auto;
}

.card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  border-radius: calc(var(--curve) * 1px);
  background-color: var(--surface-color);
  transform: translateY(100%);
  transition: 0.2s ease-in-out;
}

.card:hover .card__overlay {
  transform: translateY(0);
}

.card__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 2em;
  border-radius: calc(var(--curve) * 1px) 0 0 0;
  background-color: var(--surface-color);
  transform: translateY(-100%);
  transition: 0.2s ease-in-out;
}

.card__arc {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 100%;
  right: 0;
  z-index: 1;
  /* background-color: #017143; */
}

.card__arc path {
  fill: var(--surface-color);
  d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 Z");
}

.card:hover .card__header {
  transform: translateY(0);
}

.card__thumb {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.card__title {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 0.3em;
  color: #6b0e88;
}

.card__tagline {
  display: block;
  margin: 1em 0;
  font-family: "MockFlowFont";
  font-size: 1em;
  color: #000000;
}

.card__status {
  font-size: 0.8em;
  color: #d7bdca;
}

.card__description {
  padding: 0 2em 2em;
  margin: 0;
  font-size: 20px;
  color: #080808;
  font-family: "MockFlowFont";
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.serviceCard {
  max-width: 24rem;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  margin: 5px;
  padding: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.whyUsCard {
  max-width: 18rem;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  margin: 5px;
  padding: 1rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.whyUsCard i {
  font-size: 50px;
  color: #10316b;
}

.whyUsCard h5 {
  color: #0b8457;
}
.whyUsCard p {
  color: rgb(22, 22, 22);
}

.myForm input {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #10316b;
}

.myForm textarea {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #10316b;
}

.myForm {
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}
/* <h5 className="card-title" style={{ color: "#0b8457" }}> */

/* style={{ fontSize: "50px", color: "#0b8457" }} */

/* The typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}

@keyframes bounce {
  0% {
    transform: translate(0px, 0px) rotateZ(0.001deg);
    animation-timing-function: ease-in-out;
  }

  50% {
    transform: translate(0px, 8px) rotateZ(0.001deg);
    animation-timing-function: ease-in-out;
  }

  100% {
    transform: translate(0px, 0px) rotateZ(0.001deg);
    animation-timing-function: ease-in-out;
  }
}

@keyframes slide {
  0% {
    transform: translate(0px, 0px) rotateZ(0.001deg);
    animation-timing-function: ease-in-out;
  }

  50% {
    transform: scale(0.7);
    animation-timing-function: ease-in-out;
  }

  100% {
    transform: translate(0px, 0px) rotateZ(0.001deg);
    animation-timing-function: ease-in-out;
  }
}

/* Mobile View Section */

@media (max-width: 960px) {
  .content {
    padding: 2rem;
  }

  .noOnPhone {
    display: none;
  }
  .typingWords {
    font-size: 20px;
    color: #3d5af1;
  }

  .firstSpan {
    color: #eac100;
  }
  .secondSpan {
    color: #eac100;
  }

  .perfectLanding {
    font-family: "Courier New", Courier, monospace;
    margin-top: 2rem;
    text-align: left;
    color: #3d5af1;
    font-size: 20px;
  }

  .imgBox {
    display: none;
    /* width: 50vw; */
    /* max-width: 50%;
   position: absolute;
   float: right;
   top: 5px; */
    /* z-index: -12; */
  }

  /* .mainImage {
    width: 50vw;
    position: absolute;
    margin-left: auto;
    top: 30vh;
    right: 5px;
    opacity: 0.7;
  } */

  .typingWords {
    font-size: 14px;
  }
  .arrangeGrid {
    display: grid;
    grid-template-columns: 100%;
  }

  .gridForImage {
    order: 2;
  }
  .gridForText {
    order: 1;
  }
  .thumb {
    display: none;
  }
}

/* Desktop View Section */

@media (min-width: 961px) {
  .content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    /* text-align: center; */
    margin: 60px 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .content .textBox {
    position: relative;
  }

  /* .content .textBox h1 {
    color: #823fa8;
    font-size: 3em;
    font-weight: 500;
  } */

  .content .textBox h2 {
    color: #7634c0;
    /* font-size: 3em; */
    font-weight: 500;
  }

  /* .content .textBox h1 span {
    color: #5bdf1e;

    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 900;
  } */

  .content .textBox p {
    color: black;
  }
  .content .textBox button {
    margin-left: auto;
  }
  .content .textBox a {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: #017143;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
  }

  .imgBox {
    /* width: 600px; */
    /* display: flex;
         justify-content: flex-start; */
    /* padding-right: 50px; */
    margin-top: -100px;
    max-height: 600px;
  }

  .thumb {
    position: absolute;
    left: 40%;
    bottom: 20px;
    display: flex;
    align-items: center;
  }

  .thumb li {
    list-style: none;
    display: inline-block;
    margin: 0 px;
    cursor: pointer;
    transition: 0.5s;
  }

  .thumb li:hover {
    transform: translate(-5px);
  }
  .thumb li img {
    width: 60px;
  }

  .circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #017143;
    clip-path: circle(700px at right 800px);
  }

  .mainImage {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .webComponentsItems {
    display: flex;
    justify-content: center;
  }
  .webComponentsItems .card {
    margin: 1rem;
  }
  .webComponentsTitle {
    text-align: center;
  }
  .typingWords {
    font-size: 20px;
    color: #3d5af1;
  }

  .firstSpan {
    color: #eac100;
  }
  .secondSpan {
    color: #eac100;
  }

  .perfectLanding {
    font-family: "Courier New", Courier, monospace;
    margin-top: 2rem;

    color: #3d5af1;
  }

  .firstList {
    /* margin-top: 2rem; */
    align-items: center;
  }
  .firstList p {
    color: #3d5af1 !important;
  }
}
