h1,
h2,
h3,
h4 {
    font-weight: 400;
    margin-top: 0
}

a {
    color: inherit;
    outline: 0;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out
}

.bold{
    font-weight:600;
}

body {
    font-family: -apple-system,BlinkMacSystemFont,"ubuntu","Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    overflow-x: hidden;
}

header{
    border-bottom: 1px solid #ccc;
}

.navigation li{
    display: inherit;
}

.navigation a{
    color: #f7941d;
}

.hero {
    min-height: 380px;
    height: 520px;
    background: transparent;
    overflow: hidden;
    color: #fff;
    position: relative;
    font-weight:100;
}

.hero .container-fluid{
    background: rgba(0, 0, 0, 0.6);
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    visibility: inherit;
    z-index: -1;
    object-fit: cover;
    background-size: cover;
    max-width: none;
}

.hero p{
    max-width: 480px;
    font-size: 16px;
}

.featured{
    font-size: 16px;
    font-weight: 300;
}

.featured a{
    max-width: 360px;
}

.news{
    background: #326ada;
    color: #ffffff;
}

.how-it-works{
    background: #f7941d;
    color: #fff;
}

.how-its-different{
    background: var(--gray);
    color: #fff;
}

.how-you-benefit{
    background: #1ab0d9;
    color: #fff;
}

@media (min-width: 1200px){
    .how-it-works img,
    .how-its-different img,
    .how-you-benefit img{
        height: 290px;
        object-fit: cover;
    }
}
@media (min-width: 768px) and (max-width: 1199px){
    .how-it-works img,
    .how-its-different img,
    .how-you-benefit img{
        height: 240px;
        object-fit: cover;
    }
}

@media (min-width: 576px) and (max-width: 767px){
    .how-it-works img,
    .how-its-different img,
    .how-you-benefit img{
        height: 200px;
        object-fit: cover;
    }
}

@media (max-width: 575px){
    .how-it-works img,
    .how-its-different img,
    .how-you-benefit img{
        height: 180px;
        object-fit: cover;
    }
}

.about-us{
    background: #f4f4f4;
    padding: 80px 0;
}

.about-us h2{
    text-transform: capitalize;
}

.about-us .card p{
    color: #888;
}

footer{
    border-top: 1px solid #ccc;
}

/*-- Media Queries --*/
@media (max-width: 640px){
    .hero h2{
        font-size: 22px;
    }
    .hero p{
        font-size: 14px;
    }
    .hero {
        height: 360px;
    }
}

@media (min-width: 576px){
    .container {
        max-width: 90%;
    }
}