
@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Medium.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Bold.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Roman.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



body {
  font-family: 'Helvetica Neue';
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}
p{
  font-size: 16px;
  line-height:25px;
  font-weight:normal;
  margin-bottom:30px;
}
p:last-child{
  margin-bottom:0px;
}
a {
  text-decoration: none;
  font-family:var(--font-primary);
  font-weight:300;
  line-height: normal;
  color: var(--color-black);
  transition:var(--transition);
}
body{
  height: 100vh;
  overflow: hidden;

}
.container{
  padding:0px 130px
}
header{
  padding-top: 35px;
}
.bg-video{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg-video video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg-video::before{
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #812CA3 0%, #6D47F6 100%);
  mix-blend-mode: multiply;
  opacity: 0.70;
}
.main-content-box{
  padding-top: 180px;
  position: absolute;
  bottom: 130px;
}
.main-content-box span{
  display: inline-flex;
  height: 35px;
  align-items: center;
  border-radius: 50px;
  background: #fff;
  padding: 0px 20px;
  font-size: 16px;
  color: #812CA3;
  font-weight: 500;
  margin-bottom: 40px;
}
.main-content-box h1{
  letter-spacing: -4px;
  font-size: 80px;
  line-height: 80px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.main-content-box p{
  color: #fff;
  margin-bottom: 0px;
}
.footer p{
  max-width: 541px;
  color: #fff;
}
.footer-loc-adress{
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-loc-adress li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-loc-adress li p{
  color: #fff;
  font-weight: 500;
}
.footer-loc-adress li a{
  color: #fff;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
}
.footer-loc-adress li img{
  margin-top: -5px;
}
footer{
  position: absolute;
  bottom: 85px;
  right: 0px;
}
.footer-loc-adress li a:hover{
  color: rgba(255,255,255,1);
  text-decoration: underline;
}
@media only screen and (max-width:1450px){
  .container{
    padding: 0px 70px;
  }
  .main-content-box h1{
    font-size: 70px;
    line-height: 70px;
  }
}
@media only screen and (max-width:1366px){
  header{
    padding-top: 30px;
  }
  .main-content-box{
    padding-top: 100px;
  }
  footer{
    bottom: 70px;
  }
  .main-content-box h1{
    font-size: 60px;
    line-height: 60px;
  }
}
@media only screen and (max-width:1199px){
  .container{
    padding: 0px 50px;
  }
  .main-content-box{
    position: relative;
    bottom: unset;

  }
}
@media only screen and (max-width:820px){
  footer{
    position: relative;
    bottom: unset;
    margin-top: 70px;
  }
  .main-content-box h1{
    letter-spacing: -3px;
  }
}
@media only screen and (max-width:640px){
  .container{
    padding: 0px 20px;
  }
  .main-content-box h1{
    font-size: 32px;
    line-height: 32px;
    letter-spacing: 0px;
    margin-bottom: 20px;
  }
  .main-content-box p br{
    display: none;
  }
  .main-content-box span{
    margin-bottom: 25px;
  }
  header{
    padding-top: 20px;
  }
  .main-content-box span{
    font-size: 15px;
    letter-spacing: 0px;
  }
  .main-content-box{
    padding-top: 60px;
  }
  footer{
    margin-top: 40px;
  }
  .footer-loc-adress{
    flex-wrap: wrap;
  }
}
@media only screen and (max-width:380px){
  .main-content-box span{
    font-size: 13px;
  }
  .main-content-box h1{
    font-size: 26px;
    line-height: 28px;
  }
}