@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

html {
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
}

section {
    padding: 1.5rem 0;
}

img {
    width: 100%;
}
.header {
    position: relative;
}
.lang {margin-top:18px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #010101;
}
.lang .img {
    max-width: 20px;
}


a:visited {
  color: black;
}
.container {
    padding: 0 1.5rem;
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
}

.btn {
    border: none;
    padding: 1rem 2rem;
    border-radius: .5rem;
    transition: .3s ease;
}
.btn:hover {
    transform: scale(1.05);
}

.df {
    display: flex;
}

.aic {
    align-items: center;
}

.ais {
    align-items: stretch;
}

.jcc {
    justify-content: center;
}

.jcsb {
    justify-content: space-between;
}

.fdc {
    flex-direction: column;
}

.logo img {
    max-width: 50%;
    width: 100%;
}

.controls {
    background-image: linear-gradient(0deg, #181818 10%, #2e2e2e 70%);
}

.controls button {
    cursor: pointer;
    transition: .3s ease;
}

.tabs {
    gap: 1rem;
}

.tabs button {
    background: transparent;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    border-top: 2px solid transparent;
}

.tabs button.active {
    border-color: #868686;
    background-image: linear-gradient(0deg, #181818 10%, #545454 70%);
}

#regBtn {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    background-image: linear-gradient(0deg, #00595f 10%, #0e899c 70%);
    ;
}

.slogan p {
    font-size: 2rem;
    font-weight: 600;
    color: #868686;
}

.slogan a {
    color: #0e899c;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #0e899c;
}

.goods .container {
    gap: 1rem;
}

.goods .item {
    padding: 1.5rem;
    border: 1px solid #bbbbbb;
    border-radius: 2rem;
    gap: 2rem;
}

.goods .item img {
    border-radius: 1rem;
}

.goods .item .column {
    max-width: calc(50% - 1rem);
    width: 100%;
    height: auto;
}

.goods .item .column .block {
    gap: 1rem;
}

.goods .item .name {
    font-size: 2rem;
    font-weight: 600;
}

.goods .item .description {
    font-size: 1.2rem;
}

.goods .item .price {
    font-size: 2rem;
    font-weight: 600;
    color: #9c9c9c;
}

.goods .item .add {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    background-image: linear-gradient(0deg, #1a838a 10%, #0e899c 70%);
    border-bottom: 3px solid #00595f;
    padding: 1rem 3rem;
    cursor: pointer;
}
.footer {
    padding: 2rem 0;
    background: #1d1d1d;
    color: #ffffff;
    font-size: 1.2rem;
}
@media (max-width: 500px) {
    html {
        font-size: 8px;
    }
}