div {
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background: #EF3C36;
    color: #fff;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1280px;
    padding: 0 15px;
    margin: 0 auto;
}

.logo {
    margin-top: 35px;
}

.logo svg{
    height: auto;
    width: 150px;
    vertical-align: bottom;
}

.onePage h1 {
    font-weight: 900;
    font-size: 64px;
    line-height: 50px;
    margin-top: 35px;
    margin-bottom: 0;
}

.onePage section {
    margin-top: 20px;
}

.onePage section .box {
    border-radius: 20px;
    background: #161616;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 35px 20px;
}

.onePage section .box.down {
    justify-content: flex-end;
}

.onePage section .box.up {
    justify-content: flex-start;
}

.onePage section .box h2 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 30px;
    font-weight: 900;
    line-height: 30px;
}

.onePage section.first {
    margin-top: 15px;
}

.onePage section.first .box {
    height: 300px;
}

.onePage section.second .box {
    height: 222px;
}

.onePage section.fourth .box {
    height: 415px;
}

.onePage section.third .container {
    display: flex;
    justify-content: space-between;
}

.onePage section.third .box {
    height: 150px;
    width: 49%;
}

.rqButton {
    width: 250px;
    height: 65px;
    display: block;
    box-sizing: border-box;
    margin: 20px auto 0 auto;
    text-transform: uppercase;
    border-radius: 35px;
    border: 2px solid #fff;
    text-align: center;
    line-height: 61px;
    font-size: 20px;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    font-weight: 900;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
}

.rqButton:hover {
    color: #EF3C36;
    background-color: #fff;
}

footer .copyright{
    font-weight: normal;
    font-size: 14px;
    text-align: center;
    margin-top: 150px;
}

@media screen and (max-width: 768px) {
    
    .logo svg{
        width: 66px;
    }

    .container {
        padding: 0 17px;
    }

    .onePage h1 {
        font-size: 50px;
        margin-top: 13px;
        line-height: 40px;
    }

    .onePage section .box .description {
        font-size: 14px;
        text-align: left;
    }
    
    .onePage section.third .box {
        width: 48%;
    }

}