@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
 :root {
    --Primary-color: #482FF7;
    --nav-bg: #0a025ae0;
    --light-Bg: #F2F1FF;
    --White-bg: #fff;
}

*,
* ::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    line-height: 1.4;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif !important;
    scroll-behavior: smooth;
}

.navbarCont {
    position: relative !important;
}

.comCont img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.comCont .comBlogCont {
    max-width: 1000px;
    margin: 2rem auto 4rem auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.comCont .box {
    width: 300px;
    margin: 1rem 0.5rem;
    background-color: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 5px 3px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.comCont .box:hover {
    cursor: pointer;
    transform: scale(1.05);
}

.comCont .box h4 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.comCont .box p {
    font-size: 1rem;
    line-height: 1.2;
    height: 6rem;
    overflow: hidden;
    text-align: center;
}

.comCont .box a {
    display: block;
    margin-top: 15px;
    margin-top: 15px;
    padding: 8px 12px;
    margin: 1rem auto;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid #78788c;
    background: 0;
    color: #000;
    cursor: pointer;
    transition: all .3s ease;
    border-radius: 6px;
    width: fit-content;
    text-decoration: none;
    font-weight: 500;
}

.comCont .box a:hover {
    /* box-shadow: 0 5px 5px rgba(0,0,0,0.2); */
    background: #78788c;
    color: #fff
}

.comCont .box.showContent p {
    height: auto;
}

.comCont .box.showContent a.readmore-btn {
    /* background-color: red;
    color: white; */
    background: #78788c;
    color: #fff;
}

.comCont .team-container {
    width: 100%;
    height: auto;
}

@media(max-width: 468px) {
    .comCont .box {
        width: 290px;
        height: auto;
    }
}

.comCont .box p {
    font-size: 1rem;
    line-height: 1.2;
    margin: 2rem 0;
    color: #000000;
}


/* jumbotron */

.comCont .jumbotron {
    display: flex;
    align-items: center;
    background: url('/Assets/img/comm.jpg') no-repeat center top/cover, rgba(0, 0, 0, 0.5);
    color: #ffffff;
    height: 50vh;
    background-blend-mode: darken;
}

.comCont .container1 {
    width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.comCont .jumbotron .container1 {
    max-width: 100%;
}

.comCont .jumbotron h1 {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 4rem;
}

.comCont .jumbotron h5 {
    text-align: center;
    /* centers the heading */
    color: #DDD;
    font-weight: 600;
    text-transform: uppercase;
}


/* jumbtron Ends */


/* Topbar Starts */

.comCont .topBar {
    position: relative;
    width: 100%;
    height: fit-content;
    max-width: 1000px;
    margin: auto;
}

.comCont .search-box {
    width: fit-content;
    height: fit-content;
    position: relative;
    margin: 1rem 3rem 0.5rem auto;
}

.comCont .input-search {
    height: 50px;
    width: 50px;
    border-style: none;
    padding: 10px;
    font-size: 18px;
    letter-spacing: 2px;
    outline: none;
    border-radius: 25px;
    transition: all .5s ease-in-out;
    background-color: rgb(0 0 0 / 20%);
    padding-right: 40px;
    color: rgb(170, 170, 170);
}

.comCont .input-search::placeholder {
    color: rgb(46, 46, 46);
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 400;
}

.comCont .btn-search {
    width: 50px;
    height: 50px;
    border-style: none;
    font-size: 20px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    color: #6d6d6d;
    background-color: transparent;
    pointer-events: painted;
}

.comCont .btn-search:focus~.input-search {
    width: 300px;
    border-radius: 100px;
    color: rgb(46, 46, 46);
    background-color: rgb(0 0 0 / 10%);
    border-bottom: 1px solid rgba(8, 8, 8, 0.5);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

.comCont .input-search:focus {
    width: 300px;
    border-radius: 100px;
    color: rgb(46, 46, 46);
    background-color: rgb(0 0 0 / 10%);
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
    padding: 0 50px 0 29px;
}


/* Topbar Ends */