h1 {
  font-family: "diazo-mvb-ex-cond", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-family: "diazo-mvb-ex-cond", sans-serif;
  font-size: 50px;
  color: black;
  margin-bottom: 20px;
}

h2 {
  font-family: "diazo-mvb-ex-cond", sans-serif;
  font-size: 30px;
  color: black;
  margin-bottom: 20px;
}

h3 {
  font-family: "diazo-mvb-ex-cond", sans-serif;
  font-size: 20px;
  color: black;
  margin-bottom: 20px;
}

p {
  font-family: "mabry-regular-pro", arial, sans-serif;
  font-size: 14px;
  color: black;
  margin-bottom: 20px;
}

.arheader {
  background-color: #F28981;
  padding: 5px;
  text-align: center;
  color: white;
  font-family: "diazo-mvb-ex-cond", sans-serif;
  overflow: hidden;
  font-weight: bold;
  font-size: 30px;
}

model-viewer {
  width: auto;
  max-width: 1919px;
  height: 700px;
  background-color: #F28981;
  margin: 0 auto;
  overflow: hidden;
}

.Hotspot {
  background: url(../images/hotspot.svg) center no-repeat;
  border: 0px;
  width: 45px;
  height: 38px;
  display: none;
  transition: all 1s ease-in-out;
}

.Hotspot:not([data-visible]) {
  opacity: 0;
  pointer-events: none;
}

.HotspotAnnotation {
  visibility: hidden;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.8);
  display: block;
  font-family: Futura, Helvetica Neue, sans-serif;
  font-size: 18px;
  font-weight: 700;
  left: calc(100% + 1em);
  max-width: 300px;
  overflow-wrap: break-word;
  padding: 0.5em 1em;
  position: absolute;
  top: 50%;
  width: max-content;
  text-align: left;
}

.HotspotAnnotation p {
  color: #333;
  line-height: 22px;
  font-weight: 300;
}

.HotspotAnnotation h2 {
  font-size: 18px;
  margin-bottom: 5px;
}

model-viewer::part(default-progress-bar) {
  height: 30px;
  background-color: #F28981;
}

.Hotspot[data-position="0 0 0"] {
  animation: pulse 1s ease-in-out infinite alternate;
}

@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
/* AR Rules */
#ar-button {
  background-image: url(../images/ar_icon.png);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 12px 50%;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  bottom: 16px;
  padding: 0px 16px 0px 40px;
  font-family: Roboto Regular, Helvetica Neue, sans-serif;
  font-size: 14px;
  color: #4285f4;
  height: 36px;
  line-height: 36px;
  border-radius: 18px;
  border: 1px solid #DADCE0;
}

#ar-button:active {
  background-color: #E8EAED;
}

#ar-button:focus {
  outline: none;
}

#ar-button:focus-visible {
  outline: 1px solid #4285f4;
}

@keyframes circle {
  from {
    transform: translateX(-50%) rotate(0deg) translateX(50px) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg) translateX(50px) rotate(-360deg);
  }
}
@keyframes elongate {
  from {
    transform: translateX(100px);
  }
  to {
    transform: translateX(-100px);
  }
}
model-viewer > #ar-prompt {
  position: absolute;
  left: 50%;
  bottom: 60px;
  animation: elongate 2s infinite ease-in-out alternate;
  display: none;
}

model-viewer[ar-status=session-started] > #ar-prompt {
  display: block;
}

model-viewer > #ar-prompt > img {
  animation: circle 4s linear infinite;
}

/* ---Header Styles--- */
header .logo {
  width: 30%;
}

#hamburger-menu {
  background-color: #ECE7DC;
  color: #F28981;
  position: fixed;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  visibility: hidden;
  /* Initial visibility set to hidden */
}

#hamburger-menu ul li {
  list-style: none;
  line-height: 4em;
  font-size: 20px;
}

#hamburger-menu ul li:hover {
  cursor: pointer;
}

#hamburger-open,
#hamburger-close {
  font-size: 30px;
}

#hamburger-open:hover,
#hamburger-close:hover {
  cursor: pointer;
  color: white;
}

#hamburger-menu.visible {
  visibility: visible;
  /* Add any other styles for the visible state if needed */
}

.main-nav {
  margin-top: auto;
  margin-bottom: auto;
  font-family: "MabriPro-Bold";
}

.main-nav ul li {
  list-style-type: none;
  display: inline;
  margin-right: 50px;
  font-size: 20px;
}

.main-nav ul li:last-of-type {
  margin-right: 0;
}

/*change color of the text*/
.box-center ul li:hover {
  color: #F28981;
}

.main-nav ul li:hover {
  padding-bottom: 2px;
  border-bottom: 2px solid white;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

@media screen and (max-width: 1199px) {
  .main-nav ul li {
    margin-right: 30px;
    font-size: 18px;
  }
}
.nav_box {
  text-align: center;
  background-color: #ECE7DC;
}

a {
  text-decoration: none;
  font-family: "MabryPro-Bold", arial, sans-serif;
  color: #F28981;
  font-size: 24px;
}

header {
  background-color: #ECE7DC;
  padding: 0px;
}

.xrayheader {
  font-size: 50px;
  color: #F28981;
  margin-bottom: 10px;
}

.p_xray {
  font-size: 20px;
  color: black;
  margin-bottom: 10px;
}

#outerShell {
  display: none;
}

@media screen and (min-width: 1200px) {
  #mobil-tablet-view {
    display: none;
  }
  #outerShell {
    display: block;
    max-width: 1200px;
    border: solid 1px #666;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
  }
  #imageCon {
    position: relative;
    max-width: 1200px;
    height: 90vh;
    overflow: hidden;
  }
  .slideImage {
    position: absolute;
    left: 0;
    right: 0;
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 1s ease-in-out;
  }
  .image-right {
    background: url(../images/earbud-x-ray.jpg) no-repeat;
    background-size: cover;
  }
  .image-left {
    background: url(../images/earbud.jpg) no-repeat;
    background-size: cover;
    width: 50%;
  }
  .image-drag {
    background-color: #F28981;
    left: 50%;
    width: 10px;
    cursor: pointer;
    height: 90vh;
    position: absolute;
    top: 0;
    z-index: 999;
    transition: all 1s ease-in-out;
  }
}
.ad_box {
  text-align: center;
  padding: 10px;
  background-color: #F28981;
}

/* ---Footer Styles--- */
footer #logo {
  width: 30%;
}

footer {
  background-color: #ECE7DC;
  padding-top: 20px;
  overflow: hidden;
}

/*change color of footer */
.footer-nav ul li:hover {
  color: #F28981;
}

.footer-nav ul li {
  list-style-type: none;
  margin-bottom: 25px;
  font-size: 20px;
}

.footer-nav ul li:last-of-type {
  margin-bottom: 0;
}

.footer-heading {
  color: #F28981;
  font-size: 30px;
  margin-bottom: 10px;
}

.footer-heading:hover {
  color: white;
}

.socials ul li {
  display: inline;
  margin-right: 15px;
  font-size: 28px;
}

.socials ul li:hover {
  color: #F28981;
}

.socials ul li:last-of-type {
  margin-right: 0;
}

footer hr {
  border: none;
  height: 1px;
  background-color: white;
}

@media screen and (max-width: 1199px) {
  .footer-text {
    font-size: 18px;
  }
  .footer-heading {
    font-size: 28px;
  }
  .footer-nav ul li {
    font-size: 20px;
  }
  .socials ul li {
    font-size: 25px;
  }
}
.footer-heading {
  color: #F28981;
  font-size: 30px;
  margin-bottom: 10px;
  font-family: "diazo-mvb-ex-cond", sans-serif;
}

/* ---End of Footer Styles--- */
body {
  background-color: white;
}

#stanimation {
  max-width: 100%;
}

.animation-text {
  font-size: 50px;
  color: #F28981;
  margin-bottom: 10px;
}

.textshop {
  margin-top: 170px;
}

.shop_space {
  padding: 20px;
  background-color: #ECE7DC;
  color: #ECE7DC;
}

.shop_btn {
  background-color: #F28981;
  color: white;
  border: none;
  padding: 10px;
  font-size: 20px;
  font-family: "mabry-regular-pro", arial, sans-serif;
  margin-top: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}

.shop_btn:hover {
  background-color: #ECE7DC;
  color: #F28981;
  border: 1px solid #F28981;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border-radius: 5px;
}

.img_earbuds {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
  overflow: hidden;
}/*# sourceMappingURL=main.css.map */