* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  color: #fff;
  font-family: Outfit, sans-serif;
  scroll-behavior: smooth;
  
}

.navbar {
  width: 100%;
  height: 10vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 35px;
}
.navbar h2 {
  letter-spacing: -0.3px;
  color: #fff;
  font-family: Outfit, sans-serif;
  font-weight: 500;
  font-size: 2rem;
}
a {
  text-decoration: none;
}
.navbar .links {
  display: flex;
  gap: 20px;
}
.links .talk {
  padding: 12px 34px 12px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(0, 0%, 100%, 0.15);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 3em;
  color: #fff;
  font-family: Outfit, sans-serif;
  font-size: 0.9em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.12s ease-out;
}

.talk:hover {
  background: hsla(0, 0%, 100%, 0.15);
  color: #fff;
}
.talk::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: #fff;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transition: 0.06s linear;
}

.talk:hover::before {
  width: 15px;
  height: 15px;
  transition: 0.1s linear;
}

.talk::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: #ff82f3;
  background-image: linear-gradient(45deg, #ff82f3, #7b13ff 50%, #400d64);
  width: 100%;
  height: 100%;
  transition: 0.1s linear;
}

.talk:hover:after {
  opacity: 0.2;
}

.links .menu {
  padding: 12px 34px 12px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(0, 0%, 100%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 3em;
  color: #000000;
  font-family: Outfit, sans-serif;
  font-size: 0.9em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.12s ease-out;
  text-align: center;
}

.menu::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: #000000;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transition: 0.06s linear;
}

.menu:hover::before {
  width: 15px;
  height: 15px;
  opacity: 0.2;
  transition: 0.1s linear;
}

/* main start */
.main {
  width: 100%;
  height: auto;
  background: #000000;
  overflow: hidden;
}

.main .nameParent {
  padding: 140px 0px;
  text-align: center;
}
.nameParent .pname {
  font-size: 7rem;
  color: #fff;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1.4px;
  -webkit-text-stroke-color: #fff;
  font-weight: 700 !important;
  font-family: Outfit, sans-serif;
}

.main .contentParent {
  width: 100%;
  height: 80vh;
  padding: 0px 80px;
  display: flex;
  font-family: Outfit, sans-serif;
}

.basicDetl {
  width: 33%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex-wrap: wrap;
}

.bio {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bio .bp {
  line-height: 27px;
  color: #b8b8b8;
}
.skill {
  height: 75px;
}
.skill p {
  margin-bottom: 8px;
}
.skill div {
  padding-bottom: 5px;
}
.skill div ul {
  display: flex;
  gap: 20px;
  width: 80%;
}
.socialm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.socialm .slink {
  display: flex;
  gap: 5px;
}

.slink a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(0, 0%, 100%, 0.15);
  border-radius: 50%;
  transition: 0.5s linear;
}
.slink a:hover {
  background-color: #ff82f3;
  background-image: linear-gradient(45deg, #ff82f3, #7b13ff 50%, #400d64);
  opacity: 1;
  transition: 0.5s linear;
}
.slink a img {
  width: 20px;
}
.parentImage {
  width: 33%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.parentImage img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: fill;
}
.experienceParent {
  width: 33%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}
.experienceParent .exp {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.exp .num {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}

@media screen and (max-width: 600px) {
  .navbar {
    padding: 10px;
  }
  .navbar .links {
    gap: 10px;
  }
  .links .talk {
    padding: 12px 34px 12px 20px;
    font-size: 0.7em;
  }
  .links .menu {
    padding: 12px 34px 12px 20px;
    font-size: 0.7em;
  }
  .main .nameParent {
    padding: 100px 0px;
  }
  .nameParent .pname {
    font-size: 3.5rem;
  }
  .main .contentParent {
    flex-direction: column;
    align-items: center;
    padding: 0px 10px;
    height: auto;
  }

  .basicDetl {
    order: 2;
    width: 100%;
    gap: 30px;
  }
  .bio {
    width: 100%;
  }
  .parentImage {
    order: 1;
    margin-bottom: 20px;
  }
  .experienceParent {
    margin-top: 30px;
    order: 3;
    gap: 30px;
    flex-direction: row;
    justify-content: center;
    padding: 0px 10px;
    padding-bottom: 20px;
  }
}
/* about start */

.aboutParent {
  width: 100%;
  height: 90vh;
  display: flex;
  overflow: hidden;
}
.aboutParent .abtitle {
  width: 35%;
  height: 100%;
  padding: 30px 80px;
}

.abtitle p {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  font-family: Outfit, sans-serif;
  font-size: 0.9em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: hsla(0, 0%, 100%, 0.4);
}

.abtitle p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border: 2px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
}

.abtitle h2 {
  letter-spacing: -0.3px;
  color: #fff;
  line-height: 1.2;
  font-size: 4rem;
  font-weight: 500 !important;
}

.abtitle h2 .do {
  background: -webkit-linear-gradient(45deg, #ff82f3, #7b13ff 50%, #400d64);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aboutParent .aservice {
  width: 65%;
  height: 100%;
  padding: 30px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.aservice .service {
  width: 90%;
  z-index: 1;
  position: relative;
  overflow: hidden;
  background: #181a1c;
  padding: 40px;
  border-radius: 0.5em;
  display: flex;
  align-items: center;
}

.aservice .service::before {
  content: "";
  position: absolute;
  left: 0;
  background-color: #ff82f3;
  background-image: linear-gradient(45deg, #ff82f3, #7b13ff 50%, #400d64);
  width: 100%;
  height: 100%;
  top: 0;
  transition: 0.1s linear;
  opacity: 0;
}
.aservice .service:hover:before {
  visibility: visible;
  opacity: 0.1;
}
.aservice .service::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #ff82f3;
  background-image: linear-gradient(45deg, #ff82f3, #7b13ff 50%, #400d64);
  width: 100%;
  transition: 0.1s linear;
  height: 2px;
}

.service .numpar {
  width: 15%;
}

.numpar p {
  font-size: 1.75rem;
  letter-spacing: -0.3px;
  color: #fff;
  font-family: Outfit, sans-serif;
  font-weight: 500;
}

.service .imgtl {
  width: 40%;
  display: flex;
  gap: 20px;
}

.imgtl img {
  width: 2em;
}

.imgtl h2 {
  font-size: 1.75rem;
  letter-spacing: -0.3px;
  color: #fff;
  font-family: Outfit, sans-serif;
  font-weight: 500;
}
.service .contPar {
  width: 45%;
}

.contPar p {
  line-height: 1.74;
  color: #b8b8b8;
}

@media screen and (max-width: 600px) {
  .aboutParent {
    flex-direction: column;
    padding: 15px;
    height: auto;
  }
  .aboutParent .abtitle {
    width: 100%;
    height: auto;
    padding: 0px;
  }
  .abtitle h2 {
    font-size: calc(1.525rem + 3.3vw);
  }

  .aboutParent .aservice {
    width: 100%;
    padding: 30px 0px;
    height: auto;
    z-index: -1;
  }
  .aservice .service {
    width: 100%;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
  }
  .service .numpar {
    width: 100%;
  }
  .service .imgtl {
    width: 100%;
    display: flex;
    gap: 12px;
  }
  .service .contPar {
    width: 100%;
  }

  .numpar p {
    font-size: calc(1.3rem + 0.6vw);
  }

  .contPar p {
    line-height: 1.6;
  }
}

/* Portfolio start */

.portfolio {
  padding: 0 40px;
}
.portfolio .pspar {
  border-radius: 1em;
  /* color: hsla(0,0%,100%,.7); */
  background: #181a1c;
  overflow: hidden;
  /* padding-top: 90px; */
  /* padding-bottom: 10px; */
  padding: 40px;
}

.pspar .cont {
  padding: 0 20px;
  width: 100%;
}

.mcontent {

  width: 66.66666667%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mcontent .label {
  position: relative;
  color: hsla(0, 0%, 100%, 0.7);
  padding-left: 20px;
}

.mcontent .label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border: 2px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
}

.mcontent h1 {
  letter-spacing: -0.3px;
  color: #fff;
  line-height: 1.2;
  font-size: 4rem;
  font-weight: 500 !important;
}

.mcontent h1 .work {
  background: -webkit-linear-gradient(45deg, #ff82f3, #7b13ff 50%, #400d64);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mcontent .parg {
  line-height: 1.74;
  color: hsla(0, 0%, 100%, 0.7);
}

.mcontent .actions {
  display: flex;
  gap: 5px;
}

.mcontent .actions a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(0, 0%, 100%, 0.15);
  border-radius: 50%;
  transition: 0.5s linear;
}
.mcontent .actions a:hover {
  background-color: #ff82f3;
  background-image: linear-gradient(45deg, #ff82f3, #7b13ff 50%, #400d64);
  opacity: 1;
  transition: 0.5s linear;
}
.mcontent .actions a img {
  width: 20px;
}
.subCard{
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 50px;
}
.pspar .cardsParent {
  width: 350px;
  height: 50vh;
  /* margin: 40px; */
  display: flex;
  flex-wrap: wrap;
 
  padding-right: 40px;
}

.card {
  width: 350px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {

  height: 200px;
  border-radius: 15px;
}

.card .cls p {
  color: hsla(0,0%,100%,.4);
  font-family: Outfit,sans-serif;
  font-size: .9em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.card h1 {
  font-size: 2rem;
  letter-spacing: -0.3px;
  color: #fff;
  font-family: Outfit, sans-serif;
  font-weight: 500;
  display: flex;
}

.card h1 .arroe {
  width: 30px;
  transform: translateY(5px);
  margin-right: 5px;
  display: none;
  transition: 1s linear;
}
.card:hover .arroe {
  display: block;
  transition: 1s linear;
}

@media screen and (max-width: 600px) {
  .portfolio {
    padding: 20px 15px;
  }
  .portfolio .pspar {
    padding-top: 20px;
    padding: 15px;
    padding-bottom: 10px;
  }
  .mcontent {
    margin-left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .mcontent h1 {
    font-size: calc(1.525rem + 3.3vw);
  }
  .mcontent .parg {
    font-size: 0.938rem;
  }
  .crd1 {
    display: none;
  }

  .pspar .cardsParent {
    height: auto;
    width: 100%;
    margin: 0;
    margin-top: 10px;
    gap: 0;
   padding: 0;
   padding-right: 0;
  }
  .card {
    width: 100%;
    gap: 0;
  }
  .card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 15px;
  }
}

/* my skills start */

.ourDtlparent {
  width: 100%;
  min-height: 100vh;
  height: auto;
  padding: 70px;
  display: flex;
}

.ourDtlparent .ourcontent {
  width: 35%;
}

.ourcontent p {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  font-family: Outfit, sans-serif;
  font-size: 0.9em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: hsla(0, 0%, 100%, 0.4);
}

.ourcontent p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border: 2px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
}

.ourcontent h1 {
  letter-spacing: -0.3px;
  color: #fff;
  line-height: 1.2;
  font-size: 4rem;
  font-weight: 500 !important;
}

.ourcontent h1 .detail {
  background: -webkit-linear-gradient(45deg, #ff82f3, #7b13ff 50%, #400d64);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.oactions {
  display: flex;
  gap: 10px;
}

.oactions .ebtn {
  padding: 9px 15px;
  background: #242629;
  border: none;
  outline: none;
  color: #fff;
  border-radius: 15px;
}

.oactions .isActive{
  background-color: #ff82f3;
  background-image: linear-gradient(45deg, #ff82f3, #7b13ff 50%, #400d64);
}

.oresultParent {
  width: 65%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  z-index: -1;
}

.oresultParent .ocard {
  background: #181a1c;
  padding: 32px;
  border-radius: 0.5em;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 48%;
  position: relative;
}

.ocard::before {
  content: "";
  position: absolute;
  left: 0;
  background-color: #ff82f3;
  background-image: linear-gradient(45deg, #ff82f3, #7b13ff 50%, #400d64);
  width: 100%;
  height: 100%;
  top: 0;
  transition: 0.1s linear;
  opacity: 0;
}

.ocard:hover:before {
  visibility: visible;
  opacity: 0.1;
}

.ocard::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #ff82f3;
  background-image: linear-gradient(45deg, #ff82f3, #7b13ff 50%, #400d64);
  width: 100%;
  transition: 0.1s linear;
  height: 2px;
}

.ocard .year{
  color: hsla(0,0%,100%,.4);
  font-family: Outfit,sans-serif;
    font-size: .9em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

@media screen and (max-width: 600px) {
  .ourDtlparent {
    flex-direction: column;
    padding: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .ourDtlparent .ourcontent {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 40px;
  }
  .ourcontent h1 {
    font-size: calc(1.525rem + 3.3vw);
  }

  .oresultParent {
    width: 100%;
  }
  .oresultParent .ocard {
    width: 100%;
    padding: 25px;
  }
}

/* Testimonial start */
.testimonial {
  width: 100%;
  height: 60vh;
  background: #000;
  margin-bottom: 40px;

}

.swiper {
  width: 100%;
  height: 100%;
  background: #000;
  z-index: -1;
}

.swiper-slide {
  font-size: 18px;
  background: #fff;
  display: flex;
  background: #000;
  z-index: -1;
  
}
.tmcard {
  display: flex;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.tmcard .image {
  width: 30%;
  height: 100%;
  padding: 23px 75px;
}

.tmcard .image .user {
  width: 130px;
  height: 130px;
  border-radius: 50%;
}

a{
  color: inherit;
}

.tmcard .tmcontent {
  width: 70%;
  height: 100%;
  padding: 90px 0px;
  padding-right: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.tmcontent .queto {
  position: absolute;
  width: 80px;
  right: 100px;
  top: 0;
}

.tmcontent h1 {
  letter-spacing: -0.3px;
  color: #fff;
  font-family: Outfit, sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
}

.tmcontent .position {
  font-family: Outfit, sans-serif;
  font-size: 0.9em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.tmcontent .feedback {
  font-size: 1.5rem !important;
  line-height: 1.4;
  font-weight: 400 !important;
  font-style: italic !important;
  color: hsla(0, 0%, 100%, 0.8);
  letter-spacing: 0;
}

.swiper-pagination-bullet {
  background-color: #fff !important;
  opacity: 0.9 !important;
}

.swiper-pagination-bullet-active {
  background-image: linear-gradient(
    45deg,
    #ff82f3,
    #7b13ff 50%,
    #400d64
  ) !important;
}

.image .queto {
  display: none;
}
@media screen and (max-width: 600px) {
  .testimonial {
    width: 100%;
    height: auto;
    background: #000;
  }
  .tmcard .image {
    width: 100%;
    padding: 40px;
    padding-bottom: 10px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .image .queto {
    display: block;
    position: absolute;
    top: 0;
    right: 20px;
    width: 50px;
  }
  .tmcard {
    flex-direction: column;
    padding: 10px;
  }

  .tmcard .tmcontent {
    width: 100%;
  }

  .tmcontent .queto {
    display: none;
  }

  .tmcard .tmcontent {
    width: 100%;
    height: 100%;
    padding: 20px 0px;
    padding-right: 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
  }
}

/* contact form start */

.contactParent{
    width: 100%;
    height: 100vh;
    padding: 40px;
    display: flex;
}

.contactParent .contactCont{
    width: 30%;
    height: 100%;
}
.contactCont p{
    position: relative;
    display: inline-block;
    padding-left: 20px;
    font-family: Outfit, sans-serif;
    font-size: 0.9em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: hsla(0, 0%, 100%, 0.4); 
}

.contactCont p::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border: 2px solid hsla(0, 0%, 100%, 0.3);
    border-radius: 50%;
  }

  .contactCont h1{
    letter-spacing: -0.3px;
    color: #fff;
    line-height: 1.2;
    font-size: 4rem;
    font-weight: 500 !important;
  }
  .contactCont h1 .detail {
    background: -webkit-linear-gradient(45deg, #ff82f3, #7b13ff 50%, #400d64);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
.contactParent .formParent{
    width: 70%;
    height: 100%;
}

.formParent .infoParent{
    width: 100%;
    display: flex;
    margin-bottom: 40px;
    gap: 20px;
}

.infoParent .info{
    width: 100%;
}

.info h1{
    letter-spacing: -.3px;
    color: #fff;
    font-family: Outfit,sans-serif;
    font-weight: 500;
    font-size: 1.75rem;
}

.formParent form{
width: 100%;
display: flex;
flex-direction: column;
gap: 10px;
}

form .gpfield{
    display: flex;
    width: 100%;
 gap: 10px;
}
form .message{
    background: #181a1c;
    width: 100%;
    border: 0;
    margin-bottom: 1rem;
    padding: 15px 20px;
    border-radius: 0.5em;
    box-shadow: none;
    font: 400 15px Open Sans,sans-serif;
    transition: .16s ease-out; 
    color: hsla(0,0%,100%,.8);
}

input{
    background: #181a1c;
    width: 100%;
    border: 0;
    margin-bottom: 1rem;
    padding: 15px 20px;
    border-radius: 0.5em;
    box-shadow: none;
    font: 400 15px Open Sans,sans-serif;
    transition: .16s ease-out; 
    color: hsla(0,0%,100%,.8);
}

.gpfield .gfield{
    width: 48%;
    display: flex;
    flex-direction: column;

}

.submitBtn{
    padding: 12px 34px 12px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(0, 0%, 100%, 0.15);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 3em;
  color: #fff;
  font-family: Outfit, sans-serif;
  font-size: 0.9em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.12s ease-out;
  border: none;
}

.submitBtn:hover {
    background: hsla(0, 0%, 100%, 0.15);
    color: #fff;
  }
  .submitBtn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: #fff;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transition: 0.06s linear;
  }
  
  .submitBtn:hover::before {
    width: 15px;
    height: 15px;
    transition: 0.1s linear;
  }
  
  .submitBtn::after {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: #ff82f3;
    background-image: linear-gradient(45deg, #ff82f3, #7b13ff 50%, #400d64);
    width: 100%;
    height: 100%;
    transition: 0.1s linear;
  }
  
  .submitBtn:hover:after {
    opacity: 0.2;
  }

  @media screen and (max-width: 600px) {
    .contactParent{
        flex-direction: column;
        height: auto;
        padding: 10px;
        margin-bottom: 40px;
    }
    .contactParent .contactCont{
        width: 100%;
margin-bottom: 20px;
    }

    .contactCont h1{
        font-size: calc(1.525rem + 3.3vw);
    font-weight: 300;
    line-height: 1.2;
    }

    .contactParent .formParent{
        width: 100%;
    }
    .formParent .infoParent{
        flex-direction: column;
        margin-bottom: 20px;
        gap: 15px;
    }
    .infoParent .info{
        width: 100%;
    }

    .info p{
        font-family: Outfit,sans-serif;
    font-size: .9em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    }
    .info h1{
        font-size: calc(1.3rem + .6vw);
        letter-spacing: -.3px;
        color: #fff;
        font-family: Outfit,sans-serif;
        font-weight: 500;
        line-height: 1.2;
    }
    form .gpfield{
        flex-direction: column;
        gap: 10px;
    }
    .gpfield .gfield{
        width: 100%;
    
    }
  }
  /* location start */

  .locationParent{
    width: 100%;
    height: 90vh;
    padding: 50px;
  }

  .locationParent .location{
    width: 100%;
    height: 100%;
  }

  .location iframe{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: .8;
  }

  @media screen and (max-width: 600px) {
    .locationParent{
        margin-bottom: 40px;
        height: 50vh;
        padding: 10px;
      }

  }

  /* footer start */
  .footer{
    width: 100%;
    height: 1vh;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 50px;
color: hsla(0,0%,100%,.8);
font-family: Open Sans,sans-serif;
font-size: 1rem;
font-weight: 400;
letter-spacing: 0;
  }