/*------------General------------*/
/*------------General------------*/
@import url("https://fonts.googleapis.com/css2?family=Asap:wght@400;500;600&family=Lato:wght@100;300;400&display=swap");
/*
font-family: 'Asap', sans-serif;
font-family: 'Lato', sans-serif;
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  text-decoration: none;
  transition: all 1s; }

* {
  scrollbar-color: #000000 white;
  scrollbar-width: thin; }

*::-webkit-scrollbar {
  width: 0.8rem;
  border-radius: 0.5rem; }

*::-webkit-scrollbar-track {
  background: white;
  width: 0.8rem;
  border-radius: 0.5rem; }

*::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 0.5rem;
  width: 0.8rem;
  border-left: 1px solid white; }

html {
  box-sizing: border-box;
  font-size: 62.5%;
  transition: all 1s;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 6rem; }

body {
  transition: all 1s;
  background-color: #ffffff;
  font-family: 'Asap', sans-serif; }

section {
  padding: 2rem 0rem; }

.title {
  text-align: center;
  font-size: 2.3rem;
  font-family: 'Lato', sans-serif;
  font-weight: 100; }

.cont {
  padding: 30px 0;
  width: 95%;
  max-width: 1190px;
  margin: auto;
  overflow: hidden;
  border: 0px solid red; }

hr {
  width: 100%;
  height: 0.2rem;
  border: none;
  background-color: #a7a7a7;
  margin: 2rem 0rem; }

.btn {
  padding: 1.5rem 2rem;
  border: 1px solid #03A196;
  color: #03A196;
  font-size: 1.6rem;
  font-weight: 100;
  transition: all 1s; }
  .btn:hover {
    color: #ffffff;
    background-color: #03A196;
    transition: all 1s; }

/*.fa-xmark {
    transform: rotate(180deg);
}*/
/*------------General------------*/
/*------------General------------*/
/*------------nav------------*/
/*------------nav------------*/
nav {
  width: 100%;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000; }
  nav .icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    font-size: 1.5rem;
    font-weight: 100;
    box-shadow: 0rem 0.5rem 1rem rgba(0, 0, 0, 0.3); }
    nav .icons #menu {
      display: none;
      font-size: 1.6rem;
      margin-left: 1rem;
      letter-spacing: 0.3rem;
      cursor: pointer; }
    nav .icons .share {
      padding-left: 1rem; }
      nav .icons .share a {
        color: #000000;
        padding: 1.2rem 0.8rem;
        margin: 0rem; }
    nav .icons .shopping-cart {
      align-items: center; }
      nav .icons .shopping-cart a {
        color: #ffffff;
        background-color: #D54D4D;
        padding: 1.2rem 2rem; }
        nav .icons .shopping-cart a span {
          color: #000000;
          margin-left: 0.5rem;
          font-size: 1.5rem;
          text-shadow: 0.1em 0.1em rgba(255, 255, 255, 0.2); }
  nav .navbar {
    padding: 2.5rem 1.5rem; }
    nav .navbar .active {
      color: #03A196;
      font-weight: bold; }
    nav .navbar a {
      font-weight: 100;
      font-size: 1.5rem;
      text-transform: uppercase;
      color: #000000;
      font-family: 'Asap', sans-serif;
      padding: 1rem 0.5rem 0.5rem 0.5rem;
      transition: all 0s; }
      nav .navbar a:hover {
        color: #03A196;
        border-bottom: 1px solid #03A196;
        transition: all 0s; }
  nav .logo {
    position: absolute;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%); }
    nav .logo img {
      width: 15rem; }

/*------------nav------------*/
/*------------nav------------*/
/*------------header------------*/
/*------------header------------*/
header {
  width: 100%;
  height: 100vh;
  background-image: url(../img/t-shirts24.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center; }
  header div {
    width: 45rem;
    display: flex;
    justify-content: space-around;
    text-align: center; }
    header div .button {
      text-decoration: none;
      padding: 1.5rem 2rem;
      display: inline-block;
      width: 20rem;
      text-align: center;
      background-color: #ffffff;
      font-size: 1.5rem;
      font-family: 'Lato', sans-serif;
      color: #03A196;
      box-shadow: 0rem 0.5rem 1rem rgba(0, 0, 0, 0.3);
      transition: all 1s; }
      header div .button:hover {
        color: #ffffff;
        background-color: #03A196;
        transition: all 2s; }

/*------------header------------*/
/*------------header------------*/
/*------------collection------------*/
/*------------collection------------*/
.collection div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; }
  .collection div div {
    width: 49%;
    margin-bottom: 5rem;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: pointer; }
    .collection div div:hover .more {
      left: 0;
      transition: all 2s; }
    .collection div div .more {
      position: absolute;
      top: 0;
      left: 100%;
      transition: all 2s;
      width: 100%;
      height: 100%;
      align-items: center;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.8); }
      .collection div div .more p {
        font-size: 3rem;
        font-weight: 500;
        color: #ffffff; }
    .collection div div img {
      width: 100%;
      height: 100%; }
    .collection div div h2 {
      color: #03A196;
      text-align: center;
      font-weight: 100;
      font-size: 2.3rem;
      font-family: 'Lato', sans-serif;
      margin: 0rem auto;
      margin-bottom: 1.5rem; }
    .collection div div p {
      color: #03A196;
      text-align: center;
      font-weight: 100;
      font-size: 2rem;
      font-family: 'Lato', sans-serif;
      margin: 0rem auto;
      margin-bottom: 1.5rem; }

/*------------collection------------*/
/*------------collection------------*/
/*------------new------------*/
/*------------new------------*/
.new div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 100%; }
  .new div div {
    width: 24%;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer; }
    .new div div:hover .more {
      top: 0;
      transition: none; }
      .new div div:hover .more a {
        top: 40%;
        transition: all 1s; }
        .new div div:hover .more a h1 {
          transform: rotate(360deg); }
        .new div div:hover .more a p {
          transform: rotate(360deg); }
    .new div div img {
      width: 100%;
      height: 100%; }
    .new div div .more {
      position: absolute;
      top: 100%;
      left: 0;
      transition: none;
      width: 100%;
      height: 100%;
      align-items: center;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.7); }
      .new div div .more a {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        transition: all 1s; }
        .new div div .more a h1 {
          text-align: center;
          margin-bottom: 0.5rem;
          color: #ffffff;
          font-size: 2rem; }
        .new div div .more a p {
          text-align: center;
          color: #03A196;
          font-size: 3rem;
          border-bottom: 2px solid #03A196; }

/*------------new------------*/
/*------------new------------*/
/*------------new-collection------------*/
/*------------new-collection------------*/
.new-collection div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 100%; }
  .new-collection div div {
    width: 24%;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer; }
    .new-collection div div:hover .more {
      top: 0;
      transition: none; }
      .new-collection div div:hover .more a {
        top: 40%;
        transition: all 1s; }
        .new-collection div div:hover .more a h1 {
          transform: rotate(360deg); }
        .new-collection div div:hover .more a p {
          transform: rotate(360deg); }
    .new-collection div div img {
      width: 100%;
      height: 100%; }
    .new-collection div div .more {
      position: absolute;
      top: 100%;
      left: 0;
      transition: none;
      width: 100%;
      height: 100%;
      align-items: center;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.7); }
      .new-collection div div .more a {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        transition: all 1s; }
        .new-collection div div .more a h1 {
          text-align: center;
          margin-bottom: 0.5rem;
          color: #ffffff;
          font-size: 2rem; }
        .new-collection div div .more a p {
          text-align: center;
          color: #03A196;
          font-size: 3rem;
          border-bottom: 2px solid #03A196; }

/*------------new-collection------------*/
/*------------new-collection------------*/
/*------------About------------*/
/*------------About------------*/
.about {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 5rem; }
  .about div {
    width: 49%;
    flex-direction: column; }
    .about div h1 {
      font-size: 2.5rem;
      font-weight: 100;
      color: #03A196;
      font-family: 'Lato', sans-serif;
      margin-bottom: 2rem;
      display: block; }
    .about div p {
      font-size: 1.5rem;
      font-weight: 100;
      margin-bottom: 3rem;
      font-family: 'Lato', sans-serif;
      letter-spacing: 0.2rem;
      display: block; }
    .about div img {
      width: 100%;
      height: 100%; }

#text {
  padding: 1rem 2rem; }

/*------------About------------*/
/*------------About------------*/
/*------------Sold------------*/
/*------------Sold------------*/
.sold div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 100%; }
  .sold div div {
    width: 24%;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer; }
    .sold div div:hover .more {
      top: 0;
      transition: none; }
      .sold div div:hover .more a {
        top: 40%;
        transition: all 1s; }
    .sold div div img {
      width: 100%;
      height: 100%; }
    .sold div div .more {
      position: absolute;
      top: 100%;
      left: 0;
      transition: none;
      width: 100%;
      height: 100%;
      align-items: center;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.7); }
      .sold div div .more a {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        transition: all 1s; }
        .sold div div .more a h1 {
          text-align: center;
          margin-bottom: 1rem;
          color: #ffffff;
          font-size: 2rem; }
        .sold div div .more a ul {
          margin-bottom: 1rem; }
          .sold div div .more a ul i {
            font-size: 1.5rem;
            color: #FFE61B; }
        .sold div div .more a p {
          text-align: center;
          color: #03A196;
          font-size: 2rem;
          border-bottom: 2px solid #03A196; }

/*------------Sold------------*/
/*------------Sold------------*/
/*------------check-in------------*/
/*------------check-in------------*/
.check-in {
  width: 100%;
  background-image: url(../img/t-shirts39.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
  .check-in div {
    text-align: center;
    padding: 1rem 3rem; }
    .check-in div h1 {
      text-align: center;
      margin-bottom: 1rem;
      color: #ffffff;
      font-weight: 100;
      font-size: 2.5rem;
      font-family: 'Lato', sans-serif; }
    .check-in div p {
      text-align: center;
      margin-bottom: 2rem;
      color: #ffffff;
      font-weight: 500;
      font-size: 2rem; }
    .check-in div form {
      margin-bottom: 1rem;
      display: flex;
      justify-content: center;
      align-items: center; }
      .check-in div form .email {
        padding: 1rem 2rem;
        width: 35rem; }
      .check-in div form .button {
        padding: 1.2rem 2rem;
        font-size: 1.3rem;
        color: #ffffff;
        border: none;
        background-color: #000000;
        text-transform: uppercase;
        margin-left: 1rem;
        transition: all 1s;
        cursor: pointer; }
        .check-in div form .button:hover {
          background-color: #03A196;
          transition: all 1s; }

/*------------check-in------------*/
/*------------check-in------------*/
/*------------footer------------*/
/*------------footer------------*/
footer {
  background-color: #1B1F23;
  padding: 2rem 8rem 2rem 8rem;
  border: 0px solid red; }
  footer .box-cont {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 4rem; }
    footer .box-cont .box {
      width: 24%;
      padding-left: 2rem;
      border-left: 1px solid rgba(3, 161, 150, 0.3); }
      footer .box-cont .box h3 {
        font-size: 2rem;
        color: #ffffff;
        padding: 1rem 0rem;
        font-weight: 100;
        font-family: 'Lato', sans-serif; }
      footer .box-cont .box .icon {
        padding: 1rem 0rem;
        display: block;
        font-size: 1.5rem;
        color: #ffffff;
        font-weight: 100;
        font-family: 'Lato', sans-serif;
        letter-spacing: 0.1rem; }
        footer .box-cont .box .icon span {
          padding-right: 0.5rem;
          color: #ffffff; }
        footer .box-cont .box .icon:hover {
          color: #03A196; }
          footer .box-cont .box .icon:hover span {
            padding-right: 2rem; }
      footer .box-cont .box p {
        font-size: 1.5rem;
        color: #ffffff;
        padding: 1rem 0rem;
        font-family: 'Lato', sans-serif; }
        footer .box-cont .box p span {
          padding-right: 0.5rem;
          color: #03A196; }
      footer .box-cont .box .share {
        margin-top: 1rem; }
        footer .box-cont .box .share a {
          width: 4rem;
          height: 4rem;
          font-size: 2.5rem;
          color: #ffffff;
          line-height: 5rem;
          text-align: center;
          border-radius: 0.7rem; }
          footer .box-cont .box .share a:hover {
            color: #03A196; }
      footer .box-cont .box form .email {
        width: 100%;
        padding: 1rem 1.2rem;
        font-size: 1.6rem;
        color: #a7a7a7;
        text-transform: none;
        margin: 1rem 0rem; }
      footer .box-cont .box form .button {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1.3rem;
        color: #ffffff;
        border: none;
        background-color: #000000;
        text-transform: uppercase;
        transition: all 1s;
        cursor: pointer; }
        footer .box-cont .box form .button:hover {
          background-color: #03A196;
          transition: all 1s; }
  footer .credit {
    text-align: center;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 0.1rem;
    font-weight: 100;
    font-family: 'Lato', sans-serif; }

/*------------footer------------*/
/*------------footer------------*/
/*------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx------------*/
/*------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx------------*/
/*------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx------------*/
/*------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx------------*/
/*------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx------------*/
/*------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx------------*/
/*------------@media------------*/
/*------------@media------------*/
@media (max-width: 1150px) {
  /*------------nav------------*/
  nav .logo {
    top: 0.3rem; }
    nav .logo img {
      width: 9rem; }

  /*------------nav------------*/
  /*------------header------------*/
  header {
    height: 55rem; }

  /*------------header------------*/ }
@media (max-width: 700px) {
  /*------------nav------------*/
  nav .icons #menu {
    display: block; }
  nav .icons .share a {
    display: none; }
  nav .navbar {
    background-color: #ffffff;
    flex-direction: column;
    padding: 1.2rem 1.5rem;
    opacity: 0; }
    nav .navbar.active {
      opacity: 1;
      margin-bottom: 4rem; }
    nav .navbar a {
      display: block;
      width: 12rem; }

  /*------------nav------------*/
  /*------------header------------*/
  header div {
    flex-direction: column;
    align-items: center; }
    header div .button {
      display: block;
      margin-bottom: 2rem; }

  /*------------header------------*/
  /*------------collection------------*/
  .collection div div {
    width: 100%; }

  /*------------collection------------*/
  /*------------new------------*/
  .new div div {
    width: 49%; }

  /*------------new------------*/
  /*------------new-collection------------*/
  .new-collection div div {
    width: 49%; }

  /*------------new-collection------------*/
  /*------------About------------*/
  .about div {
    width: 100%; }
    .about div p {
      font-size: 1.2rem; }

  #text {
    padding: 1rem 4rem; }

  /*------------About------------*/
  /*------------About------------*/
  .sold div div {
    width: 49%; }

  /*------------About------------*/
  /*------------check-in------------*/
  .check-in div form {
    flex-direction: column; }
    .check-in div form .email {
      margin-bottom: 1rem;
      width: 30rem; }
    .check-in div form .button {
      width: 30rem;
      margin: 0; }

  /*------------check-in------------*/
  /*------------footer------------*/
  footer .box-cont .box {
    width: 48%;
    margin-bottom: 2rem; }

  /*------------footer------------*/ }
/*------------@media------------*/
/*------------@media------------*/

/*# sourceMappingURL=styles.css.map */
