@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Roboto+Condensed&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend+Giga:wght@100..900&family=Zalando+Sans:ital,wght@0,200..900;1,200..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #6addad;
    --light: #e6e6e6;
    --off-white: #e9e9e9;
    --dark: #313131;
}
a {
    text-decoration: none;
}
body {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1;
}
.container {
    margin: 0 1rem;
}
/*Global*/
.coming_soon,
.form,
.counter,
.counter .count {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming_soon {
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
    min-height: 100vh;
}
.sm_text {
    font-size: clamp(.9rem,2vw,1.5rem);
    margin-bottom: 0px;
    color: #00BBB4;
    text-transform: uppercase;
    font-family: "Zalando Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 2px;
}
.main_text {
    font-size: clamp(2.5rem,10vw,6.5rem);
    text-transform: uppercase;
    letter-spacing: -0.07em;
    margin: 0;
    color: #54565A;
    font-weight: 800;
}
.main_para {
    color: var(--dark);
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 1.35rem auto;
}

.logo {
    max-width: 180px;
    margin: 30px auto;
}
@media screen and (max-width: 767px) {	
  .logo {
    padding: 0 15px;
  }
}

/*Socials*/
.socials a {
    margin: 0 0.75rem;
    opacity: .7;
    color: var(--dark);
    font-size: 1.15rem;
    transition: .3s ease;
}
.socials a:hover { 
    opacity: 1;
    color: #00BBB4;
}