
/*ПОЧЕМУ ГЕРМАНИЯ*/
.advantages-container {
    display: flex;
    flex-direction: column;
    gap: 4em;
    align-items: center;
}
.advantages-container h2 {
    text-align: center;
}
.advantages {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: start;
    gap: 2em;
}
.advantages-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    gap: 10px;
}

.advantages-item span {
    padding: 5px;
    font-size: clamp(16px, 2vw, 18px);
    display: block;
}
.icons-advantages {
    height: clamp(80px, 7vw, 110px);
}
@media (max-width: 768px) {
    .advantages {
        display: flex;
        flex-direction: column;
        gap: 0.7em;
    }
    .advantages-item {
        display: flex;
        flex-direction: row;
    }
    .advantages-container {
        gap: 2em;
    }
    .advantages-item span {
       text-align: left;
    }
    .icons-advantages {
        width: 40px;
        height: 40px;
    }
}
/*ПОЧЕМУ ГЕРМАНИЯ*/

/*Блок с преимуществами стран*/

.country-block h2{
    padding: 10px;
}
.ul-countries-block {
    list-style: none;
    padding: 10px;
}

.ul-countries-block li {
    position: relative;
    padding-left: 28px;
    margin: 12px 0;
    font-size: clamp(16px, 2vw, 20px);

}
.ul-countries-block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url("/static/img/icons/check-mark-white.svg") no-repeat center;
    background-size: contain;
}
@media (max-width: 768px) {
    .countries-block {
        display: flex;
    }
}
/*Блок с преимуществами стран*/
/*СТРАНЫ*/
.horizontal-center-count {
    display: flex;
    flex-direction: column;
}
.countries-block-1 {
    display: flex;
    width: 100%;
    gap: 3.5em;
}
.countries-block-2 {
    display: flex;
    flex-direction: column;
    gap: 1em;
    text-align: center;
}
.white-block h3 {
    font-weight: lighter;
    font-size: clamp(16px, 2vw, 18px);

}
.tarifs-countries-container {
    text-align: center;
    padding-top: 1em;
    padding-bottom: 1em;
}
.countries-items-tarifs a {
    text-decoration: none;
}
.tarifs-countries-container span {
    font-size: clamp(16px, 2vw, 22px);
}
.countries-items-tarifs {
    width: 100%;
}
.icons-countries {
    width: 30%;
    border-radius: 4px;
}
.icons-countries-tarifs {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #000;
}
@media (max-width: 768px) {
    .countries-block-1 {
        display: flex;
        width: 100%;
        gap: 2em;
    }
}
/*СТРАНЫ*/
