html,body{
    min-height: 100%;
}

body{
    font-family: 'Roboto', sans-serif;
}

.body-bg{
    background-image: url(../../Custom/images/club_images/login-bg-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    animation-name: animatedBackground;
    background-position: 0px 0px;
    animation: animatedBackground 10s linear infinite alternate;
}

.body-bg:after {
    content: "";
    background: rgb(171,189,153);
    background: linear-gradient(0deg, rgba(171,189,153,0) 60%, rgba(171,189,153,1) 100%);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    mix-blend-mode: multiply;
    z-index: -1;
}

header {
    text-align: center;
    padding-top: 3%;
}

header .logo-area a {
    text-decoration: none;
    display: inline-block;
}
header .logo-area a img{
    -webkit-filter: drop-shadow(0px 1px 0px rgba(255,255,255,.6));
    filter: drop-shadow(0px 1px 0px rgba(255,255,255,.6));
}
header h1{
    font-size: 3vw;
    margin-top: 10px;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,.9);
    font-weight: 600;
}


.chelsea-reservation{
	    padding: 120px 0;
}

.chelsea-reservation .body-area{
    background: rgba(255,255,255,.9);
    margin-top: 2%;
    padding: 35px 20px;
    border-radius: 20px;
    margin-bottom: 2%;
    box-shadow: 0 0 50px rgb(0,0,0,.2);
	max-width:70%;
	margin: 0 auto;
}

.chelsea-reservation .body-area .chelsea-card-area {
    position: relative;
    margin-bottom: 25px;
}

.chelsea-reservation .body-area .col-xl-6:nth-last-child(1) .chelsea-card-area, .chelsea-reservation .body-area .col-xl-6:nth-last-child(2) .chelsea-card-area {
    margin-bottom: 0;
}

.chelsea-reservation .body-area .chelsea-card{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid green;
    transition: 0.3s;
}

.chelsea-reservation .body-area .chelsea-card:hover {
    box-shadow: 0 0 20px rgba(0,0,0,.5);
}

.chelsea-reservation .body-area .tennis-card .chelsea-card{
    border-color: #688501 ;
}

.chelsea-reservation .body-area .pickleball-card .chelsea-card{
    border-color: #063258 ;
}

.chelsea-reservation .body-area .bocce-card .chelsea-card{
    border-color: #836222 ;
}

.chelsea-reservation .body-area .chelsea-card a{
    display: block;
}

.chelsea-reservation .body-area .chelsea-card .chelsea-card-body img{
    width: 100%;
}

.chelsea-reservation .body-area .chelsea-card .chelsea-card-body .title-area{
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 300;
    padding: 7px 10px 4px;
    display: block;
    line-height: 35px;
    position: absolute;
    bottom:0px;
    background: green;
    width: 230px;
    transition: 0.5s;
}

.chelsea-reservation .body-area .tennis-card .chelsea-card .chelsea-card-body .title-area{
    background: #688501 ;
}

.chelsea-reservation .body-area .pickleball-card .chelsea-card .chelsea-card-body .title-area{
background: #063258 ;
}

.chelsea-reservation .body-area .bocce-card .chelsea-card .chelsea-card-body .title-area{
    background: #836222 ;
}

.chelsea-reservation .body-area .chelsea-card .chelsea-card-body .title-area::after{
    content: "";
    width: 0;
    height: 0;
    border-bottom: 46px solid green;
    border-right: 46px solid transparent;
    position: absolute;
    top: 0;
    right: -44px;
}

.chelsea-reservation .body-area .tennis-card .chelsea-card .chelsea-card-body .title-area::after{
    border-bottom:46px solid #688501 ;
}

.chelsea-reservation .body-area .pickleball-card .chelsea-card .chelsea-card-body .title-area::after{
    border-bottom:46px solid #063258 ;
}

.chelsea-reservation .body-area .bocce-card .chelsea-card .chelsea-card-body .title-area::after{
    border-bottom:46px solid #836222 ;
}

.chelsea-reservation .body-area .chelsea-card .chelsea-card-body .title-area span{
    display: inline-block;
    width: 22px;
    position: relative;
    left: 3px;
    transition: 0.5s;
    top: -2px;
}

.chelsea-reservation .body-area .chelsea-card a:hover .title-area span{
    left: 20px;
}

.chelsea-reservation .body-area .chelsea-card .chelsea-card-body a:hover .title-area{
    width: 100%;
    transition: 0.5s;
}

.chelsea-card-icon {
    position: absolute;
    top: 0;
    background: green;
    width: 80px;
    height: 80px;
    text-align: center;
    border-radius: 50%;
    left: -20px;
    top: -10px;
}

.chelsea-reservation .body-area .tennis-card .chelsea-card-icon{
    background: #688501;
    left: inherit;
    right: -10px !important;
}

.chelsea-reservation .body-area .pickleball-card .chelsea-card-icon{
    background: #063258;
	    left: inherit;
    right: -10px !important;
}

.chelsea-reservation .body-area .bocce-card .chelsea-card-icon{
    background: #836222;
    left: inherit;
      right: -10px !important;
}

.chelsea-card-icon img{
    width: 50px;
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (min-width:768px) and (max-width: 979px){
    header {
        padding-top: 20%;
    }
    header h1{
        font-size: 28px;
    }
    .chelsea-card-icon {
        width: 60px;
        height: 60px;
    }
    .chelsea-card-icon img {
        width: 40px;
    }
    .chelsea-reservation .body-area .chelsea-card .chelsea-card-body .title-area {
        font-size: 20px;
        padding: 3px 10px 0px;
    }
    .chelsea-reservation .body-area .chelsea-card .chelsea-card-body .title-area::after {
        border-bottom: 38px solid green;
        border-right: 44px solid transparent;
    }
}

@media screen and (min-width:980px) and (max-width: 1199px){
    header h1{
        font-size: 28px;
    }
    .chelsea-card-icon {
        width: 60px;
        height: 60px;
    }
    .chelsea-card-icon img {
        width: 40px;
    }
}

@media screen and (max-width: 767px){
    header h1{
        font-size: 25px;
    }
    .chelsea-reservation .body-area .col-xl-6:nth-last-child(2) .chelsea-card-area {
        margin-bottom: 25px !important;
    }
    .chelsea-card-icon {
        width: 60px;
        height: 60px;
    }
    .chelsea-card-icon img {
        width: 40px;
    }
    .chelsea-reservation .body-area {
        padding: 25px 10px;
    }
    .chelsea-reservation .body-area {
        margin-bottom: 20px;
    }
}