@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Raleway:100,400,600,700,900&display=swap');
* {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
}

:root {
    --container-color: #1a1e21;
    --second-color: #fd8f44;
    --text-color: #172317;
    --bg-color: #fff;
}

::selection {
    color: var(--bg-color);
    background: #032154;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
}

section {
    padding: 3rem 0 2rem;
}

.container {
    max-width: 1172px;
    margin: auto;
    width: 100%;
}


/*Preloader Start*/

#preloader {
    background: #fff url(../images/loader.gif) no-repeat center center;
    background-size: 15%;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 100;
}


/*Preloader End*/


/*NavBar Start*/

.hcontent {
    max-width: 1250px;
    margin: auto;
    padding: 0 30px;
}

.head {
    position: fixed;
    z-index: 5;
    width: 100%;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.head.sticky {
    background: #032154;
    padding: 15px 0;
}

.head .hcontent {
    display: flex;
    justify-content: space-between;
}

.head .logo a {
    color: #fff;
    display: flex;
    text-decoration: none !important;
}

.logo img {
    width: 110px;
    margin-right: 10px;
}

.head .menu-list {
    display: inline-flex;
}

.menu-list li {
    list-style: none;
}

.menu-list li a {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-left: 22px;
    text-decoration: none !important;
    transition: all 0.3 ease;
}

.menu-list li a:hover {
    color: #ffeb3b
}

.icon {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.icon.cancel-btn {
    position: absolute;
    top: 20px;
    right: 30px;
}


/* Responsive NavBar Start*/

@media (max-width: 868px) {
    .icon {
        display: block;
    }
    .icon.hide {
        display: none;
    }
    .head .menu-list {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100%;
        width: 75%;
        max-width: 400px;
        background: #032154;
        display: block;
        padding: 40px 0;
        text-align: center;
        transition: all 0.3s ease;
    }
    .head .menu-list.active {
        left: 0%;
    }
    .head .menu-list li {
        margin-top: 45px;
    }
    .head .menu-list li a {
        font-size: 23px;
    }
}


/* Responsive NavBar End*/


/*NavBar End*/


/*Home Start*/

.home {
    width: 100%;
    min-height: 440px;
    height: 600px;
    background: url(../images/banner.jpg);
    display: grid;
    justify-content: center;
    align-items: center;
}

.home-text {
    color: var(--bg-color);
    text-align: center;
}

.home-title {
    font-size: 70px;
    font-weight: 900;
}

.home-subtitle {
    font-size: 25px;
    font-weight: 400;
}


/*Home End*/


/*Post Filter Start*/

.post-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1rem;
    margin-top: 1rem !important;
}

.filter-item {
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.active-filter {
    background: #032154;
    color: var(--bg-color);
    padding: 8px 10px;
    border-radius: 4px;
}


/*Post Filter End*/


/*Post Start*/

.post {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, auto));
    justify-content: center;
    gap: 1rem;
}

.post-box {
    background: var(--bg-color);
    box-shadow: 0 4px 14px hsl(355deg 25% 15% /10%);
    padding: 15px;
    border-radius: 0.5rem;
}

.post-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 0.5rem;
}

.category {
    margin-top: 5px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: #032154;
}

.post-title {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none !important;
    color: var(--text-color);
    /* line clamp for title in 2 lines use as many as */
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-date {
    display: flex;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 4px;
}

.post-decription {
    font-size: 15px;
    line-height: 1.5rem;
    margin: 5px 0 10px;
    /* line clamp for title in 3 lines use as many as */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid #032154;
}

.profile-name {
    font-size: 13px;
    font-weight: 500;
}

.dm_ref {
    text-decoration: none;
    color: #032154;
}


/*Post  End*/


/*--CTA Section2 Start---*/

.grow {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.Request {
    padding: 30px 15px;
    background: #032154;
}

.Request p {
    text-align: center;
    font-size: 26px;
    color: #fff;
    margin: 0;
}

.Request p a {
    text-align: center;
    font-size: 32px;
    color: #032154;
    background-color: #fff;
    padding: 7px 13px;
    border-radius: 5px;
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
}


/*--CTA Section2 Start---*/

@media screen and (max-width: 768px) {
    .Request {
        padding: 30px 0;
    }
    .Request p {
        font-size: 18px;
    }
    .Request p a {
        font-size: 18px;
        display: block;
        max-width: 200px;
        margin: auto;
    }
}


/*--Responsive Blog Start---*/

@media (max-width: 1060px) {
    .container {
        margin: 0 auto;
        width: 95%;
    }
    .home-text {
        width: 100%;
    }
}

@media (max-width: 800px) {
    .post-container {
        margin: 0 auto;
        width: 95%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 2rem 0;
    }
    .header-content {
        margin-top: 3rem !important;
    }
    .home {
        min-height: 380px;
    }
    .home-title {
        font-size: 3rem;
    }
    .header-title {
        font-size: 3rem;
    }
    .header-img {
        height: 380px;
        width: 100%;
    }
    .post_img {
        margin-left: 2px;
        margin-right: 2px;
        height: 350px;
        width: 70%;
    }
    .post-header {
        height: 435px;
    }
    .post-content {
        margin-top: 200px;
    }
    .post-text {
        padding: 10px;
    }
    .sub-heading {
        padding: 15px;
    }
    .sub-head {
        padding: 10px;
    }
}

@media (max-width: 570px) {
    .post-header {
        height: 390px;
    }
    .header-title {
        width: 100%;
    }
    .header-img {
        height: 350px;
        width: 100%;
    }
    .post_img {
        margin-left: 2px;
        margin-right: 2px;
        height: 340px;
        width: 70%;
    }
    .sub-heading {
        padding: 15px;
    }
    .sub-head {
        padding: 15px;
    }
    .post-text {
        padding: 10px;
    }
    .post-content {
        margin-top: 110px !important;
    }
}

@media (max-width: 396px) {
    .home-title {
        font-size: 40px;
    }
    .home-subtitle {
        font-size: 0.9rem;
    }
    .home {
        min-height: 300px;
    }
    .post-box {
        padding: 10px;
    }
    .header-title {
        font-size: 1.9rem;
    }
    .header-img {
        height: 290px;
        width: 100%;
    }
    .post_img {
        margin-left: 2px;
        margin-right: 2px;
        height: 210px;
        width: 70%;
    }
    .post-text {
        padding: 10px;
    }
    .sub-heading {
        padding: 15px;
    }
    .sub-head {
        padding: 15px;
    }
    .post-header {
        height: 335px;
    }
    .post-content {
        margin-top: 110px;
    }
    .post-text {
        font-size: 0.875rem;
        line-height: 0.85rem;
    }
}


/*--Responsive Blog End---*/


/*--Post Page Start---*/

.post-header {
    width: 100%;
    height: 500px;
    background: var(--container-color);
}

.post-container {
    max-width: 800px;
    margin: auto;
    width: 100%;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem !important;
}

.back-home {
    color: #032154;
    font-size: 2rem;
}

.header-title {
    width: 90%;
    font-size: 35px;
    color: var(--bg-color);
    text-align: center;
    margin-bottom: 1rem;
}

.header-img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    object-position: center;
}

.post-content {
    margin-top: 15rem !important;
}

.sub-heading {
    font-size: 30px;
}

.sub-head {
    font-size: 25px;
}

.post-text {
    font-size: 1rem;
    line-height: 1.7rem;
    margin: 0.8rem 0;
    text-align: justify;
}

.post_span {
    color: black;
    font-size: 19px;
    font-weight: 700;
}

.post_img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
}


/*--Share---*/

.share {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
}

.share-title {
    font-size: 1.1rem;
}


/*--Responsive Post Page Start---*/


/*--Responsive Post Page  End---*/


/*--Post Page End---*/


/*--Start footer--*/

footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 100px;
    background: #1b1b1b;
}

footer .footcont {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-gap: 20px;
}

footer .footcont .sec h5 {
    position: relative;
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 15px;
}

footer .footcont .sec h5::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ffeb3b;
}

footer .footcont .sec p {
    color: #fff;
}

.wrapper.foot {
    display: inline-flex;
    list-style: none;
}

.wrapper.foot .icon {
    position: relative;
    background: #fff;
    border-radius: 50%;
    color: #032154;
    padding: 15px;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.icon a {
    color: #032154;
    text-decoration: none;
}

.wrapper.foot .icon:hover span,
.wrapper.foot .icon:hover {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper.foot .facebook:hover,
.wrapper.foot .facebook:hover .tooltip::before {
    background: #4267B2;
    color: #ffffff;
}

.wrapper.foot .twitter:hover,
.wrapper.foot .twitter:hover .tooltip::before {
    background: #1DA1F2;
    color: #ffffff;
}

.wrapper.foot .instagram:hover,
.wrapper.foot .instagram:hover .tooltip::before {
    background: #E4405F;
    color: #ffffff;
}

.wrapper.foot .linkedin:hover,
.wrapper.foot .linkedin:hover .tooltip::before {
    background: #0A66C2;
    color: #ffffff;
}

.quicklinks {
    position: relative;
}

.quicklinks li {
    list-style: none;
}

.quicklinks li a {
    color: #f7f7f7;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
    font-size: 15px;
}

.quicklinks li a:hover {
    color: #ffeb3b;
}

.contact li span {
    font-size: 15px;
}

.contact li span:hover {
    color: #ffeb3b;
}

.info {
    position: relative;
}

.info li {
    display: grid;
    grid-template-columns: 30px 1fr;
    margin-bottom: 16px;
}

.info li span:nth-child(1) {
    color: #fff;
    font-size: 20px;
}

.info li span {
    color: #fff;
}

.info a {
    color: #f7f7f7;
    text-decoration: none;
}

.info a:hover {
    color: #ffeb3b;
}

.copyrightText {
    width: 100%;
    background: #FFFFFF;
    padding: 8px 40px;
    text-align: center;
}

.copyrightText p {
    color: #1b1b1b;
}


/* responsive footer Start*/

@media (max-width: 992px) {
    footer {
        padding: 40px;
    }
    footer .footcont {
        grid-template-columns: repeat(2, 1fr);
    }
    .copyrightText {
        padding: 8px 40px;
    }
}

@media(max-width: 768px) {
    footer .footcont {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* responsive footer End*/


/* End footer*/

.arrow {
    position: fixed;
    bottom: 5px;
    right: 5px;
    z-index: 9;
}

.arrow a {
    height: 39px;
    width: 37px;
    text-align: center;
    background: #032154;
    display: block;
    border-radius: 3px;
}

.arrow a span {
    color: #f2f2f2;
    font-size: 25px;
    line-height: 39px;
    cursor: pointer;
}