/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


:root {
    --primary: #DBAF36;
    --primary_hover: #C59D30;
    --text: #4B4B4A;
    --text_light: #A1A1A0;
    --accent: #22201D;
    --highligh: #DD8752;
    --border: #EAEAE9;
    --background: #FFFFFF;
    --background_light: #F4F3F1;
}
html {
    margin-top: 0 !important;
    scroll-behavior: smooth ;
}
html h1,
html h2,
html h3,
html h4,
html h5,
html h6 {
    margin-top: 0;
    font-family: var(--font2);
}
::selection {
    color: var(--dark);
    background: var(--primary);
}
img {
    max-width: 100%;
    width: auto;
    height: auto;
    z-index: 1;
}
html a, html .elementor a {
    text-decoration: none;
    transition: all 0.4s;
    color: var(--primary);
}
html a:hover{
    color: var(--dark);
}
html h1.entry-title {
    display: none;
}
html p:last-child {
    margin-bottom: 0;
}
*:focus{
    outline: none !important;
}
#hmarquee {
    overflow: hidden;
}
#hmarquee .elementor-widget-icon-list {
    animation-name: marquee;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 50s;
    width: max-content;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
}
#hmarquee .elementor-inline-items {
    flex-wrap: nowrap;
    white-space: nowrap;
}
@keyframes marquee {
    100% {
        transform: translate(-100%);
    }
}
#hbtn .elementor-button {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
#hbtn .elementor-button:hover:before {
    width: 100%;
}
#hbtn .elementor-button:before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: var(--primary);
    transition: all 0.5s;
}
#hbanner {
    display: flex;
    opacity: 0;
    transition: all 0.5s;
}
#hbanner:has(.owl-stage-outer) {
    opacity: 1;
}
#hbanner .owl-item > .elementor-element {
    min-height: calc(100dvh - 130px);
    overflow: hidden;
}
#hbanner .owl-item > .elementor-element:before {
    transform: scale(1.1);
    transition: all 10s;
}
#hbanner .owl-item.active > .elementor-element:before {
    transform: scale(1);
}
#hbanner .owl-item > .elementor-element:after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(88, 55, 29) 0%, rgba(139, 119, 103, 0) 40%, rgba(215, 215, 215, 0) 100%);
}
#hbanner .elementor-element .e-con-inner {
    position: relative;
    z-index: 1;
}
#hbanner .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    gap: 6px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
}
#hbanner .owl-dots .owl-dot {
    width: 12px;
    min-width: 12px;
    height: 12px;
    border-radius: 10px;
    box-shadow: inset 0 0 0 2px #dbaf36;
    transition: all 0.4s;
}
#hbanner .owl-dots .owl-dot span {
    display: none;
}
#hbanner .owl-dots .owl-dot.active {
    box-shadow: inset 0 0 0 6px #dbaf36;
}
#cmsboxs > .e-child {
    overflow: hidden;
}
#cmsboxs > .e-child:before {
    transition: all 0.5s;
}
#cmsboxs > .e-child:hover:before {
    transform: scale(1.09);
}
#cmsboxs > .e-child .elementor-element {
    transition: all 0.4s;
}
#cmsboxs > .e-child:hover .elementor-element {
    transform: translateX(30px);
}
#cmsboxs > .e-child .elementor-element:nth-child(2) {
    transition-delay: calc( 400ms / 3 );
}
#cmsboxs > .e-child .elementor-element:nth-child(3) {
    transition-delay: calc( ( 400ms / 3 ) * 2 );
}
.btn-link .elementor-button {
    position: relative;
}
.btn-link .elementor-button:before, .btn-link .elementor-button:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -1px;
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: 0 0;
    -webkit-transition: 0.3s cubic-bezier(0.48, 0.05, 0.5, 0.94);
    -o-transition: 0.3s cubic-bezier(0.47, 0.05, 0.5, 0.94);
    transition: 0.3s cubic-bezier(0.47, 0.05, 0.5, 0.94);
}
.btn-link .elementor-button:before {
    background: var(--primary);
}
.btn-link .elementor-button:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transition: 0.3s cubic-bezier(0.48, 0.05, 0.5, 0.94) 0.2s;
    -o-transition: 0.3s cubic-bezier(0.47, 0.05, 0.5, 0.94) 0.2s;
    transition: 0.3s cubic-bezier(0.47, 0.05, 0.5, 0.94) 0.2s;
}
.btn-link .elementor-button:hover:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: 0.3s cubic-bezier(0.48, 0.05, 0.5, 0.94) 0.2s;
    -o-transition: 0.3s cubic-bezier(0.47, 0.05, 0.5, 0.94) 0.2s;
    transition: 0.3s cubic-bezier(0.47, 0.05, 0.5, 0.94) 0.2s;
}
.btn-link .elementor-button:hover:after {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: 0.3s cubic-bezier(0.48, 0.05, 0.5, 0.94);
    -o-transition: 0.3s cubic-bezier(0.47, 0.05, 0.5, 0.94);
    transition: 0.3s cubic-bezier(0.47, 0.05, 0.5, 0.94);
}
#imgboxs .mbox .img {
    transition: all 0.5s;
}
#imgboxs .mbox .triangle {
    inset: 0;
    z-index: 1;
    transition: all 0.5s;
}
#imgboxs .mbox:nth-child(2n + 2) .triangle {
    display: flex;
    align-items: flex-end;
}
#imgboxs .mbox .triangle:after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #00000000 50%, #422711 100%);
}
#imgboxs .mbox .content {
    position: absolute;
    inset: 0;
    justify-content: flex-end;
}
#imgboxs .mbox .text {
    max-height: 0;
    opacity: 0;
    transform: translateY(30px);
    -ms-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#imgboxs .mbox .elementor-widget-image-box p {
    max-height: 100px;
    visibility: visible;
    -ms-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-link-light .elementor-button:after {
    background: var(--background);
}
.btn-link-light:hover .elementor-button:after {
    background: var(--primary);
}
#imgboxs .mbox:hover .img {
    transform: scale(1.09);
}
#imgboxs .mbox:hover .triangle {
    background-color: #0000001A;
}
#imgboxs .mbox:hover .elementor-widget-image-box p {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}
#imgboxs .mbox:hover .text {
    max-height: 130px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: -20px;
}
.post-thumbnail {
    position: relative;
    margin-bottom: 17px;
    padding-top: 63.5%;
    overflow: hidden;
    border-radius: 18px;
}
.post-thumbnail img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    transform: scale(1);
    transition: all 0.5s;
}
.blog-grid .post-content {
    text-align: center;
    padding: 0 20px;
}
.blog-grid .entry-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8333333333;
    margin-bottom: 10px;
    color: var(--text_light);
    column-gap: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-grid .categories-link {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
}
.blog-grid .entry-meta > div:not(:last-child) {
    position: relative;
}
.blog-grid .entry-meta a {
    display: inline-block;
    color: var(--text_light);
    font-size: 12px;
    font-weight: 500;
    line-height: 180%;
}
.blog-grid .entry-meta > div:not(:last-child):after {
    content: "";
    position: absolute;
    width: 7px;
    height: 1px;
    top: 50%;
    right: -13px;
    border-radius: 50%;
    transform: translateY(-50%);
    background-color: var(--text_light);
}
.blog-grid .entry-title {
    color: var(--accent);
    font-size: 22px;
    line-height: 1.1818181818;
    font-weight: 500;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}
.blog-grid .entry-title a {
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
    display: block;
    text-align: center;
    width: 100%;
}
.entry-excerpt {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.blog-grid .btn-link {
    margin-top: 25px;
    position: relative;
}
.blog-grid .btn-link a.elementor-button {
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7142857143;
    color: var(--accent);
    position: relative;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}
.blog-grid .entry-meta a:hover,
.blog-grid .entry-title a:hover,
.blog-grid .btn-link a.elementor-button:hover {
    color: var(--primary);
}
.post-inner:hover .post-thumbnail img {
    transform: scale(1.05);
}
#imggall .swiper-slide a {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    position: relative;
}
#imggall .swiper-slide a * {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#imggall .swiper-slide a:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 24 24" fill="none" class="injected-svg" data-src="https://cdn.hugeicons.com/icons/add-01-stroke-rounded.svg%3Fv=1.0.1" xmlns:xlink="http://www.w3.org/1999/xlink" role="img" color="%2322201d"><path d="M12.001 5.00003V19.002" stroke="%23FFFFFF" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M19.002 12.002L4.99998 12.002" stroke="%23FFFFFF" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 26px;
    opacity: 0;
    transition: all 0.5s;
}
#imggall .swiper-slide a .swiper-slide-inner {
    transition: all 0.5s;
}
#imggall .swiper-slide a:hover:before {
    opacity: 1;
}
#imggall .swiper-slide a:hover .swiper-slide-inner {
    filter: brightness(0.5);
}
.form-fields {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}
.form-fields .form-field {
    padding: 0 5px;
    width: 50%;
}
.form-field {
    width: 100%;
    margin-bottom: 10px;
}
html .wpcf7-form-control {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    height: 50px;
    padding: 13px 15px;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    outline: 0;
    color: var(--accent);
    transition: all ease-in-out 0.3s;
    border: 1px solid var(--border);
    background-color: var(--white);
    border-radius: 10px;
    display: block;
}
html textarea.wpcf7-form-control {
    height: 160px;
    resize: none;
}
.form-submit {
    position: relative;
}
html .form-submit input[type="submit"] {
    height: auto;
    line-height: 50px;
    border: 0;
    transition: all 0.4s;
}
html .form-submit input[type="submit"]:hover {
    border: 0;
    background: var(--primary);
}
html .wpcf7-spinner {
    position: absolute;
    inset: 0;
    margin: auto;
    background-color: #dbaf36;
    opacity: 1;
}
html .wpcf7-not-valid-tip {
    line-height: normal;
    margin-top: 3px;
    font-size: 14px;
}
html .wpcf7 form .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 8px 14px;
    border: 1px solid;
    border-radius: 6px;
    line-height: normal;
}
html .wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    color: #46b450;
    background: #f2fff4;
}
html .wpcf7 form.invalid .wpcf7-response-output {
    border-color: #dc3232;
    color: #dc3232;
    background: #fff1f1;
}
.elementor-widget-button {
    display: inline-flex;
}


:is(.blog,.category,.tag) main#content {
    max-width: 100%;
    margin: 0;
    padding: 0;
}
.bbanner {
    background-image: url("https://hassjewellers.com.au/wp-content/uploads/2025/12/global-bc.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 20px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}
.bbanner:before {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #000;
    opacity: 0.36;
}
html .bbanner h1 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2em;
    color: #FFF;
    margin-bottom: 0;
}
html .bbanner .woocommerce-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 24px;
}
html .bbanner .woocommerce-breadcrumb a {
    color: inherit;
}
html .bbanner .woocommerce-breadcrumb a:hover {
    color: var(--primary);
}
.blgsec {
    padding: 100px 25px;
}
.blgsec .postswpr {
    width: 1410px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.blgsec .postswpr .post-grid {
    width: 70%;
}
.blgsec .postswpr .sidebar {
    width: 30%;
    padding-left: 70px;
}
.post-gridwpr {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px 30px;
}
.post-gridwpr .blog-grid .post-content {
    padding: 0;
}
html .pagination {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    margin: 50px 0 0;
    display: block;
}
html .pagination ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
html .pagination ul :is(.pagenum,.current) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 40px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    width: 40px;
    height: 40px;
    transition: all ease 0.3s;
    border-radius: 20px;
    background: none;
    cursor: pointer;
}
html .pagination ul .pagenum:hover, html .pagination ul .current {
    background: var(--primary);
    color: #FFF;
}
html .pagination ul :is(.next,.prev) {
    color: var(--accent);
    font-weight: 500;
}
html .pagination ul :is(.next,.prev):hover {
    color: var(--primary);
}
.sidebar .sidebar-section {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 40px;
    position: relative;
}
.sidebar .sidebar-section:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}
.sidebar h3 {
    color: var(--accent);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.1818181818;
    margin-bottom: 30px;
}
.sidebar-categories ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.sidebar-categories ul li {
    margin-bottom: 6px;
}
.sidebar-categories ul li:last-child {
    margin-bottom: 0;
}
.sidebar-categories ul a {
    line-height: 1.6;
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: var(--accent);
    font-weight: 500;
    text-transform: capitalize;
}
.sidebar-categories ul a:hover,
.sidebar-categories ul .active a {
    color: var(--primary);
}
.sidebar-tags .tag-cloud {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.sidebar-tags .tag-cloud .tag-link {
    color: var(--text_light);
    font-size: 13px !important;
    line-height: 1.2307692308;
    font-weight: 500;
    padding: 6px 10px;
    text-transform: capitalize;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.sidebar-tags .tag-cloud .tag-link:hover,
.sidebar-tags .tag-cloud .tag-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFF;
}
.single-post main#content {
    max-width: 100%;
    padding: 0;
}
.single-post main > .wpr {
    width: 1460px;
    max-width: 100%;
    margin: 0 auto;
    padding: 85px 25px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.single-post .bcont {
    width: 70%;
}
.single-post .sidebar {
    width: 30%;
    padding-left: 70px;
}
.single-post .entry-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8333333333;
    color: var(--text_light);
    column-gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.single-post .categories-link {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
}
.single-post .entry-meta a {
    color: inherit;
    font-weight: inherit;
}
.single-post .entry-meta a:hover {
    color: var(--primary);
}
.entry-meta > div:not(:last-child):after {
    content: "";
    width: 6px;
    height: 2px;
    border-radius: 50%;
    background-color: var(--text_light);
    margin-left: 4px;
}
.single-post h1.entry-title {
    display: block;
    font-size: 40px;
    line-height: 1.125;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 25px;
    max-width: 100%;
    padding: 0;
}
.single-post .post-thumbnail {
    padding-top: 59%;
    margin-bottom: 30px;
}
.single-post .post-thumbnail img {
    max-height: unset;
}
html blockquote {
    line-height: 1.3333333333;
    font-size: 18px;
    margin: 30px auto;
    color: var(--accent);
    position: relative;
    border: none;
    font-style: italic;
    border-radius: 0;
    padding: 0 60px;
    letter-spacing: 0;
    font-weight: 400;
}
html blockquote cite {
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    font-size: 0.675em;
    line-height: 1.2;
    font-weight: 400;
    font-style: normal;
    color: var(--text);
    margin-top: 10px;
}
html blockquote:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 24 24" fill="none" class="injected-svg" data-src="https://cdn.hugeicons.com/icons/quote-up-solid-rounded.svg%3Fv=1.0.1" xmlns:xlink="http://www.w3.org/1999/xlink" role="img" color="%23dbaf36"><path d="M18.052 11.25C18.9505 11.25 19.6997 11.2499 20.2945 11.3299C20.9223 11.4143 21.4891 11.6 21.9445 12.0555C22.4 12.5109 22.5857 13.0777 22.6701 13.7055C22.7501 14.3003 22.75 15.0495 22.75 15.948V15.948V16.052V16.052C22.75 16.9505 22.7501 17.6997 22.6701 18.2945C22.5857 18.9223 22.4 19.4891 21.9445 19.9445C21.4891 20.4 20.9223 20.5857 20.2945 20.6701C19.6997 20.7501 18.9505 20.75 18.052 20.75H18.052H17.948H17.948C17.0495 20.75 16.3003 20.7501 15.7055 20.6701C15.0777 20.5857 14.5109 20.4 14.0555 19.9445C13.6 19.4891 13.4143 18.9223 13.3299 18.2945C13.2499 17.6997 13.25 16.9505 13.25 16.052V16.052V15.948V15.948C13.25 15.0495 13.2499 14.3003 13.3299 13.7055C13.4143 13.0777 13.6 12.5109 14.0555 12.0555C14.5109 11.6 15.0777 11.4143 15.7055 11.3299C16.3003 11.2499 17.0495 11.25 17.948 11.25H17.948H18.052H18.052Z" fill="%23dbaf36"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M21.2047 3.95262C21.369 4.47989 21.0748 5.04054 20.5475 5.20486C17.4399 6.17333 15.25 8.92522 15.25 12.1128V16.2501C15.25 16.8024 14.8023 17.2501 14.25 17.2501C13.6977 17.2501 13.25 16.8024 13.25 16.2501V12.1128C13.25 7.96645 16.0916 4.49864 19.9525 3.29543C20.4797 3.13111 21.0404 3.42535 21.2047 3.95262Z" fill="%23dbaf36"></path><path d="M6.05203 11.25C6.9505 11.25 7.69971 11.2499 8.29448 11.3299C8.92228 11.4143 9.48908 11.6 9.94455 12.0555C10.4 12.5109 10.5857 13.0777 10.6701 13.7055C10.7501 14.3003 10.75 15.0495 10.75 15.948V15.948V16.052V16.052C10.75 16.9505 10.7501 17.6997 10.6701 18.2945C10.5857 18.9223 10.4 19.4891 9.94455 19.9445C9.48908 20.4 8.92228 20.5857 8.29448 20.6701C7.69971 20.7501 6.9505 20.75 6.05203 20.75H6.052H5.94801H5.94798C5.04951 20.75 4.3003 20.7501 3.70552 20.6701C3.07773 20.5857 2.51093 20.4 2.05546 19.9445C1.59999 19.4891 1.41432 18.9223 1.32991 18.2945C1.24995 17.6997 1.24997 16.9505 1.25 16.052V16.052V15.948V15.948C1.24997 15.0495 1.24995 14.3003 1.32991 13.7055C1.41432 13.0777 1.59999 12.5109 2.05546 12.0555C2.51093 11.6 3.07773 11.4143 3.70552 11.3299C4.3003 11.2499 5.04951 11.25 5.94797 11.25H5.948H6.052H6.05203Z" fill="%23dbaf36"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M9.20471 3.95262C9.36903 4.47989 9.0748 5.04054 8.54753 5.20486C5.43986 6.17333 3.25 8.92522 3.25 12.1128V16.2501C3.25 16.8024 2.80228 17.2501 2.25 17.2501C1.69772 17.2501 1.25 16.8024 1.25 16.2501V12.1128C1.25 7.96645 4.09156 4.49864 7.95247 3.29543C8.47975 3.13111 9.04039 3.42535 9.20471 3.95262Z" fill="%23dbaf36"></path></svg>');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 36px;
}
.single-post .page-content :is(h2,h3,h4,h5,h6) {
    color: var(--accent);
    font-size: 40px;
    line-height: 1.18;
    font-weight: 500;
    margin-bottom: 14px;
}
.single-post .page-content h3 {
    font-size: 36px;
}
.single-post .page-content h4 {
    font-size: 28px;
}
.single-post .page-content h5 {
    font-size: 22px;
}
.single-post .page-content h6 {
    font-size: 18px;
}
.single-post .page-content a:has(img) {
    display: inline-block;
    border-radius: 18px;
    overflow: hidden;
    margin-block: 10px;
}
.single-post .page-content a:has(img) img {
    display: block;
}
.single-post .post-tags {
    margin-top: 40px;
}
.single-post .post-tags .tag-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    font-size: 0;
}
.single-post .post-tags .tag-links a {
    color: var(--text_light);
    font-size: 13px !important;
    line-height: 1.2307692308;
    font-weight: 500;
    padding: 6px 10px;
    text-transform: capitalize;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-decoration: none;
}
.single-post .post-tags .tag-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFF;
}
nav.post-navigation {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-top: 20px;
}
nav.post-navigation .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
nav.post-navigation .nav-previous, 
nav.post-navigation .nav-next {
    padding-top: 25px;
    padding-bottom: 25px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
nav.post-navigation .nav-previous {
    width: 50%;
    padding-right: 15px;
    margin-right: auto;
}
nav.post-navigation .nav-previous a, nav.post-navigation .nav-next a {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 330px;
    background: none;
    color: var(--accent);
}
nav.post-navigation .nav-previous .nav-content, nav.post-navigation .nav-next .nav-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
nav.post-navigation .nav-previous .reader-text, nav.post-navigation .nav-next .reader-text {
    position: relative;
    font-size: 12px;
    line-height: 1.8333333333;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--text);
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
nav.post-navigation .nav-previous a:hover .reader-text, nav.post-navigation .nav-next a:hover .reader-text {
    color: var(--primary);
}
nav.post-navigation .title {
    font-size: 18px;
    line-height: 1.3333333333;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: flex;
    align-items: center;
}
nav.post-navigation .nav-previous img, nav.post-navigation .nav-next img {
    max-width: 70px;
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 18px;
}
nav.post-navigation .nav-previous img {
    margin-right: 15px;
}
.single-post main#content > .page-content {
    display: none;
}

@media (max-width:1024px) {
    #hbanner .owl-item > .elementor-element {
        min-height: calc(100dvh - 112px);
        overflow: hidden;
    }
    .blgsec {
        padding: 80px 25px;
    }
    .blgsec .postswpr .post-grid {
        width: 68%;
    }
    .post-gridwpr {
        grid-template-columns: repeat(2,1fr);
        gap: 40px 20px;
    }
    .blog-grid .btn-link {
        margin-top: 15px;
    }
    .blgsec .postswpr .sidebar {
        width: 32%;
        padding-left: 30px;
    }
    .sidebar h3 {
        margin-bottom: 10px;
    }
    .single-post .bcont {
        width: 100%;
    }
    .single-post .sidebar {
        display: none;
    }
}
@media (max-width:767px) {
    #hbanner .owl-item > .elementor-element {
        min-height: 450px;
        overflow: hidden;
    }
    .form-fields .form-field {
        width: 100%;
    }
    #hmarquee .elementor-widget-icon-list {
        animation-duration: 15s;
    }
    #hnav {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    #hnav .hfe-layout-horizontal {
        height: 100%;
        justify-content: center;
        align-items: center;
    }
    #hnav .hfe-nav-menu__toggle {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    #hnav .hfe-nav-menu-icon {
        padding: 0;
        display: block;
        width: 26px;
        height: 2px;
        background: #000;
        border-radius: 10px;
        transition: all 0.5s;
    }
    #hnav .hfe-nav-menu-icon:before, #hnav .hfe-nav-menu-icon:after {
        content: '';
        display: block;
        width: 26px;
        height: 2px;
        background: #000;
        border-radius: 10px;
        position: absolute;
        inset: -14px 0 0;
        margin: auto;
        transition: all 0.5s;
    }
    #hnav .hfe-nav-menu-icon:after {
        inset: 0 0 -14px;
    }
    #hnav .hfe-nav-menu-icon svg {
        display: none;
    }
    #hnav .hfe-nav-menu__toggle.hfe-active-menu .hfe-nav-menu-icon {
        background: transparent;
    }
    #hnav .hfe-nav-menu__toggle.hfe-active-menu .hfe-nav-menu-icon:before {
        inset: 0;
        transform: rotate(45deg);
    }
    #hnav .hfe-nav-menu__toggle.hfe-active-menu .hfe-nav-menu-icon:after {
        inset: 0;
        transform: rotate(-45deg);
    }
    #hnav .hfe-nav-menu__layout-horizontal {
        display: block;
        position: fixed;
        z-index: 999 !important;
        inset: auto 0 0 !important;
        width: 100% !important;
        height: calc(100dvh - 98px) !important;
        opacity: 0;
        visibility: hidden;
        background: rgb(0 0 0 / 70%);
        padding: 10px;
        transition: all 0.5s;
    }
    #hnav .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        display: block;
        width: 100%;
        background: #FFF;
        height: auto;
        border-radius: 6px;
        overflow: hidden;
        padding: 12px;
    }
    #hnav .hfe-nav-menu__layout-horizontal .menu-item {
        border: 0;
        margin-bottom: 6px;
    }
    #hnav .hfe-nav-menu__layout-horizontal .menu-item:last-child {
        margin-bottom: 0;
    }
    #hnav .hfe-nav-menu__layout-horizontal .hfe-menu-item {
        font-size: 16px;
        padding: 8px 10px;
        font-weight: 500;
        text-transform: capitalize;
        border-radius: 6px;
    }
    #hnav .hfe-nav-menu__layout-horizontal .current_page_item .hfe-menu-item {
        color: var(--background);
        background: var(--primary);
    }
    #hnav .hfe-nav-menu__layout-horizontal.menu-is-active {
        opacity: 1;
        visibility: visible;
    }
    body:has(.hfe-nav-menu__layout-horizontal.menu-is-active) {
        overflow: hidden;
    }
    .blgsec {
        padding: 60px 20px;
    }
    .blgsec .postswpr .post-grid {
        width: 100%;
    }
    .post-gridwpr {
        grid-template-columns: repeat(1,1fr);
    }
    html .pagination {
        border-top: 1px solid var(--border);
        padding-top: 20px;
        margin: 40px 0 0;
        display: block;
    }
    .blgsec .postswpr .sidebar {
        display: none;
    }
    html .pagination ul {
        gap: 6px;
    }
    html .pagination ul :is(.pagenum,.current) {
        font-size: 12px;
        line-height: 30px;
        width: 30px;
        height: 30px;
    }
    html .pagination ul :is(.next,.prev) {
        font-size: 14px;
    }
    .bbanner {
        padding: 30px 20px;
        min-height: 180px;
    }
    html .bbanner .woocommerce-breadcrumb {
        display: block;
        text-align: center;
    }
    .single-post main > .wpr {
        padding: 60px 20px;
    }
    nav.post-navigation .nav-previous {
        width: 100%;
    }
}