@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400&display=swap');

body {
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
}

strong {
    color: #fff;
    font-weight: 700;
}

a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
a, a:hover, a:active, a:visited {
    color: #231f20;
}

h1, h3 {
    color: #fff;
}


.btn {
    background-color: #3388BF;
    color: #fff !important;
    text-decoration: none;
    padding: 12px 22px;
    font-size: 18px;
    
    border-radius: 3px 3px 3px 3px;
    -moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    border: 1px solid #3388BF;    
    
}
.btn:hover {
    background-color: #fff;
    color: #3388BF !important; 
    border: 1px solid #3388BF;   
}


.clear {
    clear: both;
    float: none;
}





p {
    color: #231f20;
}


#box {
    display:block;
    position: absolute;
    width: 500px;
    height: auto;
    top: 50%;
    margin-top: -140px;
    left: 50%;
    margin-left: -250px;
    text-align: center;
}

#box img {
    max-width: 100%;
    height: auto;
}

.footer {
    width: 100%;
    position: fixed;
    bottom: 70px;
    text-align: center;
}

.footer p {
    text-transform: uppercase;
    line-height: 24px;
}

.footer a {
    font-weight: 400;
}

.desktop-view {
    display: inline-block;
}
.mobile-view {
    display: none;
}


@media only screen and (max-width: 991px) {
    
    .mobile-view {
        display: block;
    }
    .desktop-view {
        display: none;
    }
    
    #box {
        width: 100%;
        left: 0;
        margin-left: 0;
    }
    
    #box img {
        max-width: 400px;
        width: 90%;
        margin: 0 auto;
    }
  
    .footer {
        bottom: 30px;
    }
    .footer p {
        font-size: 14px;
    }
    
}

