@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;700&family=Heebo:wght@200;400;600;800&family=Roboto:wght@100;300;400;500&display=swap");
@import url("https://use.typekit.net/pyg6yjo.css");
/*partitions*/
/*Colors*/
.backg_dark {
  background-color: #151515;
  color: #f9faf9;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
}

a {
  color: #151515;
  text-decoration: none;
  text-transform: capitalize;
}

ul li {
  list-style: none;
}

h2, h1 {
  font-family: ff-cocon-pro, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.3rem;
  margin-bottom: 1rem;
}

p {
  max-width: 900px;
}

/*
Cabin
font-family: 'Cabin', sans-serif;
Regular 400
Medium 500
Bold 700

Cocon Regular
font-family: ff-cocon-pro, sans-serif;
font-weight: 400;
font-style: normal;

Cocon Bold
font-family: ff-cocon-pro,sans-serif;
font-weight: 700;
font-style: normal;

Cocon Conden 
font-family: ff-cocon-pro-condensed,sans-serif;
font-weight: 400;
font-style: normal;

Heboo
font-family: 'Heebo', sans-serif;
Extra-light 200
Regular 400
Semi-bold 600
Extra-bold 800

Roboto
font-family: 'Roboto', sans-serif;
Thin 100
Light 300
Regular 400
Medium 500
*/
/*general*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  margin: 0 auto;
}

.mobile-hidden {
  display: none;
}

/*flex*/
.flex {
  display: flex;
}

.flex_col {
  flex-wrap: nowrap;
  justify-content: space-between;
}

.flex_side div {
  width: 100%;
}
.flex_side .flex_half {
  width: 50%;
}

.flex_wrap {
  flex-wrap: wrap;
}

hr {
  margin: 2rem 0;
}

@media only screen and (min-width: 600px) {
  .mobile-hidden {
    display: block;
  }
}
header {
  background-color: #f9faf9;
}
header nav {
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
header nav ul {
  width: 50%;
  justify-content: space-between;
}
header nav ul li {
  margin: 0 0.9rem;
}
header nav ul a {
  font-size: 0.9rem;
  text-transform: capitalize;
}
header nav ul a:hover {
  text-decoration: underline;
}
header nav ul .btn {
  background-color: transparent;
  text-transform: uppercase;
}
header nav ul .btn:hover {
  background-color: #151515;
  border-color: transparent;
}

nav {
  overflow: hidden;
}

@media only screen and (min-width: 600px) {
  nav {
    overflow: visible;
  }
}
.hero .flex_side div {
  height: auto;
}
.hero div .box {
  padding: 3rem;
}

h1 span {
  color: #8cff64;
  display: block;
  font-size: 1rem;
  font-family: "Heebo", sans-serif;
  font-weight: 100;
}

.hero h3 {
  color: #8cff64;
  margin-top: 2rem;
  font-weight: 400;
}
.hero ul {
  color: #8cff64;
  margin-bottom: 2rem;
  max-width: 600px;
  font-weight: 400;
}

@media only screen and (min-width: 600px) {
  .background_hero {
    background-image: url(../../images/image%203.jpg);
    background-size: cover;
  }

  .mobile-hidden {
    display: block;
  }
}
.btn, .btn_transp, .btn_white {
  padding: 0.5rem 1rem;
  margin: 0 1rem 0 0;
  height: auto;
  color: #151515;
  border: solid #151515 0.2rem;
  border-radius: 4px;
}
.btn:hover, .btn_transp:hover, .btn_white:hover {
  background-color: #8cff64;
  border-color: #8cff64;
  color: #f9faf9;
}

.btn_transp, .btn_white {
  border-color: #f9faf9;
  color: #f9faf9;
}
.btn_transp:hover, .btn_white:hover {
  border-color: #8cff64;
  color: #151515;
  background-color: #8cff64;
}

.btn_line, .btn_line_dark {
  border: none;
  text-decoration: underline;
}
.btn_line:hover, .btn_line_dark:hover {
  text-decoration: none;
}

.btn_line_dark {
  border-color: #151515;
}
.btn_line_dark:hover {
  border-color: #8cff64;
  color: #8cff64;
  background-color: transparent;
}

.apparel .filters {
  width: 23%;
  padding: 1rem;
  border-right: 0.1rem #151515 solid;
  margin-right: 2rem;
}
.apparel .list {
  font-size: 1.4rem;
  font-weight: 500;
}
.apparel .list ul a {
  font-size: 1rem;
  font-weight: 100;
}
.apparel .list a:hover {
  color: #8cff64;
  font-weight: 400;
}

.apparel .list ul {
  margin: 1rem 0;
}
.apparel .list ul li {
  margin: 0.2rem 0;
}

.apparel .items {
  width: 77%;
}
.apparel .women {
  padding-top: 2rem;
}
.apparel .men {
  padding-bottom: 3rem;
}
.apparel h2 {
  margin: 0 0 2rem 0;
}
.apparel .women {
  padding-top: 2rem;
}

.apparel .listing .flex li {
  padding-top: 1rem;
  margin: 2rem;
}
.apparel .listing .flex li img {
  height: 60%;
  overflow: hidden;
}
.apparel .listing .flex li h4 {
  margin: 1rem 0;
}
.apparel .listing .flex li p {
  font-size: 2rem;
  display: inline-block;
  width: 50%;
  padding-top: 0.2rem;
}

@media only screen and (min-width: 600px) {
  .apparel .listing .flex li img {
    height: 70%;
    overflow: visible;
  }
}
footer {
  background-color: #d8d8d8;
}
footer div {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
footer ul {
  width: 45%;
  margin: 0 auto;
  margin-top: 0;
  padding-bottom: 2rem;
  justify-content: space-around;
}
footer a:hover {
  text-decoration: underline;
}