/*!*********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./app/ui/navbar/style.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************/
.navbar_container_mobile {
  transition: all 1s;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 65px;
  z-index: 10;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .navbar_container_mobile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}
.navbar_container_mobile .ncm_logo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 65px;
  padding-inline: 0.5rem;
}
.navbar_container_mobile .ncm_logo #ncm_menu {
  background-color: lightgray;
  border-radius: 100%;
  width: 3rem;
  height: 3rem;
}
.navbar_container_mobile .ncm_logo div:nth-of-type(1) {
  transition: all 1s;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  height: 100%;
}
.navbar_container_mobile .ncm_logo div:nth-of-type(1) h3 {
  font-weight: 800;
}
.navbar_container_mobile .ncm_logo div:nth-of-type(1) img {
  transform: rotateZ(10deg);
  width: 60px;
  height: 60px;
}
.navbar_container_mobile .ncm_logo div:nth-of-type(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
.navbar_container_mobile .ncm_logo div:nth-of-type(2) img {
  width: 4rem;
  height: 4rem;
}
.navbar_container_mobile .ncm_items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 8px;
  padding-bottom: 1rem;
}
.navbar_container_mobile .ncm_items button {
  font-size: 5vw;
}

.navbar_container {
  transition: all 0.5s;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  padding-inline: 2rem;
  z-index: 10;
}
@media screen and (max-width: 576px) {
  .navbar_container {
    display: none;
  }
}

.navbar_blur {
  background-color: rgba(128, 128, 128, 0.0705882353);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.navbar_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  margin-inline-end: 20px;
  gap: 0.5rem;
  font-family: vazirmatn;
}
.navbar_logo h3 {
  font-weight: 800;
}
.navbar_logo img {
  transform: rotateZ(10deg);
  width: 60px;
  height: 60px;
}

.navbar_links_container {
  transition: all 0.5s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 100%;
  min-width: 10%;
}
.navbar_links_container button {
  font-family: vazirmatn;
  position: relative;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.5s;
  z-index: 1;
  min-width: 10px;
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .navbar_links_container button {
    min-width: 10px;
    font-size: 2vw;
  }
}
.navbar_links_container span {
  opacity: 0;
  transition: all 0.5s;
  align-self: center;
  position: absolute;
  height: 60px;
  background-color: transparent;
  width: 0px;
  left: 0;
  top: 5px;
  border-bottom: 5px solid wheat;
}

.navbar_links_item {
  position: relative;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.5s;
}
.navbar_links_item::after {
  transition: all 0.2s;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 5px;
  background-color: wheat;
  border-radius: 10px;
  content: "";
}
.navbar_links_item:hover::after {
  opacity: 1;
}

.navbar_links_login {
  color: black;
  font-size: 15px;
  border: 1px solid black;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.2s;
}
.navbar_links_login:hover {
  color: white;
  background-color: black;
  border: 1px solid white;
}
.navbar_links_login:active {
  background-color: gray;
  color: black;
}
/*!**************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./app/ui/pages/about/style.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************/
.about_container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 3rem;
  gap: 3rem;
}
.about_container img {
  width: 40%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 576px) {
  .about_container img {
    order: 2;
    width: 100%;
    height: 40%;
  }
}
.about_container div {
  text-align: start;
  width: 60%;
  height: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: white;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
}
@media screen and (max-width: 576px) {
  .about_container div {
    order: 1;
    width: 100%;
    height: 60%;
  }
}
.about_container div h1 {
  text-align: start;
  font-weight: bolder;
}
.about_container div h2 {
  text-align: start;
}
.about_container div a {
  direction: ltr;
  text-decoration: underline;
  color: rgb(0, 89, 255);
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .about_container {
    margin-top: 10vh;
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }
}
/*!************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./app/ui/pages/end/style.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************/
.end_container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 3rem;
  height: 60vh;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  direction: ltr;
}
.end_container img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1vh;
  width: 100%;
  height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.end_container div {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  z-index: 10;
}
.end_container .end_social {
  width: 30%;
  text-align: center;
  color: white;
  font-family: vazirmatn;
}
.end_container .end_social div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
}
.end_container .end_social div img {
  position: relative;
  z-index: 10;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.end_container .end_social div img:nth-of-type(2) {
  padding: 5px;
}
.end_container .end_social div img:nth-of-type(3) {
  padding: 5px;
}
.end_container .end_social h1 {
  margin-bottom: 1rem;
  font-weight: bolder;
  font-size: 1.5rem;
}
.end_container .end_quick {
  width: 30%;
  text-align: center;
  color: white;
  font-family: vazirmatn;
}
.end_container .end_quick h1 {
  margin-bottom: 1rem;
  font-weight: bolder;
  font-size: 1.5rem;
}
.end_container .end_quick h2 {
  cursor: pointer;
  font-weight: lighter;
}
.end_container .end_explain {
  width: 30%;
  text-align: center;
  color: white;
  font-family: vazirmatn;
}
.end_container .end_explain h1 {
  margin-bottom: 1rem;
  font-weight: bolder;
  font-size: 1.5rem;
}
.end_container .end_explain h2 {
  font-weight: lighter;
}
@media screen and (max-width: 576px) {
  .end_container {
    padding-inline: 1rem;
    padding-block: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: repeat(2, 50%);
    gap: 0.5rem;
  }
  .end_container h1 {
    font-size: 0.5vw;
  }
  .end_container .end_social {
    width: 100%;
  }
  .end_container .end_social h1 {
    font-size: 5vw;
  }
  .end_container .end_social h2 {
    font-size: 3vw;
  }
  .end_container .end_quick {
    width: 100%;
  }
  .end_container .end_quick h1 {
    font-size: 5vw;
  }
  .end_container .end_quick h2 {
    font-size: 3vw;
  }
  .end_container .end_explain {
    width: 100%;
  }
  .end_container .end_explain h1 {
    font-size: 5vw;
  }
  .end_container .end_explain h2 {
    font-size: 3vw;
  }
}
/*!*****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./app/ui/pages/features/style.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************/
.features_container {
  padding: 3rem;
  height: 100svh;
  gap: 1rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 576px) {
  .features_container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
    padding: 1rem;
  }
}
.features_container .features_container_sub {
  position: relative;
  padding: 1rem;
  border-radius: 2rem;
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: space-between;
  align-items: center;
  overflow-y: auto;
  background-color: #CFEDE0;
}
@media screen and (max-width: 576px) {
  .features_container .features_container_sub {
    height: 90dvh;
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}
.features_container .features_container_sub .features_container_sub_color {
  transition: all 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #CFEDE0;
  border-radius: 2rem;
}

.features_list {
  display: flex;
  flex-direction: column;
}
.features_list h1 {
  transition: all 0.3s;
  font-weight: bolder;
  font-size: 1.5rem;
  font-family: vazirmatn;
}
.features_list h6 {
  transition: all 0.3s;
  text-align: start;
  font-weight: 300;
  font-family: vazirmatn;
  font-size: 17px;
}
/*!*********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./app/ui/components/buttons/style.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************/
.anim_button {
  outline: 2px solid wheat;
  transition: all 0.5s;
  position: relative;
  align-self: center;
  padding-inline: 1rem;
  padding-block: 0.5rem;
  border-radius: 5px;
  overflow: hidden;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: bold;
  color: wheat;
}
.anim_button:hover {
  color: white;
  transform: scale(1.1);
  outline: 2px solid rgb(252, 235, 204);
  box-shadow: 4px 5px 17px -4px rgb(249, 203, 116);
}
.anim_button:active {
  transform: scale(0.9);
}
.anim_button:hover::before {
  width: 250%;
}
.anim_button:hover::after {
  left: 0;
}
.anim_button::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: wheat;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1000ms;
}
.d3_button {
  --color1: #68bd65;
  --color2: #236b19;
  position: relative;
  perspective: 1000px;
  padding: 1em 1em;
  background: linear-gradient(var(--color1), var(--color2));
  border: none;
  outline: none;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #fff;
  text-shadow: 0 10px 10px #000;
  cursor: pointer;
  transform: perspective(500px);
  transform-style: preserve-3d;
  transition: transform 1s;
}
.d3_button span:nth-of-type(1) {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 15px;
  background: linear-gradient(var(--color1), var(--color2));
  z-index: 10;
  transform: rotateX(90deg);
  transform-origin: bottom;
}
.d3_button span:nth-of-type(2) {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--color1), var(--color2));
  z-index: 10;
  transform: translateZ(-15px);
}
.d3_button span:nth-of-type(3) {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 15px;
  background: linear-gradient(var(--color1), var(--color2));
  z-index: 10;
  transform: rotateX(-90deg);
  transform-origin: top;
}
.d3_button::before {
  content: "";
  width: 15px;
  height: 100%;
  background-color: var(--color1);
  position: absolute;
  top: 0;
  right: 0;
  transform: rotateY(-90deg);
  transform-origin: right;
}
.d3_button::after {
  content: "";
  width: 15px;
  height: 100%;
  background-color: var(--color1);
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateY(90deg);
  transform-origin: left;
}
.d3_button:hover {
  transition: transform 1s;
  transform: perspective(500px) rotateX(360deg);
}
/*!*********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./app/ui/pages/introduction/style.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************/
.introduction_container {
  position: relative;
  display: grid;
  grid-template-columns: 40% 60%;
  justify-content: space-between;
  align-items: center;
  padding: 4rem;
  height: 100svh;
}
@media screen and (max-width: 576px) {
  .introduction_container {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 40% 60%;
    padding-inline: 2rem;
    padding-block: 1rem;
    padding-top: 10vh;
  }
}
.introduction_container #ic_bw {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 40vh;
  width: 100%;
}

#Test {
  left: 100px;
  top: 100px;
  position: fixed;
  width: 200px;
  height: 200px;
  background-color: red;
  border-radius: 100%;
}

.explain_container {
  transition: all 2s;
  opacity: 0;
  scale: 0;
  width: 100%;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
@media screen and (max-width: 576px) {
  .explain_container {
    order: 2;
    width: 100%;
  }
}
.explain_container h1 {
  overflow: hidden;
  font-size: 30px;
  font-weight: bolder;
  border-bottom: 2px solid black;
  font-family: vazirmatn;
}
@media screen and (max-width: 576px) {
  .explain_container h1 {
    font-size: 1.5rem;
  }
}
.explain_container h3 {
  font-family: vazirmatn;
  font-size: 1rem;
  font-weight: 300;
}
@media screen and (max-width: 576px) {
  .explain_container h3 {
    font-size: 0.9rem;
  }
}

.picture_container {
  transition: all 2s;
  width: 100%;
  height: 70%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .picture_container {
    order: 1;
    width: 100%;
    height: 100%;
  }
}

.board_container_bak {
  --color1: #E0E0DE;
  --color2: #E0E0DE;
  --sizeW: 90%;
  --sizeH: 30vw;
  --radius: 1rem;
  --depth: 15px;
  transition: opacity 1s, transform 2s, scale 1s;
  position: relative;
  background: linear-gradient(var(--color1), var(--color2));
  border: none;
  outline: none;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #fff;
  text-shadow: 0 10px 10px #000;
  cursor: pointer;
  transform-style: preserve-3d;
  border-radius: var(--radius);
  width: var(--sizeW);
  height: var(--sizeH);
  transform: perspective(700px) rotateY(90deg) rotateZ(0deg);
}
@media screen and (max-width: 576px) {
  .board_container_bak {
    --sizeW: 100%;
    --sizeH: 100%;
  }
}
.board_container_bak img {
  transition: opacity 1s, transform 2s;
  overflow: hidden;
  border-radius: var(--radius);
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.board_container_bak span:nth-of-type(1) {
  background: linear-gradient(var(--color1), var(--color2));
  border-radius: var(--radius);
  width: var(--sizeW);
  height: var(--sizeH);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: red;
  z-index: 10;
  transform: translateZ(calc(-1 * var(--depth)));
  pointer-events: none;
}
.board_container_bak span:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: calc(var(--sizeW) / 2);
  width: var(--depth);
  height: 100%;
  background-color: var(--color2);
  z-index: 10;
  transform: rotateY(90deg) translateX(calc(var(--depth) / 2));
  pointer-events: none;
}
.board_container_bak span:nth-of-type(3) {
  position: absolute;
  top: 0;
  left: 3%;
  width: 94%;
  height: var(--depth);
  background-color: var(--color2);
  z-index: 10;
  transform: rotateX(-90deg);
  pointer-events: none;
  transform-origin: top;
}
.board_container_bak span:nth-of-type(4) {
  position: absolute;
  bottom: 0;
  left: 3%;
  width: 94%;
  height: var(--depth);
  background-color: var(--color2);
  z-index: 10;
  transform: rotateX(90deg);
  pointer-events: none;
  transform-origin: bottom;
}

.board_container {
  --color1: #1c4cf8;
  --color2: gray;
  --color3: lightgray;
  --sizeW: 45vw;
  --sizeH: 28vw;
  --radius: 1rem;
  --depth: 15px;
  border: none;
  outline: none;
  position: relative;
  width: var(--sizeW);
  height: var(--sizeH);
  padding: 0;
  margin: 0;
  border-radius: var(--radius);
  transform-style: preserve-3d;
  cursor: pointer;
  background-color: var(--color2);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s, scale 0.4s, opacity 0.1s, scale 0.5s;
  transform: perspective(700px) rotateY(90deg) rotateZ(0deg);
  transition: opacity 1s, transform 2s, scale 1s;
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
}
@media screen and (max-width: 576px) {
  .board_container {
    --sizeW: 100%;
    --sizeH: 100%;
  }
}
.board_container span {
  padding: 0;
  margin: 0;
}
.board_container span:nth-of-type(1) {
  border-radius: var(--radius);
  width: var(--sizeW);
  height: var(--sizeH);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translateZ(-1px);
  pointer-events: none;
  background-color: var(--color3);
  z-index: 2;
}
.board_container span:nth-of-type(2) {
  border-radius: var(--radius);
  width: var(--sizeW);
  height: var(--sizeH);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transform: translateZ(calc(-1 * var(--depth)));
  pointer-events: none;
  background-color: var(--color2);
}
.board_container span:nth-of-type(3) {
  border-radius: var(--radius);
  width: var(--sizeW);
  height: var(--sizeH);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transform: translateZ(calc(1px + -1 * var(--depth)));
  pointer-events: none;
  background-color: var(--color3);
}
.board_container span:nth-of-type(4) {
  position: absolute;
  top: 0;
  left: calc(var(--sizeW) / 2);
  width: var(--depth);
  height: 100%;
  z-index: 10;
  transform: rotateY(90deg) translateX(calc(var(--depth) / 2));
  background-color: rgb(0, 110, 255);
  pointer-events: none;
  background-color: var(--color3);
}
.board_container span:nth-of-type(5) {
  position: absolute;
  top: calc(var(--sizeH) / 2);
  left: 0;
  width: 100%;
  height: var(--depth);
  z-index: 10;
  transform: rotateX(90deg) translateY(calc(-1 * var(--depth) / 2));
  background-color: rgb(0, 110, 255);
  pointer-events: none;
  background-color: var(--color3);
}
.board_container span:nth-of-type(6) {
  position: absolute;
  top: 0;
  left: 3%;
  width: 94%;
  height: var(--depth);
  background-color: var(--color3);
  z-index: 10;
  transform: rotateX(-90deg);
  pointer-events: none;
  transform-origin: top;
}
.board_container span:nth-of-type(7) {
  position: absolute;
  bottom: 0;
  left: 3%;
  width: 94%;
  height: var(--depth);
  background-color: var(--color3);
  z-index: 10;
  transform: rotateX(90deg);
  pointer-events: none;
  transform-origin: bottom;
}

.board_image_container {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background-color: white;
}
.board_image_container img {
  display: block;
  transition: opacity 1s, transform 2s;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
/*!*********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./app/ui/components/loading/style.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************/
.logo_loading {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 20;
}
.logo_loading div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  animation: Opacity 1.5s linear infinite running;
}
@keyframes Opacity {
  0% {
    opacity: 1;
  }
  49% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.logo_loading h1 {
  font-size: 1.5rem;
}
.logo_loading img {
  max-width: 5rem;
  max-height: 5rem;
}
/*!*****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./app/ui/pages/overview/style.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************/
.overview_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 3rem;
  height: 100svh;
}
@media screen and (max-width: 576px) {
  .overview_container {
    padding: 1rem;
  }
}
.overview_container .overview_container_sub {
  width: 100%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.carousel_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 576px) {
  .carousel_item {
    flex-direction: column;
  }
}
.carousel_item div:nth-of-type(1) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 100%;
}
@media screen and (max-width: 576px) {
  .carousel_item div:nth-of-type(1) {
    width: 100%;
    height: 50%;
  }
}
.carousel_item div:nth-of-type(1) h1 {
  font-size: 2rem;
  font-weight: bolder;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .carousel_item div:nth-of-type(1) h1 {
    font-size: 1rem;
    text-decoration: underline;
  }
}
.carousel_item div:nth-of-type(1) h2 {
  font-size: 17px;
  font-weight: bold;
  text-align: center;
}
.carousel_item div:nth-of-type(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 576px) {
  .carousel_item div:nth-of-type(2) {
    width: 100%;
    height: 50%;
  }
}
.carousel_item div:nth-of-type(2) img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.btnDoc {
  transition: background-color 0.3s ease;
  background-color: #0070f3;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  margin-top: 15px;
}
.btnDoc:hover {
  background-color: rgb(0, 88.4938271605, 192);
}
/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./node_modules/swiper/swiper.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************/
/**
 * Swiper 11.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 22, 2023
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

/*!****************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./node_modules/swiper/modules/pagination.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
          -moz-appearance: none;
       appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform,
        200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
        200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}

/*!****************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./node_modules/swiper/modules/navigation.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */

/*!*********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./app/ui/components/card_3d/style.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************/
.card_3d {
  --color1: #1c4cf8;
  --color2: #4c72fa;
  --color3: #849efd;
  --sizeW: 100%;
  --sizeH: 100%;
  --radius: 1rem;
  --depth: 30px;
  border: none;
  outline: none;
  position: relative;
  width: var(--sizeW);
  height: var(--sizeH);
  border-radius: var(--radius);
  transform-style: preserve-3d;
  cursor: pointer;
  background-color: var(--color2);
  z-index: 3;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.5s, scale 0.4s, opacity 0.1s, scale 0.5s;
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  /*     &:before {
         opacity: 0;
         pointer-events: none;
         content: "";
         position: absolute;
         left: -4em;
         top: 0%;
         width: 4em;
         height: 100%;
         // transform: rotate(45deg);
         transition: all .4s ease-in-out;
         background: linear-gradient(to right, transparent 1%, #ffffff80 40%, #ffffff85 60%, transparent 100%);
     }

     &:hover::before {
         // transform: translateX(15em);
         opacity: 1;
         left: calc(100% + 4em);
     }

     &:after {
         opacity: 0;
         pointer-events: none;
         content: "";
         position: absolute;
         left: -4em;
         top: 0%;
         width: 4em;
         height: 100%;
         // transform: rotate(45deg);
         transition: all .8s ease-in-out;
         background: linear-gradient(to right, transparent 1%, #ffffff80 40%, #ffffff85 60%, transparent 100%);
     }

     &:hover::after {
         opacity: 1;
         left: calc(100% + 16em);
     }

  */
}
.card_3d:hover {
  scale: 1.1;
}
.card_3d h5:nth-of-type(1) {
  font-weight: bolder;
}
.card_3d h5:nth-of-type(2) {
  font-weight: bold;
}
.card_3d h6 {
  font-size: 0.9em;
}
.card_3d div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.card_3d svg {
  width: 100%;
  height: 30%;
  border-radius: calc(var(--radius) - 0.5rem);
  stroke-width: 2px;
}
@media screen and (max-width: 576px) {
  .card_3d svg {
    display: none;
  }
}
.card_3d button {
  background-color: white;
  width: 100%;
  border-radius: calc(var(--radius) - 0.7rem);
  padding-block: 0.3rem;
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
}
.card_3d button:hover {
  opacity: 1;
}
.card_3d button:active {
  top: 4px;
  box-shadow: #c0392b 0px 3px 2px, #000 0px 3px 5px;
}
.card_3d span:nth-of-type(1) {
  border-radius: var(--radius);
  width: var(--sizeW);
  height: var(--sizeH);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translateZ(-1px);
  pointer-events: none;
  background-color: var(--color3);
  z-index: 2;
}
.card_3d span:nth-of-type(2) {
  border-radius: var(--radius);
  width: var(--sizeW);
  height: var(--sizeH);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transform: translateZ(calc(-1 * var(--depth)));
  pointer-events: none;
  background-color: var(--color2);
}
.card_3d span:nth-of-type(3) {
  border-radius: var(--radius);
  width: var(--sizeW);
  height: var(--sizeH);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transform: translateZ(calc(1px + -1 * var(--depth)));
  pointer-events: none;
  background-color: var(--color3);
}
.card_3d span:nth-of-type(4) {
  position: absolute;
  top: 0;
  left: calc(var(--sizeW) / 2);
  width: var(--depth);
  height: 100%;
  z-index: 10;
  transform: rotateY(90deg) translateX(calc(var(--depth) / 2));
  background-color: rgb(0, 110, 255);
  pointer-events: none;
  background-color: var(--color3);
}
.card_3d span:nth-of-type(5) {
  position: absolute;
  top: calc(var(--sizeH) / 2);
  left: 0;
  width: 100%;
  height: var(--depth);
  z-index: 10;
  transform: rotateX(90deg) translateY(calc(-1 * var(--depth) / 2));
  background-color: rgb(0, 110, 255);
  pointer-events: none;
  background-color: var(--color3);
}
.card_3d span:nth-of-type(6) {
  position: absolute;
  top: 0;
  left: 5%;
  width: 90%;
  height: var(--depth);
  background-color: var(--color3);
  z-index: 10;
  transform: rotateX(-90deg);
  pointer-events: none;
  transform-origin: top;
}
.card_3d span:nth-of-type(7) {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  height: var(--depth);
  background-color: var(--color3);
  z-index: 10;
  transform: rotateX(90deg);
  pointer-events: none;
  transform-origin: bottom;
}
/*!***************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./app/ui/pages/prices/style.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************/
.prices_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 0;
  margin: 0;
  gap: 1rem;
}
@media screen and (max-width: 576px) {
  .prices_container {
    gap: 1rem;
  }
}

.prices_container_sub {
  display: grid;
  flex-direction: column;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70%;
  padding-inline: 3rem;
  gap: 3rem;
}
.prices_container_sub .card_container {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .prices_container_sub {
    gap: 1rem;
  }
  .prices_container_sub .card_container {
    display: flex;
    width: 100%;
    height: 60vh;
  }
}
@media screen and (max-width: 576px) {
  .prices_container_sub {
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 80%;
    gap: 1rem;
  }
  .prices_container_sub .card_container {
    width: 100%;
    height: 100%;
  }
}

.cards_transformY {
  transform: rotateY(-180deg);
}

.button_anim_glowing {
  animation: 3s linear infinite running scale;
}
@keyframes scale {
  33% {
    box-shadow: gold 0px 0px 100px 10px;
    box-shadow: transparent 0px 5px 15px;
    box-shadow: gold 0px 0px 100px 10px;
  }
}
/*!*************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./app/ui/pages/team/style.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************/
.team_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100svh;
  padding: 0;
  margin: 0;
  gap: 2rem;
  margin-top: 50px;
}
.team_container h1 {
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 576px) {
  .team_container {
    gap: 1rem;
  }
}

.team_container_sub {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 70%;
  padding-inline: 3rem;
  gap: 3rem;
}
.team_container_sub .card_container {
  display: flex;
  width: 25vw;
  height: 100%;
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .team_container_sub {
    gap: 1rem;
    height: 60vh;
  }
  .team_container_sub .card_container {
    display: flex;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 576px) {
  .team_container_sub {
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: repeat(2, 50%);
    gap: 1rem;
    height: 90%;
  }
  .team_container_sub .card_container {
    width: 90%;
    height: 100%;
  }
}
/*!************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./app/ui/components/profile_3d/style.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************/
.profile_3d {
  --color1: #1c4cf8;
  --color2: #4c72fa;
  --color3: #849efd;
  --sizeW: 100%;
  --sizeH: 100%;
  --radius: 1rem;
  --depth: 30px;
  border: none;
  outline: none;
  position: relative;
  width: var(--sizeW);
  height: var(--sizeH);
  border-radius: var(--radius);
  transform-style: preserve-3d;
  cursor: pointer;
  background-color: var(--color2);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.5s, scale 0.4s, opacity 0.1s, scale 0.5s;
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
}
.profile_3d:hover {
  scale: 1.1;
}
.profile_3d span:nth-of-type(1) {
  border-radius: var(--radius);
  width: var(--sizeW);
  height: var(--sizeH);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translateZ(-1px);
  pointer-events: none;
  background-color: var(--color3);
  z-index: 2;
}
.profile_3d span:nth-of-type(2) {
  border-radius: var(--radius);
  width: var(--sizeW);
  height: var(--sizeH);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transform: translateZ(calc(-1 * var(--depth)));
  background-color: var(--color2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.profile_3d span:nth-of-type(3) {
  border-radius: var(--radius);
  width: var(--sizeW);
  height: var(--sizeH);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transform: translateZ(calc(1px + -1 * var(--depth)));
  pointer-events: none;
  background-color: var(--color3);
}
.profile_3d span:nth-of-type(4) {
  position: absolute;
  top: 0;
  left: calc(var(--sizeW) / 2);
  width: var(--depth);
  height: 100%;
  z-index: 10;
  transform: rotateY(90deg) translateX(calc(var(--depth) / 2));
  background-color: rgb(0, 110, 255);
  pointer-events: none;
  background-color: var(--color3);
}
.profile_3d span:nth-of-type(5) {
  position: absolute;
  top: calc(var(--sizeH) / 2);
  left: 0;
  width: 100%;
  height: var(--depth);
  z-index: 10;
  transform: rotateX(90deg) translateY(calc(-1 * var(--depth) / 2));
  background-color: rgb(0, 110, 255);
  pointer-events: none;
  background-color: var(--color3);
}
.profile_3d span:nth-of-type(6) {
  position: absolute;
  top: 0;
  left: 5%;
  width: 90%;
  height: var(--depth);
  background-color: var(--color3);
  z-index: 10;
  transform: rotateX(-90deg);
  pointer-events: none;
  transform-origin: top;
}
.profile_3d span:nth-of-type(7) {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  height: var(--depth);
  background-color: var(--color3);
  z-index: 10;
  transform: rotateX(90deg);
  pointer-events: none;
  transform-origin: bottom;
}

.profile_3d_image {
  width: 100%;
  height: 70%;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(#d896ff, #4d1b7b);
}
.profile_3d_image img {
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
  border-radius: var(--radius) var(--radius) 0 0;
}
.profile_3d_image div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: -32px;
  width: 100%;
}
.profile_3d_image div img {
  width: 64px;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
}
.profile_3d_image div h1 {
  color: white;
  font-weight: bolder;
  font-size: 1rem;
}
.profile_3d_image div h2 {
  color: white;
  font-weight: normal;
  font-size: 0.8rem;
}

.profile_3d_description {
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.profile_3d_description h3 {
  font-size: 0.7rem;
  color: gray;
}
.profile_3d_description h4 {
  font-size: 0.7rem;
  color: gray;
  font-weight: bold;
  color: black;
}

.profile_3d_back {
  width: 100%;
  height: 100%;
  text-align: center;
  transform: scale(-1, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.profile_3d_back h6 {
  font-size: 0.7rem;
}
.profile_3d_back img {
  align-self: center;
  width: 50px;
  height: 50px;
}
.profile_3d_back .profile_3d_icons {
  transform: scale(-1, 1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: 100%;
  justify-content: center;
  align-items: center;
  align-self: center;
}
.profile_3d_back .profile_3d_icons div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile_3d_back .profile_3d_icons img {
  align-self: center;
  transition: all 0.2s;
  transform: scale(-1, 1);
  width: 50px;
  height: 50px;
  -o-object-fit: fill;
     object-fit: fill;
}
.profile_3d_back .profile_3d_icons img:hover {
  scale: 1.3;
}
.profile_3d_back .profile_3d_icons div:nth-of-type(2) img {
  padding: 0.4rem;
}
.profile_3d_back .profile_3d_icons div:nth-of-type(1) img {
  padding: 0.4rem;
}
.profile_3d_back .profile_3d_icons div:nth-of-type(5) img {
  padding: 0.1rem;
}
.profile_3d_back .profile_3d_icons div:nth-of-type(4) img {
  padding: 0.1rem;
}
.profile_3d_back .profile_3d_description_back {
  position: relative;
  background-color: white;
  width: 100%;
  flex-direction: column;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 8px;
  text-align: center;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}
.profile_3d_back .profile_3d_description_back img {
  position: absolute;
  top: -25px;
}
.profile_3d_back .profile_3d_description_back .dbd {
  padding-block: 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 8px;
}
.profile_3d_back .profile_3d_description_back h3 {
  font-size: 0.7rem;
  color: gray;
}
.profile_3d_back .profile_3d_description_back h4 {
  font-size: 0.7rem;
  color: gray;
  font-weight: bold;
  color: black;
}
.profile_3d_back .profile_3d_header {
  background: linear-gradient(#d896ff, #4d1b7b);
  width: 100%;
  height: 20%;
  background-color: white;
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0.5;
}
.profile_3d_back .profile_3d_header h1 {
  color: white;
  font-weight: bolder;
  font-size: 1rem;
}
.profile_3d_back .profile_3d_header h2 {
  color: white;
  font-weight: normal;
  font-size: 0.8rem;
}
