@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto/roboto-regular.woff2") format("woff2"),
    url("../assets/fonts/Roboto/roboto-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto/roboto-thin.woff2") format("woff2"),
    url("../assets/fonts/Roboto/roboto-thin.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto/roboto-bold.woff2") format("woff2"),
    url("../assets/fonts/Roboto/roboto-bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

html {
  font-size: 30px;
  font-family: "Roboto", sans-serif;
}

body {
  padding: 0;
  margin: 0;
}

/*ORANGE BORDER FOR DEV STUFF
body * {
  border: 1px solid orange;
}*/

p {
  font-size: 1rem;
  text-align: justify;
}

h1,
h2,
h3,
h4 {
  text-transform: uppercase;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 2rem;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s ease-in;
}

button {
}

a:hover {
  color: #e80112;
}

a:focus {
  color: #c00024;
}

.shadow-before-text {
  position: relative;
  z-index: 1;
  background: radial-gradient(ellipse at center, black 0%, transparent 60%);
}

.header-hero__wrapper {
  background: url("../assets/images/octagon-bg.webp") no-repeat;
  background-position: 50% 12%;
  background-size: cover;
  padding-top: 1.3rem;
  margin-bottom: 3.5rem;
}

.hero {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 9.8rem;
  padding-bottom: 16rem;
}

.hero .cta-button,
.get-started .cta-button {
  font-size: 1.2rem;
  padding: 0.67rem 1.8rem;
  font-weight: 400;
}

.hero__headline {
  text-align: center;
}

.cta-button {
  background-color: #e80112;
  color: white;
  border-radius: 7px;
  border: none;
  font-size: inherit;
  padding: 0.23rem;
  text-transform: uppercase;
  font-weight: 400;
  transition: 0.2s ease-in-out;
}

.cta-button:hover {
  transform: scale(1.1);
}

.cta-button:focus {
  background-color: #c00024;
  transform: scale(1);
}

.promotions .cta-button {
  padding: 0.6rem 1.4rem;
}

.all-games {
  display: flex;
  flex-direction: column;
}

.all-games .cta-button {
  padding: 0.6rem 1.4rem;
}
.all-games .all-games__button-link {
  align-self: flex-end;
}

.main-header {
  max-width: 1500px;
  margin: 0 auto;
  text-transform: uppercase;
  background-color: white;
  font-size: 0.7rem;
  position: relative;
}

.main-header .cta-button {
  padding-top: 0.3rem;
}

.main-header__content-wrapper {
  padding: 0.9rem 1.93rem;
  display: flex;
  justify-content: space-between;
}

.main-header__nav {
  display: flex;
  align-items: center;
  flex: 1;
}
.main-header__mobile-menu {
  display: none;
}
.main-header__logo {
  display: flex;
  align-items: center;
}
.main-header__mobile-button {
  border: none;
  background-color: transparent;
  background: url("../assets/icons/arrow-mobile-menu.svg");
  background-repeat: no-repeat;
  height: 1rem;
  width: 1rem;
  background-position: center 55%;
  background-size: 90% auto;
}

.mobile-button--active {
  animation: buttonDown 0.4s ease-in-out;
}

.mobile__dropdown-menu {
  color: white;
  background-color: #1b1b1b;
  overflow: hidden;
  max-height: 0;
  transition: 0.4s ease-in-out;
  padding-left: 1.93rem;
  padding-right: 1.93rem;
  display: none;
}

.mobile-dropdown-menu__element {
  font-size: 1rem;
  padding: 0.5rem 0;
  text-align: center;
}

.mobile-dropdown-menu__element:not(:last-child) {
  border-bottom: 1px solid #8d8d8d;
}

.mobile__dropdown-menu--active {
  max-height: 600px;
}

@keyframes buttonDown {
  0% {
    transform: translateY(0px);
  }
  47.5% {
    transform: translateY(10px);
  }
  52.5% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.main-header__nav--left {
  justify-content: start;
}

.main-header__nav--right {
  justify-content: end;
}

.main-header__logo {
  flex-shrink: 0;
}

.main-header__list {
  display: flex;
  gap: 2.7vw;
  margin: 0;
  align-items: center;
}

.hero,
.promotions,
.all-games,
.about-games,
.about-app,
.about-dana,
.reviews,
.get-started,
.bonus,
.questions,
.main-footer__content-wrapper {
  max-width: 1900px;
  margin: 0 auto;
  padding-left: 6.8rem;
  padding-right: 6.8rem;
}

.bonus__wrapper,
.get-started__wrapper {
  padding: 2.9rem 0;
  text-align: center;
}

.bonus__wrapper p,
.get-started__wrapper p {
  text-align: center;
}

.ufc-official {
  margin-bottom: 6.5rem;
}

.ufc-official__headline {
  text-align: center;
  max-width: 1880px;
  margin-left: auto;
  margin-right: auto;
}

.ufc-official__content {
  display: grid;
  grid-template-areas: "dana-1 ufc-official-text dana-2";
}

.ufc-official__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ufc-official__image--left {
  border-radius: 0px 0px 23% 0px;
  grid-area: dana-1;
}

.ufc-official__image--right {
  border-radius: 0px 0px 0px 23%;
  grid-area: dana-2;
}

.ufc-official__text-content {
  margin: 0 1.4rem;
  grid-area: ufc-official-text;
}

.ufc-official__paragraph:first-child {
  margin-top: 0;
}

.ufc-official__download-buttons {
  display: flex;
  justify-content: center;
  gap: 13px;
}

.promotions {
  margin-bottom: 3.5rem;
}

.swiper.firstSwiper {
  padding-left: 1rem;
  padding-right: 1rem;
}

.swiper.secondSwiper {
  padding: 2rem;
}

.promotion__cards.swiper {
  position: relative;
  color: white;
}

.promotion-card.swiper-slide {
  max-width: 772px;
  width: 100%;
  height: auto;
  border-top-right-radius: 4rem;
  border-bottom-left-radius: 5.5rem;
  box-sizing: border-box;
  padding: 1.5rem;
}

.arrow-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  background-color: #e80112;
  background-image: url("../assets/icons/Arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 46px auto;
  flex-shrink: 0;
}

.promotion-card__content {
  text-align: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
}

.promotion-card__content p {
  text-align: end;
  margin: 0;
}

.promotion-card__headline {
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0;
}

.promotion-card__paragraph {
  margin-top: 0;
}

.promotion-card__image {
  width: 100%;
}

.promotion__button {
  margin-top: 1.67rem;
  font-size: 1rem;
}

.promotion-card#promotion-card-1 {
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.5) 40%,
      rgba(0, 0, 0, 0) 50%
    ),
    url("../assets/images/promotions/chips.webp");
  background-position: 100% 0%;
  background-size: 150% auto;
  background-repeat: no-repeat;
}

.promotion-card#promotion-card-2 {
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.5) 40%,
      rgba(0, 0, 0, 0) 50%
    ),
    url("../assets/images/promotions/slots.webp");
  background-position: 100% 0%;
  background-size: 150% auto;
  background-repeat: no-repeat;
}

.promotion-card#promotion-card-3 {
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.5) 40%,
      rgba(0, 0, 0, 0) 50%
    ),
    url("../assets/images/promotions/fight.webp");
  background-position: 100% 0%;
  background-size: 150% auto;
  background-repeat: no-repeat;
}

.promotion-card#promotion-card-4 {
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.5) 40%,
      rgba(0, 0, 0, 0) 50%
    ),
    url("../assets/images/promotions/present.webp");
  background-position: 100% 0%;
  background-size: 150% auto;
  background-repeat: no-repeat;
}
.games {
  background: url("../assets/images/wall-bg.webp") no-repeat;
  color: white;
  background-size: cover;
  background-position: center;
  padding-top: 7.5rem;
  padding-bottom: 0;
  margin-bottom: 2.5rem;
}

.games__type {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.games__type-list {
  display: flex;
  flex-direction: row;
  gap: 1.8vw;
}
.games__type-header {
  font-size: 3.5rem;
}

.games__type-image {
  max-width: 312px;
  width: 16.8vw;
  height: auto;
}

.about-games__content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.about-games__text-content {
  max-width: 863px;
  padding-bottom: 6.7rem;
}

.about-games__image-content {
  overflow: hidden;
}

.about-games__image-content img {
  max-width: 900px;
  width: 100%;
  height: auto;
  position: relative;
  top: 4.7vw;
}

.about-app {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5.93rem;
}
.about-app__right {
  max-width: 985px;
}
.about-app__left img {
  width: 100%;
}

.about-app__list-item {
  padding: 0.4rem;
  border-radius: 11px;
  color: white;
  text-transform: uppercase;
  background: linear-gradient(to right, #e80112, #82010a);
  font-size: 0.67rem;
  text-align: center;
}
.about-app__list-item:not(:last-child) {
  margin-bottom: 0.4rem;
}

.about-app__legit {
  text-align: center;
  position: relative;
  background: linear-gradient(white, white);
  border: 4px solid transparent;
  background-clip: padding-box;
  border-radius: 30px;
  padding: 0.7rem;
}

.about-app__legit::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(
    to top left,
    transparent 0%,
    transparent 45%,
    black 100%
  );
  border-radius: 30px;
}

.about-app__legit .about-app__legit-header {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
}

.about-app__legit .about-app__legit-paragraph {
  font-size: 0.73rem;
}

.about-app__legit-logos {
  justify-content: center;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.about-app__legit-logo {
  max-width: 20%;
}

.dices-overflow-wrapper {
  overflow: hidden;
  position: relative;
}

.dices-bg {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  z-index: 1;
  pointer-events: none;
}

.about-dana {
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

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

.about-dana__text-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-dana__text-card:nth-child(2n + 1) {
  align-self: flex-start;
}

.about-dana__text-card:nth-child(2n) {
  align-self: flex-end;
}

.about-dana__text-card {
  color: white;
  position: relative;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  padding: 0.87rem 1.8rem 0.87rem 1.8rem;
  max-width: 1036px;
}
.about-dana__text-card:not(:last-child) {
  margin-bottom: 1.6rem;
}
.about-dana__text-card__headline {
  text-align: center;
}
.about-dana__text-card__paragraph {
  margin: 0;
  text-align: center;
}

.reviews {
  margin-bottom: 4rem;
}

.review-cards.swiper {
  display: flex;
  flex-direction: row;
}

.review-card.swiper-slide {
  display: flex;
  flex-direction: column;
  border-radius: 40px;
  box-shadow: 0px 0px 30px 5px gray;
  max-width: 485px;
  height: auto;
  padding: 0.87rem 2.13rem 0.87rem 0.87rem;
  position: relative;
}

.review {
  display: flex;
  justify-content: space-between;
}

.review__stars {
  margin: 0;
}

.review__name {
  text-transform: capitalize;
  font-weight: 600;
  font-style: normal;
}

.review__avatar {
  width: 102px;
  height: 102px;
}

.review__header {
  display: flex;
  gap: 20px;
}

.reviews .arrow-button {
  position: absolute;
  bottom: 80px;
  right: -35px;
}

.review__text {
  font-size: 0.73rem;
  text-align: start;
}

.gloves-bg {
  background: url("../assets/images/gloves-bg.webp") no-repeat;
  background-position: center;
  background-size: cover;
}

.bonus {
  color: white;
}

.get-started__background {
  background: url("../assets/images/slot-bg.webp");
  background-position: center;
  background-size: cover;
  margin-bottom: 2.33rem;
}

.get-started {
  color: white;
}

.questions {
  margin-bottom: 2.33rem;
}
.questions__headline {
  text-align: center;
}

.question__item:not(:last-child) {
  margin-bottom: 0.33rem;
}

@keyframes colorChange {
  to {
    background-color: #e80112;
  }
}

.question__item {
  display: flex;
  flex-direction: column;
  background-color: #1b1b1b;
  border-radius: 23px;
  color: white;
  padding: 0.5rem 0.83rem;
}

.question__item:has(.active) {
  animation: 0.35s colorChange forwards;
}

.question__item-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.question__item-answer {
  height: 0;
  overflow: hidden;
  margin: 0;
}

.question__item:has(.active) .question__item-header-wrapper {
  border-bottom: 1px solid white;
  padding-bottom: 0.5rem;
}

.question__item:has(.active) .question__item-answer {
  margin: 0.66rem 0;
  height: max-content;
}

.question__item-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}

.question__item-number {
  margin: 0;
  font-weight: 600;
  transform: skew(-10deg);
  font-size: 3.3rem;
}

.question__item-headline {
  margin: 0;
}

.question__item-button {
  border-radius: 50%;
  background-color: white;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/*plus-minus toggle button start*/

.plusminus {
  position: relative;
  cursor: pointer;

  &.active {
    &:before {
      transform: translate(-50%, -50%) rotate(-90deg);
      opacity: 0;
      background-color: #e80112;
    }
    &:after {
      transform: translate(-50%, -50%) rotate(0);
      background-color: #e80112;
    }
  }

  &:before,
  &:after {
    content: "";
    display: block;
    background-color: #333;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: 0.35s;
    width: 50%;
    border-radius: 5px;
    transform-origin: center;
    height: 3px;
  }

  &:before {
    transform: translate(-50%, -50%);
  }

  &:after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

/*plus-minus toggle button end*/

footer {
  background-color: #1b1b1b;
  color: white;
}

.main-footer {
  padding-top: 2.27rem;
  max-height: 520px;
  overflow: hidden;
}

.main-footer__content-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.4rem;
}
.main-footer__content--right {
  display: flex;
  flex-direction: row;
  gap: 4vw;
}
.main-footer__content--left {
  min-width: 260px;
}
.main-footer__content--left .ufc-logo-monochrome {
  margin-bottom: 0.7rem;
}
.main-footer__socials {
  margin-bottom: 0.7rem;
}

.main-footer__contact {
  display: flex;
  gap: 9px;
  margin-bottom: 0.66rem;
}

.main-footer__contact-icon {
  width: 12px;
  height: auto;
}

.main-footer__contact-text {
  margin: 0;
}

.big-ufc-logo {
  width: 100%;
}

.big-ufc-logo {
  position: relative;
  left: -4vw;
}

@media screen and (max-width: 1920px) {
  html {
    font-size: 24px;
  }
  .games__type {
    flex-direction: column;
  }
  .games__type-list {
    width: 100%;
    justify-content: space-between;
  }
  .games__type-image {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .about-games__text-content {
    flex-shrink: 1;
  }
  .about-games__image-content {
    flex-shrink: 0;
    max-width: 450px;
    top: 3vw;
  }
  .dices-bg {
    z-index: 0;
  }
  .gloves-bg {
    position: relative;
    z-index: 10;
  }
}

@media screen and (max-width: 1600px) {
  .main-header {
    margin: 0 0.5rem;
  }
  .question__item {
    min-height: 74px;
    display: flex;
    justify-content: center;
  }
  .about-games__content {
    flex-direction: column;
  }
  .about-games__text-content {
    max-width: 100%;
    padding-bottom: 0;
  }
  .about-games__image-content {
    margin: 0 auto;
    max-width: 70%;
  }
  .about-games__image-content img {
    top: 0;
  }
  .promotions,
  .reviews {
    padding-right: 0;
    padding-left: 0;
  }
  .promotions-header {
    padding-left: 6.8rem;
    padding-right: 6.8rem;
  }
}

@media screen and (max-width: 1440px) {
  .ufc-official__content {
    grid-template-areas:
      "dana-1 dana-2"
      "ufc-official-text ufc-official-text";
    gap: 15px;
  }
  .ufc-official__image {
    height: 90%;
  }
  .about-app {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 20px;
  }
  .hero,
  .ufc-official__text-content,
  .promotions-header,
  .all-games,
  .about-games,
  .about-app,
  .about-dana,
  .reviews-header,
  .reviews-paragraph,
  .get-started,
  .bonus,
  .questions,
  .main-footer__content-wrapper {
    padding-right: 4rem;
    padding-left: 4rem;
  }
  .ufc-official__download-buttons img {
    max-width: 180px;
  }
  .about-games__image-content {
    max-width: 80%;
  }
  .main-footer__content--left {
    min-width: 150px;
  }
}

@media screen and (max-width: 820px) {
  .header-hero__wrapper {
    padding-top: 0;
  }
  .main-header {
    margin: 0;
    position: fixed;
    width: 100%;
    z-index: 100;
  }
  .mobile__dropdown-menu {
    display: block;
  }
  .main-header__content-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }
  .main-header__nav {
    display: none;
  }
  .main-header__logo,
  .main-header__deadweight {
    flex: 1;
  }
  .main-header__logo img {
    width: 3.5rem;
  }
  .main-header__mobile-menu {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 1rem;
  }
  .main-header {
    justify-content: space-between;
    align-items: center;
  }
  .hero {
    padding-bottom: 10rem;
  }
  .ufc-official {
    margin-bottom: 3rem;
  }
  .games {
    margin-bottom: 0;
    padding-top: 2rem;
  }
  .about-app {
    margin-bottom: 0;
  }
  .reviews {
    margin-bottom: 0;
  }
  .reviews-header {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 18px;
  }
  .games__type {
    flex-direction: column;
  }
  .games__type-list {
    flex-direction: column;
  }
  .games__type-header {
    font-size: 1.25rem;
  }
  .games__two-rows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "type-1 type-2";
    gap: 13px;
  }

  #games-type-1 {
    grid-area: type-1;
  }

  #games-type-2 {
    grid-area: type-2;
  }

  #games-type-3 {
    grid-area: type-1;
  }

  #games-type-4 {
    grid-area: type-2;
  }
  .games__type {
    justify-content: flex-start;
  }
  .about-app {
    flex-direction: column-reverse;
    align-items: center;
  }
  .ufc-official__image {
    aspect-ratio: 100/105;
  }
  .main-footer__contact {
    font-size: 0.75rem;
  }
  .main-footer {
    font-size: 1rem;
    padding-top: 0;
  }
  .main-footer__pages {
    text-transform: uppercase;
  }
  .main-footer__pages .main-footer__list-item {
    margin-bottom: 0.7rem;
  }
  .main-footer__content-wrapper {
    flex-direction: column-reverse;
  }
  .main-footer__content--left {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 17px;
    margin-top: 1rem;
  }
  .main-footer__content--right {
    justify-content: space-between;
  }
  .main-footer__support {
    flex-grow: 0;
  }
  .main-footer__payment-options {
    flex-grow: 0;
    display: flex;
  }
  .main-footer__payment-options img {
    max-width: 43px;
  }
  .main-footer__socials {
    width: max-content;
    display: flex;
    gap: 0.75rem;
  }

  .main-footer__content--left .ufc-logo-monochrome {
    max-width: 170px;
  }
  .main-footer__age-restriction {
    width: 50px;
  }
  .arrow-button {
    width: 70px;
    height: 70px;
    background-size: 70% 70%;
  }
}

@media screen and (max-width: 510px) {
  .hero,
  .ufc-official__text-content,
  .promotions-header,
  .all-games,
  .about-games,
  .about-app,
  .about-dana,
  .reviews-header,
  .reviews-paragraph,
  .get-started,
  .bonus,
  .questions,
  .main-footer__content-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .ufc-official__download-buttons img {
    max-width: 120px;
  }
  .arrow-button {
    width: 60px;
    height: 60px;
    background-size: 70% 70%;
  }
  .reviews .arrow-button {
    top: 25px;
    right: 20px;
  }
}

@media screen and (max-width: 425px) {
  .hero,
  .ufc-official__text-content,
  .promotions-header,
  .all-games,
  .about-games,
  .about-app,
  .about-dana,
  .reviews-header,
  .reviews-paragraph,
  .get-started,
  .bonus,
  .questions,
  .main-footer__content-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media screen and (max-width: 375px) {
  html {
    font-size: 16px;
  }
  .hero,
  .ufc-official__text-content,
  .promotions-header,
  .all-games,
  .about-games,
  .about-app,
  .about-dana,
  .reviews-header,
  .reviews-paragraph,
  .get-started,
  .bonus,
  .questions,
  .main-footer__content-wrapper {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .hero .cta-button {
    border-radius: 5px;
  }
  .cta-button {
    border-radius: 5px;
    font-size: 0.7rem;
  }

  .promotions-header {
    font-size: 40px;
  }
  .promotion-card__headline {
    font-size: 25px;
  }
  .review-card.swiper-slide {
    width: 100%;
    height: auto;
  }
  .question__item {
    border-radius: 15px;
  }
  .question__item-headline {
    font-size: 1rem;
  }
  .arrow-button {
    width: 40px;
    height: 40px;
  }
}

.invisible-block {
  opacity: 0;
}

body .visible-block {
  animation: slideUp 0.5s ease-in-out forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(10%);
    opacity: 0;
  }
  to {
    animation: translateY(0px);
    opacity: 1;
  }
}
