body {
  font-family: 'Roboto', sans-serif;
  background-color: #eeeeee;
}

ul {
  padding: 0;
}

/* Hero section titles */
.hero h1, .hero h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: bolder;
}

.hero h2 {
  font-size: 2rem !important;
}

/* Hero slogan or tagline */
.hero p {
  font-family: 'Lato', sans-serif;
}

/*
#myLinks {
  display: inline-block;
}

*/

.icon {
  display: none;
}

/* Section headings */
.about h2,
.services h2,
.why-choose h2,
.contact h2 {
  font-family: 'Oswald', sans-serif;
  padding: 0.5rem;
}

/* Bold call-to-action buttons */
/*
.hero-buttons a, .button {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1rem;
  font-size: 1rem;
  font-weight: bolder;
  border: 1px solid white;
}
*/

p, li {
  color: white;
}

body {
  margin: 0;
  /*font-family: Arial, sans-serif;*/
  color: #333;
  /*background-color: #f9f9f9;*/
}

h1,h2,h3 {
  color: orange;
}

header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #111;
  color: #fff;
  padding: 1rem 2rem;
  max-width: 100%;
}

/*header a {
  width: 15%;
}*/

.fb {
  width: 30%;
}

.wa-hdr {
  width: 32%;
  margin-left: 1rem;
}

.social-media {
  width: 40%;
}


.logo {
  width: 50%;
}

.logo img {
  width: 100%;
}

nav {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: auto;
  padding: 0;
  width: 60%;
  padding-left: 5%;

}

nav a {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  border-right: 1rem;
  width: 15rem;
}

nav a:hover {
  color: orange;
}

.active {
  color: orange;
}

.cta {
  background: #e67e22;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin-left: 1rem;
  color: #fff;
  text-decoration: none;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.button {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  width: 15rem;
  margin: auto;
  padding: 0.75rem 1.5rem;
  /*background: #e67e22;*/
  background-color: blue;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bolder;
  font-family: Roboto, sans-serif;
  border: 2px solid white;
  border-radius: 4px;
}

.button:hover {
  cursor: pointer;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
  color: #fff;
  text-align: center;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem;
}

.hero-img {
  flex: 1;
  width: 50%;
  height: 272px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.slide {
  display: none;
  width: 50%;
  object-fit: cover;
}

.hero-content {
  width: 50%;
  position: relative;
  z-index: 1;
  padding: 2rem;
  border-radius: 8px;
}

.hero-content h1, .hero-content h2, .hero-content p {
  opacity: 0;
  transform: translateX(-100px);
  -webkit-animation: slideIn 1s ease-out forwards;
          animation: slideIn 1s ease-out forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@-webkit-keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

main {
  background-image: url("images/homepage1.jpg");
  background-repeat: repeat;
  background-size: contain;
}

.box {
  width: 60%;
  margin: auto;
  background-color: #8b7d7b;
  border: 2px solid black;
  border-radius: 10px;
  padding: 2rem 2rem;
  opacity: 0.9;
}

/*
.box a {
  display: block;
  margin: auto;

  text-align: center;
}
*/

h1, .box h2, .box h3, .vision h2, .mission h2mai {
  background-color: #2c2c2c;
  text-align: center;
  border-radius: 5px;
  padding: 0.5rem;
  margin: auto;
}

.vision-mission {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  gap: 1rem;
  background-color: #8b7d7b;
  padding: 2rem;
  margin: auto;
}

.vision, .mission {
  width: 50%;
  margin: auto;
  border: 1px solid white;
  border-radius: 10px;
  padding: 1rem;
}

.service-grid {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
}

.card {
  /*background: #eaeaea;*/
  padding: 1rem;
  /*border-radius: 6px;*/
  text-align: center;
  color: white;
  border: 1px solid white;
  border-radius: 5px;
}

.why-choose ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.why-choose li {
  color: white;
  border: 1px solid white;
  border-radius: 5px;
  padding: 1rem;
}

.wa {
  width: 40%;
}

#contactWA {
  padding-top: 2rem;
}

form {
  width: 70%;
  margin: auto;
  border: 2px solid white;
  padding: 2rem;
}

.response-box {
  background-color: black;
  border-left: 5px solid #4CAF50;
  padding: 10px;
  margin-bottom: 20px;
  font-weight: bold;
  border: 2px solid orange;
}

label {
  display: block;
  background-color: #2c2c2c;
  color: orange;
  width: 10rem;
  text-align: left;
  padding: 8px;
}

input, textarea {
  border: 1px solid red;
  width: 95%;
  padding: 8px;
}

iframe {
  display: block;
  margin: auto;
  width: 80%;
}

footer {
  background: #111;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

footer p.i {
  opacity: 0.4;
}

.footer-links {
  width: 30%;
}

.footer-links a {
  color: #fff;
  margin-left: 1rem;
  text-decoration: none;
}

footer img {
  width: 15%;
}
