@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
* {
    font-family: 'Roboto', sans-serif;
}
body {
    /*background-image: url("../images/bg.jpg");*/
    background-image: url("../images/bg2.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container .col {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
img {
    margin-bottom: 100px;
}
h4 {
    color: #FFFFFF;
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}
h4 a {
    font-size: 40px;
    color: #FFFFFF!important;
    font-weight: 300;
}
h4 span {
    background-color: #cf202a;
    padding: 1px 5px;
    border-radius: 2px;
    font-weight: 300;
    font-size: 36px;
}
h5 {
    color: #FFFFFF;
    font-size: 32px;
    text-align: center;
    margin-bottom: 120px;
    font-weight: 300;
}
p {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 20px;
}
a {
    text-decoration: none!important;
    font-size: 20px;
    color: #cf202a!important;
    display: inline-flex;
    margin-bottom: 10px;
}
a > img {
    height: 100px!important;
    margin-bottom: 50px;
}

@media (max-width: 1400px){
    a > img {
        height: 65px!important;
    }
    h4 {
        font-size: 30px;
        margin-bottom: 30px;
    }
    h4 a {
        font-size: 30px;
    }
    h4 span {
        font-size: 26px;
    }
    h5 {
        font-size: 26px;
        margin-bottom: 70px;
    }
}
@media (max-width: 992px){
    body {
        height: auto;
    }
    img {
        margin-bottom: 70px;
    }
    a > img {
        height: 56px!important;
        margin-bottom: 30px;
    }
    h4 {
        font-size: 26px;
    }
    h4 a {
        font-size: 26px;
    }
    h4 span {
        font-size: 24px;
        display: inline-flex;
        margin-top: 5px;
    }
    h5 {
        font-size: 22px;
        margin-bottom: 70px;
    }
    p {
        margin-bottom: 10px;
        font-size: 16px;
    }
    a {
        margin-bottom: 5px;
        font-size: 18px;
    }
}