.bring-friend {
    width: 100%;
    padding: 100px 0 60px 0;
}
.bring-friend .container .back{
    width: 100%;
    background-color: rgb(20, 20, 20);
    position: relative;
    padding: 60px 150px;
    display: flex;
    justify-content: end;
    box-shadow: 10px 10px 20px black;
}
.bring-friend .container .back .gym-coach {
    position: absolute;
    bottom: -27.4px;
    left: 100px;
    width: 450px;
    transition: 1s;
}

.bring-friend .container .back .information {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bring-friend .container .back .information h1 {
    color: white;
    margin-bottom: 15px;
    font-size: 60px;
    line-height: 2.5ch;
    font-weight: 100;
    text-align: center;
}
.bring-friend .container .back .information h1 .line2 {
    color:  var(--primary-color);
;
}
.bring-friend .container .back .information h1 .line3 {
    font-size: 70px;
}
.bring-friend .container .back .information p {
    text-align: center;
    width: 100%;
    color: rgba(255, 255, 255, 0.774);
    font-size: 18px;
    font-weight: 300;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: normal;
    margin-top: 6px;
}
.bring-friend .container .back .contact {
    margin-top: 30px;
    padding: 13px 35px;
}


@media (max-width: 1000px) { 
    .bring-friend .container {
        width: 1000px;
    }
}
@media (max-width: 900px) {
    .bring-friend .container {
        width: 100%;
        background-color: rgb(14, 14, 14);
        padding: 60px 0 0 0 ;
    }
    .bring-friend .container .back{
        width: 90%;
        margin: auto;
        padding: 0px;
        justify-content: end;
        background-color: transparent;
        box-shadow: none;
        flex-direction: column;
        align-items: center;
    }
    .bring-friend .container .back .information h1 {
        font-size: 40px;
        width: 70%;
    }
    .bring-friend .container .back .information h1 .line3 {
        font-size: 45px;
    }
    .bring-friend .container .back .information p {
        width: 80%;
    }
    .bring-friend .container .back .contact {
        margin-top: -40px;
        z-index: 999;
        bottom: -320px;
    }
    .bring-friend .container .back .gym-coach {
        width: 310px;
        position: relative;
        bottom: -18px;
        left: 0;
    }
}