* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-MediumItalic.eot') format('eot');
    font-weight: 400;
    font-style: normal;
}


@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Medium.eot') format('eot');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Bold.eot') format('eot');
    font-weight: 700;
    font-style: normal;
}


@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Semibold.eot') format('eot');
    font-weight: 600;
    font-style: normal;
}

body {
    background: #ffff;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
}


.main-button {
    padding: 8px 24px;
}

.shodow {
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.40);
}

.slide-effect::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #117076;
    transition: width 0.5s ease;
    z-index: 1;
}

.slide-effect:hover::before {
    width: 100%;
}


/* Mobile devices (typically screens up to 768px) */
@media only screen and (max-width: 768px) {
    .shodow {
        box-shadow: none;
    }
}