@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&family=Raleway:wght@100&family=Roboto:wght@100&family=Source+Sans+Pro:wght@200&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    min-height: 1600px;
    background: #000;
}

body::-webkit-scrollbar {
    display: none;
}

section{
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

section::before{
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1400px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.3) 80%, #000 100%);
    z-index: 4;
}

section img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
section video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.bg{
    filter: blur(0px);
}

#last{
    z-index: 3;
}

#main-title{
    position: relative;
    color: white;
    z-index: 2;
    font-size: 5em;
    text-align: center;
    font-family: 'Headliner No. 45';
    font-weight: normal;
    padding-top: 50px;
    text-shadow: 2px 2px 19px #000000;
}

.ab-text{
    padding: 100px 20%;
}



.heading{
    text-align: center;
}

.heading h2{
    font-family: 'Headliner No. 45';
    font-weight: normal;
    font-size: 70px;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.heading p{
    font-family: 'Cabin';
    color: #c4c7cc;
    font-size: 25px;
    line-height: 28px;
    letter-spacing: 1px;
}

.container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, auto));
    grid-gap: 1rem;
    align-items: center;
    margin-top: 5rem;
}

.box{
    height: 300px;
    width: auto;
    color: white;
    transition: all 0.8s;
    cursor: pointer;
    position: relative;
    align-items: center;
    justify-content: center;
    font-family: 'Cabin';
}

.box img{
    width: 100%;
    border-radius: 10px;
}

.box h3{
    margin-bottom: 30px;
    text-align: center;
    color: #c4c7cc;
    padding: 20px;
    padding-bottom: 0;
    font-size: 1.3em;
}

.box p{
    text-align: justify;
    text-justify: distribute;
    text-align-last: left;
    word-spacing: 5px;
    color: #c4c7cc;
    font-size: 20px;
    padding: 10px;
    padding-top: 0;
}