* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@font-face {
  font-family: "Regular";
  src: url("/fonts/Almarai/Almarai-Regular.ttf");
}

@font-face {
  font-family: "Bold";
  src: url("/fonts/Bricolage_Grotesque/static/BricolageGrotesque-Bold.ttf");
}

:root {
  --basic: 0.9rem;
  --min: 0.7rem;
  --Ssize: var(--basic);
  --Msize: calc(var(--basic) * 1.618);
  --Bsize: calc(var(--Msize) * 1.618 * 1.05);
  --clr1: #fcf8f2;
  --clr2: #ffce99;
  --clr2-sec: rgb(255, 240, 214);
  --clr3: #000;
  --f1: Regular;
  --f2: Bold;
}

body {
  background: var(--clr1);
  width: 100svw;
  height: 100svh;
  overflow: hidden;
}

.container {
  position: relative;
  width: 100svw;
  height: 100svh;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.container > main {
  position: relative;
  width: 100%;
  height: 55%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  padding: 1rem;
}

.container > main > nav {
  position: relative;
  width: 100%;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}

.container > main > nav .left {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}

.container > main > nav .left .menu {
  position: relative;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.5rem;
  background: var(--clr1);
  padding: 1rem;
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  border-radius: 100vw;
}

.container > main > nav .left .menu::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  background: var(--clr2);
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 100vw;
  z-index: 0;
}

.container > main > nav .left .menu p {
  font-size: var(--Ssize);
  font-family: var(--f1);
  text-transform: capitalize;
}

.container > main > nav .left .menu span {
  position: relative;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}

.container > main > nav .left .menu span svg {
  stroke: var(--clr3);
  z-index: 1;
}

.container > main > nav .left .lang {
  position: relative;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5rem;
}

.container > main > nav .left .lang div {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5rem;
}

.container > main > nav .left .lang div span {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}

.container > main > nav .left .lang div span svg {
  fill: var(--clr1);
}

.container > main > nav .left .lang div p {
  font-size: var(--Ssize);
  font-family: var(--f1);
  color: var(--clr1);
}

.container > main > nav .left .lang > p {
  font-size: var(--Ssize);
  font-family: var(--f1);
  color: var(--clr1);
  text-transform: uppercase;
  opacity: 0.7;
}

.container > main > nav .right {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5rem;
}

.container > main > nav .right label {
  position: relative;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}

.container > main > nav .right label input {
  width: 100%;
  padding: 0.5rem;
  padding-inline: 1rem;
  font-size: var(--Ssize);
  font-family: var(--f1);
  color: var(--clr3);
  border: none;
  outline: none;
  border-radius: 5rem;
}

.container > main > nav .right label span {
  position: absolute;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--clr2);
  right: 0;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}

.container > main > nav .right label span svg {
  fill: var(--clr3);
}

.container > main > nav .right .icon {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  background: var(--clr1);
  width: 35px;
  aspect-ratio: 1/1;
  border-radius: 50vw;
}

.container > main > nav .right .name {
  position: relative;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5rem;
  border: 1px solid var(--clr1);
  border-radius: 100vw;
  padding: 0.1rem;
  padding-inline: 0.2rem;
}

.container > main > nav .right .name .img {
  position: relative;
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 100vw;
  overflow: hidden;
}

.container > main > nav .right .name .img img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.container > main > nav .right .name p {
  font-size: var(--Ssize);
  font-family: var(--f1);
  color: var(--clr1);
  text-transform: capitalize;
}

.container > main > nav .right .name span {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}

.container > main > nav .right .name span svg {
  fill: var(--clr1);
}

.container > main > .img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 2rem;
  z-index: 0;
}

.container > main > .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.container > main > #jk {
  position: relative;
  width: 100%;
  height: 100%;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}

.container > main > #jk > div {
  position: relative;
  height: 80%;
  overflow: hidden;
}

.container > main > #jk > .right {
  position: relative;
  width: 15%;
  height: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.container > main > #jk > .right > .slid {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.container > main > #jk > .right > .slid .image {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.container > main > #jk > .right > .slid .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.container > main > #jk > .right > .slid > span {
  margin: 0.5rem;
  margin-left: auto;
  background: #00000052;
  width: 30px;
  aspect-ratio: 1/1;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 100vw;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}

.container > main > #jk > .right > .slid > span svg {
  fill: var(--clr1);
}

.container > main > #jk > .right > .slid > p {
  z-index: 1;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
  font-family: var(--f1);
  font-size: var(--Ssize);
  color: var(--clr1);
  padding: 0.5rem;
  padding-inline: 1rem;
  background: #00000052;
  margin: 0.5rem;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 100vw;
  text-transform: capitalize;
}

.container > main > #jk > .left {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.container > main > #jk > .left .no {
  position: relative;
  padding: 0.5rem;
  padding-block: 1rem;
  border: 1px solid var(--clr1);
  border-radius: 100vw;
  font-size: var(--Ssize);
  font-family: var(--f2);
  color: var(--clr1);
}

.container > main > #jk > .left .no[data-active] {
  border: 2px solid var(--clr2);
  background: var(--clr2);
}

.container > main > #jk > .left .dots {
  position: relative;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.2rem;
  margin-top: 0.5rem;
}

.container > main > #jk > .left .dots span {
  width: 7px;
  aspect-ratio: 1/1;
  border: 1px solid var(--clr1);
  border-radius: 100vw;
}

.container > main > #jk > .left .dots span[data-active] {
  width: 12px;
  background: var(--clr1);
}

.container > main .circle {
  width: 150px;
  aspect-ratio: 1/0.6;
  background: var(--clr1);
  border-radius: 100vw;
  position: absolute;
  bottom: -1px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
  --size: 2rem;
}

.container > main .circle::after {
  position: absolute;
  content: "";
  width: var(--size);
  aspect-ratio: 1/1;
  border-radius: 0 0 100vw 0;
  z-index: 1;
  left: -1.85rem;
  top: 3.5rem;
  -webkit-box-shadow: 0.5rem 0.5rem 0 0.5rem var(--clr1);
          box-shadow: 0.5rem 0.5rem 0 0.5rem var(--clr1);
}

.container > main .circle::before {
  position: absolute;
  content: "";
  width: var(--size);
  aspect-ratio: 1/1;
  border-radius: 0 0 0 100vw;
  z-index: 1;
  right: -1.85rem;
  top: 3.5rem;
  -webkit-box-shadow: -0.5rem 0.5rem 0 0.5rem var(--clr1);
          box-shadow: -0.5rem 0.5rem 0 0.5rem var(--clr1);
}

.container > main .mid {
  position: absolute;
  width: 130px;
  aspect-ratio: 1/1;
  background: var(--clr2);
  border-radius: 100vw;
  z-index: 2;
  bottom: -3rem;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}

.container > main .mid > p {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}

.container > main .mid > p svg {
  scale: 1.5;
}

.container > main .mid > #carv {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 0.7rem;
  rotate: -70deg;
  font-family: var(--f2);
  color: var(--clr3);
}

.container > main .mid > #carv span {
  position: absolute;
  left: 50%;
  top: 0%;
  -webkit-transform-origin: 0 65px;
          transform-origin: 0 65px;
}

.container > section {
  position: relative;
  width: 100%;
  height: 45%;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}

.container > section > div {
  height: 100%;
}

.container > section .text {
  width: 55%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0rem;
  color: var(--clr3);
}

.container > section .text #top {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}

.container > section .text #top #left {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.container > section .text #top #left #sub {
  font-size: var(--Ssize);
  font-family: var(--f1);
  text-transform: capitalize;
}

.container > section .text #top #left #title {
  width: 100%;
  font-size: var(--Bsize);
  font-family: var(--f2);
}

.container > section .text #top #right {
  width: 45%;
  padding-top: 0ch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.container > section .text #top #right #sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5ch;
  font-size: var(--Ssize);
  font-family: var(--f2);
  color: var(--clr3);
}

.container > section .text #top #right #sub h1 {
  font-size: calc(var(--Msize) + 0.5rem);
}

.container > section .text #top #right #main {
  font-size: var(--Ssize);
  font-family: var(--f1);
  color: var(--clr3);
}

.container > section .text #top #right .images {
  margin-top: 1rem;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}

.container > section .text #top #right .images .person {
  position: relative;
  width: 45px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 100vw;
  border: 2px solid var(--clr1);
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}

.container > section .text #top #right .images .person:nth-child(2) {
  left: -1rem;
}

.container > section .text #top #right .images .person:nth-child(3) {
  left: -2rem;
}

.container > section .text #top #right .images .person:nth-child(4) {
  left: -3rem;
}

.container > section .text #top #right .images .person:nth-child(5) {
  left: -4rem;
  background: var(--clr2);
  border: none;
  font-size: var(--Ssize);
  font-family: var(--f1);
  color: var(--clr3);
}

.container > section .text #top #right .images .person img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.container > section .text #bottom {
  position: relative;
  width: 100%;
  height: 100%;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0rem;
}

.container > section .text #bottom #left {
  position: relative;
  width: 40%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.container > section .text #bottom #left #paragraph {
  font-size: var(--Ssize);
  font-family: var(--f1);
  color: var(--clr3);
}

.container > section .text #bottom #left button {
  padding: 1rem;
  padding-inline: 1rem;
  font-size: var(--Ssize);
  font-family: var(--f1);
  color: var(--clr3);
  border: 1px solid var(--clr2);
  border-radius: 100vw;
  outline: none;
  background: transparent;
}

.container > section .text #bottom #left #social {
  position: relative;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}

.container > section .text #bottom #left #social span {
  width: 35px;
  aspect-ratio: 1/1;
  border: 1px solid var(--clr2);
  border-radius: 100vw;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}

.container > section .text #bottom #right {
  position: relative;
  width: 60%;
  height: 70%;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}

.container > section .text #bottom #right .card {
  position: relative;
  padding: 0.5rem;
  border-radius: 1.5rem;
  width: 100%;
  height: 100%;
  background: var(--clr2-sec);
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.container > section .text #bottom #right .card .photo {
  position: absolute;
  top: -40%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 80px;
  aspect-ratio: 1/1;
  border-radius: 100vw;
  -webkit-filter: drop-shadow(0px 5px 2px #cea57a);
          filter: drop-shadow(0px 5px 2px #cea57a);
}

.container > section .text #bottom #right .card .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.container > section .text #bottom #right .card p {
  width: 100%;
  margin-top: 1rem;
  text-align: center;
  font-size: var(--min);
  font-family: var(--f2);
  color: var(--clr3);
  z-index: 10;
}

.container > section .text #bottom #right .card span {
  width: 35px;
  aspect-ratio: 1/1;
  position: absolute;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  background: var(--clr3);
  border-radius: 100vw;
  bottom: -17px;
}

.container > section .text #bottom #right .card span svg {
  fill: var(--clr1);
  scale: 0.9;
}

.container > section .grid {
  width: 45%;
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
}

.container > section .grid #section {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--clr2);
  border-radius: 2rem;
  overflow: hidden;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.container > section .grid #section::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.74)), to(transparent));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.74), transparent);
  z-index: 0;
}

.container > section .grid #section > .imgs {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
}

.container > section .grid #section > .imgs img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.container > section .grid #section #topT {
  position: relative;
  padding: 1rem;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}

.container > section .grid #section #topT > .left {
  width: 55%;
  position: relative;
  color: var(--clr1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.container > section .grid #section #topT > .left span {
  font-size: var(--Msize);
  font-family: var(--f2);
}

.container > section .grid #section #topT > .left p {
  font-size: var(--Ssize);
  font-family: var(--f1);
}

.container > section .grid #section #topT > #rightT {
  position: relative;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}

.container > section .grid #section #topT > #rightT > .photos {
  position: relative;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}

.container > section .grid #section #topT > #rightT > .photos > #p {
  position: relative;
  width: 40px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 100vw;
}

.container > section .grid #section #topT > #rightT > .photos > #p:nth-child(1) {
  left: 2rem;
}

.container > section .grid #section #topT > #rightT > .photos > #p:nth-child(2) {
  left: 1rem;
}

.container > section .grid #section #topT > #rightT > .photos > #p img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.container > section .grid #section #bottomT {
  width: 100%;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
  color: var(--clr1);
  z-index: 1;
  font-family: var(--f2);
  font-size: var(--Ssize);
  padding: 1rem;
  padding-top: 0;
}

.container > section .grid #section #bottomT span {
  background: var(--clr1);
  text-transform: capitalize;
  padding: 0.5rem;
  border-radius: 100vw;
  color: var(--clr3);
  font-size: var(--min);
}

.container > section .grid #section #bottomT p {
  margin-inline: auto;
  background: #00000052;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 0.5rem;
  padding-inline: 4rem;
  border-radius: 100vw;
}
/*# sourceMappingURL=style.css.map */