/*===================================================
    Common Style
====================================================*/

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&amp;family=Space+Grotesk:wght@300;400;500;600;700&amp;display=swap");


:root {
    --primary-font: "Space Grotesk", sans-serif;
    --body-font: "DM Sans", sans-serif;
    --primary-color: #2e3192;
    --secondary-color: #089fac;
    --heading-color: #222429;
    --grey-color: #808287;
    --white-color: #ffffff;
    --light-grey-color: #dddddd;
    --bg-white: #ffffff;
    --bg-dark: #222429;
    --bg-grey: #f4f5f8;
    --box-shadow: 0px 30px 60px 0px rgba(10.000000000000004, 42.999999999999964, 82.99999999999999, 0.14901960784313725);
}

body {
    background-color: #fff;
    font-family: var(--body-font), sans-serif;
    font-size: 17px;
    line-height: 27px;
    color: var(--grey-color);
    font-weight: 400;
    letter-spacing: -0.2px;
    position: relative;
    overflow-x: hidden;
}


    {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font), sans-serif;
    -webkit-font-smoothing: antialiased;
    color: var(--heading-color);
}

h1 {
    font-size: 45px;
    font-weight: 600;
    line-height: 55px;
    margin: 0 0 10px;
    color: var(--heading-color);
}

h2 {
    font-size: 32px;
    line-height: 42px;
    color: var(--heading-color);
    margin: 0 0 10px;
    font-weight: 600;
    letter-spacing: -1px;
}

h3,
h4 {
    margin: 0 0 10px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--heading-color);
    letter-spacing: -0.5px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 16px;
}

h5,
h6 {
    font-size: 14px;
    margin: 0 0 10px;
}

p {
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 15px;
}

a {
    color: var(--heading-color);
}

a,
a:hover {
    text-decoration: none;
}

a:focus {
    outline: 0;
    text-decoration: none;
}

img {
    border: none;
    outline: none;
    max-width: 100%;
}

ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

/*Form Input Color*/
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999 !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    /*Firefox 18-*/
    color: #999 !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    /*Firefox 19+*/
    color: #999 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #999 !important;
}

button {
    border: none;
    background: none;
}

/*Padding Classes*/
.padding {
    padding: 100px 0;
}

.padding-top {
    padding-top: 100px;
}

.padding-bottom {
    padding-bottom: 100px;
}

.no-padding {
    padding: 0;
}

@media (max-width: 992px) {
    .padding {
        padding: 80px 0;
    }

    .padding-bottom {
        padding-bottom: 80px;
    }

    .padding-top {
        padding-top: 80px;
    }
}

@media (max-width: 767px) {
    .padding {
        padding: 60px 0;
    }

    .padding-bottom {
        padding-bottom: 60px;
    }

    .padding-top {
        padding-top: 60px;
    }
}


@media (max-width: 992px) {
    .sm-padding {
        padding: 15px;
    }
}

.padding-15 {
    padding: 15px;
}

.padding-20 {
    padding: 20px;
}


/*Default Background Color*/
.bg-grey {
    background-color: var(--bg-grey);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.bg-dark-light {
    background-color: var(--bg-dark-light);
}

/*Boder Classes*/
.bd-top {
    border-top: 1px solid #eee;
}

.bd-bottom {
    border-bottom: 1px solid #eee;
}

.bd-left {
    border-left: 1px solid #eee;
}

.bd-right {
    border-right: 1px solid #eee;
}

/*Margin Class*/
.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

/*Transition Effect*/
a,
a:hover,
.form-control,
.form-control:hover,
button {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

/*Scrollbar Style*/
::-webkit-scrollbar {
    background-color: var(--bg-dark);
    width: 8px;
    height: 8px
}

::-webkit-scrollbar-thumb {
    cursor: poSyne;
    background-color: var(--primary-color);
}

::selection {
    background-color: var(--primary-color);
    color: #fff
}

-webkit-::selection {
    background-color: var(--primary-color);
    color: #fff
}

::-moz-selection {
    background-color: var(--primary-color);
    color: #fff
}

/*Site Preloader*/
.loaded .site-preloader {
    opacity: 0;
    visibility: hidden;
}

.site-preloader {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    background: #fff;
    top: 0;
    left: 0;
}

.site-preloader .spinner {
    background-color: var(--primary-color);
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    -webkit-animation: scaleout 1.0s infinite ease-in-out;
    animation: scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

/*Default Button*/
.btn-group {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.btn-group-left a {
    margin-right: 10px;
}

/*Default Btn*/
.default-btn {
    background: var(--primary-color);
    font-family: var(--primary-font);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1px;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 1px;
    padding: 20px 30px;
    position: relative;
    z-index: 1;
}

.default-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--bg-dark);
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    transition: transform 500ms cubic-bezier(0.85, 0, 0.08, 1),
        -webkit-transform 500ms cubic-bezier(0.85, 0, 0.08, 1);
    -webkit-transition-timing-function: cubic-bezier(0.85, 0, 0.08, 1);
    transition-timing-function: cubic-bezier(0.85, 0, 0.08, 1);
    z-index: -1;
}

.default-btn:hover:before {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.default-btn:hover {
    color: #fff;
}

@media (max-width: 600px) {
    .default-btn {
        font-size: 13px;
        line-height: 1;
        padding: 15px 18px;
    }
}

/*Play Btn*/
.play-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.play-btn .play-icon {
    width: 60px;
    height: 60px;
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--heading-color);
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    -webkit-animation: play-btn-ripple 2s linear infinite;
    animation: play-btn-ripple 2s linear infinite;
}

.play-btn .play-icon svg {
    width: 12px;
}



/*Play Button Ripple Effect*/
@-webkit-keyframes play-btn-ripple {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08), 0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08);
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08), 0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08);
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 0px 0px 18px rgba(0, 0, 0, 0);
        box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 0px 0px 18px rgba(0, 0, 0, 0);
    }
}

@keyframes play-btn-ripple {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08), 0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08);
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08), 0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08);
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 0px 0px 18px rgba(0, 0, 0, 0);
        box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 0px 0px 18px rgba(0, 0, 0, 0);
    }
}

/*Section Heading*/
.section-heading {}

.section-heading h3 {
    display: inline-block;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-left: 55px;
}

.section-heading h3:before {
    background-color: var(--primary-color);
    width: 50px;
    height: 2px;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.section-heading h2 {
    font-size: 36px;
    line-height: 48px;
    font-weight: 600;
    letter-spacing: -1.5px;
    display: block;
    margin: 0;
}

.section-heading h2 span {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.section-heading h2 span:before {
    background-color: var(--primary-color);
    content: "";
    width: 100%;
    height: 8px;
    position: absolute;
    left: 0;
    bottom: 5px;
    z-index: -1;
}

.section-heading p {
    margin-top: 20px;
    margin-bottom: 0;
}

.section-heading .default-btn {
    margin-top: 25px;
}

.section-heading-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


@media (max-width: 1200px) {
    .content-info .section-heading h2 {
        font-size: 34px;
        line-height: 44px;
    }
}

@media (max-width: 992px) {
    .section-heading-wrap br {
        display: none;
    }
}

@media (max-width: 767px) {
    .section-heading h2 {
        font-size: 32px;
        line-height: 42px;
    }

    .section-heading h2 br {
        display: none;
    }

    .section-heading-wrap {
        display: block;
    }

    .section-heading-wrap .default-btn {
        margin-top: 30px;
    }
}

/*Custom Cursor*/
.dl-cursor {
    display: none;
}

@media (min-width: 992px) {
    .dl-cursor {
        display: block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        position: fixed;
        left: 0;
        top: 0;
        user-select: none;
        pointer-events: none;
        transform: translate(50%, 50%);
        visibility: hidden;
        z-index: 10000;
        -webkit-transition: all .5s cubic-bezier(.165, .84, .44, 1);
        transition: all .5s cubic-bezier(.165, .84, .44, 1);
    }

    .dl-cursor:before {
        background-color: var(--heading-color);
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 0;
        transition: all 0.3s ease;
    }

    .dl-cursor.cursor-grow:before {
        opacity: 0.7;
        transform: scale(1.5);
        transition: all 0.3s ease;
    }

    .dl-cursor.hide {
        opacity: 0;
        transition: opacity 0.3s ease;
        transition-delay: 0.4s;
    }

    .dl-cursor.hide .inner {
        transform: scale(0.1);
        transition: transform 0.3s ease;
    }

    .dl-cursor.cross:before {
        font-family: "DL-Icons";
        content: "\e9b3";
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        opacity: 1;
        transform: scale(2);
        transition: all 0.3s ease;
    }

    /*Cursor Expand*/
    .dl-cursor.expand:before {
        transform: scale(5);
        transition: all 0.3s ease;
    }

    .dl-cursor.expand:after {
        font-family: "Line Awesome Free";
        color: #fff;
        content: "\f065";
        font-size: 20px;
        font-weight: 900;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 1;
    }

    .dl-cursor.expand {
        transform: scale(2);
        transition: all 0.3s ease;
    }
}


/*Check List*/
.check-list {}

.check-list li {
    display: flex;
    align-items: center;
}

.check-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.check-list li i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 10px;
}

/*Page Header*/
.page-header {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.page-header-bg {
    background-image: url(../img/Banner_01A.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    /* filter: grayscale(100%); */
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-blend-mode: darken;
    background-color: #0000009e;
}

.page-header-bg:before {
    background: var(--bg-dark);
    background: radial-gradient(at center, var(--bg-dark), transparent);
    opacity: 0.5;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.page-header.post-details {
    height: 500px;
}

.page-header-info {
    padding-top: 20px;
}

.page-header-info h4 {
    background: var(--primary-color);
    font-family: var(--secondary-font);
    color: var(--heading-color);
    display: inline-block;
    height: 25px;
    line-height: 25px;
    padding: 0 15px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-header-info h2 {
    color: var(--white-color);
    font-size: 50px;
    line-height: 48px;
    margin-bottom: 20px;
}

.page-header-info h2 span {
    color: var(--primary-color);
    display: inline-block;
    position: relative;
    z-index: 1;
}

.page-header-info p {
    color: var(--light-grey-color);
    margin: 0;
}

.page-header.gradiant .page-header-info h2 {
    color: var(--heading-color);
}

.page-header.gradiant .page-header-info p {
    color: var(--grey-color);
}

.page-header .post-meta {
    margin-top: 20px;
}

.page-header.error {
    height: 500px;
}

.page-header.error .page-header-info img {
    width: 100px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .page-header {
        height: inherit;
        padding: 100px 0;
    }

    .page-header-info {
        padding-top: 0;
    }

    .page-header-info h2 {
        font-size: 32px;
        line-height: 42px;
    }

    p br,
    .page-header-info h2 br {
        display: none;
    }
}

/*Overlay*/
.overlay {
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

/*Bg Half*/
.bg-half {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 500px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

/*Map Pattern*/
.map-pattern {
    background-image: url(../img/map-pattern-2.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 90%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

/*Square Pattern*/
.square-pattern {
    background-image: url(../img/square-pattern.png);
    background-repeat: repeat;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

/*Wave Line Pattern*/
.wave-line {
    background-image: url(../img/wave-line.png);
    background-repeat: no-repeat;
    background-size: 90%;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

/*Bg Pattern*/
.bg-pattern {
    background-image: url(../img/background-pattern.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

/*Rattings*/
.rattings {}

.rattings li {
    display: inline-block;
    color: #FF9529;
    font-size: 14px;
    margin: 0 -2px;
}


/*Swiper Navigation*/
.swiper-outside .swiper-nav {
    background-color: #fff;
    border: 1px solid #ddd;
    color: var(--heading-color);
    font-size: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -22.5px;
    top: calc(50% - 30px);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}

.swiper-outside .swiper-nav.swiper-next {
    left: auto;
    right: -22.5px;
}

@media (max-width: 767px) {
    .swiper-outside .swiper-nav {
        display: none;
    }
}

/*Swiper Dots*/
.carousel-pagination {
    text-align: center;
    margin-top: 10px;
}

.carousel-pagination span.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    box-shadow: 0px 0px 0px 3px rgba(255, 170, 23, 0.5);
}


/*Nice Select*/
.nice-select {
    background-color: transparent;
    width: 100%;
    height: 50px;
    border-radius: 0;
    border: 0px solid #eee;
    box-shadow: none;
    outline: none;
    color: #fff;
}

.nice-select:hover {
    border-color: #eee;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border: 1px solid #eee;
}

.nice-select .current {
    font-size: 1rem;
    font-weight: 400;
    line-height: 48px;
}

.nice-select .list {
    border-radius: 0;
    margin-top: 0;
    width: 100%;
}

/*Scrool Up*/
#scrollup {
    width: 45px;
    height: 45px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    overflow: hidden;
    z-index: 999;
    border: 3px solid #fff;
    border-radius: 8px;
}

.scroll-to-top {
    background-color: var(--primary-color);
    color: #fff;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 25px;
    padding: 0;
    line-height: 40px;
    border-radius: 0;
    outline: none;
    text-decoration: none;
    transform: translateY(150%);
    transition: all 0.3s ease-in-out;
}

#scrollup.show {
    opacity: 1;
}

#scrollup.show .scroll-to-top {
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}

.scroll-to-top:hover {
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

/*===================================================
    Blog
====================================================*/
.blog-section {
    overflow: hidden;
}

.grid-post {
    margin: -15px;
}

.post-card {
    transition: all .3s cubic-bezier(.165, .85, .45, 1);
}

.classic-post .post-card:hover {
    box-shadow: none;
}

.post-card .post-thumb {
    position: relative;
    overflow: hidden;
    transition: all .3s cubic-bezier(.165, .85, .45, 1);
}

.post-card .post-thumb img {
    transition: all .3s cubic-bezier(.165, .85, .45, 1);
}

.post-card:hover .post-thumb img {
    transform: scale(1.02);
}

.post-content-wrap {
    background-color: #fff;
    padding: 30px;
    margin: -80px 20px 0;
    border-radius: 0;
    z-index: 1;
    position: relative;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.10);
}

.blog-section.blog-page .post-content-wrap {
    margin: 0;
}

.post-meta {
    margin-bottom: 10px;
}

.post-meta li {
    font-family: var(--primary-font);
    color: var(--grey-color);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
}

.post-details .post-meta li {
    color: var(--light-grey-color);
}

.post-meta li:not(:last-of-type) {
    margin-right: 10px;
}

.post-meta li i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 5px;
}

.post-card .post-content {}

.post-card .post-content h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--heading-color);
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.post-card .post-content h3 a {
    background: linear-gradient(var(--primary-color) 0%, var(--primary-color) 98%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    color: var(--heading-color);
}

.post-card .post-content h3 a:hover {
    background-size: 100% 2px;
}

.post-card .post-content .read-more {
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--heading-color);
    position: relative;
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
}

.post-card .post-content .read-more:hover {
    color: var(--primary-color);
}


/*Classic Post*/
.classic-post {}

.classic-post .post-card .post-thumb {
    min-height: 350px;
}

.classic-post .post-card .post-thumb img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
}

.classic-post .post-card:not(:last-of-type) {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .classic-post .post-card .post-thumb {
        min-height: 250px;
    }
}

/*Post Category*/
.post-category {
    background-color: var(--primary-color);
    position: absolute;
    right: 20px;
    top: 20px;
    font-family: var(--secondary-font);
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
    border-radius: 0;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-category:hover {
    transform: translateY(-3px);
}

/*Post Details*/
.post-details {}

.post-details .post-thumb {
    min-height: 350px;
    position: relative;
    margin-bottom: 40px;
}

.post-details .post-thumb img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
}

.post-details h3 {
    font-size: 24px;
    line-height: 32px;
}

.post-details p {
    font-size: 18px;
    letter-spacing: -0.5px;
    line-height: 30px;
    margin-bottom: 40px;
}

blockquote {
    background-color: var(--bg-grey);
    padding: 40px;
    border: none;
    border-left: 3px solid var(--primary-color);
    color: var(--heading-color);
    font-family: var(--primary-font);
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    text-transform: capitalize;
    display: block;
    margin: 0;
    margin-bottom: 40px;
}

blockquote i.las {
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
    font-size: 40px;
}

blockquote span {
    font-family: var(--primary-font);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
    color: var(--grey-color);
    display: block;
    margin-top: 15px;
}

.post-details-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    margin: 40px 0;
}

.post-details .tags li a {
    background-color: var(--primary-color);
    color: var(--heading-color);
    font-family: var(--secondary-font);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    margin: 0;
    letter-spacing: 0.5px;
    margin-right: 5px;
}

.post-details .tags li a:hover {
    color: var(--heading-color);
    transform: translateY(-3px);
}

/*Post Navigation*/
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
    align-items: center;
    margin: 40px 0;
}

.post-navigation li:last-child {
    text-align: right;
}

.post-navigation li a {
    font-family: var(--primary-font);
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    color: var(--heading-color);
    letter-spacing: -0.5px;

}

.post-navigation li a:hover {
    text-decoration: underline;
}

.post-navigation li a:hover>span {
    text-decoration: none;
}

.post-navigation li a span {
    font-family: var(--primary-font);
    color: var(--grey-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}

.post-navigation li a span i {
    color: #a5a6aa;
    margin-right: 5px;
}

.post-navigation li:last-child a span i {
    margin-left: 5px;
    margin-right: auto;
}

/*Auhtor Box*/
.author-box {
    background-color: var(--bg-grey);
    padding: 40px;
    display: grid;
    align-items: center;
    grid-template-columns: 80px 1fr;
    grid-column-gap: 20px;
    line-height: 1;
    margin-bottom: 40px;
}

.author-info p {
    margin-bottom: 25px;
}

.social-icon li {
    display: inline-block;
}

.social-icon li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: 1px solid #ddd;
}

.social-icon li a:hover {
    background-color: var(--primary-color);
    color: var(--heading-color);
    border: 1px solid var(--primary-color);
}

.social-icon li:not(:last-of-type) {
    margin-right: 10px;
}

@media (max-width: 767px) {
    .author-box {
        grid-template-columns: 1fr;
    }

    .author-box .author-thumb img {
        margin-bottom: 20px;
    }
}

/*Comments*/
.comments-box {
    margin-bottom: 40px;
}

.comment-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--heading-color);
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 30px;
    line-height: 1;
}

.comment-title:before {
    background-color: var(--primary-color);
    width: 100%;
    height: 2px;
    position: absolute;
    content: "";
    left: 0;
    bottom: 3px;
}

.comments-box .comment-inner {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-column-gap: 20px;
}

.comments-box .comment {
    margin-bottom: 40px;
}

.comments-box .children {
    margin-left: 50px;
    margin-top: 40px;
}

.comments-box .comment-thumb img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-top: 5px;
}

.comment-wrap {}

.comments-meta {}

.comments-meta h4 {
    font-size: 20px;
    font-weight: 500;
    display: block;
}

.comments-meta h4 span {
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.2px;
    text-transform: capitalize;
    color: var(--grey-color);
    display: block;
}

.comment-area {}

.comment-area p {
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 10px;
}

.comment-area .reply {
    font-family: var(--primary-font);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--grey-color);
}

.comment-area .reply:hover {
    color: var(--primary-color);
}

/*Comment Form*/
.comment-form {
    margin-top: -15px;
}

.comment-form .form-control {
    background-color: var(--bg-grey);
    height: 60px;
    border-radius: 0;
    border: 1px solid #eee;
    box-shadow: none;
    outline: none;
}

.comment-form .form-control.comment {
    height: 150px;
}

.comment-form .padding-15:last-child {
    padding-bottom: 0;
}

#form-messages {
    display: none;
    margin-top: 15px;
    margin-bottom: 0;
}

#form-messages.alert-danger,
#form-messages.alert-success {
    display: block;
}

/*Sidebar Widget*/
.sidebar-widget {
    background-color: var(--bg-grey);
    overflow: hidden;
    padding: 30px;
}

.sidebar-ads a img {
    width: 100%;
    border-radius: 3px;
}

.sidebar-widget.search-widget {
    padding: 0;
}

.sidebar-widget:not(:last-of-type) {
    margin-bottom: 30px;
}

/*Search*/
.sidebar-widget .search-form {
    position: relative;
}

.sidebar-widget .search-form .form-control {
    background-color: var(--bg-grey);
    box-shadow: none;
    outline: none;
    height: 50px;
    border: 1px solid #ddd;
    padding-right: 40px;
    border-radius: 0;
}

.sidebar-widget .search-form .search-btn {
    background-color: var(--primary-color);
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    font-size: 25px;
    color: var(--heading-color);
}

/*Widget Title*/
.widget-title {
    display: block;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.widget-title h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--heading-color);
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    margin: 0;
    line-height: 1;
}

.widget-title h3:before {
    background-color: var(--primary-color);
    width: 100%;
    height: 2px;
    position: absolute;
    content: "";
    left: 0;
    bottom: 3px;
}

/*Category List*/
.category-list {}

.category-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.category-list li:before {
    font-family: 'Line Awesome Free';
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-color);
    content: "\f07c";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.category-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.category-list li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--grey-color);
    padding-left: 15px;
}

.category-list li a:hover {
    color: var(--heading-color);
    text-decoration: none;
}

.category-list li span {
    border: 1px solid #ddd;
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.category-list li:hover span {
    background-color: var(--primary-color);
    color: #fff;
    transition: all 0.3s ease;
}

/*Thumb Posts*/
.thumb-post {}

.thumb-post li {
    display: inline-flex;
    align-items: flex-start;
    justify-content: space-between;
}

.thumb-post li:not(:last-of-type) {
    margin-bottom: 20px;
}

.thumb-post li .thumb {
    flex-shrink: 0;
    width: 80px;
    height: 70px;
    margin: 0 15px 0 0;
    position: relative;
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    overflow: hidden;
}

.thumb-post .thumb-post-info {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}

.thumb-post .thumb-post-info h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
}

.thumb-post .thumb-post-info h3 a {
    color: var(--heading-color);
    background: linear-gradient(var(--primary-color) 0%, var(--primary-color) 98%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
}

.thumb-post .thumb-post-info h3 a:hover {
    background-size: 100% 2px;
}

.thumb-post .thumb-post-info .date {
    font-weight: 500;
    font-size: 14px;
    font-family: var(--primary-font);
    text-transform: capitalize;
    color: var(--grey-color);
    display: flex;
    align-items: center;
    line-height: 1;
}

.thumb-post .thumb-post-info .date i {
    color: var(--primary-color);
    margin-right: 5px;
}

/*Tags*/
.tags {}

.tags li {
    display: inline-block;
}

.tags li a {
    background-color: var(--white-color);
    font-family: var(--primary-font);
    color: var(--grey-color);
    display: inline-block;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    padding: 3px 15px;
    margin: 0 3px 10px 0;
    border-radius: 0;
    border: 1px solid #eee;
}

.tags li a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/*Pagination*/
.pagination-wrap li {
    display: inline-block;
    margin: 0 10px 0 0;
}

.pagination-wrap li a {
    background-color: #fff;
    border: 1px solid #eee;
    color: var(--grey-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    cursor: poSyne;
}

.pagination-wrap li a:hover,
.pagination-wrap li a.active {
    background-color: var(--primary-color);
    border: 1px solid #ffaa17;
    color: #fff;
}

/*max-width 992px*/
@media (max-width: 992px) {
    .post-card .post-content h3 {
        font-size: 20px;
        line-height: 26px;
    }
}

.about-section p {
    text-align: justify;
}

.about-text-main ul {
    list-style: disc;
}
.about-text-main ul li::marker {
    color: var(--primary-color);
}
.about-text-main li {
    text-align: justify;
    padding-top: 12px;
}