.Banner {
 
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    color: white;
}

.Banner h2 {
    font-size: 80px;
    font-weight: 600;
    font-family: 'MyCustomFont';
}

.Banner h4 {
    font-size: 48px;
    font-weight: 600;
}

.Banner ul {
    margin-top: 150px;
    display: flex;
    position: relative;
}

.Banner ul::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 2px;
    background-color: #fff;
    left: 0;
    top: 0;
    transform: translateY(-50%);
}

.Banner ul li a {
    color: white;
    text-transform: uppercase;
    margin-right: 40px;
    padding: 10px 0 0 0;
    display: block;
    transition: 0.4s;
}

.Banner ul li a:hover {
    color: #C01920;
}


@media screen and (max-width:1440px) {
    .Banner h2{
        font-size: 70px;
    }
    .Banner h4{
        font-size:38px;
    }
}
@media screen and (max-width:1200px) {
    .Banner h2{
        font-size: 60px;
    }
    .Banner h4{
        font-size:30px;
    }
}
@media screen and (max-width:991px) {
    .Banner ul{
        margin-top: 120px;
    }
}
@media screen and (max-width:768px) {
    .Banner h2{
        font-size: 45px;
    }
    .Banner h4{
        font-size:25px;
    }
}
@media screen and (max-width:576px) {
    .Banner ul{
        margin-top: 60px;
    }
}