nav{
    position:relative;
}
.header-text{
    margin-top: 5%;
}
.header-text h1{
    margin-top: 20px;
}
.grey-box{
    /* text-align: center; */
    background-color: #262626;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 20px;
}
.grey-box p{
    text-align: left;
}

.grey-box ol.grid{
    display: grid;
    grid-template-columns: auto auto;
    margin: 30px;
    align-items: center;
    gap: 20px;
}

.grey-box ol li{
    margin: 20px;
}


.logos{
    margin: 0 40px;
    padding: 10px;
    width: 90%;
    background-color: #080808;
}
.logos-slide{
    animation-duration: 60s;
}
.logos-slide img{
    margin: 0 10px;
}

.know-more{
    display: grid;
    grid-template-columns: auto;
    margin-top: 20px;
    /* justify-content: center; */
    /* align-items: center; */
    /* gap: 20px; */
    width: 10%;
}

.know-more h3{
    justify-self: center;
    /* margin-top: 20px; */
}
.know-more a{
    /* display: block; */
    justify-self: center;
    padding: 10px;
    width: 70px;
    border-radius: 100px;
    background-color: #0ccff0;
    margin: 20px 40px;
    transition: transform 0.5s;
}
.know-more img{
    display: inline-block;
    width: 50px;
}

.know-more:hover a{
    transform: translateY(-10px);
}

.know-more:hover h3{
    display: block;
}

.videos, .images{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
video, .images img{
    height: auto;
    width: 48%;
    min-width: 300px;
    padding: 0.5%;
    margin: 1%;
    background-color:#262626;
    border-radius: 20px;
    transition: transform 0.3s;
}

video:hover{
    background-color: #fff;
    transform: translateY(-10px);
}

.grey-box video{
    background-color: #080808;
}

.quote{
    text-align: center;
}

.images{
    text-align: center;
    width: 48;
    margin: 20px;
}

@media only screen and (max-width: 800px) {
    .know-more a{
        margin: 20px 20px;
    }
    .logos{
        margin: 0;
    }
    .videos{

        /* height: 150px; */
        width: 100%;
    }
    video, .images img{
        width: auto;
        min-width: 0;
    }
}