body {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  margin: 0;
}

.container > div {
  width: 100%;
  height: 100vh;
  scroll-snap-align: start;
  color: white;
}
.container {
  scroll-snap-type: y mandatory;
  overflow: scroll;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 1;
  scroll-behavior: smooth;
}

.background {
  background-color: #121824;
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.slideContent {
  height: 70vh;
  width: 90%;
}
.texture {
  height: 70vh;
  width: 90%;
  background-image: url("./images/TextureTile2.png");
  background-size: 100px;
  border-radius: 20px;
  box-shadow: 8px 8px 8px 0px rgba(0, 0, 0, 0.45);
}

.logo-container {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  background-color: gray;
  border-radius: 10px;
  background: rgb(40, 42, 54);
  background: linear-gradient(180deg, rgba(40, 42, 54, 0.9) 0%, #121824 100%);
  box-shadow: 0px 0px 40px 25px rgb(0 0 0 / 45%);
}
.logo-container img {
  width: 95%;
}
.footer {
  position: fixed;
  bottom: 0;
  color: lightgray;
  z-index: 2;
  left: 0;
  right: 0;
  background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.2)
    ),
    url("images/texture3.png");
  background-size: cover;
  display: flex;
  justify-content: center;
  font-size: 15px;
}

.footer p:last-of-type {
  border-left: 2px solid #ad2330;
}
.footer p {
  padding: 5px 20px;
}

.header {
  position: absolute;
  top: 0;
  z-index: 2;
  left: 0;
  right: 0;
  background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.2)
    ),
    url("images/texture3.png");
  background-size: cover;
}
.header ul {
  padding: 10px 0px;
  text-align: center;
}
.header ul li {
  list-style: none;
  display: inline-block;
  color: white;
}
.header ul li a {
  color: lightgray;
  text-decoration: none;
  cursor: pointer;
  padding: 10px 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.header ul li a.active {
  background-image: linear-gradient(
    to bottom,
    rgba(29, 25, 42, 1),
    rgba(80, 80, 80, 1)
  );
  border-radius: 5px;
  box-shadow: 0px 0px 5px 5px rgb(0 0 0 / 45%);
  color: #ad2330;
  font-weight: bold;
}

.info-container .content {
  margin: 0 auto;
  padding: 35px;
  width: 70%;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 0 40px black;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.05) 20%,
    rgba(255, 255, 255, 0.1) 23%,
    rgba(255, 255, 255, 0.1) 26%,
    rgba(255, 255, 255, 0.05) 29%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0.05) 70%,
    rgba(255, 255, 255, 0.1) 73%,
    rgba(255, 255, 255, 0.1) 76%,
    rgba(255, 255, 255, 0.05) 79%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 5;
}
.info-container h2 {
  /* font-size: 65px; */
  font-size: 3em;
  margin: 0;
  text-align: center;
}
.info-container p {
  color: #c1c1c1;
  font-size: 18px;
}
.info-container p.color-white {
  color: white;
  font-size: 24px;
}
.info-container p span.color-red {
  color: #ad2330;
  font-size: 24px;
  font-weight: bold;
}
.red-background {
  margin-top: 40px;
  padding: 1px 0;
  background-color: #ad233166;
  border-radius: 10px;
  color: #c1c1c1;
  font-size: 20px;
}
.red-background > ul {
  list-style: none;
  padding: 0 20px;
}
.red-background > ul li > span:first-of-type::before {
  content: "+";
  background-color: #ad2330;
  margin-right: 20px;
  line-height: 12px;
  border: 1px solid #121824;
  color: #121824;
  padding: 0 0px;
  cursor: pointer;
}
.red-background ul li > span:first-of-type {
  display: flex;
  align-items: center;
  padding: 10px 0px;
  border-style: solid;
  border-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0)
    )
    1 0%;
  border-top: none;
  cursor: pointer;
}
/* .red-background ul li > span:hover {
  color: white;
  transition: 1s;
} */
.red-background ul li:last-of-type > span:first-of-type {
  border-bottom: none;
}
.service-details {
  display: none;
}
#services-list.active li .service-details {
  display: block;
}

#services-list.active > li {
  display: none;
}

#services-list.active > li.active {
  display: block;
}

#services-list.active > li.active > span:first-of-type::before {
  content: "<";
}
span.service-details ul {
  margin-top: 20px;
  list-style: none;
}

span.service-details li {
  padding-bottom: 10px;
  color: white;
  font-size: 0.8em;
}

span.service-details li::before {
  content: "\2022";
  color: red;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

#contact .content {
  padding: 0px !important;
  width: 80% !important;
}
#contact h2 {
  font-size: 2em;
  padding: 10px 25px;
}
#contact ul {
  padding: 0;
}
#contact ul li {
  list-style: none;
  padding: 10px 25px;
}
#contact ul li:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.1);
}
#contact ul li > div p {
  color: white;
  font-size: 20px;
}
#contact ul li img {
  width: 35px;
  height: 35px;
}
#contact ul li p {
  font-size: 15px;
  margin: 0;
}
/* Single class styles */
.info-image img {
  width: 80%;
  margin: 0 auto;
  z-index: 5;
}
.info-image-back {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.max-height-100 {
  max-height: 100%;
}
.height-100 {
  height: 100%;
}
.flex {
  display: flex;
}
.flex-1 {
  flex: 1;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: flex-end;
}
.flex-column {
  flex-direction: column;
}

.center {
  text-align: center;
}
.relative {
  position: relative;
}

.invert {
  filter: invert(100%);
}

.opacity-half {
  opacity: 0.5;
}
.justify-center {
  justify-content: center;
}

#canvas-circuit {
  position: absolute;
  top: 0;
  left: 0;
}
.home-button,
.menu-button {
  background: rgb(173, 35, 48);
  background: linear-gradient(
    135deg,
    rgba(173, 35, 48, 1) 0%,
    rgba(185, 48, 61, 1) 15%,
    rgba(223, 94, 107, 1) 22%,
    rgba(223, 94, 107, 1) 28%,
    rgba(185, 48, 61, 1) 35%,
    rgba(173, 35, 48, 1) 50%,
    rgba(185, 48, 61, 1) 65%,
    rgba(223, 94, 107, 1) 72%,
    rgba(223, 94, 107, 1) 78%,
    rgba(185, 48, 61, 1) 85%,
    rgba(173, 35, 48, 1) 100%
  );

  width: 120px;
  height: 100px;
  position: fixed;
  top: 45vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
}

.home-button {
  border-radius: 0 20px 20px 0;
  box-shadow: 8px 8px 8px 0px rgb(0 0 0);
  opacity: 0.7;
  transition: 1s;
  left: -120px;
}

.menu-button img,
.home-button img {
  width: 80px;
}

.menu-button {
  right: 0;
  border-radius: 20px 0px 0px 20px;
  box-shadow: 8px 8px 8px 0px rgb(0 0 0);
  opacity: 0.7;
  transition: 1s;
  right: -120px;
}
.menu-button .menu-icon {
  display: none;
}
.menu-icon > div {
  display: block;
  width: 50px;
  height: 5px;
  background-color: black;
  margin: 6px 0;
  border-radius: 5px;
  transition: transform 0.5s ease-in-out;
}
.home-button.display {
  transition: 1s;
  left: 0;
}
.menu-button.display {
  transition: 1s;
  right: 0;
}
.info-image-back canvas {
  position: absolute;
  top: 0;
  left: 0;
}
#binary {
  opacity: 0.7;
}
#matrix {
  opacity: 0.7;
}
.contact-us-section {
  position: absolute;
  bottom: -60px;
  width: 100%;
  text-align: center;
}
.contact-us-section button {
  background: rgb(173, 35, 48);
  background: linear-gradient(
    135deg,
    rgba(173, 35, 48, 0.7) 0%,
    rgba(185, 48, 61, 0.7) 15%,
    rgba(223, 94, 107, 0.7) 22%,
    rgba(223, 94, 107, 0.7) 28%,
    rgba(185, 48, 61, 0.7) 35%,
    rgba(173, 35, 48, 0.7) 50%,
    rgba(185, 48, 61, 0.7) 65%,
    rgba(223, 94, 107, 0.7) 72%,
    rgba(223, 94, 107, 0.7) 78%,
    rgba(185, 48, 61, 0.7) 85%,
    rgba(173, 35, 48, 0.7) 100%
  );
  border: none;
  font-size: 25px;
  border-radius: 10px;
  padding: 10px 25px;
  cursor: pointer;
  box-shadow: 8px 8px 8px 0px rgb(0 0 0);
}
.contact-us-section button a {
  color: white;
  text-decoration: none;
}

.mobile {
  display: none;
}
.service-details {
  display: none;
}

.service-details.active {
  display: block;
}

@media only screen and (max-width: 800px) {
  .contact-us-section {
    display: none;
  }
  .contact-us-section.mobile {
    display: block;
  }
}
/*CSS code for phones landscape */
@media only screen and (max-height: 500px) and (orientation: landscape) {
  .slide:not(:first-of-type) .slideContent {
    flex-direction: unset !important;
  }
  .slide:not(:first-of-type) .slideContent > div.flex {
    height: 100% !important;
    flex-direction: initial;
    overflow: scroll;
  }
  .info-container .content {
    width: 100% !important;
    padding: 10px;
  }
  .info-container h2 {
    font-size: 1.5em !important;
  }
  #hxg {
    display: none;
  }
  .info-container p,
  .red-background {
    font-size: 12px !important;
  }
  .home-button,
  .menu-button {
    width: 60px !important;
    height: 50px !important;
  }

  .menu-button {
    border-radius: 10px 0px 0px 10px;
  }
  .home-button {
    border-radius: 0px 10px 10px 0px;
  }
  .menu-button img,
  .home-button img {
    width: 40px !important;
  }
  .menu-icon > div {
    width: 20px !important;
    height: 3px !important;
  }
  .header ul {
    margin: 5px;
    padding: 10px 0;
  }
  .contact-us-section {
    width: 50%;
    bottom: unset;
    z-index: 5;
  }
  .header ul li a,
  .footer p {
    font-size: 15px;
  }
  .contact-us-section button {
    font-size: 20px;
  }
  .contact-us-section {
    display: block;
  }
  .contact-us-section.mobile {
    display: none;
  }
}

@media only screen and (max-width: 1000px) {
  body {
    font-size: 15px;
  }
  .slide:not(:first-of-type) .slideContent {
    flex-direction: column-reverse;
  }
  .slide:not(:first-of-type) .slideContent > div.flex {
    height: 50%;
  }
  .home-button,
  .menu-button {
    width: 100px;
    height: 80px;
  }
  .menu-button img,
  .home-button img {
    width: 60px;
  }
  .menu-icon > div {
    width: 40px;
  }
  #hxg {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  body {
    font-size: 12px;
  }

  .slideContent,
  .texture {
    height: 95vh;
  }
  .info-container h2,
  #contact h2 {
    font-size: 2.5em;
  }
  .info-container p,
  .red-background {
    font-size: 1.25em;
  }
  #contact ul li p {
    font-size: 1em;
  }
  #contact ul li > div p {
    font-size: 1.25em;
  }

  .contact-us-section {
    display: none;
  }
  .home-button {
    bottom: 0px;
    border-radius: 10px 10px 0 0;
    top: unset;
  }
  .menu-button {
    top: 0px;
    border-radius: 0 0 10px 10px;
  }
  .menu-button .menu-icon {
    display: block;
  }
  .menu-button img {
    display: none;
  }
  .home-button,
  .menu-button {
    width: 60px;
    height: 70px;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
  .footer {
    font-size: 10px;
    justify-content: space-between;
  }
  .footer p:last-of-type {
    border: none;
  }
  .footer p {
    padding: 0 10px;
  }
  .menu-icon > div {
    width: 25px;
    height: 3px;
  }
  .menu-button img,
  .home-button img {
    width: 40px;
  }
  .info-container .content {
    width: 85% !important;
    padding: 15px;
    margin-top: 60px;
    z-index: 5;
  }
  #contact .content {
    width: 100% !important;
  }
  #hxg {
    display: none;
  }
  .logo-container {
    width: 90%;
  }

  .contact-us-section.mobile button {
    font-size: 25px;
  }
  .header {
    display: none;
  }
  .show-menu .header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: none;
  }
  .show-menu .header ul li {
    display: grid;
    margin: 40px 0px;
  }
  .show-menu .container {
    opacity: 0;
    transition: 1s;
  }
  .header ul li a {
    font-size: 25px;
  }
  .show-menu .menu-icon {
    position: relative;
    left: -5px;
    transition: 0.5s;
  }
  .show-menu .menu-icon div:nth-child(1) {
    transition: 0.5s ease-in-out;
    display: none;
  }
  .show-menu .menu-icon div:nth-child(2) {
    transition: transform 0.5s ease-in-out;
    transform: rotate(45deg) translateX(10px);
    -webkit-transform: rotate(45deg) translateX(10px);
    transform-origin: 30%;
    -webkit-transform-origin: 30%;
  }
  .show-menu .menu-icon div:nth-child(3) {
    transition: transform 0.5s ease-in-out;
    transform: rotate(-45deg) translateY(10px);
    -webkit-transform: rotate(-45deg) translateY(10px);
    transform-origin: 22%;
    -webkit-transform-origin: 22%;
  }
  #contact ul li {
    padding: 10px;
  }
  .home-button.display {
    bottom: -130px;
  }
}

@media only screen and (max-height: 800px) and (orientation: landscape) {
  body {
    font-size: 14px;
  }
  #contact ul li p {
    font-size: 12px;
  }
}

@media only screen and (max-width: 300px) {
  body {
    font-size: 8px;
  }
}
@media only screen and (max-height: 300px) and (orientation: landscape) {
  body {
    font-size: 8px;
  }
}
