
/* font family roboto */
@font-face {
  font-family: Roboto;
  src: url(font/Roboto_Condensed-Regular.ttf);
}

*{
    margin: 0px;
    box-sizing: border-box;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.myColor{
    background-color: white
}
.myheader {
    height: 124px;
    padding: 20px 0;
    ;
  }
  .myLogo {
    font-size: 14px;
  }
  .myLogo img {
    width: 116px;
    height: 26;
    object-fit: fit;
  }
  .MyFormBtn {
    display: flex;
    justify-items: center;
  }
  .myRegBtn {
    width: 150px;
    height: 40px;    
    color:red;
    border: 1px solid #ff5858; 
    border-radius: 5px;
    font-weight: bold;
  font-size: 16px;
  }
  .myRegBtn:hover{
    background-image: linear-gradient(
  to right,
  #f857a6,
  #ff5858
); 
    border: 1px solid #ff5858; 
    
  }
  .mylist a{
    
    color: black;
    font-size: 16px;
    margin-right: 20px;
    
  }

  /* app */
  .app{
    height: auto;
    padding: 40px 0px;
    background-image: url(image/bg.png);
    border: 0px solid red;
    border-radius: 30px;
  }
  .appCard{
    width: 630px;
    height: 582px;
    border: 0 solid grey;
    background-color: transparent;
    
  }
  .appCard h1{
    font-size: 52px;
    font-weight: bold;
    margin-top: 100px;
    margin-left: 100px;
  }
  .appCard p{
    font-size: 18px;
    font-weight: normal;
    margin-top: 20px;
    margin-left: 100px;
  }
  .appbtn{
    width: 200px;
    height: 50px;    
    background: linear-gradient(
      to right,
      #f857a6,
      #ff5858
    );   
    margin-left: 100px;
    border: 0 solid black;
    border-radius: 5px;
     font-size: 24px;
    font-weight: bold;
    color: white;
  }
  
  .app-store{
    width: 36px;
    height: 36px;
    margin-right: 8px;
    
  }
  .app-store1{
    width: 40px;
    height: 36px;
    margin-right: 8px;
  }
  .picside{
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }



 

/* === MOBILE SCREENS (425px and below) === */
@media only screen and (max-width: 425px) {
  /* === Navbar === */
  .navbar-collapse {
    position: relative;
    z-index: 999;
    background-color: white;
    padding: 15px 0;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center; /* horizontal center */
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 10px;
  }
  .navbar-toggler {
    z-index: 1000;
  }
 .navbar-nav .nav-item,
  .navbar-nav .nav-link {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
  .navbar-nav .nav-item {
    text-align: center;
    width: 100%;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    color: #263238 !important;
  }

  .MyFormBtn {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .myRegBtn {
    width: 160px;
    height: 45px;
    font-size: 18px;
  }

  /* === Logo === */
  .myLogo img {
    width: 140px;
    height: auto;
  }

  /* === App Section === */
  .app {
    padding: 20px 0;
  }

  .appCard {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .appCard h1 {
    font-size: 28px;
    margin-top: 80px;
    text-align: left;
    margin-left: 30px;
  }

  .appCard p {
    font-size: 16px;
    text-align: left;
    margin-top: 30px;
    margin-left: 30px;
  }
.appbtn-col{
  display: flex;
  flex-direction: column;
}
  .appbtn {
    width: 90%;
    height: 50px;
    font-size: 18px;
    margin: 50px auto 10px;
    display: block;
  }

  .app-store, .app-store1 {
    width: 24px;
    height: 24px;
    margin-right: 6px;
  }

  .picside {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

 

}
