@charset "UTF-8";
/* CSS Document */

html,
body {
    font-family: urw-din, sans-serif, -apple-system, BlmarinkMacSystemFont;
    line-height: 1.5;
    color: #000;
    font-size: 17px;
}

/* Colors */

.blue {
    color: #1c94ce;
}

.blue-bg {
    background-color: #1c94ce;
}

.green {
    color: #A3E635;
}

.green-bg {
    background-color: #A3E635;
}

.grey {
    color: #E5E7EB;
}

.grey-bg {
    background-color: #E5E7EB;
}

.dark-grey-bg {
    background-color: #58595b;
}

/* End Colors */

/* Fonts  */

h1.sm {
    font-size: 1.4rem;
}

h2 {
    font-size: 1.4rem;
}

h3 {
    font-size: 1.2rem;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
}

.p-lg {
    font-size: 1.1rem;
    line-height: 1.7rem;
}

/* End Fonts */

/* Spacing */

.py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}


.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-80 {
    padding-bottom: 80px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* End Spacing */

/* Max Width */

.mw-100 {
    max-width: 100px;
}

.mw-200 {
    max-width: 200px;
}

.mw-300 {
    max-width: 300px;
}

.mw-400 {
    max-width: 400px;
}

.mw-500 {
    max-width: 500px;
}

.mw-600 {
    max-width: 600px;
}

.mw-700 {
    max-width: 700px;
}

.mw-800 {
    max-width: 800px;
}

.mw-900 {
    max-width: 900px;
}

.mw-1000 {
    max-width: 1000px;
}

/* End Max Width */

/*////////////// 
Header 
////////////// */

@media (min-width: 992px) {
    .navbar-collapse {
        flex-direction: column;
    }
}

.bg-overlay {
    background: rgba(0, 0, 0, 0.2);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
}

.navbar-brand {
    width: 150px;
}

.navbar-brand img {
    width: 100%;
}

.morgan-brand img {
    max-width: 60px;
}

@media (min-width: 992px) {


    .logo-support {
        position: absolute;
    left: 50%;
    transform: translate(-50%, 0px);
    }

    .navbar-brand,
    .morgan-brand {
        width: 200px;
    }

    .morgan-brand img {
        height: 60px;
        width: auto !important;
        max-width: 100%;
    }
}


/* Desktop Nav */

.navbar-light .navbar-nav .nav-link {
    text-transform: uppercase;
    color: #000;
    font-size: .8rem;
}

.navbar-light .navbar-nav .active > .nav-link {
    color: #1c94ce;
}

/* End Desktop Nav */


/* Mobile Nav */

.sidenav a.active {
    color: #1c94ce
}

/* End Nav */


/* Sidebar */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    color: #000;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

#main {
    transition: margin-left .5s;
    position: relative;
    z-index: 0;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, .5);
    border: none !important;
    outline: none;
}

.navbar-light .navbar-toggler:hover {
    color: #1c94ce !important;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

/* End Sidebar */


/*////////////// 
End Header 
////////////// */


/*////////////// 
Body
////////////// */

/* Hero Banner */

.hero-content {
    min-height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    align-content: center;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.hero-content .row {
    z-index: 1;
    height: 100%;
}

.hero-content .row .col-12 {
    flex-direction: column;
    align-self: center;
}

.hero-content .row h1 {
    margin-bottom: 20px;
    color: #231f20;
}

.hero-content .hero-logo {
    width: 380px;
    margin-bottom: 3rem;
}

.hero-content p {
    color: #fff;
    margin-bottom: 0;
    font-size: 1.2rem;
    line-height: 2rem;
    color: #231f20;
}

.support-hero .content p {
    color: #000
}

.information .contents p,
.report .contents p {
    color: #000;
    text-transform: uppercase;
    margin-bottom: 15px
}

.information .contents h1,
.report .contents h1 {
    font-size: 44px;
    margin-bottom: 0;
}

.information .hero-content,
.report .hero-content {
    min-height: 300px;
}

@media (max-width: 767.98px) {
.intro-section {
    border-top: 1px solid #eee;
    text-align: center;
}

.intro-section .pt-80 {
    padding-top: 40px;
}

.intro-section .p-lg {
    font-size: 1rem;
}
}

@media (max-width: 767.98px) {
    .hero-content {
        background-size: contain;
        background-position: top;
        background-image: none !important;
        min-height: auto;
    }

    .hero-content .row {
        background-color: #fff;
        margin-top: 0;
        position: relative;
        text-align: center;
        padding: 40px;
    }

    .hero-content .row h1 {
        font-size: 1.6rem;
    }

    .hero-content .row p {
        font-size: 1rem;
        line-height: 1.6rem;
    }

    .report-hero .row {
        background-color: unset;
        margin-top: unset;
        padding: unset;
    }

    .report-hero {
        min-height: 244px;
    }

    .report-hero .contents {
        padding-left: 15px;
        padding-bottom: 30px;
    }

    .report-hero .contents p {
        color: #fff !important
    }

    .hero-content .hero-logo {
        display: none;
    }

    .hero-content p {
        color: #000 !important;
    }
}

.home-hero {
    background-image: url("../images/hero-index.jpg");
}

.support-hero {
    background-image: url("../images/hero-support.jpg");
}

.report-hero {
    background-image: url("../images/hero-report.jpg")
}

.hero-overlay {
    --tw-gradient-from: #22d3ee;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 211, 238, 0));
    background-image: linear-gradient(90deg, var(--tw-gradient-stops));
    --tw-gradient-to: #a3e635;
    height: 100%;
    position: absolute;
    z-index: 0;
    width: 100%;
    opacity: .6;
}

/* End Hero Banner */

/* Support Content */

.bg-grey {
    background-color: #E5E7EB;
}

.report .content {
    background-color: #E5E7EB;
}

.information .content a {
    color: #1c94ce;
    text-decoration: underline;
}

.information .content a.back {
    color: #000;
    text-decoration: none !important;
}

.information .content h3,
.report .content h3 {
    font-weight: bold;
    margin: 25px 0 20px 0;
}

.information .content ul li {
    margin-bottom: 15px
}

/* End Support Content */

/* Cards */

.card-row .col-12 {
    display: flex;
    align-content: stretch;
}

.card {
    border-radius: 0;
    -webkit-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 10px 2px rgba(155, 155, 155, 0.1);
    border: none;
    padding: 25px;
    position: relative;
    width: 100%;
    min-height: 200px;
}

@media (max-width: 991.98px) {
    .card {
        margin-bottom: 20px;
    }
}

.card.card-primary .border-top {
    position: absolute;
    top: 0;
    height: 6px;
    background: rgb(34, 211, 238);
    background: linear-gradient(90deg, rgba(34, 211, 238, 1) 0%, rgba(163, 230, 53, 1) 100%);
    width: 100%;
    left: 0;
    border-top: 0 !important;
}

.card.card-secondary .border-top {
    position: absolute;
    top: -1px;
    height: 6px;
    background-color: #1c94ce;
    width: 100%;
    left: 0;
    border-top: 0 !important;
}

.btn-primary {
    background-color: #65bfc4;
    border-radius: 50px !important;
}

.btn-secondary {
    background-color: #1c94ce;
}

.btn-secondary:hover {
    background-color: #000;
}

.btn-secondary #Path_35 {
    fill: transparent;
}

.card .btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

/* End Cards */

/* Buttons */

.btn {
    border-radius: 0;
    text-align: left;
    position: relative;
    padding: 10px 15px;
    border: none;
    transition: ease .5s;
}

.btn.btn-primary {
    color: #000;
    transition: ease all .3s;
}

.btn.btn-primary:hover {
    background: linear-gradient(90deg, rgba(000, 000, 000, 1) 0%, rgba(000, 000, 000, 1) 100%) !important;
    color: #fff !important;
    transition: ease all .3s;
}

.btn.btn-primary:hover #Ellipse_1,
.btn.btn-primary:hover #Path_35 {
    stroke: #fff;
    transition: ease all .3s;
}

.btn.btn-primary:active {
    background-color: unset !important;
    background: linear-gradient(90deg, rgba(000, 000, 000, 1) 0%, rgba(000, 000, 000, 1) 100%) !important;
    color: #fff !important
}

.btn svg {
    right: 25px;
    width: 20px;
    height: 20px;
    top: 50%;
    transform: translate(0, -50%);
    position: absolute;
}

.back-btn {
    color: #000 !important;
    text-decoration: none !important;
    display: flex;
    align-items: center
}

.btn.focus,
.btn:focus {
    box-shadow: none !important;
}

/* End Buttons */

/* Support Slider */

@media (min-width: 992px) {
    .support-slider {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .support-card {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        display: flex;
        flex-direction: column;
        padding-right: 15px;
        padding-left: 15px;
    }
}

.support-card {
    position: relative;
    border-radius: 0;
    border: none;
    margin-bottom: 20px;
}

.support-card .inner {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.10);
    height: 100%;
    background-color: #fff;
}

.support-card .img-block {
    width: 100%;
    height: 180px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.link-list {
    list-style: none;
    padding: 15px 0 0 0;
}

.link-list li {
    margin-bottom: 15px
}

.link-list li:last-child {
    margin-bottom: 0px;
}

.link-list li a {
    color: #000;
    font-size: 15px;
}

.link-list li a:hover {
    color: #1c94ce;
}

.link-list li {
    padding-left: 40px;
    position: relative;
}

.link-list li .icon-bullet {
    height: 25px;
    width: 25px;
    background-image: url("../images/icon-bullet.svg");
    background-size: 25px;
    margin-right: 10px;
    position: absolute;
    left: 0px;
    top: 0;
}

.card-img {
    width: 200px;
    margin: 0 auto 30px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0%);
}

.card-img-center {
    width: 200px;
    margin: 0 auto 30px;
    position: relative;
}

.link-h3 {
    color: #000 !important;
    text-decoration: none !important;
    font-size: 1.4rem;
}

.card-wrapper:hover .link-h3 {
    text-decoration: none !important;
    color: #1c94ce !important;
}

.img-hate {
    background-image: url("../images/support/hate-crime.jpg");
}

.img-sexual-assault {
    background-image: url("../images/support/sexual-assault.jpg");
}

.img-sexual-harassment {
    background-image: url("../images/support/sexual-harassment.jpg");
}

.img-harassment {
    background-image: url("../images/support/harassment.jpg");
}

.img-discrimination {
    background-image: url("../images/support/discrimination.jpg");
}

.img-policy-guidance {
    background-image: url("../images/support/policy-guidance.jpg");
}

.support-card .content {
    padding: 25px;
    background-color: #fff;
}

.support-card .border-top {
    position: relative;
    height: 6px;
    background: rgb(34, 211, 238);
    background: linear-gradient(90deg, rgba(34, 211, 238, 1) 0%, rgba(163, 230, 53, 1) 100%);
    width: 100%;
    left: 0;
    border-top: 0 !important;
}

/* End Support Slider */

/* Information Hero */

.hero-content-information {
    background-color: #bae0f1;
    margin-bottom: 3px;
    }

    .hero-content-information .contents {
        display: flex;
        align-items: center;
        padding-top: 100px;
        padding-bottom: 40px;
        padding-left: 220px;
    }

    .hero-subheader .contents {
        padding-left: 220px;
        padding-top: 80px;
        padding-bottom: 80px;
    }

/* Report form Hero */

.hero-content-report {
background-color: #e3e2f0;
margin-bottom: 100px;
}

.hero-content-advisor {
background-color: #f6cfdf;
margin-bottom: 100px;
}

.hero-content-advisor .contents,
.hero-content-report .contents {
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 40px;
    padding-left: 220px;
}

.card-hero-img {
    width: 200px;
    position: absolute;
    left: 0;
    top: 40px;
}

@media (max-width: 767.98px) {
    .card-hero-img {
        width: 80px;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(0px, -50%);
    }
    
    .hero-content-advisor .contents,
    .hero-content-report .contents,
    .hero-content-information .contents {
        display: flex;
        align-items: center;
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: 100px;
    }

    .information .contents h1, .report .contents h1 {
        font-size: 32px;
    }

    .hero-subheader .contents {
        padding-left: 100px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/*////////////// 
End Body
////////////// */

/*////////////// 
Footer
////////////// */

.container-fluid.footer-banner-wrapper {
    padding-left: 0;
    padding-right: 0;
}

.footer-banner {
    width: 100%;
}

#footer {
    font-weight: 400px;
}

#footer .footer-logo {
    height: 60px;
}

#footer .footer-nav {
    display: inline-block;
    text-align: center;
    width: 100%;
    padding-left: 0;
    margin-bottom: 10px;
}

#footer .footer-nav li {
    display: inline-block;
}

#footer .footer-nav li a {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 400px;
    margin: 0 5px;
}

#footer .footer-nav li a:hover {
    text-decoration: none;
    color: #1c94ce;
}

#footer .copyright {
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
    font-weight: 400px;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    #footer .row .col-12 {
        text-align: center;
        margin-bottom: 30px;
    }

    #footer .row .col-12:last-child {
        margin-bottom: 0;
    }

    #footer .footer-nav {
        display: block;
    }

    #footer .footer-nav li {
        display: block;
    }

    #footer .footer-nav br {
        display: none;
    }
}

.social {
    display: flex;
    align-content: center;
    justify-content: flex-end;
}

@media (max-width: 991.98px) {
    .social {
        justify-content: center;
    }
}

#social-icon {
    background: #ccd53e;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

#box {
    background: #58595b;
    width: 38px;
    height: 38px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 2s ease-out;
    -moz-transition: all 2s ease-out;
    -o-transition: all 2s ease-out;
    transition: all 2s ease-out;
}

#box:hover {
    background: #ccd53e;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 2s ease;
}

/*////////////// 
End Footer
////////////// */

/*////////////// 
Form page
////////////// */

.float-link-wrapper {
    position: relative;
}

.float-link {
    z-index: 999;
    display: flex;
    flex-direction: row;
    width: 400px;
    align-items: center;
}

.float-link span {
    margin-left: 20px;
}

.float-link .img-lg {
    width: 150px;
}

.btn.continue {
    padding: 1.2em 8em 1.2em 1.05em;
}

.btn.back {
    display: flex;
    align-items: center;
}

.btn.back svg {
    right: unset;
    top: unset;
    transform: unset;
    position: unset;
    margin-right: 10px
}

.report .form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
    padding-bottom: 0.8em;
}

.report a {
    color: #000000;
}

.report a:hover {}

.report .step-forms .block {
    padding-bottom: 1em
}

.report .form-control {
    border-radius: 0;
    padding: 0.55rem 0.75rem;
}

.report .form-control::placeholder {
    font-size: 14px;
}

.report .btn-prev:hover {
    opacity: 0.5;
}

.position-relative {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col, [class^="col-"] {
    position: relative;
}