* {
    box-sizing: border-box;
}

@media screen and (min-width: 240px) {

    /*STYLE ALL ___________________________________*/
    .join-us {
        background-color: white;
        padding: 35px 0;
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 50px 0;
        max-width: none;
        
    }
    h1 {
        font-family: 'Nunito' , sans-serif !important; font-weight:900;
    }

    .join-us .container {
        max-width: 1800px;
        width: 100%;
    }

    .join-us .wrapper {
        padding: 0 20px;
    }

    .join-us__header {
        width: 100%;
        padding: 25px 0;
    }

    .join-us__heading {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        letter-spacing: 1px;
    }
    
    
    .join-us__title{
        font-weight: 900;
        font-size: 1.3rem;
        text-align:center;
    }
    .join-us__title span{
        font-weight: 900;
        font-size: 1.5rem;
    }
    .join-us__heading h1 {
        font-size: 1.8rem;
        text-align: center;
        font-weight: 700;
        text-transform: uppercase;
        margin-top: 0;
    }

    .join-us__letter--1 {
        margin-right: 25px;
    }

    .join-us__letter--3 {
        color: rgb(34, 177, 34);
    }

    .join-us__letter--2,
    .join-us__letter--4 {
        color: #ae0000;
    }

    .join-us__content {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .join-us__item {
        position: relative;
        flex-basis: 100%;
        max-width: 100%;
        padding: 20px 30px;
    }

    .join-us__item--1 {
        margin-left: 0;
    }

    .join-us__item--3 {
        margin-right: 0;
    }

    .join-us__tile {
        position: relative;
        overflow: hidden;
        /*box-shadow: -5px 6px 10px 0px black;*/
        border-radius: 10px;
        transition: all 0.2s linear;
        
    }

    .join-us__image {
        max-width: 100%;
        max-height: 100%;
        width: 615px;
        height: 280px;
        object-fit: cover;
        object-position: left;
        margin-bottom: -5px;
        transition: all 0.2s linear;
    }

    .join-us__info-container {
        position: absolute;
        bottom: 0;
        top: 50%;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(255, 255, 255, 0.8);
        transition: all 0.2s linear;
    }

    .join-us__tile:hover {
        transform: scale(1.03);
        transition: all 0.2s linear;
    }

    .join-us__tile:hover .join-us__info-container {
        top: 50%;
        transition: all 0.2s linear;
    }

    .join-us__tile:hover .join-us__image {
        opacity: 1;
        object-position: bottom left;
        transition: all 0.2s linear;
    }

    .join-us__link {
        cursor: pointer;
        display: flex;
        flex-direction: column;
        color: white;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: all 0.2s linear;
    }

    .join-us__link:hover {
        color: white;
        transform: scale(1.08);
        transition: all 0.2s linear;
    }

    .join-us__subheading {
        font-weight: 700;
        color: black;
        text-transform: uppercase;
        margin-bottom: 15px;
        letter-spacing: 1px;
        font-size: 1rem;
    }

    .join-us__subtext {
        color: black;
        text-transform: initial;
        margin-bottom: 10px;
    }

    .join-us__button {
        width: 150px;
        max-width: 200px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 6px 0;
        border-radius: 10px;
        background-color: #EC2A1A;
        /* box-shadow: -2px 4px 8px black; */
        transition: all 0.2s linear;
    }

    .join-us__button:hover {
        background-color: #EC2A1A;
        transition: all 0.2s linear;
    }
}

@media screen and (min-width: 480px) {
    .join-us__title{
        font-weight: 900;
        font-size: 1.8rem;
    }
    .join-us__title span{
        font-weight: 900;
        font-size: 1.8rem;
    }

    .join-us__item {
        padding: 20px 50px;
    }

    .join-us__image {
        height: 315px;
    }
}

@media screen and (min-width: 570px) {
    .join-us__heading h1 {
        font-size: 2.4rem;
    }
}

@media screen and (min-width: 640px) {
    .join-us .wrapper {
        padding: 0 40px;
    }
    .join-us__title{
        font-size: 2.2rem;
    }
    .join-us__title span{
        font-size: 2.2rem;
    }
}

@media screen and (min-width: 760px) {
    .join-us__content {
        justify-content: space-between;
    }

    .join-us__item {
        flex-basis: 33%;
        max-width: 33%;
        padding: 10px;
    }

    .join-us__heading h1 {
        font-size: 3.39rem;
    }

    .join-us__item--1 {
        margin-left: -10px;
    }

    .join-us__item--3 {
        margin-right: -10px;
    }

    .join-us__image {
        height: 415px;
    }
}
@media screen and (min-width: 1080px) {

 .join-us__title{
        font-size: 2.8rem;
    }
    .join-us__title span{
        font-size: 2.8rem;
    }
}