@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #1a1a1a;
    font-family: Inter, sans-serif;
    /* font-size: 16px;
    line-height: 24px; */
}
#white-color {
    background-color: white;
}
.decorative-txt {
    color: #288fff;
}
header {
  display: flex;
  justify-content: space-between;
  height:  clamp(100px, 1vh, 250px);
  padding: 20px;
  color: white;
  align-items: center;
}
header h3{
    color: #288fff;
    font-weight: 400;
}
.mini-logo{
    visibility: hidden;
}
.hero{
    /* position: relative; */
    align-items: center;
    display: flex;
    padding: 50px;
}
.hero-1{
    display: flex;
    flex-direction: column;
    row-gap: 70px;
}
.hero-content{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.hero-img{
    max-height: 70vh;
}
.container {
  position: relative;
  background-color: white;
  border: 10px solid white;
  border-radius: 20px;
  /* width: 90%; */
}
.content{
    /* font-weight: 600; */
    font-size: max(6vh);
}
.hero-para{
    font-weight: 400;
    font-size: clamp(1rem, 0.8846rem + 0.5128vw, 1.5rem);
    line-height: clamp(1.5rem, 1.4423rem + 0.2564vw, 1.75rem);
    color: #9e9e9e;

}
@media screen and (max-width: 1024px) {
    header{
        /* height:  clamp(100px, 20vh, 200px); */
    }
    .hero-img{
        margin: auto;
        max-width: 45.5vh;
    }
    .logo-cricstox{
        /* display: none; */
        /* width: 50px; */
    }
    .hero{
        padding: 10px;
        flex-direction: column-reverse;
    }
    .hero-content{
        row-gap: 10px;
    }
    .comming-soon{
        margin: auto;
        text-align: center;
    }
    .comming-soon h2{
        font-weight: 500;
        font-size: min(20px);
    }
    .content{
        /* font-weight: 600; */
        font-size: max(3.5vh);
    }
}

@media screen and (max-width: 425px) {
    .logo-cricstox{
        display: none;
    }    
    .mini-logo{
        visibility: visible;
    }
}