* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    border: none;
    outline: none;
    font-weight: 400;
}  
.container {
    max-width: 1140px;
    width: 100%;
    margin: auto;
    padding: 0 15px;
}
.header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 15px;
}
.header__nav-list {
    display: flex;
    gap: 40px;
}
.header__nav-list a {
    font-size: 12px;
    color: black;
}
.header__nav-search {
    display: flex;
    gap: 4px;
}
.header__nav-search input {
    border: 1px #41A28E solid;
    padding-left: 12px;
    color: #4B4848;
}
.header__nav-search img {
    cursor: pointer;
}
.header__content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 750px;
    color: white;
    background: url('../images/header-bg.jpg') center / cover;
}
.header__content h1 {
    font-size: 50px;
    background: rgba(0, 0, 0, 0.7);
    padding: 17px 61px;
}
.header__content p {
    margin: 30px 0 50px;
    font-size: 22px;
}
.btn {
    padding: 22px 35px;
    background: white;
    color: black;
    font-size: 12px;
    transition: .3s;
}
.btn:hover {
    color: white;
    background: #41A28E;
} 
.dropdown {
    position: relative;
}
.dropdown__list {
    position: absolute;
    background: white;
    top: 28px;
    width: 160px;
    height: 0;
    overflow: hidden;
    border: 1px #e5e5e500 solid;
    border-radius: 2px;
    transition: .5s;
    opacity: 0;
}
.dropdown__list a {
    display: block;
    padding: 12px 30px;
    border-bottom: 1px solid #e5e5e5;
}
.dropdown__list li:last-of-type a {
    border-bottom: 0px;
}
.dropdown:hover .dropdown__list {
    height: 120px;
    border: 1px solid #e5e5e5;
    opacity: 1;
}
.comm__cards {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}
.comm__cards-item {
    position: relative;
    display: flex;
    overflow: hidden;
}
.comm__cards-item p {
    position: absolute;
    bottom: 0;
    font-size: 25px;
    width: 100%;
    text-align: center;
    color: white;
    background: rgba(75, 72, 72, 0.7);
    transform: translateY(100%);
    transition: 400ms;
}
.comm__cards-item:hover p {
    transform: translateY(0);
}
.main__text {
    text-align: center;
    margin-bottom: 72px;
}
.main__text h2 {
    margin-bottom: 18px;
    font-size: 50px;
}
.main__text p {
    color: #666666;
    max-width: 496px;
    margin: auto;
}
.coll {
    height: 404px;
    background: url(../images/collBg.jpg) bottom / cover fixed;
    margin-bottom: 50px;
}
.coll .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    color: white;
}
.coll h2 {
    font-size: 20px;
}
.coll p {
    font-size: 50px;
    margin-bottom: 22px;
}
.goods {
    margin-bottom: 50px;
}
.goods__content {
    display: flex;
    gap: 30px;
}
.goods__content-item-info{
    position: relative;
    margin-bottom: 43px;
    overflow: hidden;
    display: flex;
}
.goods__content-item-info > div{
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    padding: 16px 19px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    bottom: 0;
    transform: translateY(110%);
    transition: .4s;
}
.goods__content-item-info:hover > div {
    transform: translateY(0);
}
.goods__content-item-info a {
    color: white;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
}
.goods__content-item-info div div {
    display: flex;
    gap: 15px;
}
.goods__content-item-info div div img {
    cursor: pointer;
}
.goods__content-item h3 {
    font-size: 22px;
}
.goods__content-item p {
    font-size: 18px;
}
.goods__content-item-info span {
    padding: 10px 18px;
    color: white;
    background: #4B4848;
    font-size: 12px;
    font-family: system-ui;
    position: absolute;
    opacity: 0;
    transition: .4s;
}
.goods__content-item-info:hover span {
    opacity: 1;
}
.old-price {
    text-decoration: line-through;
    color: #666;
    text-decoration-color: #909090;
}
.goods__content-item p {
    display: inline;
    margin-right: 10px;
}
.footer {
    background: #000;
    padding: 36px 0;
}
.footer a {
    color: white;
    font-size: 14px;
    font-family: system-ui;
    margin-bottom: 25px;
    display: block;
}
.footer h2 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
}
.footer .container {
    display: flex;
    justify-content: space-between;
}
.footer__list, .footer__form {
    width: 255px;
}
.footer__list:last-of-type a {
    margin-bottom: 14.7px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.footer__form-input {
    display: flex;
}
.footer__form-input input {
    padding: 14px 10px;
    color: #909090;
    font-size: 14px;
}
.footer p {
    font-size: 14px;
    color: white;
    margin: 12px 0;
    font-family: system-ui;
}
.footer button {
    padding: 12px 10px;
    color: white;
    background: #41A28E;
    font-size: 16px;
    font-family: system-ui;
    cursor: pointer;
}