@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');


:root {
    --bg-color: #22252B;
    --primary-color: #F73C59;
    --secondary-color: #932335;
    --white-color: #ffffff;
    --light-grey-color: #898989;
}

html {
    background-color: var(--bg-color);
}

header nav,
.main {
    display: none;
}


.bg-overlay {
    background: url("../images/hero-background-raw.png") scroll no-repeat center center transparent;
    background-size: cover;
}

.btn {
    border-radius: 2.4rem;
    text-transform: uppercase;

    font-size: 1.4rem;
    letter-spacing: .35rem;
    padding: 1rem 4rem;
    margin: 0 3rem 2rem;
    transition: .4s;
    
}
.btn-primary {
    background-color: var(--primary-color);
    border: 0 none;

    /* background-image: linear-gradient(var(--primary-color), var(--primary-color)); */
    background-size: 0 100%;
    background-repeat: no-repeat;
    transition: .9s;
    
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: transparent !important;
    background-image: linear-gradient(var(--secondary-color), var(--secondary-color));
    background-size: 100% 100%;
    border: 2px solid var(--secondary-color);
}
.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--white-color);

    background-image: linear-gradient(var(--primary-color), var(--primary-color));
    background-size: 0 100%;
    background-repeat: no-repeat;
    transition: .9s;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    color: var(--white-color);
    /* background-color: var(--bg-color) !important; */
    background-size: 100% 100%;
}

.logo {
    margin-bottom: 3rem;
}

h1 {
    font-size: 6.4rem;
    color: var(--primary-color);
    text-transform: uppercase;
    line-height: 1;
    margin: 5rem 0 2rem;
}

.name,
.title,
.countdown {
    color: var(--white-color);
    line-height: 1;
}
.name {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: .5rem;
}
.title {
    font-size: 2.2rem;
    letter-spacing: .75rem;
}
.countdown {
    display: flex;
    justify-content: space-evenly;
    max-width: 75%;
    margin: 0 auto 5rem;

    animation: fadeIn 5s;

}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }


.countdown .count {
    font-size: 4.6rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: .35rem;
    text-transform: uppercase;
}
.countdown span {
    font-size: 1.5rem;
    font-weight: 400;
    display: block;
}


.social {
    display: inline-block;
    margin: 0 1rem;
    background-color: var(--primary-color);
    padding: 1rem;
    transition: .4s;
}
.social:hover,
.social:focus,
.social:active {
    background-color: var(--secondary-color);
}

.social img {
    height: 15px;
}



/** ------------------------------------------------------------- Header **/
header {
	/* padding: 150px 0; */
    height: 635px;
    display: flex;
    align-items: center;

    position: relative;
    background-color: var(--bg-color);
    overflow: hidden;
}
header:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .85);
    position: absolute;
    z-index: 1;
}
header .container {
    z-index: 2;
}

header img.hero-bg {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    /* height: 635px; */
    transition: 4s;
}


body {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 10px;
    position: relative;
}

  


/** ------------------------------------------------------------- Footer **/
footer {
    background-color: var(--bg-color);
  
    font-size: .8em;
    padding: 4rem;
}
footer, footer p, footer a {
    color: var(--light-grey-color);
    text-transform: initial;
    transition: .4s;
}
footer a:hover,
footer a:focus,
footer a:active {
    color: var(--primary-color);
}
footer p, footer a {
    font-size: 1.4em;
}
footer .socialMedia {
    margin-bottom: 20px;
}



@media screen and (max-width: 575px){

    

    .container {
        padding: 0;

        max-width: 100%;
        width: 100%;
    }

    .name {
        font-size: 3rem;
    }

    h1 {
        font-size: 5rem;
    }

    .btn {
        margin: 0 0 2rem;
    }

    .countdown .count {
        font-size: 3rem;
    }
}