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

:root {
  --main-color: #2ec6c8;
  --purple: #ba7bd5;
  --yellow: #f4d156;
  --green: #2ec6c8;
  --white: #fff;
  --light: #f6f6f6;
  --light-gray: #f5f5f5;
  --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: 600;
  color: var(--dark);

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

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;
}

.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-40 {
  gap: 40px;
}
.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;
}

.mt-4 {
  margin-top: 4rem !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;

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

  .arrow-left {
    color: var(--green) !important;
    padding: 12px;
    width: auto;
    height: auto;
    border: 2px solid var(--green);
    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(--green);
    }
  }
}

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

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

/* 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;
      }
    }
  }

  .lang {
    display: flex;
    align-items: center;

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

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

    .lang-select {
      background-color: #fff;
      font-size: 1em;
      color: #707070;
      border-radius: 0 0 5px 5px;
      border: none;
      outline: 0;
      position: absolute;
      top: 40px;
      right: 0px;
      border: 2px solid var(--light-gray);
      border-top-color: var(--white);

      a {
        color: var(--dark);
        display: block;
        padding: 10px 20px;
        text-align: right;

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

  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: 10px;
    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: var(--white);
        background: #ffffffed;
        /* max-height: 75%; */
        overflow: auto;
        z-index: 999;
        padding: 5px 0;

        .dropdown {
          /* display: block !important; */
          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 8px;
        display: inline-block;
        font-size: 20px;
        font-weight: 500;
        text-transform: uppercase;

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

        @media (max-width: 380px) {
          font-size: 16px;
          padding: 5px 20px;
        }

        &::after {
          content: "\25BE";
          margin-left: 10px;
          font-size: 1.5rem;
          line-height: 20px;
          display: inline-flex;
          height: 20px;
          width: 20px;
          border: 2px solid var(--dark);
          border-radius: 15px;
          padding: 0;
          justify-content: center;
          align-items: center;
        }
      }

      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;
        /* border: 2px solid var(--light-gray);
        border-top-color: var(--white); */

        @media (max-width: 767px) {
          position: static;
          display: none; /* skriveno na početku */
          list-style: none;
          background: transparent;

          &.show {
            display: block;
          }
        }

        &::before {
          content: "";
          width: 100%;
          position: relative;
          top: -10px;
          background: red;
          height: 10px;
        }

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

          &:hover {
            background: var(--green);
            color: var(--white);
          }
          @media (max-width: 767px) {
            padding: 5px 25px 5px 30px;
          }
          @media (max-width: 380px) {
            font-size: 14px;
            padding: 3px 20px 3px 30px;
          }
        }
      }
    }
  }

  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;
}

/* subcategorie page header */

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

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

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

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

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

    h1 {
      font-size: 50px;
      font-weight: 300;
      line-height: 1.25;
      margin-top: 5px;

      @media (min-width: 768px) and (max-width: 1199px) {
        font-size: 32px;
      }

      @media (max-width: 767px) {
        font-size: 28px;
      }
    }
  }

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

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

    @media (max-width: 767px) {
      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/harrypotter.png") 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/maldives.png") 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/toniccaffe.png") 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/home-workout.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/yoga2go.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/wather-agenda.jpg") center/cover no-repeat;
      }

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

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

      &:nth-child(3) .img-box.videos {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)),
          url("../images/banners/burito.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;

        @media (max-width: 1199px) {
          height: 320px;
        }

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

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

        p {
          color: #fff;
          width: 100%;
          text-align: left;
          margin: 0;
          padding: 12px 0;
          font-size: 1.1rem;
        }
      }
    }
  }
  .label {
    font-size: 15px;
    color: var(--white);
    background: var(--green);
    font-weight: 600;
    padding: 6px 12px;
    font-style: italic;
    display: block;
    text-align: left;
    max-width: max-content;
    border-radius: 5px;
  }
  .btn {
    border: none;
    border-radius: 30px;
    background: var(--green);
    color: var(--white);
    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 (max-width: 1199px) {
      font-size: 20px;
    }
  }
}

/* Slider */

.slider-container {
  display: flex;
  align-items: center;
  max-width: calc(100vw - 20px);
  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 */
}

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

.slider {
  display: flex;
  width: max-content;
}

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

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

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

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

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

    .category-title {
      color: var(--white);
      font-size: 45px;
      font-weight: 500;
      text-align: left;
      line-height: 2.5rem;

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

    .btn {
      border: none;
      background: var(--white);
      font-size: 18px;
      min-width: 200px;
      position: relative;
      padding: 10px 50px 10px 30px;
      text-align: center;
      text-transform: uppercase;

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

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

  &.slide01 {
    background: url(../images/slider/slider-01-training.jpg) center/cover;
  }
  &.slide02 {
    background: url(../images/slider/slider-02-health.jpg) center/cover;
  }
  &.slide03 {
    background: url(../images/slider/slider-03-lifestyle.jpg) center/cover;
  }
  &.slide04 {
    background: url(../images/slider/slider-04-yoga.jpg) center/cover;
  }
  &.slide05 {
    background: url(../images/slider/slider-05-beauty.jpg) center/cover;
  }
}

.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: 85px;
}
/* Text animation */

.scroll-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
  background: var(--green);
  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: 7px 6px 8px;
  border-radius: 40px;
  height: 58px;
  min-width: 110px;
}

.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(1.1);
  }
}

.button-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(20% - 20px);
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none; /* Firefox */

  &::after {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
  }

  @media (max-width: 1199px) and (min-width: 900px) {
    grid-auto-columns: calc(25% - 20px); /* 4 elemenata */
  }
  @media (max-width: 899px) and (min-width: 600px) {
    grid-auto-columns: calc(50% - 20px); /* 2 elemenata */
  }
  @media (max-width: 599px) {
    grid-auto-columns: 100%; /* 1 element po redu */
  }
}

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

.slide-button {
  border-radius: 16px;
  overflow: hidden;

  /* @media (max-width: 1024px) {
    flex: 0 0 calc(33.33% - 20px);
  }
  @media (max-width: 768px) {
    flex: 0 0 calc(50% - 20px); 
  }
  @media (max-width: 480px) {
    flex: 0 0 100%; 
  } */

  .pic-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
  }
  .pic-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    &:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    }

    .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;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease-out;

    &::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;
      transition: all 0.3s ease-out;
    }

    img {
      width: auto;
      min-width: 100%;
      height: 100%;
      display: block;
      transition: all 0.3s ease-out;
    }

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

/* 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;
  }

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

  &:first-of-type {
    background: var(--purple);

    .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: var(--green);
  }

  .banner-content {
    color: var(--white);
    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: 60%;
    }
    @media screen and (max-width: 767px) {
      width: 50%;
      max-width: 300px;
    }
  }
}

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

  .icon-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    @media (max-width: 991px) {
      flex-direction: column;
    }
  }

  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: 50px;
    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: #2fc4ee;
  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(--purple);
}

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

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

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

.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;
}

.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 var(--green);
}

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

.login-popup .login-check {
  background: var(--green);
  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: 12px 10px;
  width: 100%;
  text-align: center;
  outline: 0;
  border: 1px solid var(--green);
  box-shadow: 0 0 10px #eaeaea;
}

.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 #fff;
  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: 100%;
  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: 2px solid var(--dark);
  padding: 0;
  transition: none;
  &:hover {
    transform: none;
  }
}

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

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

.green {
  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-green {
  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: 1440px;
  /* padding: 0 10px; */

  &.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-app {
  display: flex;
  align-items: center;
  margin: 30px auto;
}

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

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

.single-app img {
  max-width: 240px;
  margin-right: 15px;

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

.single-description {
  margin: 20px 0;
}

.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;
  }
}

.app-list {
  overflow-y: auto;
  height: 100%;
  max-height: 540px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer i Edge */

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

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

    a {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 12px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--gray);

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

        img {
          transform: scale(0.95);
        }
      }
      img {
        width: 100px;
        height: 100px;
        min-height: 100px;
        min-width: 100px;
        border-radius: 10px;
        box-shadow: 0 5px 0 var(--light-gray);
        transition: transform 0.3s ease;
      }

      h3 {
        font-size: 14px;
        font-weight: 500;
        line-height: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      p {
        font-size: 10px;
        line-height: 12px;
        font-weight: 300;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .stars {
        display: flex;
        flex-direction: row;
        gap: 1px;
        margin: 5px 0;
      }
    }
  }
}

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

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

.swiper-slide a {
  flex-direction: column;
  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 */

  @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 8px;
  flex-wrap: wrap;
}
.mySelection .app-selection a {
  display: flex;
  flex-direction: row;
  &:hover {
    color: var(--dark);
  }
}

.mySelection .app-selection 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;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mySelection .app-selection a {
  display: flex;
  flex-direction: row;
  &:hover {
    color: var(--dark);
  }
}

.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 .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;
  }
}

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

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

.myRecipes .swiper-slide-content {
  display: flex;
  gap: 15px;
  padding-bottom: 15px;
}

.myRecipes .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,
.myRecipes.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: 50px;
  border-bottom: 1px solid var(--gray);
  padding-bottom: 15px;
  width: 100%;
  max-width: 320px;
}

.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(--green);
  background: var(--green);
  border: 2px solid var(--green);
  > span {
    color: var(--white);
  }
}

.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: space-between;
  max-width: 100%;
}
.myRecipes .swiper {
  width: 100%;
  height: 100%;
}

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

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

.myRecipes 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,
.myRecipes p {
  color: var(--dark-gray);
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 5px 0;
  height: 32px;
}

.myRecipes .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;
}
.myTop {
  width: 100%;
  padding: 20px 0;
}

.myTop .swiper-slide {
  width: 220px;
  flex-shrink: 0;
  box-sizing: border-box;
  text-align: center;
  /* margin-right: 0 !important; */
}

.myTop .pic-container {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 10px;
}

.myTop img {
  width: 100%;
  display: block;
}

.slider-title {
  font-size: 14px;
  margin: 0;
}

.content {
  padding: 0 10px;
  position: relative;
}

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

.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(--green);
}

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

  @media (max-width: 767px) {
    justify-content: center;
  }
}

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

.title-section h2,
.title-section h3 {
  font-weight: 600;
  color: var(--dark);
  text-transform: capitalize;
  margin-bottom: 20px;
}

.title-section h3 {
  font-size: 1.2em;
}

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

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

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: 20px 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;
  justify-content: center;
  gap: 40px;

  @media (max-width: 767px) {
    justify-content: center;
    gap: 50px 30px;
  }
}

#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: 310px;
  width: 100%;
  border-bottom: 1px solid var(--light-gray);
  border-radius: 0;
}

.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);
  /* height: 42px; */
  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;
}

.articles-wrap p:empty {
  display: none;
}

.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;
  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(--green);
}

footer {
  margin-top: 50px;

  .footer-wrap {
    text-align: left;
    padding: 60px;
    margin-bottom: 52px;
    border-radius: 50px 50px 0 0;
    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 img {
      max-width: 180px;
      margin-bottom: 30px;
    }
    .moira-logo img {
      height: 30px;
    }
    .social {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 10px;

      .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;

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

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

.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;
}
.error-page {
  height: 60dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#button-error {
  background: var(--green);
  color: var(--white);
  width: auto;
  padding: 5px 30px;
  border-radius: 30px;
  height: 40px;
  border: 0px;
  font-size: 24px;
  box-sizing: content-box;
  max-width: 280px;
  height: 40px;
}

.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;
  }
}

/******** 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 {
    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%;
  }
  .myRecipes p {
    display: -webkit-box;
  }
  .swiper-slide .caption p {
    max-width: 100%;
  }
  .myTips h3 {
    width: 100%;
  }
  article {
    margin: 0 20px;
    max-width: 1200px;
  }
  article img {
    height: 450px;
  }
  .quizz-grid .quizz-wrap,
  .videos-grid .videos-wrap {
    max-width: 310px;
  }
  .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: 1200px) {
  .close {
    display: none;
  }
  .header-mobile {
    display: none;
  }
  .main-container {
    display: flex;
    flex-direction: column;
  }
  .intro .logo {
    display: block;
  }
}
