@font-face {
    font-family: "lato regular";
    src: url('../fonts/lato/Lato-Regular.ttf');
}

@font-face {
    font-family: "lato bold";
    src: url('../fonts/lato/Lato-Bold.ttf');
}

body {
    font-family: 'lato regular', sans-serif;
}

.lato-bold {
    font-family: 'lato bold';
}

h1, h2, h3, h4, h5, h6, p, span, a {
    font-family: 'lato regular';
    color: #222222;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 15px;
}

p {
    font-size: 14px;
}

span {
    font-size: 12px;
}

@media screen and (max-width:768px) {
    h1 {
        font-size: 20px;
    }
    h2 {
        font-size: 18px;
    }
    h3 {
        font-size: 16px;
    }
    h4 {
        font-size: 14px;
    }
    h5 {
        font-size: 12px;
    }
    h6 {
        font-size: 12px;
    }
    p {
        font-size: 12px;
    }
    span {
        font-size: 10px;
    }
}

a {
    text-decoration: none;
}

a:hover{
    color: #AE1022;
}

.bg-primary {
    background-color: #AE1022 !important;
}

.bg-primary-text {
    color: #FFFFFF;
}

.bg-primary:hover {
    background-color: #FFFFFF !important;
    border: 1px solid #AE1022;
    color: #AE1022;
}

.bg-primary:hover p,
.bg-primary:hover i{
    color: #AE1022 !important;
}

.text-primary {
    color: #AE1022 !important;
}

.text-grey {
    color: #ABABAB !important;
}

.btn-primary-style {
    padding: 15px 25px;
    border-radius: 5px;
}

@media screen and (max-width:768px) {
    .btn-primary-style {
        padding: 12px 25px;
    }
}

.text-gray {
    color: #4F4F4F;
}