:root {
  --headFont: "Roboto", sans-serif;
  --bodyFont: "Poppins", sans-serif;
}
body {
  margin: 0px;
  padding: 0px;
  font-family: var(--bodyFont);
  color: rgb(0, 0, 0);
  background-color: #f2f2f2;
  background: rgb(255, 255, 255);
}

/* ----------------------------------------WhatsApp--------------------------------------- */
.whatsapp i {
  margin-top: 15px;
  margin-left: 2px;
}
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}
/* <--------------------------------------navbar------------------------------------------------> */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: fixed;
  width: 100%;
  background-color: #f2f2f2;
  z-index: 3;
}
.navbar h1 {
  font-family: "Playfair Display", serif;
  color: #ee0971;
}
.navbar ul {
  display: flex;
  text-decoration: none;
  margin: 0px;
  padding: 0px 5px;
}
.navbar ul li {
  list-style: none;
  margin: 0px 10px;
  font-family: var(--headFont);
}
.navbar a {
  text-decoration: none;
  color: #ee0971;
}
.sub-menu {
  display: none;
  background-color: #f2f2f2;
}
.sub-menu ul {
  flex-direction: column;
}
.sub-menu ul li {
  margin: 10px 0px;
  padding: 0px;
}

.navbar li:hover .sub-menu {
  display: block;
  position: absolute;
}
.n3 {
  width: 150px;
}
/* <-------------------------------Hero Section----------------------------------------------------------> */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    153deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(142, 70, 213, 1) 100%
  );
}
.main {
  width: 789px;
  height: 346px;
  left: calc(50% - 789px / 2 - 283.83px);
  top: calc(50% - 346px / 2 + 15.62px);

  border-radius: 36px;
}
.main h2 {
  font-size: 70px;

  margin: 5px 0px;
  font-family: var(--headFont);
  color: white;
}
.main p {
  font-size: 23px;
  font-family: var(--bodyFont);
  color: white;
}
.btn1 {
  background-color: #ee0971;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ee0971;
  cursor: pointer;
  transition: 0.2s;
  margin-top: 5px;
  display: inline-block;
  width: 34%;
}
.btn1:hover {
  transform: translateY(-3px);
}
.hero img {
  height: 475px;
  right: 76.93px;
  top: 140.42px;
  border-radius: 50%;
}
/* --------------------------------------Testmonials-------------------------------------------- */
.Testimonials {
  margin: 45px 0px;
}
/* ---------------------------Contact--------------------- */
.contact {
  display: flex;
  color: rgb(0, 0, 0);
  flex-direction: column;
  text-align: center;
  background-image: url(/Images/contact-bg-image.png);
  background-repeat: no-repeat;
}
.contact .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.contact a {
  text-decoration: none;
  color: rgb(0, 0, 0);
}
form {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5px;
  row-gap: 5px;
  width: 440px;
  background: rgba(255, 255, 255, 0);
}
form h3 {
  grid-column: span 2;
}
form input {
  outline: none;
  background-color: #fff0;
  border: 0;
  height: 50px;
  border-bottom: 2px solid black;
}
form #name {
  grid-column-start: 1;
}
form #message {
  grid-column: span 2;
  border: 0;
  border-bottom: 2px solid black;
  background-color: #fff0;

  outline: none;
}
form button {
  grid-column: span 2;
  padding: 12px;
  cursor: pointer;
  background-color: #ee0971;
  border: 0;
  border-radius: 4px;
}
iframe {
  height: 250px;
  width: 100vw;
  /* filter: invert(); */
}
/* ------------------------------------------------Services------------------------------------ */
.services {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.container img {
  height: 200px;
}
.display-6 {
  font-size: 2rem;
}
.card-body a {
  color: black;
}

footer a {
  color: #757575 !important;
}
.container {
  margin: auto;
}
/* ------------------------------------------------Footer------------------------------------ */
footer {
  color: #757575;
}
footer ul li a {
  color: #757575 !important;
}

/* ------------------------------------------------------------------Responsiveness----------------------------------------------; */
@media screen and (max-width: 900px) {
  .hero {
    flex-direction: column;
    height: auto;
  }
  .hero img {
    height: 375px;

    margin-top: 53px;
  }
  .main {
    margin-top: 20rem;
    width: 100vw;
    height: auto;

    border-radius: 36px;
    text-align: center;
  }
  .main h2 {
    font-size: 50px;
  }
  .main p {
    font-size: 18px;
  }
  .contact .container {
    flex-direction: column;
  }
  form {
    width: 90vw;
  }
}
