@import url(./fonts.css);

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

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: #41A28E;
    border-radius: 5px;
}

.window {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.window:target {
    display: flex;
}

.window__form {
    max-width: 400px;
    max-height: 400px;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
}

body {
    font-family: "Roboto";
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1140px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.box {
    background: blue;
    width: 80%;
    margin: 0 auto;
    height: 200px;
    position: relative;
}

.item {
    width: 100px;
    height: 100px;
    background: red;
    /* left: 50px; */
    right: 50px;
    position: relative;
    top: 250px;
    /* bottom: 50px; */
    position: absolute;
    /* position: fixed; */
}

.nav {
    padding: 25px 0;
    position: relative;
}

.nav__burger {
    background: #41A28E;
    color: #fff;
    padding: 15px;
    font-size: 16px;
    border: none;
    display: none;
}

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    gap: 40px;
    font-family: "Playfair";
    font-size: 12px;
    align-items: center;
}

.dropdown {
    position: absolute;
    border: 1px solid #E5E5E5;
    min-width: 160px;
    left: 0;
    top: 100%;
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
    background: #fff;
}

.menu__icon {
    transition: 0.5s;
}

.menu__dropdown:hover .menu__icon {
    transform: rotate(180deg);
}

.menu__dropdown:hover .dropdown {
    opacity: 1;
    z-index: 1;
}

.dropdown__item {
    padding: 12px 30px;
    display: block;
    position: relative;
}

.menu__dropdown {
    padding: 12px 0;
    position: relative;
}

.dropdown__item::after {
    content: '';
    background: #E5E5E5;
    height: 1px;
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
}

li:last-of-type .dropdown__item::after {
    display: none;
}

.form__text {
    border: 1px solid #41A28E;
    outline: none;
    padding: 6px 12px;
    max-width: 180px;
    width: 100%;
    font-family: "Roboto";
}

.from__btn {
    border: none;
    outline: none;
    background: #41A28E;
    color: #fff;
    padding: 7px;
}

.form {
    display: flex;
    gap: 4px;
}

.header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header__content {
    flex-grow: 1;
    /* background-image: url(../img/header-bg.jpg);
    background-size: cover;
    background-position: center; */
    background: url(../img/header-bg.jpg) center / cover;
    color: #fff;
    font-family: "Playfair";
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header__title {
    font-size: 50px;
    font-weight: 400;
    background: rgba(0, 0, 0, 0.70);
    padding: 17px 61px;
    margin-bottom: 30px;
}

.header__desc {
    font-size: 22px;
    margin-bottom: 50px;
    /* text-shadow: -5px -10px 5px #00f;
    box-shadow: 10px 20px 20px 10px #00f; */
    text-shadow: 6px 6px 5px rgba(0, 0, 0, 0.38);
}

.header__link {
    font-size: 12px;
    background: #fff;
    color: #000;
    padding: 22px 35px;
    transition: 0.5s;
}

.header__link:hover {
    background: #41A28E;
    color: #fff;
}

.ecom {
    padding-top: 48px;
    padding-bottom: 72px;
}

.ecom__card {
    border: 1px solid #41A28E;
    max-width: 255px;
    width: 100%;
    height: 170px;
    position: relative;
    overflow: hidden;
}

.ecom__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ecom__title {
    position: absolute;
    left: 0;
    bottom: -50%;
    font-family: "Playfair";
    font-size: 25px;
    font-weight: 400;
    color: #fff;
    background: rgba(75, 72, 72, 0.7);
    width: 100%;
    text-align: center;
    transition: 0.5s;
}

.ecom__card:hover .ecom__title {
    bottom: 0;
}

.ecom__content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 52px;
}

.info__title {
    font-family: "Playfair";
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 18px;
}

.info__desc {
    color: #666;
}

.info {
    max-width: 496px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.coll {
    background: url(../img/jacket.jpg) center / cover;
    padding-top: 120px;
    padding-bottom: 112px;
    color: #fff;
    font-family: "Playfair";
    background-attachment: fixed;
}

.coll__desc {
    font-size: 20px;
    margin-bottom: 3px;
}

.coll__title {
    font-weight: 400;
    font-size: 50px;
    margin-bottom: 22px;
}

.coll__link {
    background: #fff;
    color: #000;
    padding: 18px 42px;
    font-size: 12px;
    display: inline-block;
    transition: 0.5s;
}

.coll__link:hover {
    background: #41A28E;
    color: #fff;
}

.custom {
    padding-top: 50px;
}

.custom__content {
    margin-top: 69px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.custom__card {
    max-width: 255px;
    width: 100%;
    font-family: "Playfair";
}

.custom__wrapper {
    height: 340px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 43px;
    position: relative;
}

.custom__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom__service {
    position: absolute;
    left: 0;
    bottom: -50%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    width: 100%;
    font-size: 12px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 23px;
    transition: 0.5s;
}

.custom__card:hover .custom__service {
    bottom: 0;
}

.custom__add {
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom__sale {
    position: absolute;
    top: 0;
    left: 0;
    background: #4B484B;
    padding: 10px 18px;
    color: #fff;
    font-family: "Roboto";
    font-size: 12px;
}

.custom__title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 6px;
}

.custom__price {
    font-size: 18px;
}

.custom__price span {
    padding-right: 15px;
    text-decoration: line-through;
    color: #666666;
}

.footer {
    background: #000;
    color: #fff;
    margin-top: 50px;
    padding-top: 36px;
}

.footer__copyright {
    color: #666;
    font-size: 18px;
    padding: 40px;
    text-align: center;
    background: #121212;
    margin-top: 36px;
}

.footer__content {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.footer__card {
    max-width: 255px;
    width: 100%;
}

.footer__title {
    font-size: 24px;
    font-family: "Playfair";
    font-weight: 400;
    margin-bottom: 40px;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
    font-size: 14px;
}

.footer__menu_gap {
    gap: 13px;
    padding-top: 6px;
}

.footer__menu_gap i {
    font-size: 20px;
}

.footer__link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__form {
    display: flex;
}

.footer__form * {
    border: none;
    outline: none;
    font-family: "Roboto";
    font-size: 14px;
    padding: 14px 10px;
}

.footer__btn {
    background: #41A28E;
    font-size: 16px;
    color: #fff;
    padding: 12px 10px;
}

.footer__desc {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer__service {
    display: flex;
    gap: 25px;
    font-size: 30px;
}

.footer__copyright span {
    text-shadow: 0 0 4px #e52d27;
}