/*For Page design*/
.font_color {
    font-size: 15px;
    color: #656565;
    text-align: justify;
}

body {
    overflow-x: hidden !important;
}

.heading1 {
    font-size: 25px;
}

.heading2 {
    font-size: 20px;
}
/*End Page design*/
/* Hide element on Desktop */
@media only screen and (max-width: 600px) {
    .hide-on-desktop

{
    display: none !important;
}

}
/* Hide element on Tablet/Phone */
@media only screen and (min-width: 601px) {
    .hide-on-mobile-tablet {
        display: none !important;
    }

    @media screen and (min-width: 0px) and (max-width: 400px) {
        #my-content {
            display: block;
        }
    }

    @media screen {
        #my-content {
            display: none !important;
        }
        /* hide it elsewhere */
    }
}

body {
    overflow-x: hidden;
}
/*to fit all div properly*/
.left-div {
    float: left;
}

.right-div {
    margin-left: -10px;
}
/*end*/
