@import "styles/normalize.css";
@import "styles/header_first_fan.css";
@import "styles/footer_first_fan.css";
@import "styles/s_advice_first_fan.css";

@import "styles/s_preview_first_fan.css";
@import "styles/s_about_first_fan.css";
@import "styles/modal_form_first_fan.css";
@import "styles/s_start_first_fan.css";
@import "styles/s_faq_first_fan.css";
@import "styles/s_new_ord_first_fan.css";
@import "styles/s_line_info_rmy_premier.css ";
@import "styles/s_client_say_first_fan.css";
@import "styles/s_card_info_first_fan.css";
@import "styles/s_wrapper_first_fan.css";
@import "styles/s_run_txt_first_fan.css";
@import "styles/anime.css";
:root {
  --body: white;
  --one: #f7ec1e;
  --two: rgb(14, 246, 230);
  --text-color: #656871;
  --shadow: 2px 11px 9px 6px rgba(15, 31, 43, 0.2);
  --text-shadow: 1px 1px white, 2px 2px #090808;
  --text-shadow-dark: 2px 2px 2px var(--one);
}

@font-face {
  font-family: "DMSans";
  src: url("base/fonts/DMSans-Medium.ttf");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "DMSans";
  src: url("base/fonts/DMSans-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "DMSans";
  src: url("base/fonts/DMSans-Bold.ttf");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "DMSans";
  src: url("base/fonts/DMSans-SemiBold.ttf");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "BOR";
  src: url("base/fonts/Borensa.ttf");
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
  font-family: "DMSans";
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  transition: all ease 0.4s;
}

html {
  font-size: 1rem;
  font-family: "DMSans";
}

@media (min-width: 2601px) {
  html {
    font-size: 14px;
  }
}

@media (min-width: 2201px) and (max-width: 2600px) {
  html {
    font-size: 14px;
  }
}

@media (min-width: 1901px) and (max-width: 2200px) {
  html {
    font-size: 13px;
  }
}

@media (min-width: 1500px) and (max-width: 1900px) {
  html {
    font-size: 12px;
  }
}

@media (min-width: 1500px) and (max-width: 1300px) {
  html {
    font-size: 11px;
  }
}

@media (max-width: 1299px) {
  html {
    font-size: 11px;
  }
}

*::-webkit-scrollbar,
html *::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}

*::-webkit-scrollbar-track,
html *::-webkit-scrollbar-track {
  background: white;
}

*::-webkit-scrollbar-thumb,
html *::-webkit-scrollbar-thumb {
  background-color: gray;
  border-radius: 1.5rem;
  border: 3px solid gray;
}

body {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: var(--body);
  color: var(--text-color);
}

.main {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: calc(100vh - 160px);
  overflow: hidden;
  flex: 1 1 auto;
  background: -webkit-linear-gradient(90deg, #1d2425, #1d2425);
  background: linear-gradient(90deg, #1d2025, #1d2425);
}

.main_black {
  background: -webkit-linear-gradient(
    90deg,
    #f6f9d4,
    #8ef5f3
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    90deg,
    #f6f9d4,
    #8ef5f3
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.wrap_first_fan {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.wrapper2_first_fan {
  width: 90%;

  margin: 0 auto;
  position: relative;
}

@media (max-width: 1000px) {
  .wrap_first_fan {
    width: 95%;
  }

  .wrapper2_first_fan {
    width: 95%;
  }
}

button,
a {
  cursor: pointer;
}

.full_heit {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/************************       MODAL       ***************/
.overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  transition: 0.3s all;
}

#overlay_hamburger {
  z-index: 8;
}

#overlay_modal {
  z-index: 60;
}

.modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 70;
  transition: 0.3s all;
}

.modal_close_first_fan {
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 11px;
  right: 11px;
  fill: white;
  cursor: pointer;
}

@media (max-width: 450px) {
  .modal_close_first_fan {
    right: 20px;
    top: 31px;
  }
}

.modal_close_first_fan:hover {
  color: var(--two);
}

.modal.active_modal,
.overlay.active_modal {
  opacity: 1;
  visibility: visible;
}

/******************************  navigate ******************************/
.box_navigate_page_first_fan {
  display: flex;
  gap: 10px;
  margin: 120px 0 5rem;
}

.link_page_first_fan {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgb(148, 144, 144);
}

.box_navigate_page_first_fan span {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgb(14, 0, 0);
}

/******************************  GENERAL TITLE PAGE ******************************/
.policy_pages_first_fan p {
  font-size: 1.4rem;
  line-height: 2.2rem;
  font-weight: 400;
  color: rgb(15, 14, 14);
  margin-bottom: 1rem;
}

.policy_pages_first_fan p span {
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: 700;
  color: rgb(161, 18, 18);
  margin-bottom: 1rem;
}

.policy_pages_first_fan p a {
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: 400;
  color: rgb(123, 22, 96);
  text-decoration: none;
  margin-bottom: 1rem;
}

.policy_pages_first_fan h1 {
  font-size: 2.8rem;
  line-height: 3.5rem;
  font-weight: 700;
  color: rgb(9, 12, 89);
  margin-bottom: 2rem;
}

.policy_pages_first_fan h6 {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: rgb(26, 31, 90);
  font-weight: 700;
  margin: 2rem 0;
}

.btn_back {
  margin: 3rem auto;
  color: white;
  text-shadow: none;
}

.container_page_first_fan {
  padding-bottom: 9rem;
  color: rgb(23, 22, 22);
  display: flex;
  flex-direction: column;
}

.s_title_first_fan {
  color: var(--one);
  font-size: 2.4rem;
  text-align: center;
  line-height: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "BOR";
}

.s_title_first_fan span {
  color: var(--two);
  font-family: "BOR";
}
.s_txt_first_fan {
  color: var(--one);
  font-size: 1.6rem;
  text-align: center;
  line-height: 3rem;
  text-transform: uppercase;
}
.s_txt_first_fan span {
  color: var(--two);
}
.s_title_first_fan.color_two span {
  color: var(--two);
}

@media (max-width: 768px) {
  .s_title_first_fan {
    font-size: 2.2rem;
    line-height: 2.7rem;
    text-align: center;
  }

  .container_page_first_fan {
    padding: 10px 0 0;
  }
}

h1 {
  font-size: 3rem;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}

h1 span {
  color: var(--two);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section {
  padding: 4.5rem 0 2rem;
}

@media (max-width: 1000px) {
  .section {
    padding: 6.5rem 0 2rem;
  }
}

.p18_year {
  padding: 7px;
  border-radius: 50%;
  border: 2px solid white;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/*+***********/

.color_two {
  color: var(--two);
}

.color_w {
  color: rgb(255, 255, 255);
}

.color_b {
  color: rgb(26, 25, 25);
}

.color_yellow {
  color: rgb(212, 241, 138);
}

.color_gr span {
  color: greenyellow;
}

.scroll_top {
  scroll-margin-top: 70px;
}

.text_center {
  text-align: center;
}

/*********/
.back {
  background: -webkit-linear-gradient(
    90deg,
    #000000,
    #280000,
    #b30012
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    90deg,
    #000000,
    #280000,
    #b30012
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: rgb(8, 8, 8);
  padding: 10px 15px;
  margin: 20px 0;
  border-radius: 10px;
}

.star {
  transform-style: preserve-3d;
  width: 1px;
  height: 1px;
  position: absolute;
  color: red;
  pointer-events: none;
  z-index: 1000;
}
.star:before {
  position: absolute;
  content: "\2726";
  color: inherit;
  inset: 0;
  text-shadow: 0 0 1em #fff5;
}
#my-element {
  offset-path: path("M0,0 C40,160 60,160 100,0");
  animation: go 4000ms infinite ease-in-out;
}
@keyframes go {
  100% {
    offset-distance: 100%;
  }
}

/********************************/

img {
  max-width: 100%;
}

@font-face {
  font-family: "Montserrat";
  src: local("Montserrat"), url("Montserrat-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;

  background: url(img/appDownloadBgFomo.webp) center top / cover no-repeat;
  color: white;
}

.section-title {
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  text-decoration: none;
  line-height: 130%;
  font-family: "Montserrat", sans-serif;
}
.pages_descr_first_fan {
  font-size: 1.4rem;
  text-align: center;
  color: white;
  margin: 20px auto;
  line-height: 150%;
  text-align: left;
}
/* glob */

.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex {
  display: flex;
}

.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.section-offset {
  padding: 10px 0 20px;
}

.login-btn {
  background-color: #ff7300;
  border: none;
  color: white;
  padding: 10px 20px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 5px;
}

.first {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  padding-top: 15rem;
}

.first-text h1 {
  font-size: 3rem;
  color: white;
}

.highlight {
  color: rgb(14, 246, 230);
}

.first-image {
  display: flex;
  justify-content: center;
}

.first-description {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  color: white;
}

.first-description h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.first-description p {
  margin-bottom: 20px;
  font-size: 1.3rem;
  line-height: 1.5;
}

.download-btn {
  background-color: #f2e311;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
}

.download-btn:hover {
  background-color: #ffb600;
}
.list_descr {
  font-size: 1.6rem;
  color: white;
  line-height: 150%;
}
.first-container {
  display: grid;
  grid-template-columns: repeat(3, calc((100% - 40px) / 3));
  gap: 20px;
  place-items: center;
}

.pages-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.barcod {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, calc((100% - 30px) / 2));
  gap: 30px;
  max-width: 70%;
  padding: 30px;
  border: 2px solid rgb(83, 193, 255);
  align-items: center;
}

.barcod-right img {
  max-width: 220px;
}

.barcod-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.key-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.key-container img {
  max-width: 30%;
  margin-left: 30px;
}

.list-list {
  display: grid;
  grid-template-columns: repeat(3, calc((100% - 40px) / 3));
  gap: 20px;
}

.list_item_first_fan {
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 3rem;
  border-width: 2px;
  border-style: solid;
  border-color: rgb(83, 193, 255);
  border-radius: 15px;
  position: relative;
}

.svg-div {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    92deg,
    rgb(255, 131, 81) -0.01%,
    rgb(255, 95, 31) 48.02%,
    rgb(186, 53, 0) 100.14%
  );
  border-radius: 40px;
  position: absolute;
  top: -30px;
  left: 4rem;
  border: 3px solid;
}

.num {
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: 30px;
  position: absolute;
  top: -1rem;
  right: 2rem;
}

.why-name {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;

  line-height: normal;
  background: linear-gradient(
      158deg,
      rgb(254, 213, 70) 26.5%,
      rgb(254, 124, 35) 102.11%
    )
    text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.why-top {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(3, calc((100% - 40px) / 3));
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 70px;
}

.why-item {
  display: flex;
  flex-direction: column;

  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  height: auto;
  position: relative;
  color: white;
  border-radius: 20px;
  padding: 1.5rem;
  background: radial-gradient(
      71.58% 74.35% at 50.18% -11.77%,
      rgb(17, 35, 51) 0%,
      rgb(1, 4, 6) 100%
    )
    padding-box;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  border-image: initial;
}

.why-item::after {
  position: absolute;
  inset: -1px -1px 0px;
  background: linear-gradient(rgb(102, 102, 102), transparent);
  content: "";
  z-index: -1;
  border-radius: 20px;
}

.why-img {
  position: absolute;
  width: 5rem;
  top: -1rem;
  right: 0px;
}

.how {
  width: 100%;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background: radial-gradient(
    37.24% 47.13% at 50% 0%,
    rgb(5, 24, 41) 0%,
    rgba(1, 4, 6, 0) 100%
  );
  backdrop-filter: blur(6.85px);
  padding: 3rem;
  margin: 0px;
}

.how-item {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 2rem;
  border-radius: 20px;
  border: 1px solid rgb(193, 218, 255);
  background: radial-gradient(
    circle at left center,
    rgb(17, 35, 51) 0%,
    rgb(1, 4, 6) 25%
  );
  padding: 2rem;
}

.how-list {
  display: flex;
  gap: 3rem;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin-top: 30px;
}

.how-num {
  font-size: 45px;
  font-weight: 700;
  font-style: italic;
  line-height: normal;
  background: linear-gradient(
      158deg,
      rgb(254, 213, 70) 26.5%,
      rgb(254, 124, 35) 102.11%
    )
    text;
  -webkit-text-fill-color: transparent;
  padding: 0% 0.5rem;
}

.menu-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
}

.menu-item {
  width: 80%;
  display: flex;
  align-items: flex-end;
  -webkit-box-pack: center;
  justify-content: center;
  flex-direction: row;
  margin-bottom: 40px;
}

.menu-img {
  width: 200px;
  margin: 20px;
  position: relative;
  z-index: 1;
}

.menu-name {
  gap: 10px;
  color: rgb(255, 255, 255);
  font-size: 26px;
}

.menu-right {
  width: calc(100% - 274px);
  display: flex;
  background: linear-gradient(
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.004) 100%
  );
  mix-blend-mode: normal;
  backdrop-filter: blur(40.3956px);
  border-radius: 12.4294px;
  padding: 4rem 3rem;
  border: 2px solid rgb(83, 193, 255);
  position: relative;
}

.menu-right-img {
  width: 80px;
  display: flex;
  position: absolute;
  right: 20px;
  top: 20px;
}

.deposit-list {
  display: grid;
  gap: 3rem;
  -webkit-box-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  justify-content: center;
  padding-top: 3rem;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  @media (max-width: 950px) {
    grid-template-columns: 1fr;
  }
}

.deposit-item {
  display: flex;
  align-items: flex-start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1.3rem;
  border-radius: 20px;
  border: 1px solid rgb(193, 218, 255);
  background: radial-gradient(
    circle at left center,
    rgb(17, 35, 51) 0%,
    rgb(1, 4, 6) 25%
  );
  padding: 2rem;
  width: 100%;
}

.bonus-name {
  background: linear-gradient(
      158deg,
      rgb(254, 213, 70) 26.5%,
      rgb(254, 124, 35) 102.11%
    )
    text;
  -webkit-text-fill-color: transparent;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-align: left;
  padding-top: 20px;
}

.bonus-list {
  display: grid;
  grid-template-columns: repeat(3, calc((100% - 40px) / 3));
  gap: 20px;
  padding-top: 5rem;
}

.bonus-item-top {
  width: 100%;
}

.bonus {
  width: 100%;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background: radial-gradient(
    37.24% 47.13% at 50% 0%,
    rgb(5, 24, 41) 0%,
    rgba(1, 4, 6, 0) 100%
  );
  backdrop-filter: blur(6.85px);
  padding: 3rem;
  margin: 0px;
}

.bonus-item {
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  height: auto;
  position: relative;
  color: white;
  border-radius: 20px;
  padding: 1.5rem;
  background: radial-gradient(
      71.58% 74.35% at 50.18% -11.77%,
      rgb(17, 35, 51) 0%,
      rgb(1, 4, 6) 100%
    )
    padding-box;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  border-image: initial;
}

.bonus-item::after {
  position: absolute;
  inset: -1px -1px 0px;
  background: linear-gradient(rgb(102, 102, 102), transparent);
  content: "";
  z-index: -1;
  border-radius: 20px;
}

.bonus-img {
  position: absolute;
  width: 7rem;
  top: -3rem;
  right: 0px;
}
.how-description {
  font-size: 1.2rem;
  line-height: 150%;
}
.casino-list {
  display: grid;
  grid-template-columns: repeat(4, calc((100% - 60px) / 4));
  gap: 20px;
  padding-top: 5rem;
}

.casino-img {
  position: absolute;
  width: 6rem;
  top: -3rem;
  right: -1.5rem;
}

.casino-item {
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  height: auto;
  position: relative;
  color: white;
  border-radius: 20px;
  padding: 1.5rem;
  background: radial-gradient(
      71.58% 74.35% at 50.18% -11.77%,
      rgb(17, 35, 51) 0%,
      rgb(1, 4, 6) 100%
    )
    padding-box;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  border-image: initial;
}

.casino-item::after {
  position: absolute;
  inset: -1px -1px 0px;
  background: linear-gradient(rgb(102, 102, 102), transparent);
  content: "";
  z-index: -1;
  border-radius: 20px;
}

.casino {
  width: 100%;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background: radial-gradient(
    37.24% 47.13% at 50% 0%,
    rgb(5, 24, 41) 0%,
    rgba(1, 4, 6, 0) 100%
  );
  backdrop-filter: blur(6.85px);
  padding: 3rem;
  margin: 0px;
}

.beeting {
  width: 100%;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background: radial-gradient(
    37.24% 47.13% at 50% 0%,
    rgb(5, 24, 41) 0%,
    rgba(1, 4, 6, 0) 100%
  );
  backdrop-filter: blur(6.85px);
  padding: 3rem;
  margin: 0px;
}

.barcod-left {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

.menu-text {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

.download:hover {
  background-color: #f4fc17 !important;
  cursor: pointer;
}

@media (max-width: 1124px) {
  .first-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1024px) {
  .luxuryHighlights-container {
    display: flex;
    flex-direction: column;
  }

  .about-us-content,
  .about-us-image img {
    max-width: 100%;
  }

  .about-text,
  .about-image {
    max-width: 100%;
  }

  .trends-carousel {
    display: grid;
    grid-template-columns: repeat(2, calc((100% - 20px) / 2));
    gap: 20px;
  }

  .how-item {
    display: flex;
    flex-direction: column;
  }

  .casino-list {
    display: grid;
    grid-template-columns: repeat(2, calc((100% - 20px) / 2));
  }

  .list-list {
    display: grid;
    grid-template-columns: repeat(2, calc((100% - 20px) / 2));
  }
}

.craftsmanship-img {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .key-container img {
    max-width: 200px;
    margin-left: 0;
  }
  .nav__item a {
    color: white;
  }
  .gallery-container,
  .list-list,
  .casino-list,
  .menu-item,
  .deposit-list,
  .bonus-list,
  .how-list,
  .key-container,
  .why-list,
  .art-content,
  .aviator-vision-features,
  .story-details,
  .elegant-image-container,
  .luxurious-image-gallery,
  .trends-carousel,
  .story-item.left,
  .ambiance-container,
  .process-timeline,
  .philosophy-item:nth-child(odd),
  .philosophy-item:nth-child(even),
  .signature-dish-container {
    display: flex;
    flex-direction: column;
  }
  .revers {
    flex-direction: column-reverse;
  }
  .menu-item {
    width: 100%;
    align-items: center;
  }

  .menu-img {
    margin-bottom: 0 !important;
    width: 100%;
    max-width: 250px;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .menu-right {
    width: 100%;
    margin-top: 20px;
  }

  .commitment-title {
    font-size: 2em;
  }

  .about-us-images,
  .grocery-feature-img-box {
    width: 100%;
  }

  .trends-carousel {
    flex-wrap: wrap;
  }

  .chairs-container {
    flex-direction: column;
  }

  .philosophy-container,
  .vibrant-images,
  .dreams-container,
  .inspiration-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .chair-card,
  .luxury-image {
    max-width: 100%;
  }

  .nba-moments-text {
    width: 100%;
  }

  .header-top {
    justify-content: space-between;
  }
  .dark-item {
    flex: none;
  }

  .journey-image img {
    object-fit: cover !important;
    width: 100% !important;
  }

  .timeline-icon {
    position: relative;
  }

  .timeline-item:nth-child(odd),
  .legacy-content {
    display: flex;
    flex-direction: column;
  }

  .first-title {
    max-width: 100%;
    font-size: 39px;
  }

  .first-descr {
    max-width: 100%;
  }

  .first-text {
    width: 100%;
  }

  .form-container {
    display: grid;
    grid-template-columns: repeat(1, 100%);
    gap: 50px;
  }

  .why-us-content h2 {
    font-size: 2em;
  }

  .containers,
  .barcod,
  .container-garden,
  .lux-content.reverse-layout,
  .produce-images,
  .luxury-containere {
    display: flex;
    flex-direction: column;
  }

  .barcod {
    max-width: 100%;
  }
}

.visionary-img {
  margin-top: 20px;
}

@media (max-width: 425px) {
  .first-container {
    max-width: 100%;
  }

  .how,
  .bonus,
  .casino {
    padding: 20px;
  }
  .first {
    padding: 150px 20px 50px;
  }
  .experience-container {
    display: block;
  }

  .experience-image,
  .journey-image {
    flex: none;
  }

  .accommodationCard,
  .highlight-text-area {
    min-width: auto;
  }

  .about-us-title {
    font-size: 2em;
  }

  .primary-highlight-img,
  .secondary-highlight-img,
  .experience-main-image {
    max-width: 250px;
  }

  .accommodationsSection-cards {
    flex-wrap: nowrap;
  }

  .about-us-graphic,
  .gallery-content,
  .gallery-grid,
  .manifesto-list,
  .innovation-grid {
    display: flex;
    flex-direction: column;
  }

  .collections-heading {
    font-size: 2.5em;
  }

  .section-title {
    font-size: 22px;
  }

  .cta-button {
    font-size: 1em;
  }

  .footer-links,
  .values-cards {
    display: flex;
    flex-direction: column;
  }

  .luxury-title {
    font-size: 2em;
  }

  .section-wrapper {
    flex-wrap: nowrap;
  }

  .products-name {
    font-size: 57px;
  }

  .small-img {
    width: 100%;
  }

  .innovation-text {
    max-width: 100%;
    padding: 20px;
  }

  .products-descr {
    font-size: 24px;
  }

  .discover-gallery {
    min-width: 100%;
  }

  .first-content h2,
  .innovation-heading {
    font-size: 2em;
  }

  .why-us-item,
  .artistic-experience {
    display: flex;
    flex-direction: column;
  }

  .first-button {
    font-size: 12px;
  }

  .artistic-heading {
    font-size: 1.5em;
  }

  .about-image-container {
    min-width: 100%;
  }

  .info-title,
  .text-content h2 {
    font-size: 1.5em;
  }

  .stories-container,
  .why-us-content {
    flex-wrap: nowrap;
  }

  .premium-content,
  .about-content {
    padding: 20px;
  }

  .craft-grid,
  .about-facts {
    display: flex;
    flex-direction: column;
  }

  .luxury-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
  }

  .about-container {
    align-items: unset;
  }

  .craft-content h2 {
    font-size: 1.8em;
  }

  .item-icon svg {
    width: 40px;
  }

  .first-content h1,
  .visionary-title,
  .highlight-header h2,
  .angled-header h2 {
    font-size: 2em;
  }
  .first-content {
    padding: 10px;
  }

  .learn-more-btn,
  .first-btn,
  .explore-btn {
    font-size: 12px;
  }

  .animated-button-wrapper,
  .button-wrapper {
    flex-direction: column;
  }

  .experience-button,
  .cupcake-first-btn,
  .celebration-button {
    font-size: 12px;
  }

  .luxury-heading,
  .about-content h2 {
    font-size: 18px;
  }

  .form-container {
    border-bottom: 1px solid gray;
  }
}

.eapps-widget-toolbar-panel-share,
.eapps-widget-toolbar {
  display: none !important;
}
