:root{
    --white-color: #fff;
    --black-color: #000;
    --primary-color: #ee4d2d;
    --text-color: #333;
    --header-height: 120px;
    --border-color: #ccc;
}

/* All */
*{
    padding: 0;
    margin: 0;
}

html{
    font-size: 15px;
    scroll-behavior: smooth;
}

body{
    font-family: "Lato", sans-serif;
}

a{
    text-decoration: none;
}

ul{
    list-style-type: none;
}

.line-through-text{
    text-decoration: line-through !important;
}

.center{
    text-align: center;
}

.clear{
    clear: both;
}

.line{
    display: block;
    height: 1px;
    background-color: #000;
}

.auto{
    margin-left: auto;
    margin-right: auto;
}

.font-s{
    font-size: 14px !important;
}

@media (max-width: 46.1875em){
    .hidden-on-mobile {
        display: none !important;
    }
}