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

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

:root{
  --black-noir:rgb(20,20,20);
  --white-noir:rgb(240,240,240)
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

body{
  background-color: var(--black-noir);
}

header{
  width: 100vw;
  height: 100px;
  background-color: var(--black-noir);
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.logo-levin{
  width: 140px;
}

nav{
  width: 30%;
  display: flex;
  flex-direction: row;
  color: var(--white-noir);
  text-transform: uppercase;
  justify-content: space-around;
  font-family: MontserratMedium;
}

nav a{
  padding: 8px;
  transition: 0.3s;
  border-radius: 8px;
}

nav a:hover{
  cursor: pointer;
  color: var(--black-noir);
  background-color: var(--white-noir);
}

.video-banner{
  width: 100vw;
  height: 90vh;
  background-color: rgb(128, 128, 128);
  display: flex;
  flex-direction: column;
}

.video-div video{
  width: 100vw;
}

.video-overlay{
  position:absolute;
  width: 100%;
  height: 100%;
  color: aliceblue;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.video-overlay h1{
  font-family: MontserratLight;
  font-weight: lighter;
  font-size: 2rem;
  letter-spacing: 2px;
}

.video-overlay h3{
  font-family: MontserratMedium;
  font-weight: 100;
  letter-spacing: 1px;
}

.btt-carta{
  margin: 12px;
  padding: 8px 16px 8px 16px;
  font-family: MontserratMedium;
  color: var(--black-noir);
  background-color: var(--white-noir);
  border-style: double;
  border-radius: 12px;
  transition: 0.3s;
}

.btt-carta:hover{
  cursor: pointer;
  background-color: var(--black-noir);
  color: var(--white-noir);
  letter-spacing: 2px;
  font-family: MontserratLight;
  border: none;
}

.logo-banner{
  height: 40vh;
  margin-bottom: -56px;
}

.metrics{
  margin: 48px;
  width: 100vw;
  height: 100px;
  /* background-color: rgb(40,40,40); */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.metric-card{
  width: 20%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.014);
  margin: 0px 24px 0px 24px;
  color: var(--white-noir);
  font-family: MontserratLight;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  letter-spacing: 2px;
  border-radius: 8px;
}

.presentation{
  background-color: transparent;
  color: var(--white-noir);
  font-family: MontserratLight;
  padding-top: 48px;
  width: 100vw;
  height: 50vh;
  text-align: center;
}

.texto-div{
  padding: 0px 400px 0px 400px;
}


/* Footer */

footer{
  background-color:rgba(255, 255, 255, 0.126);
  width: 100vw;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.copy{
  width: 100vw;
  height: 20%;
  align-self: self-end;
  text-align: center;
  color: var(--white-noir);
  font-family: MontserratLight;
  font-size: small;
  letter-spacing: 1px;
  text-decoration: none;
}

.footer-content{
  width: 100vw;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  color: var(--white-noir);
}

.footer-img{
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-links-title{
  font-family: MontserratMedium;
  letter-spacing: 2px;
}

.footer-nav{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.footer-links{
  margin: 4px;
  font-family: MontserratLight;
  transition: 0.4s;
  color: var(--white-noir);
}

.footer-links:hover{
  cursor: pointer;
  letter-spacing: 3px;
}

.copy a{
  color: var(--white-noir);
  text-decoration: none;
}

.copy a:hover{
  color: rgb(233, 121, 35);
  cursor: pointer;
}

.logo-levin2{
  width: 200px;
}


@media screen and (max-width: 1300px){
  nav{
    display: none;
  }
  .video-banner{
    height: fit-content;
  }
  .video-div{
    display: none;
  }
  .video-overlay{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background-color: var(--black-noir);
    height: fit-content;
  }

  .metrics{
    margin: 48px 0px 0px 0px;
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .metric-card{
    width: 70%;
    height: 10vh;
    margin: 12px;
  }

  .body{
    background-color: var(--black-noir);
  }

  .presentation{
    background-color: transparent;
    font-family: MontserratLight;
    letter-spacing: 2px;
    padding: 48px 0px 48px 0px;
    color: var(--white-noir);
    width: 100vw;
    height: fit-content;
    text-align: center;
  }
  
  .texto-div{
    padding: 0px 48px 0px 48px;
  }
}