@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --primary-color: #F4F0EC;
  --secondary-color: #D6C7C0;
  --text-color: black;
  --hdm-red: #F25022;
  --hdm-green: #7FBA00;
  --hdm-blue: #00A4EF;
  --hdm-yellow: #FFB900;
  --height-techno-closed: 140px;
  --height-techno-opened: 280px;
}

@font-face {
  font-family: "Robodron";
  src: url("Robodron_font/Robodron.ttf") format("truetype");
}
::-webkit-scrollbar {
  display: none;
}

body {
  background-color: var(--primary-color);
  margin: 0;
  padding: 0;
  transition: background-color 0.5s ease-in-out;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.header {
  display: flex;
  height: 100px;
  width: 100vw;
  margin: 0;
  position: fixed;
  background-color: transparent;
  transition: background-color 0.5s ease-in-out;
  z-index: 10;
}
.header .container {
  display: flex;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
}
.header .container .Logo {
  width: 50px;
  height: 50px;
  margin: 25px 0 0 75px;
  cursor: pointer;
  fill: var(--text-color);
  transition: fill 0.5s ease-in-out;
}
.header .container p {
  font-family: "Robodron", sans-serif;
  margin: auto 0 auto 70px;
  color: var(--text-color);
  transition: color 0.5s ease-in-out;
}
.header .container ul {
  margin: auto 0 auto auto;
  list-style-type: none;
  font-family: "Poppins", sans-serif;
}
.header .container ul li {
  display: inline;
  margin-right: 30px;
  cursor: pointer;
  color: var(--text-color);
  transition: color 0.5s ease-in-out;
  font-weight: 400;
  position: relative;
}
.header .container ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--hdm-red);
  opacity: 0;
  transition: opacity 300ms, transform 300ms;
}
.header .container ul li:hover::after,
.header .container ul li :focus::after {
  opacity: 1;
  transform: translate3d(0, 0.25em, 0);
}
.header .container .toggle-mode {
  width: 20px;
  height: 20px;
  margin: auto 20px;
  cursor: pointer;
  fill: var(--text-color);
  stroke: var(--text-color);
  transition: stroke 0.5s ease-in-out, fill 0.5s ease-in-out;
}

.website-content {
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 0;
}
.website-content section {
  width: 100%;
  height: 100vh;
  font-size: 50px;
  font-family: "Poppins", sans-serif;
  margin: 0 auto;
}
.website-content .nav1 {
  background: url("image/Wallpaper_Light.png");
  background-size: cover;
  transition: background 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  text-align: center;
}
.website-content .nav1 .title {
  height: 100%;
  width: 200px;
  display: flex;
  justify-content: center;
}
.website-content .nav1 .title .title-content {
  max-width: 200px;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.website-content .nav1 .title .title-content .number {
  width: 50px;
  font-family: "Robodron", sans-serif;
  font-size: 20px;
  padding: 0;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--text-color);
}
.website-content .nav1 .title .title-content .border {
  margin: 50px 0;
  height: 50px;
  width: 50%;
  border-right: 2px solid var(--text-color);
  transition: border-right 0.5s ease-in-out;
}
.website-content .nav1 .title .title-content svg {
  fill: var(--text-color);
  transition: fill 0.5s ease-in-out;
}
.website-content .nav1 .nav-content {
  width: calc(100vw - 200px);
  max-width: 1800px;
  height: 100%;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
}
.website-content .nav1 .nav-content .text {
  max-width: 1100px;
  margin: 0;
}
.website-content .nav1 .nav-content .text .p1 {
  font-weight: 400;
  font-size: 48px;
  text-align: center;
  padding: 0;
}
.website-content .nav1 .nav-content .text .borderline {
  width: 100px;
  border-top: 2px solid var(--hdm-red);
  margin: 30px auto;
  padding: 0;
}
.website-content .nav1 .nav-content .text .p2 {
  font-weight: 275;
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
  padding: 0;
}
.website-content .nav1 .nav-content .text .button {
  background-color: var(--hdm-red);
  cursor: pointer;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  padding: 10px 25px;
  margin: 0 auto;
  border-radius: 50px;
}
.website-content .nav1 .nav-content .text .button p {
  color: white;
  font-weight: 300;
  font-size: 24px;
  padding: 0;
}
.website-content .nav1 .nav-content .text .button svg {
  margin: auto 0 auto 20px;
}
.website-content .nav1 p {
  color: var(--text-color);
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
  padding: 20px;
  margin: 0;
}
.website-content .nav2 {
  text-align: center;
  display: flex;
  max-width: 2000px;
}
.website-content .nav2 .title {
  height: 100%;
  width: 200px;
  display: flex;
  justify-content: center;
}
.website-content .nav2 .title .title-content {
  max-width: 200px;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.website-content .nav2 .title .title-content .number {
  font-family: "Robodron", sans-serif;
  font-size: 20px;
  padding: 0;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--text-color);
}
.website-content .nav2 .title .title-content .border {
  margin: 50px 0;
  height: 50px;
  width: 50%;
  border-right: 2px solid var(--text-color);
  transition: border-right 0.5s ease-in-out;
}
.website-content .nav2 .title .title-content svg {
  fill: var(--text-color);
  transition: fill 0.5s ease-in-out;
}
.website-content .nav2 p {
  color: var(--text-color);
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
  padding: 20px;
  font-family: "Poppins", sans-serif;
  margin: 0;
}
.website-content .nav2 .tech-content {
  width: 100%;
  max-width: 1800px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1);
  margin: 0 auto;
}
.website-content .nav2 .tech-content .techno {
  width: 600px;
  height: 800px;
  margin: auto 0 auto 60px;
}
.website-content .nav2 .tech-content .techno p {
  font-size: 36px;
  font-weight: 200;
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.website-content .nav2 .tech-content .techno .cardTechno {
  height: 140px;
  width: 100%;
  cursor: pointer;
  border-radius: 0px;
  box-shadow: 0px 0px 0px 0px var(--secondary-color);
  border-top: solid 1px transparent;
  border-bottom: solid 1px var(--secondary-color);
  transition: box-shadow 0.5s ease-in-out, height 0.5s ease-in-out, border-radius 0.5s ease-in-out, border-bottom 0.5s ease-in-out, border-top 0.5s ease-in-out;
}
.website-content .nav2 .tech-content .techno .cardTechno .image {
  width: 100%;
  height: 0;
  opacity: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
  transition: height 0.5s ease-in-out;
}
.website-content .nav2 .tech-content .techno .cardTechno .image img, .website-content .nav2 .tech-content .techno .cardTechno .image svg {
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.website-content .nav2 .tech-content .techno .cardTechno .image svg {
  margin: auto 80px 35px 80px;
}
.website-content .nav2 .tech-content .techno .cardTechno .text {
  height: 140px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: auto;
}
.website-content .nav2 .tech-content .techno .border-bottom {
  border-top: solid 1px var(--secondary-color);
  border-bottom: solid 1px transparent;
}
.website-content .nav2 .tech-content .techno .border-top {
  border-top: solid 1px transparent;
  border-bottom: solid 1px var(--secondary-color);
}
.website-content .nav2 .tech-content .techno .active {
  height: 280px;
  border-radius: 20px;
  border-bottom: solid 1px transparent;
  box-shadow: 0px 0px 20px 0px var(--secondary-color);
  border-top: solid 1px transparent;
}
.website-content .nav2 .tech-content .techno .active .image {
  height: 140px;
  opacity: 1;
}
.website-content .nav2 .tech-content .techno .active .image img, .website-content .nav2 .tech-content .techno .active .image svg {
  opacity: 1;
}
.website-content .nav2 .tech-content .techno .active .text {
  height: 140px;
  display: flex;
}
.website-content .nav2 .tech-content .techno .see-more {
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  transition: background-color 0.5s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  margin: 20px auto 0 auto;
  border-radius: 50px;
  cursor: pointer;
}
.website-content .nav2 .tech-content .techno .see-more .card-text {
  font-size: 24px;
  margin-right: 20px;
  margin-left: 0;
  color: var(--text-color);
  transition: color 0.5s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.website-content .nav2 .tech-content .techno .see-more path {
  stroke: var(--text-color);
  transition: stroke 0.5s ease-in-out;
}
.website-content .nav2 .tech-content .techno .see-more:hover {
  background-color: var(--hdm-red);
}
.website-content .nav2 .tech-content .techno .see-more:hover .card-text {
  color: white;
}
.website-content .nav2 .tech-content .techno .see-more:hover path {
  stroke: white;
}
.website-content .nav2 .tech-content .description {
  width: 800px;
  height: 800px;
  margin: auto;
}
.website-content .nav2 .tech-content .description p {
  width: 100%;
  text-align: justify;
  font-size: 32px;
  font-weight: 275;
  padding: 0;
}
.website-content .nav2 .tech-content .description .p2 {
  margin-top: 32px;
  margin-bottom: 96px;
}
.website-content .nav2 .tech-content .description img {
  width: 350px;
}
.website-content .nav3 {
  text-align: center;
  display: flex;
  max-width: 2000px;
}
.website-content .nav3 .title {
  height: 100%;
  width: 200px;
  display: flex;
  justify-content: center;
}
.website-content .nav3 .title .title-content {
  max-width: 200px;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.website-content .nav3 .title .title-content .number {
  font-family: "Robodron", sans-serif;
  font-size: 20px;
  padding: 0;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--text-color);
}
.website-content .nav3 .title .title-content .border {
  margin: 50px 0;
  height: 50px;
  width: 50%;
  border-right: 2px solid var(--text-color);
  transition: border-right 0.5s ease-in-out;
}
.website-content .nav3 .title .title-content svg {
  fill: var(--text-color);
  transition: fill 0.5s ease-in-out;
}
.website-content .nav3 p {
  color: var(--text-color);
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
  padding: 20px;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.website-content .nav3 .card-container {
  height: 100%;
  max-width: 1800px;
  width: calc(100vw - 200px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.website-content .nav3 .card-container .card {
  width: 515px;
  height: 800px;
  border-radius: 20px;
  box-shadow: 0px 0px 20px 0px var(--secondary-color);
  transition: box-shadow 0.5s ease-in-out, transform 0.3s ease-in-out;
  margin: 50px;
  transform: scale(1);
}
.website-content .nav3 .card-container .card img {
  width: 515px;
  height: 400px;
  border-radius: 20px 20px 0px 0px;
}
.website-content .nav3 .card-container .card .card-title {
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 0;
}
.website-content .nav3 .card-container .card .card-separator {
  width: 100px;
  height: 1px;
  background-color: var(--hdm-red);
  margin: 7px auto 25px auto;
}
.website-content .nav3 .card-container .card .card-text {
  width: 465px;
  height: 200px;
  text-align: justify;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 1px;
  padding: 0;
  margin: 0 auto;
}
.website-content .nav3 .card-container .card .see-more {
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  transition: background-color 0.5s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  margin: 20px auto 0 auto;
  border-radius: 50px;
  cursor: pointer;
}
.website-content .nav3 .card-container .card .see-more .card-text {
  margin-right: 20px;
  margin-left: 0;
  color: var(--text-color);
  transition: color 0.5s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.website-content .nav3 .card-container .card .see-more path {
  stroke: var(--text-color);
  transition: stroke 0.5s ease-in-out;
}
.website-content .nav3 .card-container .card .see-more:hover {
  background-color: var(--hdm-red);
}
.website-content .nav3 .card-container .card .see-more:hover .card-text {
  color: white;
}
.website-content .nav3 .card-container .card .see-more:hover path {
  stroke: white;
}
.website-content .nav3 .card-container .card:hover {
  transform: translateY(-20px);
}
.website-content .nav4 {
  text-align: center;
  max-width: 2000px;
}
.website-content .nav4 .nav-content-footer {
  display: flex;
  height: calc(100% - 70px);
}
.website-content .nav4 .nav-content-footer .title {
  height: 100%;
  width: 200px;
  display: flex;
  justify-content: center;
}
.website-content .nav4 .nav-content-footer .title .title-content {
  max-width: 200px;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.website-content .nav4 .nav-content-footer .title .title-content .number {
  font-family: "Robodron", sans-serif;
  font-size: 20px;
  padding: 0;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--text-color);
}
.website-content .nav4 .nav-content-footer .title .title-content .border {
  margin: 50px 0;
  height: 50px;
  width: 50%;
  border-right: 2px solid var(--text-color);
  transition: border-right 0.5s ease-in-out;
}
.website-content .nav4 .nav-content-footer .title .title-content svg {
  fill: var(--text-color);
  transition: fill 0.5s ease-in-out;
}
.website-content .nav4 .nav-content-footer .nav-content {
  width: calc(100vw - 200px);
  max-width: 1800px;
  height: 100%;
  text-align: left;
  display: flex;
  transform: scale(1);
  margin: 0 auto;
}
.website-content .nav4 .nav-content-footer .nav-content .text {
  width: calc((100vw - 200px) / 2);
  max-width: 900px;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  margin: auto 0;
}
.website-content .nav4 .nav-content-footer .nav-content .text a {
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.5s ease-in-out;
}
.website-content .nav4 .nav-content-footer .nav-content .text .pr1 {
  font-weight: 600;
  font-size: 32px;
}
.website-content .nav4 .nav-content-footer .nav-content .text .pr2 {
  font-weight: 300;
  font-size: 20px;
}
.website-content .nav4 .nav-content-footer .nav-content .text .collab {
  text-align: justify;
}
.website-content .nav4 .nav-content-footer .nav-content .frame {
  width: 825px;
  height: 640px;
  box-shadow: 0px 0px 30px 0px var(--secondary-color);
  transition: box-shadow 0.5s ease-in-out;
  border-radius: 20px;
  margin: auto 20px auto auto;
}
.website-content .nav4 .nav-content-footer p {
  color: var(--text-color);
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
  padding: 20px;
  margin: 0;
}
.website-content .nav4 .footer {
  height: 70px;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  display: flex;
  text-align: left;
  border-top: solid 2px var(--secondary-color);
  transition: border-top 0.5s ease-in-out;
}
.website-content .nav4 .footer p {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  margin: auto 0 auto 0;
  color: var(--text-color);
  transition: color 0.5s ease-in-out;
}
.website-content .nav4 .footer .copyright-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.website-content .nav4 .footer .copyright-content .Copyright {
  margin-left: 10px;
}
.website-content .nav4 .footer .copyright-content .Logo {
  width: 30px;
  height: 30px;
  margin-left: 100px;
  fill: var(--text-color);
  transition: fill 0.5s ease-in-out;
}
.website-content .nav4 .footer .Confi {
  margin: auto 100px auto auto;
}

@media screen and (max-width: 1900px) {
  .nav2 .tech-content {
    zoom: 80%;
  }
  .nav3 .card-container .card {
    zoom: 80%;
  }
  .nav4 .nav-content {
    zoom: 80%;
  }
}
@media screen and (max-width: 1700px) {
  .nav2 .tech-content {
    zoom: 70%;
  }
  .nav3 .card-container .card {
    zoom: 70%;
  }
  .nav4 .nav-content {
    zoom: 70%;
  }
}
@media screen and (max-width: 1500px) {
  .header .container ul {
    display: none;
  }
  .header .container .toggle-mode {
    margin: auto 20px auto auto;
  }
  .website-content .nav1 {
    width: 100%;
  }
  .website-content .nav1 .title {
    display: none;
  }
  .website-content .nav1 .nav-content {
    width: 100%;
  }
  .website-content .nav1 .nav-content .text {
    width: 80%;
  }
  .website-content .nav2 {
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    margin-top: 200px;
  }
  .website-content .nav2 .title {
    display: none;
  }
  .website-content .nav2 .tech-content {
    flex-direction: column;
    width: 100%;
    zoom: 100%;
  }
  .website-content .nav2 .tech-content .techno {
    margin: 150px auto;
    width: 90%;
  }
  .website-content .nav2 .tech-content .techno p {
    font-size: 24px;
  }
  .website-content .nav2 .tech-content .techno .see-more .card-text {
    font-size: 20px;
  }
  .website-content .nav2 .tech-content .description {
    height: -moz-fit-content;
    height: fit-content;
  }
  .website-content .nav3 {
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    margin-top: 300px;
  }
  .website-content .nav3 .title {
    display: none;
  }
  .website-content .nav3 .card-container {
    flex-direction: column;
    width: 100%;
  }
  .website-content .nav3 .card-container .card {
    zoom: 100%;
  }
  .website-content .nav4 {
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    margin-top: 300px;
  }
  .website-content .nav4 .nav-content-footer .title {
    display: none;
  }
  .website-content .nav4 .nav-content-footer .nav-content {
    flex-direction: column;
    align-items: start;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    zoom: 100%;
  }
  .website-content .nav4 .nav-content-footer .nav-content .text {
    width: 90%;
    margin: 0 auto;
    height: -moz-fit-content;
    height: fit-content;
  }
  .website-content .nav4 .nav-content-footer .nav-content .text p {
    padding-left: 0;
    padding-right: 0;
  }
  .website-content .nav4 .nav-content-footer .nav-content .frame {
    height: 80vh;
    width: 90%;
    margin: 50px auto;
  }
}
@media screen and (max-width: 1100px) {
  .website-content .nav1 .nav-content .text .p1 {
    font-size: 36px;
  }
  .website-content .nav1 .nav-content .text .p2 {
    font-size: 20px;
  }
  .website-content .nav1 .nav-content .text .button p {
    font-size: 16px;
  }
  .website-content .nav2 .tech-content .description {
    width: 100%;
  }
  .website-content .nav2 .tech-content .description p {
    font-size: 20px;
    width: 90%;
    margin: 0 auto;
    text-align: justify;
  }
}
@media screen and (max-width: 700px) {
  .header {
    height: 60px;
  }
  .header .container {
    height: 100%;
  }
  .header .container .Logo {
    width: 40px;
    height: 40px;
    margin: auto 20px;
  }
  .header .container p {
    margin: auto 0;
  }
  .website-content .nav2 .tech-content {
    flex-direction: column;
    width: 100%;
    zoom: 80%;
  }
  .website-content .nav3 .card-container .card {
    zoom: 80%;
  }
  .website-content .nav4 .footer {
    height: 120px;
    flex-direction: column;
  }
  .website-content .nav4 .footer .copyright-content {
    margin: 0 auto;
    height: 70px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .website-content .nav4 .footer .copyright-content .Logo {
    margin: auto 0;
  }
  .website-content .nav4 .footer .Confi {
    margin: auto;
  }
}
@media screen and (max-width: 500px) {
  .header .container p {
    font-size: 10px;
  }
  .website-content .nav2 .tech-content {
    flex-direction: column;
    width: 100%;
    zoom: 60%;
  }
  .website-content .nav3 .card-container .card {
    zoom: 60%;
  }
  .website-content .nav4 .nav-content-footer .nav-content {
    zoom: 80%;
  }
}
@media screen and (max-width: 350px) {
  .header .container p {
    font-size: 10px;
  }
  .website-content .nav2 .tech-content {
    flex-direction: column;
    width: 100%;
    zoom: 55%;
  }
  .website-content .nav3 .card-container .card {
    zoom: 50%;
  }
}/*# sourceMappingURL=hdm_style.css.map */