<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.rounded-circle{
    border-radius: 50%;
}

.visibility-hidden{
    visibility: hidden;
}

.transition{
    transition: all 0.25s ease-in-out;
}

.streched-link{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.main-wrapper{
    padding: 65px 0px;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #fff;
}

.archive-title-holder {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 23px;
}

.archive-title-holder .archive-title {
    font-family: var(--font-Medel);
    font-weight: 400;
    font-size: 40px;
    line-height: 60px;
    text-transform: uppercase;
    margin: 0;
}

.page-wrapper ul {
    list-style: initial;
    padding-left: 2rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.71429;
    letter-spacing: 0.14px;
}

.search-wrapper input {
    display: inline-flex;
    width: 346px;
    height: 73px;
    padding: 20px 30px;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: 2px solid var(--black-color);
    border-radius: 100px;
    color: var(--black-color);
}

.search-wrapper .search-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
}

.search-wrapper .search-results.result-empty{
    display: none;
}

.search-wrapper .search-results {
    display: flex;
    flex-direction: column;
	gap: 10px;
	border-radius: 10px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
    position: absolute;
    margin-top: 10px;
    background-color: #fff;
    padding: 0px 0px 15px 0px;
    z-index: 5;
    width: 100%;
    height: auto;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,.15), 0 0 3px rgba(0,0,0,.15), 0 0 1px rgba(0,0,0,.5);
}
 
.search-results .search-result-label{
	padding: 15px;
	position: sticky;
    top: 0;
    background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	margin-bottom: 10px;
    z-index: 2;
}

.search-results .search-result-item {
	padding: 0 15px;
}

.search-results .search-result-item .post-thumb {
    width: 75px;
    height: 75px;
    position: relative;
    background: rgba(0, 0, 0, .8) url(../images/logo-golden.svg) no-repeat;
    background-position: center center;
    background-size: 70px;
    flex-shrink: 0;
    z-index: 1;
}
 
.search-results .search-result-item a{
	display: flex;
	gap: 15px;
	align-items: center;
	padding: 0;
    color: var(--black-color);
    text-transform: initial;
}
 
.search-result-item a img{
	width: 100%;
    height: 100%;
}
 
.search-result-item a h5{
    font-size: 0.875rem;
    letter-spacing: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
 
.search-results .search-result-item:hover{
	background: #F0F0F1;
}

.search-results .search-no-result {
    padding: 15px 15px 0px 15px;
}

.search-results::-webkit-scrollbar {
	width: 5px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	background-color: #F5F5F5;
}
 
.search-results::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	background-color: #F5F5F5;
}
 
.search-results::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: rgba(0,0,0,.3);
}

.content-empty-wrapper .search-icon img{
    filter: brightness(0);
}

.content-empty-wrapper .searchform{
    position: relative;
    width: fit-content;
    margin: 0 auto;
    padding: 20px 0px;
}

.content-empty-wrapper .back-to-home{
    color: #349BD6;
    text-decoration: underline;
}

.blog-post-wrapper{
    display: flex;
    gap: 22px;
    padding-bottom: 30px;
    flex-wrap: wrap;
}

.blog-post-wrapper .item {
    max-width: calc(25% - 16.5px);
    width: calc(25% - 16.5px);
}

/* SINGLE POST START */
.single-post .post-info .author img{
    border-radius: 50%;
    width: 46px;
    height: auto;
    border: 1px solid rgba(0,0,0,0.3);
}

.single-post .wp-block-quote{
    border-left: 0;
    padding: 70px 0;
    margin-bottom: 0;
    position: relative;
}

.single-post .wp-block-quote::before{
    content: '';
    position: absolute;
    left: 0;
    width: 96px;
    height: 86px;
    background-image: url(../images/quote_icon.svg);
    background-repeat: no-repeat;
    background-size: auto;
}

.single-post .sp-content .wp-block-quote p,
.single-post .sp-content .wp-block-quote cite{
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--black-color);
    padding-left: 130px;
}

.single-post .sp-content .wp-block-quote p{
    font-size: 1.5rem;
}

.single-post .sp-content .wp-block-quote cite{
    font-size: 1rem;
    margin-top: 10px;
    display: block;
    padding-left: 155px;
}

.single-post .sp-content .wp-block-quote cite:before {
    content: '';
    width: 20px;
    height: 2px;
    background-color: var(--black-color);
    position: absolute;
    left: 130px;
    top: calc(50% - 1px);
}

.single-post .li-area {
    margin: 0;
}

/* SINGLE POST END */

.comments-area{
    padding-top: 50px;
}

.comments-area .comments-title{
    font-size: 1.875rem;
    color: #363636;
    position: relative;
    font-weight: 700;
    margin-bottom: 30px;
}

.comments-area .required-field-message{
    display: none;
}

.comments-area .comment-awaiting-moderation{
    display: block;
    width: 100%;
}

.comments-area .comment-edit-link{
    font-size: 16px;
    text-transform: initial;
    text-decoration: underline;
}

.comments-area .comment-list .comment-body ~ .comment-respond{
    margin-bottom: 50px;
}

.comments-area .comment-reply-title{
    font-size: 1.875rem;
    color: #363636;
    position: relative;
    font-weight: 700;
    margin-bottom: 30px;
}

.comments-area #cancel-comment-reply-link{
    margin-left: 20px;
}

.comments-area .comment .children{
    padding-left: 100px;
    list-style: none;
}

.comments-area .comment-list{
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
    margin-bottom: 50px;
}

.comments-area .comment-body{
    margin-bottom: 30px;
}

.comment-metadata.author-desc h5 {
    font-size: 1.25rem;
}

.comments-area .comment .avatar{
    border-radius: 50%;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(0,0,0,0.3);
}

.comments-area .comment .comment-metadata{
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.comments-area .comment-meta{
    display: flex;
    gap: 20px;
}

.comments-area .reply-btn{
    border: 1px solid var(--secondary-color);
    width: fit-content;
    padding: 3px 15px;
    border-radius: 3px;
    cursor: pointer;
}

.comments-area .reply-btn:hover{
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    color: #fff;
}

.comments-area .comment-content{
    margin-top: 10px;
    margin-bottom: 10px;
}

.comments-area input,
.comments-area textarea{
    border-radius: 4px;
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #654778;
    font-size: 1rem;
    background-color: transparent;
    color: inherit;
    font-family: "Mulish", sans-serif;
}

.comments-area textarea{
    min-width: 300px;
    max-width: 100%;
    min-height: 110px;
    resize: vertical;
}

.comments-area .form-submit .submit{
    padding: 15px;
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 3px;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: .5s;
    font-weight: 700;
}

.comments-area .form-submit .submit:hover {
	background: #939a72;
    border: 1px solid #939a72;
}

.comments-area .comment-error {
	position: relative;
	top: -18px;
    color: red;
}

.comments-area .comment-form .comment-form-comment:has(.comment-error) textarea,
.comments-area .comment-form-author:has(.comment-error) input,
.comments-area .comment-form-email:has(.comment-error) input{
    border-color: red;
}

/* PAGINATION */
.blog-pagination ul.page-numbers {
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    border: 1px solid #939a72;
    background: #f6f7f8;
    width: fit-content;
    margin-left: auto;
}

.blog-pagination ul &gt; li &gt; .page-numbers{
    background: 0 0;
    border: none;
    width: 50px;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    font-weight: 700;
    justify-content: center;
}

.blog-pagination ul &gt; li:first-child &gt; .page-numbers{
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.blog-pagination ul &gt; li:last-child &gt; .page-numbers{
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.blog-pagination img{
    height: 25px;
    width: 25px;
    opacity: .6;
    pointer-events: none;
}

.blog-pagination ul &gt; li &gt; .prev img{
    transform: rotate(90deg);
}

.blog-pagination ul &gt; li &gt; .next img{
    transform: rotate(-90deg);
}

.blog-pagination ul &gt; li &gt; .page-numbers.current{
    background-color: #939a72;
    color: #fff;
    font-weight: 700;
}

/* SiteMap */
.sitemap-content .title {
    text-align: center;
    padding: 25px 0;
}
 
.sitemap-content ul {
	flex-wrap: wrap;
    display: flex;
    gap: 20px;
	margin-bottom: 40px;
    list-style: none;
    padding-left: 0;
}
 
.sitemap-content ul li{
	width: calc(50% - 10px);
    min-width: calc(50% - 10px);
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    background: #f4f5f6;
}

/* Contact CSS */

.contact-content form{
    background-color: #F2F5F6;
    padding: 60px;
    margin-top: 33px;
}

.contact-content form label {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 19.6px;
    text-transform: capitalize;
    padding-bottom: 5px;
}

.contact-content form input:not([type="checkbox"]):not(.submit-btn):not(.cf7_text_captcha){
    padding: 18px 15px;
    height: 56px;
    border: 1px solid #000;
    background: #FFF;
    width: 100%;
}

.contact-content form textarea{
    width: 100%;
}

.contact-content form textarea::placeholder,
.contact-content form input::placeholder{
    color: #C2C2C2;
    font-size: 14px;
    font-weight: 600;
    line-height: 19.6px;
    text-transform: capitalize;
}

.contact-content form .input-group{
    padding-bottom: 25px;
}

.contact-content .wpcf7-list-item-label{
    position: relative;
    top: -5px;
    padding-left: 8px;
    display: none;
}

.contact-content .checkbox .wpcf7-list-item{
    margin-left: 0;
}

.contact-content .checkbox a{
    text-decoration: underline;
}

.contact-content #reload_captcha {
    border: 0;
    height: auto;
    width: auto;
    display: inline-flex;
    margin: 0;
    border-radius: 0;
    padding-right: 15px;
}

.input-group .input{
    width: 100%;
}

.input-group textarea{
    padding: 18px 15px;
    resize: none;
    height: 246px;
}

.captcha-card{
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding-bottom: 12px;
}

.captcha img {
    background: #fff;
    width: 200px;
    border-radius: 5px;
    padding: 5px;
    height: 62px;
}

.captcha-card .captcha-img-wrapper{
    min-width: 200px;
    margin: 0 auto;
}

.captcha-card .captcha-img-wrapper img{
    margin: 0 auto;
    padding: 15px 10px;
    height: 75px;
}

.captcha-card input {
    height: 65px;
    border: none;
    border-radius: 5px;
    color: #9f9f9f;
    box-shadow: rgba(0,0,0,.15)0 3px 3px;
}

.captcha-card #input-captcha-cf7 {
    margin: 0;
    padding: 15px;
    width: 100%;
}

.input-field .reload-icon {
    width: 45px;
    height: 45px;
    padding: 5px;
    cursor: pointer;
    min-width: 45px;
}

.captcha-card .input-field{
    background-color: #fff;
    display: flex;
    height: 65px;
    border-radius: 5px;
    align-items: center;
    box-shadow: rgba(0,0,0,.15)0 3px 3px;
}

.captcha-card .input-field .captcha{
    background-color: #fff;
}

.checkbox {
    display: flex;
    gap: 12px;
}

.checkbox input {
    width: 20px;
    height: 20px;
    min-width: 20px;
}

.checkbox-label {
    line-height: 30px;
    font-size: 18px;
    cursor: pointer;
}

.contact-content .checkbox .wpcf7-form-control-wrap{
    position: absolute;
}

.contact-content .checkbox .wpcf7-form-control-wrap .wpcf7-not-valid-tip{
    position: relative;
    top: 20px;
}

.contact-content .checkbox &gt; label{
    margin-left: 30px;
}

.checkbox-label a{
    text-decoration: underline;
}

.contact-content form .submit-btn {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
    display: flex;
    width: 195px;
    height: 80px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #192d2d;
    color: #fff;
    margin-left: auto;
    margin-top: 45px;
    border: 0;
    cursor: pointer;
}
.contact-content form .submit-btn:hover {
	background: #939a72;
}

.contact-content .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) input,
.contact-content .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) textarea{
    border-color: red !important;
}
.contact-content .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) input[type="checkbox"] {
    outline: 1px solid red !important;
    outline-offset: -1px;
}

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

.wpcf7-form-control-wrap.recaptcha {
    margin-bottom: 30px;
    display: block;
}

.contact-content form textarea::placeholder{
    font-size: 1rem;
}

.contact-content form input::placeholder, .contact-content form textarea::placeholder {
    font-size: 15px;
}


@media only screen and (max-width: 1400px) {
    .blog-post-wrapper .item {
        max-width: calc(33.33% - 14.667px);
        width: calc(33.33% - 14.667px);
    }
}

@media only screen and (max-width: 1199px) {
    .blog-post-wrapper .item {
        max-width: calc(50% - 11px);
        width: calc(50% - 11px);
    }
}

@media only screen and (max-width: 768px) {
    .main-wrapper {
        padding: 100px 0px 60px 0px;
    }

    .blog-post-wrapper .item {
        max-width: 100%;
        width: 100%;
    }

    .archive-title-holder {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .post-wrapper .card-wrapper{
		flex-direction: column;
	}
	
	.card-wrapper .about-card{
		width: 100%;
	}
	
	.page-about-us .main-wrapper{
		padding-bottom: 7px;
	}

    .comments-area .comment-reply-title {
        font-size: 1.5rem;
    }

    .comments-area .comment-meta {
        flex-wrap: wrap;
    }
    
    .contact-content .checkbox .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
        position: relative;
        top: 50px;
    }
}

@media screen and (max-width: 575px) {
    .main-wrapper {
        padding: 50px 0px;
    }
    
    .blog-post-wrapper .post-card{
        width: calc(100% - 0px);
    }
	
	.blog-pagination ul.page-numbers {
		margin-left: auto;
		margin-right: auto;
	}
	
	.blog-pagination ul &gt; li &gt; .page-numbers {
    	width: 35px;
    	height: 35px;
	}

    /* contact page */
    .contact-content form{
        padding: 0 25px;
        background: #fff;
    }
    .contact-content form .input-group{
        flex-direction: column;
    }
    
    .contact-content form .submit-btn{
        width: 100%;
    }
    
    .contact-page .post-wrapper{
        padding-bottom: 0;
    }
    
    .page-contact-us .page-wrapper .post-wrapper{
        padding-bottom: 0;
    } 
    
    .page-contact-us .main-wrapper{
        padding-bottom: 10px;
    }
    
    .page-contact-us .post-wrapper .left-part h2 {
        font-size: 26px;
    }

    .contact-content form .captcha-card{
        flex-direction: row;
    }

    .captcha-card .input-field {
        box-shadow: rgba(0,0,0,.15) 0 3px 10px;
    }

    .captcha-card #input-captcha-cf7 {
        box-shadow: rgba(0,0,0,.15) 0 3px 10px;
    }

    .captcha-card .captcha-img-wrapper {
        min-width: 140px;
    }

    .card-wrapper .about-card.sp-card{
		min-height: 292px;
	}

    .comments-area .comment .avatar{
        width: 64px;
        height: 64px;
    }

    .comments-area .comment .children {
        padding-left: 84px;
    }
}

@media screen and (max-width: 450px) {
    .contact-content .checkbox .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
        position: relative;
        top: 80px;
    }

    .contact-content .checkbox &gt; label {
        margin-bottom: 50px;
    }
}</pre></body></html>