@font-face {
  font-family: 'Segoe UI Regular';
  font-style: normal;
  font-weight: normal;
  src: local('../assets/fonts/Segoe-UI-Regular'), url('../assets/fonts/Segoe-UI.woff') format('woff');
}

body,
html {
  width: 100vw;
  height: 100vh;
  background-color: #e0e1e3;
  font-family: 'Segoe UI Regular';
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.slogan-logo {
  width: fit-content;
  margin: auto;
  text-align: center;
}

.slogan-logo img {
  width: 80%;
}

.container {
  display: flex;
  width: 50%;
  margin: auto;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.circle {
  position: relative;
  width: 150px;
  height: 150px;
  background-color: white;
  border-radius: 50%;
}

.circle .center-img img {
  width: 100%;
}

.circle .center-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.icon-text-wrapper {
  margin: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.icon-text-wrapper h2 {
  color: #8ac743;
  text-align: center;
  margin: 1rem;
}
.icon-text-wrapper h2 span {
  display: block;
}
.footer {
  color: white;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
.footer .footer-info {
  background-color: #8ac743;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
}

.footer .footer-info .footer-logo {
  width: 10rem;
}
.footer .footer-info .footer-logo img {
  width: 100%;
}

.footer .footer-info .footer-contact ul {
  list-style-type: none;
}

.footer .footer-info .h5-container {
  position: relative;
  height: 1.7rem;
}

.footer .footer-info .h5-container .bottom-border-width {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.07rem;
  background-color: white;
  width: 1.3rem;
}

.social-icons > a {
  color: white;
  margin-right: 0.5rem;
}

.font-12 {
  font-size: 12px;
}

.font-14 {
  font-size: 0.85rem;
}

.margin-1 {
  margin: 1rem 0;
}

.copyright-footer {
  background-color: black;
  width: 100%;
}

.copyright-footer > div {
  margin: auto;
  padding: 0.5rem 0;
  width: 83%;
  display: flex;
  justify-content: space-between;
}

.gem-fruits-logo-w {
  width: 80%;
}

.landscape-logo-w {
  width: 30%;
}

@media (max-width: 1358px) {
  .footer {
    position: relative;
  }
}

@media (max-width: 600px) {
  .footer .footer-info {
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
    text-align: center;
  }
  .footer .footer-info .h5-container .bottom-border-width {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}