#owner-name{
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: bold;
    padding-top: 30px;
    padding-left: 20px;
}

#floating {
    padding: 30px;  
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    from { transform: translate(0,  0px); }
    65%  { transform: translate(0, 20px); }
    to   { transform: translate(0, -0px); }    
}

#owner-tagline{
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    padding-left: 20px;
}

#owner-about-text{
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    padding: 20px;
    text-align: justify;
}

#rating{
    font-family:sans-serif;
    font-size: 50px;
    font-weight: bold;
}

#about-our-product{
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: whitesmoke;
    margin: 5px;
}

#about-products{
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    background-color: rgb(33, 97, 217);
    color: whitesmoke;
    margin: 0px 5px 0px 5px;
    border-bottom: 2px solid whitesmoke;
}

#wcu-about{
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: bold;

}

#sub1-about{
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: bold;
}

#sub2-about{
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    /* font-weight: bold; */
    text-align: justify;
}

.col-bg{
    background-color: rgba(33, 97, 217, 0.5);
}

.facebook-icon{
    color: rgb(19, 126, 214);
}

.fy-bg{
    font-family: 'Roboto', sans-serif;
    background-color: rgba(32, 34, 38, 0.4);
    font-size: 30px;
    font-weight: bold;
    padding: 30px;
}


.swing {
    animation: swing ease-in-out 1s infinite alternate;
    transform-origin: center -20px;
    float:left;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}
.swing img {
    border: 5px solid #f8f8f8;
    display: block;
}
.swing:after{
    content: '';
    position: absolute;  
    width: 20px; height: 20px;  
    border: 1px solid #999;
    top: -10px; left: 50%;
    z-index: 0;
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}
/* nail */
.swing:before{
    content: '';
    position: absolute;
    width: 5px; height: 5px;
    top: -14px;left: 54%;
    z-index: 5;
    border-radius: 50% 50%;
    background: #000;
}
 
@keyframes swing {
    0% { transform: rotate(2deg); }
    100% { transform: rotate(-2deg); }
}