* {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    display: none;
}

html, body {
    margin: 0;
    font-family: Arial;
    font-size: 16px;
    background: #EEE;
}

.navbar {
    width: 100%;
    height: 100px;
    background-color: rgb(30, 30, 77);
}
.navbar .content {
    width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 35px 0 0 0;
}

.navbar .content .left-logo {
    color: #FFF;
    font-size: 1.5em;
}
.navbar .content .right-links a {
    color: #b2b2b2;
    font-size: 1em;
    transition: color 0.5s;
    text-decoration: none;
}
.navbar .content .right-links a:hover {
    color: #FFF;
}
.navbar .content .right-links a:first-child, a:nth-child(2) {
    margin-right: 15px;
}

.main-content {
    width: 800px;
    margin: 0 auto;
    background: #FFF;
    padding: 50px 0 50px 0;
    text-align: center;
}
.main-content .title {
    margin: 0;
    text-transform: uppercase;
    font-size: 1.75em;
    line-height: 1.45em;
}
.main-content .content .txts {
    padding: 25px 50px;
    line-height: 1.45em;
}
.main-content .content .img {
    padding: 50px 0 0 0;
    display: flex;
    justify-content: space-evenly;
}
.main-content .img img {
    height: 150px;
}  

.footer {
    width: 100%;
    padding-top: 5px;
    padding-bottom: 25px;
    background-color: rgb(30, 30, 77);  
    margin: 0;
    color: #FFF;
    text-align: center;
}

.contact {
     padding-top: 50px; 
}
.contact a {
    color: #000;
    text-decoration: none;
}
.contact a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 835px) {
    body {
        font-size: 0.7em;
    }
    .navbar {
        height: 75px;
    }
    .navbar .content {
        width: 100%;
        padding-left: 25px;
        padding-right: 25px;
        padding-top: 30px;
        font-size: 0.8em;
    }
    .main-content {
        width: 100%;
    }
    .main-content .title {
        font-size: 1.4em;
    }
    .main-content .img img {
        height: 100px;
    }
}

@media screen and (max-width: 705px) {
    .main-content .img img {
        height: 70px;
    }  
}