:root {
  --bg-color: #f2f2f2;
  --main-color: #8c8418;
  --button-color: #ffaa00;
  --hover-color: #ff7700;
  --secondary-color: white;
  --jacket-color-black: black;
  --jacket-color-red: red;
  --jacket-color-blue: blue;
  --jacket-color-green: green;
  --colors-border: white;
}

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

body {
  font-family: 'Open Sans', Verdana, Geneva, Tahoma, sans-serif;
  background-color: var(--bg-color);
  /* background-color: #f2f2f2; */
}

/* main {
  background-color: #f2f2f2;
} */

/* HOME PAGE */

nav {
  display: inline;
}

header {
  width: 100%;
}

.navbar {
  min-height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.nav-link {
  transition: 0.7s ease;
  color: white;
  text-decoration: none;
}

.nav-link:hover {
  border: 1px solid white;
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: black;
  border-radius: 10px;
  padding: 5px;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
}
/* HAMBURGER MENU MQ */
@media (max-width: 740px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    background-color: #262626;
    width: 100%;
    text-align: center;
    transition: 0.3s;
  }

  .nav-item {
    margin: 16px 0;
  }

  .nav-menu.active {
    left: 0;
  }
}
.logo {
  background-image: url(../images/RainyDays_Logo.png);
  background-color: var(--main-color);
  height: 85px;
  width: 260px;
  margin-top: -45px;
  margin-bottom: -55px;
}
.anchor-fix {
  margin-top: -25px;
}
.free-shipping {
  background-color: #594e38;
  width: 100%;
  padding-left: 10px;
  color: var(--secondary-color);
}
.header-li {
  display: inline-flex;
  float: right;
  flex-direction: row;
  flex: 1;
  gap: 1em;
  list-style: none;
  color: var(--secondary-color);
  margin-top: -29px;
}
.header-li a {
  color: white;
  list-style: none;
  text-decoration: none;
  padding-right: 10px;
}
.header {
  background-color: var(--main-color);
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 1000;
}
.payment {
  /* padding-left: 50px; */
  display: inline-block;
  color: var(--secondary-color);
}
.logo-container {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.nav-container {
  background-color: var(--main-color);
}
.nav-list {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  list-style: none;
  border-top: 1px solid white;
  padding-bottom: 5px;
  margin-top: 5px;
  margin-left: 10px;
  margin-right: 10px;
}

.nav-list a {
  color: var(--secondary-color);
  list-style: none;
  text-decoration: none;
  margin: 0px 30px 0px 30px;
  border: 1px solid transparent;
  padding: 3px;
  font-weight: 600;
}

.nav-list a:hover {
  border: 1px solid white;
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--main-color);
  border-radius: 10px;
}

.nav-list li {
  flex-shrink: 1;
}

.search-bar {
  height: 30px;
  width: 30%;
  border-radius: 10px;
  margin: 15px 0px 20px 20px;
  border: none;
}
.home-img {
  background-image: url(./images/headshot-large.jpg);
  padding-bottom: 600px;
  padding-top: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  margin-bottom: 50px;
}

.welcome {
  position: relative;
}

.welcome-content {
  color: black;
  /* text-decoration: underline;
  position: inherit;
  float: right;
  right: 130px; */
  display: flex;
  justify-content: flex-start;
  width: 200px;
  height: 0px;
  animation: slogan 3s ease-out 1 both;
}

@keyframes slogan {
  0% {
    color: rgba(255, 255, 255, 0);
  }
  15% {
    color: rgba(66, 66, 66);
  }
  20% {
    color: rgb(129, 129, 129);
  }
  25% {
    color: rgba(192, 192, 192);
  }
  50% {
    color: rgba(255, 255, 255);
  }
  75% {
    color: rgb(66, 66, 66);
  }
  80% {
    color: rgb(255, 255, 255);
  }
  90% {
    color: rgb(0, 0, 0);
  }
  95% {
    color: rgb(255, 255, 255);
  }
  97% {
    color: rgb(128, 128, 128);
  }

  100% {
    color: black;
  }
}

ul {
  margin-left: auto;
  margin-right: auto;
}
li {
  margin-top: 10px;
  list-style: none;
}

.h1-home-page {
  text-align: center;
  font-size: 2.5rem;
}

section a {
  text-decoration: none;
  color: black;
  text-align: center;
  font-size: 1rem;
}

.article {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 1rem;
  margin-top: 50px;
  margin-bottom: 50px;
}

.most-sold {
  height: 300px;
  width: 250px;
  cursor: pointer;
  margin-top: 30px;
  margin-bottom: 20px;
}

.jacket-colors {
  border-bottom: 1px solid #000;
}
.jacket-card:hover {
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 4px 8px 4px rgb(0 0 0 / 20%);
  transition: box-shadow ease-in-out 0.2s;
}

/* .footer-image {
  background-image: url(../images/mans-hand-landscape.jpg);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 645px;
} */
.hand-image {
  display: flex;
  margin: auto;
  height: 20vw;
}

.input-email {
  width: 200px;
  height: 30px;
  margin-top: 10px;
  border: none;
  border-radius: 5px;
  padding: 10px;
}

/* .newsletter {
  color: white;
  width: 360px;
  position: relative;
  top: 35%;
  left: 65%;
  font-weight: bold;
} */
.newsletter {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  /* margin-top: -185px; */
}
.background-color {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: -200px;
  color: white;
  width: 30vh;
  padding: 10px;
  border-radius: 20px;
  background-color: rgba(43, 29, 29, 0.655);
}
.concent-btn {
  float: left;
  margin-top: 10px;
}

.sign-up {
  width: 70px;
  height: 30px;
  background-color: #ffaa00;
  color: #000;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
}

.sign-up:hover {
  background-color: hwb(30 0% 0%);
}

.footer-columns {
  display: flex;
  gap: 1rem;
  list-style: none;
  flex-direction: row;
  border-top: 1px solid #000;
  margin-top: 50px;
  padding: 30px 30px 30px 30px;
}
.footer-columns > * {
  flex-shrink: 1;
  flex-grow: 1;
  width: 175px;
}

.footer-headers {
  font-size: 1.2rem;
  font-weight: bold;
}

.footer-icons {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
}

.footer-list a {
  text-decoration: none;
  color: black;
  font-size: 12px;
}

.footer-list a:hover {
  text-decoration: underline;
}

.secure-payment-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1em;
}

.secure-payment-icons {
  /* width: 50px;
  height: 40px; */
  width: 25%;
}

.social-media-icons {
  display: flex;
  gap: 1em;
}

/* --------JACKETS PAGE--------- */

.login-in {
  border: 1px solid white;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  box-shadow: 0 4px 8px 4px rgb(0 0 0 / 20%);
  text-align: center;
  padding-top: 20px;
}

.account-info {
  border: 2px solid #c1c1c145;
  height: 45px;
  width: 315px;
  border-radius: 10px;
  margin: 10px auto 10px auto;
  box-shadow: 0 2px 8px 2px rgb(0 0 0 / 5%);
}

.account:hover {
  box-shadow: 0 2px 8px 2px rgb(0 0 0 /15%);
}

.privacy-text {
  margin-top: 30px;
  padding: 0px 50px 0px 50px;
  font-size: 12px;
  color: rgba(0, 0, 0, 45%);
}

.confirm-button {
  width: 315px;
  height: 45px;
  font-size: 18px;
  border: 2px solid #c1c1c145;
  border-radius: 10px;
  margin: 50px auto 50px auto;
  background-color: white;
  box-shadow: 0 2px 8px 2px rgb(0 0 0 / 5%);
}

/* form classes for message errors */
.form-error {
  display: none;
  color: red;
  font-size: 0.8rem;
  margin-top: 2px;
  font-style: italic;
}

.form-submitted {
  display: none;
  color: rgb(0, 255, 0);
  font-size: 1.2rem;
  background: rgba(0, 255, 0, 0.1);
  border: 2px solid rgba(0, 255, 0);
  padding: 10px;
  width: 200px;
}

#member:hover {
  text-decoration: underline;
}

.confirm-button:hover {
  background-color: #ff7700;
}
.home-cta {
  display: inline-block;
}

.card {
  box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  height: 780px;
  flex-wrap: wrap;
  margin: 0px auto 50px auto;
  padding-top: 160px;
  padding-bottom: 30px;
  text-align: left;
  font-family: arial;
  background-color: rgb(255, 255, 255);
  gap: 1em;
}

.thumbnail {
  height: 95px;
  display: flex;
  margin-top: 6px;
  width: 50px;
  flex-wrap: nowrap;
}

.thumbnail:hover {
  zoom: 200%;
}

.details-to-flex {
  display: flex;
}

.jacket-page-colors {
  border-bottom: 1px solid #c1c1c1;
  margin-top: 70px;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  color: #594e38;
}

.box-1 {
  max-width: 390px;
  width: 100px;
  margin-left: 30px;
}

.box-2 {
  max-width: 393px;
  width: 550px;
  height: 450px;
  margin-left: 70px;
}

.box-3-jacket {
  max-width: 390px;
}

.box-3 {
  margin-left: 140px;
}

.box-3 > p,
h1,
h3 {
  margin-bottom: 15px;
}

.box-3 > h1,
h3 {
  font-size: 20px;
}

.items-added-title {
  font-size: 28px;
}

.box-3 > h4 {
  margin-top: 25px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

.box-4 {
  max-width: 800px;
  width: 300px;
  margin-left: 120px;
}

.jacket-one {
  margin-top: 20px;
  margin-bottom: 20px;
  height: 450px;
  width: 350px;
}

.about-jacket {
  list-style: disc;
  text-align: justify;
}

.in-stock-text {
  font-weight: bold;
  color: blue;
  text-decoration: 3px underline;
  margin-bottom: 5px;
}

.button {
  background-color: #ffaa00;
  color: #000;
  padding: 10px 15px 10px 15px;
  margin-top: 15px;
  border: none;
  font-weight: bold;
}
.button-margin {
  margin-bottom: 10px;
}

.button:hover {
  background-color: var(--hover-color);
}

.s-button {
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}

.xxl-button {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}

.add-to-cart {
  border-radius: 5px;
}

.add-to-cart:hover {
  background-color: var(--hover-color);
}

.quantity {
  background-color: var(--button-color);
  color: #000;
  padding: 10px 7px 10px 13px;
  margin-top: 15px;
  border: none;
  border-radius: 5px;
  width: 65px;
  display: flex;
}

.quantity::placeholder {
  color: #000;
}

.review-border {
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
  padding-bottom: 15px;
  margin: 20px 50px 0px 50px;
}

.review-container {
  /* display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0px 50px 0px 50px;
  flex-wrap: wrap;
  align-content: stretch; */
  display: flex;
  gap: 2rem;
  margin: 0px 50px 0px 50px;
  margin: auto;
  /* max-width: 600px; */
  padding: 20px;
  flex-wrap: nowrap;
  flex-direction: row;
}

.review-contant-border {
  border-right: 1px solid #000;
  height: 230px;
  margin-bottom: 20px;
  margin-top: 20px;
  padding-right: 25px;
}

.review-content-hidden-border {
  border-right: hidden;
  margin-bottom: 20px;
  margin-top: 20px;
  padding-right: 25px;
}

.review-text {
  margin-top: 20px;
  text-align: justify;
}

/*---------ITEMS ADDED TO CART PAGE-------  */
.back-btn {
  color: black;
  height: 20px;
}
.back-btn:hover {
  text-decoration: 2px underline;
}

.added-items {
  /* box-shadow: 0 4px 8px 4px rgb(0 0 0 / 2%); */
  display: flex;
  /* width: 59%; */
  height: 585px;
  flex-wrap: wrap;
  padding: 20px 0px 0px 20px;
  text-align: left;
  font-family: arial;
  justify-content: space-between;
  /* background-color: rgb(255, 255, 255); */
}

.items-added-box {
  max-width: 390px;
  /* width: 400px; */
  padding: 5px;
}

.product-box {
  height: 380px;
  width: 295px;
}

.color-boxes {
  height: 15px;
  width: 15px;
}
.color-choice {
  display: flex;
  gap: 0.5em;
}

.color-choice-black {
  border: 1px solid var(--jacket-color-black);
  background-color: var(--jacket-color-black);
  border-color: var(--secondary-color);
}
.color-choice-black:hover {
  border-color: var(--jacket-color-black);
}

.color-choice-red {
  border: 1px solid var(--jacket-color-red);
  background-color: var(--jacket-color-red);
  border-color: var(--colors-border);
}

.color-choice-red:hover {
  border-color: var(--jacket-color-red);
}

.color-choice-blue {
  border: 1px solid var(--jacket-color-blue);
  background-color: var(--jacket-color-blue);
  border-color: var(--colors-border);
}

.color-choice-blue:hover {
  border-color: var(--jacket-color-blue);
}

.color-choice-green {
  border: 1px solid var(--jacket-color-green);
  background-color: var(--jacket-color-green);
  border-color: var(--colors-border);
}

.color-choice-green:hover {
  border-color: var(--jacket-color-green);
}

.review-stars {
  display: flex;
  margin-bottom: 30px;
  margin-top: 12px;
  justify-content: space-between;
}
.info-container {
  margin-top: -100px;
  display: flex;
  flex-direction: column;
  width: 25%;
}

/* #info-box {
  text-align: left;
} */

.info-box {
  box-shadow: 0 4px 8px 4px rgb(0 0 0 / 10%);
  width: 420px;
  border-radius: 10px;
  margin: 20px 0px 0px 20px;
  padding-top: 3px;
  padding-left: 10px;
  height: 40px;
  background-color: rgb(255, 255, 255);
  text-align: left;
}

.info-box:hover {
  box-shadow: 0 4px 8px 4px rgb(0 0 0 / 15%);
}
.orders-card {
  display: flex;
  padding-top: 160px;
}

.your-orders {
  box-shadow: 0 4px 8px 4px rgb(0 0 0 / 10%);
  height: 738px;
  width: 630px;
  margin: 0px 0px 20px 40px;
  border-radius: 10px;
  padding: 10px 10px 0px 10px;
  background-color: rgb(255, 255, 255);
}
.your-orders-checkout {
  box-shadow: 0 4px 8px 4px rgb(0 0 0 / 10%);
  height: 390px;
  width: 630px;
  margin: 0px 0px 20px 40px;
  border-radius: 10px;
  padding: 10px 10px 0px 10px;
  background-color: rgb(255, 255, 255);
}

.orders-style {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
}

.orders-box,
.insuranceAdded {
  background-color: #f2f2f2;
  height: 115px;
  padding: 10px 20px 0px 20px;
}

.total-box {
  background-color: rgb(232 232 232);
  height: 115px;
  margin-bottom: 20px;
  padding: 0px 20px;
}

.checkout-button {
  background-color: #ffaa00;
  color: #000;
  border: 1px solid #ffaa00;
  border-radius: 10px;
  margin: 0px auto 15px auto;
  /* margin-bottom: 15px;
  margin-left: 240px; */
  width: 270px;
  height: 35px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  font-weight: 100;
}

.checkout-button:hover {
  background-color: var(--hover-color);
}

.discount-code {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  height: 35px;
  border-radius: 10px;
  border-width: thin;
  border-color: #c1c1c1;
  text-align: center;
  color: var(--main-color);
}

.add-button {
  background-color: var(--button-color);
  color: #000;
  padding: 10px 15px 10px 15px;
  border: none;
  border-radius: 5px;
  width: 90px;
  font-weight: bold;
}

.add-button:hover {
  background-color: var(--hover-color);
}
.insurance-disclaimer {
  font-size: 10px;
}

.insurance-header {
  border-bottom: 1px solid #c1c1c1;
  margin-top: 40px;
}

.insurance-prices {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  width: 95%;
  padding-left: 10px;
  justify-content: space-between;
  padding: 10px 10px 10px 10px;
  border-bottom: 1px solid #c1c1c1;
}

/* Hide all content divs initially */
#content1,
#content2,
#content3 {
  display: none;
}

/* Style the visible content div */
#content1 {
  background-color: red;
}

/* Style the other content divs */
#content2 {
  background-color: green;
}

#content3 {
  background-color: blue;
}

/* --------------------
INFORMATION PAGE------------ */

.purchased-jacket {
  margin-top: 20px;
  margin-bottom: 20px;
  height: 200px;
  width: 150px;
}

.purchased-jacket-colors {
  border-bottom: 1px solid #c1c1c1;
  width: 185px;
  margin-top: 30px;
  margin-bottom: 5px;
  display: flex;
  color: #594e38;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}

.box-3-purchased {
  margin-top: 75px;
}

.purchased-product-box {
  height: 380px;
  width: 235px;
  margin-bottom: 100px;
}

.added-items-purchased {
  box-shadow: 0 4px 8px 4px rgb(0 0 0 / 2%);
  display: flex;
  flex-direction: row;
  width: 520px;
  height: 325px;
  flex-wrap: wrap;
  margin: 0px 0px 0px 30px;
  padding: 20px 0px 0px 20px;
  text-align: left;
  font-family: arial;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
}

.purchase-info-box {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  box-shadow: 0 4px 8px 4px rgb(0 0 0 / 10%);
  height: 100%;
  width: 54%;
  margin: 20px 0px 20px 30px;
  border-radius: 10px;
  margin-left: 30px;
  padding-top: 3px;
  padding-left: 10px;
  background-color: rgb(255, 255, 255);
}

.basic-info-1 {
  border: 1px solid #c1c1c1;
  height: 45px;
  width: 49%;
  border-radius: 5px;
  margin: 10px 0px 10px 0px;
}

.basic-info-2 {
  border: 1px solid #c1c1c1;
  height: 45px;
  border-radius: 5px;
  width: 98.5%;
  margin-bottom: 10px;
}

.basic-info-1:hover,
.basic-info-2:hover,
.account-info:hover {
  box-shadow: 0 2px 8px 2px rgb(0 0 0 / 15%);
}

.name-input:hover,
.street-input:hover,
.city-input:hover,
.post-code-input:hover,
.country-input:hover,
.email-input:hover,
.company-input:hover,
.card-number-input:hover,
.card-name-input:hover,
.card-type:hover,
.experation-date:hover,
.ccv:hover,
.card-number:hover,
.name-on-card:hover {
  box-shadow: 0 2px 8px 2px rgb(0 0 0 / 15%);
}

select {
  border: 1px solid #c1c1c1;
  height: 45px;
  width: 32%;
  border-radius: 5px;
  margin: 10px 0px 10px 0px;
}

select:hover {
  box-shadow: 0 2px 8px 2px rgb(0 0 0 / 15%);
}

.delivery-info-box {
  box-shadow: 0 4px 8px 4px rgb(0 0 0 / 10%);
  height: 225px;
  width: 54%;
  margin: 20px 0px 20px 30px;
  border-radius: 10px;
  margin-left: 30px;
  padding-top: 3px;
  padding-left: 10px;
  background-color: rgb(255, 255, 255);
}

.card-number-input,
.card-name-input {
  border: 1px solid #c1c1c1;
  height: 45px;
  width: 437px;
  border-radius: 5px;
  margin: 10px 0px 10px 0px;
}

.card-number,
.name-on-card,
.password {
  border: 1px solid #c1c1c1;
  height: 45px;
  width: 80%;
  border-radius: 5px;
  margin: 10px 0px 10px 0px;
}

.card-type,
.experation-date,
.ccv {
  border: 1px solid #c1c1c1;
  height: 45px;
  width: 32%;
  border-radius: 5px;
  margin: 10px 0px 10px 0px;
}

.secure-payment {
  background-color: var(--button-color);
  border: 1px solid var(--button-color);
  border-radius: 10px;
  width: 150px;
  height: 35px;
  font-weight: 100;
  margin-top: 35px;
  margin-bottom: 15px;
}

input::placeholder {
  padding-left: 5px;
  font-weight: bold;
}

.secure-payment:hover {
  background-color: var(--hover-color);
  border: var(--hover-color);
}

.your-orders-float-right {
  float: right;
  margin-top: 160px;
  margin-right: 30px;
}

/* ------------
THIS IS THE CONGRATULATOINS PAGE
------------- */

#congratulations-box {
  padding-top: 160px;
}
.congratulations-box {
  border: 1px solid none;
  border-radius: 10px;
  background-color: #c5c18a;
  margin-right: auto;
  margin-left: auto;
  width: 800px;
  height: 540px;
  text-align: center;
  font-weight: bold;
  padding-top: 30px;
}

.congratulations-text-one {
  background-color: white;
  border: 1px solid none;
  border-radius: 10px;
  padding: 20px 65px 20px 65px;
  margin: 0px 10px 50px 10px;
}

.congratulations-text-one > p {
  margin-bottom: 10px;
}

.click-view-order {
  color: var(--button-color);
  text-decoration: underline;
}

.click-view-order:hover {
  color: var(--hover-color);
}

.purchase-discount-code {
  border: 1px solid none;
  border-radius: 10px;
  background-color: white;
  margin: 0px auto 0px auto;
  width: 300px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.view-my-order {
  margin-top: 55px;
  color: #000;
  text-decoration: underline;
}

/*------
VIEW MY ORDERS PAGE
------*/
.added-items {
  margin-bottom: 20px;
}

.purchased-items {
  margin-top: 75px;
}

.view-order-container {
  box-shadow: 0 4px 8px 4px rgb(0 0 0 / 10%);
  height: 275px;
  width: 900px;
  display: grid;
  margin-left: 120px;
  border-radius: 10px;
  padding: 10px 10px 0px 10px;
  background-color: rgb(255, 255, 255);
}

.container {
  background-color: rgb(232 232 232);
  height: 115px;
  margin-bottom: 20px;
  padding-right: 20px;
  padding-left: 20px;
}

.view-order {
  display: grid;
  grid-template-columns: 1fr auto;
}

.selected-size-btn,
.insuranceButton,
.deliveryButton {
  background-color: #ff7700;
}

.about-us-container {
  background-image: url(images/lake-fog-sunrise-with-autumn-foliage-mountains-new-england-stowe.jpg);
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-us-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: auto;
  padding-top: 400px;
  color: #f2f2f2;
}
/* .moving-paragraph {
  position: relative;
  animation: move-up 2s forwards;
}

@keyframes move-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
} */
.moving-paragraph,
.about-us-title,
.location {
  animation: moveUp 1.5s ease-in-out forwards;
  font-weight: normal;
  border-radius: 20px;
  text-align: center;
  padding: 10px;
  margin-top: 10px;
}
.map {
  text-decoration: underline;
  color: white;
}

@keyframes moveUp {
  from {
    transform: translateY(100%);
    text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9,
      0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1),
      0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2),
      0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2),
      0 20px 20px rgba(0, 0, 0, 0.15);
    background-color: rgba(14, 12, 12, 0);
  }
  to {
    transform: translateY(-110px);
    text-shadow: none;
    background-color: rgba(14, 12, 12, 0.655);
  }
}

/* PAGE RESPONSIVNESS */
@media (max-width: 320px) {
  .full-name,
  .email-address,
  .new-password,
  .confirm-password,
  .confirm-button,
  .account-info {
    width: 230px;
  }
  .congratulations-box {
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }
  #congratulations-box {
    padding-top: 0px;
  }
  .hidden {
    display: none;
  }
  .search-bar {
    margin-top: 50px;
  }

  .view-order-container {
    margin-right: auto;
    margin-left: auto;
  }
  .added-items {
    width: 100%;
    height: 100%;
    margin: auto;
  }
  .items-added-title {
    font-size: 14px;
  }
  .header {
    position: fixed;
  }
}

@media (max-width: 375px) {
  .items-added-title {
    font-size: 18px;
  }
  .search-bar {
    width: 85%;
    margin: 15px 20px;
  }
  /* .items-added-box {
    width: 40%;
  } */
  /* .home-img {
    display: none;
  } */
  .article {
    margin-top: 80px;
  }

  .most-sold {
    height: 230px;
    width: 180px;
  }
  .jacket-one {
    height: 275px;
    width: 213px;
  }
  .card {
    padding-top: 184px;
  }
  .box-2 {
    width: 0px;
  }
  .box-3 {
    margin-left: 0px;
  }
  .your-orders,
  .your-orders-checkout {
    width: 82%;
    height: 100%;
    margin-bottom: 20px;
  }
  .added-items {
    width: 82%;
    padding: 20px 20px;
    margin-top: 95px;
    /* margin: 0px; */
    justify-content: center;
    width: 100%;
    flex-direction: column;
    align-items: center;
    /* height: 844px; */
  }
  .discount-code {
    width: 95%;
  }
  .input-email {
    width: 40%;
  }
  .review-container {
    gap: 6rem;
    display: flex;
    flex-direction: column;
  }
  .info-container {
    margin-top: 20px;
  }
  .newsletter {
    font-size: 10px;
    width: 70%;
  }
  .info-box {
    width: 270px;
    font-size: 16px;
    margin-top: 20px;
  }
  .thumbnail,
  .box-2,
  .box-4 {
    display: none;
  }
  /* .purchased-product-box {
    display: none;
  } */
  .congratulations-box {
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }
  #congratulations-box {
    padding-top: 0px;
  }
  .hidden {
    display: none;
  }
  .view-order-container {
    margin-right: auto;
    margin-left: auto;
  }
  /* .total-box {
    width: 268px;
  } */
}

@media (max-width: 414px) {
  .header {
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    position: unset;
  }
  .welcome-content {
    display: none;
  }
  .most-sold {
    height: 230px;
    width: 180px;
  }
  .box-3 {
    margin-left: 0px;
  }
  .added-items {
    width: 100%;
    padding: 20px 20px;
  }
  /* .purchased-product-box {
    display: none;
  } */
  .info-box {
    width: 272px;
    font-size: 16px;
  }
  .congratulations-box {
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }
  #congratulations-box {
    padding-top: 0px;
  }
  .hidden {
    display: none;
  }
  .view-order-container {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 390px) {
  .header {
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    position: fixed;
  }
  .welcome-content {
    display: none;
  }
  .nav-container {
    height: 45px;
  }
  .home-img {
    background-image: url(./images/headshot-small.jpg);
    padding: 155px 0;
  }
  .hidden {
    visibility: hidden;
  }
  .most-sold {
    width: 190px;
    height: 240px;
  }
  .newsletter {
    padding-top: 155px;
  }
  .your-orders,
  .your-orders-checkout {
    margin: 0px;
    width: 100%;
  }
  .your-orders-float-right {
    float: right;
    margin-top: 100px;
    margin-right: 0px;
  }
  /* .added-items-purchased {
    display: none;
  } */
  .purchase-info-box {
    margin: 20px auto;
    width: 100%;
  }
  .delivery-info-box {
    margin: 20px auto;
    width: 100%;
  }
  .added-items {
    width: 100%;
  }
  #congratulations-box {
    padding-top: -160px;
  }
  .congratulations-box {
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }
  #congratulations-box {
    padding-top: 0px;
  }
  .hidden {
    display: none;
  }
  .view-order-container {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 425px) {
  .hand-image {
    height: 52vw;
  }
  .anchor-fix {
    margin-top: 0px;
  }
  .added-items-purchased {
    margin-left: 0px;
    padding: 0px;
  }
  .product-box {
    margin-top: 85px;
  }
  .jacket-card {
    width: 70%;
  }
  .logo {
    width: 200px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    margin-top: 0px;
    height: 65px;
  }
  .search-bar {
    margin-top: 65px;
    width: 90%;
  }
  .box-2 {
    margin-bottom: 0px;
    margin-right: auto;
    /* margin-top: 143px; */
  }
  .items-added-title {
    font-size: 20px;
  }
  /* .box-3 {
    padding-left: 0px;
  } */
  .info-container {
    margin-top: 50px auto;
  }
  .info-box {
    width: 272px;
    font-size: 16px;
  }
  .added-items {
    width: 100%;
    /* margin-top: 164px; */
    margin: auto;
  }
  .jacket-one {
    height: 350px;
    width: 270px;
  }
  .box-3 {
    margin: auto;
  }
  .congratulations-box {
    width: 100%;
    height: 100%;
    border-radius: 0px;
    padding-top: 185px;
  }
  #congratulations-box {
    padding-top: 0px;
  }
  .hidden {
    display: none;
  }
  .view-order-container {
    margin-right: auto;
    margin-left: auto;
    /* margin-top: 200px; */
  }
  /* .login-in {
    margin-top: 146px;
  } */

  .your-orders-float-right {
    margin-top: 100px;
  }
}
@media (max-width: 631px) {
  .box-2 {
    width: 300px;
  }
  .box-3-jacket {
    margin-bottom: 50px;
  }
  .card {
    height: 1300px;
  }
  /* .purchased-product-box {
    display: none;
  } */
  .your-orders-float-right {
    float: right;
    /* margin-top: 0px; */
    margin-right: 0px;
  }
  /* .added-items-purchased {
    display: none;
  } */
  .purchase-info-box {
    margin: 20px auto;
    width: 100%;
  }
  .delivery-info-box {
    margin: 20px auto;
    width: 100%;
  }
  .added-items {
    width: 100%;
  }
  .congratulations-box {
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }
  #congratulations-box {
    padding-top: 0px;
  }
}
@media (max-width: 468px) {
  .review-content-hidden-border {
    margin: auto;
  }
}
@media (max-width: 503px) {
  .checkout-button {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 760px) {
  .added-items {
    height: 1025px;
    justify-content: center;
  }
  .congratulations-box {
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }
  #congratulations-box {
    padding-top: 0px;
  }
  .view-order-container {
    margin-right: auto;
    margin-left: auto;
  }
}
/* @media (max-width: 710px) {
  .logo {
    margin-top: 10px;
  }
} */
@media (max-width: 737px) {
  .search-bar {
    margin-top: 60px;
    margin-bottom: 0px;
    display: none;
  }
  /* .logo {
    margin-top: 20px;
  } */
}
@media (max-width: 768px) {
  .hand-image {
    height: 52vw;
  }
  .jacket-card {
    width: 70%;
  }

  .box-3 {
    margin-left: 0px;
    /* padding-left: 110px; */
  }
  .box-4 {
    margin-top: 50px;
  }
  .your-orders,
  .your-orders-checkout {
    width: 90%;
    margin-left: 20px;
  }
  .your-orders-float-right {
    /* margin-top: 340px; */
    margin-right: 0px;
  }

  .added-items {
    width: 95%;
  }
  .added-items-purchased {
    flex-direction: column;
  }
  .purchase-info-box,
  .delivery-info-box,
  .footer-image {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .purchased-jacket {
    height: 264px;
    width: 204px;
    margin: 0px;
  }
  .view-order-container {
    margin-right: auto;
    margin-left: auto;
  }
  .jacket-card {
    box-shadow: -1px 0px 3px 1px #ccc;
    padding: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px;
    background-color: white;
    width: 50%;
  }
}

@media (max-width: 820px) {
  .header {
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    position: fixed;
  }
  .nav-container {
    height: 45px;
  }
  .welcome-content {
    display: none;
  }
  .nav-container {
    height: 45px;
  }
  .logo-container {
    margin: 10px auto;
    width: 95%;
  }

  .payment,
  .free-shipping {
    display: none;
  }
  .home-img {
    background-image: url(./images/headshot-small.jpg);
    padding: 170px 141px;
  }
  .nav-list {
    justify-content: center;
  }
  .welcome-content {
    text-decoration: underline;
    position: unset;
    top: 136px;
    float: none;
  }
  .orders-card {
    padding-top: 120px;
  }
  /* .card {
    padding-top: 30px;
  } */
  .footer-image {
    background-image: url(./images/mans-hand-landscape-medium.jpg);
    height: 265px;
    width: 100%;
  }
  .newsletter {
    margin-right: 30px;
    position: static;
    margin: auto;
    padding-top: 75px;
    font-weight: 400;
  }
  .congratulations-box {
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }
  #congratulations-box {
    padding-top: 0px;
  }
  .your-orders,
  .your-orders-checkout {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .your-orders-float-right {
    /* margin-top: 345px; */
    margin-right: 0px;
  }
  .added-items-purchased {
    flex-direction: column;
  }
  .purchase-info-box,
  .delivery-info-box,
  .footer-image {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}
/* @media (min-width: 980px) {
  .card {
    display: flex;
  }
} */

@media (max-width: 1071px) {
  .payment {
    margin-left: 700px;
  }
}

@media (max-width: 1000px) {
  .header-li {
    display: none;
  }

  .footer-columns {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 1000px) {
  .social-media-icons {
    justify-content: center;
  }
}

@media (max-width: 1035px) {
  .newsletter {
    position: static;
    margin: auto;
    font-weight: 400;
  }
}

@media (max-width: 1024px) {
  .jacket-card {
    box-shadow: 1px 11px 0px -1px #ccc;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px;
    background-color: white;
    border-top-right-radius: 70px;
    border-bottom-left-radius: 70px;
  }
}

@media (max-width: 1080px) {
  .your-orders,
  .your-orders-checkout {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .your-orders-float-right {
    /* margin-top: 500px; */
    margin-right: 0px;
  }
  .added-items-purchased {
    flex-direction: column;
  }
  .purchase-info-box,
  .delivery-info-box,
  .footer-image {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 1122px) {
  .box-4 {
    width: 90%;
    margin-top: 50px;
  }
  .card {
    height: 950px;
  }
}
@media (max-width: 1191px) {
  .payment {
    margin-left: 700px;
  }
}
@media (max-width: 1299px) {
  .box-1 {
    display: none;
  }
  .card {
    gap: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    height: 50%;
  }
  .box-4 {
    margin-bottom: 50px;
    margin-left: 0px;
  }
}
@media (max-width: 1301px) {
  .added-items {
    width: 95%;
  }
  .orders-card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .info-container {
    margin-top: 0px;
  }
}

@media (max-width: 1388px) {
  .orders-card {
    display: flex;
  }
}
@media (max-width: 1440px) {
  .your-orders,
  .your-orders-checkout {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .your-orders-float-right {
    /* margin-top: 500px; */
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
  .added-items-purchased {
    flex-direction: column;
    background-color: #f2f2f2;
  }
  .purchase-info-box,
  .delivery-info-box,
  .footer-image {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .view-order-container {
    margin-left: 20px;
    width: 90%;
  }
  .added-items {
    width: 90%;
  }
}
@media (max-width: 2560px) {
  .your-orders,
  .your-orders-checkout {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .your-orders-float-right {
    /* margin-top: 500px; */
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
  .added-items-purchased {
    flex-direction: column;
    background-color: #f2f2f2;
  }
  .purchase-info-box,
  .delivery-info-box,
  .footer-image {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .view-order-container {
    margin-left: 20px;
    width: 90%;
  }
  .added-items {
    width: 90%;
  }
}
