@font-face {
    font-family: Roie;
    src: url('font/Roie.ttf');
    font-style: normal;
    font-display: swap;
}
a{
    text-decoration: none;
    color: inherit;
}
button{
    outline: none;
    border: none;
    cursor: pointer;
}
body{
    font-family: 'Roie';
    margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--dark);
}
.bodypadding{
    padding: 0px 30px;
}
* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
:root {
    --dark: #010A22;
    --white: #EDF0F5;
    --purple: #FFEED2;
    --blue: #6F96D1;
  }

.sectionsmaxwidth{
    max-width: 1440px !important;
    margin: 0 auto;
    color: var(--white);
    padding: 0 5%;
}
header{
    width: 100%;
    height: 86px;
    display: flex;
}

.box {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .box:first-child { margin-right: auto;justify-content: left; }
  
  .box:last-child  { margin-left: auto;justify-content: right;  }
  
nav{
    width: 100%;
    padding: 0px;
}
nav ul{
    max-width: 260px;
    height: 86px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}
nav ul li{
    line-height: 86px;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 300ms ease;
    margin: 0 5px;
}
nav ul li:hover{
    opacity: 1;
    cursor: pointer;
}
header button{
    background-color: rgba(175, 158, 158, 0.1);
    width: 144px;
    font-size: 15px;
    height: 44px;
    line-height: 26px;
    padding: 0 32px;
    margin: auto 0;
    border-radius: 20px;
    font-family: Roie;
    color: var(--white);
    cursor: pointer;
    transition: 300ms ease background-color;
}
header button:hover{
    background-color: #edf0f523;
}
h1{
    color: var(--white);
    font-size: 64px;
    line-height: 57px;
    margin: 0;
}
#hero{
    width: 100%;
    border-radius: 30px;
    padding-top: 65px;
    padding-bottom: 76px;
    display: flex;
    background-color: #ffffff;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 40px;
    border-style: solid;
    border: 1px solid transparent;
    background: 
        linear-gradient(135deg, #111a31, #010A22), 
        linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0)); 
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
}
#videocontainer{
    text-align: center;
}
#herovideo{
    width: 100%;
    min-width: 360px;
    max-width: 1027px;
    height: auto;
    margin: 0 auto;
    margin-top: -240px;
    margin-right: -50px;
    margin-bottom: 60px;
}
@media only screen and (max-width:1300px){
#herovideo{
    width: 100%;
    min-width: 360px;
    max-width: 1027px;
    height: auto;
    margin: 0 auto;
    float: none;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 40px;
}
}
#hero h1{
    color: var(--white);
    font-size: 83px;
    line-height: 97px;
    margin: 0;
    padding-top: 65px;
    max-width: 900px;
}
#hero p{
    color: var(--white);
    font-size: 16px;
    line-height: 29px;
    max-width: 550px;
    margin: 40px 0px;
    margin-top: 16px;
}
.herop{
    width: 95%;
}
#herobuttoncontainer{
    display: flex;
    cursor: pointer;
    width: 280px;
}
#hero button{
    height: 87px;
    width: 87px;
    border-radius: 87px;
    background-color: var(--blue);
    transition: all 300ms ease;
}
#herobuttoncontainer:hover  button{
    background-color: var(--purple);
      transform: scale(1.05);
      -webkit-transform: scale(1.05);
}
#herobuttoncontainer p{
    margin: auto 20px;
    font-size: 26px;
}
#hero button img{
    width: 14px;
    height: 22px;
    margin: auto;
    margin-left: 6px;
    margin-top: 3px;
    transition: margin-left 300ms ease;
}
