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

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a {
  color: white;
  text-decoration: none;
}

body {
  overflow-x: hidden;
  font-family: Montserrat;
  box-sizing: border-box;
  background: #000;
  color: white;
}

@media only screen and (min-width: 720px) {
  .scroll-wrapper {
    height: 100vh;
    overflow: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
  }

  section {
    height: 100vh;
    scroll-snap-align: start;
  }
}
.side-nav {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 11;
}

.side-nav ul {
  list-style: none;
}

.side-nav li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
}

.side-nav li p:hover {
  color: rgba(255, 255, 255, 0.5);
}

.nav-active p {
  border-bottom: solid 2px white;
}

.section-active {
  animation: slide-in-rot 1s;
}

@keyframes slide-in-rot {
  0% {
    transform: translate(-100%, 0);
  }
  90% {
    transform: translate(8%, 0%);
    transform: rotate(15deg);
  }
  100% {
    transform: translate(0, 0);
    transform: rotate(0deg);
  }
}

section {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow-y: hidden;
  overflow-x: hidden;
}

.vl {
  border-left: 1px solid white;
  height: 30%;
  position: fixed;
  top: 5%;
  left: 40px;
}

.x {
  position: fixed;
  font-family: Alphacentauri;
  top: 36%;
  left: 40px;
  font-size: 2rem;
  transform: translateX(-50%);
}

.vl-2 {
  border-left: 1px solid white;
  height: 30%;
  width: 10%;
  border-bottom: 1px solid white;
  position: fixed;
  bottom: 5%;
  left: 40px;
  z-index: 11;
}

.socials {
  position: fixed;
  bottom: 5%;
  width: 10%;
  padding-left: 10px;
  cursor: pointer;
}

.socials svg {
  width: 50px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: white;
}

.socials svg:hover {
  color: rgba(255, 255, 255, 0.3);
}

.about-img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  animation: move-x 2s infinite alternate-reverse;
}
@keyframes move-x {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 5%);
  }
}

.name {
  font-family: Alphacentauri;
  position: absolute;
  top: 12%;
  font-size: 5rem;
  left: 50%;
  transform: translateX(-50%);
}

.sde {
  font-size: 2rem;
  top: calc(13rem + 12%);
  left: 60%;
  position: absolute;
}

@media only screen and (max-width: 1159px) {
  .name {
    font-size: 3rem;
  }
  .sde {
    font-size: 2rem;
    top: calc(7rem + 12%);
  }
}

@media only screen and (max-width: 720px) {
  .name {
    font-size: 1.5rem;
  }
  .sde {
    font-size: 1rem;
    top: calc(5rem + 12%);
  }
}

@media only screen and (max-width: 376px) {
  .name {
    top: 30%;
    font-size: 1.3rem;
  }
  .sde {
    font-size: 1rem;
    top: calc(4rem + 30%);
  }
  .about-img {
    width: 100%;
  }
  .socials svg {
    width: 32px;
  }
  .side-nav li {
    font-size: 0.9rem;
  }
}

#particle-js {
  width: 100vw;
  height: 100vh;
  position: absolute;
}

.bg-text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, 50%);
  opacity: 0.3;
  z-index: -3;
}

.bg-text h1 {
  font-size: 10rem;
  margin: 0;
  text-align: center;
  font-family: Alphacentauri;
  text-transform: uppercase;
  -webkit-text-stroke: 3px #4c4c4c;
  color: transparent !important;
}

.products-cont {
  width: 100%;
  height: 80%;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.big-images {
  width: 40%;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.big-image img {
  width: 100%;
  height: 50%;
}

.big-image img:hover {
  rotate: 10deg;
}

.big-image[data-active] {
  opacity: 1;
  transform: translateX(0%);
  display: flex;
}

.big-image {
  opacity: 0;
  display: none;
  transform: translateX(-100%);
}

.thumbnails {
  width: 120%;
  display: flex;
  position: absolute;
  left: -10%;
  bottom: -1%;
}

.thumb {
  cursor: pointer;
}

.thumb img {
  width: 100%;
  border: rgb(0, 0, 0) 5px solid;
  outline: white 1px solid;
  border-top-width: 10px;
  border-bottom-width: 10px;
  cursor: pointer;
}

.thumb img:hover,
.thumb[data-thumb-active] {
  filter: grayscale(100%);
  scale: 1.2;
}

.thumb.content {
  background-color: #000;
  flex-shrink: 0;
  width: 20%;
  padding: 0 5%;
  align-content: center;
  border: 2px solid white;
}

.thumb.content p {
  margin: 0;
  font-size: 1rem;
}

.thumb .desc {
  opacity: 0;
  display: none;
}

.thumb .desc[data-desc-active] {
  opacity: 1;
  transform: translateX(0%);
  display: inline-block;
}
.nav-slider {
  position: absolute;
  display: flex;
  right: 0;
  cursor: pointer;
  transform: translateY(-60%);
}

.nav-slider button {
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 2em;
  font-size: 1.5rem;
  color: black;
  background-color: white;
  font-family: monospace;
  transition: inherit;
  transition-duration: 300ms;
  cursor: pointer;
}

@media only screen and (max-width: 1050px) {
  .thumb.content {
    position: absolute;
    right: 0;
    top: 110%;
    width: 40%;
    outline: none;
    border: none;
    text-align: right;
  }

  .thumb.content .desc p {
    font-size: 1.2rem;
  }

  .nav-slider button {
    display: none;
  }

  .big-images {
    width: 60%;
  }
}

.ed {
  width: 20%;
  height: 40%;
  position: relative;
  top: 10%;
  left: 10%;
}
.ed img,
.misc img {
  cursor: pointer;
  filter: grayscale(100%);
}

.ed img:hover,
.misc img:hover {
  scale: 1.3;
  filter: grayscale(0%);
}

.stats-img {
  z-index: 11;
}

.img-active {
  scale: 1.2;
  filter: grayscale(0%) !important;
}

.ms {
  width: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.amrita {
  width: 45%;
  position: absolute;
  top: 15%;
  left: 0;
}

.columbia {
  width: 45%;
  position: absolute;
  top: 15%;
  right: 0;
}

.kv {
  width: 50%;
  position: absolute;
  top: 50%;
  right: 0;
}

.misc {
  width: 30%;
  height: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
}

.explore {
  width: 50%;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}

.sing {
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
}

.read {
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 1050px) {
  .ms,
  .kv,
  .columbia,
  .sing,
  .read,
  .explore {
    width: 55%;
  }

  .kv {
    top: 40%;
  }

  .explore {
    top: 20%;
  }
}

@media only screen and (max-width: 720px) {
  .kv {
    top: 30%;
  }

  .explore {
    top: 15%;
  }

  .stats-item li {
    font-size: 0.9rem;
  }

  .stats-item h3,
  .stats-item h2 {
    font-size: 1rem;
  }
  .stats-item h1 {
    font-size: 1.5rem !important;
  }

  .artsy,
  .analytical {
    display: none;
  }
}

#sec3 .bg-text {
  top: 0;
}

.stats {
  width: 50%;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow-y: scroll;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
}

.stats-item-active {
  display: block !important;
  animation: slide-in 1s;
}

@keyframes slide-in {
  0% {
    transform: translate(-100%, 0);
  }
  90% {
    transform: translate(8%, 0%);
  }
  100% {
    transform: translate(0, 0);
  }
}

.stats-item {
  padding: 6%;
  display: none;
}

.stats-item h1 {
  font-family: Alphacentauri;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0;
}

.stats-item h2 {
  text-align: center;
  margin: 0;
}

.stats-item h3 {
  text-align: center;
  font-weight: 200;
}

.stats-item ul {
  line-height: 1.5rem;
  list-style-type: square;
}

.stats-item ul li::marker {
  color: rgb(71, 154, 255);
}
.al {
  width: 80%;
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.artsy {
  position: absolute;
  bottom: 10%;
  left: 10%;
}
.analytical {
  text-orientation: upright;
  writing-mode: tb;
  font-family: Alphacentauri;
  font-size: 2rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 15px;
}

.sec6-head {
  font-family: Montserrat;
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-30%);
  z-index: 2;
  font-size: 2rem;
}

.art {
  width: 40vw;
  height: 100vh;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 11vw;
  cursor: pointer;
}

.ana {
  width: 50vw;
  height: 100vh;
  position: absolute;
  left: 51vw;
  top: 0;
  z-index: 10;
  cursor: pointer;
}

.art:hover,
.ana:hover {
  background-color: white;
  opacity: 0.1;
}

#contact-form {
  width: 60%;
  margin: 0 auto;
  z-index: 11;
}

.hide {
  display: none;
}

#particle-js {
  z-index: -1;
  position: fixed;
}

#contact-form input,
#contact-form textarea {
  display: block;
  width: 99%;
  margin: 0 auto 3%;
  min-height: 35px;
  border-radius: 2px;
  background-color: black;
  border: 2px #7bbbff solid;
  color: white;
  font-size: 1.1rem;
  z-index: 11;
  font-family: Montserrat;
}

.btn-three {
  transition: all 0.5s;
  position: relative;
  color: white !important;
}

.btn-three::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.btn-three:hover::before {
  opacity: 0;
  transform: scale(0.5, 0.5);
}

.btn-three::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;

  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: scale(1.2, 1.2);
}

.btn-three:hover::after {
  opacity: 1;
  transform: scale(1, 1);
}

.btn-three button {
  border: none;
  background-color: rgba(0, 0, 0, 0);
  color: white;
  width: 100%;
  font-size: 1.1rem;
  font-family: Montserrat;
  padding: 1%;
  cursor: pointer;
}

.contact .head {
  font-family: Alphacentauri;
  font-size: 2.1rem;
  margin-top: 5%;
  text-align: center;
}

.contact .subhead {
  font-family: Montserrat;
  font-size: 1.1rem;
  text-align: center;
}
.app {
  position: fixed;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 650px;
  font-family: "Raleway", sans-serif;
}
.app .controls {
  height: 50px;
  display: flex;
  align-items: center;
  background: #3d9bff;
  padding: 0 10px;
}

.app .controls .type,
.app .controls .size,
.app .controls .color {
  margin: 0 10px;
}
.app .controls .type input {
  display: none;
}

.app .type img {
  height: 30px;
}
.app .controls .type label {
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  margin: 0 2px;
  cursor: pointer;
}
.app .controls .type input:checked + label {
  background: #111;
  border-radius: 10px;
}
.app .controls .size input {
  height: 10px;
}
.app .controls .actions {
  flex: 1;
  text-align: right;
}
.app .controls .actions button {
  padding: 5px 10px;
  cursor: pointer;
}

.draw-contact {
  width: 30% !important;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(0, -50%);
}

.btn {
  position: relative;
  background-color: #04aa6d;
  border: none;
  font-size: 1.2rem;
  padding: 2%;
  color: #ffffff;
  text-align: center;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}

.btn:after {
  content: "";
  background: #90ee90;
  display: block;
  position: absolute;
  padding-top: 300%;
  padding-left: 350%;
  margin-left: -20px !important;
  margin-top: -120%;
  opacity: 0;
  transition: all 0.8s;
}

.btn:active:after {
  padding: 0;
  margin: 0;
  opacity: 1;
  transition: 0s;
}
.load {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.overlay-black {
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
}

.d-none {
  display: none !important;
}
