/* Font Family ***********************************************************************/

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-SemiBold.eot');
    src: url('../fonts/Montserrat/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-SemiBold.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-SemiBold.ttf') format('truetype'),
        url('../fonts/Montserrat/Montserrat-SemiBold.svg#Montserrat-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}





body {
  font-family: 'Montserrat';
  height: 100svh;
}

:root {
  --white: #FFFFFF;
  --black: #000000;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
  line-height: 1;
  color: var(--black);
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 21px;
}

p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 5px;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-family: inherit;
}

span {
  display: inline-block;
}

img,
video {
  max-width: 100%;
}

.btn-check:focus+.btn,
.btn:focus {
  box-shadow: none;
}

:focus-visible {
  outline: none;
}

/* Home Start *********************************************/
.home {
  width: 100%;
  height: inherit;
  background-color: var(--blue-031f66);
  background-image: url('../images/banner-bg.jpg');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 480px;
  /* padding: 15px 0 0; */
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.home-inner {
  height: 90vh;
  padding: 25px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.home-inner .top-content-bx {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.home-inner .btm-content-bx {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.head-title {
  width: 100%;
}
.download-now-btn {
    background-image: linear-gradient(to bottom, #FCFF00, #F6C903);
    width: 100%;
    max-width: 80%;
    border-radius: 30px;
    padding: 15px;
    font-size: 20px;
}
.logo-box img {
  max-width: 37%;
  margin-bottom: 15px;
}


.super6-image-box img {
  max-width: 80%;
  margin: 0 auto;
}


.btm-part {
  width: 100%;
  margin-top: auto;
}

.footer {
    padding: 15px 6px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 95%;
}
.footer p {
  font-size: 10px;
  color: var(--white);
}
.btm-text {
    color: var(--white);
    font-size: 12px;
}
p.btm-text.android {
    display: block;
}

p.btm-text.iphone {
    display: none;
}



/* Responsive ******************************/

@media (max-width: 479px) {
  .home-inner {
      height: 80vh;
  }
  .download-now-btn{
    font-size: 15px;
  }
  .footer{
    max-width: 100%;
  }
  .footer p {
    font-size: 9px;
  }
}

@media (max-width: 330px) {
  .home-inner {
        height: 80vh;
    }
}

