body{
  margin: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  font-family: 'Calibri Light';
}

.landing-header{
  padding: 0rem 1rem;
  padding-top: 5rem;
  padding-bottom: 0rem;
  text-align: center;
}
.landing-tagline{
  padding: 2rem 0rem;
  font-weight: bold;
  font-size: 1.2rem;
  color: #363636;
  text-align: center;
}
.landing-bg{
  /* Green
  background-color: #1ab67b;*/
  background-color: #b520ab;
}
.landing-images{
  display: flex;
  justify-content: center;
  text-align: center;
}.landing-images .icon{
  padding: 2rem 2rem;
}.landing-images .icon i{
  display: flex;
  align-items: center;
  justify-content: center;

  height: 100px;
  font-size: 4rem;
  color: #ffffff;
}.landing-images .icon .title{
  margin-top: 0.5rem;
  color: #ffffff;
  opacity: 0;
  transition: 0.3s;
}.landing-images .icon:hover .title{
  opacity: 1;
}

.landing-section{
  padding: 5rem 1rem;
}.landing-section .text{
  font-size: 30px;
  color: #242424;
  text-align: center;
}.landing-section .text-sm{
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #b520ab;
  text-align: center;
}
.landing-section a{
  color: #b520ab;
  text-decoration: none;
}
.landing-logo{
  width: 300px;
}

.landing-text{
  margin: auto;
  margin-top: 3rem;
  padding: 2rem;
  max-width: 700px;
  font-size: 1.3rem;
  text-align: justify;
}
.landing-text .space{
  margin-bottom: 20px;
}


@media screen and (max-width: 767px) {

  .landing-tagline {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .landing-images{
    width: 100%;
    display: inline-block;
  }
  .landing-images .icon{
    width: 200px;
    display: inline-block;
  }
}
