.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%);
}

.animate-pricing{
    scale: 1.5;
    animation: rotate 1.5s infinite linear;
}

/* --------------------------------------
                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;
}


@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}