/********** Template CSS **********/
:root {
    --primary: #024bab;
    --light: #f5f5f5;
    --dark: #353535;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
body {
    margin: 0;
    font-family:
        open sens,
        sans-serif;
    font-weight: 400;
    color: #343434;
    font-size: 19px;
    line-height: 1.6;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
.btn-primary {
    color: #000;
    background-color: #024bab;
    border-color: #024bab;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: 0.5s;
    color: #fff !important;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar {
    padding: 0 65px !important;
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}
.sidebar-box ul {
    padding-left: 18px;
}
@media (max-width: 991.98px) {
    .sidebar {
        padding: 0 30px !important;
    }
    .sidebar-box {
        border-radius: 15px !important;
    }
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #eeeeee;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 62px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }
}

/*** Header ***/
@media (max-width: 768px) {
    h1.hero-title {
        color: #024bab;
        font-size: 44px !important;
    }
    .hero-section .row {
        padding: 20px !important;
    }
    h4.subheading {
        font-size: 25px !important;
        color: #292929;
    }
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: transparent;
    border: 1px solid #ffffff;
    font-size: 22px;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #ffffff;
    transition: 0.5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: transparent;
    border: 1px solid #ffffff;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgb(132 173 225), rgb(17 83 169));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.page-header h1,
.page-header a,
.page-header li {
    color: #fff;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}
.breadcrumb-item.active {
    color: #fff;
}

/*** Section Title ***/
.section-title h1 {
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

.section-title.text-start h1 {
    padding-left: 0;
}

.section-title h1::before,
.section-title h1::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    bottom: 0;
    background: var(--dark);
}

.section-title h1::before {
    left: 0;
}

.section-title h1::after {
    right: 0;
}

.section-title.text-start h1::before {
    display: none;
}

/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text {
        padding-right: calc(((100% - 960px) / 2) + 0.75rem);
    }
}

@media (min-width: 1200px) {
    .about-text {
        padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
    }
}

@media (min-width: 1400px) {
    .about-text {
        padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
    }
}

/*** Service ***/
.service-item img {
    transition: 0.5s;
}

.service-item:hover img {
    transform: scale(1.1);
}

/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text {
        padding-left: calc(((100% - 960px) / 2) + 0.75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text {
        padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text {
        padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
    }
}

/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: 0.5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: 0.5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    bottom: 0;
    left: 50%;
    background: rgba(53, 53, 53, 0.7);
    transition: 0.5s;
}

.portfolio-item:hover .portfolio-overlay {
    width: 100%;
    height: 100%;
    left: 0;
}

.portfolio-item .portfolio-overlay .btn {
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay .btn {
    opacity: 1;
}

/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text {
        padding-right: calc(((100% - 960px) / 2) + 0.75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text {
        padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text {
        padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
    }
}

/*** Team ***/
.team-item img {
    transition: 0.5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 38px;
    top: 50%;
    left: -38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: #ffffff;
    transition: 0.5s;
}

.team-item .team-social .btn {
    color: var(--primary);
    background: #ffffff;
}

.team-item .team-social .btn:hover {
    color: #ffffff;
    background: var(--primary);
}

.team-item:hover .team-social {
    left: 0;
}

/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(
        to left,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
    p.review-text {
        height: 220px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    border: 5px solid var(--light);
    transform: scale(0.8);
    transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text {
        padding-left: calc(((100% - 960px) / 2) + 0.75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text {
        padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text {
        padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
    }
}

/*** Footer ***/
.footer {
    background:
        linear-gradient(rgb(5 77 169), rgb(2 75 171)),
        url(../img/footer.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #ffffff;
    transition: 0.3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .notice {
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer > div > div.container.notice > p > a {
    color: var(--light);
    text-decoration: underline;
}

.footer > div > div.container.notice > p {
    margin-top: 10px;
}
.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: #fff;
}

/* news */

.home-blog .section-title {
    padding-bottom: 15px;
}
.home-blog .media {
    margin-top: 50px;
}
@media (min-width: 768px) {
    .home-blog .media {
        margin-top: 30px;
    }
}

.media.blog-media {
    margin-top: 30px;
    position: relative;
    display: block;
}
@media (min-width: 992px) {
    .media.blog-media {
        display: table;
    }
    .blog-title-sec {
        height: 124px;
    }
}
.media.blog-media .circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    position: absolute;
    padding: 0;
    top: 20px;
    left: 20px;
    text-align: center;
    box-shadow: none;
    transform: translateX(0);
    color: #fff;
    transition: background-color 0.3s ease;
}
.media.blog-media .circle .day {
    color: #fff;
    transition: color 0.25s ease;
    font-weight: 500;
    font-size: 28px;
    line-height: 1;
    margin-top: 12px;
}
.media.blog-media .circle .month {
    text-transform: uppercase;
    font-size: 14px;
}
.media.blog-media > a {
    position: relative;
    display: block;
}
@media (min-width: 992px) {
    .media.blog-media > a {
        display: table-cell;
        vertical-align: top;
        min-width: 200px;
    }
}
@media (min-width: 1200px) {
    .media.blog-media > a {
        min-width: 230px;
    }
}

.media.blog-media > a img {
    width: 100%;
}
.media.blog-media:hover > a:before {
    opacity: 1;
    transform: scale(1);
}
.media.blog-media:hover .circle {
    background-color: rgba(255, 255, 255, 0.9);
}
.media.blog-media:hover .circle .day,
.media.blog-media:hover .circle .month {
    color: #222;
}
.media.blog-media:hover .media-body h5 {
    color: #024bab;
}
.media.blog-media:hover .media-body a.post-link {
    color: #024bab;
    text-decoration: underline;
}
.media.blog-media .media-body {
    border: 1px solid #efeff3;
    padding: 30px 30px 10px;
    font-size: 14px;
    background: #fff;
    border-top: none;
}
@media (min-width: 992px) {
    .media.blog-media .media-body {
        padding: 15px 20px 10px;
        border-top: 1px solid #efeff3;
        border-left: none;
        display: table-cell;
        vertical-align: top;
    }
}
@media (min-width: 1200px) {
    .media.blog-media .media-body {
        padding: 10px 20px 10px;
    }
}
.media.blog-media .media-body h5 {
    transition: color 0.3s ease;
    margin-bottom: 15px;
}
@media (min-width: 992px) {
    .media.blog-media .media-body h5 {
        font-size: 15px;
    }
}
@media (min-width: 1200px) {
    .media.blog-media .media-body h5 {
        margin-bottom: 15px;
        font-size: 21px;
    }
}
.media.blog-media .media-body a.post-link {
    display: block;
    color: #024bab;
    font-size: 16px;
    padding: 23px 0;
    text-transform: uppercase;
    font-weight: 400;
}
@media (min-width: 992px) {
    .media.blog-media .media-body a.post-link {
        padding: 7px 0;
    }
}
@media (min-width: 1200px) {
    .media.blog-media .media-body a.post-link {
        padding: 23px 0;
    }
}
.media.blog-media .media-body ul {
    position: relative;
    padding: 10px 0 0;
}
.media.blog-media .media-body ul li {
    display: inline-block;
    width: 49%;
    position: relative;
}
.media.blog-media .media-body ul li:before {
    position: absolute;
    content: "";
    top: 5px;
    left: 0;
    width: 1px;
    height: 14px;
    background: #eeeef2;
}
.media.blog-media .media-body ul li:first-child:before {
    visibility: hidden;
}
.media.blog-media .media-body ul:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eeeef2;
}
.news {
    width: 100%;
}

/* hero section */

.how-section1 h4 {
    color: #024bab;
    font-weight: bold;
    font-size: 30px;
}
.how-section1 .subheading {
    color: #024bab;
    font-size: 20px;
}
.how-section1 .row {
    margin-top: 10%;
}
.how-img {
    text-align: center;
}
h1.hero-title {
    color: #024bab;
    font-size: 60px;
}
h4.subheading {
    font-size: 35px;
    color: #292929;
}

.carousel {
    margin: 0px auto;
    padding: 0 50px;
}
.carousel-item {
    color: #000;
    font-size: 18px;
    text-align: center;
    overflow: hidden;
}

.carousel .testimonial {
    padding: 30px 0 10px;
}
.carousel .overview {
    font-style: italic;
}
.carousel .overview b {
    text-transform: uppercase;
    color: #024bab;
}
.carousel .carousel-control {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    top: 50%;
    background: none;
}
.carousel-control i {
    font-size: 68px;
    line-height: 42px;
    position: absolute;
    display: inline-block;
    color: rgba(0, 0, 0, 0.8);
    text-shadow:
        0 3px 3px #e6e6e6,
        0 0 0 #000;
}
.carousel .carousel-indicators {
    bottom: -40px;
}
.carousel-indicators li,
.carousel-indicators li.active {
    width: 10px;
    height: 10px;
    margin: 1px 3px;
    border-radius: 50%;
}
.carousel-indicators li {
    background: #999;
    border-color: transparent;
    box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2);
}
.carousel-indicators li.active {
    background: #555;
    box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2);
}

/* news */
.content {
    padding: 35px 0px;
}

.post-list {
    padding: 90px 0px;
}

.post-detail {
    padding: 40px 0px;
    margin-top: 120px;
}

.post {
    width: 100%;
    float: left;
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
    background: #fff;
    margin-bottom: 40px;
    border-radius: 3px;
}

.feature-post .thumbnail .author-info {
    padding: 20px 5px 20px 40px;
    text-align: left;
    min-height: 80px;
    background: #2c3840;
    float: left;
    width: 100%;
}

.post .post-type {
    float: left;
    width: 100%;
}

.post iframe {
    padding: 0px;
    margin: 0px;
}

.post .mejs-container {
    border-radius: 3px 3px 0px 0px;
    width: 100% !important;
}

.post .post-video {
    border-radius: 3px 3px 0px 0px;
}

.post .post-video iframe {
    width: 100%;
}

.post .post-video video {
    border-radius: 3px 3px 0px 0px;
}

.post .post-multiple-img a img {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    width: 100%;
    height: auto;
    display: block;
    min-height: 160px;
}

.post .post-multiple-img a {
    float: left;
    width: 100%;
    display: block;
}

.post .post-multiple-img a:hover img {
    opacity: 0.7;
}

.post .post-audio {
    height: auto;
}

.post .post-audio ._SMB-widget {
    width: 100%;
}

.post .post-quote blockquote {
    text-align: center;
    margin: 0px;
    padding: 25px 15px;
}

.post .post-quote blockquote h3 {
    color: #e74c3c;
    font-size: 36px;
    margin: 0px 0px 10px 0px;
}

.post .post-quote blockquote p {
    color: #333;
    font-size: 24px;
    font-weight: 300;
}

.post .post-img a {
    display: block;
}

.post .post-img:hover a img {
    opacity: 0.7;
}

.post .post-img a img {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    width: 100%;
    height: auto;
    border-radius: 3px 3px 0px 0px;
}

.post-detail .post .caption {
    padding: 55px 45px 0px 45px;
}

.post .caption {
    float: left;
    width: 100%;
    text-align: left;
}

.post .caption h3 {
    margin: 0px 0px 20px 0px;
    color: #36a0e7;
    font-weight: 300;
    font-size: 34px;
    line-height: 42px;
}

.post .caption p {
    line-height: 28px;
    margin-bottom: 20px;
    font-size: 16px;
}

.post .author-info {
    text-align: left;
    min-height: 60px;
    /* border-bottom: 1px solid #ddd;
    background: #fcfcfc; */
    float: left;
    width: 100%;
}

.post .author-info .list-inline {
    margin: 0px;
}

.post .author-info ul li:first-child {
    border-left: none;
    padding-left: 0px;
}

.post .author-info ul li {
    float: left;
    border-left: 1px solid #ddd;
    padding-left: 20px;
    padding-right: 20px;
}

.post .author-info ul li p {
    line-height: 16px;
    color: #3b4952;
    font-weight: 300;
    font-size: 14px;
    margin: 0px;
}

.post .author-info ul li strong {
    color: #3b4952;
}

.post .author-info ul li a {
    color: #3b4952;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}

.post .author-info ul li a:hover {
    color: #e74c3c;
    text-decoration: none;
}

.post .author-info ul li .icon-box {
    margin-right: 15px;
    width: 36px;
    text-align: center;
    line-height: 36px;
    font-size: 30px;
    height: 36px;
    float: left;
    background: transparent;
    color: #aebbc5;
}

.post .author-info ul li .icon-box img {
    border-radius: 3px;
    width: 100%;
}

.post .author-info ul li .info {
    float: left;
}

.post .author-info.author-info-2 ul li:first-child {
    border-left: none;
    padding-left: 0px;
}

.post .author-info.author-info-2 ul li .icon-box {
    font-size: 28px;
}

.post .post-category {
    float: left;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
}

.post .post-category a {
    margin: 0px;
    font-size: 18px;
    font-weight: 300;
    color: #3b4952;
}

.post .post-category span {
    width: 12px;
    height: 12px;
    display: inline-block;
    background: #3b4952;
    vertical-align: middle;
    margin-right: 10px;
}

.post .post-category a:hover span {
    background: #e74c3c;
    color: #e74c3c;
}

.post .post-category a:hover {
    color: #e74c3c;
}

.post .tags {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.post .tags li {
    margin-bottom: 8px;
    padding: 0px 2px;
}

.post .tags li a {
    background: #ebf1f4;
    font-size: 14px;
    font-weight: 300;
    border-radius: 3px;
    padding: 4px 8px;
    color: #3b4952;
}

.post .tags li a:hover {
    background: #3b4952;
    color: #fff;
}

.img-grid {
    float: left;
    margin-bottom: 40px;
}

.img-grid li {
    margin: 0px;
    float: left;
}

.post .caption h5 {
    text-decoration: underline;
    margin: 0px 0px 20px 0px;
    color: #3b4952;
    font-weight: 300;
    font-size: 24px;
    line-height: 30px;
}

.post .list-unstyled {
    margin-bottom: 40px;
}

.post .list-unstyled li {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    color: #49545b;
}

.post .list-unstyled li i {
    color: #a0b9ca;
    margin-right: 15px;
}

blockquote {
    background: #f2f6f8;
    border: 1px solid #e5e5e5;
    line-height: 28px;
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 500;
    color: #49545b;
}

.line-block {
    padding: 20px 45px;
    border-top: 1px solid #eef3f6;
    border-bottom: 1px solid #eef3f6;
    float: left;
    width: 100%;
}

.post .line-block .tags {
    margin-bottom: 0px;
}

.share-this {
    padding: 20px 45px;
    border-bottom: 1px solid #eef3f6;
    float: left;
    width: 100%;
}

.share-this p,
.share-this ul {
    margin-bottom: 0px;
}

.share-this li a {
    background: #2c3840;
    line-height: 34px;
    text-align: center;
    color: #fff;
    width: 32px;
    height: 32px;
    display: block;
    border-radius: 50%;
}

.share-this li a.pinterest {
    background: #d91c1c;
}

.share-this li a.google-plus {
    background: #f25353;
}

.share-this li a.facebook {
    background: #2b77be;
}

.share-this li a.twitter {
    background: #62bfef;
}

.related-post {
    padding: 40px 45px;
    border-bottom: 1px solid #eef3f6;
    float: left;
    width: 100%;
}

.related-post .thumbnail {
    padding: 0px;
    border: none;
}

.related-post .thumbnail .caption {
    padding: 30px 0px 0px 0px;
}

.related-post .thumbnail .caption a {
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    color: #49545b;
}

.related-post .thumbnail .caption a:hover {
    color: #36a0e7;
}

.related-post .thumbnail:hover a img {
    opacity: 0.7;
}

.related-post h4 {
    color: #49545b;
    font-weight: 700;
    font-size: 18px;
    margin: 0px 0px 20px 0px;
}

.comment-count {
    padding: 45px 45px;
    border-bottom: 1px solid #eef3f6;
    float: left;
    width: 100%;
}

.comment-count h4 {
    font-weight: 500;
    font-size: 24px;
    color: #3b4952;
}

.comment-count p {
    margin-bottom: 0px;
}

.comment-list {
    float: left;
    width: 100%;
}

.comment-list .media:first-child {
    margin-top: 0px;
    border-bottom: 1px solid #eef3f6;
}

.comment-list .media {
    padding: 30px 45px;
    margin-top: 0px;
}

.comment-list .media .media-body .media {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: -80px;
    border-left: 1px solid #eef3f6;
    border-bottom: 1px solid #eef3f6;
}

.comment-list .media .media-body {
    position: relative;
}

.comment-list .media .media-left {
    padding-right: 20px;
}

.comment-list .media .nested-first {
    margin-top: 30px;
    border-top: 1px solid #eef3f6;
}

.comment-list .media .nested-first:before {
    position: absolute;
    left: -80px;
    top: 90px;
    content: "";
    width: 1px;
    background: #eef3f6;
    height: 170px;
}

.comment-list .media,
.comment-list .media-body {
    overflow: visible;
    zoom: 1;
}

.comment-list .media .media-body ul {
    margin-bottom: 0px;
}

.comment-list .media .media-body ul li a {
    color: #919ea8;
    font-size: 18px;
    font-weight: 500;
}

.comment-list .media .media-body ul li a:hover {
    color: #36a0e7;
}

.comment-list .media .media-body ul li a.reply-btn {
    color: #49545b;
    text-decoration: underline;
}

.comment-list .media .media-body ul li a.reply-btn:hover {
    color: #36a0e7;
}

.comment-list .media .media-body ul li {
    font-size: 18px;
    padding-right: 15px;
    color: #919ea8;
    font-weight: 500;
}

.comment-form {
    float: left;
    width: 100%;
    padding: 30px 45px;
}

.comment-form h4 {
    font-weight: 300;
    font-size: 28px;
    color: #3b4952;
    margin-bottom: 40px;
}

.comment-form .form-control {
    border-radius: 0px;
    background: #f1f4f6;
    border: none;
    height: 50px;
    color: #4a555c;
    font-size: 16px;
}

.comment-form .form-control::-webkit-input-placeholder {
    color: #4a555c;
}

.comment-form .form-control:-moz-placeholder {
    color: #4a555c;
}

.comment-form .form-control::-moz-placeholder {
    color: #4a555c;
}

.comment-form .form-control:-ms-input-placeholder {
    color: #4a555c;
}

.comment-form textarea.form-control {
    height: auto;
    min-height: 200px;
    resize: none;
}

.comment-form form {
    margin-bottom: 40px;
}

.vt-post.post .author-info ul li {
    padding-left: 15px;
    padding-right: 15px;
    float: none;
}

/* .vt-post.post .author-info {
    border-radius: 0px 0px 0px 3px;
    border-bottom: none;
    border-right: 1px solid #ddd;
} */

.vt-post.post .post-img a img {
    border-radius: 3px 0px 0px 0px;
}

.post .caption h3 {
    margin: 0px 0px 20px 0px;
    color: #36a0e7;
    font-weight: 300;
    font-size: 34px;
    line-height: 42px;
}
.md-heading {
    font-size: 24px !important;
    line-height: 36px !important;
    margin-bottom: 15px !important;
}
@media screen and (min-width: 992px) {
    .desktop-hide {
        display: none;
    }
    a.desktop-hide {
        display: none !important;
    }
}
@media screen and (max-width: 991px) {
    .author-card p {
        padding-top: 16px !important;
        margin-bottom: 0px !important;
    }
    .author-image {
        width: 120px !important;
        height: 120px !important;
    }
    .author-card {
        display: block !important;
    }
    .news-sec img,
    .news-sec p,
    .news-sec .author-info {
        display: none;
    }
    .last-nm {
        margin-top: 20px;
    }

    .servey-form {
        padding: 30px 10px !important;
    }
    .get-pills {
        padding: 23px !important;
    }
    .mobile-hide {
        display: none;
    }
    a.mobile-hide {
        display: none !important;
    }
}
.faq-answer {
    padding: 1rem;
    background-color: #fbfbfb;
    border-top: 1px solid #ddd;
}

/* Blog */
.box .content h6,
.content h6 {
    font-size: 20px !important;
    font-weight: 600;
    color: #000;
}

.content .ltn__blog-meta li i,
li.ltn__blog-date {
    color: #000;
    margin-right: 5px;
    list-style: none;
}

.ltn__blog-meta ul {
    padding-left: 0px;
}

/* Pagination */
#page-numbers {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 2rem;
    font-weight: 600;
}

.pagination a {
    padding: 8px 16px;
    border: 1px solid #024bab;
    border-radius: 4px;
    margin: 0 5px;
}

.pagination a:hover,
.pagination .active {
    background-color: #024bab;
    color: white;
}

.page-link.pages {
    border-radius: 28px;
    padding: 13px 20px 10px !important;
}

a#next,
a#prev {
    padding: 12px 36px !important;
}
.box:hover {
    border-radius: 12px;
    padding: 0px;
}
.content {
    padding: 20px 10px 5px;
    background: #f5f5f5;
}

.blog-left-col {
    background: #fff;
    padding: 30px 30px 0;
    height: 100%;
}
.sidebar-box h3.heading {
    font-size: 10px !important;
    line-height: 0.9px !important;
    font-weight: 100;
}
.sidebar-box .block-21 .blog-img {
    display: block;
    height: 40px;
    width: 60px;
}
.sidebar-box .block-21 .text .heading a {
    font-size: 18px !important;
    line-height: 25px !important;
}
.sidebar-box .meta a {
    font-size: 15px !important;
}
.sidebar {
    margin-top: 30px;
}
.sidebar-box {
    padding: 16px;
    border: 1px solid #ededed;
}
.blog-left-col h1 {
    font-size: 32px;
}
@media screen and (max-width: 992px) {
    .shipping-method-col {
        margin-bottom: 15px !important;
    }
    .sidebar-box {
        margin-top: 25px;
    }
    .sidebar-box .block-21 .text .heading a {
        font-size: 16px !important;
    }
    .navbar {
        padding: 0px !important;
    }
    .blog-left-col img {
        width: 100%;
        height: 14%;
    }
    .sidebar {
        margin-top: 0px;
    }
    section.blog-sec {
        padding: 35px 10px 15px !important;
    }
    .box {
        margin-bottom: 20px;
    }
    a#next,
    a#prev {
        padding: 6px 15px !important;
    }
    .pagination {
        gap: 0px;
    }
    .navbar-brand img {
        width: 250px;
        height: 100%;
    }
    .news-sec a {
        font-size: 20px !important;
    }
    .news-sec h2 {
        line-height: 27px !important;
    }
    .post {
        margin-bottom: 26px !important;
    }
}
.blog-img img {
    width: 60px;
    height: 60px;
}

/* contact-us */
.contact-form {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
button.contact-submit-btn {
    width: 26%;
    background: #024bab;
    color: #fff;
    display: flex;
    margin: 0 auto;
    justify-content: center;
}
.left-contactus {
    background: #c3ddff;
    padding: 20px 30px;
}
.left-contactus h2 {
    font-weight: 600;
    font-size: 28px;
}

.right-contactus {
    padding: 40px 10px;
}

/* Search Result */
.search-body .btn {
    font-weight: 500;
    transition: 0.5s;
    color: #024bab !important;
    border: 1px solid;
}
.search-body {
    padding: 20px;
}
.step {
    display: none;
}
.step.active {
    display: block;
}

.get-pills {
    background: #f3f3f3 !important;
    border-radius: 14px;
}

.search-box {
    border-radius: 30px;
    background-color: #e9e9e9;
    padding: 10px 30px;
    max-width: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    flex-grow: 1;
    font-size: 16px;
}

.search-icon {
    cursor: pointer;
}
.tag {
    cursor: pointer;
    padding: 8px 15px;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background-color: #f2f2f2;
    color: #000;
    transition: background-color 0.3s ease;
}

.tag.active {
    background-color: #024bab;
    color: #fff;
    border-color: #024bab;
}

button#closeSearchPanel {
    color: #000 !important;
    font-size: 44px;
}

button.sub-btn {
    color: #024bab !important;
    font-weight: 600 !important;
    font-size: 23px !important;
    padding: 10px 43px !important;
    margin: 0 auto;
    display: flex;
}

button.btn.next {
    padding: 09px 35px !important;
    border-radius: 7px;
    font-size: 18px !important;
}

button.btn.prev {
    border-radius: 7px;
    font-size: 18px !important;
    background: #024bab;
    padding: 10px 20px !important;
    border: unset;
}
.form-check.date-calender {
    padding-left: 0px;
}
.date-calender input#date {
    padding: 8px 20px;
}

.step-number {
    background-color: white;
    color: #0d6efd;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
}
.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.how-work {
    padding: 50px 50px 5px;
    background: #054da9;
    color: #fff;
}
.how-work h2,
.how-work h4 {
    color: #fff !important;
    font-size: 40px;
}
.how-work button {
    color: #000 !important;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
}
.accordion-button:not(.collapsed) {
    background-color: #c3ddff;
    box-shadow: inset 0 -1px 0 #c3ddff !important;
}

.content {
    height: 300px;
}
.author-info {
    border: 1px solid #ededed;
    padding: 20px 20px 10px;
    border-radius: 15px;
    background: #ebf4ff;
}
.author-card {
    display: flex;
}
.author-image {
    border-radius: 10px;
    margin-right: 20px;
    width: 100%;
    height: 100%;
}

.blog h2 {
    color: #fff;
}

.order-steps {
    background: #054da9;
    padding: 30px 25px;
    border-radius: 1%;
}
.order-steps a {
    color: #fff;
}
@media screen and (max-width: 600px) {
    .order-btn-pills {
        padding: 13px;
    }
}

.testimonial {
    background-color: #ebf4ff;
    border-left: 4px solid #094ea7;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.testimonial::before {
    content: "“";
    font-size: 40px;
    color: #ccc;
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: Georgia, serif;
}

.testimonial-name {
    font-weight: bold;
    margin-top: 15px;
}

.two {
    color: #ffc107 !important;
}
.three {
    color: rgb(255, 106, 0) !important;
}
.one {
    color: rgb(255, 0, 0) !important;
}
.four {
    color: rgb(193 193 13) !important;
}
.five {
    color: rgb(24, 159, 14) !important;
}
span.star.five,
span.star.four,
span.star.three,
span.star.two,
span.star.one {
    font-size: 28px;
}
div#stars {
    font-size: 30px;
    cursor: pointer;
}
form#review-form {
    padding: 20px 30px 30px;
}
.rating h4 {
    color: #054da9;
}
button#post-review {
    background: #054da9;
    padding: 13px 25px;
    font-size: 18px;
}
button.btn.review-btn {
    background: #054da9;
    padding: 10px 20px;
    border-radius: 7px;
}
.review-btn a {
    color: #fff;
}
.order-summary {
    padding: 20px;
    border: 1px solid #000;
    border-radius: 13px;
    margin: 28px 0;
}
.order-summary strong {
    font-size: 17px;
}
.order-summary h4 strong {
    font-size: 20px;
}
.order-summary h4 {
    margin-bottom: 18px !important;
}
.order-summary p {
    margin-bottom: 6px !important;
}

/* floating whatsapp icon */
.whatsapp-float {
    position: fixed;
    bottom: 110px;
    /* 👈 higher than back-to-top */
    right: 36px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    text-decoration: none;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 100px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
}
