/*==========  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-main {
        background: rgb(39, 210, 255);
        background: linear-gradient(180deg, rgba(39, 210, 255, 1) 0%, rgba(2, 90, 168, 1) 100%);
    }
    .header-top .button{
        background: unset;
        box-shadow: unset;
        border: unset;
    }
    .header-top .button span{
        color: #fff;
    }
    .header .menu-item a{
        padding: 26px 10px;
    }
}

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

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

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
    .a-banner p:first-child,
    .a-banner p:nth-child(3) {
        font-size: 16px;
    }
    .a-banner p:nth-child(2){
        font-size: 24px;
    }
    .a-banner p:nth-child(4){
        font-size: 28px;
    }
    .a-banner-2 p:first-child{
        font-size: 18px;
    }
    
    .a-banner-2 p:nth-child(2) {
        font-size: 24px;
    }
    .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) {

}
