/* 
  * CSS PREFIX IS ALSO APPLIED
  *
  * TO SEARCH THE SECTION CTRL + F THEN
  * TYPE THESE KEYWORDS
  ** BANNER: BS01, BS-UI-01
  ** MC TILE: MCS-02
  ** WB: WB-03
  ** MS: MS-04
  ** ME: ME-05
*/

@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

/* CSS Document */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --highlight-subheader: #bab190;
  --highlight-header: #be9d5d;
  --primary-text: #ffffff;
  --section-bg: #131313;
  --primary-coating: #000000;
  --primary-hover: #d0bf9f;
  --bg-color-description: #2a2a2a;
  --primary-font: "Lato", sans-serif;
}

body {
  font-family: var(--primary-font);
  overflow-x: hidden;
}

a,
button {
  text-decoration: none;
  color: var(--primary-text);
  white-space: nowrap;
}
.BTN__GOLD-MAIN {
  padding: 9px 60px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  background-color: var(--highlight-header);
  color: var(--primary-coating);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

/* HEADER */
header {
  background: var(--bg-color-description);
  padding: 12px 14px;
  position: fixed;
  width: 100%;
  z-index: 8;
}
header .MO__INNER {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 32px;
}
header .MO__INNER .HEADER__LOGO img {
  max-width: 150px;
  width: 100%;
}
header .MO__INNER .HEADER__MENU-DESKTOP ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
header .MO__INNER .HEADER__MENU-DESKTOP ul li {
  list-style: none;
}
/* Default link styles */
header .MO__INNER .HEADER__MENU-DESKTOP ul li a {
  position: relative;
  text-decoration: none;
  color: var(--highlight-subheader);
  padding-bottom: 6px;
}

header .MO__INNER .HEADER__MENU-DESKTOP ul li a.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border: 1px solid var(--highlight-header);
}

header .MO__INNER .HEADER__MENU-DESKTOP ul li a.active {
  font-weight: 700;
  color: var(--highlight-header);
}

/* END OF HEADER */

/* BANNER SECTION BS01 */
.BAN_CONTENT {
  position: relative;
  padding-top: 50px;
}
.BAN_SWIPER {
  background-color: var(--section-bg);
}
.BOX_SLIDE {
  position: relative;
  background-size: contain;
  height: 100%;
  padding-bottom: 40%;
}
.BOX_SLIDE_CONTENT {
  position: absolute;
  right: 15vw;
  bottom: 25%;
  width: 90%;
  max-width: 558px;
}

.BOX_SLIDE_CONTENT img {
  margin-bottom: 30px;
}

.BG_SECONDARY .BOX_SLIDE_CONTENT img {
  display: block;
  max-width: 280px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.BOX_SLIDE_CONTENT h1,
.BOX_SLIDE_CONTENT h2 {
  color: var(--highlight-subheader);
  text-transform: uppercase;
}
.BOX_SLIDE_CONTENT h1 {
  font-size: 28px;
  line-height: 49px;
  margin-bottom: 20px;
}
.BOX_SLIDE_CONTENT h2 {
  font-size: 24px;
  margin-bottom: 40px;
}
.BOX_SLIDE_CONTENT .BOX_SLIDE_CONTENT-span {
  color: var(--highlight-header);
  font-size: 40px;
  display: block;
}

.BOX_SLIDE_CONTENT p {
  color: var(--primary-text);
  font-size: 18px;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
}

.BOX_SLIDE_CONTENT .BOX_SLIDE_CONTENT-LINKS.LINKS_CENTER {
  text-align: center;
}
.BOX_SLIDE_CONTENT .BOX_SLIDE_CONTENT-LINKS .BTN_BOX {
  margin: 8px;
}
/* BANNER LINKS UI BS-UI-01 */
.BOX_SLIDE_CONTENT-LINKS .BTN_BOX {
  font-weight: 700;
  text-transform: uppercase;
  padding: 9px 59px;
  border-radius: 8px;
  cursor: pointer;
}
.BOX_SLIDE_CONTENT-LINKS .PRIMARY_BTN,
.BOX_SLIDE_CONTENT-LINKS .SECONDARY_BTN {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.BOX_SLIDE_CONTENT-LINKS .PRIMARY_BTN {
  outline: 1px solid var(--primary-text);
}
.BOX_SLIDE_CONTENT-LINKS .SECONDARY_BTN {
  color: var(--primary-coating);
  background-color: var(--highlight-header);
}
/* END OF BANNER SECTION */

/* START OF MC SECTION MCS-02 */
.MC__CONTENT {
  background: url("../images/bg/02-mc-bg-mask.png") no-repeat, var(--section-bg);
  padding-bottom: 5%;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 5%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 5%);
  margin-top: -89px;
  position: relative;
  z-index: 1;
}
.MO__INNER {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.MC__CONTENT-LOGO {
  display: block;
  text-align: center;
}
.MC__CONTENT-LOGO img {
  margin-top: 136px;
  margin-bottom: 48px;
}
.MC__CONTENT-CARDS {
  margin-bottom: 74px;
  position: relative;
}
.MC__CONTENT-CARDS .MCSWIPER {
  width: 100%;
}
.MC__CONTENT-CARDS .MCSWIPER .MCSWIPER-WRAPPER {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.MCCARD__SLIDE .MCCARD__SLIDE-CONTENT {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.MCCARD__SLIDE .MCCARD__SLIDE-CONTENT {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
  overflow: hidden;
}
.MCCARD__SLIDE .MCCARD__SLIDE-CONTENT .CARD__IMG {
  width: 100%;
  height: auto;
}
.MCCARD__SLIDE__CONTENT-THUMB {
  position: absolute;
  width: 80%; /* ADJUST RELEVANT TO THE PARENT (.MCCARD__SLIDE .MCCARD__SLIDE-CONTENT) */
  height: 50%;
  bottom: -20%;
  right: -15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.MCCARD__SLIDE__CONTENT-THUMB .BTN__GOLD__CARD {
  width: 100%;
  max-width: 150px;
  padding: 9px 35px;
  background-color: var(--highlight-header);
  color: var(--primary-coating);
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.MC__CONTENT-ABOUT {
  margin-bottom: 74px;
}
.MC__CONTENT-ABOUT p {
  position: relative;
  width: 100%;
  max-width: 855px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: var(--primary-hover);
  text-align: center;
  margin: 0 auto;
  padding: 0 16px;
}
.MC__CONTENT-ABOUT p:before,
.MC__CONTENT-ABOUT p:after {
  position: absolute;
  width: 76px;
  height: 76px;
}
.MC__CONTENT-ABOUT p:before {
  content: "";
  background: url("../images/icons/02-mc-quote-right.svg") no-repeat;
  -webkit-transform: rotate(3.142rad);
  -ms-transform: rotate(3.142rad);
  transform: rotate(3.142rad);
  left: -70px;
  top: -60px;
}
.MC__CONTENT-ABOUT p:after {
  content: "";
  background: url("../images/icons/02-mc-quote-right.svg") no-repeat;
  right: -70px;
  bottom: -60px;
}
.MCTILES__SLIDE {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 304px;
  border-radius: 8px;
}
.MCTILES__SLIDE .TILE__HOLDER {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.MCTILES__SLIDE:hover .TILE__HOLDER {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
/* Dark overlay */
.MCTILE__SLIDE__CONTENT-OVERLAY {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

/* BTN INSIDE */
.MCTILE__SLIDE__CONTENT-OVERLAY a {
  background: #c4a06a;
  color: black;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px); /* Start slightly lower */
  opacity: 0;
}
.MCTILE__SLIDE__CONTENT-BOTTOM {
  position: relative;
  z-index: 1;
  margin-top: -3px;
  padding: 8px 15px;
  background-color: var(--bg-color-description);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.MCTILE__SLIDE__CONTENT-BOTTOM p {
  font-size: 14px;
  color: var(--primary-text);
  font-weight: 700;
}
/* END OF MC SECTION */

/* START OF WB SECTION WB-03 */
.WB__WRAPPER {
  background-color: var(--section-bg);
  overflow: visible;
  position: relative;
  z-index: 2;
  margin-top: -2px;
}

.WB__WRAPPER::before {
  content: "";
  /* display: block; */
  background: url("../images/bg/03-mo-wb.png") no-repeat;
  -webkit-clip-path: polygon(48% 11%, 100% 17%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(48% 11%, 100% 17%, 100% 100%, 0 100%, 0 0);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.WB__WRAPPER-FLEX {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.WB__FLEX__ITEM-IMG {
  position: relative;
}

.WB__FLEX__ITEM-IMG img:first-child {
  position: relative;
  z-index: 4;
}
.WB__FLEX__ITEM-IMG img:last-child {
  margin-left: -190px;
}

.WB__FLEX__ITEM-TXT p {
  text-transform: uppercase;
  text-align: center;
}
.WB__FLEX__ITEM-TXT p:nth-child(1) {
  font-size: 24px;
  margin-bottom: 8px;
}
.WB__FLEX__ITEM-TXT p:nth-child(2) {
  font-size: 32px;
  margin-bottom: 8px;
}
.WB__FLEX__ITEM-TXT p:nth-child(3) {
  font-size: 24px;
  margin-bottom: 36px;
}
.WB__FLEX__ITEM-TXT p:nth-child(4) {
  font-size: 28px;
  margin-bottom: 14px;
}
.WB__FLEX__ITEM-TXT p:nth-child(5) {
  font-size: 40px;
  margin-bottom: 41px;
}
.WB__FLEX__ITEM-TXT p:nth-child(1),
.WB__FLEX__ITEM-TXT p:nth-child(3),
.WB__FLEX__ITEM-TXT p:nth-child(4) {
  color: var(--primary-hover);
}

.WB__FLEX__ITEM-TXT p:nth-child(2),
.WB__FLEX__ITEM-TXT p:nth-child(5) {
  color: var(--highlight-header);
  font-weight: 700;
}
.WB__FLEX__ITEM-LINKS {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.WB__FLEX__ITEM-LINKS .WB__BTN {
  width: 100%;
  max-width: 200px;
  font-weight: 700;
  text-align: center;
  padding: 9px 0;
  border-radius: 8px;
  color: var(--primary-coating);
  background-color: var(--highlight-header);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 16px;
}
.WB__FLEX__ITEM-LINKS .WB__SPAN {
  font-size: 12px;
  color: var(--highlight-subheader);
  text-decoration: underline;
}

/* END OF WB SECTION WB-03 */

/* START OF WB SECTION MS-04 */
.MO__SECRETS-WRAPPER {
  background: url("../images/bg/04-ms-bg.png") no-repeat, var(--primary-coating);
  background-position: top center;
  -webkit-clip-path: polygon(61% 7%, 100% 0, 100% 100%, 0 100%, 0 11%);
  clip-path: polygon(61% 7%, 100% 0, 100% 100%, 0 100%, 0 11%);
  margin-top: -130px;
  position: relative;
  z-index: 3;
}
.MO__SECRETS-CONTENT {
  width: 100%;
  max-width: 744px;
  padding-top: 205px;
  margin-bottom: 96px;
}
.MO__SECRETS__CONTENT-LOGO {
  text-align: center;
  margin-bottom: 56px;
}
.MO__SECRETS__CONTENT-TXTUP p,
.MO__SECRETS__CONTENT-TXTDOWN p {
  font-size: 16px;
  color: var(--highlight-subheader);
  margin-bottom: 32px;
}
.MO__SECRETS__CONTENT-BLOCKQUOTE {
  font-size: 18px;
  color: var(--highlight-header);
  margin-bottom: 32px;
}
.MO__SECRETS__CONTENT-BLOCKQUOTE blockquote {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.MO__SECRETS__CONTENT-BLOCKQUOTE blockquote:before,
.MO__SECRETS__CONTENT-BLOCKQUOTE blockquote:after {
  display: inline-block;
  width: 76px;
  height: 76px;
  position: absolute;
}
.MO__SECRETS__CONTENT-BLOCKQUOTE blockquote:before {
  content: "";
  background: url("../images/icons/02-mc-quote-right.svg") no-repeat;
  -webkit-transform: rotate(3.142rad);
  -ms-transform: rotate(3.142rad);
  transform: rotate(3.142rad);
  left: -70px;
  top: -40px;
}
.MO__SECRETS__CONTENT-BLOCKQUOTE blockquote:after {
  content: "";
  background: url("../images/icons/02-mc-quote-right.svg") no-repeat;
  right: -70px;
  bottom: -40px;
}

/* GALLERY MS GALLERY*/
.gallery-container {
  max-width: 1340px;
  margin: 0 auto;
}

/* Swiper Styles */
.g__lightbox {
  width: 100%;
  height: 360px;
}

.g__lightbox-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.g__lightbox-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.g__lightbox-slide img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  background-color: var(--highlight-header);
  color: var(--primary-text);
  font-size: 18px;
  border-radius: 50px;
  -ms-flex-line-pack: center;
  align-content: center;
  text-align: center;
  padding: 10px;
  width: 44px;
  height: 44px;
}

/* END OF MS SECTION MS-04 */

/* START OF ME SECTION ME-05 */
.MO__EXCLUSIVES {
  position: relative;
  background: url("../images/bg/02-mc-bg-mask.png") no-repeat, var(--section-bg);
  -webkit-clip-path: polygon(63% 5%, 100% 11%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(63% 5%, 100% 11%, 100% 100%, 0 100%, 0 0);
  margin-top: -100px;
  z-index: 6;
}

.MO__EXCLUSIVES-FLEX {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 90px;
}

.MO__EXCLUSIVES-FLEX .MO__EXCLUSIVES-CONTENT img {
  margin-bottom: 16px;
}
.MO__EXCLUSIVES-FLEX .MO__EXCLUSIVES-CONTENT p {
  font-size: 48px;
  font-weight: 700;
  color: var(--highlight-header);
  margin-bottom: 40px;
}
.MO__EXCLUSIVES-FLEX .MO__EXCLUSIVES-CONTENT a {
  max-width: 200px;
  padding: 9px 59px;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 700;
  background-color: var(--highlight-header);
  color: var(--primary-coating);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* END OF ME SECTION ME-05 */

/* START OF MOYT SECTION MOYT-06 */
.MO__YT {
  padding: 120px 0 64px;
  background: var(--bg-color-description);
  margin-top: -4px;
  position: relative;
  z-index: 6;
}
.MO__YT__VID-CONTAINER {
  position: relative;
  max-width: 1312px;
  width: 100%;
}
.MO__YT-ICO {
  margin-bottom: 48px;
  text-align: center;
}
.MO__VID-GALLERY .MO__FEATURED__VIDEO {
  margin-bottom: 64px;
}
.MO__VID-GALLERY .MO__FEATURED__VIDEO iframe {
  width: 100%;
  min-height: 630px;
  border: 0;
  outline: 0;
}
.MO__VID-SLIDE {
  position: relative;
  padding: 15px 0;
}
.MO__VID-SLIDE img.active {
  border: 2px solid var(--highlight-header);
  opacity: 0.7;
  border-radius: 8px;
}
.MO__VID-SLIDE img {
  margin-bottom: 8px;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.MO__VID-SLIDE p {
  font-size: 14px;
  color: var(--highlight-subheader);
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: block;
}
.MO__VID-SLIDE p.active {
  font-weight: 700;
  color: var(--highlight-header);
}
/* END OF MOYT SECTION MOYT-06 */

/* START OF FOOTER */
.MO__FOOTER {
  background: var(--section-bg);
  padding: 14px 16px 180px;
}
.MO__FOOTER-CONTENT {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.MO__FOOTER-CONTENT .MO__FOOTER-LEFT {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.MO__FOOTER-CONTENT .MO__FOOTER-LEFT p {
  width: 100%;
  max-width: 113px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-text);
}
.MO__FOOTER-CONTENT .MO__FOOTER-RIGHT p {
  font-size: 12px;
  color: var(--primary-text);
}
/* END OF FOOTER */

/* START OF ASIDE */
.MO__TOASTER {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  -o-transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease,
    -webkit-transform 0.5s ease;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--bg-color-description);
  z-index: 10;
}
.MO__TOASTER.show {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.MO__TOASTER .MO__ASIDE-CONTENT {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  min-height: 123px;
}
.MO__TOASTER .MO__ASIDE-CONTENT .ASIDE__IMG {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9;
}
.MO__TOASTER .MO__ASIDE-CONTENT .ASIDE__TXT {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 360px;
}
.MO__TOASTER .MO__ASIDE-CONTENT .ASIDE__TXT h2 {
  font-size: 24px;
  color: var(--highlight-header);
  margin-bottom: 8px;
}
.MO__TOASTER .MO__ASIDE-CONTENT .ASIDE__TXT p {
  font-size: 14px;
  color: var(--primary-text);
}
/* END OF ASIDE */
