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

body {
    font-family: 'ubuntu', 'Open sans', 'sans-serif';
}

.header {
    background-color: #273252;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header__title {
    font-size: 40px;
    color: #FFFFFF;
    font-weight: 500;
}

.content {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card {
    width: 1220px;
    max-width: 90%;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 20px;
    background-color: #F8F8F8;
}

.card:nth-child(even) {
    background-color: transparent;
}

.card__title {
    font-size: 30px;
    margin-bottom: 40px;
    font-weight: 500;
}

.card__table {
    width: 100%;
    border-collapse: collapse;
}

.card__table__row {
    border-bottom: 1px solid #E6E9ED;
}

.card__table__row:hover:not(.card__table__row--head) {
    background-color: #EBEEF2;
    cursor: pointer;
}

.card__table__row:last-of-type {
    border-bottom: none;
}

.card__table__th {
    color: #8A8A8A;
    font-weight: normal;
}

.card__table__td {
    color: #404040;
}

.card__table__td,
.card__table__th {
    padding: 18px 24px;
    font-size: 16px;
}

.card__table__td--company,
.card__table__th--company {
    text-align: left;
}

.card__table__td--city,
.card__table__th--city {
    text-align: right;
}

.visit-card-link {
    text-decoration: none;
    color: #404040;
}

.arrow-right {
    font-size: 30px;
    font-weight: 600;
    color: #BCBCBC;
    position: relative;
    font-family: 'Open sans', sans-serif;
    top: 2px;
    left: 2px;
    line-height: 0;
}

@media screen and (max-width: 768px) {
    .header {
        height: 160px;
    }

    .header__title {
        font-size: 32px;
    }

    .card__title {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .card {
        width: 1220px;
        max-width: 100%;
        padding: 15px;
        border-radius: 0;
    }

    .card__table__td,
    .card__table__th {
        padding: 6px 9px;
        font-size: 13px;
    }

    .arrow-right {
        font-size: 24px;
        top: 2px;
        left: 2px;
        line-height: 0;
    }
}
