body {
    font-family: 'Rubik', sans-serif;
    color: #000;
}

h1 {
 font-size: 36px;
}

.layout-container {
    max-width: 1280px;
    margin: 30px auto;
}

.header {
    text-align: center;
}

.header-phone {
    display: block;
    margin-top: 20px;
}

@media (max-width: 420px) {
    .header-logo {
        width: 100%;
    }
}

@media (min-width: 620px){

    .header {
        height: 30px;
        line-height: 30px;
        margin-bottom: 60px;
    }

    .header-logo {
        float: left;
    }

    .header-phone {
        float: right;
        margin-top: 0;
    }
}


.header-phone {
    font-size: 18px;
    color: #000;
    text-decoration: none;
}

.header-phone:before {
    border-radius: 30px;
    border: 1px solid #000;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 10px;
}


.header-phone:hover {
    color: ##007AFF;
}

.container {
    text-align: center;
}

.btn {
    display: inline-block;
    width: 150px;
    background-color: #007AFF;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    padding: 10px 0;
    margin-top: 30px;
}

.btn:hover {
    background-color: #006fe9;
}