.hero-banner {
    width: 100vw;
    height: 290px;
    background-color: var(--color-surface);
    position: relative;
}
.knowledgeimg{
    width:100%;
    height:100%;
}
.header-title {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    color: var(--color-text);
    margin: 0;
}
.imageblock{
    width:100%;
    display: inline-flex;
}
.subimage{
    width:50%;
    height:10%;
    padding:10px;
}
.image1{
    width:43%;
    height: 50%;
}
.image2{
    width:54%;
    height: 50%;
}
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.search-bar {
    display: flex;
    position: relative;
    flex-direction: row;
    margin-top: 30px;
}

.search-bar input {
    width: 60vw;
    height: 58px;
    border-radius: 6px;
    border: 0;
    outline: none;
    background-color: var(--color-text);
    padding-left: 16px;
}

.search-bar input::placeholder {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-divider);
}

.search-btn {
    width: 58px;
    height: 58px;
    border-radius: 0 4px 4px 0;
    border: 0;
    background-color: #051e52;
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.2s;
}

.search-btn:hover {
    transform: scale(1.05);
    cursor: pointer;
}

/* Header Banner Ends */

/* Header Paragraphy */
.header-para {
    width: 80%;
    margin: 0 auto;
    margin-top: 65px;
}

.header-para h1 {
    font-family: var(--font-family-secondary);
    font-size: 25px;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.header-para h4 {
    font-family: var(--font-family-secondary);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.header-para p {
    font-family: var(--font-family-secondary);
    font-size: 16px;
    color: black;
    font-weight: 300;
    text-align: justify;
    line-height: 25px;
    margin: 0;
}

.header-para h2 {
    color: #051e52;
    font-family: var(--font-family-secondary);
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;

}

/* Header Paragraphy Ends */


.pointers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.pointers-subdiv {
    background-color: #eee;
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
}

.pointers-subdiv a span {
    font-weight: 300;
    font-size: 14px;
    font-family: var(--font-family-secondary);
    color: #051E52;
}

.pointers-subdiv a {
    font-family: var(--font-family-secondary);
    font-size: 16px;
    color: var(--color-divider);
    font-weight: 300;
}

/* --------------------------------------------------------
-------------------- Knowledge Subpage --------------------
--------------------------------------------------------- */
.article-container {
    margin-top: 40px;
}

.article-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.article-header h3 {
    font-family: var(--font-family-secondary);
    font-size: 20px;
    font-weight: 500;
}

.article-btn {
    background-color: #051e52;
    border: 0;
    border-radius: 6px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 300;
    font-family: var(--font-family-secondary);
    transition: 0.2s;
    color: var(--color-surface);
}

.article-btn:hover {
    transform: scale(1.05);
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.article-page-container {
    background-color: #eee;
    box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.article-image-holder {
    width: 100%;
    height: 290px;
    background-color: var(--color-surface-light);
    border-radius: 6px;
}

.article-image-holder img {
    width: 100%;
}

.article-title {
    font-family: var(--font-family-secondary);
    font-size: 16px;
    font-weight: 400;
    color: #051E52;;
}

.article-para {
    font-family: var(--font-family-secondary);
    font-size: 14px;
    color: var(--color-divider);
}

.article-read-btn {
    background-color: transparent;
    border: 0;
    text-decoration: none;
    font-size: 18px;
    color: #ff4d06;
    margin: 0;
    padding: 0;
    transition: 0.2s;
}

.article-read-btn:hover {
    cursor: pointer;
    transform: scale(1.05);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    transition: 0.2s;
}

.video-thumbnail {
    background-color: var(--color-surface-light);
    width: 100%;
    height: 300px;
    border-radius: 6px;
    border: 0;
    position: relative;
    transition: 0.2s;
}

.video-thumbnail:hover {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-divider);
}


/* Responsive */
@media only screen and (max-width: 850px) {
    .pointers-container {
        grid-template-columns: repeat(auto-fit, minmax(200px));
        /* grid-template-columns: repeat(auto-fit, minmax(200px)); */
        gap: 40px;
    }
    .labgrown{
        margin-top: 38px;
    }
    .generalheader{
        margin-top: 200px;
    }
    .knowledgeimg{
        width:100%;
        height:100%;
    }
    .image1{
        width:100%;
        height: 50%;
    }
    .image2{
        width:100%;
        height: 50%;
    }
    .imageblock{
        width:100%;
        display: block;
    }
    .subimage{
        width:100%;
        padding:10px;
        height: 50%;
    }
    .header-para {
        /* position: absolute; */
        width: 80%;
        margin: 0 auto;
        /* margin-top: 158px; */
    }
.hero-banner{
    width: 100vw;
    height: 0px;
    background-color: var(--color-surface);
    position: relative;
}
    .header-para h1 {
        font-size: 18px;
    }

    .header-para p {
        text-align: justify;
    }
    .pointers-subdiv{
        height: 100px;
         padding-top:0px;
    }
    .pointers-subdiv a,
    .pointers-subdiv a span {
        font-size: 14px;
    }

    .header-title {
        font-size: 20px;
    }

    .search-bar input {
        width: 90vw;
    }
}
@media only screen and (max-width: 600px) {
    .pointers-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        /* grid-template-columns: repeat(auto-fit, minmax(200px)); */
        gap: 40px;
    }
    .knowledgeimg{
        width:100%;
        height:100%;
    }
    .generalheader{
        margin-top: 104px;
    }
    .image1{
        width:100%;
        height: 50%;
    }
    .image2{
        width:100%;
        height: 50%;
    }
    .imageblock{
        width:100%;
        display: block;
    }
    .subimage{
        width:100%;
        padding:10px;
        height: 50%;
    }
    .header-para {
        /* position: absolute; */
        width: 80%;
        margin: 0 auto;
        /* margin-top: 158px; */
    }
.hero-banner{
    width: 100vw;
    height: 0px;
    background-color: var(--color-surface);
    position: relative;
}
    .header-para h1 {
        font-size: 18px;
    }

    .header-para p {
        text-align: justify;
    }

    .pointers-subdiv a,
    .pointers-subdiv a span {
        font-size: 14px;
        margin-top: 17px;
    }
    .header-title {
        font-size: 20px;
    }
.pointers-subdiv{
    height: 122px;
     padding-top:0px;
}
    .search-bar input {
        width: 90vw;
    }
}
