body {
  /* background: url(assets/background\ 1.png) no-repeat center center
    fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; */
  background: none;
  scroll-behavior: smooth;
}

#btn_bottom {
  position: fixed;
  bottom: 30px;
  right: 30px;
  /* display: none; */
  background-color: #8febe0;
  z-index: 1;
  color: white;
  font-size: 18px;
  height: 50px;
  width: 50px;
  cursor: pointer;
}
#btn_top {
  display: none;
}

.section-bg {
  background: linear-gradient(to top, #8557d9 20%, #8febe0 80%);
  color: white;
  /* height: 100%; */
  position: relative;
}

#slide_show {
  display: flex;
  overflow-x: scroll;
  /* border: solid 5px green; */
}

#slide_show::-webkit-scrollbar {
  display: none;
}

section:first-of-type > img {
  position: absolute;
  left: 7.5%;
  width: 85%;
  height: 100%;
}

@keyframes Slide_Left {
  75% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-100px);
  }
}

#slide_show > div {
  min-width: 100%;
  position: relative;
  animation: Slide_Left 9s ease-in-out;
}

.landing-box {
  /* min-width: 100%; */
  position: relative;
  /* border: solid black 1px; */
  margin: 0 auto;
  height: 40vw;
  overflow: hidden;
}

.landing-box img {
  height: 75%;
  margin-top: 2%;
  animation: Slide_Right_img 1s ease-in;
}

@keyframes Slide_Right_img {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(0);
  }
}

.landing-box div {
  /* border: solid 1px blue; */
  position: relative;
  /* top: -100px; */
  /* height: 100px; */
  height: 40px;
  top: -6vw;
  overflow: hidden;
  z-index: 10;
}

.btn-teal {
  width: 20%;
  background-color: #08d4c4;
  font-size: 1.3vw;
  padding: 0.2vw 0;
  font-weight: bold;
  color: white;
  border: none;
  border-radius: 6px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  /* transition-delay: 2s; */
  animation: Slide_Right_btn 3s ease-in;
  /* animation: name duration timing-function delay iteration-count direction fill-mode; */
}
@keyframes Slide_Right_btn {
  0% {
    opacity: 0;
  }
  64% {
    opacity: 0;
  }
  65% {
    transform: translateX(-100px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}

.landing-box p {
  position: relative;
  top: -40px;
  margin: 0 auto;
  width: 60%;
  /* font-size: 18px; */
  font-size: 1.2vw;
  animation: Slide_Right_p 1.8s ease-in;
}

@keyframes Slide_Right_p {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    transform: translateX(-100px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    /* z-index: 2; */
  }
}

.section-grids {
  display: grid;
  grid-template-columns: 50% 50%;
  height: 600px;
}

.section-grid {
  /* border: solid white 1px; */
  align-items: center;
  display: grid;
  justify-items: center;
}
.grid-txt {
  margin: 0 20px;
  width: 70%;
  display: grid;
  align-content: space-between;
  /* border: solid black 1px; */
}
.start {
  justify-self: start;
  justify-items: start;
}
.end {
  justify-self: end;
  justify-items: end;
}
.livvy-img {
  display: grid;
  align-items: center;
  /* border: solid black 1px; */
}
.livvy-img img {
  object-fit: cover;
  width: 80%;
  max-width: 600px;
  /* border: solid black 1px; */
}

.section-ppl {
  /* border: solid black 1px; */
  height: 630px;
  display: grid;
  padding: 20px 0;
  align-content: space-between;
}

.ppl-grids {
  display: grid;
  grid-template-columns: 33.33% 33.33% 33.33%;
  /* border: solid black 1px; */
  margin: 0 60px;
  /* margin-bottom: 20px; */
  justify-content: space-between;
  height: 550px;
}
.ppl-grid {
  /* border: solid black 1px; */
  display: grid;
  align-content: space-around;
  height: 500px;
  margin: 0 auto;
}

.ppl-img,
.ppl-name {
  position: relative;
  /* border: solid black 1px; */
}
.ppl-img img {
  object-fit: cover;
  height: 150px;
  width: 150px;
  border-radius: 50%;
}
.ppl-txt {
  height: 250px;
  font-size: 1.1vw;
  /* border: solid black 1px; */
  padding: 0 10px;
  align-items: center;
  display: grid;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
  /* width: 100%; */
}

.landing-btm {
  height: 300px;
  /* background: url(assets/landing/background\ 1.png) no-repeat center center fixed; */
  background: url(assets/background\ 1.png) no-repeat center center fixed;
  background-size: cover;
  display: grid;
  align-content: space-around;
}

.landing-btm p {
  /* border: solid black 1px; */
  margin: 0 20%;
  align-self: center;
  font-size: 1.2vw;
}

@media screen and (min-width: 1800px) {
  .landing-box div {
    height: 45px;
  }
}


@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
  .landing-box {
    height: 150vw !important;
  }

  .btn-teal {
    width: 50% !important;
    line-height: 18px !important;
  }

  .landing-box p{
    font-size: 12px !important;
    line-height: 16px !important;
    width: 90% !important;
  }

  .landing-box img {
    margin-top: 10% !important;
  }

  section:first-of-type > img {
    left: 0% !important;
    width: 100% !important;
  }

}