/*!*********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./App/Components/UI/Loaders/BubbleLoader/styles.scss ***!
  \*********************************************************************************************************************************************/
.bubleloader-container {
  position: relative;
}
.bubleloader-container.overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-weight: 500;
}
.bubleloader-container .loading-percentage {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
}
.bubleloader-container .spinner {
  position: relative;
  top: calc(50% - 30px);
  left: 0;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  animation: loadingI 2s linear infinite;
}
@media (max-width: 450px) {
  .bubleloader-container .spinner {
    top: calc(50% - 15px);
    width: 40px;
    height: 40px;
  }
}
.bubleloader-container .spinner.overlay {
  top: initial;
  left: initial;
}
.bubleloader-container .spinner .bubble-1,
.bubleloader-container .spinner .bubble-2 {
  position: absolute;
  top: 0;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  animation: bounce 2s ease-in-out infinite;
}
@media (max-width: 450px) {
  .bubleloader-container .spinner .bubble-1,
  .bubleloader-container .spinner .bubble-2 {
    width: 23px;
    height: 23px;
  }
}
.bubleloader-container .spinner .bubble-2 {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

@keyframes loadingI {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
/*!**********************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./App/Components/UI/InfoModal/styles.scss ***!
  \**********************************************************************************************************************************/
.info-modal-is-open {
  overflow: hidden;
}

.info-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  color: #1A2533;
  font-family: "Source Sans Pro", sans-serif !important;
  font-weight: 400;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  overflow: hidden;
}

.info-modal__backdrop {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.6);
}
@media (min-width: 992px) {
  .info-modal__backdrop {
    padding: 48px;
  }
}
@media (orientation: landscape) and (max-height: 767px) {
  .info-modal__backdrop {
    padding: 40px;
  }
}
@media (min-width: 1024px) {
  .info-modal__backdrop {
    padding: 64px 72px;
  }
}
@media (min-width: 1024px) and (orientation: landscape) and (max-height: 750px) {
  .info-modal__backdrop {
    padding: 40px 72px;
  }
}

.info-modal__dialog {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 83vh;
  min-height: 83vh;
  max-height: 83vh;
  margin: auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  border-radius: 32px;
  overflow: hidden;
  outline: none;
}
@media (min-width: 414px) {
  .info-modal__dialog {
    height: 80vh;
    min-height: 80vh;
    max-height: 80vh;
  }
}
@media (min-width: 576px) {
  .info-modal__dialog {
    height: 65vh;
    min-height: 65vh;
    max-height: 65vh;
  }
}
@media (min-width: 1024px) {
  .info-modal__dialog {
    max-width: 900px;
    height: 100%;
    min-height: auto;
    max-height: none;
  }
}
@media (min-width: 1920px) {
  .info-modal__dialog {
    height: 77vh;
    min-height: 77vh;
    max-height: 850px;
  }
}
@media (orientation: landscape) and (max-height: 719px) {
  .info-modal__dialog {
    max-width: 850px;
    height: 100%;
    min-height: auto;
    max-height: none;
  }
}
@media (orientation: landscape) and (max-height: 575px) {
  .info-modal__dialog {
    max-width: 760px;
    height: 100%;
    min-height: auto;
    max-height: none;
  }
}

.info-modal__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-height: inherit;
  background: #F2F6FF;
  border-radius: 32px;
  text-align: left;
  overflow: hidden;
}

.info-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  min-height: 64px;
  padding: 20px;
  border-bottom: 2px solid #DBE3F0;
  box-shadow: 0 4px 4px 0 rgba(218, 224, 242, 0.5);
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .info-modal__header {
    min-height: 80px;
    padding: 24px;
  }
}
@media (min-width: 992px) {
  .info-modal__header {
    padding: 24px 32px;
  }
}
@media (min-width: 1024px) {
  .info-modal__header {
    min-height: 84px;
  }
}
@media (orientation: landscape) and (max-height: 575px) {
  .info-modal__header {
    min-height: auto;
    padding: 16px 24px;
  }
}

.info-modal__title {
  margin: 0;
  padding: 0;
  color: #011A4C;
  font-family: "Source Sans Pro", sans-serif !important;
  font-size: 24px !important;
  font-style: normal;
  font-weight: 900;
  line-height: 105%;
}
@media (min-width: 576px) {
  .info-modal__title {
    font-size: 28px !important;
    line-height: 100%;
  }
}
@media (min-width: 768px) {
  .info-modal__title {
    font-size: 32px !important;
  }
}
@media (min-width: 1024px) {
  .info-modal__title {
    font-size: 36px !important;
  }
}

.info-modal__close {
  position: relative;
  align-self: center;
  padding: 0 0 0 15px;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 1;
}
.info-modal__close:hover {
  opacity: 0.8;
}
.info-modal__close .info-modal__close-icon {
  display: block;
  width: 20px;
  height: 20px;
}
@media (min-width: 992px) {
  .info-modal__close .info-modal__close-icon {
    width: 24px;
    height: 24px;
  }
}

.info-modal__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px 20px 24px;
  box-sizing: border-box;
}
.info-modal__body::-webkit-scrollbar {
  width: 8px;
}
.info-modal__body::-webkit-scrollbar-track {
  background: #e8ecf4;
  border-radius: 4px;
}
.info-modal__body::-webkit-scrollbar-thumb {
  background-color: #1A2533;
  border-radius: 4px;
}
@media (min-width: 576px) {
  .info-modal__body {
    padding: 16px 24px 26px;
  }
}
@media (min-width: 992px) {
  .info-modal__body {
    padding: 16px 32px 32px;
  }
}
.info-modal__body.info-modal__body--no-title h1:first-child {
  display: none;
}
.info-modal__body.info-modal__body--no-img p > img {
  display: none;
}
.info-modal__body > div {
  width: 100%;
  height: 100%;
}
.info-modal__body > div > .error-text {
  max-width: 500px;
  margin: 0 auto;
  padding-top: 4em;
  text-align: center;
  line-height: 1.3;
}
.info-modal__body > div > :last-child {
  padding-bottom: 24px;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .info-modal__body > div > :last-child {
    padding-bottom: 32px;
  }
}
.info-modal__body > div p:empty:not(:last-child), .info-modal__body > div li:empty:not(:last-child), .info-modal__body > div span:empty:not(:last-child), .info-modal__body > div a:empty:not(:last-child) {
  display: none;
}
.info-modal__body div.wp-block-spacer {
  display: none;
}
.info-modal__body * {
  font-family: "Source Sans Pro", sans-serif !important;
}
.info-modal__body p, .info-modal__body li {
  margin: 0 0 1rem;
  font-size: 16px !important;
  color: #011A4C;
  line-height: 120%;
}
.info-modal__body h1, .info-modal__body h2, .info-modal__body h3, .info-modal__body h4, .info-modal__body h5, .info-modal__body h6 {
  font-family: "Source Sans Pro", sans-serif !important;
  font-size: 20px !important;
  font-style: normal;
  font-weight: 900;
  line-height: 120%;
  color: #011A4C;
  margin: 1.5rem 0 0.5rem;
}
.info-modal__body h1:first-child, .info-modal__body h2:first-child, .info-modal__body h3:first-child, .info-modal__body h4:first-child, .info-modal__body h5:first-child, .info-modal__body h6:first-child {
  margin-top: 0;
}
@media (min-width: 576px) {
  .info-modal__body h1, .info-modal__body h2, .info-modal__body h3, .info-modal__body h4, .info-modal__body h5, .info-modal__body h6 {
    font-size: 22px !important;
  }
}
@media (min-width: 768px) {
  .info-modal__body h1, .info-modal__body h2, .info-modal__body h3, .info-modal__body h4, .info-modal__body h5, .info-modal__body h6 {
    font-size: 24px !important;
  }
}
@media (min-width: 1024px) {
  .info-modal__body h1, .info-modal__body h2, .info-modal__body h3, .info-modal__body h4, .info-modal__body h5, .info-modal__body h6 {
    font-size: 30px !important;
  }
}
.info-modal__body ul {
  padding-left: 1.25rem;
  margin: 0.25em 0 1rem;
}
@media (max-width: 575px) {
  .info-modal__body ul {
    padding-left: 1rem;
  }
}
.info-modal__body li {
  list-style: disc;
  margin-bottom: 0.3rem;
}
.info-modal__body li > ul {
  padding-left: 1.25rem;
  margin-top: 0.25rem;
}
.info-modal__body a {
  color: #007BFF;
  text-decoration: underline;
  word-wrap: break-word;
  overflow-wrap: break-word;
  cursor: pointer;
}
.info-modal__body br, .info-modal__body img {
  display: none;
}
/*!********************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./App/Components/UI/LazyImg/styles.scss ***!
  \********************************************************************************************************************************/
.lazy-image {
  display: block;
  max-width: 100%;
  height: auto;
}
.lazy-image.lazy-image--loaded {
  animation: lazy-image-fade-in 0.2s ease-out;
}

@keyframes lazy-image-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*!****************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./Pages/games/web/bacanagol/pages/Landing/components/Footer/styles.scss ***!
  \****************************************************************************************************************************************************************/
.footer {
  font-family: "Andika", sans-serif;
  text-align: center;
  line-height: 120%;
}
[lang=el-GR] .footer {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
}
[lang=bg-BG] .footer {
  font-family: "Shantell Sans", sans-serif;
  font-weight: 400;
}
@media (min-width: 576px) {
  .footer {
    font-size: 18px;
  }
}
.footer_top-text {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 24px;
  line-height: normal;
  background: rgba(128, 180, 255, 0.29);
}
@media (min-width: 576px) {
  .footer_top-text {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .footer_top-text {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1920px) {
  .footer_top-text {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1920px) {
  [lang=el-GR] .footer_top-text .container {
    max-width: 1480px;
  }
}
.footer_top-text p {
  max-width: 1320px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .footer_top-text p {
    font-size: 18px;
  }
}
@media (min-width: 1920px) {
  [lang=el-GR] .footer_top-text p {
    max-width: 100%;
  }
}
.footer_main {
  padding-top: 70px;
  padding-bottom: 40px;
  color: #fff;
  background: #011e5c;
}
@media (min-width: 414px) {
  .footer_main {
    padding-top: 74px;
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) {
  .footer_main {
    padding-bottom: 46px;
  }
}
@media (min-width: 1024px) {
  .footer_main {
    padding-bottom: 54px;
  }
}
.footer_main-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 1024px) {
  .footer_main-wrapper {
    flex-direction: row;
  }
}
.footer_about {
  text-align: left;
}
@media (min-width: 1024px) {
  .footer_about {
    width: 325px;
  }
  [lang=el-GR] .footer_about {
    width: 360px;
  }
}
@media (min-width: 1200px) {
  .footer_about {
    width: initial;
  }
  [lang=el-GR] .footer_about, [lang|=es] .footer_about {
    width: 380px;
  }
}
@media (min-width: 1400px) {
  [lang=el-GR] .footer_about, [lang|=es] .footer_about {
    width: 450px;
  }
}
@media (min-width: 1024px) {
  .footer_about__text {
    max-width: 286px;
  }
  [lang=el-GR] .footer_about__text, [lang|=es] .footer_about__text {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .footer_about__text {
    max-width: 360px;
  }
}
@media (min-width: 1920px) {
  .footer_about__text {
    max-width: 435px;
  }
}
.footer_about__highlight {
  color: #fc0;
}
.footer_terms {
  display: flex;
  flex-direction: column;
}
.footer_terms a {
  color: #fff;
}
@media (min-width: 768px) {
  .footer_terms {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .footer_terms {
    align-items: center;
    flex-grow: 1;
  }
}
.footer_logo {
  width: 105px;
  height: 83px;
  margin: 13px auto 34px;
}
@media (min-width: 576px) {
  .footer_logo {
    margin: 16px auto 24px;
  }
}
@media (min-width: 768px) {
  .footer_logo {
    margin: 45px 0 0;
  }
}
@media (min-width: 1024px) {
  .footer_logo {
    width: 113px;
    height: 90px;
    margin: 10px auto 0;
  }
}
.footer_logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer_terms-title {
  text-transform: uppercase;
}
.footer_terms-links {
  margin-top: 14px;
}
[lang=sr-latn] .footer_terms-links {
  letter-spacing: -0.5px;
}
@media (min-width: 414px) {
  [lang=sr-latn] .footer_terms-links {
    letter-spacing: 0;
  }
}
@media (min-width: 768px) {
  .footer_terms-links {
    margin-bottom: 15px;
  }
}
@media (min-width: 1024px) {
  .footer_terms-links {
    margin-top: 18px;
  }
}
.footer_terms-links span {
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.1s ease-in;
}
.footer_terms-links span:hover, .footer_terms-links span:active {
  color: #fc0;
}
.footer_copyright {
  display: flex;
  justify-content: center;
  padding-top: 21px;
  padding-bottom: 21px;
  font-size: 16px;
  color: #88a8eb;
  background: #001747;
}
@media (min-width: 360px) {
  [lang=bg-BG] .footer_copyright, [lang=ro-RO] .footer_copyright, [lang=el-GR] .footer_copyright, [lang|=es] .footer_copyright {
    font-size: 14px;
    line-height: 120%;
  }
}
@media (min-width: 414px) {
  .footer_copyright {
    padding-top: 29px;
    padding-bottom: 29px;
  }
}
@media (min-width: 576px) {
  .footer_copyright {
    font-size: 18px;
  }
  [lang=bg-BG] .footer_copyright, [lang=pt-BR] .footer_copyright {
    font-size: 16px;
  }
  [lang=ro-RO] .footer_copyright, [lang=el-GR] .footer_copyright, [lang|=es] .footer_copyright {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  [lang=bg-BG] .footer_copyright, [lang=pt-BR] .footer_copyright {
    font-size: 18px;
  }
}
.footer_copyright p {
  max-width: 230px;
}
@media (min-width: 414px) {
  .footer_copyright p {
    max-width: none;
  }
}
.footer .footer_terms-wrapper {
  display: flex;
  flex-direction: column;
}
.footer .scroll-button {
  display: none;
  align-self: flex-end;
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  .footer .scroll-button {
    display: block;
  }
}
.footer .scroll-button-mobile {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .footer .scroll-button-mobile {
    display: none;
  }
}
.footer .footer_about__title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
[lang=ro-RO] .footer .footer_about__title-wrapper .footer_about__title, [lang|=es] .footer .footer_about__title-wrapper .footer_about__title, [lang=pt-BR] .footer .footer_about__title-wrapper .footer_about__title, [lang|=en] .footer .footer_about__title-wrapper .footer_about__title, [lang=sr-latn] .footer .footer_about__title-wrapper .footer_about__title {
  font-weight: 400;
}
/*!*************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./Pages/games/web/bacanagol/pages/Landing/components/GameDescription/styles.scss ***!
  \*************************************************************************************************************************************************************************/
@media (min-width: 360px) {
  [lang=bg-BG] .game_description-intro, [lang=el-GR] .game_description-intro {
    text-align: center;
    font-size: 24px;
    line-height: 130%;
  }
  [lang=ro-RO] .game_description-intro, [lang|=es] .game_description-intro, [lang=pt-BR] .game_description-intro, [lang|=en] .game_description-intro, [lang=sr-latn] .game_description-intro {
    text-align: center;
    font-size: 24px;
  }
}
@media (min-width: 576px) {
  [lang=bg-BG] .game_description-intro, [lang=ro-RO] .game_description-intro, [lang=el-GR] .game_description-intro, [lang|=es] .game_description-intro, [lang=pt-BR] .game_description-intro, [lang|=en] .game_description-intro, [lang=sr-latn] .game_description-intro {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  [lang|=es] .game_description-intro {
    width: 95%;
  }
}
@media (min-width: 962px) {
  [lang=el-GR] .game_description-intro {
    width: 95%;
  }
}
@media (min-width: 1024px) {
  [lang=el-GR] .game_description-intro {
    width: 90%;
  }
}
@media (min-width: 1200px) {
  [lang|=es] .game_description-intro {
    width: 100%;
  }
}
@media (min-width: 1400px) {
  [lang=el-GR] .game_description-intro {
    width: 100%;
  }
  [lang=pt-BR] .game_description-intro {
    width: max-content;
  }
}
@media (min-width: 1920px) {
  [lang=bg-BG] .game_description-intro {
    max-width: fit-content;
  }
  [lang=ro-RO] .game_description-intro {
    max-width: 1246px;
  }
}

.game_description {
  line-height: 1.5;
}
.game_description p {
  font-size: 24px;
  line-height: 1.5;
  text-align: start;
}
@media (max-width: 576px) {
  .game_description p {
    font-size: 18px;
  }
}
.game_description .game_description_title {
  margin-bottom: 16px;
}
@media (min-width: 962px) {
  [lang=bg-BG] .game_description-list-wrapper, [lang=ro-RO] .game_description-list-wrapper, [lang=el-GR] .game_description-list-wrapper, [lang|=es] .game_description-list-wrapper, [lang=pt-BR] .game_description-list-wrapper, [lang|=en] .game_description-list-wrapper, [lang=sr-latn] .game_description-list-wrapper {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  [lang=bg-BG] .game_description-list-wrapper, [lang=ro-RO] .game_description-list-wrapper, [lang=el-GR] .game_description-list-wrapper, [lang|=es] .game_description-list-wrapper, [lang=pt-BR] .game_description-list-wrapper, [lang|=en] .game_description-list-wrapper, [lang=sr-latn] .game_description-list-wrapper {
    max-width: 560px;
  }
}
@media (min-width: 1920px) {
  [lang=bg-BG] .game_description-list-wrapper, [lang=ro-RO] .game_description-list-wrapper, [lang=el-GR] .game_description-list-wrapper, [lang|=es] .game_description-list-wrapper, [lang=pt-BR] .game_description-list-wrapper, [lang|=en] .game_description-list-wrapper, [lang=sr-latn] .game_description-list-wrapper {
    max-width: 715px;
  }
}
@media (min-width: 360px) {
  [lang=bg-BG] .game_description_title, [lang=el-GR] .game_description_title {
    font-size: 24px;
  }
  [lang=ro-RO] .game_description_title, [lang|=es] .game_description_title, [lang=pt-BR] .game_description_title, [lang|=en] .game_description_title, [lang=sr-latn] .game_description_title {
    font-size: 24px;
    font-weight: 400;
  }
}
@media (min-width: 576px) {
  [lang=bg-BG] .game_description_title, [lang=ro-RO] .game_description_title, [lang=el-GR] .game_description_title, [lang|=es] .game_description_title, [lang=pt-BR] .game_description_title, [lang|=en] .game_description_title, [lang=sr-latn] .game_description_title {
    font-size: 30px;
  }
}
.game_description .game_details {
  margin-bottom: 30px;
}
.game_description .game_location_info {
  margin-bottom: 30px;
}

.game_description_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1304px;
  padding: calc(40px + 60 * (100vw - 320px) / 1600) 24px;
  margin: 0 auto;
  column-gap: 100px;
}
@media (max-width: 962px) {
  [lang=bg-BG] .game_description_content, [lang=ro-RO] .game_description_content, [lang=el-GR] .game_description_content, [lang|=es] .game_description_content, [lang=pt-BR] .game_description_content, [lang|=en] .game_description_content, [lang=sr-latn] .game_description_content {
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 32px;
  }
}
@media (max-width: 1024px) {
  .game_description_content {
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 32px;
  }
}
@media (min-width: 962px) {
  [lang=bg-BG] .game_description_content, [lang=ro-RO] .game_description_content, [lang=el-GR] .game_description_content, [lang|=es] .game_description_content, [lang=pt-BR] .game_description_content, [lang|=en] .game_description_content, [lang=sr-latn] .game_description_content {
    padding-left: 16px;
    padding-right: 16px;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1024px) {
  [lang=bg-BG] .game_description_content, [lang=ro-RO] .game_description_content, [lang=el-GR] .game_description_content, [lang|=es] .game_description_content, [lang=pt-BR] .game_description_content, [lang|=en] .game_description_content, [lang=sr-latn] .game_description_content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1920px) {
  [lang=bg-BG] .game_description_content, [lang=ro-RO] .game_description_content, [lang=el-GR] .game_description_content, [lang|=es] .game_description_content, [lang=pt-BR] .game_description_content, [lang|=en] .game_description_content, [lang=sr-latn] .game_description_content {
    padding-left: 0;
    padding-right: 0;
    max-width: 1460px;
  }
}
.game_description_content .game_description_list {
  margin-bottom: 30px;
  text-align: start;
  max-width: 715px;
}
.game_description_content .game_description_list li {
  font-size: 24px;
  list-style-type: disc;
  margin-left: 50px;
}
[lang=pt-BR] .game_description_content .game_description_list li, [lang|=en] .game_description_content .game_description_list li, [lang=sr-latn] .game_description_content .game_description_list li {
  margin-left: 30px;
}
@media (max-width: 576px) {
  .game_description_content .game_description_list li {
    font-size: 18px;
  }
}
@media (min-width: 360px) {
  [lang=bg-BG] .game_description_content .game_description_list li {
    font-size: 18px;
  }
}
@media (min-width: 576px) {
  [lang=bg-BG] .game_description_content .game_description_list li, [lang=ro-RO] .game_description_content .game_description_list li, [lang=el-GR] .game_description_content .game_description_list li, [lang|=es] .game_description_content .game_description_list li {
    font-size: 24px;
  }
  [lang=pt-BR] .game_description_content .game_description_list li, [lang|=en] .game_description_content .game_description_list li, [lang=sr-latn] .game_description_content .game_description_list li {
    font-size: 24px;
    margin-left: 40px;
  }
}

.game_description_logo {
  width: 339px;
  height: 304px;
}
@media (max-width: 414px) {
  .game_description_logo {
    width: 300px;
    height: 268px;
  }
}
@media (max-width: 360px) {
  .game_description_logo {
    width: 270px;
    height: 241px;
  }
}
@media (min-width: 962px) {
  [lang=bg-BG] .game_description_logo, [lang=ro-RO] .game_description_logo, [lang=el-GR] .game_description_logo, [lang|=es] .game_description_logo, [lang=pt-BR] .game_description_logo, [lang|=en] .game_description_logo, [lang=sr-latn] .game_description_logo {
    width: 100%;
    max-width: 389px;
    height: auto;
    display: flex;
    justify-content: end;
  }
}
@media (min-width: 1200px) {
  [lang=bg-BG] .game_description_logo, [lang=ro-RO] .game_description_logo, [lang=el-GR] .game_description_logo, [lang|=es] .game_description_logo, [lang=pt-BR] .game_description_logo, [lang|=en] .game_description_logo, [lang=sr-latn] .game_description_logo {
    max-width: 459px;
  }
}

.game_details_wrapper {
  width: 100%;
  background: rgba(128, 180, 255, 0.29);
}

.game_details_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  row-gap: 25px;
  max-width: 1503px;
  margin: 0 auto;
  padding: 40px 24px;
}
@media (max-width: 962px) {
  [lang=bg-BG] .game_details_content, [lang=ro-RO] .game_details_content, [lang=el-GR] .game_details_content, [lang|=es] .game_details_content, [lang=pt-BR] .game_details_content, [lang|=en] .game_details_content, [lang=sr-latn] .game_details_content {
    flex-direction: column-reverse;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 32px;
  }
}
@media (max-width: 1024px) {
  .game_details_content {
    flex-direction: column-reverse;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 32px;
  }
}
@media (min-width: 962px) {
  [lang=bg-BG] .game_details_content, [lang=ro-RO] .game_details_content, [lang=el-GR] .game_details_content, [lang|=es] .game_details_content, [lang=pt-BR] .game_details_content, [lang|=en] .game_details_content, [lang=sr-latn] .game_details_content {
    gap: 20px;
    padding-left: 16px;
    padding-right: 16px;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1024px) {
  [lang=bg-BG] .game_details_content, [lang=ro-RO] .game_details_content, [lang=el-GR] .game_details_content, [lang|=es] .game_details_content, [lang=pt-BR] .game_details_content, [lang|=en] .game_details_content, [lang=sr-latn] .game_details_content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1920px) {
  [lang=bg-BG] .game_details_content, [lang=ro-RO] .game_details_content, [lang=el-GR] .game_details_content, [lang|=es] .game_details_content, [lang=pt-BR] .game_details_content, [lang|=en] .game_details_content, [lang=sr-latn] .game_details_content {
    padding-left: 0;
    padding-right: 0;
    max-width: 1460px;
  }
}
.game_details_content .game_details {
  max-width: 715px;
}
@media (min-width: 962px) {
  [lang=bg-BG] .game_details_content .game_details, [lang=ro-RO] .game_details_content .game_details, [lang=el-GR] .game_details_content .game_details, [lang|=es] .game_details_content .game_details, [lang=pt-BR] .game_details_content .game_details, [lang|=en] .game_details_content .game_details, [lang=sr-latn] .game_details_content .game_details {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  [lang=bg-BG] .game_details_content .game_details, [lang=ro-RO] .game_details_content .game_details, [lang=el-GR] .game_details_content .game_details, [lang|=es] .game_details_content .game_details, [lang=pt-BR] .game_details_content .game_details, [lang|=en] .game_details_content .game_details, [lang=sr-latn] .game_details_content .game_details {
    max-width: 560px;
  }
}
@media (min-width: 1920px) {
  [lang=bg-BG] .game_details_content .game_details, [lang=ro-RO] .game_details_content .game_details, [lang=el-GR] .game_details_content .game_details, [lang|=es] .game_details_content .game_details, [lang=pt-BR] .game_details_content .game_details, [lang|=en] .game_details_content .game_details, [lang=sr-latn] .game_details_content .game_details {
    max-width: 715px;
  }
}
.game_details_content .game_details_logo {
  min-width: calc(272px + 340 * (100vw - 320px) / 1600);
  min-height: calc(241px + 254 * (100vw - 320px) / 1600);
}
@media (min-width: 962px) {
  [lang=bg-BG] .game_details_content .game_details_logo, [lang=ro-RO] .game_details_content .game_details_logo, [lang=el-GR] .game_details_content .game_details_logo, [lang|=es] .game_details_content .game_details_logo, [lang=pt-BR] .game_details_content .game_details_logo, [lang|=en] .game_details_content .game_details_logo, [lang=sr-latn] .game_details_content .game_details_logo {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  [lang=bg-BG] .game_details_content .game_details_logo, [lang=ro-RO] .game_details_content .game_details_logo, [lang=el-GR] .game_details_content .game_details_logo, [lang|=es] .game_details_content .game_details_logo, [lang=pt-BR] .game_details_content .game_details_logo, [lang|=en] .game_details_content .game_details_logo, [lang=sr-latn] .game_details_content .game_details_logo {
    max-width: 560px;
    min-width: 560px;
  }
}
@media (min-width: 1920px) {
  [lang=bg-BG] .game_details_content .game_details_logo, [lang=ro-RO] .game_details_content .game_details_logo, [lang=el-GR] .game_details_content .game_details_logo, [lang|=es] .game_details_content .game_details_logo, [lang=pt-BR] .game_details_content .game_details_logo, [lang|=en] .game_details_content .game_details_logo, [lang=sr-latn] .game_details_content .game_details_logo {
    max-width: 640px;
  }
}

.game_location_info_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(40px + 60 * (100vw - 320px) / 1600) 24px;
  max-width: 1369px;
  margin: 0 auto;
  column-gap: 42px;
}
@media (max-width: 962px) {
  [lang=bg-BG] .game_location_info_content, [lang=ro-RO] .game_location_info_content, [lang=el-GR] .game_location_info_content, [lang|=es] .game_location_info_content, [lang=pt-BR] .game_location_info_content, [lang|=en] .game_location_info_content, [lang=sr-latn] .game_location_info_content {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 32px;
  }
}
@media (max-width: 1024px) {
  .game_location_info_content {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 32px;
  }
}
@media (min-width: 962px) {
  [lang=bg-BG] .game_location_info_content, [lang=ro-RO] .game_location_info_content, [lang=el-GR] .game_location_info_content, [lang|=es] .game_location_info_content, [lang=pt-BR] .game_location_info_content, [lang|=en] .game_location_info_content, [lang=sr-latn] .game_location_info_content {
    padding-left: 16px;
    padding-right: 16px;
    column-gap: 54px;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1024px) {
  [lang=bg-BG] .game_location_info_content, [lang=ro-RO] .game_location_info_content, [lang=el-GR] .game_location_info_content, [lang|=es] .game_location_info_content, [lang=pt-BR] .game_location_info_content, [lang|=en] .game_location_info_content, [lang=sr-latn] .game_location_info_content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1920px) {
  [lang=bg-BG] .game_location_info_content, [lang=ro-RO] .game_location_info_content, [lang=el-GR] .game_location_info_content, [lang|=es] .game_location_info_content, [lang=pt-BR] .game_location_info_content, [lang|=en] .game_location_info_content, [lang=sr-latn] .game_location_info_content {
    padding-left: 0;
    padding-right: 0;
    max-width: 1460px;
  }
}
.game_location_info_content .game_location_info_logo {
  width: 500px;
  height: auto;
}
@media (min-width: 962px) {
  [lang=bg-BG] .game_location_info_content .game_location_info_logo, [lang=ro-RO] .game_location_info_content .game_location_info_logo, [lang=el-GR] .game_location_info_content .game_location_info_logo, [lang|=es] .game_location_info_content .game_location_info_logo, [lang=pt-BR] .game_location_info_content .game_location_info_logo, [lang|=en] .game_location_info_content .game_location_info_logo, [lang=sr-latn] .game_location_info_content .game_location_info_logo {
    max-width: 440px;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  [lang=bg-BG] .game_location_info_content .game_location_info_logo, [lang=ro-RO] .game_location_info_content .game_location_info_logo, [lang=el-GR] .game_location_info_content .game_location_info_logo, [lang|=es] .game_location_info_content .game_location_info_logo, [lang=pt-BR] .game_location_info_content .game_location_info_logo, [lang|=en] .game_location_info_content .game_location_info_logo, [lang=sr-latn] .game_location_info_content .game_location_info_logo {
    max-width: 500px;
    width: 100%;
  }
}
.game_location_info_content .game_location_info_text {
  max-width: 715px;
}
@media (min-width: 962px) {
  [lang=bg-BG] .game_location_info_content .game_location_info_text, [lang=ro-RO] .game_location_info_content .game_location_info_text, [lang=el-GR] .game_location_info_content .game_location_info_text, [lang|=es] .game_location_info_content .game_location_info_text, [lang=pt-BR] .game_location_info_content .game_location_info_text, [lang|=en] .game_location_info_content .game_location_info_text, [lang=sr-latn] .game_location_info_content .game_location_info_text {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  [lang=bg-BG] .game_location_info_content .game_location_info_text, [lang=ro-RO] .game_location_info_content .game_location_info_text, [lang=el-GR] .game_location_info_content .game_location_info_text, [lang|=es] .game_location_info_content .game_location_info_text, [lang=pt-BR] .game_location_info_content .game_location_info_text, [lang|=en] .game_location_info_content .game_location_info_text, [lang=sr-latn] .game_location_info_content .game_location_info_text {
    max-width: 560px;
  }
}
@media (min-width: 1920px) {
  [lang=bg-BG] .game_location_info_content .game_location_info_text, [lang=ro-RO] .game_location_info_content .game_location_info_text, [lang=el-GR] .game_location_info_content .game_location_info_text, [lang|=es] .game_location_info_content .game_location_info_text, [lang=pt-BR] .game_location_info_content .game_location_info_text, [lang|=en] .game_location_info_content .game_location_info_text, [lang=sr-latn] .game_location_info_content .game_location_info_text {
    max-width: 715px;
  }
}
/*!*************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./App/Components/CloudBackground/styles.scss ***!
  \*************************************************************************************************************************************/
.cloud-bg {
  display: contents;
}

.cloud-bg__dsk,
.cloud-bg__mob {
  width: 100%;
  height: 100%;
}
.cloud-bg__dsk svg,
.cloud-bg__mob svg {
  width: 100%;
  height: 100%;
}

.cloud-bg__dsk {
  display: none;
}

.cloud-bg__mob {
  display: block;
}

@media (min-width: 992px) {
  .cloud-bg--min-992 .cloud-bg__dsk {
    display: block;
  }
  .cloud-bg--min-992 .cloud-bg__mob {
    display: none;
  }
}

@media (min-width: 1400px) {
  .cloud-bg--min-1400 .cloud-bg__dsk {
    display: block;
  }
  .cloud-bg--min-1400 .cloud-bg__mob {
    display: none;
  }
}

.cloud-background-desktop-blur {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  height: 100%;
  width: 100%;
  transition: backdrop-filter 0.3s ease;
  /* Force compositing layer for backdrop-filter to render in Chrome/Safari */
  transform: translateZ(0);
  clip-path: url(#desktop_blur_clip_path);
}

.cloud-background-mobile-blur {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  height: 100%;
  width: 100%;
  transition: backdrop-filter 0.3s ease;
  /* Force compositing layer for backdrop-filter to render in Chrome/Safari */
  transform: translateZ(0);
  clip-path: url(#bgblur_0_6548_13171_clip_path);
}
/*!**************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./Pages/games/web/bacanagol/components/Header/styles.scss ***!
  \**************************************************************************************************************************************************/
header .logo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
}
@media (min-width: 768px) {
  header .logo-container {
    padding-top: 25px;
  }
}
@media (min-width: 1920px) {
  header .logo-container {
    padding-top: 35px;
  }
}
header .logo {
  width: 70px;
  height: 55px;
}
@media (min-width: 768px) {
  header .logo {
    width: 82px;
    height: 64px;
  }
}
@media (min-width: 1024px) {
  header .logo {
    width: 97px;
    height: 76px;
  }
}
@media (min-width: 1920px) {
  header .logo {
    width: 155px;
    height: 122px;
  }
}
header .logo img {
  width: 100%;
  height: auto;
}
/*!************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./Pages/games/web/bacanagol/components/LanguageSelector/styles.scss ***!
  \************************************************************************************************************************************************************/
.language-dropdown {
  position: static;
}
@media (min-width: 576px) {
  .language-dropdown {
    position: relative;
  }
}
.language-dropdown .language {
  height: 40px;
  width: 83px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  background-image: url(assets/languages_icon.svg);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  box-sizing: border-box;
}
.language-dropdown .language--lightning {
  background-image: url(assets/lightning-languages_icon.svg);
  background-size: 100% 100%;
}
.language-dropdown .language--lightning .language-info span {
  color: white;
}
.language-dropdown .language .language-info {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: 0 10px;
}
.language-dropdown .language .language-info span {
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Archivo", sans-serif;
  white-space: nowrap;
  line-height: 100%;
}
.language-dropdown .language .language-info span:first-child {
  transform: translateY(1px);
  font-size: 20px;
}
.language-dropdown .language .language-info span:nth-child(2) {
  display: inline-block;
  align-self: flex-end;
  font-size: 12px;
}
.language-dropdown .language .language-arrow {
  width: 12px;
  height: 12px;
  rotate: 0deg;
  transition: rotate 0.3s ease;
}
.language-dropdown .language .language-arrow--drowdown-is-visible {
  rotate: 180deg;
}
.language-dropdown .languages-box {
  max-width: 312px;
  height: auto;
  display: inline-flex;
  box-sizing: border-box;
  top: 38px;
  left: 50%;
  z-index: 1000;
  position: absolute;
  background: url(assets/languagesBox-414.svg) no-repeat center center;
  background-size: 100% 100%;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10%);
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, height 0.3s ease;
}
@media (min-width: 576px) {
  .language-dropdown .languages-box {
    position: absolute;
    background: url(assets/languagesBox.svg) no-repeat center center;
    background-size: 100% 100%;
    left: 50%;
    top: 50%;
    transform: translate(-73%, 8%);
  }
}
.language-dropdown .languages-box--lightning {
  background: url(assets/lightning-languagesBox-414.svg) no-repeat center center;
  background-size: 100% 100%;
}
@media (min-width: 576px) {
  .language-dropdown .languages-box--lightning {
    background: url(assets/lightning-languagesBox.svg) no-repeat center center;
    background-size: 100% 100%;
  }
}
.language-dropdown .languages-box--lightning ul li .languages-box_button {
  color: #200204;
}
.language-dropdown .languages-box.visible {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.language-dropdown .languages-box ul {
  width: 185px;
  height: 255px;
  background: transparent;
  padding: 39px 20px 20px 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}
.language-dropdown .languages-box ul.visible {
  opacity: 1;
  transform: translateY(0);
  height: auto;
  width: 312px;
  max-width: 312px;
  padding: 40px 53px 40px 53px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  .language-dropdown .languages-box ul.visible {
    width: 141px;
    padding: 35px 30px 15px 30px;
    left: 50%;
    gap: 3px;
  }
}
.language-dropdown .languages-box ul li {
  width: 100%;
  height: 50px;
  font-size: 33px;
  line-height: 100%;
  font-weight: 400;
  white-space: nowrap;
  font-family: "Andika", sans-serif;
  color: #043192;
  border-bottom: 0.5px solid #e7e7e7;
  display: flex;
  align-items: center;
}
@media (min-width: 576px) {
  .language-dropdown .languages-box ul li {
    height: 21px;
    font-size: 15px;
    line-height: 100%;
  }
}
.language-dropdown .languages-box ul li:last-child {
  border-bottom: none;
}
.language-dropdown .languages-box ul li .selected {
  text-decoration: underline;
  font-weight: 600;
}
.language-dropdown .languages-box_button {
  width: 100%;
  height: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #043192;
  padding: 0;
}
.language-dropdown .languages-box_button:hover:enabled {
  font-weight: 600;
}
.language-dropdown .languages-box_button:disabled {
  cursor: default;
}

.languages-filter {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(3px);
}
@media (min-width: 576px) {
  .languages-filter {
    display: none;
  }
}
/*!**********************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./App/Components/AnimatedText/styles.scss ***!
  \**********************************************************************************************************************************/
.animated-text {
  display: inline-block;
  white-space: nowrap;
}

.animated-text_char {
  display: inline-block;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .main-btn:hover .animated-text_char {
    animation-name: animatedTextDropWave;
    animation-duration: 0.45s;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-fill-mode: both;
    animation-iteration-count: 1;
  }
  .main-btn:hover .animated-text_char:nth-child(1) {
    animation-delay: 0.03s;
  }
  .main-btn:hover .animated-text_char:nth-child(2) {
    animation-delay: 0.06s;
  }
  .main-btn:hover .animated-text_char:nth-child(3) {
    animation-delay: 0.09s;
  }
  .main-btn:hover .animated-text_char:nth-child(4) {
    animation-delay: 0.12s;
  }
  .main-btn:hover .animated-text_char:nth-child(5) {
    animation-delay: 0.15s;
  }
  .main-btn:hover .animated-text_char:nth-child(6) {
    animation-delay: 0.18s;
  }
  .main-btn:hover .animated-text_char:nth-child(7) {
    animation-delay: 0.21s;
  }
  .main-btn:hover .animated-text_char:nth-child(8) {
    animation-delay: 0.24s;
  }
  .main-btn:hover .animated-text_char:nth-child(9) {
    animation-delay: 0.27s;
  }
  .main-btn:hover .animated-text_char:nth-child(10) {
    animation-delay: 0.3s;
  }
  .main-btn:hover .animated-text_char:nth-child(11) {
    animation-delay: 0.33s;
  }
  .main-btn:hover .animated-text_char:nth-child(12) {
    animation-delay: 0.36s;
  }
  .main-btn:hover .animated-text_char:nth-child(13) {
    animation-delay: 0.39s;
  }
  .main-btn:hover .animated-text_char:nth-child(14) {
    animation-delay: 0.42s;
  }
  .main-btn:hover .animated-text_char:nth-child(15) {
    animation-delay: 0.45s;
  }
  .main-btn:hover .animated-text_char:nth-child(16) {
    animation-delay: 0.48s;
  }
  .main-btn:hover .animated-text_char:nth-child(17) {
    animation-delay: 0.51s;
  }
  .main-btn:hover .animated-text_char:nth-child(18) {
    animation-delay: 0.54s;
  }
  .main-btn:hover .animated-text_char:nth-child(19) {
    animation-delay: 0.57s;
  }
  .main-btn:hover .animated-text_char:nth-child(20) {
    animation-delay: 0.6s;
  }
  .main-btn:hover .animated-text_char:nth-child(21) {
    animation-delay: 0.63s;
  }
  .main-btn:hover .animated-text_char:nth-child(22) {
    animation-delay: 0.66s;
  }
  .main-btn:hover .animated-text_char:nth-child(23) {
    animation-delay: 0.69s;
  }
  .main-btn:hover .animated-text_char:nth-child(24) {
    animation-delay: 0.72s;
  }
  .main-btn:hover .animated-text_char:nth-child(25) {
    animation-delay: 0.75s;
  }
  .main-btn:hover .animated-text_char:nth-child(26) {
    animation-delay: 0.78s;
  }
  .main-btn:hover .animated-text_char:nth-child(27) {
    animation-delay: 0.81s;
  }
  .main-btn:hover .animated-text_char:nth-child(28) {
    animation-delay: 0.84s;
  }
  .main-btn:hover .animated-text_char:nth-child(29) {
    animation-delay: 0.87s;
  }
  .main-btn:hover .animated-text_char:nth-child(30) {
    animation-delay: 0.9s;
  }
  .main-btn:hover .animated-text_char:nth-child(31) {
    animation-delay: 0.93s;
  }
  .main-btn:hover .animated-text_char:nth-child(32) {
    animation-delay: 0.96s;
  }
  .main-btn:hover .animated-text_char:nth-child(33) {
    animation-delay: 0.99s;
  }
  .main-btn:hover .animated-text_char:nth-child(34) {
    animation-delay: 1.02s;
  }
  .main-btn:hover .animated-text_char:nth-child(35) {
    animation-delay: 1.05s;
  }
  .main-btn:hover .animated-text_char:nth-child(36) {
    animation-delay: 1.08s;
  }
  .main-btn:hover .animated-text_char:nth-child(37) {
    animation-delay: 1.11s;
  }
  .main-btn:hover .animated-text_char:nth-child(38) {
    animation-delay: 1.14s;
  }
  .main-btn:hover .animated-text_char:nth-child(39) {
    animation-delay: 1.17s;
  }
  .main-btn:hover .animated-text_char:nth-child(40) {
    animation-delay: 1.2s;
  }
}
@keyframes animatedTextDropWave {
  0% {
    opacity: 0;
    transform: translateY(-120%);
  }
  60% {
    opacity: 1;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*!******************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./Pages/games/web/bacanagol/components/MainButton/styles.scss ***!
  \******************************************************************************************************************************************************/
.main-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 14px 16px;
  font-family: "Paytone One", sans-serif;
  font-size: 14px;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  background: linear-gradient(180deg, #e9d906 0%, #e96706 100%);
  box-shadow: 0px 9.2939167023px 6.1959438324px rgba(130.16, 156.71, 208.25, 0.38);
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in;
}
[lang=el-GR] .main-btn {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  text-transform: none;
}
[lang=bg-BG] .main-btn {
  font-family: "Shantell Sans", sans-serif;
  font-weight: 800;
}
.main-btn:disabled, .main-btn[disabled] {
  opacity: 0.6;
}
.main-btn:hover:enabled {
  box-shadow: 0px -5.91111px 1.47778px 0px rgba(0, 0, 0, 0.25) inset, 0px 1px 4px 0px #ffe54e inset, 0px 12px 8px 0px rgba(130, 157, 208, 0.38);
}
.main-btn:active:enabled {
  box-shadow: 0px 6px 4px 0px rgba(169, 87, 6, 0.65) inset;
}
/*!***********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./Pages/games/web/bacanagol/pages/Landing/components/LandingButton/styles.scss ***!
  \***********************************************************************************************************************************************************************/
.landing-btn_content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 6px;
}
@media (min-width: 768px) {
  .landing-btn_content {
    gap: 12px;
  }
}
.landing-btn_img {
  width: 15px;
  height: auto;
}
@media (min-width: 360px) {
  [lang=pt-BR] .landing-btn_img, [lang=it-IT] .landing-btn_img, [lang|=es] .landing-btn_img {
    margin-top: 2px;
  }
  [lang|=en] .landing-btn_img {
    margin-top: 4px;
  }
}
@media (min-width: 414px) {
  [lang=el-GR] .landing-btn_img {
    margin-top: 4px;
  }
  [lang=ro-RO] .landing-btn_img {
    margin-top: 2px;
  }
  [lang=bg-BG] .landing-btn_img {
    margin-top: -2px;
  }
}
@media (min-width: 576px) {
  [lang=pt-BR] .landing-btn_img, [lang|=es] .landing-btn_img, [lang=ro-RO] .landing-btn_img {
    margin-top: 4px;
  }
  [lang|=en] .landing-btn_img {
    margin-top: 2px;
  }
}
@media (min-width: 768px) {
  .landing-btn_img {
    margin-top: 2px;
  }
  [lang|=en] .landing-btn_img, [lang=it-IT] .landing-btn_img {
    margin-top: 4px;
  }
  [lang=ro-RO] .landing-btn_img {
    margin-top: 2px;
  }
}
@media (min-width: 962px) {
  [lang|=en] .landing-btn_img, [lang=pt-BR] .landing-btn_img {
    margin-top: 4px;
  }
  [lang=bg-BG] .landing-btn_img {
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  [lang=pt-BR] .landing-btn_img {
    margin-top: 2px;
  }
  [lang=it-IT] .landing-btn_img, [lang=ro-RO] .landing-btn_img {
    margin-top: 4px;
  }
  [lang=bg-BG] .landing-btn_img {
    margin-top: -2px;
  }
}
@media (min-width: 1400px) {
  [lang=pt-BR] .landing-btn_img, [lang|=en] .landing-btn_img, [lang=it-IT] .landing-btn_img, [lang|=es] .landing-btn_img, [lang=ro-RO] .landing-btn_img {
    margin-top: 5px;
  }
  [lang=bg-BG] .landing-btn_img {
    margin-top: 0;
  }
}
@media (min-width: 1920px) {
  .landing-btn_img {
    width: 19px;
    margin-top: 5px;
  }
}
.landing-btn_shadow-green {
  box-shadow: 0 9.294px 6.196px 0 rgba(0, 141, 54, 0.25);
}
/*!**************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./Pages/games/web/bacanagol/pages/Landing/components/Hero/styles.scss ***!
  \**************************************************************************************************************************************************************/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.cky-consent-container:not(.cky-hide) ~ #root main .hero_bg_svg_desktop-blur,
.cky-consent-container:not(.cky-hide) ~ #root main .hero_bg_svg_mobile-blur {
  backdrop-filter: none !important;
}

.hero_background1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero_background2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 485px;
  object-fit: cover;
}
@media (min-width: 320px) {
  .hero_background2 {
    bottom: 623px;
  }
}
@media (min-width: 330px) {
  .hero_background2 {
    bottom: 285px;
  }
}
@media (min-width: 360px) {
  .hero_background2 {
    bottom: 260px;
  }
}
@media (min-width: 576px) {
  .hero_background2 {
    bottom: 470px;
  }
}
@media (min-width: 768px) {
  .hero_background2 {
    bottom: 685px;
  }
}
@media (min-width: 962px) {
  [lang|=es] .hero_background2, [lang=pt-BR] .hero_background2, [lang|=en] .hero_background2, [lang=sr-latn] .hero_background2 {
    bottom: 285px;
  }
}
@media (min-width: 1024px) {
  .hero_background2 {
    bottom: 285px;
  }
}
@media (min-width: 1400px) {
  .hero_background2 {
    bottom: 165px;
  }
  [lang|=es] .hero_background2, [lang=pt-BR] .hero_background2, [lang|=en] .hero_background2 {
    bottom: 165px;
  }
}
@media (min-width: 1920px) {
  .hero_background2 {
    bottom: 292px;
  }
  [lang|=es] .hero_background2, [lang=pt-BR] .hero_background2, [lang|=en] .hero_background2 {
    bottom: 292px;
  }
}
.hero_background2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  overflow: hidden;
  position: relative;
  background-color: #c9dfff;
}
.hero_main {
  position: relative;
  width: 100%;
}
.hero_main button {
  margin: 0 auto;
}
.hero .hero_main_claud-img {
  width: 100%;
}
.hero .hero_main_claud-img .hero_main_claud {
  display: flex;
  justify-content: center;
}
.hero .hero_main_claud-img .hero_bg {
  position: absolute;
  width: 100%;
  height: 96%;
}
@media (min-width: 360px) {
  .hero .hero_main_claud-img .hero_bg {
    max-width: 344px;
  }
}
@media (min-width: 414px) {
  .hero .hero_main_claud-img .hero_bg {
    max-width: 390px;
  }
}
@media (min-width: 576px) {
  .hero .hero_main_claud-img .hero_bg {
    max-width: 426px;
    min-height: 847px;
    height: 97%;
  }
  [lang=bg-BG] .hero .hero_main_claud-img .hero_bg {
    max-width: 457px;
  }
}
@media (min-width: 768px) {
  .hero .hero_main_claud-img .hero_bg {
    max-width: 576px;
  }
  [lang=bg-BG] .hero .hero_main_claud-img .hero_bg {
    max-width: 614px;
  }
}
@media (min-width: 962px) {
  [lang=bg-BG] .hero .hero_main_claud-img .hero_bg {
    max-width: 708px;
  }
}
@media (min-width: 1024px) {
  .hero .hero_main_claud-img .hero_bg {
    max-width: 630px;
  }
}
@media (min-width: 1400px) {
  .hero .hero_main_claud-img .hero_bg {
    max-width: 1230px;
    max-height: 100%;
    height: 854px;
  }
  [lang=bg-BG] .hero .hero_main_claud-img .hero_bg {
    max-width: 1230px;
  }
}
@media (min-width: 1920px) {
  .hero .hero_main_claud-img .hero_bg {
    max-width: 1342px;
    max-height: 100%;
    height: 87%;
  }
  [lang=bg-BG] .hero .hero_main_claud-img .hero_bg {
    max-width: 1342px;
  }
}
@media (min-width: 2100px) {
  .hero .hero_main_claud-img .hero_bg {
    max-width: 1342px;
    max-height: 100%;
    height: 100%;
  }
}
.hero .hero_main_claud-img svg {
  width: 100%;
  height: 100%;
}
.hero .hero_main_claud-img .hero_bg_svg_mobile {
  display: block;
}
@media (min-width: 1400px) {
  .hero .hero_main_claud-img .hero_bg_svg_mobile {
    display: none;
  }
}
.hero .hero_main_claud-img .hero_bg_svg_desktop {
  display: none;
}
@media (min-width: 1400px) {
  .hero .hero_main_claud-img .hero_bg_svg_desktop {
    display: block;
  }
}
.hero_main-box {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 414px) {
  .hero_main-box {
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
  }
  [lang=bg-BG] .hero_main-box {
    max-width: 360px;
  }
  [lang=pt-BR] .hero_main-box, [lang=it-IT] .hero_main-box, [lang|=es] .hero_main-box, [lang=ro-RO] .hero_main-box, [lang=el-GR] .hero_main-box, [lang=pt-BR] .hero_main-box, [lang=sr-latn] .hero_main-box {
    max-width: 348px;
  }
  [lang|=en] .hero_main-box {
    max-width: 364px;
  }
}
@media (min-width: 470px) {
  .hero_main-box {
    max-width: 325px;
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
  }
  [lang=bg-BG] .hero_main-box {
    max-width: 360px;
  }
  [lang=pt-BR] .hero_main-box {
    max-width: 382px;
  }
}
@media (min-width: 576px) {
  .hero_main-box {
    max-width: 325px;
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
  }
  [lang=bg-BG] .hero_main-box {
    max-width: 490px;
  }
  [lang=el-GR] .hero_main-box, [lang=it-IT] .hero_main-box {
    max-width: 382px;
  }
  [lang=sr-latn] .hero_main-box {
    max-width: 360px;
  }
  [lang|=es] .hero_main-box {
    max-width: 340px;
  }
}
@media (min-width: 768px) {
  .hero_main-box {
    max-width: 490px;
    min-height: 60vw;
    padding-top: 2vw;
  }
  [lang=bg-BG] .hero_main-box {
    max-width: 600px;
    font-size: 40px;
  }
  [lang=pt-BR] .hero_main-box {
    max-width: 594px;
  }
  [lang|=en] .hero_main-box, [lang|=es] .hero_main-box {
    max-width: 474px;
  }
  [lang=el-GR] .hero_main-box {
    max-width: 520px;
  }
  [lang=it-IT] .hero_main-box {
    max-width: 534px;
  }
  [lang=ro-RO] .hero_main-box {
    max-width: 494px;
  }
  [lang=sr-latn] .hero_main-box {
    max-width: 390px;
  }
}
@media (min-width: 962px) {
  [lang|=es] .hero_main-box {
    max-width: 510px;
  }
}
@media (min-width: 1024px) {
  .hero_main-box {
    max-width: 504px;
    min-height: 45vw;
    padding-top: 1vw;
    align-items: center;
  }
  [lang=bg-BG] .hero_main-box {
    max-width: 600px;
  }
}
@media (min-width: 1200px) {
  [lang=it-IT] .hero_main-box {
    max-width: 508px;
  }
}
@media (min-width: 1400px) {
  .hero_main-box {
    min-height: auto;
    flex-direction: row;
    align-items: flex-start;
    gap: 103px;
  }
  [lang=bg-BG] .hero_main-box {
    max-width: 1100px;
  }
  [lang=ro-Ro] .hero_main-box, [lang=el-GR] .hero_main-box, [lang=pt-BR] .hero_main-box, [lang=it-IT] .hero_main-box, [lang|=es] .hero_main-box, [lang=sr-latn] .hero_main-box {
    gap: 90px;
    max-width: 1100px;
  }
  [lang|=en] .hero_main-box {
    gap: 120px;
    max-width: 1100px;
  }
  [lang=sr-latn] .hero_main-box {
    gap: 180px;
    max-width: 1100px;
  }
}
@media (min-width: 1920px) {
  [lang=bg-BG] .hero_main-box, [lang=ro-RO] .hero_main-box, [lang=pt-BR] .hero_main-box, [lang|=en] .hero_main-box {
    max-width: 1200px;
  }
  [lang|=es] .hero_main-box, [lang=sr-latn] .hero_main-box {
    max-width: 1150px;
  }
  [lang|=en] .hero_main-box {
    gap: 160px;
    max-width: 1200px;
  }
  [lang=it-IT] .hero_main-box {
    gap: 130px;
    max-width: 1200px;
  }
}
.hero_main-text {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 594px;
  margin-top: 12px;
  line-height: 117%;
}
@media (min-width: 1200px) {
  .hero_main-text {
    max-width: 465px;
    margin-left: 0;
  }
  [lang=bg-BG] .hero_main-text {
    max-width: 600px;
  }
  [lang=el-GR] .hero_main-text, [lang=pt-BR] .hero_main-text, [lang=it-IT] .hero_main-text, [lang|=es] .hero_main-text {
    max-width: 520px;
  }
}
@media (min-width: 1400px) {
  .hero_main-text {
    margin-left: 20px;
    max-width: 594px;
    display: flex;
    align-items: center;
    margin-top: 0;
  }
  [lang=el-GR] .hero_main-text {
    max-width: 600px;
  }
  [lang=ro-Ro] .hero_main-text, [lang=pt-BR] .hero_main-text, [lang=it-IT] .hero_main-text, [lang|=es] .hero_main-text {
    margin-left: 0;
    max-width: 670px;
  }
}
@media (min-width: 1920px) {
  .hero_main-text {
    max-width: 700px;
  }
}
.hero_main-img {
  display: none;
}
@media (min-width: 576px) {
  .hero_main-img {
    position: absolute;
    display: initial;
    z-index: 20;
  }
  .hero_main-img img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 576px) {
  .hero_main-ball {
    width: 18vw;
    height: 47vw;
    right: 0;
    bottom: -73px;
  }
}
@media (min-width: 768px) {
  .hero_main-ball {
    height: 46vw;
    bottom: -115px;
  }
}
@media (min-width: 962px) {
  .hero_main-ball {
    height: 46vw;
    bottom: -120px;
  }
}
@media (min-width: 980px) {
  .hero_main-ball {
    height: 46vw;
    bottom: -133px;
  }
}
@media (min-width: 1024px) {
  .hero_main-ball {
    width: 20vw;
    height: 42vw;
    bottom: -75px;
  }
}
@media (min-width: 1200px) {
  .hero_main-ball {
    width: 20vw;
    height: 42vw;
    bottom: -75px;
  }
}
@media (min-width: 1400px) {
  .hero_main-ball {
    width: 208px;
    height: 427px;
    bottom: -161px;
  }
}
@media (min-width: 1500px) {
  .hero_main-ball {
    width: 208px;
    height: 427px;
    bottom: -189px;
  }
}
@media (min-width: 1920px) {
  .hero_main-ball {
    width: 19.3vw;
    height: 39.5vw;
    bottom: -71px;
  }
}
@media (min-width: 2100px) {
  .hero_main-ball {
    width: 17.4vw;
    height: 31.5vw;
  }
}
@media (min-width: 576px) {
  .hero_main-footbolist {
    width: 19.5vw;
    height: 30vw;
    left: -21vw;
    bottom: -50px;
  }
  [lang=bg-BG] .hero_main-footbolist {
    left: -7vw;
    bottom: -36px;
  }
}
@media (min-width: 768px) {
  .hero_main-footbolist {
    height: 42vw;
    left: -16vw;
    bottom: -188px;
  }
  [lang=bg-BG] .hero_main-footbolist {
    left: -10vw;
    bottom: -174px;
  }
}
@media (min-width: 962px) {
  .hero_main-footbolist {
    left: -23vw;
    bottom: -165px;
  }
  [lang=bg-BG] .hero_main-footbolist {
    left: -16vw;
    bottom: -190px;
  }
}
@media (min-width: 1024px) {
  .hero_main-footbolist {
    width: 17vw;
    height: 26vw;
    left: -20vw;
    bottom: -85px;
  }
  [lang=bg-BG] .hero_main-footbolist {
    left: -14vw;
    bottom: -85px;
  }
}
@media (min-width: 1200px) {
  .hero_main-footbolist {
    left: -25vw;
    width: 17vw;
    height: 42vw;
    bottom: -273px;
  }
  [lang=bg-BG] .hero_main-footbolist {
    left: -21vw;
    bottom: -285px;
  }
}
@media (min-width: 1400px) {
  .hero_main-footbolist {
    left: -8vw;
    width: 14vw;
    height: 22vw;
    bottom: -197px;
  }
  [lang=bg-BG] .hero_main-footbolist {
    left: -10vw;
    bottom: -185px;
  }
}
@media (min-width: 1500px) {
  .hero_main-footbolist {
    left: -8vw;
    width: 14vw;
    height: 22vw;
    bottom: -245px;
  }
}
@media (min-width: 1920px) {
  .hero_main-footbolist {
    left: -14vw;
    width: 17vw;
    height: 42vw;
    bottom: -404px;
  }
  [lang=bg-BG] .hero_main-footbolist {
    left: -13vw;
    bottom: -425px;
  }
  [lang=sr-latn] .hero_main-footbolist {
    left: -15vw;
  }
}
@media (min-width: 2100px) {
  .hero_main-footbolist {
    width: 15.3vw;
    height: 23.4vw;
    left: -16.5vw;
    bottom: -147px;
  }
}
.hero_main-title {
  max-width: 290px;
  margin: 25px auto 16px auto;
}
[lang=bg-BG] .hero_main-title {
  letter-spacing: -1px;
  font-weight: 800;
}
[lang=ro-Ro] .hero_main-title {
  font-weight: 400;
  line-height: 117%;
}
[lang=el-GR] .hero_main-title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  line-height: 117%;
}
[lang|=es] .hero_main-title, [lang=pt-BR] .hero_main-title, [lang|=en] .hero_main-title {
  font-weight: 400;
}
@media (min-width: 360px) {
  .hero_main-title {
    max-width: 308px;
    font-size: 24px;
  }
  [lang=bg-BG] .hero_main-title {
    max-width: 360px;
    font-size: 22px;
  }
  [lang=ro-Ro] .hero_main-title {
    font-size: 22px;
  }
  [lang|=es] .hero_main-title, [lang=pt-BR] .hero_main-title {
    line-height: 117%;
    font-size: 22px;
    max-width: 284px;
  }
  [lang=sr-latn] .hero_main-title {
    max-width: 260px;
    font-weight: 400;
    letter-spacing: -1px;
  }
}
@media (min-width: 414px) {
  .hero_main-title {
    font-size: 26px;
    max-width: 324px;
  }
  [lang=bg-BG] .hero_main-title {
    max-width: max-content;
    font-size: 24px;
  }
  [lang=el-GR] .hero_main-title {
    letter-spacing: -1px;
    font-size: 24px;
  }
  [lang|=es] .hero_main-title, [lang=pt-BR] .hero_main-title {
    font-size: 24px;
    max-width: 306px;
  }
}
@media (min-width: 576px) {
  .hero_main-title {
    font-size: 28px;
  }
  [lang=bg-BG] .hero_main-title {
    max-width: 392px;
    font-size: 28px;
  }
  [lang=ro-Ro] .hero_main-title {
    font-size: 28px;
  }
  [lang=el-GR] .hero_main-title {
    font-size: 28px;
    max-width: 382px;
  }
  [lang|=es] .hero_main-title, [lang=pt-BR] .hero_main-title {
    font-size: 28px;
    max-width: 340px;
  }
  [lang=sr-latn] .hero_main-title {
    letter-spacing: 0;
  }
}
@media (min-width: 768px) {
  .hero_main-title {
    max-width: 490px;
    font-size: 38px;
  }
  [lang=bg-BG] .hero_main-title, [lang|=es] .hero_main-title {
    max-width: max-content;
    font-size: 38px;
  }
  [lang=pt-BR] .hero_main-title {
    max-width: 434px;
    font-size: 38px;
  }
  [lang=ro-Ro] .hero_main-title, [lang=el-GR] .hero_main-title {
    font-size: 38px;
  }
  [lang=sr-latn] .hero_main-title {
    max-width: 454px;
  }
}
@media (min-width: 962px) {
  [lang=bg-BG] .hero_main-title, [lang=ro-RO] .hero_main-title, [lang|=es] .hero_main-title, [lang|=en] .hero_main-title, [lang=sr-latn] .hero_main-title {
    font-size: 40px;
  }
  [lang=el-GR] .hero_main-title {
    font-size: 40px;
    max-width: 520px;
  }
  [lang=el-GR] .hero_main-title, [lang=pt-BR] .hero_main-title {
    font-size: 40px;
    max-width: 495px;
  }
}
@media (min-width: 1024px) {
  .hero_main-title {
    font-size: 40px;
    max-width: 504px;
  }
  [lang=bg-BG] .hero_main-title {
    max-width: 600px;
  }
}
@media (min-width: 1200px) {
  .hero_main-title {
    font-size: 37px;
  }
  [lang=bg-BG] .hero_main-title {
    font-size: 40px;
  }
}
@media (min-width: 1400px) {
  .hero_main-title {
    max-width: 594px;
    font-size: 52px;
    margin-top: 50px;
    line-height: 75px;
  }
  [lang=bg-BG] .hero_main-title, [lang|=en] .hero_main-title, [lang=sr-latn] .hero_main-title {
    font-size: 54px;
  }
  [lang=ro-Ro] .hero_main-title, [lang=el-GR] .hero_main-title, [lang|=es] .hero_main-title, [lang=pt-BR] .hero_main-title {
    max-width: 670px;
    font-size: 54px;
  }
}
@media (min-width: 1920px) {
  .hero_main-title {
    font-size: 54px;
  }
}
.hero_policies {
  display: none;
  flex-direction: column;
  margin-top: 60px;
  gap: 20px;
}
@media (min-width: 1400px) {
  .hero_policies {
    display: flex;
    margin-top: 82px;
    gap: 32px;
    max-width: 509px;
  }
  [lang=el-GR] .hero_policies {
    margin-top: 58px;
    gap: 24px;
  }
}
.hero_policy {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.hero_policy-img {
  width: 35px;
  height: 35px;
}
@media (min-width: 1024px) {
  .hero_policy-img {
    width: 40px;
    height: 40px;
    min-width: 41px;
    margin-right: 16px;
  }
}
@media (min-width: 1200px) {
  .hero_policy-img {
    width: 65px;
    height: 65px;
    min-width: 65px;
  }
}
@media (min-width: 1400px) {
  .hero_policy-img {
    width: 74px;
    height: 74px;
    min-width: 74px;
  }
}
.hero_policy-img img {
  width: 100%;
  height: auto;
}
.hero_policy-text {
  text-align: start;
  color: #043192;
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 100%;
  text-shadow: 0 4px 8px rgba(4, 49, 146, 0.4);
}
[lang=el-GR] .hero_policy-text {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
}
[lang=bg-BG] .hero_policy-text {
  font-family: "Shantell Sans", sans-serif;
  font-weight: 700;
}
[lang|=en] .hero_policy-text {
  letter-spacing: 1px;
}
@media (min-width: 1200px) {
  .hero_policy-text {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .hero_policy-text {
    font-size: 26px;
  }
}
.hero_advantages {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
  background-color: #ffffff;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero_advantages {
    padding: 0 20px;
  }
}
@media (min-width: 1200px) {
  .hero_advantages {
    background-color: transparent;
    justify-content: space-between;
  }
}
@media (min-width: 1536px) {
  .hero_advantages {
    justify-content: space-evenly;
    padding: 0 50px;
  }
}
@media (min-width: 1400px) {
  .hero_advantages {
    margin-top: 295px;
  }
  [lang=bg-BG] .hero_advantages, [lang=el-GR] .hero_advantages, [lang=pt-BR] .hero_advantages {
    padding: 0;
  }
}
@media (min-width: 1440px) {
  .hero_advantages {
    justify-content: space-between;
    padding: 0;
  }
}
@media (min-width: 1920px) {
  .hero_advantages {
    margin-top: 160px;
  }
}
.hero_advantage-item {
  position: relative;
  display: flex;
  justify-content: center;
  width: 167px;
  height: 170px;
  margin-bottom: 5px;
}
@media (min-width: 414px) {
  .hero_advantage-item {
    width: 195px;
    height: 190px;
    margin-bottom: 15px;
  }
}
@media (min-width: 576px) {
  .hero_advantage-item {
    width: 273px;
    height: 270px;
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .hero_advantage-item {
    width: 355px;
    height: 342px;
  }
}
@media (min-width: 962px) {
  [lang|=es] .hero_advantage-item, [lang=pt-BR] .hero_advantage-item, [lang|=en] .hero_advantage-item, [lang=sr-latn] .hero_advantage-item {
    width: 238px;
    height: 235px;
  }
}
@media (min-width: 1024px) {
  .hero_advantage-item {
    width: 240px;
    height: 235px;
  }
}
@media (min-width: 1400px) {
  [lang=bg-BG] .hero_advantage-item, [lang=ro-RO] .hero_advantage-item, [lang=el-GR] .hero_advantage-item, [lang|=es] .hero_advantage-item, [lang=pt-BR] .hero_advantage-item, [lang|=en] .hero_advantage-item, [lang=sr-latn] .hero_advantage-item {
    width: 320px;
    height: 310px;
  }
}
@media (min-width: 1440px) {
  .hero_advantage-item {
    width: 280px;
    height: 280px;
  }
}
@media (min-width: 1536px) {
  .hero_advantage-item {
    width: 360px;
    height: 350px;
  }
}
@media (min-width: 1920px) {
  [lang=bg-BG] .hero_advantage-item, [lang=el-GR] .hero_advantage-item, [lang=pt-BR] .hero_advantage-item, [lang|=en] .hero_advantage-item, [lang=sr-latn] .hero_advantage-item, [lang=sr-latn] .hero_advantage-item {
    width: 350px;
    height: 340px;
  }
}
.hero_advantage-icon {
  position: absolute;
  width: 92%;
  z-index: 2;
}
.hero_advantage-box {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.hero .hero_advantage-people {
  align-self: center;
  max-width: 125px;
  padding-top: 70px;
  font-size: 16px;
}
[lang=bg-BG] .hero .hero_advantage-people {
  padding-top: 80px;
}
[lang=el-GR] .hero .hero_advantage-people {
  max-width: 110px;
}
@media (min-width: 414px) {
  .hero .hero_advantage-people {
    padding-top: 80px;
  }
  [lang=ro-RO] .hero .hero_advantage-people, [lang|=en] .hero .hero_advantage-people {
    max-width: 150px;
  }
}
@media (min-width: 576px) {
  .hero .hero_advantage-people {
    max-width: 180px;
    font-size: 24px;
    padding-top: 110px;
  }
  [lang=bg-BG] .hero .hero_advantage-people {
    padding-top: 120px;
  }
  [lang=ro-RO] .hero .hero_advantage-people, [lang=el-GR] .hero .hero_advantage-people {
    max-width: 186px;
  }
  [lang|=en] .hero .hero_advantage-people {
    padding-top: 120px;
    max-width: 186px;
  }
  [lang=sr-latn] .hero .hero_advantage-people {
    max-width: 204px;
  }
}
@media (min-width: 768px) {
  .hero .hero_advantage-people {
    font-size: 28px;
    padding-top: 140px;
  }
  [lang=bg-BG] .hero .hero_advantage-people {
    padding-top: 160px;
  }
  [lang=ro-RO] .hero .hero_advantage-people {
    max-width: 250px;
  }
  [lang|=en] .hero .hero_advantage-people {
    max-width: 250px;
    padding-top: 140px;
  }
  [lang=el-GR] .hero .hero_advantage-people {
    max-width: 230px;
    padding-top: 160px;
  }
  [lang=sr-latn] .hero .hero_advantage-people {
    max-width: 270px;
    padding-top: 140px;
  }
}
@media (min-width: 962px) {
  .hero .hero_advantage-people {
    max-width: 240px;
    padding-top: 140px;
  }
  [lang|=en] .hero .hero_advantage-people, [lang=sr-latn] .hero .hero_advantage-people {
    max-width: 180px;
    padding-top: 110px;
  }
}
@media (min-width: 1024px) {
  .hero .hero_advantage-people {
    max-width: 152px;
    font-size: 20px;
    padding-top: 100px;
  }
  [lang=bg-BG] .hero .hero_advantage-people {
    padding-top: 105px;
  }
  [lang=ro-RO] .hero .hero_advantage-people {
    max-width: 190px;
  }
  [lang=el-GR] .hero .hero_advantage-people, [lang=pt-BR] .hero .hero_advantage-people {
    max-width: 159px;
    padding-top: 110px;
  }
  [lang|=en] .hero .hero_advantage-people {
    padding-top: 110px;
  }
}
@media (min-width: 1200px) {
  [lang=pt-BR] .hero .hero_advantage-people {
    max-width: 172px;
  }
}
@media (min-width: 1400px) {
  [lang=bg-BG] .hero .hero_advantage-people {
    padding-top: 140px;
  }
  [lang=ro-RO] .hero .hero_advantage-people, [lang=el-GR] .hero .hero_advantage-people, [lang=pt-BR] .hero .hero_advantage-people {
    max-width: 256px;
    padding-top: 140px;
  }
  [lang|=en] .hero .hero_advantage-people {
    max-width: 210px;
    padding-top: 130px;
  }
  [lang=sr-latn] .hero .hero_advantage-people {
    max-width: 240px;
    padding-top: 130px;
  }
}
@media (min-width: 1440px) {
  .hero .hero_advantage-people {
    max-width: 240px;
    font-size: 24px;
    padding-top: 115px;
  }
}
@media (min-width: 1920px) {
  [lang=bg-BG] .hero .hero_advantage-people {
    padding-top: 150px;
  }
  [lang|=en] .hero .hero_advantage-people {
    max-width: 240px;
    padding-top: 150px;
  }
  [lang=sr-latn] .hero .hero_advantage-people {
    max-width: 280px;
    padding-top: 150px;
  }
}
.hero_advantage-text {
  align-self: center;
  max-width: 125px;
  padding-top: 55px;
  font-size: 16px;
  font-family: "Paytone One", sans-serif;
  line-height: 100%;
  z-index: 3;
}
[lang=el-GR] .hero_advantage-text {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 14px;
}
[lang=bg-BG] .hero_advantage-text {
  font-family: "Shantell Sans", sans-serif;
  font-weight: 700;
  word-wrap: break-word;
  padding-top: 65px;
  max-width: 108px;
}
[lang=sr-latn] .hero_advantage-text {
  max-width: 104px;
}
@media (min-width: 414px) {
  .hero_advantage-text {
    padding-top: 70px;
  }
  [lang=bg-BG] .hero_advantage-text {
    max-width: 118px;
    font-size: 18px;
  }
  [lang=ro-RO] .hero_advantage-text, [lang|=en] .hero_advantage-text, [lang=sr-latn] .hero_advantage-text {
    font-size: 18px;
  }
  [lang=el-GR] .hero_advantage-text {
    max-width: 127px;
    font-size: 16px;
  }
  [lang|=es] .hero_advantage-text, [lang=pt-BR] .hero_advantage-text {
    font-size: 18px;
    max-width: 140px;
  }
}
@media (min-width: 576px) {
  .hero_advantage-text {
    max-width: 190px;
    padding-top: 90px;
    font-size: 24px;
  }
  [lang=bg-BG] .hero_advantage-text {
    max-width: 158px;
    font-size: 24px;
    padding-top: 100px;
  }
  [lang=ro-RO] .hero_advantage-text {
    font-size: 24px;
  }
  [lang=el-GR] .hero_advantage-text, [lang|=es] .hero_advantage-text, [lang=pt-BR] .hero_advantage-text {
    max-width: 192px;
    font-size: 24px;
  }
  [lang|=en] .hero_advantage-text {
    max-width: 192px;
    font-size: 24px;
    padding-top: 100px;
  }
  [lang=sr-latn] .hero_advantage-text {
    max-width: 156px;
    font-size: 24px;
    padding-top: 110px;
  }
}
@media (min-width: 768px) {
  .hero_advantage-text {
    max-width: 240px;
    padding-top: 110px;
    font-size: 28px;
  }
  [lang=bg-BG] .hero_advantage-text {
    font-size: 32px;
    max-width: 210px;
    padding-top: 130px;
  }
  [lang=ro-RO] .hero_advantage-text {
    font-size: 32px;
  }
  [lang=el-GR] .hero_advantage-text {
    max-width: 225px;
    padding-top: 140px;
    font-size: 28px;
  }
  [lang|=es] .hero_advantage-text {
    max-width: 230px;
    padding-top: 140px;
    font-size: 32px;
  }
  [lang=pt-BR] .hero_advantage-text {
    max-width: 240px;
    padding-top: 140px;
    font-size: 32px;
  }
  [lang|=en] .hero_advantage-text {
    max-width: 240px;
    padding-top: 140px;
    font-size: 32px;
  }
  [lang=sr-latn] .hero_advantage-text {
    max-width: 200px;
    font-size: 32px;
    padding-top: 130px;
  }
}
@media (min-width: 962px) {
  [lang|=es] .hero_advantage-text, [lang=pt-BR] .hero_advantage-text {
    max-width: 190px;
    font-size: 22px;
    padding-top: 100px;
    min-height: 7em;
  }
  [lang|=en] .hero_advantage-text {
    max-width: 190px;
    font-size: 24px;
    padding-top: 110px;
    min-height: 7em;
  }
  [lang=sr-latn] .hero_advantage-text {
    max-width: 156px;
    font-size: 24px;
    padding-top: 90px;
  }
}
@media (min-width: 1024px) {
  .hero_advantage-text {
    max-width: 160px;
    padding-top: 85px;
    font-size: 20px;
  }
  [lang=bg-BG] .hero_advantage-text {
    max-width: 158px;
    font-size: 24px;
    padding-top: 100px;
    min-height: 7em;
  }
  [lang=ro-RO] .hero_advantage-text, [lang=pt-BR] .hero_advantage-text {
    font-size: 22px;
  }
  [lang=el-GR] .hero_advantage-text {
    font-size: 20px;
    max-width: 159px;
    padding-top: 90px;
  }
  [lang|=en] .hero_advantage-text {
    max-width: 158px;
    font-size: 24px;
    padding-top: 110px;
    min-height: 7em;
  }
}
@media (min-width: 1200px) {
  [lang=pt-BR] .hero_advantage-text {
    font-size: 24px;
    max-width: 180px;
  }
}
@media (min-width: 1400px) {
  [lang=bg-BG] .hero_advantage-text, [lang=ro-RO] .hero_advantage-text, [lang|=es] .hero_advantage-text, [lang=pt-BR] .hero_advantage-text {
    font-size: 28px;
    max-width: 230px;
    min-height: 8em;
    padding-top: 140px;
  }
  [lang=el-GR] .hero_advantage-text {
    font-size: 26px;
    max-width: 230px;
    min-height: 8em;
    padding-top: 150px;
  }
  [lang|=en] .hero_advantage-text {
    font-size: 28px;
    max-width: 220px;
    padding-top: 130px;
  }
  [lang=sr-latn] .hero_advantage-text {
    font-size: 28px;
    max-width: 180px;
    padding-top: 130px;
  }
}
@media (min-width: 1440px) {
  .hero_advantage-text {
    max-width: 215px;
    padding-top: 110px;
    font-size: 24px;
  }
}
@media (min-width: 1536px) {
  .hero_advantage-text {
    max-width: 240px;
    padding-top: 130px;
  }
}
@media (min-width: 1920px) {
  [lang=bg-BG] .hero_advantage-text {
    max-width: 260px;
    font-size: 32px;
    padding-top: 150px;
  }
  [lang=el-GR] .hero_advantage-text {
    font-size: 30px;
    max-width: 260px;
    padding-top: 160px;
  }
  [lang|=en] .hero_advantage-text {
    font-size: 32px;
    max-width: 240px;
    padding-top: 150px;
  }
  [lang=sr-latn] .hero_advantage-text {
    font-size: 32px;
    padding-top: 150px;
  }
}
.hero__phone-container {
  position: relative;
  margin: 0 auto;
  padding-top: 25px;
}
@media (min-width: 768px) {
  .hero__phone-container {
    padding: 37px 0;
  }
}
@media (min-width: 576px) {
  .hero__phone-container {
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .hero__phone-container {
    padding-top: 40px;
  }
}
@media (min-width: 1200px) {
  .hero__phone-container {
    padding: 0;
    padding-bottom: 50px;
    margin: 0;
    margin-top: 35px;
  }
  [lang=ro-RO] .hero__phone-container {
    font-size: 24px;
  }
}
@media (min-width: 1400px) {
  .hero__phone-container {
    padding-top: 65px;
  }
}
.hero__phone {
  width: 211px;
  height: 425px;
  background: url(assets/hero-iphone.svg) no-repeat;
  background-size: cover;
  transform: rotate(6deg);
  position: relative;
}
@media (min-width: 576px) {
  .hero__phone {
    width: 293px;
    height: 590px;
  }
}
@media (min-width: 1920px) {
  .hero__phone {
    width: 348px;
    height: 702px;
  }
}
.hero-btn {
  position: relative;
  width: 250px;
  height: 64px;
}
@media (min-width: 360px) {
  .hero-btn {
    width: 300px;
  }
}
@media (min-width: 414px) {
  .hero-btn {
    width: 348px;
  }
}
@media (min-width: 576px) {
  .hero-btn {
    width: 300px;
  }
  [lang=bg-BG] .hero-btn, [lang=pt-BR] .hero-btn, [lang=it-IT] .hero-btn {
    width: 382px;
  }
  [lang|=en] .hero-btn {
    width: 300px;
  }
  [lang=sr-latn] .hero-btn {
    width: 360px;
  }
}
@media (min-width: 768px) {
  .hero-btn {
    width: 390px;
  }
  [lang=bg-BG] .hero-btn, [lang=pt-BR] .hero-btn, [lang=it-IT] .hero-btn {
    width: 494px;
  }
  [lang|=en] .hero-btn {
    width: 390px;
  }
  [lang=sr-latn] .hero-btn {
    width: 382px;
  }
}
@media (min-width: 962px) {
  .hero-btn {
    height: 80px;
  }
}
@media (min-width: 1400px) {
  .hero-btn {
    width: 100%;
  }
  [lang=bg-BG] .hero-btn, [lang|=en] .hero-btn, [lang=sr-latn] .hero-btn {
    width: 594px;
  }
  [lang=pt-BR] .hero-btn, [lang=it-IT] .hero-btn {
    width: 670px;
  }
}
.hero-btn_text {
  line-height: normal;
}
@media (min-width: 360px) {
  [lang=pt-BR] .hero-btn_text {
    font-size: 22px;
    letter-spacing: -0.5px;
  }
  [lang=bg-BG] .hero-btn_text {
    font-size: 20px;
  }
  [lang=ro-Ro] .hero-btn_text, [lang=it-IT] .hero-btn_text, [lang|=es] .hero-btn_text {
    font-size: 22px;
    letter-spacing: 1px;
  }
  [lang=el-GR] .hero-btn_text {
    font-size: 24px;
  }
  [lang|=en] .hero-btn_text, [lang=sr-latn] .hero-btn_text {
    font-size: 26px;
    letter-spacing: 1px;
  }
}
@media (min-width: 414px) {
  [lang=pt-BR] .hero-btn_text {
    font-size: 22px;
    letter-spacing: 1px;
  }
  [lang=bg-BG] .hero-btn_text {
    font-size: 22px;
  }
  [lang=el-GR] .hero-btn_text, [lang|=en] .hero-btn_text, [lang=sr-latn] .hero-btn_text {
    font-size: 30px;
  }
}
@media (min-width: 576px) {
  [lang=bg-BG] .hero-btn_text, [lang=ro-Ro] .hero-btn_text, [lang=pt-BR] .hero-btn_text, [lang|=en] .hero-btn_text, [lang=it-IT] .hero-btn_text, [lang|=es] .hero-btn_text {
    font-size: 24px;
  }
  [lang=sr-latn] .hero-btn_text {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  [lang=bg-BG] .hero-btn_text, [lang=ro-Ro] .hero-btn_text, [lang=pt-BR] .hero-btn_text, [lang|=en] .hero-btn_text, [lang=it-IT] .hero-btn_text, [lang|=es] .hero-btn_text, [lang=sr-latn] .hero-btn_text {
    font-size: 30px;
  }
}
@media (min-width: 962px) {
  [lang=el-GR] .hero-btn_text {
    font-size: 40px;
  }
}
@media (min-width: 1400px) {
  [lang=ro-Ro] .hero-btn_text, [lang=pt-BR] .hero-btn_text, [lang=bg-BG] .hero-btn_text, [lang|=en] .hero-btn_text, [lang=it-IT] .hero-btn_text, [lang|=es] .hero-btn_text, [lang=sr-latn] .hero-btn_text {
    font-size: 40px;
  }
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 55px;
  gap: 38px;
  position: relative;
  z-index: 10;
}
.hero-benefits::before {
  content: "";
  position: absolute;
  top: 1%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 54%);
}
@media (min-width: 694px) {
  .hero-benefits::before {
    height: 290px;
    top: 50px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 24%);
  }
}
@media (min-width: 360px) {
  .hero-benefits {
    margin-top: 47px;
  }
}
@media (min-width: 576px) {
  .hero-benefits {
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .hero-benefits {
    margin-top: 75px;
  }
}
@media (min-width: 1024px) {
  .hero-benefits {
    margin-top: 90px;
  }
}
@media (min-width: 1400px) {
  .hero-benefits {
    display: none;
  }
}
.hero-benefits__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  padding: 0 18px;
  z-index: 10;
}
@media (min-width: 360px) {
  .hero-benefits__list {
    padding: 0;
    width: 300px;
  }
  [lang=bg-BG] .hero-benefits__list {
    width: 100%;
    padding: 0 25px;
  }
  [lang=ro-Ro] .hero-benefits__list, [lang=el-GR] .hero-benefits__list, [lang|=es] .hero-benefits__list, [lang|=en] .hero-benefits__list, [lang=sr-latn] .hero-benefits__list {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
  [lang=pt-BR] .hero-benefits__list {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
  [lang=pt-BR] .hero-benefits__list .hero-benefits__item:nth-child(2) {
    min-width: 87px;
  }
}
@media (min-width: 414px) {
  [lang=bg-BG] .hero-benefits__list {
    width: 100%;
    padding: 0 25px;
  }
  [lang=bg-BG] .hero-benefits__list .hero-benefits__item:nth-child(2) {
    min-width: 87px;
  }
  [lang|=en] .hero-benefits__list {
    padding-left: 55px;
    padding-right: 55px;
  }
  [lang=sr-latn] .hero-benefits__list {
    padding-left: 40px;
    padding-right: 40px;
  }
  [lang=bg-BG] .hero-benefits__list .hero-benefits__item:nth-child(1), [lang|=es] .hero-benefits__list .hero-benefits__item:nth-child(1) {
    min-width: 114px;
  }
  [lang=bg-BG] .hero-benefits__list .hero-benefits__item:nth-child(3) {
    min-width: 144px;
  }
  [lang|=es] .hero-benefits__list .hero-benefits__item:nth-child(3) {
    min-width: 106px;
  }
}
@media (min-width: 576px) {
  .hero-benefits__list {
    width: 528px;
  }
  [lang|=en] .hero-benefits__list, [lang=sr-latn] .hero-benefits__list {
    padding-left: 24px;
    padding-right: 24px;
  }
  [lang=bg-BG] .hero-benefits__list .hero-benefits__item:nth-child(1) {
    min-width: 170px;
  }
  [lang=sr-latn] .hero-benefits__list .hero-benefits__item:nth-child(1) {
    min-width: 180px;
  }
  [lang=bg-BG] .hero-benefits__list .hero-benefits__item:nth-child(3) {
    min-width: 194px;
  }
  [lang=bg-BG] .hero-benefits__list .hero-benefits__item:nth-child(2) {
    min-width: 150px;
  }
  [lang=ro-Ro] .hero-benefits__list .hero-benefits__item:nth-child(2) {
    min-width: 148px;
  }
  [lang=pt-BR] .hero-benefits__list .hero-benefits__item:nth-child(2) {
    min-width: 134px;
  }
}
@media (min-width: 768px) {
  .hero-benefits__list {
    width: 548px;
  }
  [lang=bg-BG] .hero-benefits__list {
    width: 618px;
    padding: 0;
  }
  [lang=bg-BG] .hero-benefits__list .hero-benefits__item:nth-child(1) {
    min-width: 192px;
  }
  [lang=bg-BG] .hero-benefits__list .hero-benefits__item:nth-child(3) {
    min-width: 224px;
  }
  [lang=bg-BG] .hero-benefits__list .hero-benefits__item:nth-child(2), [lang=el-GR] .hero-benefits__list .hero-benefits__item:nth-child(2), [lang=pt-BR] .hero-benefits__list .hero-benefits__item:nth-child(2) {
    min-width: 150px;
  }
  [lang=ro-RO] .hero-benefits__list, [lang=el-GR] .hero-benefits__list, [lang|=es] .hero-benefits__list, [lang=pt-BR] .hero-benefits__list, [lang|=en] .hero-benefits__list, [lang=sr-latn] .hero-benefits__list {
    max-width: 80%;
    padding: 0;
  }
}
@media (min-width: 962px) {
  .hero-benefits__list {
    width: 820px;
  }
  [lang=bg-BG] .hero-benefits__list {
    width: 100%;
    padding: 0 28px;
  }
  [lang=bg-BG] .hero-benefits__list .hero-benefits__item:nth-child(3) {
    min-width: 320px;
  }
  [lang=bg-BG] .hero-benefits__list .hero-benefits__item:nth-child(2), [lang=el-GR] .hero-benefits__list .hero-benefits__item:nth-child(2) {
    width: 270px;
  }
  [lang=ro-Ro] .hero-benefits__list, [lang=pt-BR] .hero-benefits__list, [lang|=en] .hero-benefits__list, [lang=sr-latn] .hero-benefits__list {
    max-width: 100%;
    padding-left: 28px;
    padding-right: 28px;
  }
  [lang=el-GR] .hero-benefits__list {
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }
  [lang|=es] .hero-benefits__list {
    max-width: 100%;
    padding-left: 42px;
    padding-right: 42px;
  }
}
@media (min-width: 1024px) {
  .hero-benefits__list {
    width: 940px;
  }
  [lang=bg-BG] .hero-benefits__list {
    width: 946px;
  }
  [lang=bg-BG] .hero-benefits__list .hero-benefits__item:nth-child(1) {
    width: 308px;
  }
  [lang=bg-BG] .hero-benefits__list .hero-benefits__item:nth-child(2) {
    width: 260px;
  }
  [lang=bg-BG] .hero-benefits__list .hero-benefits__item:nth-child(3) {
    min-width: 310px;
  }
  [lang=ro-Ro] .hero-benefits__list {
    padding-left: 44px;
    padding-right: 44px;
  }
  [lang=el-GR] .hero-benefits__list {
    padding-left: 34px;
    padding-right: 34px;
  }
  [lang|=es] .hero-benefits__list, [lang=pt-BR] .hero-benefits__list {
    padding: 0;
    max-width: 90%;
  }
  [lang|=en] .hero-benefits__list {
    padding: 0;
    max-width: 80%;
  }
}
@media (min-width: 1200px) {
  [lang=ro-Ro] .hero-benefits__list, [lang=el-GR] .hero-benefits__list, [lang=pt-BR] .hero-benefits__list, [lang=sr-latn] .hero-benefits__list {
    padding: 0;
    max-width: 80%;
  }
}
.hero-benefits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 76px;
  margin-bottom: 25px;
  gap: 5px;
  text-align: center;
}
.hero-benefits__item img {
  min-width: 35px;
  max-height: 35px;
  height: auto;
  object-fit: contain;
}
@media (min-width: 360px) {
  [lang=bg-BG] .hero-benefits__item, [lang|=es] .hero-benefits__item {
    min-width: 96px;
  }
  [lang=ro-Ro] .hero-benefits__item, [lang=sr-latn] .hero-benefits__item {
    width: 98px;
  }
  [lang=el-GR] .hero-benefits__item {
    width: 100px;
  }
  [lang=pt-BR] .hero-benefits__item {
    min-width: 102px;
  }
}
@media (min-width: 414px) {
  .hero-benefits__item {
    margin-bottom: 44px;
  }
  [lang=pt-BR] .hero-benefits__item {
    min-width: 116px;
  }
}
@media (min-width: 576px) {
  .hero-benefits__item {
    flex-direction: row;
    min-width: 170px;
    align-items: center;
    text-align: left;
  }
  .hero-benefits__item img {
    min-width: 45px;
    max-height: 45px;
    height: auto;
  }
  [lang|=es] .hero-benefits__item {
    width: 166px;
  }
  [lang=pt-BR] .hero-benefits__item {
    min-width: 166px;
  }
}
@media (min-width: 768px) {
  .hero-benefits__item {
    margin-bottom: 100px;
  }
  [lang=ro-RO] .hero-benefits__item, [lang=el-GR] .hero-benefits__item {
    min-width: 208px;
  }
  [lang|=es] .hero-benefits__item {
    width: 180px;
  }
  [lang=pt-BR] .hero-benefits__item {
    min-width: 190px;
  }
}
@media (min-width: 962px) {
  [lang=bg-BG] .hero-benefits__item, [lang=ro-RO] .hero-benefits__item, [lang=el-GR] .hero-benefits__item, [lang|=es] .hero-benefits__item, [lang=pt-BR] .hero-benefits__item, [lang|=en] .hero-benefits__item, [lang=sr-latn] .hero-benefits__item {
    width: 300px;
    gap: 20px;
  }
  [lang=bg-BG] .hero-benefits__item img, [lang=ro-RO] .hero-benefits__item img, [lang=el-GR] .hero-benefits__item img, [lang|=es] .hero-benefits__item img, [lang=pt-BR] .hero-benefits__item img, [lang|=en] .hero-benefits__item img, [lang=sr-latn] .hero-benefits__item img {
    min-width: 74px;
    max-height: 74px;
  }
  [lang=el-GR] .hero-benefits__item {
    gap: 16px;
  }
  [lang=ro-RO] .hero-benefits__item, [lang|=es] .hero-benefits__item, [lang=pt-BR] .hero-benefits__item {
    gap: 16px;
    width: 296px;
  }
  [lang|=en] .hero-benefits__item {
    gap: 16px;
    width: 270px;
  }
}
@media (min-width: 1024px) {
  .hero-benefits__item {
    margin-bottom: 85px;
    width: 25%;
    align-items: center;
  }
  .hero-benefits__item img {
    min-width: 75px;
    max-height: 75px;
    height: auto;
  }
}
.hero-benefits__text {
  font-size: 8px;
  color: #043192;
  text-shadow: 0 4px 8px rgba(4, 49, 146, 0.4);
  font-family: "Archivo", sans-serif;
  font-weight: 800;
}
[lang=bg-BG] .hero-benefits__text {
  font-family: "Shantell Sans", sans-serif;
  font-weight: 700;
}
@media (min-width: 360px) {
  [lang=bg-BG] .hero-benefits__text {
    font-size: 12px;
    line-height: 100%;
  }
  [lang|=en] .hero-benefits__text {
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 1px;
  }
  [lang=sr-latn] .hero-benefits__text {
    font-size: 12px;
    line-height: 100%;
    letter-spacing: -0.5px;
  }
  [lang=ro-Ro] .hero-benefits__text, [lang|=es] .hero-benefits__text, [lang=pt-BR] .hero-benefits__text {
    font-size: 12px;
    line-height: 110%;
    font-weight: 800;
  }
  [lang=el-GR] .hero-benefits__text {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 110%;
  }
}
@media (min-width: 576px) {
  .hero-benefits__text {
    font-size: 12px;
  }
  [lang|=en] .hero-benefits__text, [lang=sr-latn] .hero-benefits__text {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  [lang=bg-BG] .hero-benefits__text, [lang=ro-Ro] .hero-benefits__text, [lang=el-GR] .hero-benefits__text, [lang|=es] .hero-benefits__text, [lang=pt-BR] .hero-benefits__text {
    font-size: 14px;
  }
}
@media (min-width: 962px) {
  [lang=bg-BG] .hero-benefits__text, [lang=ro-Ro] .hero-benefits__text, [lang=el-GR] .hero-benefits__text, [lang|=es] .hero-benefits__text, [lang=pt-BR] .hero-benefits__text, [lang|=en] .hero-benefits__text {
    font-size: 18px;
  }
  [lang=sr-latn] .hero-benefits__text {
    font-size: 18px;
    letter-spacing: 0;
  }
}

.animation-wrapper,
.video-thumbnail {
  position: absolute;
  top: 34px;
  left: 11px;
  width: 190px;
  height: 409px;
  border-radius: 27px;
  z-index: 1;
  transform: rotate(6deg);
  overflow: hidden;
}
@media (min-width: 576px) {
  .animation-wrapper,
  .video-thumbnail {
    top: 36px;
    left: 16px;
    width: 262px;
    height: 567px;
    border-radius: 37px;
  }
}
@media (min-width: 768px) {
  .animation-wrapper,
  .video-thumbnail {
    top: 49px;
  }
}
@media (min-width: 1024px) {
  .animation-wrapper,
  .video-thumbnail {
    top: 52px;
  }
}
@media (min-width: 1200px) {
  .animation-wrapper,
  .video-thumbnail {
    top: 11px;
    width: 262px;
    height: 568px;
  }
}
@media (min-width: 1400px) {
  .animation-wrapper,
  .video-thumbnail {
    top: 77px;
  }
}
@media (min-width: 1920px) {
  .animation-wrapper,
  .video-thumbnail {
    top: 81px;
    left: 23px;
    width: 305px;
    height: 671px;
    border-radius: 34px;
  }
}
.animation-wrapper .animation,
.video-thumbnail .animation {
  max-width: none;
  width: 100%;
  height: 100%;
}

.animation-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 90px;
  width: 100%;
  height: 100%;
  background: url(assets/camera360.webp) no-repeat;
  transform: rotate(-5deg);
}
@media (min-width: 414px) {
  .animation-wrapper::before {
    left: 90px;
    background: url(assets/camera414.webp) no-repeat;
  }
}
@media (min-width: 576px) {
  .animation-wrapper::before {
    left: 130px;
    background: url(assets/camera576.webp) no-repeat;
  }
}
@media (min-width: 768px) {
  .animation-wrapper::before {
    left: 128px;
    background: url(assets/camera576.webp) no-repeat;
  }
}
@media (min-width: 1200px) {
  .animation-wrapper::before {
    left: 138px;
    background: url(assets/camera414.webp) no-repeat;
  }
}
@media (min-width: 1460px) {
  .animation-wrapper::before {
    left: 130px;
    background: url(assets/camera576.webp) no-repeat;
  }
}
@media (min-width: 1920px) {
  .animation-wrapper::before {
    left: 130px;
    background: url(assets/camera1920.webp) no-repeat;
  }
}

.video-thumbnail {
  opacity: 0;
  transition: opacity 1.5s ease;
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .video-thumbnail {
    animation: none;
    transition: none;
    opacity: 1;
  }
}

.hero_advantages-container {
  position: relative;
}
.hero_advantages-container::before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  height: 300px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 54%);
  display: none;
}
@media (min-width: 1400px) {
  .hero_advantages-container::before {
    display: block;
    top: 0;
    height: 1000px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 37%);
  }
}
@media (min-width: 1920px) {
  .hero_advantages-container::before {
    display: block;
    top: 0;
    height: 1000px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 1%, rgb(255, 255, 255) 20%);
  }
}
@media (min-width: 1200px) {
  .hero_advantages-container {
    background-color: #ffffff;
  }
}
@media (min-width: 1400px) {
  .hero_advantages-container {
    background-color: transparent;
  }
}
[lang=bg-BG] .hero_advantages-container .container, [lang=ro-Ro] .hero_advantages-container .container, [lang=el-GR] .hero_advantages-container .container, [lang|=es] .hero_advantages-container .container, [lang=pt-BR] .hero_advantages-container .container, [lang|=en] .hero_advantages-container .container, [lang=sr-latn] .hero_advantages-container .container {
  max-width: 1400px;
}
/*!*************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./Pages/games/web/bacanagol/pages/Landing/components/HeroLightninng/LightningCloudBackground/styles.scss ***!
  \*************************************************************************************************************************************************************************************************/
.cloud-bg {
  display: contents;
}

.cloud-bg__dsk,
.cloud-bg__mob {
  width: 100%;
  height: 100%;
}
.cloud-bg__dsk svg,
.cloud-bg__mob svg {
  width: 100%;
  height: 100%;
}

.cloud-bg__dsk {
  display: none;
}

.cloud-bg__mob {
  display: block;
}

@media (min-width: 992px) {
  .cloud-bg--min-992 .cloud-bg__dsk {
    display: block;
  }
  .cloud-bg--min-992 .cloud-bg__mob {
    display: none;
  }
}

@media (min-width: 1400px) {
  .cloud-bg--min-1400 .cloud-bg__dsk {
    display: block;
  }
  .cloud-bg--min-1400 .cloud-bg__mob {
    display: none;
  }
}

.cloud-background-desktop-blur {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  height: 100%;
  width: 100%;
  transition: backdrop-filter 0.3s ease;
  /* Force compositing layer for backdrop-filter to render in Chrome/Safari */
  transform: translateZ(0);
  clip-path: url(#desktop_blur_clip_path);
}

.cloud-background-mobile-blur {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  height: 100%;
  width: 100%;
  transition: backdrop-filter 0.3s ease;
  /* Force compositing layer for backdrop-filter to render in Chrome/Safari */
  transform: translateZ(0);
  clip-path: url(#bgblur_0_6548_13171_clip_path);
}
/*!************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./Pages/games/web/bacanagol/pages/Landing/components/HeroLightninng/styles.scss ***!
  \************************************************************************************************************************************************************************/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.cky-consent-container:not(.cky-hide) ~ #root main .lightning-hero_bg_svg_desktop-blur,
.cky-consent-container:not(.cky-hide) ~ #root main .lightning-hero_bg_svg_mobile-blur {
  backdrop-filter: none !important;
}

@keyframes lightning-hero-btn-scale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.lightning-hero_background1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.lightning-hero_background2 {
  position: absolute;
  left: 0;
  width: 100%;
  height: 485px;
  object-fit: cover;
}
@media (min-width: 360px) {
  .lightning-hero_background2 {
    bottom: 220px;
  }
}
@media (min-width: 414px) {
  .lightning-hero_background2 {
    bottom: 300px;
  }
}
@media (min-width: 576px) {
  .lightning-hero_background2 {
    bottom: 520px;
  }
}
@media (min-width: 768px) {
  .lightning-hero_background2 {
    bottom: 700px;
  }
}
@media (min-width: 962px) {
  .lightning-hero_background2 {
    bottom: 300px;
  }
  [lang=ro-RO] .lightning-hero_background2 {
    bottom: 780px;
  }
}
@media (min-width: 1024px) {
  .lightning-hero_background2 {
    bottom: 240px;
  }
  [lang=ro-RO] .lightning-hero_background2 {
    bottom: 240px;
  }
}
@media (min-width: 1200px) {
  .lightning-hero_background2 {
    bottom: 300px;
  }
  [lang=ro-RO] .lightning-hero_background2 {
    bottom: 300px;
  }
}
@media (min-width: 1400px) {
  .lightning-hero_background2 {
    bottom: 250px;
  }
  [lang=ro-RO] .lightning-hero_background2 {
    bottom: 250px;
  }
}
@media (min-width: 1920px) {
  .lightning-hero_background2 {
    bottom: 292px;
  }
  [lang=ro-RO] .lightning-hero_background2 {
    bottom: 292px;
  }
}
.lightning-hero_background2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightning-hero {
  overflow: hidden;
  position: relative;
  background-color: #c9dfff;
}
.lightning-hero__desktop {
  display: none;
}
@media (min-width: 1400px) {
  .lightning-hero__desktop {
    display: block;
  }
}
@media (min-width: 1400px) {
  .lightning-hero__mobile {
    display: none;
  }
}
.lightning-hero_main {
  position: relative;
  width: 100%;
}
.lightning-hero_main button {
  margin: 0 auto;
}
.lightning-hero_main-lightning {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 36px;
  z-index: 1;
}
@media (min-width: 414px) {
  .lightning-hero_main-lightning {
    top: 51px;
    width: 240px;
    height: 51px;
  }
}
@media (min-width: 576px) {
  .lightning-hero_main-lightning {
    top: 47px;
    width: 360px;
    height: 76px;
  }
}
@media (min-width: 768px) {
  .lightning-hero_main-lightning {
    top: 65px;
    width: 420px;
    height: 89px;
  }
}
@media (min-width: 999px) {
  .lightning-hero_main-lightning {
    top: 60px;
  }
}
@media (min-width: 1024px) {
  .lightning-hero_main-lightning {
    top: 50px;
  }
}
@media (min-width: 1200px) {
  .lightning-hero_main-lightning {
    top: 55px;
  }
}
@media (min-width: 1400px) {
  .lightning-hero_main-lightning {
    top: 135px;
    width: 507px;
    height: 108px;
    transform: translateX(15%);
  }
}
@media (min-width: 1920px) {
  .lightning-hero_main-lightning {
    transform: translateX(25%);
  }
}
.lightning-hero .lightning-hero_main_claud-img {
  width: 100%;
}
@media (min-width: 1400px) {
  .lightning-hero .lightning-hero_main_claud-img {
    margin-top: 65px;
  }
}
@media (min-width: 1920px) {
  .lightning-hero .lightning-hero_main_claud-img {
    margin-top: 10px;
  }
}
.lightning-hero .lightning-hero_main_claud-img .lightning-hero_main_claud {
  display: flex;
  justify-content: center;
}
.lightning-hero .lightning-hero_main_claud-img .lightning-hero_bg {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (min-width: 414px) {
  .lightning-hero .lightning-hero_main_claud-img .lightning-hero_bg {
    height: 98%;
  }
}
@media (min-width: 576px) {
  .lightning-hero .lightning-hero_main_claud-img .lightning-hero_bg {
    max-width: 460px;
    min-height: 847px;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .lightning-hero .lightning-hero_main_claud-img .lightning-hero_bg {
    max-width: 600px;
  }
}
@media (min-width: 962px) {
  .lightning-hero .lightning-hero_main_claud-img .lightning-hero_bg {
    max-width: 700px;
  }
}
@media (min-width: 1400px) {
  .lightning-hero .lightning-hero_main_claud-img .lightning-hero_bg {
    min-height: 820px;
    max-height: 820px;
    max-width: 1230px;
    height: 854px;
  }
}
@media (min-width: 1920px) {
  .lightning-hero .lightning-hero_main_claud-img .lightning-hero_bg {
    height: 89%;
    max-width: 1342px;
    max-height: 100%;
  }
}
@media (min-width: 2100px) {
  .lightning-hero .lightning-hero_main_claud-img .lightning-hero_bg {
    max-width: 1342px;
    max-height: 100%;
    height: 100%;
  }
}
.lightning-hero .lightning-hero_main_claud-img svg {
  width: 100%;
  height: 100%;
}
.lightning-hero .lightning-hero_main_claud-img .lightning-hero_bg_svg_mobile {
  display: block;
}
@media (min-width: 1400px) {
  .lightning-hero .lightning-hero_main_claud-img .lightning-hero_bg_svg_mobile {
    display: none;
  }
}
.lightning-hero .lightning-hero_main_claud-img .lightning-hero_bg_svg_desktop {
  display: none;
}
@media (min-width: 1400px) {
  .lightning-hero .lightning-hero_main_claud-img .lightning-hero_bg_svg_desktop {
    display: block;
  }
}
.lightning-hero_main-box {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 414px) {
  .lightning-hero_main-box {
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
    max-width: 348px;
  }
}
@media (min-width: 470px) {
  .lightning-hero_main-box {
    max-width: 382px;
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .lightning-hero_main-box {
    max-width: 490px;
    min-height: 60vw;
    padding-top: 2vw;
    max-width: 594px;
  }
}
@media (min-width: 1024px) {
  .lightning-hero_main-box {
    min-height: 45vw;
    padding-top: 1vw;
    align-items: center;
  }
}
@media (min-width: 1400px) {
  .lightning-hero_main-box {
    min-height: auto;
    flex-direction: row;
    align-items: flex-start;
    gap: 90px;
    max-width: 1100px;
  }
}
@media (min-width: 1920px) {
  .lightning-hero_main-box {
    max-width: 1200px;
  }
}
.lightning-hero_main-text {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 594px;
  margin-top: 12px;
  line-height: 117%;
}
@media (min-width: 1200px) {
  .lightning-hero_main-text {
    max-width: 520px;
  }
}
@media (min-width: 1400px) {
  .lightning-hero_main-text {
    width: 620px;
    max-width: 620px;
    margin-left: 20px;
    display: flex;
    align-items: center;
    margin-top: 0;
  }
}
@media (min-width: 1920px) {
  .lightning-hero_main-text {
    max-width: 700px;
  }
}
.lightning-hero_main-img {
  display: none;
}
@media (min-width: 576px) {
  .lightning-hero_main-img {
    position: absolute;
    display: initial;
    z-index: 20;
  }
  .lightning-hero_main-img img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 576px) {
  .lightning-hero_main-ball {
    width: 18vw;
    height: 47vw;
    right: 0;
    bottom: -73px;
  }
}
@media (min-width: 768px) {
  .lightning-hero_main-ball {
    height: 46vw;
    bottom: -115px;
  }
}
@media (min-width: 962px) {
  .lightning-hero_main-ball {
    height: 46vw;
    bottom: -150px;
  }
}
@media (min-width: 980px) {
  .lightning-hero_main-ball {
    height: 46vw;
    bottom: -133px;
  }
}
@media (min-width: 1024px) {
  .lightning-hero_main-ball {
    width: 20vw;
    height: 42vw;
    bottom: -110px;
  }
}
@media (min-width: 1200px) {
  .lightning-hero_main-ball {
    width: 20vw;
    height: 42vw;
    bottom: -140px;
  }
}
@media (min-width: 1400px) {
  .lightning-hero_main-ball {
    width: 208px;
    height: 427px;
    bottom: -161px;
  }
}
@media (min-width: 1500px) {
  .lightning-hero_main-ball {
    width: 208px;
    height: 427px;
    bottom: -189px;
  }
}
@media (min-width: 1920px) {
  .lightning-hero_main-ball {
    width: 19.3vw;
    height: 39.5vw;
    bottom: -71px;
  }
}
@media (min-width: 2100px) {
  .lightning-hero_main-ball {
    width: 17.4vw;
    height: 31.5vw;
  }
}
@media (min-width: 576px) {
  .lightning-hero_main-footbolist {
    width: 19.5vw;
    height: 30vw;
    left: -17vw;
    bottom: -80px;
  }
}
@media (min-width: 768px) {
  .lightning-hero_main-footbolist {
    height: 42vw;
    left: -11vw;
    bottom: -168px;
  }
}
@media (min-width: 962px) {
  .lightning-hero_main-footbolist {
    left: -16vw;
    bottom: -215px;
  }
}
@media (min-width: 1024px) {
  .lightning-hero_main-footbolist {
    width: 17vw;
    height: 26vw;
    left: -14vw;
    bottom: -105px;
  }
}
@media (min-width: 1200px) {
  .lightning-hero_main-footbolist {
    left: -14vw;
    width: 17vw;
    height: 42vw;
    bottom: -310px;
  }
}
@media (min-width: 1400px) {
  .lightning-hero_main-footbolist {
    left: -8vw;
    width: 14vw;
    height: 22vw;
    bottom: -197px;
  }
}
@media (min-width: 1500px) {
  .lightning-hero_main-footbolist {
    left: -8vw;
    width: 14vw;
    height: 22vw;
    bottom: -245px;
  }
}
@media (min-width: 1920px) {
  .lightning-hero_main-footbolist {
    left: -14vw;
    width: 17vw;
    height: 42vw;
    bottom: -404px;
  }
}
@media (min-width: 2100px) {
  .lightning-hero_main-footbolist {
    width: 15.3vw;
    height: 23.4vw;
    left: -16.5vw;
    bottom: -147px;
  }
}
.lightning-hero_main-title {
  max-width: 290px;
  margin: 15px auto 16px auto;
  color: white;
  font-family: "Chelsea Market", sans-serif;
  font-weight: 400;
}
@media (min-width: 360px) {
  .lightning-hero_main-title {
    line-height: 117%;
    font-size: 22px;
    max-width: 284px;
  }
}
@media (min-width: 414px) {
  .lightning-hero_main-title {
    font-size: 28px;
    max-width: 306px;
    margin-top: 18px;
  }
}
@media (min-width: 576px) {
  .lightning-hero_main-title {
    font-size: 28px;
    max-width: 340px;
    margin-top: 22px;
  }
}
@media (min-width: 768px) {
  .lightning-hero_main-title {
    max-width: 434px;
    font-size: 38px;
    margin-bottom: 24px;
    margin-top: 0;
  }
}
@media (min-width: 962px) {
  .lightning-hero_main-title {
    font-size: 40px;
    max-width: 495px;
  }
}
@media (min-width: 1024px) {
  .lightning-hero_main-title {
    font-size: 40px;
    max-width: 504px;
  }
}
@media (min-width: 1400px) {
  .lightning-hero_main-title {
    max-width: 670px;
    font-size: 62px;
    margin-top: 80px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1920px) {
  .lightning-hero_main-title {
    font-size: 54px;
  }
}
.lightning-hero_policies {
  display: none;
  flex-direction: column;
  margin-top: 60px;
  gap: 20px;
}
@media (min-width: 1400px) {
  .lightning-hero_policies {
    display: flex;
    margin-top: 80px;
    gap: 32px;
    max-width: 509px;
  }
  [lang=ro-RO] .lightning-hero_policies {
    max-width: 500px;
  }
}
.lightning-hero_policy {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.lightning-hero_policy-img {
  width: 35px;
  height: 35px;
}
@media (min-width: 1024px) {
  .lightning-hero_policy-img {
    width: 40px;
    height: 40px;
    min-width: 41px;
    margin-right: 16px;
  }
}
@media (min-width: 1200px) {
  .lightning-hero_policy-img {
    width: 65px;
    height: 65px;
    min-width: 65px;
  }
}
@media (min-width: 1400px) {
  .lightning-hero_policy-img {
    width: 74px;
    height: 74px;
    min-width: 74px;
  }
}
.lightning-hero_policy-img img {
  width: 100%;
  height: auto;
}
.lightning-hero_policy-text {
  text-align: start;
  color: #043192;
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 100%;
  text-shadow: 0 4px 8px rgba(4, 49, 146, 0.4);
}
@media (min-width: 1200px) {
  .lightning-hero_policy-text {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .lightning-hero_policy-text {
    font-size: 26px;
    color: #fff;
  }
}
.lightning-hero_advantages {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
  background-color: #ffffff;
  text-align: center;
}
@media (min-width: 1024px) {
  .lightning-hero_advantages {
    padding: 0 20px;
  }
}
@media (min-width: 1200px) {
  .lightning-hero_advantages {
    background-color: transparent;
    justify-content: space-between;
  }
}
@media (min-width: 1536px) {
  .lightning-hero_advantages {
    justify-content: space-evenly;
    padding: 0 50px;
  }
}
@media (min-width: 1400px) {
  .lightning-hero_advantages {
    margin-top: 295px;
  }
  [lang=bg-BG] .lightning-hero_advantages, [lang=el-GR] .lightning-hero_advantages, [lang=pt-BR] .lightning-hero_advantages {
    padding: 0;
  }
}
@media (min-width: 1440px) {
  .lightning-hero_advantages {
    justify-content: space-between;
    padding: 0;
  }
}
@media (min-width: 1920px) {
  .lightning-hero_advantages {
    margin-top: 160px;
  }
}
.lightning-hero_advantage-item {
  position: relative;
  display: flex;
  justify-content: center;
  width: 167px;
  height: 170px;
  margin-bottom: 5px;
}
@media (min-width: 414px) {
  .lightning-hero_advantage-item {
    width: 195px;
    height: 190px;
    margin-bottom: 15px;
  }
}
@media (min-width: 576px) {
  .lightning-hero_advantage-item {
    width: 273px;
    height: 270px;
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .lightning-hero_advantage-item {
    width: 355px;
    height: 342px;
  }
}
@media (min-width: 962px) {
  [lang|=es] .lightning-hero_advantage-item, [lang=pt-BR] .lightning-hero_advantage-item, [lang|=en] .lightning-hero_advantage-item, [lang=sr-latn] .lightning-hero_advantage-item {
    width: 238px;
    height: 235px;
  }
}
@media (min-width: 1024px) {
  .lightning-hero_advantage-item {
    width: 240px;
    height: 235px;
  }
}
@media (min-width: 1400px) {
  [lang=bg-BG] .lightning-hero_advantage-item, [lang=ro-RO] .lightning-hero_advantage-item, [lang=el-GR] .lightning-hero_advantage-item, [lang|=es] .lightning-hero_advantage-item, [lang=pt-BR] .lightning-hero_advantage-item, [lang|=en] .lightning-hero_advantage-item, [lang=sr-latn] .lightning-hero_advantage-item {
    width: 320px;
    height: 310px;
  }
}
@media (min-width: 1440px) {
  .lightning-hero_advantage-item {
    width: 280px;
    height: 280px;
  }
}
@media (min-width: 1536px) {
  .lightning-hero_advantage-item {
    width: 360px;
    height: 350px;
  }
}
@media (min-width: 1920px) {
  [lang=bg-BG] .lightning-hero_advantage-item, [lang=el-GR] .lightning-hero_advantage-item, [lang=pt-BR] .lightning-hero_advantage-item, [lang|=en] .lightning-hero_advantage-item, [lang=sr-latn] .lightning-hero_advantage-item, [lang=sr-latn] .lightning-hero_advantage-item {
    width: 350px;
    height: 340px;
  }
}
.lightning-hero_advantage-icon {
  position: absolute;
  width: 92%;
  z-index: 2;
}
.lightning-hero_advantage-box {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.lightning-hero .lightning-hero_advantage-people {
  align-self: center;
  max-width: 125px;
  padding-top: 70px;
  font-size: 16px;
}
[lang=bg-BG] .lightning-hero .lightning-hero_advantage-people {
  padding-top: 80px;
}
[lang=el-GR] .lightning-hero .lightning-hero_advantage-people {
  max-width: 110px;
}
@media (min-width: 414px) {
  .lightning-hero .lightning-hero_advantage-people {
    padding-top: 80px;
  }
  [lang=ro-RO] .lightning-hero .lightning-hero_advantage-people, [lang|=en] .lightning-hero .lightning-hero_advantage-people {
    max-width: 150px;
  }
}
@media (min-width: 576px) {
  .lightning-hero .lightning-hero_advantage-people {
    max-width: 180px;
    font-size: 24px;
    padding-top: 110px;
  }
  [lang=bg-BG] .lightning-hero .lightning-hero_advantage-people {
    padding-top: 120px;
  }
  [lang=ro-RO] .lightning-hero .lightning-hero_advantage-people, [lang=el-GR] .lightning-hero .lightning-hero_advantage-people {
    max-width: 186px;
  }
  [lang|=en] .lightning-hero .lightning-hero_advantage-people {
    padding-top: 120px;
    max-width: 186px;
  }
  [lang=sr-latn] .lightning-hero .lightning-hero_advantage-people {
    max-width: 204px;
  }
}
@media (min-width: 768px) {
  .lightning-hero .lightning-hero_advantage-people {
    font-size: 28px;
    padding-top: 140px;
  }
  [lang=bg-BG] .lightning-hero .lightning-hero_advantage-people {
    padding-top: 160px;
  }
  [lang=ro-RO] .lightning-hero .lightning-hero_advantage-people {
    max-width: 250px;
  }
  [lang|=en] .lightning-hero .lightning-hero_advantage-people {
    max-width: 250px;
    padding-top: 140px;
  }
  [lang=el-GR] .lightning-hero .lightning-hero_advantage-people {
    max-width: 230px;
    padding-top: 160px;
  }
  [lang=sr-latn] .lightning-hero .lightning-hero_advantage-people {
    max-width: 270px;
    padding-top: 140px;
  }
}
@media (min-width: 962px) {
  .lightning-hero .lightning-hero_advantage-people {
    max-width: 240px;
    padding-top: 140px;
  }
  [lang|=en] .lightning-hero .lightning-hero_advantage-people, [lang=sr-latn] .lightning-hero .lightning-hero_advantage-people {
    max-width: 180px;
    padding-top: 110px;
  }
}
@media (min-width: 1024px) {
  .lightning-hero .lightning-hero_advantage-people {
    max-width: 152px;
    font-size: 20px;
    padding-top: 100px;
  }
  [lang=bg-BG] .lightning-hero .lightning-hero_advantage-people {
    padding-top: 105px;
  }
  [lang=ro-RO] .lightning-hero .lightning-hero_advantage-people {
    max-width: 190px;
  }
  [lang=el-GR] .lightning-hero .lightning-hero_advantage-people, [lang=pt-BR] .lightning-hero .lightning-hero_advantage-people {
    max-width: 159px;
    padding-top: 110px;
  }
  [lang|=en] .lightning-hero .lightning-hero_advantage-people {
    padding-top: 110px;
  }
}
@media (min-width: 1200px) {
  [lang=pt-BR] .lightning-hero .lightning-hero_advantage-people {
    max-width: 172px;
  }
}
@media (min-width: 1400px) {
  [lang=bg-BG] .lightning-hero .lightning-hero_advantage-people {
    padding-top: 140px;
  }
  [lang=ro-RO] .lightning-hero .lightning-hero_advantage-people, [lang=el-GR] .lightning-hero .lightning-hero_advantage-people, [lang=pt-BR] .lightning-hero .lightning-hero_advantage-people {
    max-width: 256px;
    padding-top: 140px;
  }
  [lang|=en] .lightning-hero .lightning-hero_advantage-people {
    max-width: 210px;
    padding-top: 130px;
  }
  [lang=sr-latn] .lightning-hero .lightning-hero_advantage-people {
    max-width: 240px;
    padding-top: 130px;
  }
}
@media (min-width: 1440px) {
  .lightning-hero .lightning-hero_advantage-people {
    max-width: 240px;
    font-size: 24px;
    padding-top: 115px;
  }
}
@media (min-width: 1920px) {
  [lang=bg-BG] .lightning-hero .lightning-hero_advantage-people {
    padding-top: 150px;
  }
  [lang|=en] .lightning-hero .lightning-hero_advantage-people {
    max-width: 240px;
    padding-top: 150px;
  }
  [lang=sr-latn] .lightning-hero .lightning-hero_advantage-people {
    max-width: 280px;
    padding-top: 150px;
  }
}
.lightning-hero_advantage-text {
  align-self: center;
  max-width: 125px;
  padding-top: 55px;
  font-size: 16px;
  font-family: "Paytone One", sans-serif;
  line-height: 100%;
  z-index: 3;
}
[lang=el-GR] .lightning-hero_advantage-text {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 14px;
}
[lang=bg-BG] .lightning-hero_advantage-text {
  font-family: "Shantell Sans", sans-serif;
  font-weight: 700;
  word-wrap: break-word;
  padding-top: 65px;
  max-width: 108px;
}
[lang=sr-latn] .lightning-hero_advantage-text {
  max-width: 104px;
}
@media (min-width: 414px) {
  .lightning-hero_advantage-text {
    padding-top: 70px;
  }
  [lang=bg-BG] .lightning-hero_advantage-text {
    max-width: 118px;
    font-size: 18px;
  }
  [lang=ro-RO] .lightning-hero_advantage-text, [lang|=en] .lightning-hero_advantage-text, [lang=sr-latn] .lightning-hero_advantage-text {
    font-size: 18px;
  }
  [lang=el-GR] .lightning-hero_advantage-text {
    max-width: 127px;
    font-size: 16px;
  }
  [lang|=es] .lightning-hero_advantage-text, [lang=pt-BR] .lightning-hero_advantage-text {
    font-size: 18px;
    max-width: 140px;
  }
}
@media (min-width: 576px) {
  .lightning-hero_advantage-text {
    max-width: 190px;
    padding-top: 90px;
    font-size: 24px;
  }
  [lang=bg-BG] .lightning-hero_advantage-text {
    max-width: 158px;
    font-size: 24px;
    padding-top: 100px;
  }
  [lang=ro-RO] .lightning-hero_advantage-text {
    font-size: 24px;
  }
  [lang=el-GR] .lightning-hero_advantage-text, [lang|=es] .lightning-hero_advantage-text, [lang=pt-BR] .lightning-hero_advantage-text {
    max-width: 192px;
    font-size: 24px;
  }
  [lang|=en] .lightning-hero_advantage-text {
    max-width: 192px;
    font-size: 24px;
    padding-top: 100px;
  }
  [lang=sr-latn] .lightning-hero_advantage-text {
    max-width: 156px;
    font-size: 24px;
    padding-top: 110px;
  }
}
@media (min-width: 768px) {
  .lightning-hero_advantage-text {
    max-width: 240px;
    padding-top: 110px;
    font-size: 28px;
  }
  [lang=bg-BG] .lightning-hero_advantage-text {
    font-size: 32px;
    max-width: 210px;
    padding-top: 130px;
  }
  [lang=ro-RO] .lightning-hero_advantage-text {
    font-size: 32px;
  }
  [lang=el-GR] .lightning-hero_advantage-text {
    max-width: 225px;
    padding-top: 140px;
    font-size: 28px;
  }
  [lang|=es] .lightning-hero_advantage-text {
    max-width: 230px;
    padding-top: 140px;
    font-size: 32px;
  }
  [lang=pt-BR] .lightning-hero_advantage-text {
    max-width: 240px;
    padding-top: 140px;
    font-size: 32px;
  }
  [lang|=en] .lightning-hero_advantage-text {
    max-width: 240px;
    padding-top: 140px;
    font-size: 32px;
  }
  [lang=sr-latn] .lightning-hero_advantage-text {
    max-width: 200px;
    font-size: 32px;
    padding-top: 130px;
  }
}
@media (min-width: 962px) {
  [lang|=es] .lightning-hero_advantage-text, [lang=pt-BR] .lightning-hero_advantage-text {
    max-width: 190px;
    font-size: 22px;
    padding-top: 100px;
    min-height: 7em;
  }
  [lang|=en] .lightning-hero_advantage-text {
    max-width: 190px;
    font-size: 24px;
    padding-top: 110px;
    min-height: 7em;
  }
  [lang=sr-latn] .lightning-hero_advantage-text {
    max-width: 156px;
    font-size: 24px;
    padding-top: 90px;
  }
}
@media (min-width: 1024px) {
  .lightning-hero_advantage-text {
    max-width: 160px;
    padding-top: 85px;
    font-size: 20px;
  }
  [lang=bg-BG] .lightning-hero_advantage-text {
    max-width: 158px;
    font-size: 24px;
    padding-top: 100px;
    min-height: 7em;
  }
  [lang=ro-RO] .lightning-hero_advantage-text, [lang=pt-BR] .lightning-hero_advantage-text {
    font-size: 22px;
  }
  [lang=el-GR] .lightning-hero_advantage-text {
    font-size: 20px;
    max-width: 159px;
    padding-top: 90px;
  }
  [lang|=en] .lightning-hero_advantage-text {
    max-width: 158px;
    font-size: 24px;
    padding-top: 110px;
    min-height: 7em;
  }
}
@media (min-width: 1200px) {
  [lang=pt-BR] .lightning-hero_advantage-text {
    font-size: 24px;
    max-width: 180px;
  }
}
@media (min-width: 1400px) {
  [lang=bg-BG] .lightning-hero_advantage-text, [lang=ro-RO] .lightning-hero_advantage-text, [lang|=es] .lightning-hero_advantage-text, [lang=pt-BR] .lightning-hero_advantage-text {
    font-size: 28px;
    max-width: 230px;
    min-height: 8em;
    padding-top: 140px;
  }
  [lang=el-GR] .lightning-hero_advantage-text {
    font-size: 26px;
    max-width: 230px;
    min-height: 8em;
    padding-top: 150px;
  }
  [lang|=en] .lightning-hero_advantage-text {
    font-size: 28px;
    max-width: 220px;
    padding-top: 130px;
  }
  [lang=sr-latn] .lightning-hero_advantage-text {
    font-size: 28px;
    max-width: 180px;
    padding-top: 130px;
  }
}
@media (min-width: 1440px) {
  .lightning-hero_advantage-text {
    max-width: 215px;
    padding-top: 110px;
    font-size: 24px;
  }
}
@media (min-width: 1536px) {
  .lightning-hero_advantage-text {
    max-width: 240px;
    padding-top: 130px;
  }
}
@media (min-width: 1920px) {
  [lang=bg-BG] .lightning-hero_advantage-text {
    max-width: 260px;
    font-size: 32px;
    padding-top: 150px;
  }
  [lang=el-GR] .lightning-hero_advantage-text {
    font-size: 30px;
    max-width: 260px;
    padding-top: 160px;
  }
  [lang|=en] .lightning-hero_advantage-text {
    font-size: 32px;
    max-width: 240px;
    padding-top: 150px;
  }
  [lang=sr-latn] .lightning-hero_advantage-text {
    font-size: 32px;
    padding-top: 150px;
  }
}
.lightning-hero__phone-container {
  position: relative;
  margin: 0 auto;
  padding-top: 25px;
}
@media (min-width: 414px) {
  .lightning-hero__phone-container {
    margin-top: 20px;
  }
}
@media (min-width: 576px) {
  .lightning-hero__phone-container {
    margin-top: 35px;
  }
}
@media (min-width: 768px) {
  .lightning-hero__phone-container {
    padding: 37px 0;
  }
}
@media (min-width: 962px) {
  .lightning-hero__phone-container {
    margin-top: 20px;
  }
}
@media (min-width: 1024px) {
  .lightning-hero__phone-container {
    padding-top: 40px;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .lightning-hero__phone-container {
    padding: 0;
    padding-bottom: 50px;
    margin: 0;
    margin-top: 35px;
  }
}
@media (min-width: 1400px) {
  .lightning-hero__phone-container {
    padding-top: 65px;
  }
}
@media (min-width: 1400px) {
  .lightning-hero__phone-container {
    margin-top: 0;
  }
}
@media (min-width: 1920px) {
  .lightning-hero__phone-container {
    margin-top: 10px;
  }
}
.lightning-hero__phone {
  width: 211px;
  height: 425px;
  background: url(assets/hero-iphone.svg) no-repeat;
  background-size: cover;
  transform: rotate(6deg);
  position: relative;
}
@media (min-width: 576px) {
  .lightning-hero__phone {
    width: 293px;
    height: 590px;
  }
}
@media (min-width: 1920px) {
  .lightning-hero__phone {
    width: 348px;
    height: 702px;
  }
}
.lightning-hero-btn {
  position: relative;
  width: 250px;
  height: 64px;
  animation: lightning-hero-btn-scale 2s ease-in-out infinite;
  background: linear-gradient(180deg, #FC3F00 0%, #A81010 50%, #BD0000 100%);
  box-shadow: 0 12px 8px 0 rgba(11, 2, 3, 0.38);
  font-family: "Chelsea Market";
}
@media (min-width: 360px) {
  .lightning-hero-btn {
    width: 300px;
  }
}
@media (min-width: 414px) {
  .lightning-hero-btn {
    width: 328px;
  }
}
@media (min-width: 576px) {
  .lightning-hero-btn {
    width: 336px;
  }
}
@media (min-width: 768px) {
  .lightning-hero-btn {
    width: 460px;
  }
}
@media (min-width: 962px) {
  .lightning-hero-btn {
    height: 80px;
    width: 528px;
  }
}
@media (min-width: 1400px) {
  .lightning-hero-btn {
    width: 559px;
  }
}
.lightning-hero-btn_text {
  line-height: normal;
}
@media (min-width: 360px) {
  .lightning-hero-btn_text {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .lightning-hero-btn_text {
    font-size: 28px;
  }
}
@media (min-width: 962px) {
  .lightning-hero-btn_text {
    font-size: 30px;
  }
}
@media (min-width: 1400px) {
  .lightning-hero-btn_text {
    font-size: 32px;
  }
}
@media (min-width: 1400px) {
  .lightning-hero-btn .landing-btn_content img {
    margin-top: 0;
  }
}

.lightning-hero-benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 55px;
  gap: 38px;
  position: relative;
  z-index: 10;
}
.lightning-hero-benefits::before {
  content: "";
  position: absolute;
  top: 1%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 54%);
}
@media (min-width: 694px) {
  .lightning-hero-benefits::before {
    height: 290px;
    top: 50px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 24%);
  }
}
@media (min-width: 360px) {
  .lightning-hero-benefits {
    margin-top: 47px;
    padding-top: 65px;
  }
}
@media (min-width: 576px) {
  .lightning-hero-benefits {
    margin-top: 60px;
    padding-top: 120px;
  }
}
@media (min-width: 768px) {
  .lightning-hero-benefits {
    margin-top: 75px;
    padding-top: 145px;
  }
}
@media (min-width: 962px) {
  .lightning-hero-benefits {
    padding-top: 135px;
  }
}
@media (min-width: 1024px) {
  .lightning-hero-benefits {
    margin-top: 90px;
    padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  .lightning-hero-benefits {
    padding-top: 150px;
  }
}
@media (min-width: 1400px) {
  .lightning-hero-benefits {
    display: none;
  }
}
.lightning-hero-benefits__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  padding: 0 18px;
  z-index: 10;
}
@media (min-width: 360px) {
  .lightning-hero-benefits__list {
    padding: 0;
    width: 300px;
  }
  [lang=bg-BG] .lightning-hero-benefits__list {
    width: 100%;
    padding: 0 25px;
  }
  [lang=ro-Ro] .lightning-hero-benefits__list, [lang=el-GR] .lightning-hero-benefits__list, [lang|=es] .lightning-hero-benefits__list, [lang|=en] .lightning-hero-benefits__list, [lang=sr-latn] .lightning-hero-benefits__list {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
  [lang=pt-BR] .lightning-hero-benefits__list {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
  [lang=pt-BR] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(2) {
    min-width: 87px;
  }
}
@media (min-width: 414px) {
  [lang=bg-BG] .lightning-hero-benefits__list {
    width: 100%;
    padding: 0 25px;
  }
  [lang=bg-BG] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(2) {
    min-width: 87px;
  }
  [lang|=en] .lightning-hero-benefits__list {
    padding-left: 55px;
    padding-right: 55px;
  }
  [lang=sr-latn] .lightning-hero-benefits__list {
    padding-left: 40px;
    padding-right: 40px;
  }
  [lang=bg-BG] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(1), [lang|=es] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(1) {
    min-width: 114px;
  }
  [lang=bg-BG] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(3) {
    min-width: 144px;
  }
  [lang|=es] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(3) {
    min-width: 106px;
  }
}
@media (min-width: 576px) {
  .lightning-hero-benefits__list {
    width: 528px;
  }
  [lang|=en] .lightning-hero-benefits__list, [lang=sr-latn] .lightning-hero-benefits__list {
    padding-left: 24px;
    padding-right: 24px;
  }
  [lang=bg-BG] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(1) {
    min-width: 170px;
  }
  [lang=sr-latn] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(1) {
    min-width: 180px;
  }
  [lang=bg-BG] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(3) {
    min-width: 194px;
  }
  [lang=bg-BG] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(2) {
    min-width: 150px;
  }
  [lang=ro-Ro] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(2) {
    min-width: 148px;
  }
  [lang=pt-BR] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(2) {
    min-width: 134px;
  }
}
@media (min-width: 768px) {
  .lightning-hero-benefits__list {
    width: 548px;
  }
  [lang=bg-BG] .lightning-hero-benefits__list {
    width: 618px;
    padding: 0;
  }
  [lang=bg-BG] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(1) {
    min-width: 192px;
  }
  [lang=bg-BG] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(3) {
    min-width: 224px;
  }
  [lang=bg-BG] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(2), [lang=el-GR] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(2), [lang=pt-BR] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(2) {
    min-width: 150px;
  }
  [lang=ro-RO] .lightning-hero-benefits__list, [lang=el-GR] .lightning-hero-benefits__list, [lang|=es] .lightning-hero-benefits__list, [lang=pt-BR] .lightning-hero-benefits__list, [lang|=en] .lightning-hero-benefits__list, [lang=sr-latn] .lightning-hero-benefits__list {
    max-width: 80%;
    padding: 0;
  }
}
@media (min-width: 962px) {
  .lightning-hero-benefits__list {
    width: 820px;
  }
  [lang=bg-BG] .lightning-hero-benefits__list {
    width: 100%;
    padding: 0 28px;
  }
  [lang=bg-BG] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(3) {
    min-width: 320px;
  }
  [lang=bg-BG] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(2), [lang=el-GR] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(2) {
    width: 270px;
  }
  [lang=ro-Ro] .lightning-hero-benefits__list, [lang=pt-BR] .lightning-hero-benefits__list, [lang|=en] .lightning-hero-benefits__list, [lang=sr-latn] .lightning-hero-benefits__list {
    max-width: 100%;
    padding-left: 28px;
    padding-right: 28px;
  }
  [lang=el-GR] .lightning-hero-benefits__list {
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }
  [lang|=es] .lightning-hero-benefits__list {
    max-width: 100%;
    padding-left: 42px;
    padding-right: 42px;
  }
}
@media (min-width: 1024px) {
  .lightning-hero-benefits__list {
    width: 940px;
  }
  [lang=bg-BG] .lightning-hero-benefits__list {
    width: 946px;
  }
  [lang=bg-BG] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(1) {
    width: 308px;
  }
  [lang=bg-BG] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(2) {
    width: 260px;
  }
  [lang=bg-BG] .lightning-hero-benefits__list .lightning-hero-benefits__item:nth-child(3) {
    min-width: 310px;
  }
  [lang=ro-Ro] .lightning-hero-benefits__list {
    padding-left: 44px;
    padding-right: 44px;
  }
  [lang=el-GR] .lightning-hero-benefits__list {
    padding-left: 34px;
    padding-right: 34px;
  }
  [lang|=es] .lightning-hero-benefits__list, [lang=pt-BR] .lightning-hero-benefits__list {
    padding: 0;
    max-width: 90%;
  }
  [lang|=en] .lightning-hero-benefits__list {
    padding: 0;
    max-width: 80%;
  }
}
@media (min-width: 1200px) {
  [lang=ro-Ro] .lightning-hero-benefits__list, [lang=el-GR] .lightning-hero-benefits__list, [lang=pt-BR] .lightning-hero-benefits__list, [lang=sr-latn] .lightning-hero-benefits__list {
    padding: 0;
    max-width: 80%;
  }
}
.lightning-hero-benefits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 76px;
  margin-bottom: 25px;
  gap: 5px;
  text-align: center;
}
.lightning-hero-benefits__item img {
  min-width: 35px;
  max-height: 35px;
  height: auto;
  object-fit: contain;
}
@media (min-width: 360px) {
  [lang=bg-BG] .lightning-hero-benefits__item, [lang|=es] .lightning-hero-benefits__item {
    min-width: 96px;
  }
  [lang=ro-Ro] .lightning-hero-benefits__item, [lang=sr-latn] .lightning-hero-benefits__item {
    width: 98px;
  }
  [lang=el-GR] .lightning-hero-benefits__item {
    width: 100px;
  }
  [lang=pt-BR] .lightning-hero-benefits__item {
    min-width: 102px;
  }
}
@media (min-width: 414px) {
  .lightning-hero-benefits__item {
    margin-bottom: 44px;
  }
  [lang=pt-BR] .lightning-hero-benefits__item {
    min-width: 116px;
  }
}
@media (min-width: 576px) {
  .lightning-hero-benefits__item {
    flex-direction: row;
    min-width: 170px;
    align-items: center;
    text-align: left;
  }
  .lightning-hero-benefits__item img {
    min-width: 45px;
    max-height: 45px;
    height: auto;
  }
  [lang|=es] .lightning-hero-benefits__item {
    width: 166px;
  }
  [lang=pt-BR] .lightning-hero-benefits__item {
    min-width: 166px;
  }
}
@media (min-width: 768px) {
  .lightning-hero-benefits__item {
    margin-bottom: 100px;
  }
  [lang=ro-RO] .lightning-hero-benefits__item, [lang=el-GR] .lightning-hero-benefits__item {
    min-width: 208px;
  }
  [lang|=es] .lightning-hero-benefits__item {
    width: 180px;
  }
  [lang=pt-BR] .lightning-hero-benefits__item {
    min-width: 190px;
  }
}
@media (min-width: 962px) {
  [lang=bg-BG] .lightning-hero-benefits__item, [lang=ro-RO] .lightning-hero-benefits__item, [lang=el-GR] .lightning-hero-benefits__item, [lang|=es] .lightning-hero-benefits__item, [lang=pt-BR] .lightning-hero-benefits__item, [lang|=en] .lightning-hero-benefits__item, [lang=sr-latn] .lightning-hero-benefits__item {
    width: 300px;
    gap: 20px;
  }
  [lang=bg-BG] .lightning-hero-benefits__item img, [lang=ro-RO] .lightning-hero-benefits__item img, [lang=el-GR] .lightning-hero-benefits__item img, [lang|=es] .lightning-hero-benefits__item img, [lang=pt-BR] .lightning-hero-benefits__item img, [lang|=en] .lightning-hero-benefits__item img, [lang=sr-latn] .lightning-hero-benefits__item img {
    min-width: 74px;
    max-height: 74px;
  }
  [lang=el-GR] .lightning-hero-benefits__item {
    gap: 16px;
  }
  [lang=ro-RO] .lightning-hero-benefits__item, [lang|=es] .lightning-hero-benefits__item, [lang=pt-BR] .lightning-hero-benefits__item {
    gap: 16px;
    width: 296px;
  }
  [lang|=en] .lightning-hero-benefits__item {
    gap: 16px;
    width: 270px;
  }
}
@media (min-width: 1024px) {
  .lightning-hero-benefits__item {
    margin-bottom: 85px;
    width: 25%;
    align-items: center;
  }
  .lightning-hero-benefits__item img {
    min-width: 75px;
    max-height: 75px;
    height: auto;
  }
}
.lightning-hero-benefits__text {
  font-size: 8px;
  color: #043192;
  text-shadow: 0 4px 8px rgba(4, 49, 146, 0.4);
  font-family: "Archivo", sans-serif;
  font-weight: 800;
}
[lang=bg-BG] .lightning-hero-benefits__text {
  font-family: "Shantell Sans", sans-serif;
  font-weight: 700;
}
@media (min-width: 360px) {
  [lang=bg-BG] .lightning-hero-benefits__text {
    font-size: 12px;
    line-height: 100%;
  }
  [lang|=en] .lightning-hero-benefits__text {
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 1px;
  }
  [lang=sr-latn] .lightning-hero-benefits__text {
    font-size: 12px;
    line-height: 100%;
    letter-spacing: -0.5px;
  }
  [lang=ro-Ro] .lightning-hero-benefits__text, [lang|=es] .lightning-hero-benefits__text, [lang=pt-BR] .lightning-hero-benefits__text {
    font-size: 12px;
    line-height: 110%;
    font-weight: 800;
  }
  [lang=el-GR] .lightning-hero-benefits__text {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 110%;
  }
}
@media (min-width: 576px) {
  .lightning-hero-benefits__text {
    font-size: 12px;
  }
  [lang|=en] .lightning-hero-benefits__text, [lang=sr-latn] .lightning-hero-benefits__text {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  [lang=bg-BG] .lightning-hero-benefits__text, [lang=ro-Ro] .lightning-hero-benefits__text, [lang=el-GR] .lightning-hero-benefits__text, [lang|=es] .lightning-hero-benefits__text, [lang=pt-BR] .lightning-hero-benefits__text {
    font-size: 14px;
  }
}
@media (min-width: 962px) {
  [lang=bg-BG] .lightning-hero-benefits__text, [lang=ro-Ro] .lightning-hero-benefits__text, [lang=el-GR] .lightning-hero-benefits__text, [lang|=es] .lightning-hero-benefits__text, [lang=pt-BR] .lightning-hero-benefits__text, [lang|=en] .lightning-hero-benefits__text {
    font-size: 18px;
  }
  [lang=sr-latn] .lightning-hero-benefits__text {
    font-size: 18px;
    letter-spacing: 0;
  }
}

.animation-wrapper,
.video-thumbnail {
  position: absolute;
  top: 34px;
  left: 11px;
  width: 190px;
  height: 409px;
  border-radius: 27px;
  z-index: 1;
  transform: rotate(6deg);
  overflow: hidden;
}
@media (min-width: 576px) {
  .animation-wrapper,
  .video-thumbnail {
    top: 36px;
    left: 16px;
    width: 262px;
    height: 567px;
    border-radius: 37px;
  }
}
@media (min-width: 768px) {
  .animation-wrapper,
  .video-thumbnail {
    top: 49px;
  }
}
@media (min-width: 1024px) {
  .animation-wrapper,
  .video-thumbnail {
    top: 52px;
  }
}
@media (min-width: 1200px) {
  .animation-wrapper,
  .video-thumbnail {
    top: 11px;
    width: 262px;
    height: 568px;
  }
}
@media (min-width: 1400px) {
  .animation-wrapper,
  .video-thumbnail {
    top: 77px;
  }
}
@media (min-width: 1920px) {
  .animation-wrapper,
  .video-thumbnail {
    top: 81px;
    left: 23px;
    width: 305px;
    height: 671px;
    border-radius: 34px;
  }
}
.animation-wrapper .animation,
.video-thumbnail .animation {
  max-width: none;
  width: 100%;
  height: 100%;
}

.animation-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 90px;
  width: 100%;
  height: 100%;
  background: url(assets/camera360.webp) no-repeat;
  transform: rotate(-5deg);
}
@media (min-width: 414px) {
  .animation-wrapper::before {
    left: 90px;
    background: url(assets/camera414.webp) no-repeat;
  }
}
@media (min-width: 576px) {
  .animation-wrapper::before {
    left: 130px;
    background: url(assets/camera576.webp) no-repeat;
  }
}
@media (min-width: 768px) {
  .animation-wrapper::before {
    left: 128px;
    background: url(assets/camera576.webp) no-repeat;
  }
}
@media (min-width: 1200px) {
  .animation-wrapper::before {
    left: 138px;
    background: url(assets/camera414.webp) no-repeat;
  }
}
@media (min-width: 1460px) {
  .animation-wrapper::before {
    left: 130px;
    background: url(assets/camera576.webp) no-repeat;
  }
}
@media (min-width: 1920px) {
  .animation-wrapper::before {
    left: 130px;
    background: url(assets/camera1920.webp) no-repeat;
  }
}

.video-thumbnail {
  opacity: 0;
  transition: opacity 1.5s ease;
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .video-thumbnail {
    animation: none;
    transition: none;
    opacity: 1;
  }
}

.lightning-hero_advantages-container {
  position: relative;
}
.lightning-hero_advantages-container::before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  height: 300px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 54%);
  display: none;
}
@media (min-width: 1400px) {
  .lightning-hero_advantages-container::before {
    display: block;
    top: 0;
    height: 1000px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 37%);
  }
}
@media (min-width: 1920px) {
  .lightning-hero_advantages-container::before {
    display: block;
    top: 0;
    height: 1000px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 1%, rgb(255, 255, 255) 20%);
  }
}
@media (min-width: 1200px) {
  .lightning-hero_advantages-container {
    background-color: #ffffff;
  }
}
@media (min-width: 1400px) {
  .lightning-hero_advantages-container {
    background-color: transparent;
  }
}
[lang=bg-BG] .lightning-hero_advantages-container .container, [lang=ro-Ro] .lightning-hero_advantages-container .container, [lang=el-GR] .lightning-hero_advantages-container .container, [lang|=es] .lightning-hero_advantages-container .container, [lang=pt-BR] .lightning-hero_advantages-container .container, [lang|=en] .lightning-hero_advantages-container .container, [lang=sr-latn] .lightning-hero_advantages-container .container {
  max-width: 1400px;
}
/*!*****************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./Pages/games/web/bacanagol/pages/Landing/components/HowPlay/styles.scss ***!
  \*****************************************************************************************************************************************************************/
.howplay-bg {
  position: absolute;
  z-index: 2;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  max-height: 100%;
  height: 300px;
  background-color: white;
}

.howplay {
  position: relative;
  z-index: 100;
  padding: 40px 0 30px;
}
@media (min-width: 414px) {
  .howplay {
    padding: 50px 0 24px;
  }
}
@media (min-width: 576px) {
  .howplay {
    padding: 70px 0 50px;
  }
}
@media (min-width: 768px) {
  .howplay {
    padding: 110px 0 30px;
  }
}
@media (min-width: 1024px) {
  .howplay {
    padding: 65px 0 30px;
  }
}
@media (min-width: 1920px) {
  .howplay {
    padding: 100px 0;
  }
}
.howplay_main {
  padding-bottom: 15px;
  background: url(assets/howplay_pattern-360.webp), linear-gradient(180deg, rgba(149, 192, 255, 0) 0%, rgba(149, 192, 255, 0.4) 16.94%, rgba(149, 192, 255, 0.4) 83.33%, rgba(149, 192, 255, 0) 100%) no-repeat;
  background-size: cover;
}
@media (min-width: 414px) {
  .howplay_main {
    background: url(assets/howplay_pattern-414.webp), linear-gradient(180deg, rgba(149, 192, 255, 0) 0%, rgba(149, 192, 255, 0.4) 16.94%, rgba(149, 192, 255, 0.4) 83.33%, rgba(149, 192, 255, 0) 100%) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 576px) {
  .howplay_main {
    padding-bottom: 30px;
    background: url(assets/howplay_pattern-576.svg), linear-gradient(180deg, rgba(149, 192, 255, 0) 0%, rgba(149, 192, 255, 0.4) 16.94%, rgba(149, 192, 255, 0.4) 83.33%, rgba(149, 192, 255, 0) 100%) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 768px) {
  .howplay_main {
    background: url(assets/howplay_pattern-768.svg), linear-gradient(180deg, rgba(149, 192, 255, 0) 0%, rgba(149, 192, 255, 0.4) 16.94%, rgba(149, 192, 255, 0.4) 85.33%, rgba(149, 192, 255, 0) 100%) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1024px) {
  .howplay_main {
    background: url(assets/howplay_pattern-1024.svg), linear-gradient(180deg, rgba(149, 192, 255, 0) 0%, rgba(149, 192, 255, 0.4) 16.94%, rgba(149, 192, 255, 0.4) 87.33%, rgba(149, 192, 255, 0) 100%) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1920px) {
  .howplay_main {
    padding-bottom: 70px;
    background: url(assets/howplay_pattern-1920.svg), linear-gradient(180deg, rgba(149, 192, 255, 0) 0%, rgba(149, 192, 255, 0.4) 16.94%, rgba(149, 192, 255, 0.4) 89.33%, rgba(149, 192, 255, 0) 100%) no-repeat;
    background-size: cover;
  }
}
[lang=ro-RO] .howplay_main h2, [lang|=es] .howplay_main h2, [lang=pt-BR] .howplay_main h2, [lang|=en] .howplay_main h2, [lang=sr-latn] .howplay_main h2 {
  font-weight: 400;
}
@media (min-width: 414px) {
  .howplay_main h2 {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .howplay_main h2 {
    margin-bottom: 26px;
  }
}
@media (min-width: 1400px) {
  [lang=ro-RO] .howplay_main h2, [lang=el-GR] .howplay_main h2, [lang|=es] .howplay_main h2, [lang=pt-BR] .howplay_main h2, [lang|=en] .howplay_main h2, [lang=sr-latn] .howplay_main h2 {
    font-size: 48px;
  }
}
@media (min-width: 1536px) {
  .howplay_main h2 {
    padding-left: 160px;
  }
}
@media (min-width: 1920px) {
  .howplay_main h2 {
    padding-left: 0;
  }
}
.howplay_items {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1536px) {
  .howplay_items {
    padding: 0 160px;
  }
}
@media (min-width: 1920px) {
  .howplay_items {
    padding: 0;
  }
}
.howplay_item {
  padding: 10px 0;
}
@media (min-width: 360px) {
  .howplay_item {
    width: 315px;
  }
}
@media (min-width: 414px) {
  .howplay_item {
    padding: 15px 0;
    width: 365px;
  }
  [lang=bg-BG] .howplay_item {
    padding: 40px 0;
  }
}
@media (min-width: 576px) {
  .howplay_item {
    padding: 20px 0;
    width: 525px;
  }
}
@media (min-width: 768px) {
  .howplay_item {
    width: 685px;
    min-height: 415px;
  }
}
@media (min-width: 1024px) {
  .howplay_item {
    width: 710px;
    min-height: 425px;
  }
}
@media (min-width: 1400px) {
  [lang=ro-RO] .howplay_item, [lang=el-GR] .howplay_item, [lang|=es] .howplay_item, [lang=pt-BR] .howplay_item, [lang|=en] .howplay_item, [lang=sr-latn] .howplay_item {
    width: 1080px;
    min-height: 625px;
  }
}
@media (min-width: 1920px) {
  .howplay_item {
    width: 1080px;
    min-height: 625px;
  }
}
.howplay_item:nth-child(2) {
  align-self: flex-end;
}
@media (min-width: 576px) {
  .howplay_item:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .howplay_item:not(:last-child) {
    margin-bottom: 80px;
  }
}
@media (min-width: 1920px) {
  .howplay_item:not(:last-child) {
    margin-bottom: 160px;
  }
}
.howplay_item-img-left {
  display: flex;
  justify-content: flex-end;
}
.howplay_item-img {
  width: 264px;
  height: 204px;
}
@media (min-width: 414px) {
  .howplay_item-img {
    width: 314px;
    height: 238px;
  }
}
@media (min-width: 576px) {
  .howplay_item-img {
    width: 380px;
    height: 288px;
  }
}
@media (min-width: 768px) {
  .howplay_item-img {
    width: 494px;
    height: 374px;
  }
}
@media (min-width: 1024px) {
  .howplay_item-img {
    width: 509px;
    height: 384px;
  }
}
@media (min-width: 1400px) {
  [lang=ro-RO] .howplay_item-img, [lang=el-GR] .howplay_item-img, [lang|=es] .howplay_item-img, [lang=pt-BR] .howplay_item-img, [lang|=en] .howplay_item-img, [lang=sr-latn] .howplay_item-img {
    width: 774px;
    height: 584px;
  }
}
@media (min-width: 1920px) {
  .howplay_item-img {
    width: 774px;
    height: 584px;
  }
}
.howplay_item-description {
  display: flex;
  margin-top: -85px;
}
@media (min-width: 360px) {
  .howplay_item-description {
    margin-top: -110px;
  }
}
@media (min-width: 576px) {
  .howplay_item-description {
    margin-top: -284px;
  }
}
@media (min-width: 768px) {
  .howplay_item-description {
    margin-top: -370px;
  }
}
@media (min-width: 1400px) {
  [lang=ro-RO] .howplay_item-description, [lang=el-GR] .howplay_item-description, [lang|=es] .howplay_item-description, [lang=pt-BR] .howplay_item-description, [lang|=en] .howplay_item-description, [lang=sr-latn] .howplay_item-description {
    margin-top: -576px;
  }
}
@media (min-width: 1920px) {
  .howplay_item-description {
    margin-top: -576px;
  }
}
.howplay_item-description.left {
  justify-content: left;
}
.howplay_item-description.right {
  justify-content: right;
}
.howplay_item-card {
  position: relative;
  font-size: 14px;
  line-height: 130%;
}
[lang=bg-BG] .howplay_item-card, [lang|=en] .howplay_item-card {
  line-height: 140%;
}
@media (min-width: 360px) {
  [lang=ro-RO] .howplay_item-card, [lang=el-GR] .howplay_item-card, [lang|=es] .howplay_item-card {
    font-size: 12px;
    line-height: 140%;
  }
}
@media (min-width: 414px) {
  [lang=bg-BG] .howplay_item-card, [lang|=en] .howplay_item-card, [lang=sr-latn] .howplay_item-card {
    font-size: 16px;
  }
  [lang=ro-RO] .howplay_item-card, [lang=el-GR] .howplay_item-card, [lang|=es] .howplay_item-card {
    font-size: 14px;
  }
}
@media (min-width: 576px) {
  [lang=pt-BR] .howplay_item-card {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .howplay_item-card {
    font-size: 16px;
  }
  [lang=bg-BG] .howplay_item-card, [lang=pt-BR] .howplay_item-card, [lang|=en] .howplay_item-card, [lang=sr-latn] .howplay_item-card {
    font-size: 18px;
  }
  [lang=ro-RO] .howplay_item-card, [lang=el-GR] .howplay_item-card, [lang|=es] .howplay_item-card {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  [lang=ro-RO] .howplay_item-card, [lang|=es] .howplay_item-card {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  [lang=bg-BG] .howplay_item-card, [lang=ro-RO] .howplay_item-card, [lang=el-GR] .howplay_item-card, [lang|=es] .howplay_item-card, [lang=pt-BR] .howplay_item-card, [lang|=en] .howplay_item-card, [lang=sr-latn] .howplay_item-card {
    font-size: 24px;
  }
}
@media (min-width: 1920px) {
  .howplay_item-card {
    font-size: 24px;
  }
}
.howplay_text-wrapper {
  position: absolute;
  display: flex;
  align-items: center;
  width: 103px;
  height: 176px;
  transform: rotate(-7deg);
}
@media (min-width: 414px) {
  [lang=bg-BG] .howplay_text-wrapper {
    width: 134px;
  }
  [lang=el-GR] .howplay_text-wrapper {
    width: 116px;
  }
}
@media (min-width: 768px) {
  .howplay_text-wrapper {
    width: 123px;
    height: 200px;
  }
  [lang=el-GR] .howplay_text-wrapper {
    width: 126px;
  }
}
@media (min-width: 1024px) {
  .howplay_text-wrapper {
    width: 130px;
  }
  [lang=ro-RO] .howplay_text-wrapper {
    width: 140px;
  }
}
@media (min-width: 1400px) {
  [lang=bg-BG] .howplay_text-wrapper {
    width: 220px;
  }
  [lang=ro-RO] .howplay_text-wrapper, [lang=el-GR] .howplay_text-wrapper, [lang|=es] .howplay_text-wrapper, [lang=pt-BR] .howplay_text-wrapper, [lang|=en] .howplay_text-wrapper, [lang=sr-latn] .howplay_text-wrapper {
    width: 190px;
    height: 315px;
  }
}
@media (min-width: 1920px) {
  .howplay_text-wrapper {
    width: 190px;
    height: 315px;
  }
}
.howplay_text-wrapper.card1 {
  top: 68px;
  left: 28px;
}
@media (min-width: 414px) {
  .howplay_text-wrapper.card1 {
    top: 68px;
  }
  [lang=bg-BG] .howplay_text-wrapper.card1 {
    top: 90px;
  }
}
@media (min-width: 768px) {
  .howplay_text-wrapper.card1 {
    top: 80px;
    left: 31px;
  }
  [lang=bg-BG] .howplay_text-wrapper.card1 {
    top: 96px;
  }
}
@media (min-width: 1024px) {
  .howplay_text-wrapper.card1 {
    top: 87px;
    left: 32px;
  }
}
@media (min-width: 1400px) {
  [lang=bg-BG] .howplay_text-wrapper.card1 {
    top: 184px;
    left: 42px;
  }
  [lang=ro-RO] .howplay_text-wrapper.card1, [lang=el-GR] .howplay_text-wrapper.card1, [lang|=es] .howplay_text-wrapper.card1, [lang=pt-BR] .howplay_text-wrapper.card1, [lang|=en] .howplay_text-wrapper.card1, [lang=sr-latn] .howplay_text-wrapper.card1 {
    top: 130px;
    left: 51px;
  }
}
@media (min-width: 1920px) {
  .howplay_text-wrapper.card1 {
    top: 130px;
    left: 51px;
  }
  [lang=bg-BG] .howplay_text-wrapper.card1 {
    top: 132px;
  }
}
.howplay_text-wrapper.card2 {
  top: 72px;
  left: 70px;
  transform: rotate(7.5deg);
}
@media (min-width: 414px) {
  .howplay_text-wrapper.card2 {
    left: 68px;
  }
  [lang=bg-BG] .howplay_text-wrapper.card2 {
    left: 76px;
    top: 94px;
  }
}
@media (min-width: 576px) {
  .howplay_text-wrapper.card2 {
    top: 74px;
    left: 69px;
  }
  [lang=bg-BG] .howplay_text-wrapper.card2 {
    top: 96px;
  }
}
@media (min-width: 768px) {
  .howplay_text-wrapper.card2 {
    top: 90px;
    left: 77px;
  }
  [lang=bg-BG] .howplay_text-wrapper.card2 {
    top: 102px;
    left: 84px;
  }
}
@media (min-width: 1024px) {
  .howplay_text-wrapper.card2 {
    top: 92px;
    left: 80px;
  }
}
@media (min-width: 1400px) {
  [lang=bg-BG] .howplay_text-wrapper.card2 {
    top: 200px;
    left: 116px;
  }
  [lang=ro-RO] .howplay_text-wrapper.card2, [lang=el-GR] .howplay_text-wrapper.card2, [lang|=es] .howplay_text-wrapper.card2, [lang=pt-BR] .howplay_text-wrapper.card2, [lang|=en] .howplay_text-wrapper.card2, [lang=sr-latn] .howplay_text-wrapper.card2 {
    top: 142px;
    left: 127px;
  }
}
@media (min-width: 1920px) {
  .howplay_text-wrapper.card2 {
    top: 142px;
    left: 127px;
  }
  [lang=bg-BG] .howplay_text-wrapper.card2 {
    top: 150px;
    left: 114px;
  }
}
.howplay_text-wrapper.card3 {
  top: 67px;
  left: 28px;
}
@media (min-width: 414px) {
  .howplay_text-wrapper.card3 {
    top: 68px;
    left: 28px;
  }
  [lang=bg-BG] .howplay_text-wrapper.card3 {
    top: 90px;
  }
}
@media (min-width: 768px) {
  .howplay_text-wrapper.card3 {
    top: 82px;
    left: 31px;
  }
  [lang=bg-BG] .howplay_text-wrapper.card3 {
    top: 96px;
    left: 34px;
  }
}
@media (min-width: 1024px) {
  .howplay_text-wrapper.card3 {
    top: 87px;
    left: 32px;
  }
}
@media (min-width: 1400px) {
  [lang=bg-BG] .howplay_text-wrapper.card3 {
    top: 190px;
    left: 42px;
  }
  [lang=ro-RO] .howplay_text-wrapper.card3, [lang=el-GR] .howplay_text-wrapper.card3, [lang|=es] .howplay_text-wrapper.card3, [lang=pt-BR] .howplay_text-wrapper.card3, [lang|=en] .howplay_text-wrapper.card3, [lang=sr-latn] .howplay_text-wrapper.card3 {
    top: 131px;
    left: 52px;
  }
}
@media (min-width: 1920px) {
  .howplay_text-wrapper.card3 {
    top: 131px;
    left: 52px;
  }
  [lang=bg-BG] .howplay_text-wrapper.card3 {
    top: 138px;
    left: 44px;
  }
}
.howplay_card-img {
  width: 202px;
  height: 266px;
}
@media (min-width: 414px) {
  [lang=bg-BG] .howplay_card-img {
    width: 230px;
    height: 266px;
  }
}
@media (min-width: 768px) {
  .howplay_card-img {
    width: 236px;
    height: 311px;
  }
  [lang=bg-BG] .howplay_card-img {
    width: 252px;
  }
}
@media (min-width: 1024px) {
  .howplay_card-img {
    width: 244px;
    height: 319px;
  }
}
@media (min-width: 1400px) {
  [lang=bg-BG] .howplay_card-img {
    width: 370px;
  }
  [lang=ro-RO] .howplay_card-img, [lang=el-GR] .howplay_card-img, [lang|=es] .howplay_card-img, [lang=pt-BR] .howplay_card-img, [lang|=en] .howplay_card-img, [lang=sr-latn] .howplay_card-img {
    width: 373px;
    height: 488px;
  }
}
@media (min-width: 1920px) {
  .howplay_card-img {
    width: 373px;
    height: 488px;
  }
}
@media (min-width: 360px) {
  [lang=ro-RO] .howplay .action {
    padding-right: 20px;
    padding-left: 20px;
  }
  [lang=el-GR] .howplay .action {
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media (min-width: 414px) {
  [lang=ro-RO] .howplay .action {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media (min-width: 576px) {
  [lang=ro-RO] .howplay .action {
    padding-right: 0;
    padding-left: 0;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  [lang=el-GR] .howplay .action {
    padding-right: 0;
    padding-left: 0;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 962px) {
  [lang=ro-RO] .howplay .action {
    width: 80%;
  }
  [lang=el-GR] .howplay .action {
    width: 60%;
  }
}
@media (min-width: 1024px) {
  [lang=ro-RO] .howplay .action, [lang=el-GR] .howplay .action, [lang|=es] .howplay .action, [lang=pt-BR] .howplay .action, [lang|=en] .howplay .action, [lang=sr-latn] .howplay .action {
    width: 100%;
  }
}
.howplay-btn {
  padding: 14px 16px;
  width: 250px;
}
@media (min-width: 360px) {
  .howplay-btn {
    width: 300px;
    padding: 24px 16px;
    height: 66px;
  }
  [lang|=en] .howplay-btn {
    height: 80px;
    width: 100%;
  }
  [lang=it-IT] .howplay-btn {
    width: 100%;
  }
  [lang=sr-latn] .howplay-btn {
    width: 100%;
  }
  [lang=sr-latn] .howplay-btn .landing-btn_img {
    margin-top: 2px;
  }
}
@media (min-width: 414px) {
  .howplay-btn {
    width: 325px;
  }
  [lang=it-IT] .howplay-btn {
    width: 312px;
  }
}
@media (min-width: 576px) {
  .howplay-btn {
    width: 300px;
  }
  [lang=bg-BG] .howplay-btn {
    width: 100%;
  }
  [lang=pt-BR] .howplay-btn {
    width: 340px;
  }
  [lang=it-IT] .howplay-btn {
    width: 372px;
  }
  [lang|=es] .howplay-btn .landing-btn_img {
    margin-top: 2px;
  }
}
@media (min-width: 768px) {
  .howplay-btn {
    width: 390px;
  }
  [lang=bg-BG] .howplay-btn {
    width: 494px;
  }
  [lang=pt-BR] .howplay-btn {
    height: 72px;
    width: 437px;
  }
  [lang|=en] .howplay-btn {
    width: 390px;
  }
  [lang=it-IT] .howplay-btn {
    height: 72px;
    width: 415px;
  }
  [lang=ro-RO] .howplay-btn {
    height: 72px;
    width: 367px;
  }
  [lang|=es] .howplay-btn {
    height: 72px;
    width: 367px;
  }
  [lang=sr-latn] .howplay-btn {
    height: 72px;
    width: 390px;
  }
}
@media (min-width: 962px) {
  [lang=pt-BR] .howplay-btn, [lang=it-IT] .howplay-btn {
    height: 82px;
    width: 527px;
  }
  [lang|=es] .howplay-btn .landing-btn_img {
    margin-top: 4px;
  }
  [lang=bg-BG] .howplay-btn .landing-btn_img {
    margin-top: 0;
  }
}
@media (min-width: 1400px) {
  .howplay-btn {
    width: 519px;
  }
  [lang=bg-BG] .howplay-btn, [lang|=es] .howplay-btn, [lang=pt-BR] .howplay-btn, [lang=it-IT] .howplay-btn, [lang=ro-Ro] .howplay-btn {
    height: 88px;
    width: 678px;
  }
  [lang|=en] .howplay-btn, [lang=sr-latn] .howplay-btn {
    height: 84px;
    width: 519px;
  }
}
.howplay-btn_text {
  line-height: normal;
}
@media (min-width: 360px) {
  [lang=bg-BG] .howplay-btn_text {
    font-size: 22px;
    letter-spacing: -1px;
  }
  [lang=el-GR] .howplay-btn_text {
    font-size: 28px;
  }
  [lang|=es] .howplay-btn_text, [lang=pt-BR] .howplay-btn_text, [lang=it-IT] .howplay-btn_text {
    font-size: 18px;
    letter-spacing: 1px;
  }
  [lang=ro-RO] .howplay-btn_text {
    font-size: 22px;
    letter-spacing: 1px;
  }
  [lang|=en] .howplay-btn_text {
    font-size: 30px;
    letter-spacing: 1px;
  }
  [lang=sr-latn] .howplay-btn_text {
    font-size: 28px;
    letter-spacing: 1px;
  }
}
@media (min-width: 414px) {
  [lang=bg-BG] .howplay-btn_text {
    font-size: 22px;
  }
  [lang=el-GR] .howplay-btn_text, [lang=sr-latn] .howplay-btn_text {
    font-size: 30px;
  }
}
@media (min-width: 576px) {
  [lang=bg-BG] .howplay-btn_text {
    font-size: 30px;
  }
  [lang|=es] .howplay-btn_text, [lang=pt-BR] .howplay-btn_text, [lang=it-IT] .howplay-btn_text {
    font-size: 20px;
  }
  [lang=ro-RO] .howplay-btn_text {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  [lang|=es] .howplay-btn_text, [lang=pt-BR] .howplay-btn_text, [lang=it-IT] .howplay-btn_text {
    font-size: 26px;
  }
  [lang=ro-RO] .howplay-btn_text {
    font-size: 30px;
  }
}
@media (min-width: 962px) {
  [lang=el-GR] .howplay-btn_text {
    font-size: 40px;
  }
  [lang|=es] .howplay-btn_text, [lang=pt-BR] .howplay-btn_text, [lang=it-IT] .howplay-btn_text {
    font-size: 30px;
  }
}
@media (min-width: 1400px) {
  [lang=bg-BG] .howplay-btn_text, [lang|=es] .howplay-btn_text, [lang=pt-BR] .howplay-btn_text, [lang|=en] .howplay-btn_text, [lang=it-IT] .howplay-btn_text, [lang=ro-RO] .howplay-btn_text, [lang=sr-latn] .howplay-btn_text {
    font-size: 40px;
  }
}
@media (min-width: 1400px) {
  [lang=sr-latn] .howplay .container {
    max-width: 1302px;
  }
}
@media (min-width: 1920px) {
  [lang=sr-latn] .howplay .container {
    max-width: 1440px;
  }
}

.info_block {
  font-family: "Paytone One", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
[lang=el-GR] .info_block {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  line-height: 120%;
  font-size: 22px;
  width: 260px;
  margin: 0 auto;
}
[lang=bg-BG] .info_block {
  font-family: "Shantell Sans", sans-serif;
  font-weight: 800;
  line-height: 120%;
}
[lang=ro-RO] .info_block, [lang|=es] .info_block, [lang=pt-BR] .info_block, [lang|=en] .info_block, [lang=sr-latn] .info_block {
  font-weight: 400;
  line-height: 120%;
}
@media (min-width: 414px) {
  [lang=el-GR] .info_block {
    font-size: 24px;
    width: 100%;
  }
  [lang|=en] .info_block {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 576px) {
  [lang=bg-BG] .info_block, [lang=ro-RO] .info_block, [lang=el-GR] .info_block {
    font-size: 30px;
  }
  [lang|=es] .info_block, [lang=pt-BR] .info_block {
    font-size: 30px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  [lang|=en] .info_block {
    font-size: 30px;
    width: 100%;
  }
  [lang=sr-latn] .info_block {
    font-size: 30px;
    width: 82%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .info_block {
    font-size: 30px;
  }
  [lang=bg-BG] .info_block {
    min-width: 100%;
  }
  [lang|=es] .info_block, [lang=sr-latn] .info_block {
    width: 90%;
  }
}
@media (min-width: 962px) {
  [lang|=es] .info_block {
    width: 70%;
  }
  [lang|=en] .info_block {
    width: 80%;
  }
  [lang=sr-latn] .info_block {
    min-width: 100%;
  }
}
@media (min-width: 1200px) {
  [lang=bg-BG] .info_block {
    min-width: 90%;
  }
  [lang=ro-RO] .info_block, [lang=el-GR] .info_block {
    max-width: 100%;
  }
  [lang|=es] .info_block {
    max-width: 60%;
  }
  [lang|=en] .info_block {
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  [lang=bg-BG] .info_block {
    min-width: auto;
    max-width: 80%;
    padding-top: 150px;
  }
  [lang|=es] .info_block, [lang=pt-BR] .info_block {
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 1920px) {
  [lang=bg-BG] .info_block {
    max-width: 70%;
    padding-top: 48px;
  }
}
.info_block .highlight {
  color: rgb(234, 123, 7);
}
/*!****************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./Pages/games/web/bacanagol/pages/Landing/components/WhyFun/styles.scss ***!
  \****************************************************************************************************************************************************************/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.whyfun_video {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}
@media (min-width: 414px) {
  .whyfun_video {
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .whyfun_video {
    margin-bottom: 65px;
  }
}
@media (min-width: 1024px) {
  .whyfun_video {
    margin-bottom: 85px;
  }
}
@media (min-width: 1920px) {
  .whyfun_video {
    margin-bottom: 0;
  }
}
.whyfun_video__bg {
  position: absolute;
  background-image: url(assets/whyfun_bg-360.svg);
  background-position: initial;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
@media (min-width: 414px) {
  .whyfun_video__bg {
    width: 110%;
    background-image: url(assets/whyfun_bg-414.svg);
  }
}
@media (min-width: 576px) {
  .whyfun_video__bg {
    top: 75px;
    width: 100%;
    background-image: url(assets/whyfun_bg-576.svg);
  }
}
@media (min-width: 768px) {
  .whyfun_video__bg {
    background-image: url(assets/whyfun_bg-768.svg);
  }
}
@media (min-width: 1024px) {
  .whyfun_video__bg {
    background-image: url(assets/whyfun_bg-1024.svg);
  }
}
@media (min-width: 1200px) {
  .whyfun_video__bg {
    top: -140px;
    left: -300px;
    width: 696px;
    height: 1115px;
    background-image: url(assets/whyfun_bg-1920.svg);
  }
  [lang|=es] .whyfun_video__bg, [lang=pt-BR] .whyfun_video__bg, [lang|=en] .whyfun_video__bg, [lang=sr-latn] .whyfun_video__bg {
    top: 75px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(assets/whyfun_bg-1024.svg);
  }
}
@media (min-width: 1400px) {
  [lang|=es] .whyfun_video__bg, [lang=pt-BR] .whyfun_video__bg, [lang|=en] .whyfun_video__bg, [lang=sr-latn] .whyfun_video__bg {
    top: -140px;
    left: -300px;
    width: 696px;
    height: 1115px;
    background-image: url(assets/whyfun_bg-1920.svg);
  }
}
.whyfun_video__wrapper {
  position: relative;
  padding-top: 30px;
}
@media (min-width: 1200px) {
  .whyfun_video__wrapper {
    margin-top: 60px;
    margin-left: 80px;
  }
  [lang|=es] .whyfun_video__wrapper, [lang|=en] .whyfun_video__wrapper, [lang=sr-latn] .whyfun_video__wrapper {
    margin-top: 0;
    margin-left: 0;
  }
}
@media (min-width: 1400px) {
  [lang|=es] .whyfun_video__wrapper, [lang|=en] .whyfun_video__wrapper, [lang=sr-latn] .whyfun_video__wrapper {
    margin-top: 30px;
    margin-left: 80px;
  }
}
@media (min-width: 1440px) {
  .whyfun_video__wrapper {
    margin-left: 0;
  }
}
@media (min-width: 1536px) {
  .whyfun_video__wrapper {
    margin-left: 80px;
  }
}
@media (min-width: 1920px) {
  .whyfun_video__wrapper {
    margin-top: 0;
    margin-left: 0;
    padding-top: 60px;
    padding-left: 170px;
  }
  [lang|=es] .whyfun_video__wrapper, [lang|=en] .whyfun_video__wrapper, [lang=sr-latn] .whyfun_video__wrapper {
    margin-top: 0;
    margin-left: 0;
    padding-top: 60px;
    padding-left: 170px;
  }
}
.whyfun_video__phone {
  width: 211px;
  height: 426px;
  transform: rotate(-6.5deg);
}
@media (min-width: 414px) {
  .whyfun_video__phone {
    width: 246px;
    height: 497px;
  }
}
@media (min-width: 576px) {
  .whyfun_video__phone {
    width: 296px;
    height: 596px;
  }
}
@media (min-width: 1920px) {
  .whyfun_video__phone {
    width: 347px;
    height: 702px;
  }
}
.whyfun_video__phone img {
  width: 100%;
  height: auto;
}
.whyfun_video .animation-wrapper,
.whyfun_video .video-thumbnail {
  position: absolute;
  top: 40px;
  left: 12px;
  width: 186px;
  height: 404px;
  border-radius: 25px;
  z-index: 1;
  transform: rotate(-6.5deg);
  overflow: hidden;
}
@media (min-width: 414px) {
  .whyfun_video .animation-wrapper,
  .whyfun_video .video-thumbnail {
    top: 43px;
    left: 15px;
    width: 216px;
    height: 470px;
    border-radius: 27px;
  }
}
@media (min-width: 576px) {
  .whyfun_video .animation-wrapper,
  .whyfun_video .video-thumbnail {
    top: 45px;
    left: 18px;
    width: 260px;
    height: 567px;
    border-radius: 35px;
  }
}
@media (min-width: 1920px) {
  .whyfun_video .animation-wrapper,
  .whyfun_video .video-thumbnail {
    top: 78px;
    left: 190px;
    width: 306px;
    height: 664px;
    border-radius: 39px;
  }
}
.whyfun_video .animation-wrapper .animation,
.whyfun_video .video-thumbnail .animation {
  max-width: none;
  width: 100%;
  height: 100%;
}
.whyfun_video .video-thumbnail {
  opacity: 0;
  transition: opacity 1.5s ease;
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .whyfun_video .video-thumbnail {
    animation: none;
    transition: none;
    opacity: 1;
  }
}
@media (min-width: 1200px) {
  .whyfun_main {
    display: flex;
    justify-content: space-between;
  }
  [lang|=es] .whyfun_main, [lang=pt-BR] .whyfun_main, [lang|=en] .whyfun_main, [lang=sr-latn] .whyfun_main {
    display: block;
  }
}
@media (min-width: 1400px) {
  [lang|=es] .whyfun_main, [lang=pt-BR] .whyfun_main, [lang|=en] .whyfun_main, [lang=sr-latn] .whyfun_main {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1536px) {
  .whyfun_main {
    padding: 0 60px;
  }
}
@media (min-width: 1920px) {
  .whyfun_main {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .whyfun_items {
    max-width: 630px;
  }
  [lang|=es] .whyfun_items, [lang=pt-BR] .whyfun_items, [lang|=en] .whyfun_items, [lang=sr-latn] .whyfun_items {
    max-width: fit-content;
  }
}
@media (min-width: 1400px) {
  [lang|=es] .whyfun_items, [lang=pt-BR] .whyfun_items {
    max-width: 670px;
  }
  [lang|=en] .whyfun_items, [lang=sr-latn] .whyfun_items {
    max-width: 720px;
  }
}
@media (min-width: 1440px) {
  .whyfun_items {
    max-width: 725px;
  }
}
.whyfun_title, .whyfun_item {
  margin-bottom: 24px;
}
@media (min-width: 576px) {
  .whyfun_title, .whyfun_item {
    margin-bottom: 32px;
  }
}
@media (min-width: 1920px) {
  .whyfun_title, .whyfun_item {
    margin-bottom: 30px;
  }
}
.whyfun_item h2 {
  margin-bottom: 5px;
}
[lang=bg-BG] .whyfun_title {
  letter-spacing: -1px;
}
[lang=ro-RO] .whyfun_title, [lang=pt-BR] .whyfun_title {
  font-weight: 400;
  line-height: 100%;
}
[lang=el-GR] .whyfun_title {
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -1px;
  font-size: 28px;
}
[lang|=es] .whyfun_title {
  letter-spacing: -1px;
  line-height: 100%;
  font-weight: 400;
}
[lang|=en] .whyfun_title {
  font-weight: 400;
  line-height: normal;
}
@media (min-width: 576px) {
  [lang=el-GR] .whyfun_title, [lang|=es] .whyfun_title, [lang|=en] .whyfun_title, [lang=sr-latn] .whyfun_title {
    font-size: 40px;
  }
}
@media (min-width: 962px) {
  [lang|=es] .whyfun_title {
    font-size: 48px;
  }
}
@media (min-width: 1200px) {
  [lang=ro-RO] .whyfun_title {
    letter-spacing: -1px;
    font-size: 48px;
  }
}
@media (min-width: 1400px) {
  [lang=el-GR] .whyfun_title, [lang=pt-BR] .whyfun_title, [lang|=en] .whyfun_title, [lang=sr-latn] .whyfun_title {
    font-size: 48px;
  }
}
[lang=bg-BG] .whyfun_item-title {
  font-weight: 700;
}
[lang=ro-RO] .whyfun_item-title, [lang|=es] .whyfun_item-title, [lang=pt-BR] .whyfun_item-title, [lang|=en] .whyfun_item-title, [lang=sr-latn] .whyfun_item-title {
  font-weight: 400;
}
@media (min-width: 360px) {
  [lang=bg-BG] .whyfun_item-title, [lang=el-GR] .whyfun_item-title {
    font-size: 22px;
  }
  [lang|=en] .whyfun_item-title, [lang=sr-latn] .whyfun_item-title {
    font-size: 24px;
  }
}
@media (min-width: 576px) {
  [lang=bg-BG] .whyfun_item-title, [lang=el-GR] .whyfun_item-title {
    font-size: 24px;
  }
}
[lang=bg-BG] .whyfun_item-text {
  line-height: 130%;
}
[lang|=es] .whyfun_item-text {
  line-height: 140%;
}
@media (min-width: 360px) {
  [lang=bg-BG] .whyfun_action {
    letter-spacing: -1px;
  }
}
@media (min-width: 768px) {
  [lang=bg-BG] .whyfun_action {
    padding-left: 22px;
    padding-right: 22px;
  }
}
@media (min-width: 360px) {
  [lang|=es] .whyfun_action .container .info_block {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 414px) {
  [lang|=es] .whyfun_action .container .info_block {
    width: 70%;
  }
  [lang|=en] .whyfun_action .container .info_block {
    width: 100%;
  }
}
@media (min-width: 576px) {
  [lang|=es] .whyfun_action .container .info_block {
    width: 80%;
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  [lang|=es] .whyfun_action .container .info_block {
    font-size: 30px;
  }
}
.whyfun-btn {
  padding: 14px 16px;
  width: 250px;
}
@media (min-width: 360px) {
  .whyfun-btn {
    width: 300px;
    padding: 24px 16px;
    height: 66px;
  }
  [lang|=en] .whyfun-btn {
    height: 80px;
    width: 100%;
  }
  [lang=it-IT] .whyfun-btn {
    width: 100%;
  }
  [lang=sr-latn] .whyfun-btn {
    width: 100%;
  }
  [lang=sr-latn] .whyfun-btn .landing-btn_img {
    margin-top: 2px;
  }
}
@media (min-width: 414px) {
  .whyfun-btn {
    width: 325px;
  }
  [lang=it-IT] .whyfun-btn {
    width: 312px;
  }
}
@media (min-width: 576px) {
  .whyfun-btn {
    width: 300px;
  }
  [lang=bg-BG] .whyfun-btn {
    width: 100%;
  }
  [lang=pt-BR] .whyfun-btn {
    width: 340px;
  }
  [lang=it-IT] .whyfun-btn {
    width: 372px;
  }
  [lang|=es] .whyfun-btn .landing-btn_img {
    margin-top: 2px;
  }
}
@media (min-width: 768px) {
  .whyfun-btn {
    width: 390px;
  }
  [lang=bg-BG] .whyfun-btn {
    width: 494px;
  }
  [lang=pt-BR] .whyfun-btn {
    height: 72px;
    width: 437px;
  }
  [lang|=en] .whyfun-btn {
    width: 390px;
  }
  [lang=it-IT] .whyfun-btn {
    height: 72px;
    width: 415px;
  }
  [lang=ro-RO] .whyfun-btn {
    height: 72px;
    width: 367px;
  }
  [lang|=es] .whyfun-btn {
    height: 72px;
    width: 367px;
  }
  [lang=sr-latn] .whyfun-btn {
    height: 72px;
    width: 390px;
  }
}
@media (min-width: 962px) {
  [lang=pt-BR] .whyfun-btn, [lang=it-IT] .whyfun-btn {
    height: 82px;
    width: 527px;
  }
  [lang|=es] .whyfun-btn .landing-btn_img {
    margin-top: 4px;
  }
  [lang=bg-BG] .whyfun-btn .landing-btn_img {
    margin-top: 0;
  }
}
@media (min-width: 1400px) {
  .whyfun-btn {
    width: 519px;
  }
  [lang=bg-BG] .whyfun-btn, [lang|=es] .whyfun-btn, [lang=pt-BR] .whyfun-btn, [lang=it-IT] .whyfun-btn, [lang=ro-Ro] .whyfun-btn {
    height: 88px;
    width: 678px;
  }
  [lang|=en] .whyfun-btn, [lang=sr-latn] .whyfun-btn {
    height: 84px;
    width: 519px;
  }
}
.whyfun-btn_text {
  line-height: normal;
}
@media (min-width: 360px) {
  [lang=bg-BG] .whyfun-btn_text {
    font-size: 22px;
    letter-spacing: -1px;
  }
  [lang=el-GR] .whyfun-btn_text {
    font-size: 28px;
  }
  [lang|=es] .whyfun-btn_text, [lang=pt-BR] .whyfun-btn_text, [lang=it-IT] .whyfun-btn_text {
    font-size: 18px;
    letter-spacing: 1px;
  }
  [lang=ro-RO] .whyfun-btn_text {
    font-size: 22px;
    letter-spacing: 1px;
  }
  [lang|=en] .whyfun-btn_text {
    font-size: 30px;
    letter-spacing: 1px;
  }
  [lang=sr-latn] .whyfun-btn_text {
    font-size: 28px;
    letter-spacing: 1px;
  }
}
@media (min-width: 414px) {
  [lang=bg-BG] .whyfun-btn_text {
    font-size: 22px;
  }
  [lang=el-GR] .whyfun-btn_text, [lang=sr-latn] .whyfun-btn_text {
    font-size: 30px;
  }
}
@media (min-width: 576px) {
  [lang=bg-BG] .whyfun-btn_text {
    font-size: 30px;
  }
  [lang|=es] .whyfun-btn_text, [lang=pt-BR] .whyfun-btn_text, [lang=it-IT] .whyfun-btn_text {
    font-size: 20px;
  }
  [lang=ro-RO] .whyfun-btn_text {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  [lang|=es] .whyfun-btn_text, [lang=pt-BR] .whyfun-btn_text, [lang=it-IT] .whyfun-btn_text {
    font-size: 26px;
  }
  [lang=ro-RO] .whyfun-btn_text {
    font-size: 30px;
  }
}
@media (min-width: 962px) {
  [lang=el-GR] .whyfun-btn_text {
    font-size: 40px;
  }
  [lang|=es] .whyfun-btn_text, [lang=pt-BR] .whyfun-btn_text, [lang=it-IT] .whyfun-btn_text {
    font-size: 30px;
  }
}
@media (min-width: 1400px) {
  [lang=bg-BG] .whyfun-btn_text, [lang|=es] .whyfun-btn_text, [lang=pt-BR] .whyfun-btn_text, [lang|=en] .whyfun-btn_text, [lang=it-IT] .whyfun-btn_text, [lang=ro-RO] .whyfun-btn_text, [lang=sr-latn] .whyfun-btn_text {
    font-size: 40px;
  }
}

.info_block {
  font-family: "Paytone One", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
@media (min-width: 576px) {
  [lang=pt-BR] .info_block {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .info_block {
    font-size: 30px;
  }
  [lang=ro-RO] .info_block, [lang=pt-BR] .info_block {
    font-size: 30px;
  }
}
@media (min-width: 1920px) {
  [lang=bg-BG] .info_block {
    font-size: 30px;
  }
}
/*!******************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./Pages/games/web/bacanagol/main.scss ***!
  \******************************************************************************************************************************/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* latin-ext */
@font-face {
  font-family: "Andika";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/andika-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Andika";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/andika-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(fonts/archivo-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(fonts/archivo-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(fonts/archivo-latin-ex-800.woff2) format("woff2");
}
/* latin */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(fonts/archivo-latin-800.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Paytone One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/paytone-one-latin-ex.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Paytone One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/paytone-one-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Playpen Sans regular */
@font-face {
  font-family: "Playpen Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/playpenSans-Regular.woff2) format("woff2");
}
/* Playpen Sans semi-bold */
@font-face {
  font-family: "Playpen Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(fonts/playpenSans-SemiBold.woff2) format("woff2");
}
/* Shantell Sans regular */
@font-face {
  font-family: "Shantell Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/shantellSans-Regular.woff2) format("woff2");
  font-feature-settings: "locl" 0;
  unicode-range: U+0000-00FF, U+0100-024F, U+0400-04FF, U+0500-052F;
}
/* Shantell Sans semi-bold */
@font-face {
  font-family: "Shantell Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(fonts/shantellSans-SemiBold.woff2) format("woff2");
  font-feature-settings: "locl" 0;
  unicode-range: U+0000-00FF, U+0100-024F, U+0400-04FF, U+0500-052F;
}
/* Shantell Sans bold */
@font-face {
  font-family: "Shantell Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/shantellSans-Bold.woff2) format("woff2");
  font-feature-settings: "locl" 0;
  unicode-range: U+0000-00FF, U+0100-024F, U+0400-04FF, U+0500-052F;
}
/* Shantell Sans extra-bold */
@font-face {
  font-family: "Shantell Sans";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(fonts/shantellSans-ExtraBold.woff2) format("woff2");
  font-feature-settings: "locl" 0;
  unicode-range: U+0000-00FF, U+0100-024F, U+0400-04FF, U+0500-052F;
}
/* Ubuntu regular */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/ubuntu-Regular.woff2) format("woff2");
}
/* Ubuntu bold */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/ubuntu-Bold.woff2) format("woff2");
}
/* Chelsea Market regular */
@font-face {
  font-family: "Chelsea Market";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/chelseaMarket-regular.woff2) format("woff2");
}
body {
  font-family: "Andika", sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  color: #043192;
}
@media (min-width: 576px) {
  body {
    font-size: 24px;
  }
}

h1 {
  font-size: 20px;
  line-height: 100%;
}
@media (min-width: 414px) {
  h1 {
    font-size: 24px;
  }
}
@media (min-width: 576px) {
  h1 {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  h1 {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 40px;
  }
}
@media (min-width: 1920px) {
  h1 {
    font-size: 54px;
  }
}

h2 {
  font-size: 30px;
}
@media (min-width: 576px) {
  h2 {
    font-size: 40px;
  }
}
@media (min-width: 1400px) {
  [lang=bg-BG] h2 {
    font-size: 48px;
  }
}
@media (min-width: 1920px) {
  h2 {
    font-size: 48px;
  }
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 24px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Paytone One", sans-serif;
}

html[lang=el-GR] body {
  font-family: "Ubuntu", sans-serif;
}
html[lang=el-GR] h1,
html[lang=el-GR] h2,
html[lang=el-GR] h3,
html[lang=el-GR] h4,
html[lang=el-GR] h5 {
  font-family: "Ubuntu", sans-serif;
}

html[lang=bg-BG] body {
  font-family: "Shantell Sans", sans-serif;
}
html[lang=bg-BG] h1,
html[lang=bg-BG] h2,
html[lang=bg-BG] h3,
html[lang=bg-BG] h4,
html[lang=bg-BG] h5 {
  font-family: "Shantell Sans", sans-serif;
  font-weight: 800;
}

:root {
  --overflow: 'initial';
}

html,
body,
#root {
  width: 100%;
  min-height: 100%;
  overflow: var(--overflow);
}

html,
body {
  -webkit-font-smoothing: antialiased;
  /* For WebKit browsers */
  -moz-osx-font-smoothing: grayscale;
  /* For Firefox on MacOS */
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
}
body::-webkit-scrollbar {
  width: 10px;
  background-color: #ffffff;
}
body::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: rgba(128, 180, 255, 0.2901960784);
}

img {
  width: 100%;
  height: auto;
}

.wrapper {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1366px) {
  .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.container {
  max-width: none;
}
@media (min-width: 1366px) {
  .container {
    max-width: 1240px;
    margin: 0 auto;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1460px;
    margin: 0 auto;
  }
}

.action {
  text-align: center;
  margin-bottom: 42px;
}
@media (min-width: 768px) {
  .action {
    margin-bottom: 60px;
  }
}
@media (min-width: 1920px) {
  .action {
    margin-bottom: 96px;
  }
}
.action_title {
  padding: 8px 0 24px;
}
@media (min-width: 414px) {
  .action_title {
    padding: 18px 0 30px;
  }
}
@media (min-width: 576px) {
  .action_title {
    padding: 28px 0 30px;
  }
}
@media (min-width: 768px) {
  .action_title {
    padding: 48px 0 32px;
  }
}
@media (min-width: 1024px) {
  .action_title {
    max-width: 705px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 1920px) {
  .action_title {
    max-width: none;
    padding: 64px 0 50px;
  }
}
.action button {
  margin: 0 auto;
}

video {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/*# sourceMappingURL=main.91c8d1f4ea5c01de0393.css.map*/