body {
    font-family: 'Lato', sans-serif;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Oswald', sans-serif;
}

.title-text {
    font-size: 3rem;
}

.text-red{
    color: #bd0926;
}
.text-red:hover{
    color: #b92c43;
}
.navbar-brand img{
    width: 200px;
}

.list-styled3 ol,
ol.list-styled3 {
    padding: 0;
    counter-reset: li;
    list-style: none outside none;
}

ol.list-styled3.ol-light li span:before {
    color: #fff;
}

.list-styled3 ol li span:before,
ol.list-styled3 li span:before {
    content: counter(li, decimal);
    counter-increment: li;
    font-family: 'Oswald';
    display: inline-block;
    position: relative;
    text-align: center;
    margin-right: 20px;
    font-size: 16px;
    color: #303849;
    font-weight: 600;
    background-color: #bd0926;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
}

.special-heading .heading-line-color2.with-line:after {
    background-color: #bd0926;
}

.special-heading.with-line:after,
.special-heading .with-line:after {
    content: '';
    position: relative;
    margin-top: 23px;
    width: 100px;
    height: 1px;
    display: block;
    background-color: #2590ed;
}

.text-center.with-line:after,
.text-center .with-line:after {
    left: 50% !important;
    transform: translateX(-50%);
}

.special-heading {
    line-height: 1;
    position: relative;
    z-index: 5;
    margin: 0 0 23px;
    font-family: 'Oswald', sans-serif;
}

.special-heading {
    margin: 0 0 25px;
}

@media (min-width: 768px) {

    .special-heading.with-line:after,
    .special-heading .with-line:after {
        left: -23px;
        margin-top: 17px;
    }
}

@media (min-width: 768px) {
    .special-heading .big-letter-spacing {
        letter-spacing: 0.7em;
    }
}

.box {
    background-color: white;
    height: 230px;
}

.box:hover {
    background-color: #bd0926;
}

.box:hover .icon {
    filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(300deg) brightness(103%) contrast(101%);
}

.btn:hover {
    color: #ffffff;
}

.btn {
    margin: 10px 3px;
    padding: 1rem;
    border: none;
    color: white;
    /*width: 180px;*/
    height: 60px;
    font-size: 18px;
    border-radius: 2px;
    color: #fff;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
}

.btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    background: #fff;
    opacity: 0.2;
    transition: transform 300ms ease-in;
}

a {
    text-decoration: none;
}

.hover-left:after {
    transform: scale(0, 1);
    transform-origin: left;
}

.hover-left:hover:after {
    transform: scale(1);
}

.danger {
    background: #bd0926;
}

footer a{
    color: #ffffff;
}