:root {
  --primary-color: #a60303;
  --secondary-color: #8c030e;
  --tertiary-color: #ff9292;

  --neutral-black: #0d0d0d;
  --neutral-white: #efefef;

  --primary-font: "zuume-edge", sans-serif;
  --primary-font-style-normal: normal;
  --primary-font-weight: 400;

  --secondary-font: "zuume-edge", sans-serif;
  --secondary-font-weight: 700;
  --secondary-font-style-italic-black: italic;
}

body {
  margin: 0;
}

.overlay {
  position: fixed;
  background-color: #0d0d0d;
  width: 100%;
  z-index: 1;
  animation-name: loadout;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  display: none;
}

@keyframes loadout {
  0% {
    opacity: 1;
    height: 100%;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
    height: 100%;
  }
  100% {
    opacity: 0;
    height: 0%;
  }
}

.container {
  width: 100%;
  min-height: 300px;
  overflow: hidden;
  position: relative;
}

.nav {
  position: relative;
  width: 100%;
  min-height: 100px;
  display: flex;
  justify-content: space-between;
  background-color: #a60303;
}

.nav-left {
  width: 30%;
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.hamburger-menu {
  margin-right: 30px;
}

.hamburger-menu:hover {
  cursor: pointer;
}

.nav-right {
  width: 40%;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: center;
  margin-right: 30px;
}

.nav-item {
  position: relative;
  overflow: hidden;
  margin-left: 30px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-bottom: 5px;
  font-size: 20px;
  box-sizing: border-box;
  color: var(--neutral-white);
  font-family: var(--primary-font);
  font-style: var(--primary-font-style-normal);
  padding: 10px 10px;
}

.nav-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: -100%;
  left: 0;
  background-color: var(--neutral-white);
  border-radius: 2px;
  transform: translateY(0%);
  transition-duration: 0.25s;
}

.nav-item:hover {
  cursor: pointer;
}

.nav-item:hover::before {
  transform: translateY(-10%);
}

.nav-schedule {
  background-color: var(--neutral-black);
}

.cart-section {
  position: relative;
}

.cart-icon {
  margin-left: 30px;
}

.cart-icon:hover {
  cursor: pointer;
}

.current-cart {
  position: absolute;
  box-sizing: border-box;
  top: 77px;
  left: -200px;
  padding: 10px;
  z-index: 2;
  width: 300px;
  min-height: 100px;
  background-color: var(--neutral-white);
  box-shadow: 3px 3px 6px var(--neutral-black);
  border-radius: 5px;
}

.current-cart p {
  font-family: var(--primary-font);
}

.empty-cart {
  width: 70%;
  height: 50%;
  display: flex;
  align-items: center;
  font-size: 20px;
  margin: 15px auto;
}

.item {
  position: relative;
  box-sizing: border-box;
  border: 1px solid var(--neutral-black);
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 3px;
  margin-bottom: 5px;
  overflow: hidden;
}

.item::before {
  position: absolute;
  background-color: var(--primary-color);
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 3px;
  top: 0;
  left: -100%;
  transition-duration: 0.25s;
}

.item:hover {
  background-color: #e4e4e4;
}

.item:hover:before {
  transform: translateX(2%);
}

.item-top {
  display: flex;
  justify-content: space-between;
  font-size: 25px;
  width: 100%;
}

.item-top p {
  margin-top: 10px;
  margin-bottom: 5px;
}

.remove-from-cart {
  color: var(--primary-color);
  right: 0;
  top: 30px;
  font-size: 15px;
  padding: 5px;
  text-align: right;
  margin-top: 0;
  margin-bottom: 0;
  box-sizing: border-box;
}

.remove-from-cart:hover {
  cursor: pointer;
  text-decoration: underline;
}

.cart-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cartTotal {
  text-align: right;
  display: flex;
  font-size: 20px;
}

.cartTotal p {
  margin: 5px 0;
}

.checkout-cart {
  font-size: 20px;
}

.checkout-btn {
  font-family: var(--primary-font);
  font-size: 20px;
  background-color: var(--primary-color);
  color: var(--neutral-white);
  border: 0.25px solid var(--primary-color);
  padding: 5px 30px;
}

.checkout-btn:hover {
  cursor: pointer;
  background-color: var(--secondary-color);
  text-decoration: underline;
}

.section-1 {
  width: 100%;
  min-height: 100vh;
  background-color: #a60303;
  display: flex;
  justify-content: flex-start;
  padding-left: 30px;
}

.hero-left {
  width: 50%;
  min-height: 300px;
  padding-top: 200px;
}

.hero-left h1 {
  font-family: var(--secondary-font);
  font-style: var(--secondary-font-style-italic-black);
  font-weight: var(--secondary-font-weight);
  font-size: 150px;
  margin-top: 0px;
  margin-bottom: 10px;
  color: var(--neutral-white);
  position: relative;
}

.hero-left-h1-span::before {
  content: "";
  height: 50%;
  width: 100%;
  position: absolute;
  left: -1%;
  top: 40%;
  z-index: -1;
  background-color: #0d0d0d;
  padding-left: 5px;
  transform: skewX(-12.5deg);
}

.info {
  width: 100%;
}

.hero-left h2 {
  font-family: var(--primary-font);
  font-size: 30px;
  color: var(--neutral-white);
}

.hero-left button {
  position: relative;
  overflow: hidden;
  padding: 10px 5px;
  font-size: 25px;
  width: 50%;
  font-family: var(--primary-font);
  transition-duration: 0.15s;
  color: var(--secondary-color);
  box-sizing: border-box;
  border: 1px solid var(--neutral-white);
}

.hero-left button:hover {
  cursor: pointer;
  border: 2px solid var(--neutral-black);
  background-color: var(--neutral-black);
  color: var(--neutral-white);
}

.hero-left button::before {
  position: absolute;
  content: "";
  width: 5%;
  height: 100%;
  background-color: var(--neutral-white);
  box-sizing: border-box;
  left: -20px;
  top: 0%;
  transform: skewX(-12.5deg);
}

.hero-left button:hover::before {
  animation-name: hovering-button;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: linear;
}

@keyframes hovering-button {
  0% {
    transform: translateX(-20%) skewX(-12.5deg);
  }
  100% {
    transform: translateX(3000%) skewX(-12.5deg);
  }
}

.hero-right {
  position: relative;
  width: 40%;
  min-height: 300px;
  display: flex;
  justify-content: flex-end;
}

.hero_img_lady {
  position: absolute;
  padding-top: 100px;
  z-index: 1;
  left: 5px;
}

.hero-right-content {
  width: 100%;
  background-color: var(--neutral-white);
  transform: skewX(-12.5deg);
  padding-bottom: 500px;
  margin-left: 120px;
}

.hero-right-three-content {
  position: absolute;
  width: 100%;
  top: 0;
  padding-bottom: 500px;
}

.section-2 {
  width: 100%;
  min-height: 100vh;
  padding-top: 100px;
  background-color: #efefef;
  padding-top: 200px;
}

.meet-the-trainer {
  width: 50%;
  min-height: 100px;
  text-align: center;
  font-family: var(--primary-font);
  font-style: var(--primary-font-style-normal);
  color: var(--primary-color);
  font-size: 100px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.trainer-list {
  width: 75%;
  margin: 0 auto;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
}

.trainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trainer-name {
  font-family: var(--primary-font);
  font-size: 35px;
  text-align: center;
}

.trainer-accomplishments {
  padding: 10px 10px;
  box-shadow: 1px 1px 1px var(--neutral-black);
}

.trainer-accomplishments ul {
  list-style-type: circle;
  font-family: var(--primary-font);
  font-size: 22.5px;
}

.training-programs {
  padding-top: 100px;
}

.train-in-header {
  width: 50%;
  min-height: 100px;
  margin-left: 200px;
  font-family: var(--primary-font);
  font-style: var(--primary-font-style-normal);
  color: var(--primary-color);
  font-size: 50px;
}

.train-in {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 70%;
  padding: 50px 0px;
}

.train {
  position: relative;
  display: flex;
  align-items: center;
  transition: 0.5s;
}

.train-title {
  font-family: var(--primary-font);
  color: var(--neutral-white);
  background-color: var(--primary-color);
  font-size: 30px;
  border-radius: 0px 15px 15px 0px;
  padding: 5px 15px;
}

.train:hover {
  cursor: pointer;
  transform: scale(110%);
}

.train-info {
  position: absolute;
  top: 100px;
  padding: 25px;
  background-color: var(--neutral-white);
  font-family: var(--primary-font);
  font-size: 20px;
  border: 0.25px solid var(--neutral-black);
}

.section-3 {
  padding-top: 250px;
  width: 100%;
  min-height: 100vh;
  background-color: var(--neutral-white);
}

.results-header {
  width: 50%;
  min-height: 100px;
  margin-left: 200px;
  font-family: var(--primary-font);
  font-style: var(--primary-font-style-normal);
  color: var(--primary-color);
  font-size: 50px;
}

.sec-3-top {
  min-height: 500px;
}

.results {
  width: 50%;
  margin: auto;
  min-height: 350px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.result-listing {
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 90%;
  min-height: 350px;
  padding: 20px;
  padding-top: 0px;
  box-sizing: border-box;
}

.testimonial-header {
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 40px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.testimonial-photo {
  border-radius: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.testimonial-text {
  width: 100%;
  font-size: 25px;
  font-family: var(--primary-font);
}

.results-tab {
  min-height: 50px;
  width: 30%;
  margin: auto;
  display: flex;
  align-items: center;
}

.selectable {
  margin: 0 5px;
}

.selectable:hover {
  cursor: pointer;
}

.sec-3-bottom {
  display: flex;
  padding-top: 100px;
  justify-content: flex-end;
  width: 100%;
}

.sec-3-graphics {
  width: 35%;
  margin-right: -50px;
  margin-bottom: 50px;
  transform: skewX(-12.5deg);
}

.section-4 {
  width: 100%;
  min-height: 100vh;
  background-color: var(--neutral-white);
  border-top: 0.25px solid #0d0d0d45;
  padding-top: 150px;
  padding-bottom: 100px;
}

.packages-section-header {
  width: 70%;
  margin: auto;
  font-family: var(--primary-font);
  font-size: 50px;
  color: var(--primary-color);
}

.packages-section {
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin: auto;
  padding-top: 50px;
}

.package {
  width: 30%;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition-duration: 1s;
}

.package:hover {
  transform: scale(1.03);
}

.package-header {
  width: 100%;
  height: 150px;
  background-color: var(--primary-color);
  border: 0.25px solid var(--primary-color);
  border-radius: 15px 15px 0px 0px;
  overflow: hidden;
}

.package-header-1 {
  background: linear-gradient(0deg, #0d0d0def 0%, #0d0d0d37 20%),
    url("./assets/personal_trainer_profile_01_boxing_1_no_mask.png");
  background-repeat: no-repeat;
  background-size: 100%;
}

.package-header-2 {
  background: linear-gradient(0deg, #0d0d0def 0%, #0d0d0d37 20%),
    url("./assets/personal_trainer_profile_02_stretch_no_mask.png");
  background-repeat: no-repeat;
  background-size: 100%;
}

.package-header-3 {
  background: linear-gradient(0deg, #0d0d0def 0%, #0d0d0d37 20%),
    url("./assets/personal_trainer_profile_01_boxing_2_no_mask.png");
  background-repeat: no-repeat;
  background-size: 100%;
}

.package-info {
  width: 100%;
  min-height: 250px;
  border: 0.25px solid var(--neutral-black);
}

.package-pricing {
  width: 100%;
  text-align: center;
}

.package-pricing p {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 50px;
  color: var(--neutral-white);
  background-color: var(--primary-color);
}

.package-name {
  text-align: center;
  font-family: var(--primary-font);
  font-size: 30px;
  margin: auto;
  margin-bottom: 0;
}

.package-info ul {
  list-style-type: disc;
  margin: 0 auto;
  padding-top: 10px;
}

.package-info ul li {
  font-family: var(--primary-font);
  font-size: 20px;
  margin-bottom: 10px;
}

.add-to-cart {
  width: 100%;
  min-height: 50px;
  margin: auto;
}

.add-to-cart button {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 30px;
  color: var(--primary-color);
  border: 0.25px solid var(--neutral-black);
  border-radius: 0px 0px 15px 15px;
  transition-duration: 0.25s;
}

.add-to-cart button:hover {
  cursor: pointer;
  background-color: var(--primary-color);
  color: var(--neutral-white);
}

footer {
  width: 100%;
  min-height: 250px;
  background-color: var(--neutral-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.left-footer {
  font-size: 25px;
  font-family: var(--primary-font);
  color: var(--neutral-white);
  margin-left: 25px;
}

.right-footer {
  font-size: 25px;
  font-family: var(--primary-font);
  color: var(--neutral-white);
  margin-right: 25px;
}

.link-portfolio {
  color: var(--neutral-white);
}

.fixed-nav {
  position: fixed;
  animation-name: reveal_nav;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  background-color: #efefefcf;
  z-index: 2;
}

.fixed-nav .nav-item {
  color: var(--primary-color);
}

.fixed-nav .nav-item::before {
  background-color: var(--primary-color);
}

.fixed-nav .nav-schedule {
  color: var(--neutral-white);
}

.hidden-cart {
  display: none;
}

.hidden-train-info {
  display: none;
}

@keyframes reveal_nav {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}

.hidden-nav {
  display: none;
}

@media (max-width: 600px) {
  .nav-right {
    position: absolute;
    flex-direction: column;
    right: 0;
    top: 100px;
    background-color: var(--primary-color);
    border: 1px solid var(--neutral-white);
    z-index: 3;
  }

  .nav-item {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .cart-mobile {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 3;
  }

  .cart-mobile:hover {
    cursor: pointer;
  }

  .current-cart-mobile {
    position: fixed;
    box-sizing: border-box;
    bottom: 77px;
    right: 20px;
    padding: 10px;
    z-index: 2;
    width: 300px;
    min-height: 100px;
    background-color: var(--neutral-white);
    box-shadow: 3px 3px 6px var(--neutral-black);
    border-radius: 5px;
    font-family: var(--primary-font);
  }

  .hero-left {
    padding-top: 100px;
  }

  .hero-left h1 {
    font-size: 75px;
  }

  .hero-left h2 {
    font-size: 20px;
  }

  .hero-left button {
    width: 75%;
    font-size: 20px;
  }

  .hero_img_lady {
    left: -150px;
    scale: 70%;
  }

  .section-2 {
    padding-top: 100px;
  }

  .meet-the-trainer {
    width: 75%;
    font-size: 50px;
    margin-bottom: 0px;
  }

  .trainer-select {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    min-height: 50px;
  }

  .trainer {
    animation-name: trainer-selected;
    animation-duration: 0.75s;
    animation-fill-mode: forwards;
  }

  @keyframes trainer-selected {
    0% {
      transform: translateY(5%);
      filter: blur(5px);
      opacity: 0.5;
    }
    100% {
      transform: translateY(0%);
      filter: blur(0px);
      opacity: 1;
    }
  }

  .trainer-desc {
    width: 60%;
    font-size: 20px;
    font-family: var(--primary-font);
    background-color: var(--neutral-white);
    color: var(--neutral-black);
    border: 1px solid var(--neutral-black);
    opacity: 0.5;
  }

  .trainer-desc:hover {
    cursor: pointer;
  }

  .active-button {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--neutral-white);
    opacity: 1;
  }

  .train-in {
    flex-direction: column;
  }

  .train-in-header {
    margin: 0 auto;
  }

  .train-in-header p {
    text-align: center;
  }

  .train {
    margin-bottom: 25px;
  }

  .train-title {
    font-size: 20px;
  }

  .train-info {
    top: 0;
    left: 200px;
    padding: 5px 5px;
  }

  .results-header {
    margin: 0 auto;
  }

  .results-header p {
    text-align: center;
  }

  .results {
    width: 85%;
  }

  .testimonial-load {
    animation-name: show-testimonial;
    animation-duration: 9s;
    animation-fill-mode: forwards;
  }

  @keyframes show-testimonial {
    0% {
      transform: translateY(-5%);
      filter: blur(5px);
      opacity: 0.5;
    }

    10% {
      transform: translateY(0%);
      filter: blur(0px);
      opacity: 1;
    }

    100% {
      transform: translateY(0%);
      filter: blur(0px);
      opacity: 1;
    }
  }

  .package-select {
    display: flex;
    width: 70%;
    margin: 0 auto;
    justify-content: space-between;
  }

  .package {
    animation-name: show-package;
    animation-duration: 0.75s;
    animation-fill-mode: forwards;
  }

  @keyframes show-package {
    0% {
      transform: translateY(5%);
      filter: blur(5px);
      opacity: 0.5;
    }

    100% {
      transform: translateY(0%);
      filter: blur(0px);
      opacity: 1;
    }
  }

  .package-btn {
    width: 33%;
    min-height: 50px;
    font-size: 20px;
    font-family: var(--primary-font);
    background-color: var(--neutral-white);
    color: var(--neutral-black);
    border: 1px solid var(--neutral-black);
    opacity: 0.5;
  }

  .package-btn:hover {
    cursor: pointer;
  }

  .active-package {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--neutral-white);
    opacity: 1;
  }

  .packages-section {
    flex-direction: column;
  }

  .package {
    width: 100%;
  }

  .button-package {
    min-height: 50px;
  }

  footer {
    min-height: 100px;
  }

  .left-footer {
    font-size: 17px;
  }

  .right-footer {
    font-size: 17px;
  }

  .fixed-nav .nav-right {
    background-color: var(--neutral-white);
    border: 1px solid var(--primary-color);
  }

  .fixed-nav .nav-item {
    color: var(--primary-color);
  }

  .fixed-nav .nav-schedule {
    color: var(--neutral-white);
  }
}
