.service-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 100px 20px;
}
.service-describe-container{
    width: 500px;
    height: 300px;
}
.service-subtitle{
    color: #1A237E;
    font-size: 30px;
    margin-bottom: 10px;
}
.service-describe{
    font-size: 20px;
}
.style-image{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 400px;
    height: 300px;
    border-radius: 10px;
    margin-right: 50px;
}
/* put the social media image*/
.social-media-image{
    background-image: url(images/social_media.jpg);
}
/* put the adverting and launching image*/
.adverting-image{
    background-image: url(images/ads.png);
}
/* put the design and painting image*/
.design-painting-image{
    background-image: url(images/design_branding.jpg);
}
/* put the development and coding image*/
.coding-image{
    background-image: url(images/development_simple_web.jpg);
}
.like-service{
    font-size: 25px;
    margin: 20px;
}
.contact-us-btn{
    background: #1A237E;
    border: none;
    width: 150px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: 0.7s;
}
.contact-us-btn:hover{
    transform: scale(1.1);
}
.contact-us-btn:active{
    background: white;
    border: #1A237E 1px solid;
    color: #1A237E;
}
.contact-us-link{
    color: white;
    text-decoration: none;
    font-size: 20px;
}
/* Tablet */
@media (max-width: 650px){
    .service-container{
        display: block;
    }
    .style-image{
        display: block;
        margin: 0px;
        margin-top: 20px;
        width: 98%;
    }
}