/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 850px) {
    .header {
        position: fixed !important;
    }
    .header .header-bg-color{
        background-color: unset !important;
    }
    .header .header-main{
        background-color: rgba(29,22,8,0.5) !important;
    }
    .header .stuck .header-main{
        background-color: #091704 !important;
    }
    .header-top .button{
        background: unset;
        box-shadow: unset;
        border: unset;
    }
    .header-top .button span{
        color: #fff;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 850px) {
    .a-banner p:first-child{
        font-size: 18px;
    }
    .a-banner p:nth-child(2){
        font-size: 26px;
    }
    .a-banner p:nth-child(3){
        font-size: 55px;
    }

    .a-banner-2 p:first-child,.a-banner-2 p:nth-child(3){
        font-size: 20px;
    }
    .a-banner-2 p:nth-child(2){
        font-size: 50px;
    }

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
    .a-banner p:first-child{
        font-size: 12px;
    }
    .a-banner p:nth-child(2){
        font-size: 16px;
    }
    .a-banner p:nth-child(3){
        font-size: 40px;
    }
    .a-banner-2 {
        padding: 30px 0 !important;
    }
    .a-game .row {
        grid-template-columns: repeat(2,1fr);
    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}
