@font-face {
  font-family: "Roboto";
  src: url("../SCSS/fonts/Roboto-Regular.ttf");
}
/*
  0 - 600px:      Phone
  600 - 900px:    Tablet portrait
  900 - 1200px:   Tablet landscape
  [1200 - 1800] is where our normal styles apply
  1800px + :      Big desktop

  $breakpoint argument choices:
  - small-phone
  - phone
  - tab-port
  - tab-land
  - tab-desk
  - big-desktop

  ORDER: Base + typography > general layout + grid > page layout > components

  1em = 16px
  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  width: 100%;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

.section__header {
  background-image: url("../img/section-background.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  height: 690px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 20px;
}
@media (max-width: 768px) {
  .section__header .section__header {
    background-position: left center; /* Show the left part of the background image */
    background-size: cover; /* Ensure the image covers the entire section */
  }
}
.section__header-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 100%;
  animation: fadeIn 1.5s ease-out;
}
.section__header-body-text {
  flex: 2;
  color: #ffffff;
  text-align: left;
  position: relative;
  animation: slideInLeft 1s ease-out, floatingText 5s infinite ease-in-out;
}
.section__header-body-text--heading {
  font-family: Roboto;
  font-size: 64px;
  font-weight: 800;
  line-height: 74.24px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 37.5em) {
  .section__header-body-text--heading {
    font-size: 48px;
    line-height: 56px;
  }
}
@media only screen and (max-width: 58.25em) {
  .section__header-body-text--heading {
    font-size: 54px;
    line-height: 62px;
  }
}
.section__header-body-text--paragraph {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-family: Roboto;
  padding-right: 13rem;
}
@media only screen and (max-width: 37.5em) {
  .section__header-body-text--paragraph {
    padding-right: 1rem;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 58.25em) {
  .section__header-body-text--paragraph {
    padding-right: 2rem;
    font-size: 1.1rem;
  }
}
.section__header-body-text button {
  padding: 0.8rem 1.5rem;
  background: #332f2f;
  color: #ffffff;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 16px;
  font-weight: 700;
  line-height: 30.16px;
  letter-spacing: 0.08em;
  text-align: left;
  height: 78px;
  border-radius: 20px;
}
.section__header-body-text button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--nacos, #138c01);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s ease;
  z-index: 1;
}
.section__header-body-text button:hover::before {
  transform: translateX(0) skewX(-15deg);
}
.section__header-body-text button span {
  position: relative;
  z-index: 2;
}
.section__header-body-text button:hover {
  color: #ffffff;
}
.section__header-body-img {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  animation: slideInRight 1s ease-out, floatingImage 5s infinite ease-in-out;
}
.section__header-body-img img {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 37.5em) {
  .section__header-body-img img {
    width: 250px;
    height: auto;
  }
}
@media only screen and (max-width: 80em) {
  .section__header-body-img img {
    width: 280px;
    height: auto;
    display: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .section__header {
    height: 100vh;
  }
  .section__header-body {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  .section__header-body-text {
    animation: none;
  }
  .section__header-body-text--heading, .section__header-body-text--paragraph {
    text-align: left;
  }
  .section__header-body-text button {
    margin-top: 1rem;
  }
  .section__header-body-img {
    margin-top: 2rem;
    animation: none;
  }
}
@media only screen and (max-width: 58.25em) {
  .section__header {
    height: 100vh;
    padding: 10px;
  }
  .section__header-body {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  .section__header-body-text {
    animation: none;
  }
  .section__header-body-text--heading, .section__header-body-text--paragraph {
    text-align: left;
  }
  .section__header-body-text button {
    margin-top: 1rem;
  }
  .section__header-body-img {
    margin-top: 2rem;
    animation: none;
  }
}
@media only screen and (max-width: 80em) {
  .section__header {
    padding: 15px;
  }
  .section__header-body {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  .section__header-body-text {
    animation: none;
  }
  .section__header-body-text--heading, .section__header-body-text--paragraph {
    text-align: left;
  }
  .section__header-body-text button {
    margin-top: 1rem;
  }
  .section__header-body-img {
    margin-top: 2rem;
    animation: none;
  }
  .section__header:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/naco-img.png");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: -1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.about {
  padding: 50px 100px;
}
@media only screen and (max-width: 37.5em) {
  .about {
    padding: 20px;
  }
}
@media only screen and (max-width: 58.25em) {
  .about {
    padding: 20px 40px;
  }
}
@media only screen and (max-width: 80em) {
  .about {
    padding: 30px 50px;
  }
}
.about h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 46.4px;
  letter-spacing: 0.08em;
  text-align: left;
  color: #138c01;
  animation: fadeIn 1.5s ease-out;
}
@media only screen and (max-width: 37.5em) {
  .about h2 {
    font-size: 24px;
  }
}
.about p {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin-top: 5px;
  text-align: justified;
  color: #332f2f;
  animation: fadeIn 1.5s ease-out;
}
@media only screen and (max-width: 37.5em) {
  .about p {
    font-size: 16px;
  }
}
.about .about-us {
  padding: 50px 20px;
  max-width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .about .about-us {
    padding: 20px;
  }
}
.about .about-us h1 {
  font-weight: 900;
  line-height: 87px;
  letter-spacing: 0.08em;
  font-size: 45px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 37.5em) {
  .about .about-us h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
.about .about-us p {
  font-size: 18px;
  font-weight: 700;
  line-height: 37.12px;
  letter-spacing: 0.7em;
}
@media only screen and (max-width: 37.5em) {
  .about .about-us p {
    font-size: 14px;
  }
}
.about .about-us--text {
  text-align: center;
}
.about .about-us .profiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: space-between;
}
@media only screen and (max-width: 58.25em) {
  .about .about-us .profiles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 37.5em) {
  .about .about-us .profiles {
    grid-template-columns: 1fr;
  }
}
.about .about-us .profiles .profile {
  text-align: center;
}
.about .about-us .profiles .profile img {
  width: 256px;
  height: 244px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
}
@media only screen and (max-width: 58.25em) {
  .about .about-us .profiles .profile img {
    width: 200px;
    height: 200px;
  }
}
@media only screen and (max-width: 37.5em) {
  .about .about-us .profiles .profile img {
    width: 60vw;
    height: 60vw;
  }
}
.about .about-us .profiles .profile h4 {
  font-size: 20px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 37.5em) {
  .about .about-us .profiles .profile h4 {
    font-size: 18px;
  }
}
.about .about-us .profiles .profile p {
  font-size: 16px;
  color: #666;
  letter-spacing: 2px;
}
@media only screen and (max-width: 37.5em) {
  .about .about-us .profiles .profile p {
    font-size: 14px;
  }
}
.about .about-us .profiles_two {
  margin-top: 40px;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes floatingText {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes floatingImage {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 20px 0;
}
.divider hr {
  flex: 1;
  border: none;
  border-top: 3px solid #138c01;
}
.divider span {
  margin: 0 10px;
  font-weight: 900;
  line-height: 87px;
  letter-spacing: 0.08em;
  font-size: 45px;
}
@media only screen and (max-width: 37.5em) {
  .divider span {
    font-size: 32px;
  }
}

/* Footer Styles */
.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0 0 0;
  text-align: center;
}

.footer_layout {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer_content {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer_section {
  flex: 1 1 200px;
  margin: 20px;
}

.footer_section h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.footer_section p {
  font-size: 1em;
  line-height: 1.5;
}

.footer_bottom {
  background-color: #222;
  padding: 20px 0;
  margin-top: 20px;
}

.footer_bottom p {
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer_layout {
    flex-direction: column;
    align-items: center;
  }
}/*# sourceMappingURL=style.css.map */