@charset "utf-8";

/* CSS Document */

a,
a:active,
a:hover,
a:visited {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

:root {
    --white: #ffffff;
    --orange: #FCA311;
    --yellow: #FABE2C;
    --blue: #48BFE3;
    --pink: #FAC8CD;
    --grey: #A29B9B;
    --black: #000;
    --cyan: #0FA8B4;
    --darkGrey: #2D2A32;
    --medGrey: #A29B9B;
    --lightGrey: #F1F1F1;
    --caret: #dc3545;
    --magenta: #F6656F;
    --green: #2EC4B6;
    --skyBlue: #1492E6;
}


/* 1^ global classes */

.text-underline {
    text-decoration: underline;
}

.text-bold {
    font-weight: 700;
}

.text-light {
    font-weight: 300;
}

.text-normal {
    font-weight: 400;
}

.text-white {
    color: #fff;
}

.radius-10 {
    border-radius: 10px;
}

.shad {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.bg-white {
    background: #fff;
}

img {
    max-width: 100%;
}


/* ===============Home page ================== */


/* ------------Navigation-------------- */

a.navbar-brand.logo_custom {
    max-width: 350px;
    position: relative;
    background: var(--yellow);
    padding: 14px 40px 14px 100px;
}

    a.navbar-brand.logo_custom img {
        max-height: 82px;
    }

.custom_nav_right {
    margin-left: 120px;
}

.logo_custom:before {
    content: "\A";
    border-style: solid;
    border-width: 0px 0px 111px 132px;
    border-color: transparent transparent transparent var(--yellow);
    position: absolute;
    right: -132px;
    top: 0;
    bottom: 0;
}

.navbar-dark.main_nav {
    background: var(--darkGrey);
    color: var(--white);
    z-index: 999;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    margin-right: 60px;
    padding: 38px 10px;
}

a.nav-link.active {
    color: var(--yellow) !important;
    border-bottom: 4px solid var(--yellow);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:active {
    color: var(--yellow);
    border-bottom: 4px solid var(--yellow);
}

.custom_nav_right a.btn_login {
    font-weight: 500;
    color: var(--white);
    font-size: 1.2rem;
    background-color: var(--orange);
    padding: 6px 30px;
    border-radius: 7px;
    margin-right: 20px;
}

    .custom_nav_right a.btn_login:hover,
    .custom_nav_right a.btn_login:active {
        background-color: var(--skyBlue);
        transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
    }

.custom_nav_right a.btn_signup {
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 6px 30px;
    border-radius: 7px;
    margin-right: 20px;
}

    .custom_nav_right a.btn_signup:hover,
    .custom_nav_right a.btn_signup:active {
        background-color: var(--orange);
        border: none;
        transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
    }

ul.navbar-nav.mr-auto {
    margin-right: auto;
}

.account_btn.mr-5 {
    padding-right: 50px;
}


/* ------------Navigation End-------------- */


/* ------------banner section-------------- */

.banner-text {
    text-align: center;
    color: var(--blue);
    top: 35%;
    left: 8%;
}

    .banner-text h2 {
        font-size: 5rem;
        font-weight: 600;
    }

    .banner-text h5 {
        color: var(--orange);
        font-style: italic;
        font-size: 2.5rem;
    }

    .banner-text p {
        font-size: 1.25rem;
        font-weight: 500;
    }

.banner_btn a.btn.btn_banner {
    padding: 8px 40px;
    border: 2px solid var(--blue);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    font-weight: 600;
}

    .banner_btn a.btn.btn_banner:hover {
        background-color: var(--blue);
        color: var(--white);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }


/* ===============Banner section end================== */


/* ===============Fetured Breeders================== */

.headingFeatured {
    text-align: center;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
}

    .headingFeatured h2 {
        position: relative;
        display: inline-block;
        margin-bottom: 1.25rem;
        color: var(--darkGrey);
        font-size: 3rem;
    }

        .headingFeatured h2:after,
        .headingFeatured h2:before {
            content: "";
            width: 100px;
            height: 5px;
            background: var(--orange);
            position: absolute;
            top: 50%;
        }

        .headingFeatured h2:before {
            right: 105%;
        }

        .headingFeatured h2:after {
            left: 105%;
        }


/***Item slider****/

.custom_container {
    width: 90%;
    margin: auto;
    position: relative;
}

.slider-main .slide-arrow img {
    width: 50px;
}

.slider-main .prev-arrow {
    right: 4%;
    z-index: 9;
}

.slick-slide {
    margin: 18px;
}

.feature_item img {
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.colorstyle-1 {
    background-color: var(--white);
}

.feature_details {
    text-align: center;
    color: var(--darkGrey);
    padding: 30px 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    position: relative;
    min-height: 315px;
}

.banner_btn {
    text-align: left;
}

.mainbanner_btn .btn_banner {
    padding: 8px 40px;
    border: 2px solid var(--orange);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    font-weight: 600;
    text-align: center;
    color: var(--orange);
}

    .mainbanner_btn .btn_banner:hover {
        background-color: var(--orange);
        color: var(--white);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

.inner_feature {
    padding: 0 40px;
}

.colorstyle-2 {
    background-color: #aeaeae;
}

.feature_img {
    height: 100%;
}

    .feature_img img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        object-position: top;
    }

.slider-section {
    background-color: #FBFEFF;
}

.colorstyle-3 {
    background-color: #9e004a;
}

.feature_details h3 {
    font-weight: 600;
    padding-top: 50px;
    text-align: left;
}

.feature_details p {
    font-size: 1.125rem;
    font-weight: 500;
    padding-top: 5px;
    text-align: left;
}

a.btn.btn_more {
    padding: 10px 25px;
    background-color: var(--blue);
    color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    font-weight: 600;
}

span.arrow_outer i {
    font-size: 1.3rem;
    padding-left: 10px;
}

.bt-profile {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--white);
}

.slickpre {
    background-color: #fca3118c;
    border: none;
    height: 85px;
    color: var(--white);
    width: 85px;
    position: absolute;
    border-radius: 50%;
    top: 45%;
    left: -3%;
}

.slicknext {
    background-color: #fca3118c;
    border: none;
    height: 85px;
    color: var(--white);
    width: 85px;
    position: absolute;
    border-radius: 50%;
    top: 45%;
    right: -3%;
}

.arrow_left i.fa.fa-long-arrow-left {
    font-size: 35px;
}

.arrow_right i.fa.fa-long-arrow-right {
    font-size: 35px;
}


/**** Content section******/


/* ===============Fetured Breeders end================== */


/* ===============what is Hundly================== */

.what_hundly {
    background-color: var(--white)
}

.content_box {
    padding: 0px 150px 0px 0px;
}

    .content_box .content_main {
        border-bottom: 8px solid var(--blue);
        padding: 30px 50px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    }

        .content_box .content_main h2 {
            text-align: center;
            color: var(--blue);
            font-size: 2.5rem;
            font-weight: 500;
            padding: 30px;
        }

        .content_box .content_main p {
            font-weight: 500;
            color: var(--medGrey)
        }


/* ===============what is Hundly end================== */


/* ===============Latest blog section================== */

.latest_blog {
    background-color: #FBFEFF;
}

.blog_img {
    height: 100%;
}

.inner_blog {
    padding: 0 40px;
}

.blog_card {
    box-shadow: rgb(0 0 0 / 10%) 0px 4px 12px;
    border-radius: 25px 25px 10px 10px;
    -webkit-border-radius: 25px 25px 10px 10px;
    -moz-border-radius: 25px 25px 10px 10px;
    -ms-border-radius: 25px 25px 10px 10px;
    -o-border-radius: 25px 25px 10px 10px;
}

.blog_details {
    color: var(--darkGrey);
    padding: 15px 30px 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    position: relative;
}

.blog_img img {
    width: 100%;
}

.blog_btn {
    text-align: center;
}

    .blog_btn a.btn.btn_blog {
        padding: 10px 25px;
        background-color: var(--orange);
        color: var(--white);
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
        font-weight: 600;
    }

.blog_head {
    border-bottom: 1px solid var(--medGrey);
}

p.blog-content {
    padding-top: 10px;
}

ul.blog_profile i {
    color: var(--orange);
    font-size: 1.5rem;
    padding-right: 10px;
}

ul.blog_profile li {
    display: flex;
    font-style: italic;
}

ul.blog_profile {
    margin: 0;
}

ul.blog_profile {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.blog_profile_name {
    font-weight: 500;
    font-style: normal;
}


/* ===============app Download links================== */

.app_content_box {
    padding: 0px 0px 0px 150px;
}

    .app_content_box .app_content_main {
        border-bottom: 8px solid var(--orange);
        padding: 30px 50px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    }

        .app_content_box .app_content_main h2 {
            text-align: center;
            color: var(--orange);
            font-size: 2.5rem;
            font-weight: 500;
            padding: 30px;
        }

        .app_content_box .app_content_main p {
            font-weight: 500;
            color: var(--medGrey)
        }


/* ===============contact direct hundly================== */

.contact_directly {
    background-color: #FBFEFF;
}

    .contact_directly .contact_box {
        background-color: var(--orange)
    }

        .contact_directly .contact_box .head_box {
            border-bottom: 1px solid var(--white);
        }

.contact_box .head_box h2 {
    text-align: center;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 500;
    padding: 30px;
}

.contact_directly .contact_box .head_box {
    width: 35%;
    border-bottom: 2px solid var(--white);
    margin: auto;
}

.main_form_contact {
    padding: 25px 10px;
    border-radius: 10px;
    font-size: 15px;
    border: none;
    font-weight: 500;
}

.form-control:focus {
    box-shadow: none;
}

.submit_btn {
    text-align: center;
}

    .submit_btn input.btn.btn_submit {
        background-color: var(--darkGrey);
        color: var(--white);
        padding: 25px 200px;
        font-size: 1.3rem;
        font-weight: 500;
        border-radius: 50px;
    }

.contact_icon {
    font-size: 1.5rem;
    color: var(--orange);
    background-color: var(--white);
    border-radius: 10px 0px 0px 10px;
    border: 1px;
}


/* ===============footer================== */

footer.main_footer {
    background-color: var(--darkGrey);
}

.footer_logo {
    width: 50%;
}

.footer_content {
    color: var(--white);
    font-size: 1.3rem;
}

.footer_head {
    color: var(--white);
}

    .footer_head h3 {
        position: relative;
        display: inline-block;
    }

        .footer_head h3:after {
            content: "";
            width: 80px;
            height: 5px;
            background: var(--orange);
            position: absolute;
            bottom: -10%;
            left: 72%;
        }

ul.links {
    list-style: none;
    padding: 0;
}

li.footer_link {
    padding: 15px 0;
}

    li.footer_link a {
        color: var(--white);
        font-size: 1.3rem;
        font-weight: 500;
    }

        li.footer_link a:hover {
            color: var(--orange);
        }

.subscribe-form {
    position: relative;
    overflow: hidden;
}

    .subscribe-form input {
        width: 100%;
        padding: 14px 28px;
        background: none;
        border: 2px solid #fff;
        color: #ffffff;
        outline: none;
    }

        .subscribe-form input:hover,
        .subscribe-form input:focus {
            border: 2px solid var(--orange);
        }

    .subscribe-form button {
        position: absolute;
        right: 0;
        background: var(--orange);
        padding: 13px 20px;
        border: 2px solid var(--white);
        top: 0;
    }

        .subscribe-form button i {
            color: #fff;
            font-size: 22px;
            transform: rotate(-6deg);
        }

ul.app_icon {
    list-style: none;
    padding: 20px 0;
    color: var(--white);
    font-size: 2.5rem;
    display: flex;
}

    ul.app_icon li {
        padding-right: 10px;
        padding-left: 10px;
    }

        ul.app_icon li:hover {
            color: var(--orange);
        }

.copyright {
    background-color: var(--orange)
}

    .copyright h6 {
        color: var(--white);
        text-align: center;
        padding: 20px 0px;
        margin: 0;
    }


/* ===============Home page ================== */


/* ===============Login page ================== */

.main-login-bg {
    background-image: url(../images/home/login-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    /*height: 100%;*/
    position: relative;
    padding: 50px 0;
}

.main_login_box {
    background-color: #8d849545;
}

.login_directly .login_box {
    background-color: var(--orange)
}

.login_box .head_box h2 {
    text-align: center;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 500;
    padding: 15px 30px;
}

.login_box .head_box {
    width: 30%;
    border-bottom: 3px solid var(--orange);
    margin: auto;
}

.main_form {
    padding: 30px 10px;
    border-radius: 10px;
    font-size: 15px;
    border: none;
    font-weight: 500;
}

.form-control.main_form {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.form-control:focus {
    box-shadow: none;
}

.login_submit_btn {
    text-align: center;
}

a.btn.login_btn_submit {
    background-color: var(--orange);
    color: var(--white);
    padding: 20px 160px;
    font-size: 1.3rem;
    font-weight: 500;
    border-radius: 50px;
}

.login_icon {
    font-size: 2rem;
    color: var(--orange);
    background-color: var(--white);
    border-radius: 10px 0px 0px 10px;
    border: 1px;
    padding: 0 20px;
}

.input-group-text.login_icon {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    padding-left: 40px;
    padding-right: 0;
}

.new_account_text {
    text-align: center;
    color: var(--white);
}

a.new_up {
    color: var(--orange);
    font-size: 1.375rem;
    font-weight: 600;
}

.login_icon_eye {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    padding-right: 40px;
    color: var(--medGrey);
    font-size: 2rem;
}

.login_checkbox {
    font-size: 25px;
}

.form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}

.login_logo {
    position: absolute;
    width: 8%;
    top: 6%;
    left: 3%;
    z-index: 1;
}

.forget_p {
    display: flex;
    justify-content: space-between;
}

    .forget_p .form-check {
        margin-left: 1rem;
    }

input#flexCheckDefault {
    margin-top: 0;
}

label.form-check-label {
    color: #fff;
}

.forget_p p {
    color: var(--orange)
}


/* ===============signup page ================== */

.main-signup-bg {
    background-image: url(../images/home/signup-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
}

.main_signup_box {
    background-color: #8d849545;
}

.signup_directly .signup_box {
    background-color: var(--orange)
}

.signup_box .head_box h2 {
    text-align: center;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 500;
    padding: 15px 30px;
}

.signup_box .head_box {
    width: 30%;
    border-bottom: 3px solid var(--orange);
    margin: auto;
}

.main_form {
    padding: 28px 10px;
    border-radius: 10px;
    font-size: 15px;
    border: none;
    font-weight: 500;
}

.main_input {
    border: 2px solid orange;
    border-radius: 50px;
}

.form-control.main_form {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.form-control:focus {
    box-shadow: none;
}

.signup_submit_btn {
    text-align: center;
}

a.btn.signup_btn_submit {
    background-color: var(--orange);
    color: var(--white);
    padding: 20px 160px;
    font-size: 1.3rem;
    font-weight: 500;
    border-radius: 50px;
}

.signup_icon {
    font-size: 2rem;
    color: var(--orange);
    background-color: var(--white);
    border-radius: 10px 0px 0px 10px;
    border: 1px;
    padding: 0 20px;
}

.input-group-text.signup_icon {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    padding-left: 40px;
    padding-right: 0;
}

.new_account_text {
    text-align: center;
    color: var(--white);
}

a.new_up {
    color: var(--orange);
    font-size: 1.375rem;
    font-weight: 600;
}

.signup_icon_eye {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    padding-right: 40px;
    color: var(--medGrey);
    font-size: 2rem;
}

.signup_checkbox {
    font-size: 25px;
}

.form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}

.signup_logo {
    position: absolute;
    width: 8%;
    top: 6%;
    left: 3%;
    z-index: 1;
}

.forget_p {
    display: flex;
    justify-content: space-between;
}

    .forget_p .form-check {
        margin-left: 1rem;
    }

input#flexCheckDefault {
    margin-top: 0;
}

label.form-check-label {
    color: #fff;
}

.forget_p p {
    color: var(--orange)
}


/* coming soon */

.comming_soon {
    background-color: #fec400;
    height: 100vh;
}


/* 404 */

a.btn.btn_backhome {
    color: #fff;
    padding: 15px 25px;
    bottom: 10%;
    left: 46%;
    font-weight: 500;
    position: absolute;
    background-color: #2d2a32;
}
/* faature page */
.page_outer {
    background-image: url(../images/home/main_title.png);
    /*background-position: 0 100px;*/
    min-height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
}
    .page_outer h2 {
        color: var(--white);
        font-size: 50px;
    }
.modal-body.max-h {
    max-height: calc(100vh - 108px);
    overflow: auto;
}
/* costom Scroolbar Start */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 10px;
}


/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 10px;
}


    /* Handle on hover */

    ::-webkit-scrollbar-thumb:hover {
        background: var(--blue);
    }


/* costom Scroolbar End */


/* about Page Start */

.about_content_box .content_main {
    border-bottom: 8px solid var(--blue);
    padding: 30px 50px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

    .about_content_box .content_main h2 {
        text-align: center;
        color: var(--blue);
        font-size: 2.5rem;
        font-weight: 500;
        padding: 30px;
    }

    .about_content_box .content_main p {
        font-weight: 500;
        color: var(--medGrey)
    }

.about_image {
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    box-shadow: rgb(0 0 0 / 10%) 0px 4px 12px;
}

    .about_image img {
        border-radius: 40px;
        -webkit-border-radius: 40px;
        -moz-border-radius: 40px;
        -ms-border-radius: 40px;
        -o-border-radius: 40px;
        width: 100%;
    }

.our_team .blog_img {
    height: 100%;
    box-shadow: rgb(0 0 0 / 10%) 0px 4px 12px;
}

    .our_team .blog_img img {
        width: 100%;
    }

.our_team .feature_item img {
    border-radius: 30px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.our_team .blog_card {
    box-shadow: none;
}

.social_outer ul {
    list-style: none;
    padding: 0;
}

    .social_outer ul li {
        color: var(--orange);
        font-size: 3rem;
    }

        .social_outer ul li:hover {
            color: var(--blue);
        }

    .social_outer ul i {
        padding: 0px 10px;
    }

.slick-dots li.slick-active button:before {
    color: var(--orange) !important;
}

.slick-dots li button:before {
    font-size: 16px !important;
}


/* about Page End */


/* blog details page start */

.blog-listing {
    padding-top: 30px;
    padding-bottom: 30px;
}


/* Blog 
---------------------*/

.blog-grid {
    box-shadow: rgb(0 0 0 / 10%) 0px 4px 12px;
    ;
    border-radius: 5px;
    overflow: hidden;
    background: var(--white);
    margin-top: 15px;
    margin-bottom: 15px;
}

    .blog-grid .blog-img {
        position: relative;
    }

        .blog-grid .blog-img .date {
            position: absolute;
            background: var(--orange);
            color: var(--white);
            padding: 8px 15px;
            left: 10px;
            top: 10px;
            border-radius: 4px;
        }

            .blog-grid .blog-img .date span {
                font-size: 22px;
                display: block;
                line-height: 22px;
                font-weight: 700;
            }

            .blog-grid .blog-img .date label {
                font-size: 14px;
                margin: 0;
            }

    .blog-grid .blog-info {
        padding: 20px;
    }

        .blog-grid .blog-info h5 {
            font-size: 22px;
            font-weight: 700;
            margin: 0 0 10px;
        }

            .blog-grid .blog-info h5 a {
                color: var(--darkGrey);
            }

        .blog-grid .blog-info p {
            margin: 0;
        }

        .blog-grid .blog-info .btn-bar {
            margin-top: 20px;
        }


/* Blog Sidebar
-------------------*/

.blog-aside .widget {
    box-shadow: rgb(0 0 0 / 10%) 0px 4px 12px;
    border-radius: 5px;
    background: var(--white);
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
    max-height: 400px;
    overflow: auto;
    display: inline-block;
    vertical-align: top;
}

.blog-aside .widget-body {
    padding: 15px;
}

.blog-aside .widget-title {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

    .blog-aside .widget-title h3 {
        font-size: 20px;
        font-weight: 700;
        color: var(--orange);
        margin: 0;
    }

.blog-aside .widget-author .media {
    margin-bottom: 15px;
}

.blog-aside .widget-author p {
    font-size: 16px;
    margin: 0;
}

.blog-aside .widget-author .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.blog-aside .widget-author h6 {
    font-weight: 600;
    color: var(--darkGrey);
    font-size: 22px;
    margin: 0;
    padding-left: 20px;
}

.blog-aside .post-aside {
    margin-bottom: 15px;
}

    .blog-aside .post-aside .post-aside-title h5 {
        margin: 0;
    }

    .blog-aside .post-aside .post-aside-title a {
        font-size: 18px;
        color: var(--darkGrey);
        font-weight: 600;
    }

    .blog-aside .post-aside .post-aside-meta {
        padding-bottom: 10px;
    }

        .blog-aside .post-aside .post-aside-meta a {
            color: #6F8BA4;
            font-size: 12px;
            text-transform: uppercase;
            display: inline-block;
            margin-right: 10px;
        }

.blog-aside .latest-post-aside + .latest-post-aside {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.blog-aside .latest-post-aside .lpa-right {
    width: 90px;
    margin-left: auto;
}

    .blog-aside .latest-post-aside .lpa-right img {
        border-radius: 3px;
    }

.blog-aside .latest-post-aside .lpa-left {
    padding-right: 15px;
}

.blog-aside .latest-post-aside .lpa-title h5 {
    margin: 0;
    font-size: 15px;
}

.blog-aside .latest-post-aside .lpa-title a {
    color: var(--darkGrey);
    font-weight: 600;
}

.blog-aside .latest-post-aside .lpa-meta a {
    color: #6F8BA4;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 10px;
}

.blog_outer .media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.tag-cloud a {
    padding: 4px 15px;
    font-size: 13px;
    color: var(--white);
    background: var(--darkGrey);
    border-radius: 3px;
    margin-right: 4px;
    margin-bottom: 4px;
}

    .tag-cloud a:hover {
        background: var(--orange);
    }

.blog-single {
    padding-top: 30px;
    padding-bottom: 30px;
}

.blog_outer .article {
    box-shadow: rgb(0 0 0 / 10%) 0px 4px 12px;
    ;
    border-radius: 5px;
    overflow: hidden;
    background: var(--white);
    padding: 15px;
    margin: 15px 0 30px;
}

    .blog_outer .article .article-title {
        padding: 15px 0 20px;
    }

        .blog_outer .article .article-title h6 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 20px;
        }

            .blog_outer .article .article-title h6 a {
                text-transform: uppercase;
                color: var(--orange);
                border-bottom: 1px solid var(--orange);
            }

        .blog_outer .article .article-title h2 {
            color: var(--darkGrey);
            font-weight: 600;
        }

        .blog_outer .article .article-title .media {
            padding-top: 15px;
            border-bottom: 1px dashed #ddd;
            padding-bottom: 20px;
        }

            .blog_outer .article .article-title .media .avatar {
                width: 45px;
                height: 45px;
                border-radius: 50%;
                overflow: hidden;
            }

            .blog_outer .article .article-title .media .media-body {
                padding-left: 8px;
            }

                .blog_outer .article .article-title .media .media-body label {
                    font-weight: 600;
                    color: var(--orange);
                    margin: 0;
                }

                .blog_outer .article .article-title .media .media-body span {
                    display: block;
                    font-size: 12px;
                }

    .blog_outer .article .article-content blockquote {
        max-width: 600px;
        padding: 15px 0 30px 0;
        margin: 0;
    }

        .blog_outer .article .article-content blockquote p {
            font-size: 20px;
            font-weight: 500;
            color: var(--orange);
            margin: 0;
        }

        .blog_outer .article .article-content blockquote .blockquote-footer {
            color: var(--darkGrey);
            font-size: 16px;
        }

            .blog_outer .article .article-content blockquote .blockquote-footer cite {
                font-weight: 600;
            }

    .blog_outer .article .tag-cloud {
        padding-top: 10px;
    }

.blog_outer img {
    max-width: 100%;
}

.blog_outer img {
    vertical-align: middle;
    border-style: none;
}

.article-img img {
    width: 100%;
}
/*********/
.features-slider .slick-list {
    padding-top: 40px;
}

.LockOn {
    display: block;
    visibility: visible;
    position: absolute;
    z-index: 999999;
    top: 0px;
    left: 0px;
    width: 105%;
    height: 105%;
    background-color: white;
    vertical-align: bottom;
    padding-top: 20%;
    filter: alpha(opacity=75);
    opacity: 0.75;
    font-size: large;
    color: blue;
    font-style: italic;
    font-weight: 400;
    background-image: url("../images/Loader.gif");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}
