body {
    background-color: #24292D;
    color: white;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin: 0;
    padding: 0;

    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .29), rgba(0, 0, 0, 0.1)),
        url("https://dozwwblf9mhse.cloudfront.net/542ADC1E-F913-49BD-B7CD-F63FA675FAAC_w1920.jpg");
        /* url("https://dozwwblf9mhse.cloudfront.net/391BA5B6-4899-4D4C-A954-9E9F7D94CCE1_w1920.jpg"); */
        /* url("https://dozwwblf9mhse.cloudfront.net/F93B9E10-C480-4E77-9D58-923F60BC8D11_w1920.jpg"); */
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;

    background-position-y: 66%;
}

/* top header logos & SM btns */
.header-dark {
    padding: .5rem;
    position: relative;
    z-index: 1;
}

.logo-desktop {
    height: 4rem;
    width: 7rem;
    display: inline-block;
    background-image: url("https://dozwwblf9mhse.cloudfront.net/A51D21C1-A00F-4812-961A-41DD157B4ECD.png");
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.7;
}

.logo-mobile {
    height: 2rem;
    width: 2rem;
    display: none;
    background-image: url("https://d1mcot632qh17u.cloudfront.net/Branding/RFE/infographics-branding/img/favicons/apple-icon-57x57.png");
    background-size: cover;
    float: left;
}

.logo-desktop:hover,
.logo-desktop:focus {
    opacity: 1;
    transform: scale(1.02);
    transition: all .2s ease-in-out;
}

.all-wrapper {
    position: relative;
    padding: 0 1rem;
    height: 100vh;
    line-height: 100vh;
}

.title {
    margin: auto;
    font-size: 4rem;
    letter-spacing: .6rem;
    line-height: 4.0rem;
    margin: 100px;
    text-transform: uppercase;
    /* text-shadow: 1px 1px 1px red,
    -1px -1px red; */
    user-select: none;
    text-shadow: 1px 1px 1px black,
    -1px -1px black;
}

.title .title-description {
    display: inline-block;
    margin-top: 2rem;
    max-width: 50rem;
    font-size: 1.4rem;
    letter-spacing: .2rem;
    line-height: 2rem;
    /* color: red; */
    text-transform: none;
    /* text-shadow: none; */
    text-shadow: 1px 1px 1px black;
    /* -1px -1px black; */
}

.heroes-line {
    vertical-align: middle;
    display: inline-block;
}

.heroes-items {
    display: flex;
    justify-content: space-around;
    list-style: none;
    flex-wrap: wrap;
    padding: 0;
}

.hero-item {
    border: 2px solid rgba(244, 25, 25, .5);
    border-radius: 4px;
    margin: 1rem;
    background-color: rgba(100, 10, 10, .1);
    box-sizing: border-box;
    position: relative;
    padding: .5rem;
    list-style: none;
}

.hero-item-link {
    width: 100%;
    position: relative;
    text-decoration: none;
    min-height: 180px;
    overflow: hidden;
    text-align: center;
}

.hero-item-link__img {
    margin: 5px auto;
    background-position: center;
    background-size: cover;
    width: 200px;
    height: 200px;
    border: 1px solid red;
    border-radius: 5px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.hero-item-link-text {
    z-index: 1;
    margin-top: 5px;
    display: block;
    color: #ffffff;
    text-shadow: #000000 1px 1px 2px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
}

.hero-item:hover{
    background-color: rgba(100, 10, 10, .3);
    transition: all .2s linear;
}

.hero-item:hover .hero-item-link__img {
    transform: scale(1.02);
}

.hero-item:hover .hero-item-link-text  {
    text-shadow: 1px 1px 1px rgba(100, 10, 10, .9);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.header-social {
    position: absolute;
    right: 0.5rem;
    top: .5rem;
}

.header-social .social-button {
    text-align: center;
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    padding-top: 1px;
    line-height: 3rem;
    color: #fff !important;
    border: 3px solid #fff;
    font-size: 1.8rem;
    margin-top: 7px;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: baseline;
    opacity: .8;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    text-decoration: none !important;
}

.header-social .social-button:hover {
    opacity: 1;
    background-color: #EA6903
}

/* adaptive mobile styles started here */
@media (max-width: 1600px) {
    .hero-item-link__img {
        width: 180px;
        height: 180px;
    }
    .title {
        font-size: 3rem;
        letter-spacing: .6rem;
        line-height: 4.0rem;
        margin: 30px;
    }
}
@media (max-width: 1440px) {
    .hero-item {
        margin: .5rem;
    }
}
@media (max-width: 1366px){
    .hero-item-link__img {
        width: 160px;
        height: 160px;
    }
    .title {
        font-size: 2.4rem;
        line-height: 4rem;
    }
    .title-description{
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 1200px) {
    body:before {
        content: "";
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -10;
        /* background: radial-gradient(at center center, rgba(0, 0, 0, .05) 5%, rgba(0, 0, 0, .9) 100%), url('') no-repeat 25% center; */
        background: radial-gradient(at center center, rgba(0, 0, 0, .31) 5%, rgba(0, 0, 0, .4) 100%),
       url("https://dozwwblf9mhse.cloudfront.net/542ADC1E-F913-49BD-B7CD-F63FA675FAAC_w1920.jpg") no-repeat center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    .logo-mobile {
        display: inline-block;
    }

    .logo-desktop {
        display: none;
    }

    .heroes-line {
        display: block;
    }

    .heroes-items{
        justify-content: center;
    }
    .title {
        /* text-transform: none; */
        font-size: 2.4rem;
        line-height: 3rem;
        vertical-align: top;
        /* color: red; */
        letter-spacing: .3rem;
        /* text-shadow: none; */
    }

    .title .title-description{
        font-size: 1.2rem;
        line-height: initial;
        letter-spacing: initial;
        color: white;
        text-transform: initial;
        max-width: 30rem;
        font-weight: 400;
    }
}

/* just break */
@media (max-width: 675px) {
    .header-social .social-button {
        border: none !important;
        font-size: 1.3rem;
        margin: .1rem;
        margin-top: 0;
        vertical-align: top;
    }

    .title {
        text-transform: none;
        /* font-size: 1.6rem; */
        line-height: 2.2rem;
        letter-spacing: .1rem;
        margin: 2.4rem 1rem;
        text-shadow: none;
        color:red;
    }

    .title .title-description{
        font-size: 1.2rem;
        max-width: 30rem;
    }
}

@media (max-width: 475px) {
    .all-wrapper {
        height: initial;
        line-height: initial;
    }

    .title {
        font-size: 1.8rem;
        line-height: 2.2rem;
        letter-spacing: .1rem;
        margin: 2.4rem 1rem;
        text-shadow: none;
    }

    .title .title-description{
        font-size: 1rem;
        max-width: 25rem;
    }

}

