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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "GeneralSans", sans-serif;
}

html,
body {
  height: 100%;
  width: 100%;
}
#minicircle {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  z-index: 9999;
  /* mix-blend-mode: difference; */
  background-color: white;
  transition: all cubic-bezier(0.19, 1, 0.22, 1.3) 1s;
  /* transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275) 1s; */
}
.bounding {
  /* background-color: red; */
  width: fit-content;
  overflow: hidden;
}
.bounding .boundingelem {
  transform: translateY(100%);
}
#main {
  background-color: black;
  width: 100%;
}

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  color: white;
  background-color: black;
  /* display: none; */
}
#nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 40px;
  color: white;
}
#nav a {
  text-decoration: none;
  color: white;
  font-size: 18px;
}

#heading {
  margin-top: 90px;
}
#heading h1 {
  margin-left: 30px;
  font-family: General Sans;
  line-height: 1;
  font-family: "GeneralSans", sans-serif;
  font-size: 9vw;
  /* font-weight: 900; */
  opacity: 0.6;
}

#heading #secondH1 {
  margin-left: 230px;
}

#blockText {
  display: flex;
  align-items: end;
  flex-direction: column;
  width: fit-content;
  /* background-color: red; */
}

#blockText h5 {
  text-transform: uppercase;
  font-size: 15px;
  text-align: right;
}

#chotiheadings {
  display: flex;
  align-items: end;
  flex-direction: column;
  margin-top: 100px;
  padding-right: 50px;
}

#chotiheadings h5 {
  text-align: right;
  margin-top: 0.5vw;
  font-size: 0.85vw;
  text-transform: uppercase;
}

#herofooter {
  position: absolute;
  bottom: 3%;
  width: 100%;
  padding: 0 2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#herofooter a {
  color: white;
  text-transform: uppercase;
  text-decoration: none;
}

#herofooter #iconset {
  display: flex;
  gap: 5px;
}
#herofooter .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background-color: #888;
}
/* ////////////////////// */
/** SECOND PAGE START **/
/* ////////////////////// */

#second {
  padding-top: 200px;
  padding-right: 10vw;
  /* height: 100vh; */
  width: 100%;
  background-color: black;
  color: white;
  /* display: none; */
}

.elem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #888;
  padding: 3.5vw 3vw;
  padding-right: 0;
  /* background-color: red; */
}

.elem h1 {
  /* background-color: red; */
  text-transform: uppercase;
  font-size: 7.5vw;
  opacity: 0.7;
}

.elemlast {
  border-bottom: 1px solid #888;
}
.elem img {
  position: absolute;
  height: 140%;
  z-index: 9999;
  display: none;
  opacity: 0;
}

/* ////////////////////// */
/** ABOUT PAGE START **/
/* ////////////////////// */

#about {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 50px;
  width: 100%;
  background-color: black;
  color: white;
  padding: 10vw 5vw;
  padding-left: 40vw;
  /* display: none; */
}

#about img {
  width: 220px;
}
#textabout {
  width: 30rem;
  /* background-color: red; */
}
#textabout h5 {
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 10px;
}

#textabout p {
  line-height: 1.7;
  margin-bottom: 30px;
}
#textabout a {
  padding: 12px 22px;
  border-radius: 100px;
  border: 1px solid white;
  text-decoration: none;
  color: white;
}
/* ////////////////////// */
/** SUBSCRIBE PAGE START **/
/* ////////////////////// */

#subscribe {
  color: white;
  padding: 20px 30px;
  padding-bottom: 7vw;
  background-color: black;
  /* display: none; */
}

#subscribe h5 {
  text-transform: uppercase;
  opacity: 0.6;
}
#subscribe h3 {
  text-transform: uppercase;
  margin-top: 10px;
  font-size: 15px;
}

/* ////////////////////// */
/** FOOTER PAGE START **/
/* ////////////////////// */

#footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: black;
  padding: 40px 30px;
  color: white;
}
#footer #footerright {
  display: flex;
  gap: 20px;
}
#footer a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
}
#footer #footerleft {
  display: flex;
  align-items: center;
  gap: 20px;
}
