/* CSS RESET */

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

/* Page Container Styles */

.content {
  width: 100%;
  height: 100%;
  margin-left: 60px;
}

/* Navigation Tooltip Styling */

#fp-nav ul li .fp-tooltip {
  color: white;
  background-color: #222;
  padding: 10px;
}

/* Navigation Styling */

#fp-nav.fp-left {
  background-color: #ed2d34;
  left: 0;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 10px;
  width: 60px;
}

/* Product Page Styling, needed for modal */

#productPage {
  position: relative;
}

/* Coloring the navbar icons white */

#fp-nav ul li a span,
#fp-nav ul li a.active span {
  background-color: white;
  color: black;
}

/* Hide title and buttons */

#product-slider h3,
#product-slider button {
  display: none;
}

/* Product slider active item setting */

/* 
#product-slider .active h3,
#product-slider .active button {
  display: block;
} */

#product-slider .active + .owl-item h3,
#product-slider .active + .owl-item button {
  display: block;
}

/* Modal Styling */

#modal {
  display: none;
}

#modal.modal-active {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: white;
  border: 1px solid black;
  color: black;
  z-index: 100;
  transform: translate(-50%, -50%);
  max-width: 80vw;
  max-height: auto;
  padding: 50px;
}

/* Used to prevent the carousel from stretching the screen */

.owl-carousel {
  overflow: hidden;
}

/* Used to scale down the home image. You can remove this. */

img {
  max-width: 40vw;
}

/* PLEASE START YOUR STYLES UNDERNEATH THIS */

.icons {
  display: flex;
  justify-content: flex-end;
}

body {
  background-image: url(./banner.jpg);
  background-size: cover;
  font-family: sans-serif;
}

#homePage {
  display: flex;
  justify-content: space-between;
}

.home-details {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-self: center;
  margin: 50px;
  width: 100%;
  padding: 15px 15px;
  gap: 20px;
  margin-top: 15%;
}

.home-details p {
  font-size: 19px;
  color: #464646;
}

.premium {
  color: #464646;
}

.title-font {
  margin: 0px 0px 8px;
}

.sneaker-1 {
  max-width: 50%;
  height: 56%;
  display: flex;
  justify-content: flex-end;
  align-content: center;
  margin-right: 50px;
  margin-bottom: 10%;
  margin-top: 5%;
}

.btn-1 {
  text-decoration: none;
  background-color: transparent;
  color: black;
  padding: 15px 25px;
  border-radius: 50px;
  /* margin: 15px; */
  align-items: center;
  border: 3px solid black;
  font-weight: bold;
  width: fit-content;
}

.btn-text {
  display: flex;
  justify-content: center;
  margin-left: 20px;
}

.btn-1:hover {
  background-color: #ed2d34;
  color: white;
}

.air {
  display: flex;
  flex-direction: column;
  color: #ed2d34;
  margin-top: 5px;
}

.home-heading {
  font-size: 50px;
}

.home-heading p {
  margin-left: 25px;
  font-size: 25px;
}

.icons {
  display: flex;
  margin: 10px;
  padding: 10px;
  z-index: 100;
  position: fixed;
  top: 0;
  right: 0;
}

.icon-group i {
  border-radius: 50%;
  margin-right: 5px;
  padding: 15px;
}

.icon-group i:hover {
  background-color: #ed2d34;
  color: white;
}
/* model */

.product button {
  font-size: 15px;
  text-decoration: none;
  color: #222;
  padding: 10px 38px;
  border: 2px solid black;
  border-radius: 30px;
  cursor: pointer;
  gap: 15px;
}

.product button:hover {
  background-color: #ed2d34;
  color: white;
}
.model-container {
  display: flex;
  align-items: center;
}

.model-img {
  height: 35vh;
}

.model-description {
  display: flex;
  flex-direction: column;
  padding: 10px;
  color: #222;
  margin: 30px;
}

.description-p {
  font-size: 20px;
  margin-bottom: 30px;
}

.sizes {
  display: flex;
}

.sizes-text {
  font-size: 20px;
  color: #ed2d34;
  margin-right: 20px;
}

.sizes-numbers {
  color: rgb(48, 48, 48);
  font-size: 20px;
}

.selectors {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.selectors-title {
  font-size: 20px;
  color: #ed2d34;
}

.quantity {
  font-size: 20px;
  display: flex;
  margin-right: 10px;
}

.quantity p {
  margin-left: 15px;
}

.quantity .minus,
.positive {
  padding: 0 20px;
}

.color-title {
  margin-left: 20px;
  font-size: 20px;
  color: #ed2d34;
  margin-right: 20px;
}

.colors {
  margin: 10px;
  margin-right: 10px;
}

.C-one {
  background-color: orange;
  padding: 5px 10px;
  border: 1px solid black;
}

.C-two {
  background-color: blue;
  padding: 5px 10px;
  border: 1px solid black;
}

.C-three {
  background-color: lawngreen;
  padding: 5px 10px;
  border: 1px solid black;
}
.model-heading {
  font-size: 20px;
  margin-bottom: 20px;
}

.price {
  font-size: 35px;
  color: #ed2d34;
  margin-bottom: 30px;
}

.buy-btn a {
  font-size: 15px;
  text-decoration: none;
  color: #222;
  padding: 10px 38px;
  border: 2px solid black;
  border-radius: 30px;
  transition-duration: 0.3s;
}
.buy-btn a:hover {
  background-color: #ed2d34;
  color: white;
}

.model-subheading {
  color: #ed2d34;
  font-size: 30px;
  margin-bottom: 30px;
}

.close-btn {
  font-size: 15px;
  text-decoration: none;
  color: #222;
  padding: 10px 38px;
  border: 2px solid black;
  border-radius: 30px;
  cursor: pointer;
}

.bottom-img {
  padding: 10px;
  display: flex;
  height: 15vh;
  margin-bottom: 10px;
}

.close-btn:hover {
  background-color: #ed2d34;
  color: white;
}
.product-page-header-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* padding: 15px 15px; */
}

.number-stats {
  display: flex;
  justify-content: space-between;
}

.stat-group {
  display: flex;
  flex-direction: column;
  margin-right: 30px;
}

.stat-group span {
  font-size: 30px;
  align-self: center;
  margin-bottom: 5px;
}

.page-heading {
  font-size: 35px;
  margin-bottom: 2px;
  color: #464646;
}

.page-subtitle {
  font-size: 35px;
  color: #ed2d34;
}

/* .owl-carousel .owl-item img {
  height: auto;
  object-fit: cover;
  border-radius: 200px;
  align-self: center;
  margin: 30px;
} */

#productPage {
  padding: 10%;
}

.product {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* width: -moz-fit-content; */
}

.product img {
  height: 300px !important;
  width: 300px !important;
  object-fit: contain !important;
}

/* new code */
#testimonialPage {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 30px;
  padding: 15px 10%;
  margin: 0;
}

.testimonial-message {
  margin-left: 45px;
}
.testimonial {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
}

.testimonial-page-heading {
  margin-bottom: 15px;
  margin-left: 86px;
}

.testimonial-page-subtitle {
  font-size: 40px;
  color: #ed2d34;
}

.testimonial i {
  margin-bottom: 15px;
  color: #6b6a6a;
}

.testimonial-img {
  height: auto;
  object-fit: cover;
  align-self: center;
  margin: 30px;
  max-width: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  display: block;
}

.contact-page-header-container {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 15px 15px;
  margin-left: 25px;
}

.contact-details-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 15px 15px;
}

.contact-details-heading {
  padding: 10px;
  margin-bottom: 15px;
  font-size: 20px;
}

.page-subtitle {
  font-size: 50px;
}

.page-heading {
  color: #464646;
  font-size: 50px;
  margin-bottom: 10px;
}

.contact-details-description {
  flex-direction: column;
  padding: 10px;
}

.contact-left-right {
  display: flex;
}

.contact-left-side {
  max-width: 500px;
}

.contact-details-description,
.contact-details-heading,
.locations {
  padding: 10;
  margin-right: 25px;
}

.section {
  display: flex;
}

form {
  display: flex;
  flex-direction: column;
  width: 500px;
  margin-bottom: 100%;
  margin-left: 35%;
}

.contact-form input {
  border: none;
  outline: none;
  border-bottom: 1px solid grey;
  font-size: 18px;
  margin-bottom: 16px;
}

.contact-form textarea {
  border: none;
  outline: none;
  border-bottom: 1px solid grey;
  font-size: 18px;
  margin-bottom: 16px;
  padding: 15px;
}

.contact-form button {
  background-color: transparent;
  outline: none;
  color: #ed2d34;
  border-radius: 50px;
  height: 50px;
  margin-top: 20px;
  border: 1px solid #ed2d34;
}

.contact-form button:hover {
  color: white;
  background-color: #ed2d34;
}

.locations {
  padding: 15px 15px;
  font-size: 25px;
  margin-top: 30px;
}

.locations i {
  display: flex;
  margin-bottom: 30px;
}

.locations p {
  font-family: sans-serif;
  font-size: 15px;
  margin-left: 15px;
  color: #222;
}

.contact-icon-group {
  display: flex;
  margin: 25px;
  padding: 10px;
}

.contact-icon-group i {
  font-size: 15px;
  margin-right: 25px;
  margin-bottom: 25px;
  border-radius: 50%;
  padding: 15px;
}

.contact-icon-group i:hover {
  background-color: #ed2d34;
  color: white;
}
