/*.hero-logo {*/
/*    -webkit-filter: drop-shadow(0px 0px 5px #0000005e);*/
/*    filter: drop-shadow(0px 0px 5px #0000005e)*/
/*}*/

.hero-bottom-image{
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

/* --------------------------------------
                STATS
-----------------------------------------*/
.statistics-container{
    padding: 50px 0;
    overflow: hidden;
    position: relative;
    background: rgb(228,223,13);
    background: linear-gradient(85deg, rgba(228,223,13,1) 0%, rgba(66,184,235,1) 50%, rgba(107,181,53,1) 95%);
    color: #fff;
}

.statistics-heading{
    color: #fff;
    text-align: center;
    background: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    -webkit-text-fill-color: unset;
}

.statistics-sub-container{
    width: 100%;
    /* max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px; */
}

.statistics-content-container{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    /* width: fit-content;
    margin: 0 auto; */
}

.statistics-body{
    width: 100%;
    height: 100%;
    /* max-width: 300px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
    padding: 20px 10px;
    border-radius: 10px;
    box-shadow: 0 0rem 1rem rgba(0,0,0,.2);
}

.statistics-number{
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 0;
}

.statistics-sub-heading{
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    font-size: 20px;
}

/* --------------------------------------
                GLIMPSE
-----------------------------------------*/
.glimpse-container{
    padding: 50px 0 0;
    width: 100%;
    color: #fff;
    background-color: #393939;
}

.glimpse-sub-container{
    width: 100%;
}

.glimpse-heading{
    display: block;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    padding: 0px 25px;
    text-align: center;
    color: #000;
    font-size: 36px;
    background: linear-gradient(225deg, rgba(130, 187, 49, 1) 0%, rgba(224, 221, 12, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: rgba(224, 221, 12, 1);
}

.glimpse-image{
    width: 100%;
}

.glimpse-main-container{
    width: 100%;
    background-image: url('../assets/icons/sketch-type.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* padding: 30px 0 50px; */
}

.glimpse-content-container{
    max-width: 1800px;
    width: 100%;
    height: 100%;
    margin: 0px auto 0;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.glimpse-sub-heading-container{
    width: 100%;
}

.glimpse-sub-heading{
    font-size: 60px;
    font-weight: 700;
    text-align: start;
    color: #D7DB0F;
}

.glimpse-content-sub-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.glimpse-body{
    width: 100%;
    max-width: 430px;
    height: 100%;
    border-radius: 10px;
    padding: 20px 15px;
    /* margin: 0 auto; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #232323;
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
}

.glimpse-body-heading{
    font-size: 20px;
    font-weight: 700;
}

.glimpse-video{
    width: 400px;
    height: 250px;
}

.glimpse-btn-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.glimpse-btn{
    display: block;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    background-color: #b6ce1d;
    padding: 7px 15px;
    width: 150px;
    text-align: center;
    border-radius: 4px;
}

@media screen and (max-width: 1300px){
    .glimpse-content-container{
        flex-direction: column;
    }
    .glimpse-sub-heading{
        text-align: center;
        font-size: 2rem;
    }
    .glimpse-sub-heading-text{
        text-align: center;
    }
    .glimpse-icon{
        display: none;
    }
    .glimpse-body{
        align-items: center;
    }
}

@media screen and (max-width: 1200px) {
    .statistics-content-container{
        grid-template-columns: repeat(3, 1fr);
    }
}


@media screen and (max-width: 992px) {
    .glimpse-content-sub-container{
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .statistics-content-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .statistics-content-container{
        grid-template-columns: repeat(1, 1fr);
    }
    .glimpse-content-sub-container,
    .glimpse-body{
        width: 100%;
        max-width: 100%;
    }
    .glimpse-video{
        width: 100%;
        /*max-width: 400px;*/
        height: 230px;
    }
    .glimpse-btn-container{
        flex-wrap: wrap;
    }
}