h2 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

h1 {
    letter-spacing: -0.02em;
    line-height: 40px;
    font-size: 40px;
    font-family: Georgia, Times, serif;
    font-weight: 400;
    color: black;
}

@media screen and (max-width: 649px) {
    h1 {
        line-height: 30px;
        font-size: 30px;
    }
}

@media screen and (min-width: 650px) {
    h1 {
        line-height: 40px;
        font-size: 40px;
    }
}

section {
    flex: 1;
}

.h-container {
    background-color: yellowgreen;
    display: flex;
    flex-direction: column;
    /* Выстраиваем элементы вертикально */
    justify-content: space-between;
    /* Заголовок сверху, фон снизу */
    align-items: center;
    padding-top: 20px;
}

.h-background-container {
    width: 100%;
    background-image: url('pics/header-line.png');
    background-size: 100% 190px;
    background-position: bottom;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.h-text-box {
    width: 100%;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;

}

.h-text {
    /* font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px; */

    letter-spacing: -0.02em;
    line-height: 30px;
    font-size: 17px;
    /*font-family: Georgia, Times, serif;*/
    font-weight: 400;
}

.h-img {
    margin-right: 20px;
    align-self: flex-end;
}

@media (max-width: 699px) {
    .h-img {
        display: none;
    }
}

@media (min-width: 700px) {
    .h-img {
        display: block;
    }
}

.countries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 100px;
}

.column {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (max-width: 599px) {

    .column {
        width: 100%;
    }
}

@media (min-width: 600px) {

    .column {
        width: 40%;
    }
}

.country {
    display: flex;
    align-items: center;
    width: 100%;
    text-decoration: none;
}

.flag {
    display: flex;
    font-size: 24px;
    margin-right: 20px;
}

.info {
    display: flex;
    flex-direction: row;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgb(242, 242, 242);
    padding-bottom: 10px;
    padding-top: 10px;
}

.info .text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 90%;
}

.info .text h3 {
    font-size: 20px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: #242424;
    margin: 0;
}

.info .count {
    display: flex;
    flex-direction: row;
    color: #6B6B6B;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;

    padding-top: 4px;
}

.arrow img {
    width: 24px;
    height: 24px;
    transition: all 0.3s;
}

.country:hover h3 {
    color: #2897ff;
}

.country:hover .arrow img {
    content: url("https://navigay.me/pics/icons/chevron_right_light_blue.png");
}

.country:visited h3 {
    color: #242424;
}

.country:visited:hover h3 {
    color: #2897ff;
}