@charset "utf-8";

/* CSS Document */

body,
html {
    height: 100%
}

body {
    background: #274160 url(../images/bg.jpg) top center/100% auto no-repeat;
}

.landing-bg {
    background: #274160 url(../images/bg.jpg) top center/100% auto no-repeat;
    height: 100%;
}

.playnow a {
    display: block;
    height: 136px;
    background: url(../images/playnow.png) top left/100% 100% no-repeat;
}

.playnow {
    width: 136px;
    height: 136px;
    position: absolute;
    top: 70px;
    right: 45%;
    border-radius: 100px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    /*animation: pulse 2s infinite;*/
}

.playnow a {
    position: relative;
    z-index: 2;
}

.playnow:before {
    content: '';
    display: block;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130px;
    height: 130px;
    margin: -68px 0 0 -64px;
    z-index: 1;
    animation: pulse 3s 0s ease infinite;
    background: transparent;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.6);
    }
    50% {
        -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.6);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.6);
    }
    50% {
        -moz-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.diamond {
    width: 200px;
    z-index: 1;
    position: absolute;
    bottom: 10%;
    right: 12.5%;
}

.diamond a {
    text-decoration: none;
    background: #ffae00;
    border-radius: 50px;
    margin: 20px 0;
    padding: 5px 12px 5px 0;
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
    font-weight: 900;
    -webkit-transition: 0.6s ease-out;
    -moz-transition: 0.6s ease-out;
    -o-transition: 0.6s ease-out;
    -ms-transition: 0.6s ease-out;
    transition: 0.6s ease-out;
}

.diamond .mybg img {
    width: 60px;
    position: relative;
    -webkit-transition: ease all 0.2s;
    transition: ease all 0.9s;
    -webkit-animation: rotation 0.9s infinite linear;
    -moz-animation: rotation 0.9s infinite linear;
    -o-animation: rotation 0.9s infinite linear;
    -ms-animation: rotation 0.9s infinite linear;
    animation: rotation 0.9s infinite linear;
}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

.diamond .mybg img:hover,
.diamond .mybg img:focus {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -ms-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

@media only screen and (min-width:1024px) and (max-width:1200px) {
    .landing-bg {
        background: #274160 url(../images/bg-responsive.png) top center/100% auto no-repeat;
        background-size: cover;
    }
    .playnow {
        width: 126px;
        height: 126px;
        margin-right: -50px;
        right: 50%;
    }
    .diamond {
        bottom: 5%;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .landing-bg {
        background: #274160 url(../images/bg-responsive.png) top center/100% auto no-repeat;
        background-size: cover;
    }
    .playnow {
        width: 126px;
        height: 126px;
        margin-right: -50px;
        right: 50%;
    }
    .diamond {
        bottom: 5%;
    }
}

@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:landscape) {
    .landing-bg {
        background: #274160 url(../images/bg.jpg) top left/cover no-repeat;
        background-size: cover;
    }
    .playnow {
        width: 90px;
        height: 90px;
        margin-right: -50px;
        right: 50%;
        top: 3%;
    }
    .playnow:before {
        width: 90px;
        height: 90px;
        margin: -45px 0 0 -45px;
    }
    .playnow a {
        height: 90px;
    }
    .diamond {
        bottom: 5%;
    }
}

@media only screen and (min-width:300px) and (max-width:767px) {
    .landing-bg {
        background: #274160 url(../images/bg-responsive.png) center center/cover no-repeat;
        background-size: cover;
    }
    .playnow {
        width: 126px;
        height: 126px;
        margin-right: -50px;
        right: 50%;
        top: 10%;
    }
    .diamond {
        bottom: 5%;
        right: 0px;
        width: 250px;
    }
    .diamond a {
        font-size: 21px;
    }
}

@media only screen and (min-device-width:120px) and (max-device-width:990px) and (orientation:landscape) {
    .landing-bg {
        background: #274160 url(../images/bg.jpg) top center/100% auto no-repeat;
        background-size: cover;
    }
    .playnow {
        width: 90px;
        height: 90px;
        margin-right: -50px;
        right: 50%;
        top: 3%;
    }
    .playnow:before {
        width: 90px;
        height: 90px;
        margin: -45px 0 0 -45px;
    }
    .playnow a {
        height: 90px;
    }
    .diamond {
        bottom: 5%;
    }
}

@media only screen and (min-device-width:751px) and (max-device-width:999px) and (orientation:portrait) {}

@media only screen and (min-device-width:751px) and (max-device-width:999px) and (orientation:landscape) {}

@media only screen and (min-device-width:1000px) and (max-device-width:1030px) and (orientation:portrait) {}

@media only screen and (min-device-width:1000px) and (max-device-width:1030px) and (orientation:landscape) {}

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1199px) {}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .diamond a {
        font-size: 30px;
    }
    .diamond {
        width: 300px !important;
    }
}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {}

@media only screen and (min-width: 280px) and (max-width: 299px) {
    body .landing-bg {
        background-size: cover !important;
        width: 100% !important;
        background-position: center !important;
    }
    .playnow {
        left: 0 !important;
        right: 0 !important;
        margin: auto;
    }
}