html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-image: url("./prr.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  display: block;
  justify-content: center;
  align-items: center;
}

#logo {
  width: 6rem;
}
h3 {
  margin-top: -3px;

  margin-bottom: -4px;
  background: linear-gradient(90deg, #39f8f0, #28fac0);
  -webkit-background-clip: text;
  font-family: Ubuntu;
  font-size: 2.5rem;
  -webkit-text-fill-color: transparent;
}

.intro-page {
  animation: fade-in linear forwards;
  animation-timeline: view();
  animation-range: entry;
  scale: 0.1;
  opacity: 0;
}

.menu-mobile {
  display: none;
}

.sidebar {
  display: flex;
  flex-direction: row;
}

header {
  display: flex;
  flex-direction: row;
  margin: 0%;
  z-index: 1;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 1rem;
  height: auto;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(100px);
}

header nav {
  display: flex;
  flex-direction: row;
  gap: 100%;

  justify-content: space-between;
  align-items: center;
}

.left-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-link {
  text-align: center;
}

ul {
  display: flex;
  gap: 2rem;
  list-style-type: none;
  align-items: center;

  justify-content: center;
}

nav ul a {
  display: flex;
  gap: rem;
  list-style-type: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-family: Josefin Sans;
  font-weight: 700;
  font-size: 0.8rem;

  color: black;
}

button {
  text-align: center;
  padding: 0.5rem;
  width: 6rem;
  height: 3rem;
  border-radius: 1rem;
  border: none;
  background: linear-gradient(90deg, #2d5c5c, #00ff00);
  color: black;
}

button:hover {
  scale: 1.05;
  transition: ease-in 0.8s;
  color: red;
}

.home {
  width: auto;
  height: 100vh;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

h1 {
  font-family: Ubuntu;
  font-size: 6rem;
  color: white;
}
h2 {
  margin-top: -1.5rem;
  font-size: 4rem;
  font-family: Josefin Sans;
  color: #28fac0;
}

.note {
  font-size: 2rem;
  font-family: Roboto;
  font-weight: 500;
  color: rgb(187, 186, 186);
}

.about {
  margin-left: 1rem;
  margin-right: 1rem;
  display: grid;
  justify-content: center;
  margin-top: -7rem;
  align-items: center;
  width: auto;
  height: 100vh;
  padding-top: 7rem;
  text-align: center;
}

.about > div {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  grid-template-rows: auto;

  border-radius: 2rem;

  display: grid;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100vh;
  padding-right: 1rem;
  padding-left: 1rem;
  text-align: center;
}

.about-page-img > img {
  width: 50rem;

  border-radius: 3rem;
  animation: fade-in linear forwards;
  animation-timeline: view();
  animation-range: entry;
  scale: 0.6;
  opacity: 0;
}

.about-page > .note {
  font-size: 1.5rem;
  text-align: left;
  font-family: Roboto;
  animation: fade-in linear forwards;
  animation-timeline: view();
  animation-range: entry;
  scale: 0.1;
  opacity: 0;
}

.about-page > h2 {
  animation: fade-in linear forwards;
  animation-timeline: view();
  animation-range: entry;
  scale: 0.1;
  opacity: 0;
  font-size: 5rem;
  text-align: left;
}

.dee {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10rem;
}

.about-page > h1 {
  font-family: Ubuntu;
  font-size: 2rem;

  color: white;
}

.about > div > h1 {
  animation: fade-in linear forwards;
  animation-timeline: view();
  animation-range: entry;
  scale: 0.15;
  opacity: 0;
  font-size: 2rem;
  font-family: Josefin Sans;
}
@keyframes fade-in {
  to {
    scale: 1;
    opacity: 1;
  }
}

/* For The Form / Contact Us*/
.contact {
  margin-left: 1rem;
  margin-right: 1rem;
  display: grid;
  justify-content: center;
  margin-top: -4rem;
  align-items: center;
  width: auto;
  gap: 1rem;
  height: 100vh;
  padding-top: 7rem;
  text-align: center;
}

.contact > div {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  grid-template-rows: auto;

  border-radius: 2rem;

  display: grid;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100vh;
  padding-right: 2rem;
  padding-left: 2rem;
  text-align: center;
}

.contact > div > h1 {
  color: white;
  font-family: Josefin Sans;
  font-size: 2rem;
}

.con {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 4rem;
  align-items: center;
  gap: 35rem;
}

.con > .contact-page {
  text-align: left;
}

.contact-page-form > form {
  display: flex;
  justify-content: center;
  gap: 2.5rem;

  align-items: center;
  flex-direction: column;
}

.contact-page-form > form > input {
  width: 49rem;
  height: 2rem;
  caret-color: #28fac0;
  border: none;
  border-radius: 1rem;
  padding: 1rem;
  outline: none;
  font-family: Ubuntu;
  font-size: 1rem;
}

.contact-page > h2 {
  font-size: 2rem;
  color: #28fac0;
  font-family: Ubuntu;
}

.contact-page-form > form > textarea {
  width: 49rem;
  height: 8rem;
  border: none;
  border-radius: 1rem;
  padding: 1rem;
  outline: none;
  font-family: Ubuntu;
  font-size: 1rem;
}

.contact-page-form > form > button {
  display: flex;
  flex-direction: row;

  text-align: center;
  width: 24rem;
  height: 5rem;
  gap: 1rem;
  padding: 1rem;
  justify-content: center;
  align-items: center;
  outline: none;
  font-family: Ubuntu;
  font-size: 1.2rem;
  border: none;
  border-radius: 1rem;
}

.contact-page-form > form > button:hover {
  display: flex;
  flex-direction: row;
  text-align: center;
  width: 24rem;
  color: rgb(255, 255, 255);
  height: 5rem;
  padding: 1rem;
  justify-content: center;
  align-items: center;
  outline: none;
  font-family: Ubuntu;
  font-size: 1.2rem;
  border: none;
  scale: 1.05;
  transition: ease-in 0.8s;
  border-radius: 1rem;
}

.contact-page-form > form > button:active {
  display: flex;
  flex-direction: row;
  text-align: center;
  width: 24rem;
  color: rgb(255, 255, 255);
  height: 5rem;
  padding: 1rem;
  justify-content: center;
  align-items: center;
  outline: none;
  font-family: Ubuntu;
  font-size: 1.2rem;
  border: none;
  scale: 0.8;
  transition: ease-in 0.4s;
  transition: ease-out 0.5s;
  border-radius: 1rem;
}

.contact-page-form > form > button > h5 {
  font-family: Ubuntu;
  font-size: 1.2rem;
  color: #000000;
}

.contact-page > h2 {
  font-family: Ubuntu;
  font-size: 3rem;
  color: #28fac0;
}

.contact-page > p {
  font-family: Ubuntu;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

.contact-page {
  margin-top: 2rem;
}

.contact-page > h5 {
  font-family: Ubuntu;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
}

.testimonial-page {
  display: block;
  padding-top: 10rem;

  justify-content: center;
  align-items: center;

  width: auto;

  height: fit-content;
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  gap: 3rem;
  border-radius: 2rem;

  display: grid;
  padding-top: 10rem;
  padding-bottom: 2rem;

  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  width: auto;
  padding-left: 3rem;

  height: fit-content;

  text-align: center;
}

.img-container {
  background-color: #28fabed3;
  width: 20rem;
  height: 20rem;
  border-radius: 10rem;
}

.img-container p {
  color: #ffffff;
  font-family: Josefin Sans;
  font-size: 1.5rem;
  font-weight: 600;
}

.img-container img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.test1 {
  width: 20rem;
  height: 35rem;
  border-radius: 2rem;
  padding: 2rem;
  display: block;
  gap: 5rem;

  background-color: rgba(30, 191, 202, 0.552);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
}

.content {
  margin-top: 2rem;
}

.content p {
  font-size: 1.5rem;
  font-family: Ubuntu;
  color: white;
}

.mini-burg {
  display: none;
}

@media screen and (max-width: 500px) {
  #logo {
    width: 3rem;
  }
  h3 {
    background: linear-gradient(90deg, #39f8f0, #28fac0);
    -webkit-background-clip: text;
    font-family: Ubuntu;
    font-size: 1.5rem;
    -webkit-text-fill-color: transparent;
  }

  .intro-page {
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
    scale: 0.1;
    opacity: 0;
  }

  header {
    display: flex;
    flex-direction: row;
    margin: 0%;
    z-index: 1;
    position: fixed;
    left: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    right: 0;
    top: 0;
    width: 100vw;

    height: auto;
    justify-content: space-between;

    backdrop-filter: blur(100px);
  }
  .menu-bar {
    background-color: #fff;
    z-index: 2;
  }
  .bar {
    color: #000000;
    margin: 15px;
    z-index: 2;
    width: 25px;
    height: 5px;
  }

  header nav {
    display: flex;
    flex-direction: row;
    /* gap: 100%; */
    /* margin-top: -.5rem; */
    justify-content: space-between;
    align-items: center;
  }
  .left-section {
    display: flex;
    text-align: center;
    /* margin-top: -.5rem; */
    align-items: center;
    /* margin-left: -1rem; */
    justify-content: center;
  }

  .hammy {
    display: none;
  }

  .menu-mobile > .navy {
    margin: auto;
    width: 80vw;
    padding: 1rem;
    cursor: pointer;
    border-radius: 1rem;

    justify-content: center;
    align-items: center;
    display: flex;
  }

  .menu-mobile > .navy:hover {
    margin: auto;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(134, 123, 123, 0.801);
    display: flex;
  }

  .menu-mobile > .navy > a {
    list-style: none;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-family: Josefin Sans;
    font-weight: 600;
    cursor: pointer;
  }

  .menu-mobile {
    position: absolute;
    top: 5rem;
    width: 90vw;
    /* Step 1 */
    visibility: hidden;
    padding: 1rem;
    display: grid;
    align-items: center;
    /* backdrop-filter: blur(20px); */
    gap: 1rem;
    border-radius: 2rem;
    background-color: rgba(0, 0, 0, 0.699);
    backdrop-filter: blur(100px);
    /* background-color: transparent; */
    justify-content: center;
    transition: 0.5s ease;
  }
  /* Step 2 */
  .open-menu {
    visibility: visible;
    transition: 0.5s ease;
  }

  .nav-link {
    text-align: center;
    /* margin-top: -.5rem; */
  }

  ul {
    display: flex;
    gap: 2rem;
    list-style-type: none;
    align-items: center;
    /* margin-top: -.5rem; */
    justify-content: center;
  }

  button {
    text-align: center;
    padding: 0.5rem;
    width: 6rem;
    align-items: center;
    justify-content: center;

    height: 3rem;
    border-radius: 1rem;
    border: none;
    background: linear-gradient(90deg, #2d5c5c, #00ff00);
    color: black;
  }

  button:hover {
    scale: 1;
    transition: ease-in 0.8s;
  }

  .home {
    width: 100vw;
    height: 100vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  h1 {
    font-family: Ubuntu;
    font-size: 3rem;
    color: white;
  }
  h2 {
    margin-top: -1.5rem;
    font-size: 2rem;
    font-family: Josefin Sans;
    color: #28fac0;
  }

  .note {
    font-size: 2rem;
    font-family: Roboto;
    font-weight: 500;
    color: rgb(187, 186, 186);
  }

  .about {
    /*    
      background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  grid-template-rows: auto; */
    /* grid-template-rows: 1fr 1fr; */

    margin-left: 1rem;
    margin-right: 1rem;
    display: grid;
    justify-content: center;
    margin-top: -7rem;
    align-items: center;
    width: auto;
    height: 100vh;
    padding-top: 7rem;
    text-align: center;
  }

  .about > div {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    grid-template-rows: auto;
    /* grid-template-rows: 1fr 1fr; */
    border-radius: 1rem;
    /* gap: 50rem; */
    display: grid;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 100vh;
    padding-right: 1rem;
    padding-left: 1rem;
    text-align: center;
  }

  .about-page-img > img {
    width: 20rem;

    /* height: auto; */
    border-radius: 3rem;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
    scale: 0.6;
    opacity: 0;
  }

  .about-page > .note {
    font-size: 1rem;
    text-align: left;
    font-family: Roboto;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
    scale: 0.1;
    opacity: 0;
  }

  .about-page > h2 {
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
    scale: 0.1;
    opacity: 0;
    font-size: 2rem;
    text-align: left;
  }

  .dee {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  .about-page > h1 {
    font-family: Ubuntu;
    font-size: 2rem;

    color: white;
  }

  .about > div > h1 {
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
    scale: 0.15;
    opacity: 0;
    font-size: 2rem;
    font-family: Josefin Sans;
  }
  @keyframes fade-in {
    to {
      scale: 1;
      opacity: 1;
    }
  }

  /* For The Form / Contact Us*/
  .contact {
    margin-left: 1rem;
    margin-right: 1rem;
    display: grid;
    line-height: 0.5rem;
    justify-content: center;
    margin-top: -4rem;
    align-items: center;
    width: auto;
    gap: 1rem;
    height: 100vh;
    padding-top: 7rem;
    text-align: center;
  }

  .contact > div {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    grid-template-rows: auto;
    /* grid-template-rows: 1fr 1fr; */
    border-radius: 2rem;

    display: grid;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 100lvh;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    text-align: center;
  }

  .contact > div > h1 {
    color: white;

    font-family: Josefin Sans;
    font-size: 1rem;
  }

  .con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;

    align-items: center;
    gap: 1rem;
    /* margin-top: -10rem; */
  }

  .con > .contact-page {
    text-align: left;
  }

  .contact-page-form > form {
    display: flex;
    justify-content: center;
    gap: 1rem;

    align-items: center;
    flex-direction: column;
  }

  .contact-page-form > form > input {
    width: 100%;
    height: 1rem;
    caret-color: #28fac0;
    border: none;

    border-radius: 1rem;
    padding: 1rem;
    outline: none;
    font-family: Ubuntu;
    font-size: 1rem;
  }

  .contact-page > h2 {
    font-size: 1rem;
    color: #28fac0;
    font-family: Ubuntu;
  }

  .contact-page-form > form > textarea {
    width: 100%;
    height: 3.5rem;

    border: none;
    border-radius: 1rem;
    padding: 1rem;
    outline: none;
    font-family: Ubuntu;
    font-size: 1rem;
  }

  .contact-page-form > form > button {
    display: flex;
    flex-direction: row;

    text-align: center;
    width: auto;
    height: 3.5rem;
    gap: 1rem;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    outline: none;
    font-family: Ubuntu;
    font-size: 1rem;
    border: none;
    border-radius: 1rem;
  }

  .contact-page-form > form > button:hover {
    display: flex;
    flex-direction: row;
    text-align: center;
    width: auto;
    color: rgb(255, 255, 255);
    height: 4rem;

    padding: 1rem;
    justify-content: center;
    align-items: center;
    outline: none;
    font-family: Ubuntu;
    font-size: 1rem;
    border: none;
    scale: 1.05;
    transition: ease-in 0.8s;
    border-radius: 1rem;
  }

  .contact-page-form > form > button:active {
    display: flex;
    flex-direction: row;
    text-align: center;
    width: auto;
    color: #ffffff;
    height: 4rem;

    padding: 1rem;
    justify-content: center;
    align-items: center;
    outline: none;
    font-family: Ubuntu;
    font-size: 1rem;
    border: none;
    scale: 0.8;
    transition: ease-in 0.4s;
    transition: ease-out 0.5s;
    border-radius: 1rem;
  }

  .contact-page-form > form > button > h5 {
    font-family: Ubuntu;
    font-size: 1rem;
    color: #000000;
  }

  .contact-page > h2 {
    font-family: Ubuntu;

    font-size: 1.5rem;
    color: #28fac0;
  }

  .contact-page > p {
    font-family: Ubuntu;

    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
  }

  .contact-page {
    margin-top: 2rem;
  }

  .contact-page > h5 {
    font-family: Ubuntu;

    font-size: 1rem;
    font-weight: 400;
    color: #000000;
  }

  .icon > svg {
    color: #00ff00;
  }

  .icon > h5 {
    color: #ffffff;
    font-family: Ubuntu;
  }

  .ion > svg {
    color: #00ff00;
  }

  .ion > h5 {
    font-family: Ubuntu;
    color: #ffffff;
  }

  .icn > svg {
    color: #00ff00;
  }

  .icn > h5 {
    font-family: Ubuntu;
    color: #ffffff;
  }

  .testimonial-card {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    gap: 3rem;
    border-radius: 2rem;

    display: flex;
    flex-direction: column;

    padding: 0%;

    margin-left: auto;
    justify-content: center;
    align-items: center;

    width: auto;

    height: fit-content;

    text-align: center;
  }

  .img-container {
    background-color: #28fabed3;
    width: 10rem;
    margin-top: -6rem;
    height: 10rem;
    border-radius: 5rem;
    text-align: center;
  }

  .img-container p {
    color: #ffffff;
    font-family: Josefin Sans;
    font-size: 1rem;
    font-weight: 400;
  }

  .img-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }

  .test1 {
    width: 15rem;
    height: 25rem;
    border-radius: 2rem;
    padding: 1rem;
    display: flex;
    gap: 5rem;
    /* max-width: 700px; */
    /* aspect-ratio: 16/9; */
    background-color: rgba(30, 191, 202, 0.552);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
  }

  .content {
    margin-top: 1rem;
  }

  .content p {
    font-size: 1rem;
    font-family: Ubuntu;
    color: white;
  }

  .mini-burg {
    display: block;

    color: #28fac0;
  }
}

@media screen and (min-width: 500px) and (max-width: 890px) {
  #logo {
    width: 3rem;
    /* margin-top: -.5rem; */
  }
  h3 {
    /* color: white; */
    /* margin-top: -3px; */

    /* margin-bottom: -4px; */
    background: linear-gradient(90deg, #39f8f0, #28fac0);
    -webkit-background-clip: text;
    font-family: Ubuntu;
    font-size: 1.5rem;
    -webkit-text-fill-color: transparent;
  }

  .intro-page {
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
    scale: 0.1;
    opacity: 0;
  }

  header {
    display: flex;
    flex-direction: row;
    margin: 0%;
    z-index: 1;
    position: fixed;
    left: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    right: 0;
    top: 0;
    width: 100vw;
    /* padding: 1rem; */
    height: auto;
    justify-content: space-between;
    /* align-items: center; */
    backdrop-filter: blur(100px);
  }
  .menu-bar {
    background-color: #fff;
    z-index: 2;
  }
  .bar {
    color: #000000;
    margin: 15px;
    z-index: 2;
    width: 25px;
    height: 5px;
  }

  header nav {
    display: flex;
    flex-direction: row;
    /* gap: 100%; */
    /* margin-top: -.5rem; */
    justify-content: space-between;
    align-items: center;
  }
  .left-section {
    display: flex;
    text-align: center;
    /* margin-top: -.5rem; */
    align-items: center;
    /* margin-left: -1rem; */
    justify-content: center;
  }

  .hammy {
    display: none;
  }

  .menu-mobile > .navy {
    margin: auto;
    width: 80vw;
    padding: 1rem;
    cursor: pointer;
    border-radius: 1rem;

    justify-content: center;
    align-items: center;
    display: flex;
  }

  .menu-mobile > .navy:hover {
    margin: auto;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(134, 123, 123, 0.801);
    display: flex;
  }

  .menu-mobile > .navy > a {
    list-style: none;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-family: Josefin Sans;
    font-weight: 600;
    cursor: pointer;
  }

  .menu-mobile {
    position: absolute;
    top: 5rem;
    width: 90vw;
    /* Step 1 */
    visibility: hidden;
    padding: 1rem;
    display: grid;
    align-items: center;
    /* backdrop-filter: blur(20px); */
    gap: 1rem;
    border-radius: 2rem;
    background-color: rgba(0, 0, 0, 0.699);
    backdrop-filter: blur(100px);
    /* background-color: transparent; */
    justify-content: center;
    transition: 0.5s ease;
  }
  /* Step 2 */
  .open-menu {
    visibility: visible;
    transition: 0.5s ease;
  }

  .nav-link {
    text-align: center;
    /* margin-top: -.5rem; */
  }

  ul {
    display: flex;
    gap: 2rem;
    list-style-type: none;
    align-items: center;
    /* margin-top: -.5rem; */
    justify-content: center;
  }

  button {
    text-align: center;
    padding: 0.5rem;
    width: 6rem;
    align-items: center;
    justify-content: center;

    height: 3rem;
    border-radius: 1rem;
    border: none;
    background: linear-gradient(90deg, #2d5c5c, #00ff00);
    color: black;
  }

  button:hover {
    scale: 1;
    transition: ease-in 0.8s;
  }

  .home {
    width: 100vw;
    height: 100vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  h1 {
    font-family: Ubuntu;
    font-size: 3rem;
    color: white;
  }
  h2 {
    margin-top: -1.5rem;
    font-size: 2rem;
    font-family: Josefin Sans;
    color: #28fac0;
  }

  .note {
    font-size: 2rem;
    font-family: Roboto;
    font-weight: 500;
    color: rgb(187, 186, 186);
  }

  .about {
    /*    
      background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  grid-template-rows: auto; */
    /* grid-template-rows: 1fr 1fr; */

    margin-left: 1rem;
    margin-right: 1rem;
    display: grid;
    justify-content: center;
    margin-top: -7rem;
    align-items: center;
    width: auto;
    height: 100vh;
    padding-top: 7rem;
    text-align: center;
  }

  .about > div {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    grid-template-rows: auto;
    /* grid-template-rows: 1fr 1fr; */
    border-radius: 1rem;
    /* gap: 50rem; */
    display: grid;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 100vh;
    padding-right: 1rem;
    padding-left: 1rem;
    text-align: center;
  }

  .about-page-img > img {
    width: 20rem;

    /* height: auto; */
    border-radius: 3rem;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
    scale: 0.6;
    opacity: 0;
  }

  .about-page > .note {
    font-size: 1rem;
    text-align: left;
    font-family: Roboto;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
    scale: 0.1;
    opacity: 0;
  }

  .about-page > h2 {
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
    scale: 0.1;
    opacity: 0;
    font-size: 2rem;
    text-align: left;
  }

  .dee {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  .about-page > h1 {
    font-family: Ubuntu;
    font-size: 2rem;

    color: white;
  }

  .about > div > h1 {
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
    scale: 0.15;
    opacity: 0;
    font-size: 2rem;
    font-family: Josefin Sans;
  }
  @keyframes fade-in {
    to {
      scale: 1;
      opacity: 1;
    }
  }

  /* For The Form / Contact Us*/
  .contact {
    margin-left: 1rem;
    margin-right: 1rem;
    display: grid;
    line-height: 0.5rem;
    justify-content: center;
    margin-top: -4rem;
    align-items: center;
    width: auto;
    gap: 1rem;
    height: 100vh;
    padding-top: 7rem;
    text-align: center;
  }

  .contact > div {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    grid-template-rows: auto;
    /* grid-template-rows: 1fr 1fr; */
    border-radius: 2rem;

    display: grid;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 100lvh;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    text-align: center;
  }

  .contact > div > h1 {
    color: white;

    font-family: Josefin Sans;
    font-size: 1rem;
  }

  .con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;

    align-items: center;
    gap: 1rem;
    /* margin-top: -10rem; */
  }

  .con > .contact-page {
    text-align: left;
  }

  .contact-page-form > form {
    display: flex;
    justify-content: center;
    gap: 1rem;

    align-items: center;
    flex-direction: column;
  }

  .contact-page-form > form > input {
    width: 100%;
    height: 1rem;
    caret-color: #28fac0;
    border: none;

    border-radius: 1rem;
    padding: 1rem;
    outline: none;
    font-family: Ubuntu;
    font-size: 1rem;
  }

  .contact-page > h2 {
    font-size: 1rem;
    color: #28fac0;
    font-family: Ubuntu;
  }

  .contact-page-form > form > textarea {
    width: 100%;
    height: 3.5rem;

    border: none;
    border-radius: 1rem;
    padding: 1rem;
    outline: none;
    font-family: Ubuntu;
    font-size: 1rem;
  }

  .contact-page-form > form > button {
    display: flex;
    flex-direction: row;

    text-align: center;
    width: auto;
    height: 3.5rem;
    gap: 1rem;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    outline: none;
    font-family: Ubuntu;
    font-size: 1rem;
    border: none;
    border-radius: 1rem;
  }

  .contact-page-form > form > button:hover {
    display: flex;
    flex-direction: row;
    text-align: center;
    width: auto;
    color: rgb(255, 255, 255);
    height: 4rem;

    padding: 1rem;
    justify-content: center;
    align-items: center;
    outline: none;
    font-family: Ubuntu;
    font-size: 1rem;
    border: none;
    scale: 1.05;
    transition: ease-in 0.8s;
    border-radius: 1rem;
  }

  .contact-page-form > form > button:active {
    display: flex;
    flex-direction: row;
    text-align: center;
    width: auto;
    color: #ffffff;
    height: 4rem;

    padding: 1rem;
    justify-content: center;
    align-items: center;
    outline: none;
    font-family: Ubuntu;
    font-size: 1rem;
    border: none;
    scale: 0.8;
    transition: ease-in 0.4s;
    transition: ease-out 0.5s;
    border-radius: 1rem;
  }

  .contact-page-form > form > button > h5 {
    font-family: Ubuntu;
    font-size: 1rem;
    color: #000000;
  }

  .contact-page > h2 {
    font-family: Ubuntu;

    font-size: 1.5rem;
    color: #28fac0;
  }

  .contact-page > p {
    font-family: Ubuntu;

    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
  }

  .contact-page {
    margin-top: 2rem;
  }

  .contact-page > h5 {
    font-family: Ubuntu;

    font-size: 1rem;
    font-weight: 400;
    color: #000000;
  }

  .icon > svg {
    color: #00ff00;
  }

  .icon > h5 {
    color: #ffffff;
    font-family: Ubuntu;
  }

  .ion > svg {
    color: #00ff00;
  }

  .ion > h5 {
    font-family: Ubuntu;
    color: #ffffff;
  }

  .icn > svg {
    color: #00ff00;
  }

  .icn > h5 {
    font-family: Ubuntu;
    color: #ffffff;
  }

  .testimonial-card {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    gap: 3rem;
    border-radius: 2rem;
    /* box-sizing: border-box; */
    display: grid;
    padding-top: 10rem;
    padding-bottom: 2rem;
    /* margin: 2rem; */
    margin-left: auto;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    width: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    /* margin-left: 2rem;
    margin-right: 2rem;
    margin-top: 2rem;
    padding-top: 10rem; */
    /* gap: 1.5rem; */
    height: fit-content;

    text-align: center;
  }

  .img-container {
    background-color: #28fabed3;
    width: 10rem;
    margin-top: -6rem;
    height: 10rem;
    border-radius: 5rem;
    text-align: center;
  }

  .img-container p {
    color: #ffffff;
    font-family: Josefin Sans;
    font-size: 1rem;
    font-weight: 400;
  }

  .img-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }

  .test1 {
    width: 15rem;
    height: 25rem;
    border-radius: 2rem;
    padding: 1rem;
    display: flex;
    gap: 5rem;
    /* max-width: 700px; */
    /* aspect-ratio: 16/9; */
    background-color: rgba(30, 191, 202, 0.552);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
  }

  .content {
    margin-top: 1rem;
  }

  .content p {
    font-size: 1rem;
    font-family: Ubuntu;
    color: white;
  }

  .mini-burg {
    display: block;

    color: #28fac0;
  }
}

@media screen and (min-width: 890px) and (max-width: 1000px) {
  #logo {
    width: 3rem;
    /* margin-top: -.5rem; */
  }
  h3 {
    /* color: white; */
    /* margin-top: -3px; */

    /* margin-bottom: -4px; */
    background: linear-gradient(90deg, #39f8f0, #28fac0);
    -webkit-background-clip: text;
    font-family: Ubuntu;
    font-size: 1.5rem;
    -webkit-text-fill-color: transparent;
  }

  .intro-page {
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
    scale: 0.1;
    opacity: 0;
  }

  header {
    display: flex;
    flex-direction: row;
    margin: 0%;
    z-index: 1;
    position: fixed;
    left: 0;
    row-gap: 30rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    right: 0;
    top: 0;
    padding: 2rem;
    width: 100vw;

    height: auto;
    justify-content: space-between;

    backdrop-filter: blur(100px);
  }

  .hammy {
    display: none;
  }

  .menu-bar {
    background-color: #fff;
    z-index: 2;
  }
  .bar {
    color: #000000;
    margin: 15px;
    z-index: 2;
    width: 25px;
    height: 5px;
  }

  header nav {
    display: flex;
    flex-direction: row;
    gap: 35rem;
    /* margin-top: -.5rem; */
    justify-content: space-between;
    align-items: center;
  }
  .left-section {
    display: flex;
    text-align: center;
    /* margin-top: -.5rem; */
    align-items: center;
    /* margin-left: -1rem; */
    justify-content: center;
  }

  .hammy {
    display: none;
  }

  .menu-mobile > .navy {
    margin: auto;
    width: 20rem;
    padding: 1rem;

    border-radius: 1rem;

    justify-content: center;
    align-items: center;
    display: flex;
  }

  .menu-mobile > .navy:hover {
    margin: auto;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(134, 123, 123, 0.801);
    display: flex;
  }

  .menu-mobile > .navy > a {
    list-style: none;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-family: Josefin Sans;
    font-weight: 600;
  }

  .menu-mobile {
    position: absolute;
    top: 5rem;
    width: 90vw;
    /* Step 1 */
    visibility: hidden;
    padding: 1rem;
    display: grid;
    grid-template-columns: auto;
    align-items: center;
    /* backdrop-filter: blur(20px); */
    gap: 1rem;
    border-radius: 2rem;
    background-color: rgba(0, 0, 0, 0.699);
    backdrop-filter: blur(100px);
    /* background-color: transparent; */
    justify-content: center;
    transition: 0.5s ease;
  }
  /* Step 2 */
  .open-menu {
    visibility: visible;
    transition: 0.5s ease;
  }

  .menu-mobile > svg {
    display: flex;
    margin-left: -10rem;
    flex-direction: flex-end;
    text-align: end;
  }
  .mini-burg {
    display: block;
    color: #28fac0;
  }

  .about > div {
    display: grid;
    justify-content: center;
  }

  .dee {
    display: flex;
    flex-direction: column;
  }

  .about-page-img {
    margin-top: -2rem;
  }

  .about-page-img > img {
    width: 45rem;
    margin-top: -1rem;
  }

  .about-page > h2 {
    font-size: 4rem;
    margin-bottom: -1rem;
  }

  .about-page > .note {
    font-size: 2rem;
  }

  .about-page {
    margin-bottom: -2rem;
  }

  .contact {
    gap: 1rem;
  }

  .contact > div {
    display: grid;

    justify-content: center;
  }

  .con {
    display: flex;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
    gap: 1rem;
    flex-direction: column;
  }

  @keyframes fade-in {
    to {
      scale: 1;
      opacity: 1;
    }
  }

  .contact {
    height: 100lvh;
  }

  .con {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .contact-page {
    gap: 1rem;
    margin: auto 0%;
  }

  .contact-page > h2 {
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
  }

  .contact-page-form > form > input {
    width: 35rem;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
  }

  .contact-page-form > form > textarea {
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
    width: 34rem;
  }

  .icon {
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 0.5rem;
    flex-direction: row;
  }

  .icon > svg {
    display: flex;
    flex-direction: row;
    color: #00ff00;
  }

  .icon > h5 {
    color: #ffffff;

    font-family: Ubuntu;
    font-size: 2rem;
  }

  /* .contact-page {
    display: flex;
    flex-direction: row;
  } */

  .icn {
    justify-content: left;
    align-items: center;
    display: flex;
    margin-top: -3rem;
    flex-direction: row;
  }

  .icn > svg {
    display: flex;
    flex-direction: row;
    color: #00ff00;
  }

  .icn > h5 {
    color: #ffffff;

    font-family: Ubuntu;
    font-size: 2rem;
  }

  .ion {
    justify-content: left;
    align-items: center;
    display: flex;
    margin-top: -3rem;
    flex-direction: row;
  }

  .ion > svg {
    display: flex;
    flex-direction: row;
    color: #00ff00;
  }

  .ion > h5 {
    color: #ffffff;

    font-family: Ubuntu;
    font-size: 2rem;
  }

  .testimonial-card {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    gap: 3rem;
    border-radius: 2rem;
    /* box-sizing: border-box; */
    display: grid;
    padding-top: 10rem;
    padding-bottom: 2rem;
    /* margin: 2rem; */
    margin-left: auto;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    width: auto;
    padding-right: 2rem;
    /* margin-left: 2rem;
    margin-right: 2rem;
    margin-top: 2rem;
    padding-top: 10rem; */
    /* gap: 1.5rem; */
    height: fit-content;

    text-align: center;
  }

  .img-container {
    background-color: #28fabed3;
    width: 10rem;
    margin-top: -6rem;
    height: 10rem;
    border-radius: 5rem;
    text-align: center;
  }

  .img-container p {
    color: #ffffff;
    font-family: Josefin Sans;
    font-size: 1rem;
    font-weight: 400;
  }

  .img-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }

  .test1 {
    width: 18rem;
    height: 25rem;
    border-radius: 2rem;
    padding: 1rem;
    display: flex;
    gap: 5rem;
    /* max-width: 700px; */
    /* aspect-ratio: 16/9; */
    background-color: rgba(30, 191, 202, 0.552);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
  }

  .content {
    margin-top: 1rem;
  }

  .content p {
    font-size: 1rem;
    font-family: Ubuntu;
    color: white;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1024px) {
  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    padding: 0;
    background-image: url("./prr.png"); /* Replace 'background.jpg' with your image path */
    background-size: cover; /* Ensures the image covers the entire page */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-attachment: fixed; /* Makes the image stay in place while scrolling */
    background-position: center; /* Centers the image */
    display: block;
    justify-content: center;
    align-items: center;
  }

  #logo {
    width: 6rem;
    /* margin-top: -.5rem; */
  }
  h3 {
    /* color: white; */
    margin-top: -3px;

    margin-bottom: -4px;
    background: linear-gradient(90deg, #39f8f0, #28fac0);
    -webkit-background-clip: text;
    font-family: Ubuntu;
    font-size: 2.5rem;
    -webkit-text-fill-color: transparent;
  }

  .intro-page {
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
    scale: 0.1;
    opacity: 0;
  }

  .sidebar {
    display: flex;
    flex-direction: row;
  }

  header {
    display: flex;
    flex-direction: row;
    margin: 0%;
    z-index: 1;
    position: fixed;
    left: 0;
    row-gap: 30rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    right: 0;
    top: 0;
    padding: 2rem;
    width: 100vw;

    height: auto;
    justify-content: space-between;

    backdrop-filter: blur(100px);
  }

  .hammy {
    display: none;
  }

  .menu-bar {
    background-color: #fff;
    z-index: 2;
  }
  .bar {
    color: #000000;
    margin: 15px;
    z-index: 2;
    width: 25px;
    height: 5px;
  }

  header nav {
    display: flex;
    flex-direction: row;
    gap: 35rem;
    /* margin-top: -.5rem; */
    justify-content: space-between;
    align-items: center;
  }
  .left-section {
    display: flex;
    text-align: center;
    /* margin-top: -.5rem; */
    align-items: center;
    /* margin-left: -1rem; */
    justify-content: center;
  }

  .hammy {
    display: none;
  }

  .menu-mobile > .navy {
    margin: auto;
    width: 20rem;
    padding: 1rem;

    border-radius: 1rem;

    justify-content: center;
    align-items: center;
    display: flex;
  }

  .menu-mobile > .navy:hover {
    margin: auto;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(134, 123, 123, 0.801);
    display: flex;
  }

  .menu-mobile > .navy > a {
    list-style: none;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-family: Josefin Sans;
    font-weight: 600;
  }

  .menu-mobile {
    position: absolute;
    top: 5rem;
    width: 90vw;
    /* Step 1 */
    visibility: hidden;
    padding: 1rem;
    display: grid;
    grid-template-columns: auto;
    align-items: center;
    /* backdrop-filter: blur(20px); */
    gap: 1rem;
    border-radius: 2rem;
    background-color: rgba(0, 0, 0, 0.699);
    backdrop-filter: blur(100px);
    /* background-color: transparent; */
    justify-content: center;
    transition: 0.5s ease;
  }
  /* Step 2 */
  .open-menu {
    visibility: visible;
    transition: 0.5s ease;
  }

  .menu-mobile > svg {
    display: flex;
    margin-left: -10rem;
    flex-direction: flex-end;
    text-align: end;
  }
  .mini-burg {
    display: block;
    color: #28fac0;
  }

  .about > div {
    display: grid;
    justify-content: center;
  }

  .dee {
    display: flex;
    flex-direction: column;
  }

  .about-page-img {
    margin-top: -2rem;
  }

  .about-page-img > img {
    width: 45rem;
    margin-top: -1rem;
  }

  .about-page > h2 {
    font-size: 4rem;
    margin-bottom: -1rem;
  }

  .about-page > .note {
    font-size: 2rem;
  }

  .about-page {
    margin-bottom: -2rem;
  }

  .contact {
    gap: 1rem;
  }

  .contact > div {
    display: grid;

    justify-content: center;
  }

  .con {
    display: flex;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
    gap: 1rem;
    flex-direction: column;
  }

  @keyframes fade-in {
    to {
      scale: 1;
      opacity: 1;
    }
  }

  .contact {
    height: 100lvh;
  }

  .con {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .contact-page {
    gap: 1rem;
    margin: auto 0%;
  }

  .contact-page > h2 {
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
  }

  .contact-page-form > form > input {
    width: 35rem;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
  }

  .contact-page-form > form > textarea {
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
    width: 34rem;
  }

  .icon {
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 0.5rem;
    flex-direction: row;
  }

  .icon > svg {
    display: flex;
    flex-direction: row;
    color: #00ff00;
  }

  .icon > h5 {
    color: #ffffff;

    font-family: Ubuntu;
    font-size: 2rem;
  }

  /* .contact-page {
    display: flex;
    flex-direction: row;
  } */

  .icn {
    justify-content: left;
    align-items: center;
    display: flex;
    margin-top: -3rem;
    flex-direction: row;
  }

  .icn > svg {
    display: flex;
    flex-direction: row;
    color: #00ff00;
  }

  .icn > h5 {
    color: #ffffff;

    font-family: Ubuntu;
    font-size: 2rem;
  }

  .ion {
    justify-content: left;
    align-items: center;
    display: flex;
    margin-top: -3rem;
    flex-direction: row;
  }

  .ion > svg {
    display: flex;
    flex-direction: row;
    color: #00ff00;
  }

  .ion > h5 {
    color: #ffffff;

    font-family: Ubuntu;
    font-size: 2rem;
  }

  .testimonial-card {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    gap: 3rem;
    border-radius: 2rem;
    /* box-sizing: border-box; */
    display: grid;
    padding-top: 10rem;
    padding-bottom: 2rem;
    /* margin: 2rem; */
    margin-left: auto;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    width: auto;
    padding-right: 2rem;
    /* margin-left: 2rem;
    margin-right: 2rem;
    margin-top: 2rem;
    padding-top: 10rem; */
    /* gap: 1.5rem; */
    height: fit-content;

    text-align: center;
  }

  .img-container {
    background-color: #28fabed3;
    width: 10rem;
    margin-top: -6rem;
    height: 10rem;
    border-radius: 5rem;
    text-align: center;
  }

  .img-container p {
    color: #ffffff;
    font-family: Josefin Sans;
    font-size: 1rem;
    font-weight: 400;
  }

  .img-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }

  .test1 {
    width: 18rem;
    height: 25rem;
    border-radius: 2rem;
    padding: 1rem;
    display: flex;
    gap: 5rem;
    /* max-width: 700px; */
    /* aspect-ratio: 16/9; */
    background-color: rgba(30, 191, 202, 0.552);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
  }

  .content {
    margin-top: 1rem;
  }

  .content p {
    font-size: 1rem;
    font-family: Ubuntu;
    color: white;
  }
}
