html, body {
  font-family: Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}

h1, h2 {
  font-family: "Frank Ruhl Libre", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 24px;
  font-weight: 500;
}

h4 {
  font-size: 20px;
  font-weight: 500;
}

a, p {
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

.a-btn {
  display: block;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  background-color: #5d7a1c;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  transition-duration: 0.2s;
  color: white;
}
.a-btn:hover {
  background-color: #7da326;
  transform: scale(1.05);
  box-shadow: 0 0 20px #5d7a1c;
}

.a-btn-2 {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background-color: #d7ebaa;
  font-weight: 600;
  color: #24300b;
  width: -moz-fit-content;
  width: fit-content;
  transition-duration: 0.2s;
}
.a-btn-2:hover {
  transform: scale(1.05);
}

header {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
}
header nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  background-color: black;
  color: white;
}
header nav .website-name {
  padding: 1rem 0;
}
header nav ul {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  list-style-type: none;
}
header nav ul li a {
  color: white;
  text-decoration: none;
}

@media (max-width: 850px) {
  header .slogan {
    display: none;
  }
}
@media (max-width: 600px) {
  header {
    padding: 0;
  }
  header nav {
    border-radius: 0;
  }
  header nav ul li:first-child {
    display: none;
  }
}
@media (max-width: 370px) {
  header nav .website-name {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  header nav ul li .a-btn {
    padding: 0.5rem 0.75rem;
  }
}
.hero {
  background-size: cover;
  background-attachment: fixed;
  padding: 12rem 1.5rem 4rem;
}
.hero .hero-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  color: white;
  gap: 6rem;
}
.hero .hero-content div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}
.hero .hero-content div:first-child .a-btn {
  margin-top: 1rem;
}
.hero .hero-content #video {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .hero-content #video div {
  width: 100%;
}
.hero .hero-content #video iframe {
  width: 100%;
  border-radius: 15px;
}
.hero .hero-content #video-placeholder {
  width: 100%;
  border-radius: 15px;
}
.hero .hero-content #play-btn {
  position: absolute;
}
.hero .hero-content #play-btn:hover {
  transform: scale(0.95);
  cursor: pointer;
  transition-duration: 0.3s;
}

@media (max-width: 850px) {
  .hero {
    background-attachment: scroll;
  }
  .hero .hero-content {
    margin: 0;
    grid-template-columns: 1fr;
  }
  .hero .hero-content #video {
    display: none;
  }
  #homepage .hero .hero-content {
    max-width: 600px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 12rem 1.5rem 6rem;
  }
  .hero h1 {
    font-size: 48px;
  }
}
.services {
  padding: 6rem 1.5rem;
}
.services h2 {
  font-family: inherit;
  font-size: 24px;
  font-weight: 500;
}
.services .services-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
}
.services .services-content .service-card {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 1rem;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  background-color: white;
}
.services .services-content .service-card h3 {
  font-weight: 500;
}
.services .services-content .service-card img {
  width: 100%;
  border-radius: 15px 15px 0 0;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.services .services-content .service-card .service-card-content {
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  height: 100%;
}
.services .services-content .service-card .service-card-content .a-btn-2 {
  margin-top: 1rem;
}

@media (max-width: 1000px) {
  .services {
    padding: 4rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
  }
  .services .services-content .service-card img {
    height: 250px;
  }
}
@media (max-width: 850px) {
  .services {
    padding: 4rem 1.5rem;
  }
  .services .services-content .service-card img {
    height: 200px;
  }
}
@media (max-width: 600px) {
  .services .services-content {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .services .services-content .service-card {
    max-width: 400px;
  }
}
@media (max-width: 370px) {
  .services .services-content .service-card img {
    height: 200px;
  }
}
.where {
  padding: 2rem 1.5rem;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}
.where .where-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
}
.where .where-content img {
  border-radius: 15px;
}
.where .where-content div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}
.where .where-content div:first-child p {
  max-width: 700px;
}

@media (max-width: 850px) {
  .where .where-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .where .where-content div:first-child {
    align-items: center;
  }
  .where .where-content div:nth-child(2) {
    max-width: 500px;
    width: 100%;
  }
  .where .where-content div:nth-child(2) img {
    width: 100%;
  }
}
.articles {
  padding: 6rem 1.5rem;
}

.divider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  gap: 4rem;
}

.service-articles {
  grid-column: 1/3;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.service-articles .article {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-articles .article img {
  margin: 1rem 0;
  border-radius: 15px;
  width: 100%;
  max-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}

.featured-articles {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.featured-articles .article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.featured-articles .article-card {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  height: -moz-fit-content;
  height: fit-content;
}
.featured-articles .article-card img {
  border-radius: 15px 15px 0 0;
  width: 100%;
  height: 250px;
  max-height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.featured-articles .article-card .article-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: -moz-fit-content;
  height: fit-content;
}
.featured-articles .article-card .article-card-content h3 {
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.featured-articles .article-card .article-card-content p {
  max-width: 700px;
}
.featured-articles .article-card .article-card-content .a-btn-2 {
  margin-top: 1rem;
}

@media (max-width: 1000px) {
  .articles {
    padding: 4rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
  }
  .divider {
    display: flex;
    flex-direction: column;
  }
  .divider .service-articles {
    grid-column: 1/2;
  }
  .divider .article-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .divider .service-articles {
    max-width: 400px;
    margin: 0 auto;
  }
  .divider .featured-articles {
    max-width: 400px;
    margin: 0 auto;
  }
  .divider .article-grid {
    grid-template-columns: 1fr;
  }
}
footer {
  padding: 0rem 1.5rem;
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  background-color: black;
  padding: 2.5rem;
  border-radius: 15px;
  color: white;
}
footer .footer-content ul {
  display: flex;
  gap: 1rem;
  list-style-type: none;
  flex-direction: column;
}
footer .footer-content ul:last-child {
  align-items: flex-end;
}

@media (max-width: 600px) {
  footer {
    padding: 0;
  }
  footer .footer-content {
    border-radius: 0;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }
  footer .footer-content ul:last-child {
    align-items: flex-start;
  }
}
.credits {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
}
.credits p {
  font-weight: 500;
}

@media (max-width: 600px) {
  .credits {
    background-color: black;
    color: white;
  }
}
.contact .hero .hero-content {
  grid-template-columns: 1fr;
  text-align: center;
}
.contact .hero .hero-content div:first-child {
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}
.contact .contact-wrapper {
  padding: 6rem 1.5rem;
}
.contact .contact-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  max-width: 1100px;
  margin: 0 auto;
  gap: 6rem;
}
.contact .contact-content .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact .contact-content .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}
.contact .contact-content .contact-form form label {
  font-weight: 500;
}
.contact .contact-content .contact-form form .input-row {
  display: grid;
  gap: 1rem;
}
.contact .contact-content .contact-form form .input-row:first-child {
  grid-template-columns: 1fr 2fr;
}
.contact .contact-content .contact-form form .input-row:nth-child(2) {
  grid-template-columns: 2fr 1fr;
}
.contact .contact-content .contact-form form .input-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.contact .contact-content .contact-form form input, .contact .contact-content .contact-form form textarea, .contact .contact-content .contact-form form select {
  padding: 0.75rem 1rem;
  border-radius: 15px;
  border: 2px solid #eaeaea;
  resize: none;
  font-family: inherit;
  font-size: inherit;
}
.contact .contact-content .contact-form form textarea {
  height: 200px;
}
.contact .contact-content .contact-form form select {
  background-image: url("../assets/down.svg");
  background-repeat: no-repeat;
  background-position: right 0.7em top 55%, 0 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.contact .contact-content .contact-form form select::-ms-expand {
  display: none;
}
.contact .contact-content .contact-form form button {
  display: block;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  background-color: #5d7a1c;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  transition-duration: 0.2s;
  border: none;
  color: white;
  font-family: inherit;
  cursor: pointer;
}
.contact .contact-content .contact-form form button:hover {
  background-color: #7da326;
  transform: scale(1.05);
  box-shadow: 0 0 20px #5d7a1c;
}
.contact .contact-content .contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact .contact-content .contact-info ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact .contact-content .contact-info ul li {
  display: flex;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 1000px) {
  .contact .contact-wrapper {
    padding: 4rem 1.5rem 6rem;
  }
  .contact .contact-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contact .contact-content .contact-form {
    max-width: 600px;
    margin: 0 auto;
  }
  .contact .contact-content .contact-info {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .contact .hero .hero-content {
    text-align: start;
  }
  .contact .hero .hero-content div:first-child {
    align-items: start;
    margin: 0;
  }
  .contact .contact-content .contact-form form .input-row:first-child {
    grid-template-columns: 1fr;
  }
  .contact .contact-content .contact-form form .input-row:nth-child(2) {
    grid-template-columns: 1fr;
  }
  .contact .contact-content .contact-form form .input-row:nth-child(2) .input-field:first-child {
    order: 2;
  }
  .contact .contact-content .contact-form form .input-row:nth-child(2) .input-field:nth-child(2) {
    order: 1;
  }
}
.err404 .hero .hero-content {
  grid-template-columns: 1fr;
  text-align: center;
}
.err404 .hero .hero-content div:first-child {
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}
.err404 .wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.err404 .featured-articles {
  padding: 4rem 1.5rem;
}
.err404 .featured-articles .article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 950px) {
  .err404 .featured-articles .article-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */