@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&display=swap');

body {
    background: #ffffff;
    font-family: "Outfit", Sans-serif;
    overflow-x: hidden;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#home {
    /*background: url(images/home-bg.jpg) no-repeat center center;*/
    background-size: cover;
    vertical-align: middle;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* padding-top: 1em; */
    text-align: left;
}

h1 {
    color: #292929;
    /* font-size: 3em; */
    margin-bottom: 30px;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: inherit;
    letter-spacing: -1px;
}

section {
    /*padding-top: 80px;*/
    padding-bottom: 80px;
    text-align: center;
}

.overlay {
    opacity: 0.7;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
}

.home-info .section-btn {
    background: transparent;
    border: 2px solid #ea7513;
    color: #292929;
}
.section-btn {
    border-radius: 100px;
    cursor: pointer;
    font-size: inherit;
    font-weight: normal;
    padding: 15px 30px;
    transition: 0.5s;
}

.mobile-link-button {
    width: 100%;
    display: none;
  }
  .mobile-link-button #appLink img {
    height: 100%;
    margin-right:1rem;
  }
  .mobile-link-button #playstoreLink img {
    height: 100%;
  }

  .img-panner{
    position: relative;
    /* max-width: 500px; */
    margin:2rem 0;
 }
 .img-panner img{
    position: absolute;
    left: 10px;
  }
 
  .img-panner span{
     position: absolute;
     left:70px;
     top: 15px;
     color: #ffffff;
   }
   @media (max-width:760px) {
    .mobile-link-button {
        width: 100%;
        display: block;
      }
    
   }