:root {
  --style-white: #ebeeec;
  --fads-blu-white: #ccccff;
  --style-black: #000000;
  --style-grey: #595f5d;
  --style-dark-grey: #202221;
  --fads-vibrant-red: #cc0033;
  --fads-deep-red: #5b0100;
  --fads-vibrant-orange: #f89200;
  --fads-deep-orange: #b88b40;
  --fads-vibrant-yellow: #f8da00;
  --fads-deep-yellow: #734800;
  --fads-vibrant-green: #67da53;
  --fads-deep-green: #254527;
  --fads-vibrant-blue: #0099ff;
  --fads-deep-blue: #0061d8;
  --fads-deep-purple: #332544;
  scrollbar-width: thin;
  scrollbar-color: var(--fads-vibrant-blue) var(--fads-deep-blue);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: black;
  overflow-x: hidden;
}

.shadowed {
  filter: drop-shadow(0px 0px 6px var(--style-dark-grey));
}

.shadowed_big {
  filter: drop-shadow(0px 0px 22px var(--style-dark-grey));
}

/* typography start */

@font-face {
  font-family: "lexend-light";
  src: url("/fonts/Lexend-ExtraLight.woff2");
}

@font-face {
  font-family: "lexend-normal";
  src: url("/fonts/Lexend-Regular.woff2");
}

@font-face {
  font-family: "lexend-bold";
  src: url("/fonts/Lexend-Bold.woff2");
}

@font-face {
  font-family: "lexend-black";
  src: url("/fonts/Lexend-Black.woff2");
}

body {
  font-family: lexend-normal, helvetica, sans-serif;
  color: var(--style-white);
  font-size: 1.3rem;
}

::selection {
  background-color: var(--fads-vibrant-red);
}

h1 {
  font-family: lexend-bold, helvetica, sans-serif;
  font-size: 5rem;
  margin-top: 1rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2rem;
}

/* typography end */

/* links start */
a {
  text-underline-offset: 2px;
}

.normal-link {
  color: var(--fads-vibrant-blue);
  font-family: lexend-bold, helvetica, sans-serif;
  transition: color 0.2s;
}

.normal-link:hover {
  color: var(--fads-deep-blue);
}

/* links end */

/* lists start */
.list {
  list-style: none;
  padding-left: 0;
}

.list--inline .list__item {
  display: inline-block;
  margin-right: 2rem;
}
/* lists end */

/* icons start */
.icon {
  width: 1.3rem;
  height: 1.3rem;
}

.copyright-icon {
  width: 1rem;
  height: 1rem;
}

.icon--white {
  color: var(--style-white);
}

.logo-colors {
  color: var(--style-white);
}

.social-icon {
  color: var(--style-white);
  size: 1.3rem;
}

/* icons end */

/* buttons start */
.btn {
  font-family: lexend-bold, helvetica, sans-serif;
  padding: 1rem 1.5rem;
  border: 0;
  border-radius: 3rem;
  white-space: nowrap;
  text-align: center;
}

.btn--primary {
  background: var(--style-white);
  color: var(--style-black);
  transition: background 0.2s;
}

.btn--primary:hover {
  background: var(--fads-vibrant-blue);
}
/* buttons end */

/* headers start */
.collapsible__header {
  display: flex;
  justify-content: space-between;
}

.collapsible__heading {
  font-size: 2rem;
  margin-top: 0;
}

.icon--dropdown {
  width: 2rem;
  height: 2rem;
}

.collapsible__chevron {
  transform: rotate(90deg);
  transition: transform 0.2s;
}

.collapsible__content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.53, 0.095, 0.22, 0.98);
}

.collapsible--expanded .collapsible__chevron {
  transform: rotate(0deg);
}

.collapsible--expanded .collapsible__content {
  max-height: 100vh;
  opacity: 1;
}

/* headers end */

/* navbar start */
.nav {
  display: flex;
  border-radius: 0% 0% 20% 20%;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem;
  align-items: center;
  backdrop-filter: blur(3px) brightness(30%);
  -webkit-backdrop-filter: blur(3px) brightness(30%);
  transition: border-radius 0.2s;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.collapsible--expanded {
  border-radius: 0% 0% 0% 0%;
}

.nav__list {
  width: 100%;
  margin: 0;
}

.nav-logo {
  height: 3rem;
  width: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  filter: drop-shadow(0 0 0.25rem transparent);
  transition: filter 0.2s;
}

.nav-logo:hover {
  filter: drop-shadow(0 0 0.25rem var(--fads-vibrant-yellow));
  transition: filter 0.2s;
}

.nav__item {
  padding: 0.5rem 2rem;
  border-bottom: 1px solid var(--style-grey);
  text-align: center;
}

.navitem_1 {
  filter: drop-shadow(0 0 0.25rem transparent);
  transition: filter 0.2s;
}

.navitem_2 {
  filter: drop-shadow(0 0 0.25rem transparent);
  transition: filter 0.2s;
}

.navitem_3 {
  filter: drop-shadow(0 0 0.25rem transparent);
  transition: filter 0.2s;
}

.navitem_1:hover {
  filter: drop-shadow(0 0 0.25rem var(--fads-vibrant-red));
  transition: filter 0.2s;
}

.navitem_2:hover {
  filter: drop-shadow(0 0 0.25rem var(--fads-vibrant-blue));
  transition: filter 0.2s;
}

.navitem_3:hover {
  filter: drop-shadow(0 0 0.25rem var(--fads-vibrant-green));
  transition: filter 0.2s;
}

.nav__item_bottom {
  border-bottom: 0px;
}

.nav__item > a {
  color: var(--style-white);
  transition: color 0.2s;
  text-decoration: none;
}

.nav-hamburger {
  width: 2rem;
  height: 2rem;
  padding-bottom: 0.5rem;
  transition: color 0.2s;
  cursor: pointer;
  filter: drop-shadow(0 0 0.25rem transparent);
  transition: filter 0.2s;
  padding-right: 1.5rem;
}

.nav-hamburger:hover {
  filter: drop-shadow(0 0 0.25rem var(--fads-vibrant-orange));
  transition: filter 0.2s;
}

@media screen and (min-width: 768px) {
  .nav-hamburger {
    display: none;
  }

  .nav__list {
    width: auto;
    display: flex;
    font-size: 1.5rem;
    max-height: 100%;
    opacity: 1;
    padding-right: 3rem;
  }

  .nav__item {
    border: 0;
  }

  .nav {
    justify-content: center;
  }

  .nav-logo-container {
    padding-left: 0rem;
  }

  .collapsible--expanded {
    border-radius: 0% 0% 20% 20%;
  }
}
/* navbar stop */

/* hero start */
.hero-container {
  width: 100%;
  height: 100%;
  top: 0px;
  padding-top: 5rem;
  overflow: hidden;
  z-index: -99;
  padding-bottom: 17rem;
}

.hero-video {
  min-height: 100%;
  min-width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -99;
}

.hero-logo {
  margin-top: 5rem;
  margin-left: 7rem;
  height: 28rem;
  width: auto;
  color: var(--style-white);
}

.hero-items {
  display: flex;
  justify-content: space-between;
  text-align: right;
}

.hero-header {
  font-size: 7.5rem;
  margin-bottom: 2rem;
}

.hero-text-div {
  margin-right: 7rem;
  margin-top: 5rem;
  font-size: 1.5rem;
  max-width: 70rem;
}

@media screen and (max-width: 1650px) {
  .hero-text-div {
    max-width: 64rem;
  }
  .hero-header {
    font-size: 6rem;
  }
}

@media screen and (max-width: 1517px) {
  .hero-logo {
    display: none;
  }
  .hero-header {
    font-size: 6rem;
  }
  .hero-items {
    justify-content: center;
    text-align: center;
  }
  .hero-text-div {
    margin-right: 0;
  }
}

@media screen and (max-width: 960px) {
  .hero-header {
    font-size: 4rem;
  }
  .hero-text-div {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 666px) {
  .hero-text-div {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .hero-header {
    font-size: 3.5rem;
  }
}
/* hero stop */

/* homepage body start */
.body_items {
  display: flex;
  padding-bottom: 3rem;
  flex-direction: column;
  text-align: center;
  background-color: #000000a3;
}

.body-header {
  text-align: center;
  font-family: lexend-bold;
  background-color: #000000a3;
  margin: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.body-bottom {
  margin-right: 5rem;
  margin-left: 3rem;
}

.body-text {
  padding-left: 25rem;
  padding-right: 25rem;
  margin-bottom: 3rem;
}

.homepageembedcontainer {
  display: flex;
  justify-content: center;
}

.homepageembed {
  aspect-ratio: 16 / 9;
  width: 800px;
  height: 450px;
}

@media screen and (max-width: 1500px) {
  .body-text {
    padding-left: 20rem;
    padding-right: 20rem;
  }
}

@media screen and (max-width: 1300px) {
  .body-text {
    padding-left: 15rem;
    padding-right: 15rem;
  }
}

@media screen and (max-width: 1060px) {
  .home-body-img {
    margin-top: 2rem;
  }
  .body-top {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .body-bottom {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .body-text {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}

@media screen and (max-width: 850px) {
  .body-text {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .homepageembed {
    width: 640px;
    height: 360px;
  }
}

@media screen and (max-width: 690px) {
  .homepageembed {
    width: 480px;
    height: 270px;
  }
}

@media screen and (max-width: 538px) {
  .homepageembed {
    width: 320px;
    height: 180px;
  }
}

/* homepage body stop */

/* footer start */
footer {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: var(--fads-deep-blue);
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.footer-logo {
  height: 4rem;
  margin-bottom: 0.5rem;
}

.foot-copyright {
  text-align: center;
  margin-left: 5rem;
}

.foot-copy-info {
  margin-top: 0rem;
}

.foot-social-icon {
  fill: var(--style-white);
  transition: fill 0.2s;
  height: 3rem;
  width: 3rem;
  padding-top: 1rem;
}

.foot-social-icon:hover {
  fill: var(--fads-blu-white);
}

.foot-media {
  margin-right: 5rem;
}

@media screen and (max-width: 512px) {
  footer {
    flex-direction: column;
  }

  .foot-copyright {
    margin-left: 0;
  }

  .foot-media {
    margin-right: 0;
  }
}

/* bg video start */
.bg-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  z-index: -99;
  overflow: hidden;
}

.bg-video {
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* contact page stuff */
.contactbody {
  height: 100vh;
  padding-top: 10rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.contactbody h3 {
  margin-top: 0;
}
