
@font-face {
  font-family: 'Object Sans';
  src: url('./fonts/ObjectSans-Regular.woff2') format('.woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Object Sans';
  src: url('./fonts/ObjectSans-Heavy.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


* {
  margin: 0;
  padding: 0;
}
html {
  font-size: 100%;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body * {
  font-family: 'Object Sans';
  line-height: 1.6;
  color: #ffd200;
}

:root {
  --primary-color: #ffd200;
}

.comingSoon {
  width: 100%;
  height: 100vh;
  background: url("./img/ric_mberplus_bg_desktop.png") no-repeat center center;
  background-size: cover;

}


.comingSoon {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("./img/ric_mberplus_bg_desktop.png") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comingSoon__container {
  width: 100%;
  width: 90%;
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 1rem;
}

.comingSoon__heading {
  padding: 20px 0;
  margin: 8px 0;
  font-size: clamp(2.2rem, 5.2vw, 4.2rem); 
  font-weight: 700;
  margin-bottom: 1rem;
}

.comingSoon__title, .comingSoon__title p {
  padding: 14px 0;
  margin: 10px 0;
  font-size: clamp(1.2rem, 2.7vw, 1.6rem); 
  font-weight: 400;
  
}

a {
  color: #ffd200;
  text-decoration: none; }

.d-none {
  display: none;
}

.comingSoon__container {
  display: none;
} 


/* Tablet only: show container */
@media (min-width: 426px) and (max-width: 1024px) {
  .comingSoon {
    background: url("./img/Closed_bg.png") no-repeat center center;
    background-size: cover;
  }

  .comingSoon__container {
    display: block;   /* show text */
    top: 55%;
    width: 90%;
  }

  .comingSoon__title, 
  .comingSoon__title p {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 400;
  }
}


/* Mobile*/
@media (max-width: 425px) {
  .comingSoon {
    background: url("./img/ric_mberplus_bg_mb.png") no-repeat center center;
    background-size: cover;
  }}

  /*.comingSoon__container {
    height: 100vh;
    position: relative;
    width: 98%;
    top: auto;
    left: auto;
    padding: 0;
    transform: none;
    margin-top: 2rem;     
    text-align: center;
    
  }

  .comingSoon__heading {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20rem;
  }

  .comingSoon__title, .comingSoon__title p {
    top: 55%;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
    font-size: clamp(1.1rem, 4vw, 1.4rem);
  }

  .comingSoon__logo {
    max-width: 70%;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
  }
}

 */