@font-face {
  font-family: arial;
  src: url('../images/arial.ttf');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: arial;
  text-decoration: none;
}

h5 {
  color: #40024f;
  font-weight: bold;
  border-bottom: 2px solid #40024f;
}

body {
 background: #fff;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 1em;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background: #40024f;
}

.fade-up {
  opacity: 0;
  transform: translateY(15%);
  animation: fade-up 500ms linear forwards;
  animation-delay: 650ms
}

@keyframes fade-up {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*+++++++++++++++++++++++++++ splash screen +++++++++++++++++++++++++++++++++*/
.video {
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 1000;
  background: #fff url('../images/logo.png') no-repeat center;
  background-size: 40vh;
  transition: transform 500ms linear;
}

/*++++++++++++++++++++++++++++++++ NAVBAR ++++++++++++++++++++++++++++++++++++*/
.header-nav {
  display: flex;
  padding: 1% 4%;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  position: relative;
  z-index: 30
}

.logo {
  width: 15rem
}

/*++++++++++++++++++++++++++++++++ HOME PG ++++++++++++++++++++++++++++++++++++*/
.home-page {
  padding: 6% 4% 4%;
  position: relative;
  background-image: url("../images/background.png");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: contain;
}

.illustration-home {
  width: 432px;
  margin-left: 2rem;
}

#upload-icon {
  display: none;
  transition: all 300ms ease;
}

.hover {
  transition: all 300ms ease;
  transform: scale(1.05, 1.05);
  box-shadow: 1px 1px 20px #40024f
}

.upload-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation-delay: 1.1s
}

.headings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem
}

.home-heading {
  color: #40024f;
  font-size: 2.5rem;
}

.home-icon {
  color: #40024f;
  font-size: 6.6rem;
  font-weight: bold;
}

label {
  font-size: 1.2rem;
  color: grey;
  border: #40024f solid 3px;
  border-radius: 15px;
  padding: 0.5rem;
  text-align: center;
  width: 32rem;
  font-weight: bold;
  transition: background 500ms ease, color 500ms ease, transform 300ms ease;
}

label:hover,
label:focus {
  background: #40024f;
  color: #fff
}

.upload-icon {
  margin-left: 2rem;
  width: 2rem
}

.restriction {
  text-align: center;
  font-size: 0.85rem;
  color: grey;
  text-transform: capitalize;
  margin-top: 5px;
}

/*++++++++++++++++++++++++++++++++ ANDROID HOME ++++++++++++++++++++++++++++++++++++*/
.android {
  display: none
}

.android[data-visible="true"] {
  display: block;
}

.heading-buttons {
  display: flex;
  gap: 3rem;
  padding: 0 4% 0.5rem;
  background: rgba(0, 0, 0, 0.1);
  transition: 400ms ease;
}

.scrolled {
  transition: 400ms ease;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: fixed;
  z-index: 50;
  top: 0;
  width: 100%;
}

.appstore {
  color: grey;
  transition: all 300ms ease;
  font-weight: bold;
  padding: 1rem;
  background: transparent;
  font-size: 1.3rem;
  position: relative;
}

.playstore {
  color: #40024f;
  transition: all 300ms ease;
  font-weight: bold;
  padding: 1rem;
  background: transparent;
  border-bottom: 3px solid #40024f;
  font-size: 1.4rem
}

.appstore:hover,
.playstore:hover,
.appstore:focus,
.playstore:focus {
  color: #40024f;
  text-decoration: none;
}

.fa-brands {
  margin-right: 0.5rem
}

.phone {
  padding: 4rem 0
}

.phone-img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10;
}

.screen {
  width: 290px;
  margin-top: 0.5rem;
  position: relative;
}

.tab {
  width: 800px;
  margin-top: 0.5rem;
  position: relative;
}

/*+++++++++++++++++++++++++++++++++ SECTIONS ++++++++++++++++++++++++++++++++++*/
.section-1 {
  background: rgba(0, 0, 0, 0.1);
}

.section-2 {
  background: #fff
}

.section-3 {
  background: rgba(0, 0, 0, 0.1);
}

.section-4 {
  background: #fff
}

.section-5 {
  background: rgba(0, 0, 0, 0.1);
  padding-bottom: 7rem;
}

/*+++++++++++++++++++++++++++++++++ EXTRAS ++++++++++++++++++++++++++++++++++++++++*/
.coming-soon {
  font-size: 0.8rem;
  position: absolute;
  color: grey;
  bottom: -3px;
  left: 3rem;
  font-weight: bold;
  text-transform: capitalize;
}

.arrow-btn {
  outline: solid 2px #40024f;
  color: #40024f;
  padding: 5px 10px;
  border-radius: 10px;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 60;
  transition: 400ms ease;
}

.arrow-btn:hover,
.arrow-btn:focus {
  transition: 400ms ease;
  background: #40024f;
  color: white;
}

/*++++++++++++++++++++++++++++++++++ HOME +++++++++++++++++++++++++++++++++++++*/
.home-screen {
  position: absolute;
  width: 15rem;
  height: 28rem;
  top: 8.55rem;
  margin-right: 0;
}

#home-upload {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.upload-home1 {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  position: relative;
  left: 0.85rem;
  bottom: 0.7rem;
}

.upload-home2 {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  position: relative;
  left: 8.15rem;
  top: 1.4rem;
}

.upload-home3 {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  position: relative;
  left: 0.9rem;
  top: 3.4rem
}

.upload-home4 {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  position: relative;
  left: 8.18rem;
  top: 5.5rem;
}

.upload-home5 {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  position: relative;
  left: 0.9rem;
  top: 7.5rem;
}

.home-upload-text {
  position: absolute;
  bottom: -1.25rem;
  width: 2.5rem;
  height: 1.08rem;
  color: #B2B1B9;
  font-size: 0.53rem;
  text-align: center;
  overflow: hidden;
  line-height: 1.1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding-top: 0.05rem
}
.backgroundblack {
  background: #000;
}
/*++++++++++++++++++++++++++++++ TOP CHART ++++++++++++++++++++++++++++++++++++*/
.top-chart-icons {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 12rem;
  margin-right: 0.5rem;
}

.top-icon {
  width: 14.5rem;
  position: relative;
}

.icon-topchart-text {
  position: absolute;
  left: 2.8rem;
  width: 8rem;
  height: 1.05rem;
  color: #121212;
  font-size: 0.65rem;
  text-align: left;
  overflow: hidden;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  padding: 0.2rem 0.1rem;
}

#icon-topchart {
  width: 39px;
  height: 40.5px;
  border-radius: 7px;
  position: relative;
  z-index: 10;
  bottom: 2.845rem;
  left: 1.55rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#icon-topchart img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

#icon-topchart.icon-top7 {
  bottom: 2.72rem;
}

#icon-topchart.icon-top8 {
  bottom: 2.98rem;
  left: 1.7rem;
}

#icon-topchart.icon-top9 {
  bottom: 3.22rem;
  left: 1.7rem;
  width: 40px;
  height: 41px;
}

#icon-topchart.icon-top7 .icon-topchart-text,
#icon-topchart.icon-top8 .icon-topchart-text,
#icon-topchart.icon-top9 .icon-topchart-text {
  margin-left: 0.17rem;
}

#icon-topchart.icon-top10 {
  bottom: 2.99rem;
  left: 1.7rem;
  width: 41.5px;
  height: 42.5px;
}

.text-10 {
  width: 9.5rem;
  margin-left: 0.25rem;
}

#icon-topchart.icon-top11 {
  bottom: 3.05rem;
  left: 1.68rem;
  width: 41.5px;
  height: 42.5px;
}

/*++++++++++++++++++++++++++ TOP CHART SLIDER +++++++++++++++++++++++++++++++*/
#swipper {
  height: 23.5rem
}

#swiper-slide {
  height: 3.5rem;
  transition: all 400ms ease
}

#swiper-slide:hover,
#swiper-slide:focus {
  transform: scale(1.02, 1.02);
}

.autoplay-v {
  animation: transV 2s linear;
  animation-play-state: paused;
  animation-delay: 800ms;
}

@keyframes transV {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-800%);
  }

  100% {
    transform: translateY(0);
  }
}
/*+++++++++++++++++++++++++++++++ TABLET ++++++++++++++++++++++++++++++++++++*/
#swipper-tablet {
  width: 35rem
}

#swipper-slide-t {
  width: 6.2rem;
  transition: all 400ms ease;
}

.autoplay-tab {
  animation: transtab 2s linear;
  animation-play-state: paused;
  animation-delay: 800ms;
}

@keyframes transtab {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-540%);
  }

    100% {
      transform: translateX(0);
    }
}

.tab-row1 {
  position: absolute;
  margin-left: 11rem;
}

.tab-icons {
  width: 6rem;
}

#swipper-slide-t:hover,
#swipper-slide-t:focus {
  transform: scale(1.02, 1.02);
  text-decoration: none;
}

.suggestion {
  position: absolute;
  margin-top: 10rem;
  margin-right: 14rem;
  width: 10rem;
  z-index: 20
}

.tab-row2 {
  position: absolute;
  margin-left: 11rem;
  bottom: 1.6rem
}

.icon-tablet-1 {
  width: 88px;
  height: 88px;
  position: absolute;
  top: 0.35rem;
  border-radius: 15px;
  left: 0.3rem
}

.icon-tablet-2 {
  width: 88px;
  height: 88px;
  position: absolute;
  top: 0.5rem;
  border-radius: 15px;
  left: 0.3rem
}

#tablet-upload {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#tablet-upload img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.tab-text {
  position: absolute;
  bottom: -1.45rem;
  width: 5.3rem;
  height: 1.08rem;
  color: #B2B1B9;
  font-size: 0.6rem;
  text-align: left;
  overflow: hidden;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  padding: 0.1rem 0;
}

#tab-bigt {
  height: 1.7rem;
  bottom: -2rem;
  line-height: 1.1;
  -webkit-line-clamp: 2;
}

/*+++++++++++++++++++++++++++++++ FOR YOU ++++++++++++++++++++++++++++++++++++*/
#swipper-horizontal {
  width: 15.5rem;
  
}

#swiper-slide-h {
  width: 4.8rem;
  transition: all 400ms linear;
}

.autoplay-h {
animation: trans 1.5s linear;
animation-play-state: paused;
animation-delay: 800ms;
}
@keyframes trans {
  0%{
    transform: translateX(0);
  }
        50% {
          transform: translateX(-280%);
        }
                 100% {
                   transform: translateX(0);
                 }
}

.autoplay-c {
  animation: transC 1.5s linear;
  animation-play-state: paused;
  animation-delay: 800ms;
}

@keyframes transC {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-280%);
  }

    100% {
          transform: translateX(0);
        }
 
}

#swiper-slide-h:hover,
#swiper-slide-h:focus {
  transform: scale(1.02, 1.02);
  text-decoration: none;
}

.for-u-icon {
  width: 4.7rem;
}

.for-u-row {
  position: absolute;
  top: 11.5rem;
}

.casual-row {
  position: absolute;
  top: 10rem;
}

.suggestion-foru {
  width: 15rem;
  position: absolute;
  z-index: 15
}

.suggestion-casual {
  position: absolute;
  width: 15rem;
  margin-bottom: 2rem;
  z-index: 15
}

.for-u-row2 {
  position: absolute;
  top: 22.5rem;
}

.casual-row2 {
  position: absolute;
  top: 21.5rem;
}

.for-u-row3 {
  position: absolute;
  top: 31rem;
}

.icon-foru-1 {
  width: 67.5px;
  height: 67.5px;
  border-radius: 13px;
  position: relative;
  bottom: 6.9rem;
  left: 0.3rem
}

#foru-upload.icon-foru1 {
  bottom: 7.15rem;
  width: 69px;
  height: 69px;
  left: 0.2rem;
}

#foru-upload.icon-foru2 {
  bottom: 7.3rem;
  width: 70px;
  height: 70px;
  left: 0.2rem;
}

.icon-casual-2 {
  width: 67.5px;
  height: 67.5px;
  border-radius: 13px;
  position: relative;
  bottom: 7rem;
  left: 0.3rem
}

#casual-upload.casual2 {
  width: 68px;
  height: 68px;
  bottom: 7.1rem;
  left: 0.2rem
}

#foru-upload, #casual-upload {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#foru-upload img,
#casual-upload img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.foru-text {
  position: absolute;
  bottom: -1.7rem;
  left: -0.03rem;
  width: 4.1rem;
  height: 1.5rem;
  color: #383838;
  font-size: 0.6rem;
  text-align: left;
  overflow: hidden;
  line-height: 1.1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding: 0.25rem 0;
}

.google {
  -webkit-line-clamp: 1;
  height: 0.9rem;
  bottom: -1.1rem;
}

.casual-text {
  position: absolute;
  bottom: -1.7rem;
  left: -0.04rem;
  width: 4.1rem;
  height: 1.5rem;
  color: #383838;
  font-size: 0.6rem;
  text-align: left;
  overflow: hidden;
  line-height: 1.1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding: 0.25rem 0;
}

.task {
  -webkit-line-clamp: 1;
  height: 0.9rem;
  bottom: -1.1rem;
}

/*+++++++++++++++++++++++++++++++ MOBIE DESIGN +++++++++++++++++++++++++++++++++*/
@media screen and (max-width: 1050px) {
  .video {
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 1000;
    background: #fff url('../images/logo.png') no-repeat center;
    background-size: 30vh;
    transition: transform 500ms ease;
  }

  /*+++++++++++++++++++++++++++++++ NAVIGATION ++++++++++++++++++++++++++++++++++++*/
  .header-nav {
    padding: 2%;
    position: relative;
    z-index: 150
  }

  .logo {
    width: 12rem
  }

  .logo-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%
  }

  /*+++++++++++++++++++++++++++++++ HOME PAGE ++++++++++++++++++++++++++++++++++++*/
  .home-page {
    padding-left: 2%;
    padding-right: 2%
  }

  .illustration-home {
    display: block;
    margin: 2rem auto 1rem;
    width: 21rem;
  }

  .upload-sec {
    padding: 5rem 0 2rem;
  }

  .home-heading {
    font-size: 2.2rem
  }

  .home-icon {
    font-size: 5.5rem
  }

  label {
    width: 27.5rem;
    padding: 0.5rem 0.2rem;
    font-size: 1.1rem;
  }

  .upload-icon {
    margin-left: 1rem
  }

  /*+++++++++++++++++++++++++++++++ ANDROID ++++++++++++++++++++++++++++++++++*/
  .heading-buttons {
    justify-content: center;
    align-items: center;
    gap: 1.2rem
  }

  .appstore, .playstore {
    font-size: 1.3rem;
  }

  .screen {
    width: 240px;
  }

  /*++++++++++++++++++++++++++ HOME ++++++++++++++++++++++++++*/
  .home-screen {
    width: 13rem;
    height: 25rem;
    top: 7.45rem;
    margin-left: 0.1rem
  }

  .upload-home1 {
    width: 33px;
    height: 34px;
    left: 0.95rem;
    bottom: 0.5rem
  }

  .upload-home2 {
    width: 33.5px;
    height: 34px;
    left: 7.02rem;
    top: 1.1rem
  }

  .upload-home3 {
    width: 33px;
    height: 33px;
    left: 0.95rem;
    top: 2.8rem
  }

  .upload-home4 {
    width: 33.5px;
    height: 33.5px;
    left: 7rem;
    top: 4.5rem
  }

  .upload-home5 {
    width: 33.5px;
    height: 33px;
    left: 0.95rem;
    top: 6.1rem
  }

  .home-upload-text {
    bottom: -1.1rem;
    width: 2.1rem;
    height: 1rem;
    font-size: 0.45rem;
  }

  /*+++++++++++++++++++++++ TOP CHART +++++++++++++++++++++*/
  .top-icon {
    width: 12.5rem;
  }

  .top-chart-icons {
    top: 10rem;
    margin-left: 0.5rem
  }

  .icon-topchart-text {
    left: 2.55rem;
    width: 7rem;
    height: 0.95rem;
    font-size: 0.55rem;
    line-height: 1.5;
    padding: 0.15rem;
  }

  #swipper {
    height: 20rem
  }

  #icon-topchart {
    width: 36px;
    height: 36px;
    bottom: 2.5rem;
    left: 1.25rem;
  }

  #icon-topchart.icon-top7 {
    bottom: 2.45rem;
    width: 36px;
    height: 36px;
  }

  #icon-topchart.icon-top8 {
    bottom: 2.65rem;
    left: 1.4rem;
    width: 37px;
    height: 37px;
  }

  #icon-topchart.icon-top9 {
    bottom: 2.85rem;
    left: 1.4rem;
    width: 37px;
    height: 37px;
  }

  #icon-topchart.icon-top10 {
    bottom: 2.6rem;
    left: 1.42rem;
    width: 37px;
    height: 37px;
  }

  .text-10 {
    width: 8rem;
    margin-left: 0.2rem;
  }

  #icon-topchart.icon-top11 {
    bottom: 2.67rem;
    left: 1.4rem;
    width: 37px;
    height: 37px;
  }

  /*+++++++++++++++++++++++++++++ FOR-YOU/CASUAL ++++++++++++++++++++++++*/
  #swipper-horizontal {
    width: 13rem
  }

  #swiper-slide-h {
    width: 4rem;
  }

  .for-u-icon {
    width: 3.9rem;
  }

  .for-u-row {
    top: 10rem;
  }

  .suggestion-foru {
    width: 13rem;
    position: absolute;
    margin: 1.5rem 0
  }

  .for-u-row2 {
    position: absolute;
    top: 19rem;
  }

  .for-u-row3 {
    position: absolute;
    top: 26rem
  }

  .casual-row {
    position: absolute;
    top: 8.5rem;
  }

  .suggestion-casual {
    position: absolute;
    width: 13rem;
    margin: 0 0 2rem
  }

  .casual-row2 {
    position: absolute;
    top: 18rem;
  }

  .icon-foru-1 {
    width: 56px;
    height: 56px;
    bottom: 5.8rem;
    left: 0.3rem;
  }

  #foru-upload.icon-foru1 {
    bottom: 6rem;
    left: 0.15rem;
    width: 59px;
    height: 59px;
  }

  #foru-upload.icon-foru1 .google {
    bottom: -0.82rem;
    left: 0.07rem;
  }

  #foru-upload.icon-foru2 {
    bottom: 6.1rem;
    left: 0.15rem;
    width: 59px;
    height: 59px;
  }

  .icon-casual-2 {
    width: 56px;
    height: 56px;
    bottom: 5.8rem;
    left: 0.2rem;
  }

  #casual-upload.casual2 {
    width: 58px;
    height: 58px;
    bottom: 5.95rem;
    left: 0.12rem;
  }

  .foru-text {
    bottom: -1.5rem;
    left: -0.1rem;
    width: 3.4rem;
    height: 1.3rem;
    font-size: 0.5rem;
    line-height: 1.4;
    padding: 0 0;
  }

  .google {
    height: 0.7rem;
    bottom: -1rem;
    padding-top: 0.08rem;
  }

  .casual-text {
    bottom: -1.5rem;
    left: -0.1rem;
    width: 3.4rem;
    height: 1.3rem;
    font-size: 0.5rem;
    line-height: 1.4;
    padding: 0 0;
  }

  .task {
    height: 0.7rem;
    bottom: -1rem;
    padding-top: 0.08rem;
  }

  #casual-upload.casual2 .casual-text,
  #foru-upload.icon-foru2 .foru-text {
    bottom: -1.36rem;
    left: 0.075rem;
  }

  #casual-upload.casual2 .task {
    bottom: -0.82rem;
  }

  /*+++++++++++++++++++++++++++++ TABLET ++++++++++++++++++++++++*/
  .tab {
    width: 560px
  }

  #swipper-tablet {
    width: 24rem
  }

  #swipper-slide-t {
    width: 3.7rem;
  }

  .tab-row1 {
    margin-left: 8rem;
  }

  .tab-icons {
    width: 3.5rem;
  }

  .suggestion {
    margin-top: 8rem;
    margin-right: 8.5rem;
    width: 8rem;
  }

  .tab-row2 {
    margin-left: 8rem;
    bottom: 1.75rem
  }

  .icon-tablet-1 {
    width: 52px;
    height: 53px;
    top: 0.17rem;
    border-radius: 12px;
    left: 0.15rem;
  }

  .icon-tablet-2 {
    width: 55px;
    height: 53px;
    top: 0.2rem;
    border-radius: 12px;
    left: 0.1rem;
  }

  .tab-text {
    bottom: -0.7rem;
    width: 3.2rem;
    height: 0.65rem;
    font-size: 0.4rem;
    line-height: 2;
    padding: 0.08rem 0 0;
  }

  #tab-bigt {
    height: 1rem;
    bottom: -1.15rem;
    line-height: 1.2;
  }
}

@media screen and (max-width: 767px) {
  .arrow-btn {
    bottom: 1rem;
    right: 1rem;
  }

  .video {
    background-size: 30vh
  }

  .illustration-home {
    width: 17rem;
  }

  .home-heading {
    font-size: 1.5rem
  }

  .home-icon {
    font-size: 4rem
  }

  label {
    width: 20rem;
    font-size: 0.9rem;
  }

  .upload-icon {
    margin-left: 0.5rem
  }

  .restriction {
    font-size: 0.6rem;
  }

  .appstore, .playstore {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 500px) {
  .coming-soon {
    font-size: 0.6rem;
  }

  /*+++++++++++++++++++++++++++++ TABLET ++++++++++++++++++++++++*/
  .tab {
    width: 320px
  }

  #swipper-tablet {
    width: 13.8rem
  }

  #swipper-slide-t {
    width: 2.4rem;
  }

  .tab-row1 {
    margin-left: 4.5rem;
    margin-top: 1.5rem
  }

  .tab-icons {
    width: 2.3rem;
  }

  .suggestion {
    margin-top: 5.5rem;
    margin-right: 5.5rem;
    width: 4rem;
  }

  .tab-row2 {
    margin-left: 4.5rem;
    bottom: 0.7rem
  }

  .icon-tablet-1 {
    width: 36.5px;
    height: 35px;
    top: 0.1rem;
    border-radius: 8px;
    left: 0.05rem;
  }

  .icon-tablet-2 {
    width: 36.5px;
    height: 35px;
    top: 0.12rem;
    border-radius: 8px;
    left: 0.05rem;
  }

  .tab-text {
    bottom: -0.48rem;
    width: 2.2rem;
    height: 0.42rem;
    font-size: 0.2rem;
    line-height: 2;
    padding: 0 0.05rem
  }

  #tab-bigt {
    height: 0.5rem;
    bottom: -0.65rem;
    line-height: 1.2;
  }
}

@media screen and (max-width: 360px) {
  .coming-soon {
    font-size: 0.5rem;
    left: 2.5rem;
    bottom: -5px;
  }

  .video {
    background-size: 25vh
  }

  .logo {
    width: 10rem
  }

  .illustration-home {
    width: 15rem;
  }

  .home-heading {
    font-size: 1.2rem
  }

  .home-icon {
    font-size: 3.5rem
  }

  label {
    width: 18rem;
    font-size: 0.8rem;
  }

  .upload-icon {
    margin-left: 0.5rem
  }

  .appstore, .playstore {
    font-size: 1rem;
    padding: 0.5rem
  }
}
