@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600');

:root {
    --font-1: 'Source Sans Pro', sans-serif;
    --light: #f99b28;
    --dark: #002949;
    --white: #ffffff;
}
body {
    background: var(--dark);
}
.body-sdc .main-content {
    padding: 0 !important;
}
.sdc-section {
    background: url(https://raymondjames.com/-/media/417a47576fe1424889b4e8a1e77034cf.ashx) no-repeat top center;
    background-size: cover;
    min-height: 100vh;
}
.body-sdc .page-wrapper {
    background: transparent;
}
.sdc-content {
    text-align: center;
}
.sdc-date {
    margin: 150px auto 100px;
}
.sdc-logo img, .sdc-date img {
    max-width: 100%;
}
.body-sdc .button {
    background: var(--white);
    font-family: var(--font-1);
    border: 2px solid var(--light); 
    font-weight: 700;    
    color: var(--dark);
    font-size: 25px;
    line-height: 30px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    max-width: 380px;
    padding: 10px;
    margin: 100px auto 50px;
    display: block;
}
.body-sdc .button:hover {
    background: var(--dark);
    color: var(--white);
}
.rich-text-container a.button:after {
    display: none;
}
.rj-logo-white {
    position: relative;
    top: 40px;
}
.rj-logo-white img {
    width: 250px;
    height: 22px;
}
.body-sdc p.copyright {
    font-size: 16px;
    font-weight: 600;    
    color: var(--rj-blue);
    padding: 5px 0;
    margin: 200px 0 50px;    
}

/* Large devices (tablet landscape, 1024px and less) tablet-l */
@media only screen and (max-width: 1024px) {
    .rj-logo-white {
        top: 25px;
    }
    .body-sdc .button {
        margin: 50px auto 0px;
    }
    .body-sdc p.copyright {
        margin: 50px 0 0;
    }     
}
  
  
/* Large devices (desktops, 992px and less) */
@media only screen and (max-width: 992px) {
  
}
  
/* Medium devices (tablet portrait, 768px-old 810 new and less) tablet-p */
@media only screen and (max-width: 810px) {
    .body-sdc p.copyright {
        margin: 180px 0 20px;
    }
    .sdc-logo img {
        max-width: 100%;
    }
    .rj-logo-white {
        top: 35px;
    }
  
}
  
  
/* Extra small devices (most portrait phones, 480px and less) mobile-p */
@media only screen and (max-width: 480px) {

    .body-sdc h1, .body-sdc h2 {
        font-size: 28px;
        line-height: 34px;
    }
    .body-sdc p.copyright {
        margin: 50px 0 0;
    }   
    .rj-logo-white {
        top: 20px;
    } 
}
  
/* Extra small landscape devices (most landscape phones, >=480px and <= 767 and landscape) mobile-l */
  
@media only screen and (min-width: 480px) and (max-width: 767px) and (orientation: landscape) {
    .rj-logo-white {
        top: 30px;
    }
}      