@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:ital,wght@0,300;0,400;0,700;1,200&family=Nunito&family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:ital,wght@0,300;0,400;0,700;1,200&family=Nunito:wght@400;700&family=Roboto:wght@300&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', Roboto;
    font-weight: 400;
  }

  /*  Fullsite Navigation Style  */

#navigation {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: absolute;
  background: transparent;
  padding: 25px 50px;
  transition: 0.5s ease-in-out;
  z-index: 100;
  top: 0;
  left: 0;
  font-size: 30px;
  color: #fff;
  font-family: var(--font-Montserrat);
}

#navigation.scroll {
  background: rgba(209, 209, 209, .9);
}

.icon-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#icon {
  height: 60px;
}

.nav-items {
  display: flex;
  flex-direction: row;
  list-style: none;
}

.nav-item.active {
  border-bottom: 2px solid #fff;
}

.nav-item::after {
  content: "";
  position: absolute;
  background: #fff;
  height: 2px;
  width: 0px;
  top: 38px;
  left: 0;
  transition: all 0.4s ease-in-out;
}

.nav-item:hover::after {
  width: 100%;
}

#nav-icon {
  margin-right: 10px;
}

.nav-item {
  margin: 0 30px;
  text-decoration: none;
  position: relative;
}

.nav-item a {
  text-decoration: none;
  color: #fff;
}

@media (max-width: 990px) {
  #navigation {
    display: none;
  }

  .nav-items {
      display: none;
  }
  #menu {
      display: block;
  }
}


/* Collapsed Navigation Style */

.menu {
  display: none;
  position: absolute;
  top: 20px;
  right: 50px;
  font-size: 50px;
  z-index: 102;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

.menu a {
  text-decoration: none;
}

#menu-open {
  color: #fff;
}

#menu-close i {
  display: block;
  color: red;
}

#navigation-collapsed {
  height: 100vh;
  width: 300px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  position: fixed;
  top: 0;
  right: -310px;
  transition: 0.35s ease;
  box-shadow: -3px 0px 15px -7px #000000;
  z-index: 50;
  padding: 60px 0 0 30px;
  text-align: end;
}

#navigation-collapsed.active {
  right: 0;
}

.nav-icon-collapsed {
  display: block;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, 0);
}

.nav-items-collapsed {
  width: 100%;
  text-align: start;
}

.nav-item-collapsed {
  list-style: none;
  text-decoration: none;
  padding: 10px;
  margin: 10px 0;
}

#nav-icon-collapsed {
  margin-right: 15px;
  font-size: 28px;
  width: 32px;
}

.nav-item-collapsed a {
  text-decoration: none;
  color: #264819;
  padding: 20px 0;
  font-size: 22px;
}

.nav-item-collapsed a i {
  color: #264819;
}

.nav-item-collapsed.active a {
  color: #7ca500;
}

.nav-item-collapsed:hover a {
  color: #7ca500;
}

.nav-item-collapsed:hover a i {
  color: #7ca500;
}


@media (max-width: 500px) {
  #navigation-collapsed.active {
      width: 100%;
  }
  .nav-icon-collapsed {
      display: block;
  }
}

.section {
  width: 100%;
  min-height: 100vh;
  background-color: #7ca500;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 150px 0;
}

.section-white {
  background-color: #f7f7f7;
  color: #264819;
}

.section-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
  padding-top: 100px;
}

.section-container {
  width: 70%;
}

#landing-page {
  background-image: linear-gradient(to right bottom, rgba(167, 198, 73, 0.8), rgba(133, 155, 67, 0.8)), url("https://just-change.de/images/wald.jpg");
  /**rgba(124, 165, 0, .8), rgba(106, 141, 0, 0.8)**/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0;
}

.title-container {
  width: 60%;
  text-align: center;
}

.title-container h2 {
  font-size: 50px;
  font-weight: bold;
}

.title-container h3 {
  margin-top: 30px;
  font-size: 30px;
  font-style: italic;
}

.catch-phrase {
  margin-top: 130px;
  width: 70%;
  text-align: center;
}

.catch-phrase h1 {
  font-size: 40px;
  color: #264819;
}

@media screen and (max-width: 1376px) {
  .title-container h2 {
    font-size: 40px;
  }

  .catch-phrase h1 {
    font-size: 35px;
  }

  .catch-phrase {
    margin-top: 100px;
  }
}

@media screen and (max-width: 990px) {
  #landing-page {
    padding-top: 60px;
  }
}

@media screen and (max-width: 888px) {
  .title-container {
    width: 90%;
  }

  .catch-phrase {
    width: 90%;
  }
}

@media screen and (max-width: 630px) {
  .title-container h2 {
    font-size: 30px;
  }

  .title-container h3 {
    font-size: 22px;
  }

  .catch-phrase h1 {
    font-size: 30px;
  }
}

.section-heading {
  font-size: 40px;
  font-weight: bold;
}

.service-section {
  display: flex;
  flex-direction: row;
  gap: 50px;
}

.service-section div {
  width: 50%;
}

.service-text h3 {
  font-size: 25px;
  margin: 30px 0;
  font-weight: bold;
}

.service-text p {
  font-size: 18px;
}

.service-images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#service-2 {
  display: none;
}

.service-images img {
  transition: all 0.2s;
  height: 500px;
  border-radius: 27% 73% 56% 69% / 117% 27% 73% 32%;
}

.service-images img:hover {
  z-index: 20;
  transform: scale(1.05);
}


@media screen and (max-width: 1200px) {
  .service-section {
    flex-direction: column;
  }

  .service-section div {
    width: 100%;
  }

  #service-1 {
    display: none;
  }

  #service-2 {
    display: block;
    height: 350px;
  }
}

@media screen and (max-width: 550px) {
  #service-2 {
    display: block;
    height: 200px;
  }
}


/** TEAM Section **/
#team {
  background-image: linear-gradient(to right bottom, rgba(167, 198, 73, 0.9), rgba(133, 155, 67, 0.9)), url("https://just-change.de/images/IMG_1212.JPG");

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.team-section {
  display: flex;
  flex-direction: row;
  gap: 100px;
  margin-top: 30px;
  align-items: center;
}


.team-image img {
  border-radius: 27% 73% 56% 69% / 117% 27% 73% 32%;
  width: 450px;
}

.team-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.team-text h2 {
  font-size: 40px;
  margin-bottom: 50px;
}

.team-text p {
  font-size: 22px;
}

@media screen and (max-width: 1512px) {
  .section-container {
    width: 90%;
  }
}

@media screen and (max-width: 1250px) {
  .team-section {
    flex-direction: column;
    gap: 50px;
  }

  .team-text {
    justify-content: start;
  }

  .team-image {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .team-image img {
    width: 90%;
  }
}

/** CONTACT Section**/
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 100px 0;
}

.contact-paragraph {
  text-align: center;
  margin-bottom: 50px;
}

.contact-paragraph h2 {
  margin-bottom: 10px;
  font-size: 30px;
  color: #264819;
  font-size: 40px
}

.contact-paragraph h5 {
  font-size: 20px;
  color: #264819;
}

.contact-button {
  background-color: #264819;
  padding: 10px 20px;
  border-radius: 5px;
}

.contact-button a {
  text-decoration: none;
  color: #fff;
  font-size: 25px;

}


.footer {
  width: 100%;
  height: 8vh;
  color: #264819;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}