@import url(./fonts.css);

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

ul{
    list-style: none;
}

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

body{
    font-family: "Roboto";
}

.container{
    max-width: 1140px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}
.nav{
    padding: 25px 0;
    position: relative;
}
.nav__content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.menu{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    font-family: "Play";
    font-size: 12px;
}
.menu__item{
    position: relative;
    padding: 12px 0;
}
.dropdown{
    position: absolute;
    top: 100%;
    border: 1px solid #E5E5E5;
    min-width: 160px;
    border-radius: 2px;
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
    background: #fff;
}

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

.menu__icon{
    transition: 0.5s;
}

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

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

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

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


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

.search *{ 
    /* font-family: "Roboto-regular"; */
    font-size: 14px;
    border: none;
    outline: none;
}

.search__input{
    font-family: "Roboto";
    border: #41A28E 1px solid;
    padding: 6px 12px;
    font-weight: 400;
}

.search__input::placeholder{
    color: #4B4848;
}

.search__btn{
    color: #fff;
    background-color: #41A28E;
    padding: 7px;
}

.nav__burger{
    outline: none;
    border: none;
    background: #41A28E;
    color: #fff;
    padding: 12px;
    font-size: 18px;
    display: none;
}
.header{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

}

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

.header__desc{
    font-size: 22px;
    margin-bottom: 50px;
    text-shadow: 6px 6px 5px rgba(0, 0, 0, 0.38);
    box-shadow: #41A28E;
}


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

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


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

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

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

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

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

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

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

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

.info__desc{
    color: #666;
}

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

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

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

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

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

.custom{
    padding: 50px 0;
}

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

.custom__wrapper{
    position: relative;
    height: 340px;
    overflow: hidden;
}

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

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

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

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

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

.custom__title{
    font-size: 22px;
    font-weight: 400;
    margin-top: 43px;
}

.custom__desc{
    font-size: 18px;
    margin-top: 6px;
    font-feature-settings: "lnum";
}

.custom__desc span{
    color: #666;
    text-decoration: line-through;
    margin-right: 15px;
}

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

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

}

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

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

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

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

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

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

.footer__menu i{
    font-size: 21px;
}
.footer__menu_gap{
    gap: 12px;
}
.footer__link{
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 6px;
}

.footer__form{
    display: flex;
    margin-bottom: 20px;
}

.footer__form *{
    border: none;
    outline: none;
    font-family: "Roboto";
    
}

.footer__input{
    font-size: 14px;
    padding: 14px 10px;
    font-size: 14px;
}

.footer__input::placeholder{
    color: #909090;
}

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

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

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

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

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

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

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

.window:target{
    display: flex;
}