html, body{
    width: 100%;
    padding: 0px;
    margin: 0px;
}

body{
    background-image:url(../images/clubco-bg.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
}

.content{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100%;
    padding: 100px 0;
}

.logo-wrap{
    background: linear-gradient(135deg, hsla(358, 73%, 47%, 1) 26%, hsla(0, 0%, 0%, 1) 100%);
    display: inline-block;
    padding: 8px 0;
    width: 100%;;
}

.logo{
    width: 100%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 20px -5px rgba(0,0,0, 0.15);
    padding: 12px 0;
}

.clubco-logo{
    width: 300px;
}

.insta-btn-wrap{
    width: 200px;
}

.insta-btn-wrap img{
    width: 100%;;
}

.content .top, .content .bottom{
    color: #fff;
}

.content .contact{
    color: rgba(255, 255, 255, 0.80);
}

.content .top h2{
    font-size: 32px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.content .top .icon{
    display: inline-block;
    width: 40px;
    fill: #fff;
}

.content .top .icon svg{
    max-width: 100%;
}

.content .bottom{
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
    flex-wrap: wrap;
}

.content .bottom .left, .content .bottom .right{
    width: 80%;
    margin-top: 50px;
}

.content .bottom .image-card .image-holder{
    position: relative;
}

.content .bottom .image-card .image-holder::before{
    content: "";
    height: 100px;
    width: 100px;
    background-color: #BF1717;
    position: absolute;
    border-radius: 10px;
    left: -20px;
    top: -20px;
    z-index: -1;
}

.content .bottom .image-card .image-holder::after{
    content: "";
    height: 50px;
    width: 50px;
    background-color: #BF1717;
    position: absolute;
    border-radius: 8px;
    right: -15px;
    bottom: -10px;
    z-index: 2;
}

.content .bottom .image-card .image-holder img{
    max-width: 100%;
    border-radius: 10px;
}

.content .bottom .image-card .img-text-holder{
    margin-top: 20px;;
}

.content .bottom .image-card .link-btn{
    display: inline-block;
    background-color: #BF1717;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    margin-top: 0px;
}

.content .contact{
    margin-top: 50px;
    width: 60%;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.content .contact svg{
 fill: #fff;
}

@media only screen and (min-width: 900px) {
    .content .bottom .left, .content .bottom .right{
        width: 25%;
        margin-top: 20px;
    }
  }
