@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap");

body {
    font-family: "Roboto", Arial, sans-serif;
    background: #080808;
    color: #fff;
    font-size: 18px;
}

.header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.header-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    width: 40px;
}

.header-navigation {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-navigation-link {
    color: #fff;
}

.banner {
    background: #0f0f0f;
    border-radius: 0 0 50px 50px;
    margin-bottom: 40px;
}

.banner-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-top: 50px;
    min-height: 500px;
}

.banner-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.banner-description {
    max-width: 700px;
    margin-bottom: 20px;
}

.button {
    font-size: 18px;
    line-height: 55px;
    cursor: pointer;
    text-align: center;
    padding: 0 20px;
    border-radius: 50px;
    background: #4e6bfe;
    color: #fff;
    display: inline-block;
}

.button:hover {
    background: #6780fd;
    color: #fff;
}

.text {
    margin-bottom: 40px;
}

.text ul {
    list-style: disc;
    margin-left: 15px;
}

.footer {
    border-top: 1px solid #0f0f0f;
    padding: 20px 0;
}

.footer-copyright {
    font-size: 13px;
}

p + h3 {
    margin-top: 20px;
}





@media (max-width: 1400px) {

}

@media (max-width: 1200px) {

}

@media (max-width: 992px) {
    .header-navigation {
        display: none;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 31px;
        line-height: 1.5;
    }

    h2 {
        font-size: 27px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {

}
