.app section.home{
  min-height: calc(100vh - 72px);
  z-index: 1;
  max-width: 1200px;
}

.app .homepage-logo{
  align-self: flex-start;
  margin-top: -60px;
  margin-bottom: 40px;
  max-width: 240px;
}

.app .signin .homepage-logo {
  align-self: center;
}

.app section.home h1, .app section.signin h1{
  font-size: 3.6em;
  margin:0px;
  text-align: center;
  max-width: 700px;
  line-height:1.2em;
}

.app section.home .right-content {
  display: flex;
  align-self: flex-end;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}


.app section.home .right-content h3:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -10%;
    left: -8%;
    z-index: -1;
    background-color: #FFFFFF05;
    padding: 15px 15px;
}


.app .image-strip-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.app .image-strip {
    display: flex;
    position: absolute;
    left: -100px;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    transition: transform 0.5s;
    top: -260px;
    transform: rotate(-20deg) translateX(-50%);
}

.app .image-div {
    margin: 10px;
    background-color: grey;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 150px;
    aspect-ratio: 6 / 16;

}





.app section.home h1 {
  padding: 14px 20px 14px 10px;
  text-align: right;
  color: #fff;
  line-height: 1em;
  font-size: 3em;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1;
}
.app section.home h1 span {
  position: relative;
}
.app section.home h1 span:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -10%;
    left: -5%;
    z-index: -1;
    background-color: #FF9B05;
    padding: 10px 10px;
}

.app section.home h1 span:first-child:before {
  transform: rotate(-2deg);
  top: -20%;
  left: -2%;
}
.app section.home h1 span:nth-child(2):before {
  padding-right: 30px;
}
.app section.home h1 span:last-child:before {
  transform: rotate(-5deg);
  top: -20%;
}

.app section.signin h3{
  margin:30px auto;
}

.app section.home h3 {
  font-size: 1.1em;
  margin: 0px;
  font-weight:300;
  text-align: center;
  max-width: 700px;
  align-self: flex-end;
}

.app section p {
  color: #000;
  font-size: 1.2em;
  line-height: 1.5;
  margin-bottom: 1em;
  text-align: center;
}


.app section.home .hero-cta{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin: 80px 0px 80px;
  height: calc(100vh - 160px);
  min-height: 920px;
  row-gap: 30px;
  align-items: center;
  margin: 40px 0px;
}


.app section.home .hero-cta a.call-button{
  margin-top: 20px;
}

.app button.endcall-button{
  background: #F55937;
}

.app button.call-button img, .app button.endcall-button img, .app a.call-button img{
  height:1.8rem;
  width:1.8rem;
  flex:0;
}

.app button.call-button:hover, .app button.endcall-button:hover, .app a.call-button:hover {
  background-color: #FF7828;
  color:#fff;
}

.app button.endcall-button:hover{
  background-color: #D93713;
}





@media screen and (max-width: 580px) {
  .app .homepage-logo{
    width: 200px;
  }
  .app .image-strip{
    top: -200px;
  }
  .app .image-div{
    width: 120px;
  }

}


@media (min-width: 900px) {
    .app .image-strip {
        transform: rotate(-37deg) translate(-50%, -50%);
        top: -340px;
    }
    .app section.home .right-content {
      width: 45%;
    }

    .app .homepage-logo {
      margin-top: -40px;
      max-width: 300px;
    }
}

@media (min-width: 1000px) {
  .app section.home .hero-cta{
    min-height: 860px;
  }

}

@media (min-width: 1200px) {
  .app section.home .hero-cta{
    min-height: 760px;
  }

}