html {
    background: #0d0c14;
    box-sizing: border-box;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 50px;
}
[class*="col"]{
    grid-column-end: span 12;
    
}
@media only screen and (min-width: 1400px){
.col1{
    grid-column-end: span 12;
}
.col2{
    grid-column-end: span 6;
    height: 700px;
}
.col3 {
    grid-column-end: span 4;
    height: 700px;
}
.col4{
    grid-column-end: span 3;
}
.col5{
    grid-column-end: span 2;
}
}
.rsp{
    max-width: 100%;
    height: auto;
    padding: 30px;
}
.small{
    max-width: 80%;
    position:relative
}
.logo {
    display: flex; 
    align-items: center;
    margin-right: auto;
}
.logo img {
    height: 50px;
    width: auto;
}
nav{
    display: flex;
    align-items: center;
    background-color: #13132b;
    padding: 15px;
    text-align: center;
    z-index: 1;
    
}
nav ul {
    list-style: none;
    display: flex;
    position: absolute; 
    left: 50%; 
    transform: translate(-50%);
}
nav li {
    display: inline;
}
a {
    text-decoration: none;
    color: #b9bfd8;
    font-size: 20px;
    margin: 10px;
    font-weight: 600;
}
a:hover {
    color: #ffffff;
}

.footer{
    background-color: #13132b;
    color: aliceblue;
    padding: 25px;
    text-align: center;
}
.homepage {
    grid-column: 13/13;
    grid-row: 2;
    position: relative;
    z-index: 1;
    color: transparent;
    text-align: center;
}
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    z-index: -2;
    transform: translate(-50%, -50%);
    
}
.bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    z-index: -2;
    transform: translate(-50%,-50%);
    
}
body {
    background: #0d0c14;
    color: #545454;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 20px;
}
body,
html {
    margin: 0;
    height: 100%;
}
.events{
    grid-column: 13/13;
    background-image: url(eventsbg.png);
    padding: 100px;

}
@font-face {
    font-family: 'BigNoodleTooOblique-italic-400-100';
    src: url('BigNoodleTooOblique-italic-400-100.ttf') format('truetype')
        
}
h1 {
    font-family:'BigNoodleTooOblique-italic-400-100';
    font-size: 95px;
    font-style: italic;
    letter-spacing: 3px;
    font-weight: 148;
    color: white;
}

h2 {
    font-family:'BigNoodleTooOblique-italic-400-100';
    font-size: 70px;
    font-weight: 200;
    letter-spacing: px;
    color: #ffffff;
    text-align: left;
}
h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    color: white;
}
h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    color: #ffffff;
    text-align: left;
}
.empty-space {
    height: calc(40vh - 40px);
    background: transparent;
}
.meetings{
    padding: 100px;
    background-image: url(meetingsbg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    grid-column: 13/13;
}
.aboutus{
    padding: 100px;
    background-image: url(aboutusbg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    grid-column: 13/13;
}
.contactus{
    padding: 100px;
    background-image: url(contactbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    
    grid-column: 13/13;
}
