@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  border: 1px transparent red;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
}

.flex {
  display: flex;
  align-items: center;
  align-content: center;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 10px;
  padding: 0 20px;
  justify-content: center;
  align-items: center;

}

.content {
  margin-top: 1vh;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1vh;
  max-width: 1200px;
  /* Adjust the maximum width as needed */
}

.navbar {
  justify-content: space-between;
}

.nav-links {
  gap: 50px;
  list-style: none;
}

.navbar a {
  padding: 20px 0;
  display: inline-block;
  color: black;
  text-decoration: none;
  text-transform: capitalize;
  transition: .2s;
}

.navbar a:hover {
  color: #ff8856;
}

/*Homepage*/
.contact {
  position: relative;
  height: 50vh;
  width: 100%;
  background: url(Images/contact.png);
  background-position: center;
  background-size: cover;
}

.contact::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
}

.contact .content {
  position: relative;
  height: 100%;
  margin-top: 10px;
  flex-direction: column;
  justify-content: center;
}

.contact .text {
  color: white;
  text-align: left;
  margin-bottom: 50px;

}

.contact .text h1 {
  font-size: 85px;
  font-weight: 700;
  margin-top: 1vh;
  margin-bottom: 1vh;

}


/*Contact Email*/
.contactEmail .content .email {
  display: flex;
  justify-content: space-between;
  text-align: justify;
  line-height: 2;
}

.contactEmail .content img {
  height: 320px;
  margin: 30px;
}

.contactEmail .content .email p {
  margin: 40px;
  font-size: 14px;
}

/*Contact Us Button*/
.btn {
  background-color: #510048;
  font-size: 14px;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

/*Footer*/
.footer {
  background-color: #333;
  padding: 20px 0;
}

.footer .span {
  color: #fff;
  font-size: 10px;
}

#menu-toggle,
#bar-btn {
  display: none;

}



/*Responsive*/


@media (width < 860px) {
  .navbar .nav-links {
    position: fixed;
    left: 0;
    top: 80px;
    height: 100%;
    display: block;
    background: #fff;
    width: 300px;
    padding-left: 20px;
    padding-top: 40px;
    left: -100%
  }

  #menu-toggle:checked~.nav-links {
    left: 0;
  }

  .nav-links li {
    font-size: 18px;
  }

  #bar-btn {
    display: block;
    color: black;
    font-size: 22px;
    cursor: pointer;
  }

  .contact .text h1 {
    font-size: 50px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;

  }

  .contactEmail {
    padding: 20px;
  }

  .contactEmail .content .email {
    display: flex;
    justify-content: space-between;
    text-align: justify;
    flex-direction: column;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .contactEmail .email img {
    display: none;

  }

  section span {
    font-size: 12px;
    margin-bottom: 10px;
  }

  section h1 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: left;
  }

  section p {
    font-size: 14px;
  }

}

@media (width < 560px) {
  .contact .text h1 {
    font-size: 40px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;

  }


  section .points .poin {
    width: 100%;
  }



  section span {
    font-size: 10px;
    margin-bottom: 10px;
  }

  section h1 {
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: left;
  }

  section p {
    font-size: 12px;
  }

  .posts .post-cta {
    display: inline-block;
    padding: 5px 10px;
    margin-top: 20px;
    letter-spacing: 1px;
    font-size: 10px;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    background: #510048;
  }


}