/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "Roboto", sans-serif;
}

header {
  background-color: black;
  height: 60px;
}
header nav {
  width: 56%;
  margin-right: auto;
  margin-left: auto;
}
header nav .nav-items {
  padding-left: 0;
  margin: 0 0;
  font-size: 18px;
  list-style: none;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 900px) {
  header nav .nav-items {
    justify-content: center;
  }
}
@media screen and (max-width: 900px) {
  header nav .nav-items .nav-item {
    display: none;
  }
}
header nav .nav-items .nav-item a {
  text-decoration: none;
  color: whitesmoke;
}
header nav .nav-items .nav-item.logo {
  font-size: 1.6rem;
}
@media screen and (max-width: 900px) {
  header nav .nav-items .nav-item.logo {
    display: block;
    color: white;
    font-weight: 500;
  }
}

.main-slider {
  height: calc(100vh - 60px - 100px);
  position: relative;
  overflow-x: hidden;
}
.main-slider .product-container {
  display: flex;
  width: 800px;
  max-width: 95%;
  padding: 20px auto;
  padding-top: 200px;
  gap: 72px;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 900px) {
  .main-slider .product-container {
    flex-direction: column-reverse;
    padding-top: 0;
  }
  .main-slider .product-container .product-image {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    max-height: 267px;
  }
  .main-slider .product-container .product-image img {
    height: 300px;
  }
}

.button {
  background-color: #ff7a00;
  color: rgb(255, 255, 255);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 12px 30px;
  border-radius: 100px;
  margin: 10px 0;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .button {
    margin-left: auto;
    margin-right: auto;
  }
}

.product-name {
  font-size: 40px;
}
@media screen and (max-width: 900px) {
  .product-name {
    text-align: center;
  }
}

.product-subHeading {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 900px) {
  .product-subHeading {
    text-align: center;
  }
}

@media screen and (max-width: 900px) {
  .product-info-para {
    text-align: center;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}

.slider-position-indicator {
  display: flex;
  gap: 20px;
  margin: 45px auto;
  justify-content: center;
}
.slider-position-indicator .slider-dot {
  height: 10px;
  width: 10px;
  background-color: rgba(204, 204, 204, 0.8);
  border-radius: 50%;
  cursor: pointer;
}

.dot-active {
  background-color: #707070 !important;
}

.left {
  left: -200% !important;
}

.right {
  right: -200% !important;
}

.know-more a {
  text-decoration: none;
  color: white;
}

.sub-nav {
  position: relative;
  transition: all 0.3s ease;
  z-index: -300;
}
.sub-nav .sub-nav-container {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #f0f0f0;
  color: black;
  padding: 5px 0px;
}
.sub-nav .nav-profile img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
}
.sub-nav .country-indicator-container {
  display: flex;
  align-items: center;
  gap: 10px;
  align-items: flex-start;
}
.sub-nav .country-indicator-container img {
  height: 30px;
}
.sub-nav .country-indicator-container i {
  align-self: center;
}
.sub-nav .nav-view-cart {
  display: flex;
  gap: 10px;
  align-items: center;
}
.sub-nav .location-container {
  display: flex;
  gap: 8px;
  align-items: center;
}
.sub-nav #nav-search-form {
  display: flex;
  width: 50%;
  position: relative;
}
.sub-nav #nav-search-form input[type=text] {
  width: 100%;
  border-radius: 25px;
  color: black;
  padding: 10px 20px;
  border: 0px;
}
.sub-nav #nav-search-form input[type=text]:focus {
  border: 0px;
  outline: none;
}
.sub-nav #nav-search-form button {
  position: absolute;
  right: 10px;
  background-color: transparent;
  border: 0;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}

.sub-nav.hide {
  transform: translateY(-100%) !important;
  z-index: -500 !important;
  transition: all 0.3s ease;
}/*# sourceMappingURL=main.css.map */