@font-face {
    font-family: 'NouvelR Variable';
    src: url('fonts/NouvelRVariable-Regular.eot');
    src: url('fonts/NouvelRVariable-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/NouvelRVariable-Regular.woff2') format('woff2'),
        url('fonts/NouvelRVariable-Regular.woff') format('woff'),
        url('fonts/NouvelRVariable-Regular.ttf') format('truetype'),
        url('fonts/NouvelRVariable-Regular.svg#NouvelRVariable-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'NouvelR Variable';
}
img {
    max-width: 100%;
}
.spinBanner{
    background: url(images/main-banner.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    -webkit-flex-flow: column;
    flex-flow: column;
    overflow-x: hidden;
}
.wrapper {
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}
img.logo {
    width: 80px;
}
.mainRow {
    display: flex;
    flex-wrap: wrap;
}
.logoLeft{
    width: calc(50% - 50px);
    margin-right: 50px;
}
.spinRight {
    width: 50%;
    text-align: center;
}
img.wheel {
    max-width: 450px;
}
.spinText {
    margin-top: 100px;
}
.spinText h1 {
    color: #fff;
    font-size: 50px;
    line-height: 1.2;
    font-weight: 400;
}
.spinText h1 span {
    font-size: 34px;
    line-height: 1;
}
.pointer-wrapper {
    text-align: center;
}
.pointer-wrapper img {
    width: 35px;
    margin-bottom: -16px;
    position: relative;
    z-index: 1;
}
.button {
    text-align: center;
    margin-top: 40px;
}
.btn.spinBtn {
    background: #f0df00;
    padding: 10px 40px 12px;
    border: none;
    font-family: 'NouvelR Variable';
    color: #000;
    font-size: 24px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    position: relative;
    z-index: 9;
}
.btn.spinBtn[disabled] {
    opacity: 0.7;
    cursor: inherit;
}

/******** Responsive *********/

@media (max-width:1199px){
    .spinText h1 {
        font-size: 40px;
    } 
}

@media (max-width:991px){
    .logoLeft {
        width: 100%;
        margin-right: 0;
        text-align: center;
        margin-bottom: 50px;
    }
    .spinRight {
        width: 100%;
    }
    .spinText {
        margin-top: 50px;
    }
    .spinText h1 {
        font-size: 44px;
    }
    .spinText h1 span {
        font-size: 28px;
    }
}

@media (max-width:767px){
    .spinBanner {
        padding: 50px 0;
    }
    img.logo {
        width: 60px;
    }
    img.wheel {
        max-width: 250px;
    }
    .spinText h1 {
        font-size: 30px;
    }
    .spinText h1 span {
        font-size: 22px;
    }
    .spinText {
        margin-top: 30px;
    }
    .button {
        margin-top: 30px;
    }
    .btn.spinBtn {
        font-size: 20px;
    }
    .logoLeft {
        margin-bottom: 20px;
    }
    .pointer-wrapper img {
        width: 25px;
        margin-bottom: -12px;
    }
}