/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* General Styles */
body {
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

/* Hamburger nav  */
.container {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  /* position: relative; */
  padding: 1em 0;
}
.site-nav {
  position: absolute;
  top: 100%;
  right: 0%;
  /* width: 400px; */
  background: #464655bb;
  clip-path: circle(0px at top right);
  transition: clip-path ease-in-out 700ms;
  /*   display: none; */
}
.site-nav--open {
  clip-path: circle(250% at top right);
  /*   display: block; */
}
.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav li {
  border-bottom: 1px solid #575766;
}
.site-nav li:last-child {
  border-bottom: none;
}
.site-nav a {
  color: #ebebd3;
  display: block;
  padding: 2em 4em 2em 1.5em;
  text-transform: uppercase;
  text-decoration: none;
  /* width: 400px; */
}
.site-nav a:hover,
.site-nav a:focus {
  background: #e4b363;
  color: #464655;
}
.site-nav--icon {
  display: inline-block;
  font-size: 1.5em;
  margin-right: 1em;
  width: 1.1em;
  text-align: left;
  color: rgba(255, 255, 255, 0.4);
}
.menu-toggle {
  padding: 1em;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  cursor: pointer;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  background: #ebebd3;
  height: 3px;
  width: 1.75em;
  border-radius: 3px;
  transition: all ease-in-out 500ms;
}
.hamburger::before {
  transform: translateY(-6px);
}
.hamburger::after {
  transform: translateY(3px);
}
.open .hamburger {
  transform: rotate(45deg);
}
.open .hamburger::before {
  opacity: 0;
}
.open .hamburger::after {
  transform: translateY(-3px) rotate(-90deg);
}

/* desktop nav  */

header {
  --text: #f4f4f4;
  --text-inverse: #333;
  --background: transparent;
  --display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0em 3em;
  transition: background 250ms ease-in;
  background: var(--background);
  color: var(--text);
}

.site-logo {
  /* font-weight: 900;
  font-size: 0.8rem; 
  color: var(--text);
  text-decoration: none;
  justify-content: right;*/
  width: 350px;
  display: var(--display);
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav__link {
  --spacing: 1em;
  text-decoration: none;
  color: inherit;
  display: inline-block;
  padding: calc(var(--spacing) / 2) var(--spacing);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  display: var(--display);
  min-width: 140px;
}

.nav__link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: var(--spacing);
  right: var(--spacing);
  height: 2px;
  background: currentColor;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transition: -webkit-transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
}

.nav__link:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.nav__link--btn {
  border: 1.5px solid currentColor;
  border-radius: 2em;
  margin-left: 1em;
  transition: background 250ms ease-in-out;
  letter-spacing: 1px;
  padding: 0.75em 2em;
  display: flex;
}

.nav__link--btn:hover {
  background: var(--text);
  color: var(--text-inverse);
  border-color: var(--text);
}

.nav__link--btn::after {
  display: none;
}

.nav__link--btn--highlight {
  background: limegreen;
  border-color: limegreen;
  color: #333;
}

.nav__link--btn--highlight:hover {
  background: var(--text);
  border-color: var(--text);
}

.nav-scrolled {
  /* --text: #333;
  --text-inverse: #f4f4f4; */
  transition: background 750ms ease-in-out;
  --background: linear-gradient(270deg, #815d40, #e0ad69, #f0d5b2);
  --display: flex;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  transition: all 750ms ease-in;
}

/* header {
  width: 100%;
  background: #96acb5;
  background: linear-gradient(
    270deg,
    #6e6a72,
    #797984,
    #838a96,
    #8c9ba6,
    #96acb5
  );
  padding: 0 15px;
}
header::after {
  content: "";
  display: table;
  clear: both;
} */
/*  
nav {
  float: right;
}
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
nav ul li {
  display: inline-block;
  margin-left: 35px;
  padding-top: 23px;
  position: relative;
}
nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
}
nav a:hover {
  color: #2a2b35;
  text-decoration: none;
}
nav a::before {
  content: "";
  display: block;
  width: 0%;
  height: 5px;
  background: #fff;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 0;
}
nav a:hover::before {
  width: 100%;
}*/
h1 {
  line-height: 100%;
  font-weight: 300;
  font-size: 3.75em;
}
h2 {
  line-height: 125%;
  font-weight: 300;
  font-size: 2.1875em;
}
h3 {
  font-weight: 300;
  font-size: 1.5em;
}
h4 {
  font-weight: 300;
  font-size: 1.25em;
}
h5 {
  font-weight: 300;
  font-size: 0.75em;
}
p {
  font-weight: 300;
  font-size: 1em;
  margin-bottom: 20px;
  /* padding-left: 2em; */
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
section,
footer {
  display: block;
  width: 100%;
  padding: 0em 3em 3em 3em;
}
label {
  display: none;
}

/* 12 Column Grid Layout */
.col-1 {
  width: 8.33%;
}
.col-2 {
  width: 16.66%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.33%;
}
.col-5 {
  width: 41.66%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.33%;
}
.col-8 {
  width: 66.66%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.33%;
}
.col-11 {
  width: 91.66%;
}
.col-12 {
  width: 100%;
}
[class*="col-"] {
  float: left;
  padding: 15px;
}
.row {
  /* width: 1170px; */
  margin: 0 auto;
  padding-left: 2em;
}
.row::after {
  content: "";
  clear: both;
  display: block;
}
/* Section-1 Styles */
.section-1 {
  padding: 4% 0 21.6em 0;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  background-size: cover;
  background-blend-mode: multiply;
  color: #fff;
  isolation: isolate;
}

.section-1 aside {
  position: relative;
  padding: 14.5em 0 1.5em 0;
}
.section-1 aside h5 {
  position: absolute;
  bottom: -1.5em;
  left: -27em;
  transform: rotate(270deg);
  text-transform: uppercase;
}
.section-1 aside h5 span {
  font-weight: 300;
  letter-spacing: 0.1em;
}
.section-1 aside h5 a {
  color: #fff;
}
.section-1 div:last-child {
  position: relative;
}
.section-1 img {
  width: 50vw;
  max-width: 800px;
  min-width: 400px;
}

/* Section-2 Styles */
.section-2 {
  padding: 5% 0 3.5% 0;
}
.section-2 h2 {
  padding-bottom: 0;
  color: #222626;
}
.section-2 .col-6 {
  padding-top: 0;
}
.section-2 .col-6 p {
  padding-top: 4%;
  color: #959595;
}
.section-2 .col-6:last-child {
  padding-top: 7.8%;
}
/* Section-3 Styles */
.section-3 {
  /* max-width: 100vw; */
  width: 100%;
  overflow-x: hidden;
  margin: 0;
}
.section-3 .button3 {
  /* border: 2px solid; */
  border-image: linear-gradient(to right, #ff5f6d, #ffc371);
  border-image-slice: 1;
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  /* color: #fff;
  background-color: #815d40;
  border: none; */
  border-radius: 9em;
  cursor: pointer;
  font: inherit;
  text-transform: uppercase;
}
.section-3 .button4 {
  border: none;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4em;
  background-image: linear-gradient(to right, #ff5f6d, #ffc371);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  text-transform: uppercase;
}
.section-3 .button2 {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  color: #815d40;
  background-color: transparent;
  border: 3px solid #815d40;
  border-radius: 2em;
  cursor: pointer;
}
.section-3 .wrapper {
  width: 100vw;
  height: inherit;
  margin: 0;
  margin-left: -50px;
}
.section-3 .wrapper #gallery {
  transition: all 5s;
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  height: inherit;
  color: #fff;
}
.section-3 .wrapper #gallery .gal-img {
  position: relative;
  padding: 250px 45px 45px 45px;
  background-size: cover;
  width: 25%;
  height: 400px;
}
.section-3 .wrapper #gallery .gal-img a {
  color: #fff;
}
.section-3 .wrapper #gallery .gal-img a p {
  font-weight: 500;
  color: #fff;
}
.section-3 .wrapper #gallery .gal-img span {
  bottom: 50px;
  font-size: 1.5em;
  transform: rotate(90deg);
}
.section-3 .wrapper #gallery .gal-img:hover {
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
}
.section-3 .wrapper #gallery .top-img {
  width: 100%;
  height: 150px;
  padding: 50px 45px 45px 45px;
}
.section-3 .wrapper #gallery .top-img {
  /* background: linear-gradient(to bottom right, #1a2a6c, #b21f1f, #fdbb2d); */
  background: linear-gradient(to right, #815d40, #f0d5b2);
  background-size: cover;
}
.section-3 .wrapper #gallery .cathat-img {
  background: url("/images/gallery/flowercathat.jpg") no-repeat center center,
    #815d40;
  background-size: cover;
  background-blend-mode: overlay;
  isolation: isolate;
}
.section-3 .wrapper #gallery .tote-img {
  background: url("/images/gallery/tote.jpg") no-repeat center center, #815d40;
  background-size: cover;
  background-blend-mode: overlay;
  isolation: isolate;
}
.section-3 .wrapper #gallery .bandana-img {
  background: url("/images/gallery/Daisybandana.jpg") no-repeat center center,
    #815d40;
  background-size: cover;
  background-blend-mode: overlay;
  isolation: isolate;
}
.section-3 .wrapper #gallery .earring-img {
  background: url("/images/gallery/Earring.jpg") no-repeat center center,
    #815d40;
  background-size: cover;
  background-blend-mode: overlay;
  isolation: isolate;
}
.section-3 .wrapper #gallery .sweater-img {
  background: url("/images/gallery/sweater.jpg") no-repeat center center,
    #815d40;
  background-size: cover;
  background-blend-mode: overlay;
  isolation: isolate;
}
.section-3 .wrapper #gallery .shrug-img {
  background: url("/images/gallery/shrug.jpg") no-repeat center center, #815d40;
  background-size: cover;
  background-blend-mode: overlay;
  isolation: isolate;
}
.section-3 .wrapper #gallery .vest-img {
  background: url("/images/gallery/GreenVest.jpg") no-repeat center center,
    #815d40;
  background-size: cover;
  background-blend-mode: overlay;
  isolation: isolate;
}
.section-3 .wrapper #gallery .lama-img {
  background: url("/images/gallery/lama.jpg") no-repeat center center, #815d40;
  background-size: cover;
  background-blend-mode: overlay;
  isolation: isolate;
}
.section-3 .wrapper #gallery .bunny-img {
  background: url("/images/gallery/bunny.jpg") no-repeat center center, #815d40;
  background-size: cover;
  background-blend-mode: overlay;
  isolation: isolate;
}
.section-3 .wrapper #gallery .dino-img {
  background: url("/images/gallery/dinocathat.png") no-repeat center center, #815d40;
  background-size: cover;
  background-blend-mode: overlay;
  isolation: isolate;
}

/* Section-4 Styles */
.section-4 {
  padding: 5% 0 7.7% 0;
}
.section-4 aside {
  position: relative;
}
.section-4 aside h5 {
  position: absolute;
  bottom: -0.5em;
  left: -24em;
  transform: rotate(270deg);
  text-transform: uppercase;
}
.section-4 aside h5 a {
  color: #16202b;
}
.section-4 aside h2 {
  color: #16202b;
}
.section-4 h4 {
  padding: 6% 0 6% 0;
  color: #16202b;
}
.section-4 p {
  color: #16202b;
}
/* Section-5 Styles */
.section-5 {
  padding: 10% 0 6.1% 0;
  background: #815d40;
  /* background: #815d40 url("/images/hero1-4girls.jpg") no-repeat center center; */
  background-size: cover;
  color: #fff;
}
.section-5 h2 {
  font-size: 3.75em;
}
.section-5 .col-2 {
  padding-top: 0;
  font-weight: 700;
  color: #fff;
}
/* Section-6 Styles */
.section-6 {
  padding: 5% 0 8.95% 0;
  color: #fff;
  background: linear-gradient(to bottom right, #a73737, #7a2828);
}
.section-6 aside {
  position: relative;
}
.section-6 aside h5 {
  position: absolute;
  bottom: -0.5em;
  left: -24em;
  transform: rotate(270deg);
  text-transform: uppercase;
}
.section-6 aside h5 a {
  color: #fff;
}
.section-6 .col-4 {
  padding-right: 1.5em;
}
.section-6 .col-4 h4 {
  padding: 6% 0 6% 0;
}
/* Section-7 Styles */
.section-7 {
  padding: 4.5% 0 6.75% 0;
  background: #f6f7fa;
}
.section-7 .row {
  position: relative;
}
.section-7 .row h5 {
  position: absolute;
  top: 6em;
  left: -24em;
  transform: rotate(270deg);
  text-transform: uppercase;
}
.section-7 .row h5 a {
  color: #555;
}
.section-7 .col-6 {
  padding: 2.3em 7em 3.5em 3.35em;
}
.section-7 .col-6 button {
  text-transform: uppercase;
  color: #fff;
  border: none;
  outline: none;
  box-shadow: none;
  transition: all 0.3s;
}
.section-7 .col-6 .status {
  padding: 0.3em 1.2em;
  font-weight: 800;
  font-size: 0.6875em;
  letter-spacing: 0.1em;
  background: #212d97;
  border-radius: 5px;
}
.section-7 .col-6 .content {
  padding: 1.5em 0;
}
.section-7 .col-6 .content h3 {
  color: #2e3b4e;
}
.section-7 .col-6 .content p {
  padding-top: 1.5em;
  color: #555;
}
.section-7 .col-6 .buy-now {
  padding: 1.35em 2.15em;
  margin-bottom: 1.5em;
  font-weight: 700;
  font-size: 0.75em;
  letter-spacing: 0.2em;
  background: linear-gradient(to bottom right, #1a2a6c, #b21f1f, #fdbb2d);

  border-radius: 2em;
}
.section-7 .col-6 .buy-now:hover {
  background: linear-gradient(to top left, #1a2a6c, #b21f1f, #fdbb2d);
  cursor: pointer;
  transition: 0.9s;
}
/* .section-7 .col-6 img {
  width: 1.5625em;
  height: 1.5625em;
  /* margin-right: 0.5em; *
  text-align: center;
} */
.section-7 .col-6:last-of-type .buy-now {
  padding: 1.35em 1.75em;
}
.section-7 .col-6:hover {
  background: #fff;
  box-shadow: 0 0 50px #d6d6d6;
}
.section-7 .col-6:hover .status {
  background: linear-gradient(to bottom right, #36d1dc, #5b86e5);
}
.section-7 .col-6:hover h3 {
  font-weight: 400;
}

/* Footer */
footer {
  padding: 6.35% 0 0 0;
  color: #fff;
  background: #4b6cb7; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to top,
    #222,
    #815d40
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to top,
    #222,
    #815d40
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
footer h4 {
  padding-bottom: 1em;
}
footer .col-6:last-child {
  padding-left: 9%;
}
footer .col-6:last-child form {
  position: relative;
  /* width: 29.38em; */
  height: 3.625em;
  margin-top: 0.4em;
  z-index: 10;
  overflow: hidden;
  border-radius: 3px;
}
button {
  padding: 1.35em 2.15em;
  background: #e0ad69;
  margin-bottom: 1.5em;
  font-weight: 700;
  font-size: 0.75em;
  letter-spacing: 0.2em;
  color: #fff;
  outline: none;
  transition: all 0.3s;
  border: none;
  box-shadow: none;
  border-radius: 2em;
  text-transform: uppercase;
}
button:hover {
  background: linear-gradient(to top left, #1a2a6c, #b21f1f, #fdbb2d);
  cursor: pointer;
  transition: 2s;
}
.button-outline {
  background-color: transparent;
  border: 2px solid #e0ad69;
  color: #fff;
}
.button-solid {
  background: #e0ad69;
  color: #fff;
}

footer .col-6:last-child form input {
  position: relative;
  height: 100%;
  vertical-align: middle;
  border: none;
  outline: none;
  z-index: 10;
}
footer .col-6:last-child form input[type="email"] {
  width: 19.25em;
  padding-left: 1.5em;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 1.3em;
  color: #192431;
}
footer .col-6:last-child form input[type="submit"] {
  width: 5.28em;
  margin-left: -5px;
  opacity: 0;
  transition: all 0.3s;
}

footer .col-6:last-child p {
  padding-top: 1.5em;
  line-height: 125%;
  font-size: 0.75em;
  color: #57697f;
}
footer .col-3 a {
  font-weight: 400;
  font-size: 0.8125em;
  color: #fff;
}
footer .bottom {
  position: relative;
  height: 200px;
  width: 100%;
}
p.copyright {
  position: absolute;
  width: 100%;
  color: #fff;
  /* line-height: 40px; */
  font-size: 0.7em;
  text-align: center;
  bottom: 0;
}
p.copyright a {
  color: #fff;
  text-decoration: none;
}
/* Media Queries */
@media only screen and (min-width: 1800px) {
  body {
    font-size: 18px;
  }
  .row {
    width: 1600px;
  }
  /* .section-3 .wrapper {
    width: 1570px;
  } */
  .section-3 .wrapper .gallery-translate {
    margin-left: -420px;
  }
}
@media only screen and (max-width: 1224px) {
  .col-3 {
    width: 50%;
  }
  /* .row {
    width: 980px;
  } */
  .section-1 {
    padding: 4% 0 5em 0;
  }
  .section-1 aside {
    padding: 4em 0 1em 0;
  }
  .section-1 .logo {
    padding-left: 8.5%;
  }
  .section-2 .col-6:last-child {
    padding-top: 0;
  }
  footer .col-6:last-child {
    padding-left: 0.5%;
  }
}
@media only screen and (max-width: 1024px) {
  .col-6 {
    width: 100%;
  }
  .section-1 .logo {
    padding-left: 11%;
  }
  .section-3 .wrapper #gallery .gal-img {
    position: relative;
    padding: 250px 15px 0 15px;
    background-size: cover;
    width: 50%;
    height: 400px;
  }
  .section-3 .wrapper #gallery .top-img {
    position: relative;
    padding: 20px 15px 0 15px;
    background-size: cover;
    width: 100%;
    height: 150px;
  }

  footer {
    text-align: center;
  }
  footer .col-6:first-child {
    padding: 0 10%;
  }
  footer .col-6:last-child {
    padding-left: 1.5%;
  }
  footer .col-6:last-child form {
    margin: 0 auto;
  }
  footer .col-2 {
    width: 33.33%;
  }
  footer .col-2 h4,
  footer .col-2 ul li {
    padding-left: 33.33%;
    text-align: left;
  }
}
@media only screen and (max-width: 768px) {
  [class*="col-"] {
    width: 100%;
  }
  /* .row {
    width: 460px;
  } */
  .section-1 {
    padding: 4% 0 3em 0;
  }
  .section-3 .wrapper #gallery .gal-img {
    position: relative;
    padding: 250px 15px 0 15px;
    background-size: cover;
    width: 100%;
    height: 400px;
  }
  .section-3 .wrapper #gallery .top-img {
    position: relative;
    padding: 20px 15px 0 15px;
    background-size: cover;
    width: 100%;
    height: 150px;
  }
  .section-4 h4,
  .section-6 .col-4 h4 {
    padding: 0 0 3% 0;
  }
  .section-5 {
    padding: 5% 0;
  }
  .section-7 .col-6 {
    padding: 2em;
  }
  footer .col-6:last-child {
    padding: 0;
  }
  footer .col-6:last-child h4 {
    padding-top: 3%;
  }
  footer .col-2 h4,
  footer .col-2 ul li {
    padding-left: 15%;
  }
}
@media only screen and (max-width: 480px) {
  /* .row {
    width: 320px;
  } */
  .section-1 {
    padding: 4% 0 1em 0;
  }
  .section-1 aside {
    padding: 0;
  }
  .section-1 aside h1 {
    line-height: 110%;
  }
  .section-1 .logo {
    padding-left: 5px;
  }
  .section-7 .col-6 {
    padding: 2em;
  }
  footer .col-6:last-child form {
    width: 20em;
  }
  footer .col-6:last-child form input[type="email"] {
    width: 12em;
  }
}

/* nav  */
@media (min-width: 1024px) {
  .site-nav {
    display: none;
  }
  .menu-toggle {
    display: none;
  }
}
@media (max-width: 1024px) {
  .nav__list {
    display: none;
  }
  /* .section-1 img {
    width: 400px;
  } */
}
