* {
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            border: 0;
            padding: 0;
            margin: 0;
        }

        *:before,
        *:after {
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }

        html {
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
            font-size: 62.5%;
        }

        body {
            font-family: 'avenir-roman', 'Helvetica', sans-serif;
            font-size: 20px;
            font-size: 2rem;
        }

        .img-respond {
            max-width: 100%;
            height: auto;
        }
        
        a:hover {
            text-decoration: none;
        }

        h2 {
            font-family: 'heavitasregular', 'Helvetica', sans-serif;
            font-size: 40px;
            font-size: 4rem;
        }

        h3 {
            font-family: 'avenir-black', 'Helvetica', sans-serif;
            font-size: 25px;
            font-size: 2.5rem;
        }

        #wrap {
            position: relative;
            width: 100%;
        }

        #topBar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #005842;
            color: #fff;
            text-align: center;
            font-size: 12px;
            font-size: 1.2rem;
            z-index: 2;
        }

        #topBar .login {
            position: absolute;
            top: 0;
            right: 5%;
            padding: 25px 10px 5px 10px;
            background-color: #fff;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
            -webkit-box-shadow: -3px 3px 0px 0px rgba(0,0,0,0.3);
            -moz-box-shadow: -3px 3px 0px 0px rgba(0,0,0,0.3);
            box-shadow: -3px 3px 0px 0px rgba(0,0,0,0.3);
            min-height: 0;
        }
        
        #topBar p {
            margin-bottom: 0;
        }

        #topBar .login .button {
            position: relative;
            display: inline-block;
            background: #a1d165;
            background: -moz-linear-gradient(top, #a1d165 0%, #8ac53e 65%);
            background: -webkit-linear-gradient(top, #a1d165 0%,#8ac53e 65%);
            background: linear-gradient(to bottom, #a1d165 0%,#8ac53e 65%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a1d165', endColorstr='#8ac53e',GradientType=0 );
            width: 100px;
            height: 50px;
            border-radius: 10px;
        }

        #topBar .login .button .text {
            background-image: url('../img/l-o-g-i-n.svg');
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 80%;
            width: 100%;
            height: 100%;
        }

        #hero {
            position: fixed;
            top: 0;
            left: 0;
            z-index: -1;
            width: 100%;
            min-height: 80vh;
            text-align: center;
            background-image: url('../img/blurred-bg-w1000-v2.jpg');
            background-size: 100%;
            animation-name: cloudLoop;
            animation-duration: 10000ms;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        #hero .coin {
            position: absolute;
            bottom: -100%;
        }

        #hero .coin.one {
            right: 40%;
            z-index: 3;
        }

        #hero .coin.two {
            right: 30%;
        }

        #hero.coin.three {
            right: 50%;
        }

        #hero .coin.four {
            right: 10%;
            z-index: 3;
        }

        #hero .coin.five {
            left: -20%;
            z-index: 3;
            -webkit-filter: blur(5px);
            -moz-filter: blur(5px); 
            -o-filter: blur(5px);
            -ms-filter: blur(5px);
            filter: blur(5px);
        }

        @-moz-keyframes coinDrop {
            0% {bottom: 120%;}
            100% {bottom: -100%;}
        }

        @-webkit-keyframes coinDrop {
            0% {bottom: 120%;}
            100% {bottom: -100%;}
        }

        @keyframes coinDrop {
            0% {bottom: 120%;}
            100% {bottom: -100%;}
        }

        .coinDrop {
            animation-name: coinDrop;
            animation-duration: 1000ms;
            animation-timing-function: ease;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }

        .coinDrop.slow {
            animation-duration: 4000ms;
        }

        #hero > div > div > div {
            min-height: 80vh;
        }

        #hero .offer {
            position: absolute;
            top: 50%;
            left: 0;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            transform: translateY(-50%);
            width: 100%;
            -webkit-transition: all .8s;
            -moz-transition: all .8s;
            transition: all .8s;
            opacity: 0;
        }

        #hero .offer .ribbon {
            position: relative;
            width: 80%;
            margin: 0 auto;
        }

        #hero .offer .ribbon img.logo, #hero .offer .ribbon img.offer-image {
            position: absolute;
            left: 50%;
            -webkit-transform: translateX(-50%) translateY(-50%);
            -moz-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);

        }
        
        #hero .offer .ribbon img.logo {
            top: 10%;
            width: 40%
        }
        
        #hero .offer .ribbon img.offer-image {
            top: 50%;
            width: 75%;
        }
        
        #hero .offer span {
            display: none;
            font-size: 14px;
            font-size: 1.4rem;
            color: #fff;
            text-shadow: -1px 1px 0px rgba(150, 150, 150, 1);
            margin-top: 10px;
        }
        
        #hero .offer span a {
            color: #fff;
            border-bottom: 1px solid #fff;
        }
        
        #hero a {
            text-decoration: none;
        }

        #hero .cta, #bottomBar .cta {
            position: relative;
            display: inline-block;
            background: #d44c51;
            background: -moz-linear-gradient(top, #d44c51 0%, #c91f26 65%);
            background: -webkit-linear-gradient(top, #d44c51 0%,#c91f26 65%);
            background: linear-gradient(to bottom, #d44c51 0%,#c91f26 65%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d44c51', endColorstr='#c91f26',GradientType=0 );
            width: 320px;
            max-width: 100%;
            margin-top: 50px;
            height: 100px;
            padding: 15px;
            border-radius: 10px;
            -webkit-box-shadow: -3px 3px 0px 0px rgba(0,0,0,0.3);
            -moz-box-shadow: -3px 3px 0px 0px rgba(0,0,0,0.3);
            box-shadow: -3px 3px 0px 0px rgba(0,0,0,0.3);

        }
        
        #bottomBar .cta {
            margin-top: 0;
        }

        #hero .cta .text, #bottomBar .cta .text {
            background-image: url('../img/cta-play-now-text.svg');
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 100%;
            width: 100%;
            height: 100%;
        }
        
        #hero .offer .terms-link {
            display: block;
            font-size: 14px;
            font-size: 1.4rem;
            color: #fff;
            margin-top: 5px;
            cursor: pointer;
            text-shadow: -1px 1px 0px rgba(150, 150, 150, 1);
        }

        #hero .seamus {
            position: absolute;
            bottom: -100%;
            left: 50%;
            width: 100%;
            -webkit-transform: translateX(-50%) translateY(50%);
            -moz-transform: translateX(-50%) translateY(50%);
            transform: translateX(-50%) translateY(50%);
        }

        #hero .seamus.smooth {
            -webkit-transition: top 1s;
            -moz-transition: top 1s;
            transition: top 1s;
        }

        #hero .seamus img {
            animation-name: shake;
            animation-duration: 6000ms;
            animation-timing-function: ease-in-out;
            animation-iteration-count: infinite;
        }

        @-moz-keyframes cloudLoop {
            0% {background-position: 0% 0%;}
            100% {background-position: 0% 100%;}
        }

        @-webkit-keyframes cloudLoop {
            0% {background-position: 0% 0%;}
            100% {background-position: 0% 100%;}
        }

        @keyframes cloudLoop {
            0% {background-position: 0% 0%;}
            100% {background-position: 0% 100%;}
        }

        @-moz-keyframes shake {
            0% {-moz-transform: translate(-2px, 4px) rotate(0.5deg); }
            10% {-moz-transform: translate(-8px, -6px) rotate(-1.5deg); } 
            20% {-moz-transform: translate(-7px, -5px) rotate(.5deg); } 
            30% {-moz-transform: translate(-2px, 0px) rotate(-2.5deg); } 
            40% {-moz-transform: translate(6px, 3px) rotate(0.5deg); } 
            50% {-moz-transform: translate(-1px, 1px) rotate(-.5deg); } 
            60% {-moz-transform: translate(0px, 7px) rotate(0.5deg); } 
            70% {-moz-transform: translate(5px, -9px) rotate(-0.5deg); } 
            80% {-moz-transform: translate(-2px, -9px) rotate(0.5deg); } 
            90% {-moz-transform: translate(-2px, -6px) rotate(-1.5deg); } 
            100% {-moz-transform: translate(-2px, 4px) rotate(0.5deg); } 
        }

        @-webkit-keyframes shake {
            0% {-webkit-transform: translate(-2px, 4px) rotate(0.5deg); }
            10% {-webkit-transform: translate(-8px, -6px) rotate(-1.5deg); } 
            20% {-webkit-transform: translate(-7px, -5px) rotate(.5deg); } 
            30% {-webkit-transform: translate(-2px, 0px) rotate(-2.5deg); } 
            40% {-webkit-transform: translate(6px, 3px) rotate(0.5deg); } 
            50% {-webkit-transform: translate(-1px, 1px) rotate(-.5deg); } 
            60% {-webkit-transform: translate(0px, 7px) rotate(0.5deg); } 
            70% {-webkit-transform: translate(5px, -9px) rotate(-0.5deg); } 
            80% {-webkit-transform: translate(-2px, -9px) rotate(0.5deg); } 
            90% {-webkit-transform: translate(-2px, -6px) rotate(-1.5deg); } 
            100% {-webkit-transform: translate(-2px, 4px) rotate(0.5deg); } 
        }

        @-moz-keyframes seamusInOut {
            0% {bottom: -125%;}   
            100% {bottom: 400%;}
        }

        @-webkit-keyframes seamusInOut {
            0% {bottom: -125%;} 
            100% {bottom: 400%;}
        }

        @keyframes seamusInOut {
            0% {bottom: -125%;}
            100% {bottom: 400%;}
        }

        .seamusInOut {
            animation-name: seamusInOut;
            animation-duration: 5000ms;
            animation-timing-function: ease;
            animation-iteration-count: 1;
        }

        @-moz-keyframes seamusIn {
            0% {bottom: -200%;}
            40% {bottom: -200%;}
            70% {bottom: 55%;}
            100% {bottom: 50%;}
        }

        @-webkit-keyframes seamusIn {
            0% {bottom: -200%;}
            40% {bottom: -200%;}
            70% {bottom: 55%;}
            100% {bottom: 50%;}
        }

        @keyframes seamusIn {
            0% {bottom: -200%;}
            40% {bottom: -200%;}
            70% {bottom: 55%;}
            100% {bottom: 50%;}
        }

        .seamusIn {
            animation-name: seamusIn;
            animation-duration: 3000ms;
            animation-timing-function: ease;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }

        #steps{
            background-color:#7fbd37;
            text-transform: uppercase;
            text-align: center;
            padding:50px 0;
            position: relative;
            width: 100%;
            margin-top: 80vh;
            box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
        }
        #steps .step h2{
            color:#014d3a;
            margin:auto;
            margin-bottom:20px;
            text-shadow: 0px 2px 3px rgba(0,0,0,0.5);
        }
        #steps .step p{
            color:#fff;
            font-weight: 500;
            font-family: 'heavitasregular', 'Helvetica', sans-serif;
            margin:auto;
        }

        #bestGames {
            position: relative;
            width: 100%;
            /* margin-top: 80vh; */
            padding: 50px 0 0 0;
            background-color: #fff;
            text-align: center;
        }

        #bestGames h2 {
            color: #8ac53e;
            margin-bottom: 30px;
        }

        #providers {
            position: relative;
            width: 100%;
            padding: 50px 0;
            text-align: center;
            background-color: #f1f1f1;
        }

        #providers .provider h2 {
            color: #0f3b1f;
        }

        #providers .provider img {
            margin-top: 80px;
        }

        #providers .gonzo {
            position: absolute;
            top: -100%;
            left: 1%;
            max-width: 20%;
        }

        #providers .gorilla {
            position: absolute;
            top: -100%;
            right: 1%;
            max-width: 20%;
        }

        #deposit {
            position: relative;
            width: 100%;
            background-color: #f9da33;
            padding: 100px 15px;
            text-align: center;
        }

        #deposit h2 {
            color: #005842;
        }

        #secure {
            position: relative;
            width: 100%;
            background-color: #fff;
            padding: 100px 15px;
            text-align: center;
        }

        #secure h2 {
            color: #005842;
        }

        #terms {
            background-color: #f1f1f1;
            padding: 50px 0;
        }
        
        #terms p {
            margin: 20px 0;
        }

        #terms ol {
            padding-left: 40px;
            font-size: 12px;
            font-size: 1.2rem;
        }

        #terms ol li {
            margin: 10px 0;
        }

        #footer {
            background-color: #8ac53e;
            padding-top: 20px;
            margin-bottom: 5px;
        }

        #footer p {
            font-family: 'avenir-heavy', sans-serif;
            font-size: 14px;
            color: #fff;
        }

        #footer .legal {
            background-color: rgba(0,0,0,.1);
            padding: 20px 0;
            text-align: center;
            padding-bottom: 110px;
        }

        #footer .legal p {
            margin-bottom: 0
        }
        
        #bottomBar {
            position: fixed;
            bottom: -100%;
            left: 0;
            width: 100%;
            text-align: center;
            padding: 15px 0 10px 0;
            background-color: rgba(0,0,0,.9);
            -webkit-transition: all .8s;
            -moz-transition: all .8s;
            transition: all .8s;
        }
        
        #bottomBar.show {
            bottom: 0;
        }

        @media (min-width: 767px) {

            #footer {
                
                margin-bottom: 30px;
            }
        }

        @media (max-width: 991px) {  
            #topBar p {
                max-width: 70%;
                text-align:left;
            }
            
            #topBar .login {
                top: -35px;
                right: 1%;
                padding: 40px 10px 5px 10px;
            }

            #hero .cta {
                width: 290px;
                height: 60px;
                margin-top: 25px;
            }
        }

        @media (max-width: 767px) { 
            html {
                font-size: 50%;
            }
            
            #topBar p {
                max-width: 100%;
                text-align:center;
            }
            
            #topBar .login {
                display: none
            }
            
            #hero .cta, #bottomBar .cta {
                width: 270px;
                height: 75px;
                padding: 15px;
            }

            #hero .seamus img {
                width: 250px;
            }
            
            #hero .offer span {
                display: block
            }

            #providers .gonzo, #providers .gorilla {
                display: none;
            }
        }

        @media (max-height: 770px) and (min-width: 500px) {
            #hero .offer .ribbon {
                width: 60%;
            }

            #hero .cta, #bottomBar .cta {
                width: 260px;
                height: 65px;
                margin-top: 30px;
            }
            
            #bottomBar .cta {
                margin-top: 0;
            }

            #hero .seamus img {
                width: 300px;
            }
        }
        /* @media (max-height: 650px){
            #hero .offer .ribbon {
                margin-top:50px;
            }
            #hero .cta {
                margin-top: -40px;
            }
        } */

        @media (max-width: 320px) {
            #hero .offer .ribbon {
                width: 70%;
            }

            #hero .cta, #bottomBar .cta {
                height: 60px;
                padding: 15px;
                /* margin-top: 20px */
            }
            
            #bottomBar .cta {
                margin-top: 0;
            }

            #hero .cta .text, #bottomBar .cta .text {
                background-size: 80%
            }
        }