@font-face {
  font-family: "AbarHigh";
  src: url("../fonts/AbarMidFaNum-ExtraLight.woff2") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "AbarHigh";
  src: url("../fonts/AbarMidFaNum-Regular.woff2") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "AbarHigh";
  src: url("../fonts/AbarMidFaNum-Medium.woff2") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "AbarHigh";
  src: url("../fonts/AbarMidFaNum-SemiBold.woff2") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "AbarHigh";
  src: url("../fonts/AbarMidFaNum-Bold.woff2") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "AbarHigh";
  src: url("../fonts/AbarMidFaNum-ExtraBold.woff2") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Lagu Sans";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/Lagu-Sans-Medium.otf") format("truetype");
}

@font-face {
  font-family: "Lagu Sans";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Lagu-Sans-Regular.otf") format("truetype");
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

* {
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  font-family: "AbarHigh";
  direction: rtl;
  background: #fff;
  overflow-x: hidden;
  padding: 88px 31px 60px 183px;
  color: #000;
}

.layout {
  min-height: calc(100vh - 88px - 60px);
  width: calc(100vw - 31px - 183px);
}

.logo {
  width: 100%;
  height: 88px;
  display: flex;
  justify-content: end;
  align-items: center;
}

.logo .mobileMenuIcon {
  display: none;
}

.content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.side-menu {
  width: 200px;
  padding-top: 80px;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu li {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  color: #aaa;
  padding-bottom: 32px;
  cursor: pointer;
  transition: 0.3s;
}

.side-menu li:hover,
.side-menu li.active {
  color: #000;
}

.content-area {
  width: calc(100% - 155px);
  padding: 80px 20px 0 0;
}

.content-section {
  display: none;
  animation: fadeIn 0.5s ease;
}

.content-section.active {
  display: block;
}

.contentPage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.moreContent {
  align-items: start !important;
}

.moreContent > :nth-child(2) {
  padding-top: 130px;
}

.texts {
  width: 100%;
  text-align: justify;
}

.texts h2 {
  font-size: 36px;
  font-weight: 900;
}

.texts h6 {
  font-size: 25px;
  font-weight: 300;
}

.texts p {
  font-size: 16px;
  font-weight: 400;
  padding-top: 23px;
}

.video {
  width: 100%;
}
.video > video {
  border-radius: 16px;
  width: 100%;
}

.contentPage a {
  color: #000;
  text-decoration: none;
}

.download {
  width: 122px;
  height: 28px;
  margin-top: 24px;
  padding: 4px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #d9d9d9;
  border-radius: 4px;
  cursor: pointer;
}

.downloadText {
  font-size: 10px;
  font-weight: 400;
  color: #000;
}

.visualLogo {
  direction: ltr;
  padding-top: 64px;
}

.visualContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 72px;
}

.VisualVideo {
  margin-top: 102px;
  width: 100%;
}

.VisualVideo > video {
  width: 100%;
  border-radius: 16px;
}

.colorContent {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  margin-top: 64px;
  position: relative;
}

.colorContent .popup {
  width: 0;
  height: 0;
  position: absolute;
  top: 20px;
  left: 40%;
  border-radius: 4px;
  background: #d9d9d9;
  font-size: 9px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(0);
  transition: width 0.2s ease, height 0.8s ease, opacity 0.3s ease,
    transform 0.4s ease;
}

.colorContent .show {
  width: 78px;
  height: 32px;
  opacity: 1;
  transform: translateY(-36px);
}

.colors {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.colorText {
  font-size: 16px;
  font-weight: 600;
  width: 100%;
}

.platterBox {
  flex: 1 0 0;
  height: 146px;
  border-radius: 4px;
  box-shadow: 0px 0px 4px 0px #00000012;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 13px;
  direction: ltr;
  cursor: pointer;
}

.white {
  background: #fff;
}

.yellow {
  background: #f2bf00;
}

.black {
  background: #000;
}

.platterBox .bimeBazar {
  font-size: 7px;
  font-weight: 700;
  display: block;
}

.platterBox .yellowText {
  font-size: 12px;
  font-weight: 700;
  display: block;
}

.platterBox .colorsCode {
  font-size: 12px;
  font-weight: 500;
  font-family: "Lagu Sans";
}

.platterBox .numbers {
  font-size: 8px;
  font-weight: 400;
  font-family: "Lagu Sans";
  display: block;
}

.platterBox .blackColor {
  color: #fff;
  fill: white !important;
}

.yellowGradient {
  width: 100%;
  height: 28px;
  border-radius: 24px;
  background: linear-gradient(to right, #fff 0%, #f2bf00 100%);
}

.blackGradient {
  width: 100%;
  height: 28px;
  border-radius: 24px;
  background: linear-gradient(to left, #fff 0%, #000000 100%);
}

.combinationBox {
  width: 100%;
  height: 52px;
  border-radius: 4px;
  box-shadow: 0px 0px 4px 0px #00000012;
  display: flex;
  justify-content: right;
  align-items: center;
  padding-inline-start: 24px;
}

.mediumBox {
  width: 180px;
  height: 32px;
  border-radius: 4px;
}

.smallBox {
  width: 50%;
  height: 100%;
  border-radius: 4px;
}

.fontContent {
  padding-top: 96px;
}

.fontWeight {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
}

.extra {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 300;
}

.regular {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
}

.bold {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.textAlign {
  text-align: left;
}

.fontsBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.appContent {
  width: 100%;
  height: 656px;
  display: flex;
  justify-content: space-between;
  margin-top: 150px;
  gap: 16px;
}

.appContent .rightBox {
  width: 639px;
  height: 656px;
  border-radius: 12px;
}

.appContent .leftBox {
  width: 419px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.appContent .leftBox .up {
  width: 100%;
  height: 244px;
  border-radius: 12px;
}

.appContent .leftBox .down {
  width: 100%;
  height: 401px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.appContent .leftBox .down .right {
  width: 195px;
  height: 401px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.appContent .leftBox .down .right .smallBox {
  width: 195px;
  height: 195px;
  border-radius: 12px;
}

.appContent .leftBox .down .left {
  width: 212px;
  height: 401px;
  border-radius: 12px;
}

.deactive {
  display: none;
}

.mobileButton {
  display: none;
}

.appContent .appPic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
}

/* ----------------------------------------------------------responsive----------------------------------------- */

@media (width <= 1200px) {
  body {
    padding: 24px 32px;
  }

  .layout {
    flex-wrap: nowrap;
    flex-direction: column;
    width: calc(100vw - 64px);
  }

  .logo {
    justify-content: space-between;
    height: 24px;
  }

  .logo .mobileMenuIcon {
    display: block;
    cursor: pointer;
  }

  .logoSvg {
    width: 48px;
  }

  .side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #f2bf00;
    display: flex;
    flex-direction: column;
    clip-path: ellipse(0% 100% at 50% 50%);
    transition: clip-path 0.6s ease-in-out;
  }

  .closeIcon {
    width: 100%;
    height: 22px;
    display: flex;
    justify-content: start;
    padding: 0 64px 64px;
    cursor: pointer;
  }

  .menu-active {
    clip-path: ellipse(150% 100% at 50% 50%);
  }

  .side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .side-menu li {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    opacity: 0.4;
    padding-bottom: 32px;
    cursor: pointer;
    transition: 0.3s;
  }

  .side-menu li:hover,
  .side-menu li.active {
    opacity: 1;
  }

  .content-area {
    width: 100%;
    padding: 32px 0;
  }

  .content-area-deactive {
    display: none;
  }

  .contentPage {
    flex-direction: column;
  }

  .pageIcon {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .svg {
    width: 325px;
  }

  .resizeSvg {
    width: 40%;
  }

  .argTextHeight {
    min-height: calc(100vh - 48px - 80px - 325px - 70px);
  }

  .historyTextHeight {
    min-height: calc(100vh - 48px - 80px - 387px - 20px - 70px);
  }

  .texts h2 {
    font-size: 24px;
  }

  .texts h6 {
    font-size: 20px;
  }

  .texts p {
    width: auto;
    font-size: 12px;
  }

  .video,
  .VisualVideo {
    margin-top: 0 !important;
    width: 100%;
  }

  .visualLogo {
    direction: rtl;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .visualContent {
    gap: 56px;
  }

  .textLogoSvg {
    width: 124px;
  }

  .VisualVideo {
    width: 100%;
  }

  .platterBox {
    width: 24%;
    height: 170px;
  }

  .fontsBox {
    flex-direction: column-reverse;
    padding-top: 32px;
  }

  .appContent {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 16px;
  }

  .appContent .appPic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 11px;
  }

  .appContent .rightBox {
    width: 100%;
    height: 354px;
  }

  .appContent .leftBox {
    width: 100%;
    flex-direction: column-reverse;
  }

  .appContent .leftBox .down {
    gap: 16px;
  }

  .appContent .leftBox .down .right {
    width: 50%;
  }

  .appContent .leftBox .down .left {
    width: 50%;
  }

  .appContent .leftBox .down .right .smallBox {
    width: 100%;
  }

  .mobileButton {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobileButton-last {
    justify-content: end !important;
  }

  .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding-top: 42px;
    cursor: pointer;
  }

  .buttons#nextBtn {
    margin-right: auto;
  }

  .buttons#prevBtn {
    margin-left: auto;
  }

  .appContent .leftBox > .up {
    height: auto !important;
  }
}

@media (width >= 1600px) {
  .logo {
    width: 1200px;
    margin: 0 auto;
  }
  .content {
    width: 1200px;
    margin: 0 auto;
  }

  .appContent .leftBox {
    height: 656px;
  }
}

.VisualVideo > video,
.video > video {
  aspect-ratio: 16/9;
  margin-top: 40px;
  border-radius: 12px;
  width: 100%;
}

.statement-title {
  margin-top: 48px;
  font-weight: 300 !important;
}

.prev-button > p {
  color: #9d9d9d;
}

.brand-content-page {
  margin: auto;
}
