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

.prehome {
    margin: 0px;
    background-color: #FFFFFF;
}
.prehome__brand {
    display: block;
    width: 237px;
    height: 135px;
    margin: 16px auto 24px auto;
}
.prehome__logo {
    width: 100%;
    height: 100%;
}
.countries {
    margin: 0px 15px 20px 15px;
    padding: 13px 0px 10px 0px;
    background-color: #EEEEEE;
}
.countries__title {
    width: 154px;
    margin: 0px auto;
    padding-bottom: 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: #0052a0;
}
.countries__items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0px 3.5px 0px 3.5px;
}
.country {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45%;
    height: 206px;
    margin: 0px 1.5% 10px 1.5%;
    padding: 10px 13.5px 10px 13.5px;
    background-color: #FFFFFF;
    text-decoration: none;
    transition: .2s ease;
}
.country:hover {
    box-shadow: 0px 0px 25px rgba(0, 0, 0, .25);
}
.country--multilang:hover {
    box-shadow: none;
}
.country__flag {
    width: 107px;
    height: 91px;
    margin-bottom: 10px;
}
.country__options {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100% - (91px + 10px));
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.country__option:nth-child(2) {
    margin-top: 10px;
}
.country__link {
    text-decoration: none;
}
.country__text {
    margin: 0px;
    font-family: 'Roboto', sans-serif;
    font-size: 16.5px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    color: #2e70af;
    transition: .1s;
}
.country__option--hidden .country__text {
    opacity: .2;
}
.country__text--bold {
    font-family: 'Roboto-Medium', sans-serif;
    font-weight: 600;
}

@media (min-width: 390px) {
    .country {
        width: 37%;
        margin: 0px 3% 10px 3%;
    }
}

@media (min-width: 468px) {
    .country {
        width: 134px;
        margin: 0px 3.5px 10px 3.5px;
    }
}

@media (min-width: 626px) {
    .countries {
        margin: 0px 45px 27px 45px;
        padding: 26px 0px 10px 0px;
    }
    .countries__title {
        width: auto;
        padding-bottom: 24px;
        font-size: 24px;
    }
    .countries__items {
        padding: 0px 13px 0px 13px;
    }
    .country {
        width: 137px;
        height: 222px;
        margin: 0px 13px 26px 13px;
        padding: 15px;
    }
    .country__flag {
        margin-bottom: 16px;
    }
}

@media (min-width: 1024px) {
    .prehome__brand {
        width: 197px;
        height: 112px;
        margin: 24px auto 56px auto;
    }
    .countries {
        margin: 0px 45px 56px 45px;
        padding: 25px 0px 13px 0px;
    }
    .countries__title {
        padding-bottom: 29px;
    }
    .countries__items {
        padding: 0px 17px 0px 17px;
    }
    .country {
        flex-direction: row;
        align-items: center;
        width: 260px;
        height: 121px;
        margin: 0px 17px 16px 17px;
    }
    .country__flag {
        margin: 0px 9px 0px 0px;
    }
    .country__options {
        align-items: flex-start;
        height: auto;
    }
    .country__text {
        text-align: left;
    }
}

@media (min-width: 1340px) {
    .countries {
        max-width: 1250px;
        margin: 0px auto 56px auto;
    }
}
