html, body {
    width: 100%;
    height: 100%;
    font-family: Lucida Sans Unicode, arial;
    color: #333;
    font-size: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    min-height: 60px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,.2);
    display: flex;
    justify-content: center;
    color: #777;
    align-items: center;
}

.footer {
    min-height: 40px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,.2);
    display: flex;
    justify-content: center;
    color: #777;
    align-items: center;
}

.footer a {
    color: #999;
    font-weight: 600;
    text-decoration: none;
}

.header__content {
    max-width: 1024px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0 10px;
}

.page {
    max-width: 1024px;
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.page__content {
    padding-top: 50px;
    color: #999;
    font-size: 16px;
}

.page__title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 36px;
}

.page__text {
    margin-bottom: 20px;
}

.page__list-title {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.page__list {
    margin-bottom: 20px;
    padding-left: 40px;
}

.page__list-item:not(:last-child) {
    margin-bottom: 10px;
}

.header__logo {
    width: 20%;
}

.header__logo img {
    height: 50px;
    width: auto;
}

.header__cont {
    display: flex;
    color: #777;
    align-items: center;
}

.company__title {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin-top: 50px;
}

.company__logo img {
    height: 150px;
    margin-right: 20px;
}

.company__name {
    line-height: 100px;
    font-size: 40px;
    font-weight: 600;
    color: #60AEFF;
}

.company__text,
.company__contacts {
    margin-top: 70px;
    width: 100%;
    text-align: center;
}

.company__text-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #999;
}

.company__text-body {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company__text-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
}

.company__text-element {
    width: 48%;
    max-width: 250px;
    min-height: 80px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,.2);
    border-radius: 4px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    padding: 10px;
    text-decoration: none;
}

.company__text-element:hover {
    color: #fff;
    background-color: #ddd;
}

.company__contacts {
    max-width: 300px;
    line-height: 24px;
    font-size: 16px;
    padding-bottom: 80px;
}

.email,
.link {
    color: #60AEFF;
    font-weight: 600;
}

@media (max-width: 680px) {
    .page {
        padding-left: 10px;
        padding-right: 10px;
    }

    .company__logo img {
        height: 100px;
        margin-right: 20px;
    }

    .company__name {
        line-height: 60px;
        font-size: 30px;
        font-weight: 600;
        color: #60AEFF;
    }

}

.emphasize {
	font-weight: 600;
}
