*{
    font-family: "Roboto", sans-serif !important;
}
.container{
    max-width: 120rem;
    padding: 0 1.5rem;
    margin: 0 auto;
}

.content{
    width: 80%;
    height: 376px;
    display: flex;
    background: rgb(255,255,255);
    background: linear-gradient(
90deg
, rgba(255,255,255,1) 0%, rgba(242,245,248,1) 35%, rgba(236,236,237,1) 100%);
    box-shadow: 0 13px 15px rgb(0 0 0 / 30%);
    border-radius: 10px;
    margin-bottom: 5%;
    margin-left: 9%;
    margin-top: 48px;
    transition: background-color .5s, box-shadow .5s, margin-left .5s;
}

.content-img{
    flex: 1;
}

.content-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-text{
    flex: 1.5;
    padding: 4rem;
}

.content-text .content-title{
    font-family: "Roboto", sans-serif !important;
    color: #222;
    font-size: 25px;
    font-weight: 700;
    margin: -35px 0px 2px 0px;
    text-align: center;
}

.content-text .content-subtitle{
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgb(82, 81, 81);
    margin: 14px 0px 5px 0px;
    text-align: center;
}

.content-text .content-paragraph{
    font-size: 15px;
    margin-bottom: 5px;
}

.content-text .btn{
    display: inline-block;
    text-decoration: none;
    font-size: 1.5rem;
    text-transform: uppercase;
    padding: 1.5rem 2rem;
    border: 1px solid #444;
    color: #444;
}


@media screen and (max-width: 1100px){
    .content-text{
        flex: 1;
    }
}

@media screen and (max-width: 960px){
    .content-text .content-paragraph{
        font-size: 1.4rem;
        margin-bottom: 1.6rem;
    }

    .content-text .content-subtitle{
        /* font-size: 2rem; */
    }

    .content-text .content-title{
        font-size: 3.2rem;
    }

    .content-text .btn{
        padding: 1rem 1.56rem;
    }
}

@media screen and (max-width: 756px){
    .content{
        flex-direction: column;
        text-align: center;
    }

    .content-text .content-paragraph{
        text-align: justify;
    }

    .content-img{
        height: 350px;
        width: 100%;
    }
}

@media screen and (max-width: 456px){
    .content-text .content-paragraph{
        font-size: 1.2rem;
    }
    .content-text .content-subtitle{
        /* font-size: 1.72rem; */
    }

    .content-text .content-title{
        font-size: 2.7rem;
    }
}

.share{
    width: 200px;
    height: 300px;
    float: right;
    margin: 0px -116px 0px 0px;
}
.share p{
    font-weight: 600;
    font-size: 16px;
}

.fa-share-alt {
    color:#1FDE82;
    font-size: 20px;
    padding: 15px;
}
.fa-thumbs-up{
    color:#1FDE82;
    font-size: 20px;
    padding: 15px;
}
.fa-share-alt:hover {
    color:#1f4cde;
    
}
.fa-thumbs-up:hover{
    color:#1f4cde;
    
}
