body {
  margin: 0;
  padding: 0;
}

.page-layout {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

section.top-header {
  width: 100%;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
}

a {
  text-decoration: none;
}

.logo-wrapper {
  width: 10%;
}

.logo-wrapper img {
  width: 100%;
}
/* ---------------------------------- */
.content-wrapper {
  width: 100%;
}

.content-wrapper .main-content {
  display: flex;
  align-items: center;
}

.content-wrapper .right {
  width: 40%;
}

.content-wrapper .right {
  width: calc(45% - 2rem);
  padding-right: 2rem;
}

.content-wrapper .right img {
  width: 100%;
}

.content-wrapper .left {
  width: calc(55% - 2rem);
  padding-left: 2rem;
}

.content-wrapper .left h2 {
  font-size: 3rem;
  color: #025c36;
}

.content-wrapper .left h3 {
  font-size: 2rem;
  color: #8bcea0;
}

.content-wrapper .left p {
  width: 50%;
  text-align: justify;
  font-size: 1.2rem;
  text-shadow: 5px 2px 8px #84c998;
}

section.social-icon {
  width: 100%;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icon .social-icon-content {
  display: flex;
  gap: 15px;
}

.social-icon-content .icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 0.7rem;
  background-color: #cce8d5;
  color: #fff;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .5s ease;
  cursor: pointer;
}

.social-icon-content .icon-wrapper:hover {
  background-color: #81c997;
}

@media screen and (max-width: 1300px) {
  .content-wrapper .left p {
    width: 70%;
  }
}

@media screen and (max-width: 1200px) {
  .content-wrapper .left h2 {
    font-size: 2rem;
  }

  .content-wrapper .left h3 {
    font-size: 1.5rem;
  }

  .content-wrapper .left p {
    font-size: 1rem;
    text-shadow: 1px 1px 2px #84c998;
    width: 80%;
  }

  .content-wrapper .right {
    width: 50%;
  }

  .content-wrapper .left {
    width: 50%;
  }
}

@media screen and (max-width: 900px) {
  .content-wrapper .main-content {
    flex-direction: column-reverse;
    align-items: center;
  }

  .content-wrapper .left {
    padding: 0;
    text-align: center;
  }

  .content-wrapper .left p {
    width: 100%;
  }

  .content-wrapper .right {
    padding: 0;
  }

  .content-wrapper .left h2 {
    margin-bottom: 0.5rem;
  }

  .content-wrapper .left h3 {
    margin: 0.5rem 0;
  }
}

@media screen and (max-width: 568px) {
  .logo-wrapper {
    width: 20%;
  }

  .content-wrapper .left {
    width: 90%;
  }

  .content-wrapper .right {
    width: 85%;
  }
}
