* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

:root {
  --main-color: #f9c922;
  --purple: #ba7bd5;
  --yellow: #f9c922;
  --green: #67c95d;
  --blue: #2fc4ee;
  --white: #fff;
  --light: #f6f6f6;
  --light-gray: #f2f2f2;
  --gray: #bac2bc;
  --dark-gray: #7d817e;
  --dark: #1a1a1a;
  --red: #d84848;
}

body {
  font-size: 1rem;
  color: var(--dark);
  background-color: var(--white);
  font-family: Poppins, sans-serif;
  position: relative;
}

* {
  box-sizing: border-box;
}

a {
  font-weight: 500;
  color: var(--dark);

  &:hover {
    color: var(--main-color);
    cursor: pointer;
  }
}

h2 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  text-transform: uppercase;
}
h3 {
  font-size: 21px;
  line-height: 28px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.section {
  margin: 60px 0 !important;
  @media screen and (max-width: 767px) {
    margin: 40px 0 !important;
  }
}

.w-100 {
  width: 100%;
}

.d-flex {
  display: flex;
}

.mobile-column {
  @media screen and (max-width: 767px) {
    flex-direction: column;
  }
}

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

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.space-between {
  justify-content: space-between;
}

.space-around {
  justify-content: space-around;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-50 {
  gap: 50px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.btn {
  border: 1px solid var(--dark);
  color: var(--dark);
  border-radius: 25px;
  width: 100%;
  max-width: fit-content;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  gap: 10px;
  padding: 8px 12px;
  line-height: 20px;
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  cursor: pointer;

  &:hover {
    transform: scale(1.05);
  }

  .arrow-left {
    color: var(--main-color) !important;
    padding: 12px;
    width: auto;
    height: auto;
    border: 2px solid var(--main-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    &:after {
      content: "";
      display: block;
      box-sizing: border-box;
      width: 10px;
      height: 10px;
      border-bottom: 2px solid;
      border-right: 2px solid;
      transform: rotate(313deg);
      position: absolute;
      left: 5px;
      color: var(--main-color);
    }
  }
}

.btn-icon {
  background: transparent;
  border: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;

  &:hover {
    transform: scale(1.05);
  }

  img {
    box-shadow: none !important;
    width: 20px !important;
    height: 20px !important;
  }
}

/* Topbar */

.main-menu {
  display: block;
  /* width: calc(100% - 40px); */
  width: 100%;
  background: var(--white);
  padding: 10px 0;
  height: 60px;
  box-sizing: content-box;
  position: fixed;
  left: 50%;
  transform: translate(-50%);
  top: 0;
  z-index: 999;

  @media screen and (max-width: 767px) {
    height: 55px;
  }
}

.top-bar {
  background: var(--white);
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  border-radius: 45px;
  border: 2px solid var(--light-gray);
  box-sizing: border-box;
  align-items: center;
  margin: 0 auto;
  width: calc(100% - 40px);
  margin: 0 auto;

  @media screen and (max-width: 767px) {
    padding: 5px 10px;
    width: calc(100% - 20px);
  }

  .nav-logo {
    height: 40px;
    display: flex;

    @media screen and (max-width: 1199px) {
      height: 40px;
      max-width: 40px;
      overflow: hidden;
    }

    img {
      @media screen and (max-width: 1199px) {
        height: 40px;
        width: auto;
      }
    }
  }

  /* Glavni container */
  .lang {
    position: relative;
    display: inline-block;
    font-family: sans-serif;
  }

  /* Link koji otvara dropdown */
  .lang > a {
    color: var(--dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 12px 10px;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
  }

  .lang > a:hover {
    color: var(--main-color);
  }

  /* Strelica */
  .lang > a .lang-caret {
    display: inline-block;
    transition: transform 0.15s ease; /* brza rotacija */
    transform: rotate(0deg); /* početno udesno */
    font-size: 1.2rem;
  }

  /* Dropdown box inicijalno sakriven */
  .lang .lang-select {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border: 2px solid var(--light-gray);
    border-top-color: var(--white);
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 80px;
    z-index: 999;
    overflow: hidden;
  }

  /* Linkovi unutar dropdowna */
  .lang .lang-select a {
    display: block;
    padding: 10px 20px;
    color: var(--dark-gray);
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .lang .lang-select a:hover {
    background-color: var(--main-color);
    color: #fff;
  }

  /* Hover efekt: otvara dropdown i rotira strelicu */
  .lang:hover .lang-select {
    display: block;
  }

  .lang:hover > a .lang-caret {
    transform: rotate(90deg);
  }

  nav {
    color: var(--dark);
    position: relative;
    padding-right: 10px;
  }

  .hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--dark);
    width: 20px;

    @media (max-width: 767px) {
      display: block;
    }
  }

  #closeMenu {
    display: none;
    height: 30px;
    width: 30px;
    font-weight: 900;
    font-size: 20px;
    line-height: 20px;
    position: fixed;
    right: 20px;
    top: 10px;
    text-align: center;
    border: 2px solid var(--dark);
    padding: 4px;
    border-radius: 30px;
    z-index: 9999;
  }

  .show {
    display: flex;
  }
  .none {
    display: none;
  }

  ul.menu {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;

    @media (max-width: 767px) {
      display: none;
      flex-direction: column;
      width: 100%;
    }

    &.show {
      @media (max-width: 767px) {
        display: block;
        position: fixed;
        width: 100%;
        left: 0;
        top: 70px;
        background: #ffffffed;
        overflow: auto;
        z-index: 998;

        .dropdown {
          border-left: none;
          border-right: none;

          li a {
            text-align: left;
          }
        }
      }
    }

    li.menu-item {
      position: relative;

      @media (max-width: 767px) {
        width: 100%;
      }

      > a {
        color: var(--dark);
        text-decoration: none;
        padding: 12px 10px;
        display: inline-flex;
        align-items: center;
        font-size: 20px;
        font-weight: 500;
        text-transform: uppercase;
        position: relative;
        transition: color 0.3s ease;

        &:hover {
          color: var(--main-color);
        }

        @media (max-width: 767px) {
          padding: 10px 20px;
          width: 100%;
          justify-content: space-between;
        }

        &::after {
          content: "\276F"; /* ❯ strelica */
          margin-left: 8px;
          font-size: 1.2rem;
          display: inline-block;
          transform: rotate(0deg);
          transition: transform 0.3s ease;
        }

        /* Hover rotacija samo za desktop */
        @media (min-width: 768px) {
          &:hover::after {
            transform: rotate(90deg);
          }
        }

        /* Na mobilnom – rotira se samo kad ima .open */
        &.open::after {
          transform: rotate(90deg);
        }
      }

      ul.dropdown {
        display: none;
        position: absolute;
        background: var(--white);
        list-style: none;
        top: 100%;
        right: 0;
        min-width: 170px;
        z-index: 1000;
        text-align: right;
        padding: 5px 0;

        @media (max-width: 767px) {
          position: static;
          display: none;
          background: transparent;

          &.show {
            display: block;
          }
        }

        li a {
          display: block;
          padding: 8px 15px;
          color: var(--dark-gray);
          text-decoration: none;
          transition: all 0.2s ease-in-out;
          font-size: 16px;
          font-weight: 400;
          text-align: left;

          &:hover {
            background: var(--main-color);
            color: var(--white);
          }

          @media (max-width: 767px) {
            padding: 6px 15px 6px 30px;
          }
          @media (max-width: 380px) {
            font-size: 14px;
          }
        }
      }
    }
  }

  ul.menu li.menu-item:not(:has(.dropdown)) > a::after {
    content: none;
  }
  @media (min-width: 768px) {
    ul.menu li.menu-item:hover > ul.dropdown {
      display: block;
    }
  }
}

/* Header */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 99;
}

.header-links {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .header-links {
    display: none;
  }
}

.header-links div {
  display: flex;
  justify-content: center;
  height: 35px;
  align-items: center;
}
.header-links > div {
  margin: 20px auto;
}
.header-links span {
  color: #bcbfc4;
}
.header-links p {
  color: #bcbfc4;
  font-size: 12px;
}

.header-mobile {
  max-width: 990px;
  margin: 0 auto;
}

.header-mobile .logo {
  margin: 0 auto;
}

.header-mobile .logo img,
.intro .logo img {
  max-width: 150px;
}

/* Slider */

.slider-container {
  display: flex;
  align-items: center;
  max-width: calc(100vw - 40px);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.slider-wrapper {
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.slider-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.slider {
  display: flex;
  width: max-content;
  flex: 0 0 100%; /* ili širina koju želiš za jedan slide */
  scroll-snap-align: start;
}

.slide {
  flex-shrink: 0;
  width: 20vw;
  height: 500px;
  margin: 0 5px;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: width 0.3s ease;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;

  @media screen and (max-width: 1199px) {
    width: 50vw;
    height: 480px;
    padding: 30px;
  }

  &.slide-exclusive-01 {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
      url(../images/slider/exclusive-games-marvel.jpg) center / cover;
  }

  &.slide-exclusive-02 {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
      url(../images/slider/exclusive-games-disney.jpg) center / cover;
  }

  &.slide-exclusive-03 {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
      url(../images/slider/exclusive-games-lego.jpg) center / cover;
  }

  &.slide-exclusive-04 {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
      url(../images/slider/exclusive-games-moira.jpg) center / cover;
  }

  .slider-content {
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;

    @media screen and (max-width: 767px) {
      max-width: 80%;
      gap: 20px;
    }

    .label {
      font-size: 18px;
      color: var(--white);
      background: var(--main-color);
      font-weight: 500;
      padding: 5px 12px;
      font-style: italic;
      max-width: fit-content;
    }

    .category-title {
      color: var(--white);
      font-size: 34px;
      font-weight: 600;
      text-shadow: 0px 0px 12px #000000b6;
      text-align: left;
      line-height: 40px;
      text-transform: uppercase;

      @media screen and (max-width: 767px) {
        font-size: 30px;
        line-height: 2rem;
      }
    }

    .category-subtitle {
      color: var(--white);
      font-size: 20px;
      font-weight: 300;
      text-align: left;
      line-height: 24px;
    }

    .btn {
      border: none;
      border-radius: 30px;
      background: var(--main-color);
      color: var(--dark);
      text-align: center;
      font-size: 24px;
      box-sizing: content-box;
      max-width: 200px;
      height: 40px;
      position: relative;
      padding: 6px 5px;
      text-align: center;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      justify-content: center;

      @media screen and (max-width: 767px) {
        display: none;
      }

      /* &::after {
        content: "";
        width: 25px;
        height: 25px;
        background: url(../images/icons/btn-arrow.svg) no-repeat center/cover;
        position: absolute;
        transform: translateY(-50%);
        top: 50%;
        right: 15px;
      } */
    }
  }

  &.slide01 {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
      url(../images/slider/slider-01.jpg) center/cover;
    position: relative;
    z-index: 1;

    video {
      position: absolute;
      z-index: 2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      margin: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }
    .slider-content {
      position: absolute;
      z-index: 3;
    }
  }
  &.slide02 {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
      url(../images/slider/slider-02.jpg) center/cover;
    position: relative;
    z-index: 1;

    video {
      position: absolute;
      z-index: 2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      margin: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }
    .slider-content {
      position: absolute;
      z-index: 3;
    }
  }
  &.slide03 {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
      url(../images/slider/slider-03.jpg) center/cover;
    position: relative;
    z-index: 1;

    video {
      position: absolute;
      z-index: 2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      margin: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }
    .slider-content {
      position: absolute;
      z-index: 3;
    }
  }
  &.slide04 {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
      url(../images/slider/slider-04.jpg) center/cover;
    position: relative;
    z-index: 1;

    video {
      position: absolute;
      z-index: 2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      margin: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }
    .slider-content {
      position: absolute;
      z-index: 3;
    }
  }
  &.slide05 {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
      url(../images/slider/slider-05.jpg) center/cover;
    position: relative;
    z-index: 1;

    video {
      position: absolute;
      z-index: 2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      margin: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }
    .slider-content {
      position: absolute;
      z-index: 3;
    }
  }
}

.slide.active {
  width: 50vw;

  @media screen and (max-width: 1199px) {
    width: 80vw;
  }
}

/* When hovering any slide, make all 20vw */
.slider:hover .slide {
  width: 20vw;

  @media screen and (max-width: 1199px) {
    width: 50vw;
  }
}

/* The hovered slide becomes 50vw */
.slider .slide:hover {
  width: 50vw !important;

  @media screen and (max-width: 1199px) {
    width: 80vw !important;
  }
}

.arrow {
  background: rgba(0, 0, 0, 0.25);
  color: white;
  border: 2px solid var(--white);
  font-size: 30px;
  font-weight: 100;
  padding: 10px;
  cursor: pointer;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;

  &.left {
    left: 15px;
  }

  &.right {
    right: 15px;
  }

  @media screen and (max-width: 767px) {
    display: none;
  }
}
.page-content {
  z-index: 1;
  margin-top: 90px;
}
/* homepage slider */
@media screen and (max-width: 767px) {
  .slider-container {
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 10px;
  }
  .slider {
    flex-direction: row;
    gap: 10px;
    width: 100%;
  }
  .slide {
    width: 100% !important;
    height: 400px;
    margin: 0;
    padding: 20px;
  }
  .slide.active {
    width: 100%;
    height: 400px;
  }
  .slider .slide:hover {
    width: 100% !important;
  }
}
/* Text animation */

.scroll-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
  background: var(--main-color);
  margin: 50px 0;
  padding: 30px 0;
}

.scroll-track {
  display: inline-block;
  animation: scroll 20s linear infinite;
}

.scroll-text {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-right: 1rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Slider2 */

.button-slider-container {
  width: 100%;
  margin: auto;
}

.slider-controls {
  text-align: center;
  border: 2px solid var(--gray);
  padding: 6px 6px 6px;
  border-radius: 40px;
  height: 54px;
  min-width: 110px;

  @media screen and (max-width: 480px) {
    margin-left: auto;
  }
}

.slider-controls .nav-btn {
  font-size: 18px;
  border: none;
  cursor: pointer;
  margin: 0 2px;
  padding: 0;
  background: var(--white);
  transition: transform 0.1s ease-in-out;
  max-height: 38px;

  &:hover {
    transform: scale(0.9);
  }
}

.button-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
}

.button-track::-webkit-scrollbar {
  display: none;
}

.slide-button {
  width: 100%;
  /* min-width: 280px; */
  background-color: var(--white);
  cursor: pointer;
  overflow: hidden;

  @media screen and (max-width: 767px) {
    min-width: 60%;
  }

  .pic-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;

    img {
      width: 100%;
      height: auto;
      min-height: 200px;
      max-height: 200px;
      object-fit: cover;
      display: block;
    }
  }

  .slider-title {
    text-align: left;
    font-size: 15px;
    line-height: 1.3rem;
    font-weight: 500;
    padding: 0;
    margin: 10px 0 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  &.slide-article {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-gray);

    img {
      border-radius: 15px;
      width: 100%;
      height: 220px;
    }
  }
}

.pic-container {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  overflow: hidden;

  /* &::before {
    position: absolute;
    transform: scale(1) translate(-50%, -50%);
    top: 50%;
    left: 50%;
    content: url("../images/icons/play-btn.png");
    width: 60px;
    height: 60px;
    z-index: 1;
  } */

  img {
    transition: all 0.2s ease-in-out;
    filter: brightness(0.8);

    &:hover {
      transform: scale(1.1);
    }
  }
}

/* subcategorie page header */

.hero-subpage {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
  margin-bottom: 50px;

  @media (max-width: 991px) {
    flex-direction: column;
    gap: 50px;
  }
  @media (max-width: 767px) {
    gap: 20px;
  }

  .text-container {
    width: 40%;
    max-width: 500px;

    @media (max-width: 991px) {
      width: 100%;
      padding: 30px 20px 0;
      max-width: none;
    }

    h1 {
      font-size: 50px;
      font-weight: 300;
      @media (max-width: 767px) {
        font-size: 30px;
      }
    }
  }

  .img-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;

    @media (max-width: 991px) {
      grid-template-columns: 1fr;
      padding: 0 20px;
    }

    .btnNone {
      background: none;
      border: 0px;
      outline: none;
      cursor: pointer;

      &:nth-child(1) .img-box.article {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
          url("../images/banners/articles-Are-Electric-Cars-our-Future.jpg") center/cover no-repeat;
      }
      &:nth-child(2) .img-box.article {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
          url("../images/banners/articles-crypto.jpg") center/cover no-repeat;
      }

      &:nth-child(3) .img-box.article {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
          url("../images/banners/articles-F1.jpg") center/cover no-repeat;
      }

      &:nth-child(1) .img-box.apps {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
          url("../images/banners/apps-Amazon-Kindle.jpg") center/cover no-repeat;
      }

      &:nth-child(2) .img-box.apps {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
          url("../images/banners/apps-Brain-Training-Games.jpg") center/cover no-repeat;
      }

      &:nth-child(3) .img-box.apps {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
          url("../images/banners/apps-Teach-Duolingo-Language.jpg") center/cover no-repeat;
      }

      &:nth-child(1) .img-box.sound {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
          url("../images/banners/audio-My-Old-Man.jpg") center/cover no-repeat;
      }

      &:nth-child(2) .img-box.sound {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
          url("../images/banners/audio-Animal-Farm.jpg") center/cover no-repeat;
      }

      &:nth-child(3) .img-box.sound {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
          url("../images/banners/audio-The-Red-Shoes.jpg") center/cover no-repeat;
      }

      &:nth-child(1) .img-box.clip {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
          url("../images/banners/golf1.jpg") center/cover no-repeat;
      }

      &:nth-child(2) .img-box.clip {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
          url("../images/banners/golf2.jpg") center/cover no-repeat;
      }

      &:nth-child(3) .img-box.clip {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
          url("../images/banners/golf3.jpg") center/cover no-repeat;
      }

      .img-box {
        height: 480px;
        border-radius: 20px;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        padding: 20px;
        transition: transform 0.5s ease;
        /* transform-origin: top left; */

        &:hover {
          transform: scale(1.03);
        }

        @media (max-width: 767px) {
          height: 280px;
        }

        p {
          color: #fff;
          width: 100%;
          text-align: left;
          margin: 0;
          padding: 10px;
          font-size: 1.1rem;
        }
      }
    }
  }
  .label {
    font-size: 18px;
    color: var(--white);
    background: var(--main-color);
    font-weight: 500;
    padding: 5px 12px;
    font-style: italic;
    max-width: fit-content;
  }
  .btn {
    border: none;
    border-radius: 30px;
    background: var(--main-color);
    color: var(--dark);
    text-align: center;
    font-size: 24px;
    box-sizing: content-box;
    max-width: 200px;
    height: 40px;
    position: relative;
    padding: 6px 5px;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Banners */
.banner {
  min-height: 420px;
  padding: 60px;
  width: 100%;
  border-radius: 15px;
  position: relative;
  transition: 0.5 ease-in;
  /* overflow: hidden; */

  @media screen and (max-width: 1199px) {
    padding: 20px;
    min-height: auto;
  }

  @media screen and (max-width: 560px) {
    min-height: 400px;
  }

  &:hover {
    > img {
      transform: scale(1.05);
      filter: brightness(1.05);
    }
  }

  &:first-of-type {
    background: #c999e0;

    .banner-content {
      align-items: flex-end;

      h3 {
        text-align: right;
      }

      .banner-text {
        align-items: flex-end;
      }
    }

    img {
      left: 0;
      right: initial;
    }
  }

  &:last-of-type {
    background: #f9c922;
  }

  .banner-content {
    color: var(--dark);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;

    @media screen and (max-width: 1199px) {
      gap: 30px;
    }

    h3 {
      font-size: 42px;
      font-weight: 500;
      line-height: 54px;

      @media screen and (max-width: 1199px) {
        font-size: 30px;
      }

      strong {
        font-weight: 400;
        font-size: 60px;
        display: block;

        @media screen and (max-width: 1199px) {
          font-size: 45px;
        }
      }
    }

    .banner-text {
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: flex-start;
      font-size: 1.4rem;

      img {
        width: 60px;
      }
    }
  }

  > img {
    position: absolute;
    z-index: 0;
    bottom: 0;
    right: 0;
    max-height: 440px;
    width: auto;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    transform-origin: bottom left !important;

    @media screen and (max-width: 1199px) {
      max-width: 40%;
    }
    @media screen and (max-width: 991px) {
      max-width: 49%;
    }
    @media screen and (max-width: 767px) {
      width: 40%;
      max-width: 205px;
    }
    @media screen and (max-width: 400px) {
      width: 50%;
      max-width: 250px;
    }
  }
}

.video-background {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 30px;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  min-height: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
  filter: brightness(0.5);
  margin: 0;
}

.video-background .video-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;

  > p {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 300;
  }
}

/* Content */

.linkedin {
  max-width: 23px;
}

.instagram {
  max-width: 26px;
}

.facebook {
  max-width: 22px;
}

.youtube {
  max-width: 26px;
}

.arrow-down {
  box-sizing: border-box;
  position: relative;
  top: 1px;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 22px;
  border: 2px solid transparent;
  border-radius: 100px;
}

.arrow-down::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(138deg);
  left: 4px;
  top: 2px;
}

/* Modal */

.main-container-login {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1001;
  content: "";
  background: rgb(0 0 0 / 80%);
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
}

.login-popup {
  display: none;
  position: fixed;
  margin: auto;
  width: 95%;
  max-width: 800px;
  min-height: 300px;
  box-sizing: border-box;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-align: left;
  border-radius: 15px;
  background: #fff;

  @media screen and (max-width: 767px) {
    flex-direction: column;
  }
}

.login-popup h3 {
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 10px;
}
.login-popup .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  min-height: 300px;
  border-radius: 15px;
  height: -webkit-fill-available;
  background: #fef7e0;
  background: -webkit-linear-gradient(
    90deg,
    rgba(254, 247, 224, 1) 0%,
    rgba(244, 230, 242, 1) 33%,
    rgba(223, 244, 251, 1) 66%,
    rgba(223, 243, 223, 1) 100%
  );
  background: -moz-linear-gradient(
    90deg,
    rgba(254, 247, 224, 1) 0%,
    rgba(244, 230, 242, 1) 33%,
    rgba(223, 244, 251, 1) 66%,
    rgba(223, 243, 223, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(254, 247, 224, 1) 0%,
    rgba(244, 230, 242, 1) 33%,
    rgba(223, 244, 251, 1) 66%,
    rgba(223, 243, 223, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FEF7E0", endColorstr="#DFF3DF", GradientType=1);

  @media screen and (max-width: 767px) {
    min-height: 80px;
    width: 100%;
  }
}

.login-popup .logo img {
  max-width: 180px;
  margin: 15px 8px;
}

.login-popup .btn {
  border: none;
  border-radius: 8px;
  width: 100%;
  max-width: 220px;
  height: 50px;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 16px;
}

.login-popup .btn-login {
  cursor: pointer;
  background: var(--main-color);
  background: linear-gradient(80deg, rgba(47, 196, 238, 1) 0, rgba(186, 123, 213, 1) 79%);
  padding: 12px;
}

.login-popup .formcontent {
  width: 50%;
  padding: 50px;
  border-radius: 15px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  @media screen and (max-width: 767px) {
    width: 100%;
  }
}

.tab {
  overflow: hidden;
}

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: 0;
  cursor: pointer;
  padding: 14px 16px;
  font-size: 17px;
  font-family: Poppins, sans-serif;
}

.tab button:hover {
  border-bottom: 2px solid var(--main-color);
}

.tab button.active {
  border-bottom: 2px solid var(--main-color);
}

.tabcontent {
  display: none;
  padding: 6px 20px;
  border-top: none;
}

.contact-popup {
  display: flex;
  flex-direction: row;
  gap: 50px;
  box-shadow: 0 0 10px #eaeaea;
  border-radius: 20px;
  padding: 30px;

  @media (max-width: 991px) {
    flex-direction: column;
    padding: 30px 20px;
  }

  .form {
    flex: 1;

    @media (max-width: 991px) {
      width: 100%;
    }
  }

  input {
    display: block;
    margin: 20px auto 10px;
    border-radius: 5px;
    padding: 10px 0;
    width: 100%;
    text-align: left;
    outline: 0;
    border: 1px solid #4b4b4f;
  }

  input[type="checkbox"] {
    display: none;
  }

  .login-check {
    background: var(--green);
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
  }

  input,
  textarea {
    display: block;
    margin: 20px auto 10px;
    border-radius: 30px;
    padding: 15px;
    width: 100%;
    text-align: left;
    outline: 0;
    border: 1px solid var(--light-gray);
    background: var(--light);
    font-family: "Poppins", sans-serif !important;
  }

  textarea {
    min-height: 122px;
    max-height: 122px;
  }

  input[type="checkbox"]:checked ~ .login-check::after {
    display: block;
  }

  .btn-login {
    cursor: pointer;
    color: var(--white);
    background: var(--main-color);
    padding: 15px;
    border: 0px;
    border-radius: 25px;
    width: 100%;
    max-width: none;
    margin: 0px auto;
    box-shadow: none;
    height: auto;
    text-transform: uppercase;
  }
}

.contact-info {
  flex: 1;
  margin-top: 4rem;

  @media (max-width: 991px) {
    margin-top: 0;
  }

  .info-box {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 30px;
    border-radius: 20px;
    margin: 30px 0;
    background: #dff3e7;
    position: relative;

    @media (max-width: 991px) {
      margin: 20px 0;
    }

    @media (max-width: 767px) {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    &:last-child {
      margin: 0px;
      background: #e2f2fb;
    }

    .info-text {
      width: 100%;
      display: flex;
      flex-direction: column;

      @media (max-width: 767px) {
        text-align: center;
      }

      h3 {
        font-weight: 600;
        font-size: 24px;
      }

      .big-text {
        font-size: 28px;
        line-height: 1.25;
      }

      p {
        font-size: 18px;
        line-height: 1.25;
        margin: 10px 0 0;
        max-width: calc(100% - 180px);

        @media (max-width: 767px) {
          max-width: 100%;
        }
      }
    }

    img {
      width: 100%;
      max-width: 190px;
      position: absolute;
      bottom: 0;
      right: 10px;

      @media (max-width: 767px) {
        position: relative;
        display: block;
        margin: 20px auto 0;
      }
    }
  }
}

.contact-popup .tab button {
  padding: 14px 0;
}
.contact-popup .tabcontent {
  padding: 0;
}

#Sign-up {
  display: block;
}

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

.forgot {
  color: #797979;
}

.login-popup input {
  display: block;
  margin: 20px auto 10px;
  border-radius: 5px;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  outline: 0;
  border: 1px solid #4b4b4f;
}

.login-popup input[type="checkbox"] {
  display: none;
}

.login-popup .login-check {
  background: var(--light-gray);
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
}

.login-popup input,
.login-popup textarea {
  display: block;
  margin: 20px auto 10px;
  border-radius: 5px;
  padding: 10px 20px;
  width: 100%;
  text-align: center;
  outline: 0;
  border: 1px solid var(--dark);
  background: var(--light-gray);
}

.login-popup textarea {
  min-height: 122px;
  max-height: 122px;
}

.login-popup .login-check-wrap {
  display: flex;
  align-items: center;
  justify-content: left;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 5px;
  text-align: left;
  margin-top: 10px;
  padding-top: 3px;
  color: #797979;
  font-size: 14px;
}

.login-popup .login-check::after {
  left: 9px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid var(--main-color);
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  content: "";
  position: absolute;
  display: none;
}

.login-popup input[type="checkbox"]:checked ~ .login-check::after {
  display: block;
}

.login-popup .btn-login {
  cursor: pointer;
  background: var(--main-color);
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  max-width: none;
  margin: 15px auto;
  box-shadow: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.close,
.close-login {
  cursor: pointer;
  box-sizing: border-box;
  position: absolute;
  top: 12px;
  right: 12px;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 22px;
  border: 2px solid transparent;
  border-radius: 40px;
}

.close-login:after,
.close-login:before,
.close::after,
.close::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 16px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  border-radius: 5px;
  top: 8px;
  left: 1px;
}

.close-login:after,
.close::after {
  transform: rotate(-45deg);
}

#loginError,
#signupError {
  color: red;
  text-align: center;
  display: revert;
  border: 1px solid red;
  padding: 5px 10px;
  border-radius: 5px;
}

#loginCorrect,
#signupCorrect {
  color: green;
  text-align: center;
  display: revert;
  border: 1px solid green;
  padding: 5px 10px;
  border-radius: 5px;
}

.options {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  max-width: 90%;
  margin: 20px auto;
}
.app-store {
  box-shadow: 0 1px 10px 0 rgb(0 0 0 / 10%);
  border-radius: 10px;
  background: #fff;
  padding: 8px;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 160px;
  gap: 0.3rem;
  max-width: 90%;
  margin: 20px;
}

.btn-login {
  cursor: pointer;
  background: 0 0;
  border-radius: 100%;
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0px solid var(--dark);
  padding: 0;
  transition: none;
}
.btn-login:hover {
  transform: none;
}

.btn-login img {
  max-width: 20px;
}

.color-btn {
  background: var(--main-color);
  text-transform: uppercase;
  cursor: pointer;
  display: block;
  outline: 0;
  border: 0;
  padding: 0 32px;
  color: #fff;
  height: 48px;
  font-size: 18px;
  font-weight: 600;
  transform: translateY(2px);
  transition: transform 0.15s ease;
}

.blue {
  background-color: var(--main-color);
  box-shadow: 0 5px 0 #02627d;
  text-shadow: 3px 2px 4px #02627d;
}

.yellow {
  background-color: var(--yellow);
  box-shadow: 0 5px 0 #99812f;
  text-shadow: 3px 2px 4px #99812f;
}

.purple {
  background-color: var(--purple);
  box-shadow: 0 5px 0 #6a3482;
  text-shadow: 3px 2px 4px #6a3482;
}

.green {
  background-color: var(--green);
  box-shadow: 0 5px 0 #1d7d13;
  text-shadow: 3px 2px 4px #1d7d13;
}

.red {
  background-color: var(--red);
  box-shadow: 0 5px 0 #a61616;
  text-shadow: 3px 2px 4px #a61616;
}

.title-blue {
  color: var(--main-color);
}

.title-yellow {
  color: var(--yellow);
}

.title-purple {
  color: var(--purple);
}

.title-green {
  color: var(--green);
}

.title-red {
  color: var(--red);
}

.intro .logo {
  display: none;
}

.intro .logo img {
  margin: 20px auto 0;
}

.header-mobile .btn-login {
  border-radius: 8px;
  width: 35px;
  height: 35px;
  margin: 10px;
}

.header-mobile .logo img {
  margin-top: 8px;
}

li.have-children ul li a:after {
  display: none;
}

li.have-children ul {
  padding: 0;
}

li.have-children ul li a {
  padding: 0 0 10px 75px;
  text-transform: none;
}

li.have-children ul li a:hover {
  color: var(--dark);
  background-color: var(--light);
  padding: 0 0 10px 75px;
}

li,
li.have-children {
  position: relative;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
  padding-inline: 20px;

  &.md {
    max-width: 1280px;
  }

  &.sm {
    max-width: 960px;
  }
}

.flex-75 {
  width: calc(75% - 50px);

  @media (max-width: 767px) {
    width: 100%;
  }

  @media (min-width: 768px) and (max-width: 1199px) {
    width: calc(60% - 50px);
  }
}

.flex-50 {
  width: calc(50% - 25px);

  @media (max-width: 767px) {
    width: 100%;
  }
}

.flex-25 {
  width: 25%;

  @media (max-width: 767px) {
    width: 100%;
  }

  @media (min-width: 768px) and (max-width: 1199px) {
    width: 40%;
  }
}

.content::after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 9;
  opacity: 0;
}

.opened .content {
  filter: blur(3px);
  transition: 1s filter ease;
}

.opened .content:after {
  opacity: 1 !important;
  transition: 1s filter ease;
}

.dropdown ul,
.dropdown-country dd,
.dropdown-country dt {
  margin: 0;
  padding: 0;
}

.dropdown-country dd ul li a span:first-child,
.dropdown-country dt a span span:first-child {
  background-image: url(https://i.imgur.com/OQiDoZe.png);
  background-repeat: no-repeat;
  width: 16px;
  height: 11px;
  display: inline-block;
  margin: 5px;
  vertical-align: top;
}

.dropdown-country dt a span {
  cursor: pointer;
  display: block;
  padding: 5px;
  white-space: nowrap;
}

.dropdown-country dt a img {
  position: relative;
  z-index: 1;
}

.dropdown-country dt a span span:first-child:before {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  width: 15px;
  height: 10px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2) inset;
}

.dropdown-country dt a span span {
  display: inline-block;
  padding: 0;
}

.dropdown-country dt a span span:first-child {
  padding: 0;
}

.dropdown-country dd {
  position: relative;
}

.dropdown-country a,
.dropdown-country a:visited {
  color: #4a535f;
  text-decoration: none;
  outline: 0;
}

.dropdown-country a:hover {
  color: #5d4617;
}

.dropdown-country dt a:focus,
.dropdown-country dt a:hover {
  color: #5d4617;
}

.dropdown-country dt a {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 2px 4px;
  top: 8px;
}

.dropdown-country dd ul {
  box-shadow: 0 1px 10px 0 rgb(0 0 0 / 10%);
  background: #fff;
  color: #c5c0b0;
  display: none;
  left: -4px;
  padding: 5px;
  position: absolute;
  list-style: none;
  max-height: 170px;
  overflow-y: scroll;
  top: 10px;
  z-index: 2;
  border-radius: 5px;
}

nav dd ul li {
  width: 100%;
}

li a {
  font-size: 13px;
}

li a span:nth-child(2) {
  line-height: 2em;
}

.dropdown-country dd ul::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-country dd ul::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.4);
}

.dropdown-country dd ul::-webkit-scrollbar-thumb:window-inactive {
  background: #00f;
}

.dropdown-country span.value {
  display: none;
}

.dropdown-country dd ul li a {
  padding: 5px;
  display: block;
  background: 0 0;
  font-size: 12px !important;
}

.dropdown-country dd ul li a:hover {
  background-color: #ddd;
}

dl.dropdown-country {
  display: inline-block;
  margin: 0;
}

dl.dropdown-country span:nth-child(3) {
  color: rgba(0, 0, 0, 0.4);
}

dl.dropdown-country > span:nth-child(2) {
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
}

dl.dropdown-country span:nth-child(3) {
  float: right;
}

dl.dropdown-country dt span:nth-child(2) {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6em;
}

dl.dropdown dt span:nth-child(3) {
  display: none;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  margin: 10px 0;
}

.Slider .swiper-slide {
  position: relative;
  text-align: center;
  font-size: 18px;
  margin: 0;
  background: #fff;
  height: 275px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide .slider-img {
  width: 100%;
  max-width: 165px;
  height: auto;
  margin: 8px 0;
}

.Slider .swiper-slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  background: linear-gradient(80deg, rgba(26, 26, 26, 1) 0, rgba(26, 26, 26, 0) 85%);
}

.swiper-slide .caption {
  position: absolute;
  left: 5%;
  color: var(--white);
  z-index: 9;
  text-align: left;
}

.swiper-slide .caption h2 {
  font-size: 1.9em;
  text-transform: uppercase;
  line-height: 42px;
  max-width: 320px;
}

.swiper-slide .caption p {
  font-size: 1em;
  line-height: 1.5em;
  max-width: 350px;
}

.swiper-slide .caption span {
  font-size: 0.8em;
}

.swiper-slide .caption .color-btn {
  margin: 12px 0 25px;
}

.swiper-slide h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.myApps .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.myApps .swiper-wrapper {
  padding-bottom: 35px;
}

/* .myApps .swiper-slide img,
.myTips .myApps .swiper-slide img {
  display: block;
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
} */
.single-page {
  display: flex;
  flex-direction: row;
  gap: 50px;
  @media (max-width: 991px) {
    flex-direction: column;
  }
}

.app-content {
  width: 70%;
  @media (max-width: 991px) {
    width: 100%;
  }
}
.single-app {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 50px;

  @media (max-width: 767px) {
    flex-direction: column;
  }
}

.single-app .app-description {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 50px;

  @media (max-width: 991px) {
    margin-bottom: 0px;
  }
  @media (max-width: 767px) {
    width: 100%;
    max-width: 420px;

    margin: 0 auto;
  }
}

.single-app .app-description h1 {
  font-size: 1.6rem;
}

.single-app a {
  width: 100%;
}

.single-app .color-btn {
  font-size: 1.2em;

  @media (max-width: 767px) {
    width: 100%;
    max-width: 420px;
  }
}

.single-app img {
  max-width: 240px;
  height: 240px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 20px;

  @media (min-width: 768px) and (max-width: 1199px) {
    max-width: 180px;
  }
  @media (max-width: 767px) {
    width: 100%;
    max-width: 420px;

    margin: 0 auto;
  }
}

.more-like-this {
  width: 30%;
  margin: 0;
  background: var(--light-gray);
  border-radius: 20px;
  padding: 20px;
  padding-bottom: 0;
  height: fit-content;

  @media (max-width: 1199px) {
    min-width: 400px;
  }
  @media (max-width: 991px) {
    width: 100%;
  }
  @media (max-width: 480px) {
    width: 100%;
    min-width: auto;
  }
}

.games-list {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.games-list a {
  border-bottom: 0px solid var(--gray);
  display: flex;
  gap: 10px;

  &:last-child {
    border: 0px;
  }
  &:hover {
    color: var(--dark);

    .icon-app {
      transform: scale(0.95);
    }
  }
}

.games-list .game-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 10px;
}

.game-item .icon-app {
  width: 100%;
  min-width: 100px;
  max-width: 100px;
  border-radius: 10px;
  height: 100px;
  transition: transform 0.3s ease;

  @media (max-width: 991px) {
    width: 140px;
  }
  @media (max-width: 767px) {
    width: 100px;
  }
}

.games-list {
  &:last-child {
    margin-bottom: 20px;
  }
}

.game-item .text {
  display: flex;
  flex-direction: column;

  .top-box {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
  }

  h3 {
    font-size: 16px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* broj redova */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  p {
    font-size: 10px;
    line-height: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* broj redova */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.app-list {
  overflow-y: auto;
  height: 100%;
  max-height: 540px;
  scrollbar-width: none; /* Firefox */

  &::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
  }

  .app-list-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);

    img {
      width: 85px;
      height: 85px;
      border-radius: 10px;
      box-shadow: 0 5px 0 var(--light-gray);
    }

    h3 {
      font-size: 14px;
      font-weight: 500;
      line-height: 1rem;
    }
  }
}

.article-content {
  width: 70%;
  @media (max-width: 991px) {
    width: 100%;
  }
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  .article-item {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 10px;
    border-bottom: 0px solid var(--gray);
    padding-bottom: 0px;

    a {
      &:hover {
        color: var(--dark);

        img {
          transform: scale(0.98);
        }
      }
    }

    &:last-child {
      border: 0px;
      margin-bottom: 20px;
    }
    h3 {
      font-size: 16px;
      line-height: 20px;
      margin-bottom: 5px;
    }
    p {
      font-size: 10px;
      line-height: 12px;
      display: -webkit-box;
      -webkit-line-clamp: 3; /* broj redova */
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    img {
      width: 100%;
      max-height: 150px;
      object-fit: cover;
      border-radius: 10px;
      border: 0px;
      transition: transform 0.3s ease;
    }
  }
}

.mfp-counter,
.mfp-title {
  display: none;
}

.back {
  display: flex;
  align-items: center;
  color: var(--main-color);
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: 20px;
  width: fit-content;
}

.swiper-slide a {
  flex-direction: column-reverse;
  display: flex;
  color: var(--dark);
}

.myContent .swiper-slide img {
  display: block;
  width: 178px;
  height: 178px;
  object-fit: cover;
}

.myApps .swiper-pagination-bullet {
  border-radius: 0;
}

.myApps .swiper-pagination-bullet-active {
  background: var(--main-color);
  border-radius: 0;
}

.myFilters {
  margin-top: 10px;
}

.filters .myFilters .swiper-wrapper {
  padding-bottom: 0;
}

.myFilters .swiper-slide {
  width: 125px !important;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  overflow-x: scroll; /* horizontalni scroll */
  -ms-overflow-style: none; /* IE i Edge */
  scrollbar-width: none; /* Firefox */

  &.exclusive {
    gap: 10px;
    overflow: visible;
    margin: 50px auto;

    @media (max-width: 767px) {
      flex-direction: column;
      gap: 30px;
    }

    > a {
      flex: 1;
      display: flex;
      align-items: flex-end;
      padding: 20px;
      position: relative;
      border-radius: 15px;
      min-height: 150px;
      transition: all 0.2s ease-out;

      @media (min-width: 768px) and (max-width: 1199px) {
        min-height: 120px;
      }

      &.active {
        background: var(--white) !important;
        border: 2px solid var(--main-color);
        transform: none !important;
        cursor: default;

        label {
          text-shadow: none;
          color: var(--main-color);
        }
      }

      &:hover {
        transform: scale(1.05);
      }

      label {
        padding: 0;
        border: none;
        color: var(--white);
        text-shadow: 0 3px 0 #00000040;
        text-transform: uppercase;
        margin: 0;
        font-size: 1rem;
        position: relative;
        z-index: 1;
      }

      img {
        position: absolute;
        right: 0;
        bottom: 10px;
        z-index: 0;

        @media (min-width: 768px) and (max-width: 1199px) {
          width: 120px;
          height: 120px;
          right: -10px;
        }
      }

      &#filter-all {
        background: #7b3fa6;
      }

      &#filter-marvel {
        background: #ed212c;
      }

      &#filter-disney {
        background: #5fc3f6;
      }

      &#filter-lego {
        background: #fec30e;
      }

      &#filter-moira {
        background: #2cbabc;
      }
    }
  }

  @media (max-width: 767px) {
    flex-wrap: nowrap;
  }
}
.filters::-webkit-scrollbar {
  display: none;
}

.filters input {
  display: none;
}

.filters label {
  display: block;
  transition: all 0.5s ease;
  margin: 5px;
  background: 0 0;
  border: 1px solid #9a9a9a;
  padding: 15px 30px;
  border-radius: 30px;
  color: #9a9a9a;
  font-weight: 600;
  width: max-content;
}

.filters label:hover {
  transform: scale(1.1);
}

.filters input[type="radio"]:checked + label,
.filters.filters-play input[type="radio"]:checked + label {
  background-color: var(--main-color);
  color: var(--white);
  border-color: var(--main-color);
}

.filters.filters-stream input[type="radio"]:checked + label {
  background-color: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.filters.filters-fit input[type="radio"]:checked + label {
  background-color: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.filters.filters-learn input[type="radio"]:checked + label {
  background-color: var(--yellow);
  color: var(--white);
  border-color: var(--yellow);
}

.filters.filters-adult input[type="radio"]:checked + label {
  background-color: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.selector {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: 0 0;
  border: 1px solid #9a9a9a;
  padding: 10px;
  border-radius: 8px;
  color: #9a9a9a;
  font-size: 0.8rem;
  font-family: Poppins, sans-serif;
  margin: 30px auto;
  display: block;
  width: 100%;
}

.filters-mobile {
  display: none;
}

.filters-desktop {
  display: none;
}

option {
  font-family: Poppins, sans-serif;
}

.btn-filter {
  width: 100%;
  margin: 10px 0;
}

.app-description {
  h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
  }
}

.screenshoots .myTips .swiper-slide {
  width: 138px !important;
}

.myTips .swiper-wrapper {
  padding-bottom: 0;
}

.myTips .swiper-slide img {
  display: block;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
}

.mySelection {
  margin: 20px 0;
}

.mySelection .selection-wrap {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  flex-wrap: wrap;
}
.mySelection .app-selection a {
  display: flex;
  flex-direction: row;
  &:hover {
    color: var(--dark);
  }
}

.mySelection .app-selection .app-img {
  width: 110px;
  max-width: 110px;
  min-width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 5px 0 #dfdfdf;
}

.mySelection .app-selection .small-text {
  font-size: 10px;
  line-height: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mySelection .app-description {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: calc(100% - 105px);

  @media (max-width: 480px) {
    max-width: none;
  }
}

.mySelection .title-box {
  width: 100%;
}

.mySelection .app-descript {
  color: var(--dark-gray);
  font-size: 13px;
  line-height: 16px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  word-wrap: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0px;
  height: 32px;

  p {
    color: var(--dark-gray) !important;
    span {
      color: var(--dark-gray) !important;
    }
  }
}

.mySelection .app-description h3 {
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
  line-height: 18px;
  text-align: left;
  min-width: 80px;
  width: 80%;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stars {
  span {
    line-height: 12px;
    color: #ffc700;
  }
}

.banner-exclusive {
  margin-top: 60px;
  padding: 60px;
  background: url(../images/banners/banner-marvel-exclusive.jpg);
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--white);
  gap: 40px;
  text-align: right;
  border-radius: 15px;

  @media (max-width: 1023px) {
    text-align: center;
    align-items: center;
    padding: 50px 20px;
  }

  h3 {
    max-width: 650px;
    font-size: 50px;
    font-weight: 200;
    line-height: 1.2;

    @media (max-width: 1023px) {
      font-size: 36px;
      text-align: center;
    }

    br {
      @media (max-width: 1023px) {
        display: none;
      }
    }
  }

  .banner-description {
    font-size: 20px;
    max-width: 400px;

    @media (max-width: 1023px) {
      text-align: center;
      max-width: 100%;
    }
  }

  .banner-logos {
    display: flex;
    gap: 20px 50px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    @media (max-width: 1199px) {
      gap: 30px;
    }

    @media (max-width: 767px) {
      flex-direction: column;
    }

    span {
      @media (max-width: 1023px) {
        display: none;
      }
    }
  }
}

.myBooks .swiper-slide .stars {
  margin-top: 12px;
  justify-content: space-between;
}

.myBooks .swiper-slide .stars div,
.myGames.myGames .swiper-slide-content .stars div,
.mySelection .app-description .stars div {
  color: #ffc700;
  margin-top: 2px;
}

.myGames .swiper-slide-content {
  display: flex;
  gap: 10px;
}

.myGames .swiper-slide img.icon-app {
  width: 85px;
  height: 85px;
  min-width: 85px;
  border-radius: 15px;
  box-shadow: 0 5px 0 #dfdfdf;
}

.myBooks .swiper-slide .stars .btn-selection,
.myGames.myGames .swiper-slide-content .stars .btn-selection {
  border: none;
  background: var(--main-color);
  cursor: pointer;
  color: var(--white);
  border-radius: 8px;
  text-align: center;
  padding: 4px 20px;
  font-size: 1rem;
  justify-content: space-between;
  font-weight: 700;
}

.myBooks .four div span:last-child,
.myGames .four div span:last-child,
.mySelection .app-description .four span:last-child {
  color: #f4d1568f;
}

.mySelection .app-description .three span:last-child,
.mySelection .app-description .three span:nth-child(4) {
  color: #f4d1568f;
}

.mySelection .app-selection {
  margin-bottom: 0px;
  border-bottom: 1px solid var(--gray);
  padding-bottom: 15px;
  width: calc((100% - 3 * 50px) / 4);

  @media (max-width: 1199px) {
    width: calc((100% - 2 * 50px) / 3);
  }
  @media (max-width: 767px) {
    width: calc((100% - 1 * 50px) / 2);
  }
  @media (max-width: 480px) {
    width: 100%;
  }
}

.mySelection .btn-selection {
  background: var(--white);
  font-weight: 600;
  margin: 15px 0 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 0.9em;
  border: 2px solid var(--gray);
  padding: 6px 12px;
  border-radius: 20px;

  > span {
    color: var(--dark);
  }
}

.app-selection a:hover .btn-selection {
  color: var(--dark);
  background: var(--main-color);
  border: 2px solid var(--main-color);
  > span {
    color: var(--dark);
  }
}

.audios .mySelection .btn-selection {
  color: var(--purple);
}

.single-audio {
  flex-wrap: wrap;
}

.single-audio .app-description {
  margin: 15px 0;
}

.mySelection .selection-container:nth-child(3) {
  display: none;
}

.mySelection .selection-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 100%;
  gap: 50px;

  &.exclusive-games {
    max-width: 1200px;
    margin-inline: auto;
    gap: 50px;
    justify-content: center;

    .app-selection {
      border-bottom: 1px solid var(--light-gray);

      width: calc((100% - 3 * 60px) / 3);

      @media (min-width: 600px) and (max-width: 1023px) {
        width: calc((100% - 1 * 60px) / 2);
      }
      @media (max-width: 599px) {
        width: 100%;
      }

      > a {
        flex-direction: column;
        gap: 30px;
        padding-bottom: 10px;

        img {
          width: 100%;
          max-width: none;
          height: auto;
          box-shadow: none;
        }

        .app-description {
          display: flex;
          gap: 30px;
          align-items: flex-end;
          flex-direction: row;
          max-width: 100%;
          margin: 0;

          .btn-selection {
            min-width: 100px;
            text-align: center;
            border-radius: 4px;
            background: var(--main-color);
            justify-content: center;
            border: none;

            span {
              color: var(--dark);
            }
          }
        }
      }
    }
  }
}

.myGames .swiper-slide {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gray);

  .text {
    width: calc(100% - 100px);
    p:empty {
      display: none;
    }
    @media (min-width: 768px) and (max-width: 1199px) {
      max-width: calc(100% - 100px);
      width: 100%;
    }
  }
}

.myGames h3 {
  align-items: center;
  justify-content: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
  line-height: 16px;
  text-align: left;
  width: 100%;
  max-width: 200px;

  @media (min-width: 768px) and (max-width: 1199px) {
    max-width: 100%;
  }
}

.articles-wrap p,
.myGames p {
  color: var(--dark-gray);
  font-size: 13px;
  line-height: 16px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 10px 0;
  height: 32px;
}

.myGames .swiper-pagination-bullets,
.myTips .swiper-pagination-bullets {
  display: none !important;
}

.myBooks .swiper-slide {
  box-shadow: none;
}

.myBooks .swiper-slide a {
  flex-direction: row-reverse;
  align-items: center;
}

.myBooks .swiper-slide img {
  height: 215px;
  width: 142px;
  object-fit: cover;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.myBooks .swiper-slide a > div {
  margin: 0 5px;
  font-size: 14px;
}

.content {
  position: relative;
  width: 100%;

  /* &.opened {
    filter: blur(3px);
    transition: 1s filter ease;
  } */
}

.intro {
  text-align: left;
  margin-bottom: 20px;

  @media (max-width: 480px) {
    text-align: center;
  }
}

.intro h1 {
  font-size: 1.75em;
  margin-top: 20px;
  line-height: normal;
}

.intro h2 {
  font-weight: 400;
  font-size: 1.2em;
  line-height: normal;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.breadcrumbs h2 {
  font-weight: 600;
  margin-top: 15px;
}

.breadcrumbs h2.title a {
  color: var(--gray);
}

.breadcrumbs h3,
.breadcrumbs h3 a {
  color: #828282;
  font-weight: 400;
  font-size: 0.9rem;
  margin-top: 10px;
}

.breadcrumbs h3 {
  line-height: 10px;
}

.breadcrumbs:last-child {
  gap: 0.4rem;
}

.breadcrumbs-play h2.title-active a,
.breadcrumbs-play h3 a:hover {
  color: var(--main-color);
}

.breadcrumbs-learn h2.title-active a,
.breadcrumbs-learn h3 a:hover {
  color: var(--yellow);
}

.breadcrumbs-enjoy h2.title-active a,
.breadcrumbs-enjoy h3 a:hover {
  color: var(--purple);
}

.breadcrumbs-fitness h2.title-active a,
.breadcrumbs-fitness h3 a:hover {
  color: var(--main-color);
}

.title-section {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;

  a {
    @media (max-width: 480px) {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    span {
      gap: 5px;
      color: var(--main-color);
      img {
        width: 20px;
      }
      @media (max-width: 480px) {
        position: relative;
        text-align: center;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
      }
    }
  }
}

.title-category {
  margin: 20px 0;
}

.title-section h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 20px;
}

.title-section h3 {
  font-size: 1.2em;
  line-height: 1.5em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 20px;
}

.title-section i {
  margin-right: 10px;
}

section .title-section span {
  display: flex;
  position: absolute;
  right: 0;
  top: 5px;
  color: var(--dark);

  &:hover {
    color: var(--main-color);
  }
}

section .title-section i.arrow-down {
  position: relative;
  right: 0;
  top: -1px;
  transform: rotate(180deg);
}

.bottom-menu {
  box-shadow: 0 0 10px #e6e6e6;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 99999;
  background: var(--white);
}

.bottom-menu a {
  color: #868686;
  display: flex;
  align-items: center;
  width: 22px;
  height: 26px;
}

video {
  width: 100%;
  height: auto;
  margin: 20px 0 10px;
}

.audios .mySelection .selection-wrap {
  max-width: 750px;
}

.audios .mySelection .app-description {
  margin: auto 20px;
  width: 298px;
  display: block;
}

.audios .mySelection .btn-selection {
  margin: 0;
}

.mySelection.ringtones .selection-wrap {
  margin: 0 8px;
}

article img {
  width: 100%;
  object-fit: cover;
  margin: 0px auto 10px;
  border-radius: 15px;
}

article h2,
article h3 {
  margin: 20px 0;
  font-weight: 600;
}

article h2:first-child {
  font-size: 1.6rem;
}

.section.videos,
section.articles {
  margin: 40px 0;
}

.articles-grid,
.flag-grid,
.quizz-grid,
.videos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#Sign-in {
  display: block !important;
}

.flag-grid {
  justify-content: space-between;
}

.articles-grid .articles-wrap,
.quizz-grid .quizz-wrap,
.videos-grid .videos-wrap {
  max-width: 320px;
  width: 100%;
  border-bottom: 1px solid var(--light-gray);
  padding: 0 0 10px;
  border-radius: 0;

  @media (max-width: 767px) {
    max-width: none;
  }
}

.articles-grid img,
.quizz-grid img,
.videos-grid img {
  width: 100%;
  height: 218px;
  object-fit: cover;
  border-radius: 15px;
}

.flag-grid img {
  width: 100%;
  height: 75px;
  object-fit: cover;
  border-radius: 8px;
}

.articles-wrap h3,
.flag-wrap h3,
.quizz-wrap h3,
.videos-wrap h3 {
  font-weight: 500;
  color: var(--dark);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding: 0;
  font-size: 15px;
  line-height: 1.3rem;
  margin: 10px 0;
  text-align: left;
}

.flag-wrap h3 {
  height: auto;
}

.articles-wrap p {
  display: block;
  text-align: left;
  padding: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  font-weight: 400;
}

.flag-wrap {
  background: 0 0;
  box-shadow: none;
  margin: 0;
  padding: 12px 8px 0;
  width: 100%;
  max-width: 134px;
}

.quizz-grid .quizz-wrap,
.videos-grid .videos-wrap {
  background: 0 0;
  box-shadow: none;
  margin: 0;
  padding: 12px 8px 0;
  width: 100%;
  max-width: 100%;
}

.card-columns {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  orphans: 1;
  widows: 1;
}

.fit-grid-gallery .card-columns .card {
  margin-bottom: 0.75rem;
}

.grid-gallery {
  margin: 40px 0;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 0.25rem;

  &.large {
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding: 60px;
    gap: 50px;
  }
}

.mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-attachment: fixed;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom,
.card-img-top {
  width: 100%;
}

.quizz-questions {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  padding: 30px 20px;
  background: var(--white);
  box-shadow: 0 1px 10px 0 rgb(0 0 0 / 10%);
  display: block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  margin: 40px 0;
}

.quizz-questions h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.quizz-questions .apps-description h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.quizz-questions p {
  font-size: 1.1rem;
  margin: 5px 0;
}

.quiz_options_container {
  display: block;
  width: 100%;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid var(--gray);
}

.quizz-questions .option {
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 10px 5px 0;
  margin-top: 5px;
  margin-right: 10px;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  color: #fff;
  border-radius: 30px;
  background-color: var(--main-color);
}

.quizz-questions .option:hover {
  background: var(--main-color);
}

.page-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;

  @media (max-width: 767px) {
    flex-direction: column;
    gap: 10px;
  }

  .page-hero-content {
    width: 35%;
    padding-right: 80px;
    h1 {
      color: var(--main-color);
    }

    @media (min-width: 768px) and (max-width: 1199px) {
      width: 50%;
      padding-right: 40px;
    }

    @media (max-width: 767px) {
      width: 100%;
      padding: 0;
    }

    .hero-text {
      font-size: 4rem;
      line-height: 1.1;
      font-weight: 200;

      @media (min-width: 1200px) and (max-width: 1359px) {
        font-size: 3.25rem;
      }

      @media (max-width: 1199px) {
        font-size: 2.5rem;
      }
    }
  }

  .page-hero-video {
    height: 480px;
    flex: 1;
    width: 100%;
    position: relative;
    overflow: hidden; /* hides video overflow */
    display: flex;
    padding: 30px;
    align-items: flex-start;
    border-radius: 15px;
    justify-content: flex-end;

    @media (min-width: 768px) and (max-width: 1199px) {
      max-height: 360px;
    }

    @media (max-width: 767px) {
      min-height: 280px;
      padding: 20px;
    }

    .bg-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      object-fit: cover;
      z-index: 0;
      border-radius: 15px;
      height: 100%;
      filter: brightness(0.6);
    }

    .slider-content {
      gap: 15px;
      position: relative;
      z-index: 1;

      @media (min-width: 768px) and (max-width: 1199px) {
        display: none;
      }

      h3 {
        margin-bottom: 15px;
      }
    }
  }
}

.error-page {
  height: 60dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  .btn {
    border: none;
    border-radius: 30px;
    background: var(--main-color);
    color: var(--dark);
    text-align: center;
    font-size: 24px;
    box-sizing: content-box;
    max-width: 280px;
    height: 40px;
    position: relative;
    padding: 6px 5px;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.h-captcha {
  max-width: 100%;
  overflow: auto;
}

footer {
  margin-top: 50px;

  .footer-wrap {
    text-align: left;
    padding: 60px;
    margin-bottom: 52px;
    border-radius: 50px 50px 0 0;
    margin: 0px;
    background: #fef7e0;
    background: -webkit-linear-gradient(
      90deg,
      rgba(254, 247, 224, 1) 0%,
      rgba(244, 230, 242, 1) 33%,
      rgba(223, 244, 251, 1) 66%,
      rgba(223, 243, 223, 1) 100%
    );
    background: -moz-linear-gradient(
      90deg,
      rgba(254, 247, 224, 1) 0%,
      rgba(244, 230, 242, 1) 33%,
      rgba(223, 244, 251, 1) 66%,
      rgba(223, 243, 223, 1) 100%
    );
    background: linear-gradient(
      90deg,
      rgba(254, 247, 224, 1) 0%,
      rgba(244, 230, 242, 1) 33%,
      rgba(223, 244, 251, 1) 66%,
      rgba(223, 243, 223, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FEF7E0", endColorstr="#DFF3DF", GradientType=1);

    @media (max-width: 767px) {
      padding: 30px 20px;
      border-radius: 30px 30px 0 0;
      margin: 0;
    }

    > .d-flex {
      margin: 0 auto;
      max-width: 1200px;
      @media (max-width: 767px) {
        align-items: flex-start;
      }
    }
    .mobile-column {
      @media screen and (max-width: 991px) {
        flex-direction: column;
      }
    }
    .logo {
      margin: 0 0 20px;

      @media screen and (max-width: 991px) {
        margin: 0 auto 20px;
        text-align: center;
        width: 52px;
        height: 60px;
        overflow: hidden;
      }

      img {
        max-width: 180px;
      }
    }

    .moira-logo img {
      height: 30px;
    }
    .social {
      display: flex;
      justify-content: center;
      gap: 1rem;

      @media screen and (max-width: 991px) {
        margin: 0 auto;
      }

      .icons {
        cursor: pointer;

        i {
          color: var(--dark);
        }

        a {
          filter: invert(1);
          position: relative;
          background-color: #fff;
          border-radius: 50%;
          width: 50px;
          height: 50px;
          font-size: 18px;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
          cursor: pointer;
          transition: all 0.2s ease-in-out;

          @media screen and (max-width: 374px) {
            width: 42px;
            height: 42px;
          }

          &:hover {
            transform: scale(1.1);
          }
        }
      }
    }

    .footer-info {
      max-width: 600px;

      @media screen and (max-width: 991px) {
        max-width: 100%;
      }

      > p {
        @media screen and (max-width: 991px) {
          font-size: 13px;
          line-height: 18px;
          text-align: justify;
          text-align-last: center;
        }
      }
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 30px;
      align-items: center;

      @media screen and (max-width: 991px) {
        flex-direction: row;
        gap: 20px;
        margin-inline: auto;
      }
    }

    .footer-pages {
      @media screen and (max-width: 991px) {
        margin-inline: auto;
      }
    }

    .copyright {
      @media screen and (max-width: 991px) {
        text-align: center;
      }
    }
  }
}

.terms {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.terms a {
  color: var(--dark);
  padding: 0 8px;
}

.terms a:hover,
li.have-children ul li a:hover {
  color: var(--main-color);
}
.terms-page {
  margin: 50px auto;
}
.terms-page p {
  line-height: 25px;
}

.terms-page h4 {
  margin: 15px 0;
}

#button-error {
  background: var(--blue);
  color: var(--dark);
  width: auto;
  padding: 5px 30px;
  border-radius: 30px;
}

.page-title {
  background: #fef7e0;
  background: -webkit-linear-gradient(
    90deg,
    rgba(254, 247, 224, 1) 0%,
    rgba(244, 230, 242, 1) 33%,
    rgba(223, 244, 251, 1) 66%,
    rgba(223, 243, 223, 1) 100%
  );
  background: -moz-linear-gradient(
    90deg,
    rgba(254, 247, 224, 1) 0%,
    rgba(244, 230, 242, 1) 33%,
    rgba(223, 244, 251, 1) 66%,
    rgba(223, 243, 223, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(254, 247, 224, 1) 0%,
    rgba(244, 230, 242, 1) 33%,
    rgba(223, 244, 251, 1) 66%,
    rgba(223, 243, 223, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FEF7E0", endColorstr="#DFF3DF", GradientType=1);
  padding: 60px 20px;
  border-radius: 30px;

  h1 {
    text-align: center;
  }
}

.contact-form {
  input,
  textarea {
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    background: var(--light);
    border-radius: 24px;
  }

  textarea {
    min-height: 120px;
  }
}

.articles-grid .articles-wrap {
  width: calc((100% - (3 * 20px)) / 4);
}

/******** Media queries ********/

@media (max-width: 320px) {
  /* .myApps .swiper-slide {
    margin: 4px;
  } */
  .mySelection .app-description .stars div {
    font-size: 13px;
  }
  .mySelection .app-description {
    margin: 0 10px;
  }
}

@media (min-width: 768px) {
  html {
    height: 100%;
  }
  body {
    font-size: 0.9rem;
    overflow-x: hidden;
    height: 100%;
  }
  .main-container {
    /* min-height: 100%; */
    position: relative;
  }
  .menu-static {
    flex: 20%;
  }
  main {
    flex: 100%;
  }

  .content::after {
    display: none;
  }
  .opened .content:after {
    opacity: 0 !important;
  }
  .Slider .swiper-slide {
    height: 365px !important;
  }
  .swiper-slide .caption h2 {
    max-width: 100%;
  }
  .intro {
    text-align: center;
  }
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }

  .filters {
    justify-content: center;
  }
  .filters .myFilters .swiper-slide {
    max-width: 115px;
  }
  .myFilters .swiper-slide {
    margin-right: 18px !important;
  }
  .filters-mobile {
    display: none;
  }
  .filters-desktop {
    display: flex;
  }
  .myTips .swiper-slide,
  .screenshoots .myTips .swiper-slide {
    width: 100%;
  }
  .myGames p {
    display: -webkit-box;
  }
  .swiper-slide .caption p {
    max-width: 100%;
  }
  .myTips h3 {
    width: 100%;
  }
  article {
    max-width: 1200px;
  }
  article img {
    height: 450px;
  }
  .articles-grid {
    justify-content: left;
  }
  .quizz-grid .quizz-wrap,
  .videos-grid .videos-wrap {
    max-width: 280px;
  }
  .single-audio {
    flex-wrap: nowrap;
  }
  .single-audio .app-description {
    margin: 15px;
  }
  .flag-grid {
    justify-content: left;
  }
  .terms {
    margin-top: 10px;
  }
  .contact-popup #Sign-up {
    display: flex;
    gap: 5rem;
  }
  .contact-popup #Sign-up div {
    flex: 3;
  }
  .contaact-popup #Sign-up .form {
    flex: 4;
    margin-top: 20px;
  }
}

@media (min-width: 990px) {
  .menu-static {
    flex: 15%;
  }
  .swiper-slide img {
    height: 100%;
  }
  .myApps .swiper-pagination-bullets {
    display: none !important;
  }
  .bottom-menu {
    display: none;
  }
  footer .footer-wrap {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .articles-grid {
    gap: 20px;
  }

  .articles-grid .articles-wrap {
    width: calc((100% - (2 * 20px)) / 3);
  }
}

@media (min-width: 1200px) {
  .close {
    display: none;
  }
  .header-mobile {
    display: none;
  }
  .main-container {
    display: flex;
    flex-direction: column;
  }
  .intro .logo {
    display: block;
  }
}

.slider-dots {
  display: none;
  justify-content: center;
  margin-top: 10px;
  gap: 6px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--gray);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}

.slider-dots button.active {
  background: var(--main-color);
}

@media (max-width: 767px) {
  .articles-grid .articles-wrap {
    width: calc((100% - (1 * 20px)) / 2);
  }

  .slider-wrapper {
    overflow-x: auto;
    flex: 1;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }
  .slider {
    gap: 10px; /* nema razmaka */
  }
  .slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    position: relative;
    border: none;
    min-width: 100%;
    margin: 0; /* bez margine */
  }

  .slider-dots {
    display: flex;
  }

  .scroll-wrapper {
    margin: 20px 0;
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .articles-grid .articles-wrap {
    width: 100%;
  }
}
