html {
    scroll-behavior: smooth;
}
img{max-width: 100%;}
*{box-sizing: border-box;}

html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    font-size: 18px;
    max-width: 100%;
    /* overflow-x: hidden; */
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    letter-spacing: 0.24px;
    color: #414042;
    background-color: #f9f9f9;  
    max-width: 1920px;
    margin: auto;  
}
html.unrestricted , body.unrestricted{max-width: 100vw;}
a{
    text-decoration: none;
    color: inherit;
}
.f-16{font-size: 16px;}
.f-14{font-size: 14px;}
.f-13{font-size: 13px;}
.bold{font-weight: 800;}
.light{font-weight: 300;}
.color-grey{color: #8D8D8D;}
.color-black{color: #212121;}
.color-blue{color: #0066FF;}
.color-gradient{
    background: linear-gradient(90.00deg, rgb(169, 197, 81),rgb(0, 156, 224));
    -webkit-background-clip:
    text;
    -webkit-text-fill-color:
    transparent;
    background-clip:
    text;
}
.gradient-bg{background: linear-gradient(180.00deg, rgb(230, 245, 252),rgb(255, 255, 255) 100%);}
.box-shadow{box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.15);}
.bg-wheatish{background-color: #F9F9F9;}
.bg-lesswheatish{background-color: #FDFDFD;}
.bg-red{background-color: #E3000F;}
.bg-green{background-color: #97D8D6;}
.bg-grey{background-color: #F9F9F9;}
.line-14{line-height: 1.4;}
.line-15{line-height: 1.5;}
.line-20{line-height: 1.8;}
.link{color: inherit;}
.link:hover{color: #009CE0;}
ul{margin: 0;padding: 0;}
li{list-style: none}
h1{font-size: 72px;line-height: 1.5;}
h2{font-size: 72px;}
h3{font-size: 36px;}
h4{font-size: 24px;}
h5{font-size: 21px;}
h6{font-size: 18px;}


.banner{
    width: 100%;
    height: 100svh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px 108px;
}
.banner video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.banner .box-1{
    display: flex;
    flex-direction: row;
    gap: 22px;
    align-items: center;
    justify-content: end;
}
.banner div{position: relative;z-index: 3;}

@media screen and (max-width:767px){
    body{font-size: 16px;}
    .banner{
        padding: 24px 0 160px;
    }
    .banner .box-1{
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 12px;
    }
    .box-2{text-align: center;}
}