* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
a {
  text-decoration: none;
}
body {
  background-color: #191919;
  overflow-x: hidden !important;
}
.mobile-cards {
  display: none;
}
.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;       
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}

.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}
/*                                    */
.hi {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero {
  position: relative;
  background-color: #000000;
  background-image: radial-gradient(
      at 1% 1%,
      rgba(255, 208, 0, 0.904) 0px,
      transparent 50%
    ),
    radial-gradient(at 100% 69%, rgba(255, 153, 0, 0.986) 0px, transparent 35%);
  padding-left: 5%;
  padding-right: 2%;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
}
.logo {
  display: flex;
  gap: 10px;
  width: 100%;
}
.logo > a > svg {
  height: 180px;
  filter: invert(100%);
}
.menue {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  gap: 50px;
  padding-top: 20px;
}
.menue > li > a {
  font-size: 1.8em;
  color: white;
  cursor: pointer;
}
.menue > li > a:hover {
  color: gold;
  transition: ease-in-out 0.3s;
}
.wrapper {
  display: flex;
  padding-top: 100px;
}
.hero-content {
  width: 50%;
  text-shadow: 0px 0px 10px black;
}
.hero-content > h1 {
  max-width: 35ch;
  font-size: clamp(2em, 1.5vw + 2.5em, 4em);
  font-weight: bold;
  color: white;
  width: 100%;
}
.hero-content > p {
  color: rgb(182, 177, 177);
  font-size: 1.3em;
  max-width: 60ch;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.404);
  margin-top: 10px;
}
.btn-container {
  display: flex;
  gap: 20px;
  width: 100%;
  position: relative;
  margin-top: 20px;
}
.btn1,
.btn2 {
  border: none;
  font-size: 1.5em;
  position: relative;
  padding: 0.7em 2em;
  margin-top: 100px;
  font-weight: bolder;
}

.btn2 > img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  filter: sepia(1) saturate(5) brightness(0.8) contrast(0.8);
  transition: transform 0.3s ease;
}
.btn2 > img:hover {
  transform: translateY(-70%);
}

.btn1 {
  background-color: rgba(255, 217, 0, 0.87);
  color: rgb(235, 230, 230);
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.404);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease;
  cursor: pointer;
  outline: none;
  border: gold 1px solid;
}
.btn1:hover {
  background-color: transparent;
  text-shadow: none;
  transform: translateY(-5px);
}
.btn2 {
  background-color: rgba(0, 0, 0, 0.87);
  color: gold;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.404);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease;
  cursor: pointer;
  outline: none;
  border: gold 1px solid;
}
.btn2:hover {
  background-color: gold;
  color: white;
  text-shadow: none;
  transform: translateY(-5px);
}
.hero-img {
  width: 50%;
  height: 100%;
  min-height: 60vh;
  position: relative;
  right: -5%;
}
.hero-img > img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 130%;
  object-fit: contain;
  filter: drop-shadow(10px 10px 5px gold); /* Add this line */
}
.hero2 {
  display: flex;
  flex-direction: column;
  margin-top: 100px;
  margin-bottom: 50px;
}
.intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 1.3em;
}

.intro > h3 {
  color: gold;
  font-size: clamp(2em, 1.5vw + 1.2em, 5em);
  margin-bottom: 50px;
}
.intro > h1 {
  padding-bottom: 1em;
  font-size: clamp(2em, 1.5vw + 1.2em, 5em);
  color: white;
}

.intro2 {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 80%;
}
.icon {
  width: 25% !important;
  padding: 0 1em;
  padding-bottom: 2em;
}
.icon > div > h4 {
  font-size: clamp(1em, 1.5vw + 0.2em, 5em);
}
.icon > div:hover {
  box-shadow: rgb(5, 5, 5) 0px 6px 24px 0px, gold 0px 0px 0px 1px;
}
.icon > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  border-radius: 10% !important;
  padding: 3em;
  background-color: black;
}

.icon > div > svg {
  max-width: 200px;
  height: 250px;
  min-width: 100px;
}
.icon > div > svg > path {
  fill: gold;
}

.subwoofer {
  margin-bottom: 5px;
  fill: gold;
}

.column1 {
  background-image: url("../img/headphones.jpg");
}

.column4 {
  background-image: url("../img/321.jpg");
}

.landscape {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}
.column2 {
  background-image: url("../img/micc2.jpg");
}
.landscape2 {
  width: 100%;
  height: 80vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  background-position: left;
}

.slide-section {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  color: rgb(128, 128, 128);
  font-size: 2.5em;
}
.inner-content {
  color: white;
  max-width: 50ch;
  font-size: 2em;
  justify-content: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  left: 5%;
  gap: 5px;
  max-width: 550px;
  transform: translateX(-150%);
  transition: opacity 0.5s, transform 0.8s;
}

.inner-right {
  color: white;
  max-width: 50ch;
  font-size: 2em;
  justify-content: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-left: auto; /* Move the content to the far right */
  gap: 5px;
  margin-right: 10vh;
  max-width: 550px;
  transition: opacity 0.5s, transform 0.8s;
  transform: translateX(150%);
}
.inner-bottom {
  color: white;
  max-width: 50ch;
  font-size: 2em;
  justify-content: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  left: 5%;
  gap: 5px;
  max-width: 550px;
  transform: translateX(-150%);
  transition: opacity 0.5s, transform 0.8s;
}
.show {
  opacity: 1;
  transform: translateX(0);
}
.line {
  background-color: white;
  height: 1px;
  width: 100%;
}

.inner-top > h3 {
  display: flex;
  align-items: center;
  margin: 0;
  font-family: "Univers Condensed", fallback-font, "Helvetica Neue", Helvetica,
    sans-serif;
  font-weight: 400;
  font-size: calc(16px + 2 * ((100vw - 320px) / 1280));
  text-shadow: #fc0 1px 0 10px;
}
.inner-content > span,
.inner-right > span,
.inner-bottom > span {
  padding-bottom: 1rem;
  font-size: calc(36px + 24 * ((100vw - 320px) / 1280));
  line-height: 1;
  letter-spacing: -1px;
  font-family: "Univers Condensed", fallback-font, "Helvetica Neue", Helvetica,
    sans-serif;
  font-weight: 700;
  font-size: 60px;
  text-shadow: 1px 1px 2px black;
}
.inner-p {
  margin: 1rem 0 0;
  line-height: 1.5;
  letter-spacing: 1.75px;
  font-size: 15px;
  font-family: "Univers Regular", fallback-font, "Helvetica Neue", Helvetica,
    sans-serif;
}
.inner-content > button,
.inner-right > button,
.inner-bottom > button {
  display: inline-block;
  margin: 0;
  padding: 0.5rem 2.5rem;
  background: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 6.25rem;
  transition: color 0.5s, background 0.5s, border-color 0.5s;
  will-change: auto;
  color: gold;
  font-family: "Univers Condensed", fallback-font, "Helvetica Neue", Helvetica,
    sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  max-width: 300px;
  margin-top: 1em;
}
.inner-content > button:hover,
.inner-right > button:hover,
.inner-bottom > button:hover {
  background-color: white;
  color: black;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 8em 0;
  gap: 100px;
  opacity: 0;
  transform: translateY(20%);
  transition: opacity 1s, transform 0.8s;
}
.show1 {
  opacity: 1;
  transform: translateY(0);
}

.product {
  box-shadow: rgb(17, 16, 16) 0px 20px 15px;
  padding: 1em;
  height: 450px !important;
  width: 95% !important;
  margin-right: 5%;
}
.product:hover {
  box-shadow: black 0px 5px 15px;
}

.product-line {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: gold;
  bottom: 0;
  left: 0;
}
.hello {
  width: 60% !important;
  overflow: hidden;
  position: relative;
}
.products-container {
  height: 100%;
  display: flex;
  flex-direction: row;
  padding: 0 1.5em;
  width: calc(100% / 2) !important;
}
.swiper-button-prev {
  left: 4% !important;
}
.swiper-button-next {
  right: 4% !important;
}
.product-img {
  height: 80%;
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  align-self: center;
  margin: 0 auto;
}

.product-img img {
  max-height: 350px;
  max-width: 400px;
  object-fit: cover;
  filter: drop-shadow(0px 1px 5px rgb(0, 0, 0));
}

.product-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  text-align: center;
}

.product-title-wrapper {
  display: flex;
  flex-direction: column;
  text-align: left;
  position: absolute;
  bottom: 1%;
  padding: 1em;
  gap: 10px;
  color: white;
}

.product-title-text {
  font-family: "Univers Condensed", fallback-font, "Helvetica Neue", Helvetica,
    sans-serif;
  font-weight: 700;
  line-height: 1;
  border: 0;
  padding-bottom: 0;
  font-size: 24px;
}

.product-subtitle {
  font-size: 14px;
  font-family: "Univers Condensed", fallback-font, "Helvetica Neue", Helvetica,
    sans-serif;
  margin-bottom: 0;
  color: #6c6c6c;
  text-align: left;
}

.banner {
  display: flex;
  flex-direction: column;
  width: 30%;
}

.banner-subtitle-wrapper {
  display: flex;
  align-items: center;
  margin: 0 0 0.5rem;
}

.banner-subtitle-wrapper h3 {
  display: flex;
  align-items: center;
  font-family: "Univers Condensed", fallback-font, "Helvetica Neue", Helvetica,
    sans-serif;
  font-weight: 400;
  margin: 0;
  line-height: 1;
  text-align: left;
  font-size: 18px;
  color: gold;
}
.banner-subtitle-wrapper svg {
  fill: gold;
}

.banner-title {
  font-size: clamp(2em, 1.5vw + 1.7em, 2.5em);
  max-width: 75%;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(252, 250, 250, 0.5);
  letter-spacing: -1px;
  margin: 0 0 1rem;
  font-family: "Univers Condensed", fallback-font, "Helvetica Neue", Helvetica,
    sans-serif;
  font-weight: 700;
  color: white;
}

.button-secondary {
  display: inline-block;
  margin: 0;
  padding: 0.5rem 2.5rem;
  border: 1px solid #000000;
  border-radius: 6.25rem;
  will-change: auto;
  font-family: "Univers Condensed", fallback-font, "Helvetica Neue", Helvetica,
    sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 2.5rem;
}
.column3 {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.column3 > div {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.column3 > div > img {
  transition: transform 0.8s ease;
}

.column3 > div:hover img {
  transform: scale(1.08);
}

.column3 > div > img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.texxt {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 5%;
  left: 5%;
  gap: 10px;
  width: 100%;
}

.texxt > h3 {
  display: flex;
  align-items: center;
  margin: 0;
  font-weight: 400;
  font-size: calc(16px + 2 * ((100vw - 320px) / 1280));
  color: white;
}
.texxt > h2 {
  font-size: clamp(0.5em, 1vh + 1em, 2em);
  color: gold;
  line-height: 1;
  letter-spacing: -1px;
  font-family: "Univers Condensed", fallback-font, "Helvetica Neue", Helvetica,
    sans-serif;
  font-weight: 700;
  text-shadow: 1px 1px 2px black;
}
.column3 > div:nth-child(1) {
  font-size: 14px;
}
.lline {
  height: 1px;
  width: 80%;
  background-color: white;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.slider11 {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 90%;
  height: auto;
  padding: 0.5em 0;
}

.slider11:before {
  left: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.452)
  );
}

.slider11:after {
  right: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.445)
  );
}

.slider-wrapper11 {
  display: inline-block;
  animation: 25s slide infinite linear;
}

.slider-wrapper11 > img {
  padding: 0 1em;
  height: 150px;
  max-width: 250px;
  aspect-ratio: 16 / 9;
}

.footer-distributed {
  background-color: #000;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px sans-serif;
  position: relative;
  padding: 55px 50px;
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
  display: inline-block;
  vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left {
  width: 40%;
}
.footer-left > a > svg {
  width: 150px;
  height: 150px;
  filter: invert(100%);
}
/* The company logo */

.footer-distributed h3 {
  color: #ffffff;
  font: normal 36px "Cookie", cursive;
  margin: 0;
}

.footer-distributed h3 span {
  color: #5383d3;
}

/* Footer links */

.footer-distributed .footer-links {
  color: #ffffff;
  margin: 20px 0 12px;
  padding: 0;
}

.footer-distributed .footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
}

.footer-distributed .footer-company-name {
  color: #8f9296;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center {
  width: 35%;
}

.footer-distributed .footer-center i {
  background-color: #33383b;
  color: #ffffff;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
  font-size: 17px;
  line-height: 38px;
}

.footer-distributed .footer-center p {
  display: inline-block;
  color: #ffffff;
  vertical-align: middle;
  margin: 0;
}

.footer-distributed .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}

.footer-distributed .footer-center p a {
  color: white;
  text-decoration: none;
}

/* Footer Right */

.footer-distributed .footer-right {
  width: 20%;
}

.footer-distributed .footer-company-about {
  line-height: 20px;
  color: #92999f;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}
.header-mobile {
  display: none;
}
.footer-distributed .footer-icons {
  margin-top: 25px;
}

.footer-distributed .footer-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: #33383b;
  border-radius: 2px;

  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;

  margin-right: 3px;
  margin-bottom: 5px;
}

/* languages */
.nav-wrapper {
  text-align: center;
}
.sl-nav {
  display: inline;
}
.sl-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: inline-block;
}
.sl-nav li {
  cursor: pointer;
}
.sl-nav li ul {
  display: none;
}
.sl-nav li:hover ul {
  position: absolute;
  right: -15px;
  top: 45px;
  display: block;
  background: #fff;
  width: 120px;
  padding-top: 0px;
  z-index: 1;
  border-radius: 5px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  margin-right: 10px;
}
.sl-nav li:hover .triangle {
  position: absolute;
  top: 35px;
  right: 0px;
  z-index: 10;
  height: 14px;
  overflow: hidden;
  width: 30px;
  background: transparent;
}
.sl-nav li:hover .triangle:after {
  content: "";
  display: block;
  z-index: 20;
  width: 15px;
  transform: rotate(45deg) translateY(0px) translatex(10px);
  height: 15px;
  background: #fff;
  border-radius: 2px 0px 0px 0px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.sl-nav li ul li {
  position: relative;
  text-align: left;
  background: transparent;
  padding: 15px 15px;
  padding-bottom: 0;
  z-index: 2;
  font-size: 15px;
  color: #3c3c3c;
}
.sl-nav li ul li:last-of-type {
  padding-bottom: 15px;
}
.sl-nav li ul li span {
  padding-left: 5px;
}
.sl-nav li ul li span:hover {
  color: #18a5b8;
}
.sl-flag {
  display: inline-block;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
  width: 20px;
  height: 20px;
  background: #aaa;
  border-radius: 50%;
  position: relative;
  top: 2px;
  overflow: hidden;
}
.flag-tr {
  background: url("../img/123.svg");
  background-size: cover;
}
.flag-usa {
  background: url("../img/englishlanguage.svg");
  background-position: center;
  background-size: cover;
}

.sl-nav > ul > li > i > svg {
  transition: ease-in-out 0.3s;
}
.sl-nav > ul > li > i > svg:hover {
  transform: translateY(-5px);
}
.sl-nav > ul > li > i > svg {
  fill: gold;
  width: 40px;
  height: 40px;
}
.sl-nav li.active ul {
  position: absolute;
  right: -15px;
  top: 45px;
  display: block;
  background: #fff;
  width: 120px;
  padding-top: 0px;
  z-index: 1;
  border-radius: 5px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  margin-right: 10px;
}
@media (max-width: 880px) {
  .footer-distributed {
    font: bold 14px sans-serif;
    flex-direction: column;
  }

  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .footer-distributed .footer-center i {
    margin-left: 0;
  }
}

.column1-mobile {
  display: none;
}
.container-mobile {
  display: none;
}
.hero22 {
  display: none;
}
.ham {
  display: none;
}
/* The loader container */
.loader {
  width: 200px;
  height: 200px;
  perspective: 200px;
}

/* The dot */
.load {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  overflow: hidden;
  z-index: 99999;
  background: black;
  transition: opacity 1s ease-out; /* add transition */
  opacity: 1;
}

.hide-loader {
  opacity: 0; /* fade out instead of instantly hiding */
}
.dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin-top: -60px;
  margin-left: -60px;
  border-radius: 100px;
  border: 40px outset #ffd700; /* Gold color */
  transform-origin: 50% 50%;
  transform: rotateX(24deg) rotateY(20deg) rotateZ(0deg) translateZ(-25px);
  background-color: transparent;
  animation: dot1 1000ms cubic-bezier(0.49, 0.06, 0.43, 0.85) infinite;
}

.dot:nth-child(2) {
  width: 140px;
  height: 140px;
  margin-top: -70px;
  margin-left: -70px;
  border-width: 30px;
  border-color: #ffd700; /* Gold color */
  animation-name: dot2;
  animation-delay: 75ms;
  box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1);
  transform: rotateX(24deg) rotateY(20deg) rotateZ(0deg) translateZ(-25px);
}

.dot:nth-child(3) {
  width: 160px;
  height: 160px;
  margin-top: -80px;
  margin-left: -80px;
  border-width: 20px;
  border-color: #ffd700; /* Gold color */
  animation-name: dot3;
  animation-delay: 150ms;
  box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1);
  transform: rotateX(24deg) rotateY(20deg) rotateZ(0deg) translateZ(-25px);
}

@keyframes dot1 {
  0% {
    border-color: #ffd700; /* Gold color */
    transform: rotateX(24deg) rotateY(20deg) rotateZ(0deg) translateZ(-25px);
  }

  50% {
    border-color: #ffd700; /* Gold color */
    transform: rotateX(20deg) rotateY(20deg) rotateZ(50deg) translateZ(0px);
  }

  100% {
    border-color: #ffd700; /* Gold color */
    transform: rotateX(24deg) rotateY(20deg) rotateZ(0deg) translateZ(-25px);
  }
}

@keyframes dot2 {
  0% {
    border-color: #ffd700; /* Gold color */
    box-shadow: inset 0 0 15px 0 rgba(255, 255, 255, 0.2);
    transform: rotateX(24deg) rotateY(20deg) rotateZ(0deg) translateZ(-25px);
  }

  50% {
    border-color: #ffd700; /* Gold color */
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.8);
    transform: rotateX(20deg) rotateY(20deg) rotateZ(50deg) translateZ(0px);
  }

  100% {
    border-color: #ffd700; /* Gold color */
    box-shadow: inset 0 0 15px 0 rgba(255, 255, 255, 0.2);
    transform: rotateX(24deg) rotateY(20deg) rotateZ(0deg) translateZ(-25px);
  }
}
@keyframes dot3 {
  0% {
    border-color: #ffd700; /* Gold color */
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1);
    transform: rotateX(24deg) rotateY(20deg) rotateZ(0deg) translateZ(-25px);
  }

  50% {
    border-color: #ffd700; /* Gold color */
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.8);
    transform: rotateX(20deg) rotateY(20deg) rotateZ(50deg) translateZ(0px);
  }

  100% {
    border-color: #ffd700; /* Gold color */
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1);
    transform: rotateX(24deg) rotateY(20deg) rotateZ(0deg) translateZ(-25px);
  }
}
.menu {
  position: relative;
  display: flex;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 100%;
  &.active {
    .menu__list {
      opacity: 1;
      visibility: visible;
      visibility: visible;
      transform: scale(1);
      transition: transform 0.3s, visibility 0s 0s;
      li {
        a {
          -webkit-transition: all 0.5s;
          -moz-transition: all 0.5s;
          -ms-transition: all 0.5s;
          -o-transition: all 0.5s;
          transition: all 0.5s;
          opacity: 1;
        }
      }
    }
    .menu__list {
      li {
        &:nth-child(1) a {
          transition-delay: 0s;
        }
        &:nth-child(2) a {
          transition-delay: 0.2s;
        }
        &:nth-child(3) a {
          transition-delay: 0.4s;
        }
        &:nth-child(4) a {
          transition-delay: 0.6s;
        }
        &:nth-child(5) a {
          transition-delay: 0.8s;
        }
        &:nth-child(6) a {
          transition-delay: 1s;
        }
        &:nth-child(7) a {
          transition-delay: 1.2s;
        }
        &:nth-child(8) a {
          transition-delay: 1.4s;
        }
        &:nth-child(9) a {
          transition-delay: 1.6s;
        }
        &:nth-child(10) a {
          transition-delay: 1.8s;
        }
      }
    }
  }
  .menu__btn {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    background: linear-gradient(
      0deg,
      rgba(22, 9, 240, 1) 0%,
      rgba(49, 110, 244, 1) 100%
    );
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    i {
      color: #fff;
    }
  }
  .menu__list {
    list-style: none;
    overflow: hidden;
    display: flex;
    flex-flow: column;
    margin-top: 0;
    margin-bottom: 0;
    padding: 5px 0;
    border-radius: 4px;
    transform: scale(0);
    transform-origin: top left;
    transition: transform 0.3s, visibility 0s 0s;
    background: linear-gradient(0deg, #1609f0 0%, #316ef4 100%);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    li {
      display: flex;
      align-items: center;
      a {
        position: relative;
        display: inline-block;
        width: 100%;
        padding: 15px 25px;
        color: #fff;
        text-decoration: none;
        opacity: 0;
        &:hover {
          color: rgb(233 233 233 / 75%);
          transition: 0.25s !important;
          transition-delay: 0s;
        }
      }
    }
  }
}

.menu {
  &.menu--top-right {
    text-align: left;
    &.active {
      .menu__list {
        transform: scale(1);
        li {
          a {
            transform: translateX(0);
          }
        }
      }
    }
    .menu__btn {
      background: gold;
    }
    .menu__list {
      position: absolute;
      top: 0;
      right: 0;
      transform: scale(0);
      transform-origin: top right;
      background: gold;
      li {
        a {
          transform: translateX(10px);
        }
      }
    }
  }
}

.radio-header {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 3em;
  color: white;
  margin: 1em 0;
}

.slider-radio {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 4em;
}

.radio-container {
  display: flex;
  flex-wrap: nowrap;
  height: 70vh;
  justify-content: start;
}

.cardz {
  align-items: flex-end;
  background-size: cover;
  border-radius: 0.75rem;
  border-radius: 2rem;
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.8);
  cursor: pointer;
  display: flex;
  margin: 0 10px;
  overflow: hidden;
  transition: 0.6s cubic-bezier(0.28, -0.03, 0, 0.99);
  width: 150px;
  position: relative;
}
@keyframes fade-text-in {
  from {
    opacity: 0;
    transform: translate3d(0, 80px, 0);
  }

  50%,
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.radio-p {
  position: absolute;
  top: 0;
  left: 9%;
  height: 85%;
  width: 70%;
  color: white;
  font-size: 1.6em;
  display: flex;
  align-items: end;
  text-shadow: 0 0 8px black;
  opacity: 0;
  animation: fade-text-in 4s forwards;
}

.cardz > .rowz {
  color: white;
  display: flex;
  flex-wrap: nowrap;
}

.cardz > .rowz > .iconz {
  align-items: center;
  background: rgb(223, 189, 0);
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  margin: 15px;
  width: 50px;
}

.cardz > .rowz > .description {
  display: flex;
  flex-direction: column;
  height: 80px;
  justify-content: center;
  opacity: 0;
  overflow: hidden;
  transform: translateY(30px);
  transition: all 0.3s ease;
  transition-delay: 0.3s;
  width: 520px;
  text-shadow: 0 0 5px black;
}

.description p {
  color: #b0b0ba;
  padding-top: 5px;
}

.description h4 {
  text-transform: uppercase;
}

.radio-container > input {
  display: none;
}

.radio-container > input:checked + label {
  width: 45vw;
}

.radio-container > input:checked + label .description {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.radio-container > input:checked + label .radio-p {
  display: flex;
}

.radio-container > input + label .radio-p {
  display: none;
}

.cardz[for="c1"] {
  background-image: url("../img/mosk.jpg");
  background-position: center;
}

.cardz[for="c2"] {
  background-image: url("../img/rest2.jpg");
  background-position: center;
}

.cardz[for="c3"] {
  background-image: url("../img/rest3.jpg");
  background-position: center;
}

.cardz[for="c4"] {
  background-image: url("../img/rest5.jpg");
  background-position: center;
}

.cardz[for="c5"] {
  background-image: url("../img/rest.jpg");
  background-position: center;
}

.mySwiper12 > div > div {
  width: auto;
}
