/* ------------------------    Section Title------------------------*/
.theme-title h2 span {
    color: var(--themeht-primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.theme-title p {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 30px;
}

.dark-bg h2, .theme-bg h2, .dark-bg h2 span, .theme-bg h2 span, .theme-bg .theme-title h6 {
    color: var(--themeht-white-color)
}

.dark-bg .white-bg h2 {
    color: var(--themeht-text-color)
}

.dark-bg .white-bg h2 span {
    color: var(--themeht-primary-color)
}

.theme-title h6 {
    position: relative;
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--themeht-primary-color);
}

.theme-title h2 {
    margin-bottom: 15px;
}

.text-large-style {
    position: absolute !important;
    top: calc(100% / 2);
    left: calc(100% / -2);
    width: 100%;
    transform: rotate(90deg);
    margin-left: 50px;
}

.text-large-style h3 {
    font-size: 100px;
    line-height: 1;
    opacity: 0.5;
    text-transform: uppercase;
    color: var(--themeht-white-color);
    text-shadow: 1px 1px 1px var(--themeht-text-color), 3px 3px 5px var(--themeht-primary-color);
    white-space: nowrap;
}

/* ------------------------    Button------------------------*/
.primary-btn, .white-btn {
    background: none;
    padding: 16px 35px;
    overflow: hidden;
    border-radius: 0;
    position: relative;
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
}

.white-btn {
    background: var(--themeht-white-color);
    color: var(--themeht-text-color);
}

.white-btn:hover {
    color: var(--themeht-primary-color);
}

.primary-btn {
    position: relative;
    transition: all 0.6s;
    background: #58595b;
    border-radius: 5px;
    padding: 10px 15px;
    margin  : 1rem 0;
}

a.primary-btn:hover {
    background: #00afef;
}

.primary-btn span {
    transition: all 0.6s;
    z-index: 9;
    position: relative;
    color: var(--themeht-white-color);
}

.primary-btn::before, .primary-btn::after {
    content: '';
    position: absolute;
    transition: all 0.6s;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.primary-btn::before {
    /* left: 4px; */
    z-index: 1;
    opacity: 0;
    background: #00afef;
    transform: scale(0.1, 1);
}

.primary-btn:hover::before {
    opacity: 1;
    transform: scale(1, 1);
}

.primary-btn::after {
    transition: all 0.6s;
    background: #58595B;
}

.primary-btn:hover::after {
    <!-- transform: scale(1, .1);
    opacity: 0;
    -->}

.marquee-btn {
    overflow: hidden;
    display: block;
}

.marquee-btn span {
    animation: marquee 20s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--themeht-white-color);
    position: relative;
    display: inline-block;
    font-size: 200px;
    width: 100%;
    white-space: nowrap;
    line-height: 1;
}

.marquee-btn span i {
    font-size: 100px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    margin: 0 20px;
}

.marquee-btn:hover {
    background: var(--themeht-primary-color);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translatex(-100%);
    }
}

/* ------------------------ Accourdion------------------------*/
.accordion-button {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500 !important;
    text-transform: capitalize;
    transition: all 0s ease-in-out 0s;
    color: var(--themeht-text-color);
}

.accordion-button:not(.collapsed) {
    color: var(--themeht-primary-color)
}

.accordion-body {
    color: var(--themeht-body-color);
    margin-top: 15px
}

/* ------------------------    Social Icons------------------------*/
.social-icons ul {
    /* padding: 0; */
    /* margin: 0; */
    /* line-height: 0; */
}

.social-icons li {
}

.social-icons li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
    margin: 0;
    border: 0;
    background: transparent;
    color: var(--themeht-text-color);
    overflow: hidden;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

/*** Colored ***/
.social-icons.social-colored a, .social-icons.social-hover a:hover {
    color: #fff;
    border: 0;
}

.social-icons.social-colored .social-facebook a, .social-icons.social-hover .social-facebook a:hover {
    background-color: #3b5998;
}

.social-icons.social-colored .social-twitter a, .social-icons.social-hover .social-twitter a:hover {
    background-color: #1da1f2;
}

.social-icons.social-colored .social-instagram a, .social-icons.social-hover .social-instagram a:hover {
    background-color: #262626;
}

.social-icons.social-colored .social-dribbble a, .social-icons.social-hover .social-dribbble a:hover {
    background-color: #ea4c89;
}

.social-icons.social-colored .social-linkedin a, .social-icons.social-hover .social-linkedin a:hover {
    background-color: #0077b5;
}

/* ------------------------    Tab------------------------*/
.nav-tabs .nav-link {
    border: 1px solid transparent !important;
    border-radius: 0;
    width: 33.3333%;
    text-align: center !important;
    font-weight: 600 !important;
    color: var(--themeht-text-color) !important;
    position: relative;
    border-bottom: 2px solid var(--themeht-border-light-color) !important;
    padding: 10px 15px !important;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background: var(--themeht-primary-color) !important;
    border-bottom-color: var(--themeht-primary-color) !important;
    color: #ffffff !important;
}

/* ------------------------    Counter------------------------*/
.counter {
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter span {
    font-size: 30px;
    font-weight: 600;
    color: var(--themeht-text-color);
    display: inline-block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--themeht-text-color);
}

.counter span + span {
    font-weight: normal;
    font-size: 30px;
    color: var(--themeht-text-color);
    margin-bottom: 0;
}

.counter h6 {
    display: block;
    color: var(--themeht-body-color);
    font-size: 18px;
    font-weight: 500;
    position: relative;
    margin-bottom: 0;
    bottom:10px;
}

.counter-icon {
    margin-right: 20px;
}

.counter-icon i {
    position: relative;
    font-size: 50px;
    line-height: 1;
    display: inline-block;
    font-weight: normal;
    color: var(--themeht-primary-color);
}

.dark-bg .counter span, .theme-bg .counter span {
    -webkit-text-stroke: 1px var(--themeht-white-color);
}

.dark-bg .counter h6 {
    color: var(--themeht-primary-color)
}

.theme-bg .counter h6, .theme-bg .counter-icon i {
    color: var(--themeht-white-color)
}

/* ------------------------    Blog - Post------------------------*/
.post-card:hover {
    /* top:-30px; */
    opacity: 1;
    transform: translate3d(0,-25px,0);
}

.post-card {
    position: relative;
    background: var(--themeht-white-color);
    display: inline-block;
    width: 100%;
    box-shadow: 0px 0px 10px #c9c9c9;
    border-radius: 10px;
    transform: translate3d(0,0px,0);
    transition: transform .5s ease 0s;
    overflow: hidden;
}

.post-card .post-image {
    position: relative;
}



.post-card .post-image img {
    width: 100%;
    height: 240px;
    object-fit : cover;
}


.post-card .post-desc h4 {
    margin: 0;
    text-transform: capitalize;
    font-weight: 500;
    word-break: break-word;
    font-size: 18px;
    color: black;
    /* number of lines to show */
    line-height: 24px;
    margin-bottom: 15px;
}

.post-card .post-desc h4 a {
    color: #ffffff;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.post-card .post-desc h4 a:hover {
    color: var(--themeht-primary-color)
}

.post-card .post-bottom li {
}

.post-card .post-bottom li + li:before {
}

.post-card .post-bottom .list-inline-item:not(:last-child) {
}

.post-title {
    background: #222222;
    padding: 15px;
}

.post-title p {
    color: #bdbdbd;
    line-height: 23px;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.post-classic .post-desc {
    padding-top: 30px;
}

.single-post .post-card {
    margin-bottom: 0;
}

.single-post .post-card .post-desc {
    padding-top: 30px;
}

.tags-links a {
    border: 1px solid var(--themeht-border-light-color);
    color: var(--themeht-text-color);
    padding: 8px 12px;
    margin: 4px 8px 4px 0;
    display: inline-block;
    font-size: 16px;
    text-transform: capitalize;
}

.tags-links a:hover {
    background: var(--themeht-primary-color);
    color: var(--themeht-white-color);
}

.themeht-blogs .post-classic {
    margin-bottom: 30px;
}

.blog .post-title h4 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 500;
    margin-bottom: 15px;
}

.theme-tags {
    clear: both;
    margin-top: 20px;
}

.post-bottom li i {
    font-size: 20px;
    color: var(--themeht-primary-color);
    margin-right: 5px;
    vertical-align: middle;
}

/* ---- Sidebar Widget ----*/
.widget h2 {
    position: relative;
    color: var(--themeht-text-color);
    font-size: 24px;
    line-height: 34px;
    display: block;
    margin-bottom: 20px;
    font-weight: 500;
    border-bottom: 1px solid var(--themeht-border-dark-color);
    padding-bottom: 5px;
    text-transform: uppercase;
}

.widget h2:before {
}

.themeht-widget.widget {
    margin-bottom: 50px
}

.themeht-widget.widget:last-child {
}

.themeht-widget.widget ul, .themeht-widget.widget ol, .wp-block-archives ul {
    margin: 0;
    padding-left: 0;
}

.themeht-widget.widget ul.children, .themeht-widget.widget ol.children {
    margin-left: 15px;
    margin-top: 15px;
}

.themeht-widget.widget ul li, .themeht-widget.widget ol li, .widget_recent_entries li {
    list-style-type: none;
    margin-bottom: 25px;
    border-bottom: 1px dotted #bbb;
    padding-bottom: 25px;
}

.themeht-widget.widget ul li:last-child, .themeht-widget.widget ol li:last-child, .widget_recent_entries li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0px dotted #bbb;
}

.themeht-widget.widget .tagcloud a {
}

.themeht-widget.widget .tagcloud a:hover {
    color: var(--themeht-primary-color);
}

.themeht-widget.widget .tagcloud a + a:before {
}

.widget_categories li {
}

.widget.widget_categories ul li:before {
}

.themeht-widget.widget_recent_entries li {
    margin-bottom: 15px;
}

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

.search-form label {
    /* width: 100%; */
}

.themeht-widget.widget.widget_pages ul, .themeht-widget.widget.widget_nav_menu ul {
    padding-left: 20px;
}

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

.themeht-post-image {
}

.themeht-post-date {
    display: block;
}

.search-form button[type="submit"] {
    /* background: inherit; */
    /* color: var(--themeht-text-color); */
    /* font-size: 24px; */
    /* line-height: 55px; */
    /* text-align: center; */
    /* cursor: pointer; */
    /* position: absolute; */
    /* right: 15px; */
    /* padding: 0; */
    /* border: none; */
    /* top: 0; */
    /* z-index: 1; */
}

.search-form button[type="submit"]:hover {
    color: var(--themeht-primary-color);
}

.themeht-widget.widget li a, .themeht-widget.widget a {
    text-transform: capitalize;
}

.themeht-widget.widget li a {
    font-size: 15px;
    color: var(--themeht-text-color);
}

.themeht-widget.widget li a:hover {
    color: var(--themeht-primary-color);
}

.themeht-widget.widget li .post-date, .widget_recent_entries li .post-date {
    margin-top: 10px;
    display: block;
    color: var(--themeht-primary-color);
}

/* ---- Post Comments ----*/
.post-comment {
    margin-top: 50px;
}

.post-comment .comments-title, .post-comment .comment-reply-title {
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 30px;
}

.post-comment .comment-reply-title {
    margin-bottom: 15px;
}

.comments-box {
    box-shadow: 0px 22px 57px 0px rgb(34 41 72 / 5%);
    padding: 50px;
    margin-top: 50px;
}

.comment-author img {
    margin-right: 15px;
    width: 80px;
    height: 80px;
    display: inline-block;
    padding: 8px;
}

.post-comment li.comment, .post-comment li.trackback, .post-comment li.pingback {
    margin-bottom: 30px;
    list-style-type: none;
}

.post-comment li.comment .comment-body, .post-comment li.trackback .comment-body, .post-comment li.pingback .comment-body {
    border: 1px solid var(--themeht-border-light-color);
    margin-bottom: 30px;
    padding: 20px;
    list-style-type: none;
}

.post-comment .comment-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.post-comment .comment-metadata {
    font-size: 15px;
    margin-left: auto;
}

.comment-author.vcard a {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    color: var(--themeht-text-color);
}

.comment-author.vcard a:hover {
    color: var(--themeht-primary-color);
}

.comment-form-author {
    float: left;
    width: 50%;
    padding-right: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.comment-form-email {
    float: left;
    width: 50%;
    padding-left: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.comment-form-url {
    clear: both;
    margin-bottom: 15px;
}

.post-comment .form-submit {
    margin-top: 30px;
    margin-bottom: 30px;
}

.comment-respond {
    margin-top: 30px;
}

.comment-form-comment {
    margin-top: 30px;
    margin-bottom: 0;
}

.reply {
    text-align: right;
}

.comment-reply-link, .comment-reply-link:focus, .comment-reply-link:visited, .comment-reply-link:active {
    border: 1px solid var(--themeht-border-dark-color);
    position: relative;
    text-transform: uppercase;
    padding: 5px 20px 5px 40px;
    background: var(--themeht-white-color);
    color: var(--themeht-text-color);
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
}

.comment-reply-link:hover {
    background: var(--themeht-primary-color);
    color: var(--themeht-white-color);
    border-color: var(--themeht-primary-color);
}

.comment-reply-link:before {
    content: '\f4ad';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 20px;
    position: absolute;
    left: 14px;
    top: 5px;
}

#comments small #cancel-comment-reply-link {
    margin-left: 15px;
    font-size: 22px;
    font-weight: 600;
}

.post-title a {
    color: #fff
}

.post-title a i {
    color: #fff;
    margin-left: 6px;
}

li.nav-item:before {
    position: absolute;
    height:3px;
    width: 0;
    bottom: 13px;
    right: 0;
    background: #00afef;
    content: "";
    display: block;
    transition: all 0.3s linear;
}

li.nav-item:hover:before {
    left: 0;
    right: auto;
    width: 100%;
    bottom: 7px;
}

.active2 {
    background: red;
    color: #000;
}

.owl-nav button span {
    font-size: 35px;
}

@media only screen and (max-width: 480px) {
    ul.navbar-custom li.nav-item{
        display: inline-block;
        position: relative;
        width: 90%;
    }

    ul.navbar-custom li.nav-item a.nav-link div::after{
        content: '';
        position: absolute;
        bottom: 0;
        left: 28px;
        width: 0;
        height: 2px;
        background-color: #0dcaf0;
        transition: width 0.3s ease;
    }

    ul.navbar-custom li.nav-item:hover a.nav-link div::after {
        width: 90px;
    }

    ul.navbar-custom li.nav-item ul.show{
        animation: upToDown 5s ease !important;
    }

    @keyframes upToDown {
        0%{
           height: 0% !important;
        }

        100%{
            height: auto !important;
        }
    }

    .la-long-arrow-alt-left:before {
        content: "\2039" !important; /* Unicode character for "<" */
        margin-right:1rem !important;
    }
    
    .la-long-arrow-alt-right:before {
        content: "\203A" !important; /* Unicode character for ">" */
        margin-left:1rem !important;
    }
}

@media only screen and (max-width: 445px) {
    .choose-style1__content .inner-content ul li .inner-title p {
        font-size: 8px !important;
    }
    .choose-style1__content .inner-content ul li .inner-title h3 {
        font-size: 9px !important;
    }
    
}
@media only screen and (max-width: 480px){
      li.nav-item:before {
    background: transparent;
}
.post-card .post-image img {
    width: 100%;
    max-height: 200px;
    background-size:auto 100%;
}
}