@import url('../fonts/font.css');

:root {
	--text-blue: #19375F;
	--text-white: #fff;
	--text-green: #A0C84B;
	--text-black: #000;
	--text-light: #60697B;
	--bg-light-gray: #FAFAFA;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	background-color: var(--text-white);
	font-family: 'Open Sans';
	font-weight: 500;
	color: var(--text-black);
	margin: 0;
	font-size: 1rem;
	line-height: 1.5;
}

h6,
h5,
h4,
h3,
h2,
h1 {
	font-family: 'Segoe UI Historic';
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-blue);
}

h1,
h2 {
	font-size: 2.25rem;
}

h3 {
	font-size: 1.875rem;
}

h4 {
	font-size: 1.625rem;
}

h5 {
	font-size: 1.375rem;

}

h6 {
	font-size: 1.125rem;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--text-blue);
}

p:last-child {
	margin-bottom: 0;
}

ol,
ul {
	padding-left: 1.5rem;
}

ol,
ul,
dl {
	margin-top: 0;
	margin-bottom: 1rem;
}

a {
	outline: none !important;
	color: var(--text-blue);
	transition: all .5s ease-in-out;
}

a:hover {
	color: var(--text-green);
}

embed,
object,
img {
	max-width: 100%;
}

.text-green {
	color: #83AC30;
}

input,
button,
select,
textarea {
	margin: 0;
	font-family: 'Open Sans';
	font-size: inherit;
	line-height: inherit;
}

img {
	height: auto;
}

ul {
	color: var(--text-blue);
	line-height: 1.5;
}

.container {
	padding: 0px 15px;
	margin: 0 auto;
	width: 100%;
	max-width: 1470px;
}

.row {
	--gutter-x: 15px;
	--gutter-y: 0px;
	display: flex;
	flex-wrap: wrap;
	margin-top: 0;
	margin-right: calc(-1 * var(--gutter-x));
	margin-left: calc(-1 * var(--gutter-x));
	margin-top: calc(-1 * var(--gutter-y));
}

.row>* {
	box-sizing: border-box;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-left: var(--gutter-x);
	padding-right: var(--gutter-x);
	margin-top: var(--gutter-y);
}

.col {
	flex: 1 0 0%;
}

.row-cols-auto>* {
	flex: 0 0 auto;
	width: auto;
}

.row-cols-1>* {
	flex: 0 0 auto;
	width: 100%;
}

.row-cols-2>* {
	flex: 0 0 auto;
	width: 50%;
}

.row-cols-3>* {
	flex: 0 0 auto;
	width: 33.3333333333%;
}

.row-cols-4>* {
	flex: 0 0 auto;
	width: 25%;
}

.row-cols-5>* {
	flex: 0 0 auto;
	width: 20%;
}

.row-cols-6>* {
	flex: 0 0 auto;
	width: 16.6666666667%;
}

.col-auto {
	flex: 0 0 auto;
	width: auto;
}

.col-1 {
	flex: 0 0 auto;
	width: 8.33333333%;
}

.col-2 {
	flex: 0 0 auto;
	width: 16.66666667%;
}

.col-3 {
	flex: 0 0 auto;
	width: 25%;
}

.col-4 {
	flex: 0 0 auto;
	width: 33.33333333%;
}

.col-5 {
	flex: 0 0 auto;
	width: 41.66666667%;
}

.col-6 {
	flex: 0 0 auto;
	width: 50%;
}

.col-7 {
	flex: 0 0 auto;
	width: 58.33333333%;
}

.col-8 {
	flex: 0 0 auto;
	width: 66.66666667%;
}

.col-9 {
	flex: 0 0 auto;
	width: 75%;
}

.col-10 {
	flex: 0 0 auto;
	width: 83.33333333%;
}

.col-11 {
	flex: 0 0 auto;
	width: 91.66666667%;
}

.col-12 {
	flex: 0 0 auto;
	width: 100%;
}

.title-underline {
	position: relative;
}

.title-underline::before {
	bottom: -7px;
	position: absolute;
	content: "";
	width: 100px;
	height: 2px;
	background: var(--text-green);
}

.justify-content-center {
	justify-content: center;
}

.justify-content-around {
	justify-content: space-around;
}

.justify-content-between {
	justify-content: space-between;
}

.justify-content-start {
	justify-content: flex-start;
}

.justify-content-end {
	justify-content: flex-end;
}

.align-items-center {
	align-items: center;
}

.align-items-start {
	align-items: flex-start;
}

.align-items-end {
	align-items: flex-end;
}

.section-padding {
	padding: 100px 0;
}

.filter-content {
	text-decoration: none;
	display: block;
}

.filter-content img {
	width: 100%;
}

.nav-menu li a,
.btn-green,
.office-add-item a,
.footer-list li a,
.footer-social ul li a,
.copy-right p a,
.news-content a {
	text-decoration: none;
}

.nav-menu,
.care-item ul,
.footer-list,
.footer-social ul,
.filters ul,
.testimonial-slider .slick-dots {
	list-style: none;
}

.sub-title,
.care-item ul,
.office-add-item h5,
.office-add-item h2,
.care-title h2,
.testimonial-slider .slick-dots {
	margin: 0;
}

.back-to-top {
	background-color: var(--text-blue);
	cursor: pointer;
	width: 50px;
	height: 50px;
	z-index: 999;
	position: fixed;
	right: 32px;
	bottom: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.4);
}

.back-to-top:hover {
	background-color: var(--text-green);
}

.back-to-top svg.icon__arrow-up {
	fill: var(--text-white);
	width: 30px;
	height: 30px;
}

/* slide down keyframe */
@-webkit-keyframes slide-in {
	from {
		transform: translateY(-30px);
	}

	to {
		transform: translateY(0);
	}
}

@keyframes slide-in {
	from {
		transform: translateY(-30px);
	}

	to {
		transform: translateY(0);
	}
}

/*header*/
.fixed-top {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 10;
	background-color: var(--text-white);
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 10%), 0 2px 4px -1px rgb(0 0 0 / 6%);
}

header.fixed-top {
	z-index: 11;
	-webkit-animation: slide-in 400ms ease-out;
	animation: slide-in 400ms ease-out;
	padding: 15px 0;
}

.header {
	background-color: var(--text-white);
	padding: 16px 0;
}

.wrapper-main,
.nav-menu,
.care-flex,
.footer-social ul li a,
.office-left,
.care-icon-flex,
.author-flex,
.office-flex,
.service-flex,
.footer-list,
.footer-flex,
.footer-social ul,
.testimonial-flex {
	display: flex;
	align-items: center;
}

.wrapper-main,
.testimonial-flex,
.footer-flex {
	justify-content: space-between;
}

.wrapper-main {
	width: 100%;
}

.nav-menu {
	gap: 30px;
	justify-content: end;
	margin-bottom: 0;
}

.nav-menu li a {
	transition: all 0.3s ease-in-out;
	font-weight: 600;
	font-size: 16px;
	color: var(--text-blue);
	line-height: 1.5;
	display: inline-block;
	padding: 10px 0 10px 10px;
}

.nav-menu li a:hover,
.footer-list li a:hover,
.copy-right p a,
.frontsearch-select ul li a:hover,
.address-text a:hover,
.copy-right a:hover,
.footre-list:hover,
.nav-menu li.active a {
	color: var(--text-green);
}

.close-btn svg path {
	fill: var(--text-blue);
}

.close-btn {
	text-align: end;
	margin: 15px;
	display: none;
}

.burger {
	display: none;
	cursor: pointer;
	position: relative;
	width: 1.75rem;
	height: 1rem;
	opacity: 0;
	visibility: hidden;
}

.burger-line {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	opacity: 1;
	background: var(--text-blue);
}

.burger-line:nth-child(1) {
	top: 0px;
}

.burger-line:nth-child(2) {
	top: 0.5rem;
}

.burger-line:nth-child(3) {
	top: 1rem;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	display: none;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	transition: all 0.35s ease-in-out;
	background-color: rgba(0, 0, 0, 0.65);
}

.bg-img,
.testimonial-content .section-title {
	position: relative;
}

.home-img {
	background-repeat: no-repeat;
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background-size: cover;
	background-position: center;
}

.home-left {
	width: 50%;
	padding: 104px 30px 104px 0;
	min-height: 500px;
	display: flex;
	align-items: center;
}

.sub-title {
	font-weight: 700;
	font-size: 13px;
	line-height: 20px;
	letter-spacing: 1.08333px;
	text-transform: uppercase;
	color: var(--text-blue);
}

.home-banner .home-content {
	padding: 60px 0;
	display: flex;
	flex-wrap: wrap;
	height: 100%;
	justify-content: flex-start;
	gap: 0;
	align-content: center;
	min-height: 450px;
}

.page-template-page-social .home-banner .home-content h1 {
	width: 52%;
}

.page-template-page-social .home-banner .home-content {
    flex-direction: column;
    justify-content: center;
}

.page-template-page-social .home-banner .home-content .dec p {
	width: 90%;
}


.page-template-page-social a.btn-blue:hover {
    background-color: var(--text-green) !important;
    color: var(--text-white) !important;
	border:none;
}

.home-banner .home-content h1 {
	width: 100%;
	font-family: 'Segoe UI Historic';
	font-size: 36px;
	line-height: 1.2;
	letter-spacing: 0px;
	color: #fff;
	margin: 0 0 23px 0;
}
.overlay-banner{
	width: 100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 11;
	border-radius: 14px;
}
.row.main-banner {
    --gutter-x: 0;
    --gutter-y: 0px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
    margin-right: calc(-1 * var(--gutter-x));
    margin-left: calc(-1 * var(--gutter-x));
    margin-top: calc(-1 * var(--gutter-y));
}
.home-banner .home-content .desc {
	width: 100%;
	display: block;
}

.home-banner .home-content .desc:not(:last-child) {
	margin-bottom: 28px;
}

.home-content h1 span,
.desc span,
.testimonial-content .section-title p span,
.author-name p span {
	display: block;
}

.mb-1rem {
	margin-bottom: 1rem;
}

.single .post-single-btn a,
.btn-green {
	background-color: var(--text-green);
	border-radius: 4px;
	padding: 16px 32px;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
	border: 1px solid var(--text-green);
	color: var(--text-blue);
	display: inline-block;
	cursor: pointer;
	text-decoration: none;
	transition:all .5s ease-in-out ;
	-webkit-transition:all .5s ease-in-out ;
	-moz-transition:all .5s ease-in-out ;
	-ms-transition:all .5s ease-in-out ;
	-o-transition:all .5s ease-in-out ;
}

.single .post-single-btn a:hover,
.btn-green:hover {
	background-color: var(--text-whte);
	color: var(--text-green);
}

.care-main,
.office-service,
.team_main1 {
	background-color: var(--bg-light-gray);
}

.care-main .container,
.office-main .container {
	/* max-width: 1400px; */
}

.care-flex {
	row-gap: 50px;
	margin: 0 -25px;
}

.care-flex,
.service-flex {
	flex-wrap: wrap;
	justify-content: center;
}

.care-flex .care-item:first-child {
	margin: auto 0;
}

.care-item {
	padding: 0 25px;
	-ms-grid-row-align: stretch;
	align-self: stretch;
}

.care-item,
.service-item {
	width: 33.33%;
}

.care-icon {
	line-height: 1;
}

.care-icon img {
	width: 64px;
	height: 64px;
}

.care-title h2 {
	font-size: 36px;
	line-height: 1.2;
	padding-bottom: 16px;
	color: var(--text-blue);
	position: relative;
}

.care-title h2::after {
	content: '';
	background-color: var(--text-green);
	position: absolute;
	bottom: 0;
	width: 200px;
	height: 5px;
	left: 0;
}

.care-inner {
	box-shadow: -10px 17px 25px rgb(0 0 0 / 10%);
	border-radius: 10px;
	background: var(--text-white);
	padding: 16px 16px 24px;
	height: 100%;
}

.care-icon-flex h3 {
	font-size: 20px;
	line-height: 1.2;
	margin: 0 0 0 16px;
	color: var(--text-blue);
}

.care-item ul {
	padding: 16px 0 0 16px;
}

.care-item ul li {
	position: relative;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--text-blue);
	display: flex;
	align-items: flex-start;

	padding: 0 0 0 22px;
}
.care-item ul li::before {
	    content: "";
	position: absolute;
	width: 12px;
	height: 12px;
/* 	background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' width='15' height='12' viewBox='0 0 15 12'%3E%3Cpath d='M6.5 7.8c0-.3 0-.5.2-.7l.6-.2h1.8c.2 0 .4 0 .6.2.2.2.3.4.3.7l-.3.6-.6.2H7.3c-.2 0-.4 0-.6-.2a.8.8 0 0 1-.2-.7ZM7.7 6V4.3H10c.2 0 .4 0 .6.2.2.2.2.4.2.6 0 .3 0 .5-.2.7L10 6H7.7Zm0-2.6V1.7h5.8c.2 0 .4 0 .6.2.2.1.2.4.2.6 0 .3 0 .5-.2.6l-.6.3H7.8Zm1.4 7-.3.6c-.1.2-.3.3-.6.3H6.5c-.3 0-.5-.1-.7-.3a.8.8 0 0 1-.2-.6c0-.3 0-.5.2-.7l.7-.2h1.7c.3 0 .5 0 .6.2.2.2.3.4.3.7ZM5.9 8.7a2 2 0 0 0-.9.7c-.2.3-.3.6-.3 1 0 .3 0 .6.3.8H4c-1 0-1.9-.3-2.6-1-.7-.7-1-1.6-1-2.7V5.1c0-.8.2-1.5.6-2.2l.8-1C2.3 1.2 3 .8 4 .8h1.7c.3 0 .5 0 .8.3.2.2.3.4.3.7v3.5c0 .4-.1.6-.3.8a1 1 0 0 1-.8.3c-.4 0-.7-.1-.8-.4-.2-.2-.3-.5-.3-.7v-2c0-.2-.2-.3-.5-.4-.2 0-.3.2-.4.4v2c0 .6.2 1 .6 1.4.3.4.7.6 1.3.6l-.1.5c0 .3 0 .7.3 1Z' fill='%23000'/%3E%3C/svg%3E"); */
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><rect width="16" height="16" rx="4" fill="%2319375F"/></svg>');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	left: 0;
	top:7px;
}

.office-flex {
	gap: 74px;
}

.office-left {
	width: 48.4%;
}

.office-right {
	width: 48%;
}

.office-right h5,
.section-title h2 {
	font-size: 40px;
	line-height: 1.2;
	color: var(--text-blue);
	margin-bottom: 20px;
}

.office-add-item h2,
.office-add-item h5 {
	font-size: 18px;
	line-height: 1.2;
	color: var(--text-blue);
}

.office-add-item {
	background: var(--text-white);
	box-shadow: -10px 17px 25px rgb(0 0 0 / 10%);
	border-radius: 4px;
	padding: 16px;
	display: flex;
	align-items: center;
	max-width: 259px;
	width: 100%;
	color: var(--text-blue);
}

.office-add-item:not(:last-child) {
	margin-bottom: 20px;
}

.office-add-item a {
	font-size: 1rem;
	color: var(--text-blue);
}

.office-add-item .office-add-icon {
	margin-right: 1rem;
	line-height: 0;
}

.office-add-icon img {
	height: 25px;
	max-width: 28px;
}

.office-address {
	margin-left: -54px;
}

.office-img img {
	height: 469px;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 15px;
}

.service-flex {
	margin: 0 -32px;
	row-gap: 64px;
	align-items: flex-start;
	padding-top: 50px;
}

.service-item {
	padding: 0 32px;
}

.service-item img {
	width: 48px;
	height: 48px;
}

.service-item h3,
.service-item h2 {
	font-size: 20px;
	line-height: 1.2;
	color: var(--text-blue);
	margin: 16px 0 8px;
}

.service-item p {
	line-height: 1.5;
	margin-bottom: 0;
}

.filters {
	padding: 25px 0 24px;
}

.section-title h2 {
	margin-bottom: 0;
	color: var(--text-blue);
	text-transform: capitalize;
	font-family: 'Segoe UI Historic';
}

.filters .filters,
.section-title h2,
.footer-log {
	text-align: center;
}

.filters ul {
	display: flex;
	padding-left: 0;
	justify-content: center;
	gap: 15px;
	margin-bottom: 0;
}

.filters li {
	border: 1px solid var(--text-green);
	border-radius: 4px;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 14px 40px;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-blue);
	cursor: pointer;
	text-transform: uppercase;
}

.filters li.active {
	background-color: rgba(160, 200, 75, 0.8);
}

.filter-content h3,
.filter-content h6 {
	font-size: 20px;
	line-height: 1.2;
	color: var(--text-black);
	margin: 0.3rem 0 0px;
}

.filter-content h3 {
	color: var(--text-blue);
}

.filter-content p {
	font-size: 1rem;
	margin-top: 0.2rem;
	margin-bottom: 0;
	line-height: 1.5;
	color: var(--text-black);
}

.filter-flex {
	margin: 0 -15px 0 -15px;
}

.grid-item {
	padding: 0 15px 20px;
	width: calc(100% / 5);
}

.testimonial-slider .slick-list {
	margin: 0 -15px;
}

.testimonial-slider .slick-slide {
	padding: 67px 15px 0 15px;
}

.testimonial-main {
	background: linear-gradient(90deg, #9FC74D 0%, #5C8607 100%);
	padding: 0px 0 15px;
}

.testimonial-slider {
	top: -67px;
}

.testimonial-flex {
	align-items: flex-start;
	gap: 30px;
}

.testimonial-content {
	padding: 125px 0 0px;
	max-width: 800px;
	width: 100%;
	position: relative;
}

.testimonial-content .section-title h2 {
	text-align: left;
	color: var(--text-white);
}

.testimonial-content .section-title p {
	line-height: 1.5;
	color: var(--text-white);
	font-weight: 600;
	position: relative;
	margin: 48px 0 62px;
}

.testimonial-content .testimonial-info {
	max-width: 550px;
}

.quote-img {
	position: absolute;
	top: 46%;
	right: 0;
}

.author-img img {
	border-radius: 100%;
	height: 64px;
	width: 64px;
}

.author-img {
	margin-right: 18px;
}

.author-name p {
	color: var(--text-white);
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 0;
}

.testimonial-img img {
	border-radius: 10px;
	height: 531px;
	-o-object-fit: cover;
	object-fit: cover;
}

.author-name p span {
	text-transform: capitalize;
	font-weight: 400;
}

.testimonial-img {
	margin-top: -67px;
	max-width: 416px;
	width: 100%;
}

.slide-arrow {
	position: absolute;
	bottom: 0;
	padding: 20px 30px;
	background-color: var(--text-white);
	border-radius: 5px;
	z-index: 55;
	cursor: pointer;
}

.slide-arrow:hover {
	background-color: var(--text-black);
}

.slide-arrow:hover svg path {
	fill: var(--text-white);
}

.slide-arrow.prev-arrow {
	right: 406px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.slide-arrow.prev-arrow::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 36px;
	background: #D9D9D9;
	border-radius: 5px;
}

.slide-arrow.next-arrow {
	right: 330px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.testimonial-slider .slick-dots {
	font-size: 0;
	display: flex;
	justify-content: center;
	position: absolute;
	left: 50%;
	padding: 0;
	bottom: -5%;
	transform: translateX(-50%);
}

.testimonial-slider .slick-dots li {
	margin: 0 3px;
}

.testimonial-slider .slick-dots button {
	background: transparent;
	height: 15px;
	width: 15px;
	border: 1px solid var(--text-blue);
	border-radius: 100%;
}

.testimonial-slider .slick-dots .slick-active button {
	background: var(--text-blue);
}

.footer-main {
	padding: 32px 0 16px;
	border-top: 1px solid rgba(160, 200, 75, 0.5);
	background: var(--bg-light-gray);
}

.footer-flex {
	display: flex;
	justify-content: center;
	gap: 40px;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 600;
	color: var(--text-blue);
}

.footer-list {
	margin: 0;
	padding: 0;
	justify-content: center;
	gap: 40px;
}

.footer-list li a {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5;
	padding: 0;
	display: inline-block;
	color: var(--text-blue);
}

.footer-social ul {
	margin-bottom: 0;
	padding-left: 0;
}

.copy-right p {
	font-weight: 400;
	font-size: 15px;
	line-height: 1.5;
	margin-bottom: 0;
}

.copy-right p a:hover {
	color: var(--text-black);
}

.footer-social ul {
	gap: 15px;
}

.footer-social ul li a {
	justify-content: center;
	width: 45px;
	height: 45px;
	border: 1px solid var(--text-blue);
	border-radius: 40px;
}

.footer-social ul li a:hover {
	border: 1px solid var(--text-green);
}

.footer-social ul li a svg path,
.slide-arrow {
	transition: all .5s ease-in-out;
}

.footer-social ul li a:hover img {
	fill: var(--text-green);
}

/* news*/
.news-banner {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.news-title {
	padding: 118px 0 196px;
}

.news-title h1 {
	font-size: 40px;
	line-height: 1.2;
	color: var(--text-white);
	font-family: 'Segoe UI Historic';
	font-weight: 600;
	width: 100%;
	max-width: 760px;
}

.news-title h1 span {
	color: var(--text-green);
	display: block;
}

.news-post .care-title {
	text-align: center;
	max-width: 679px;
	width: 100%;
	margin: auto;
}

.news-post .care-title h2 {
	padding-bottom: 25px;
	margin-bottom: 25px;
}

.news-post .care-title h2::after {
	left: 50%;
	transform: translateX(-50%);
}

.news-post-main {
	padding-top: 72px;
}

.news-post-wrapper {
	display: flex;
	flex-wrap: wrap;
	row-gap: 42px;
	margin: 0 -18px;
}

.news-post-inner {
	width: 33.33%;
	padding: 0 18px;
}

.news-img {
	width: 100%;
	border-radius: 10px 10px 0px 0px;
	position: relative;
	width: 100%;
	padding-top: 75%;
	overflow: hidden;
}

.news-img img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	width: 100%;
	position: absolute;
	top: 0;
}

.news-content p {
	font-size: 13px;
	line-height: 1.5;
	text-transform: uppercase;
	margin: 0;
}

.news-content p a {
	color: var(--text-blue);
	font-weight: 600;
	text-decoration: none;
	position: relative;
	padding-right: 6px;
	margin-right: 6px;
}

.news-content p a::after {
	content: '';
	position: absolute;
	right: 0;
	height: 12px;
	width: 1px;
	background-color: var(--text-blue);
	top: 54%;
	transform: translateY(-54%);
}

.news-item {
	box-shadow: -10px 17px 25px rgba(0, 0, 0, 0.1);
	border-radius: 0px 0px 8px 8px;
	transition: all .5s ease-in-out;
	height: 100%;
}

.news-content {
	padding: 30px 30px 26px;
	background-color: var(--text-white);
	border-radius: 0px 0px 8px 8px;
}

.news-img {
	display: flex;
}

.news-content a h3 {
	font-weight: 600;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: -1.27273px;
	color: var(--text-blue);
	margin: 12px 0;
}

.news-btn {
	display: flex;
	align-items: flex-start;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-blue);
}

.news-btn svg {
	margin-left: 7px;
	margin-top: 5px;
}

.news-post .care-title p {
	font-weight: 400;
	font-size: 15px;
	margin: 0;
}

.border-green {
	width: 200px;
	height: 5px;
	background: var(--text-green);
	transition: all .5s ease-in-out;
}

.news-item:hover .news-content {
	background-color: var(--text-green);
	transition: all .5s ease-in-out;
}

.news-item:hover .border-green {
	width: 100%;
	transition: all .5s ease-in-out;
}

.news-item:hover .news-btn svg path {
	fill: var(--text-blue);
	transition: all .5s ease-in-out;
}

.news-item:hover {
	margin-top: -43px;
	transition: all .5s ease-in-out;
}

.news-item:hover .news-content p,
.news-item:hover .news-content a h3,
.news-item:hover .news-content p a,
.news-item:hover .news-btn {
	color: var(--text-white);
	transition: all .5s ease-in-out;
}

.view-post a {
	padding: 14px 40px;
	border: 1px solid var(--text-green);
	border-radius: 40px;
	display: inline-block;
	text-decoration: none;
	transition: all .5s ease-in-out;
}

.view-post {
	margin-top: 78px;
	text-align: center;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
}

.view-post a:hover {
	background-color: var(--text-green);
	color: var(--text-white);
}

.news-single-main {
	position: relative;
}

.news-banner-grdiante {
	background: linear-gradient(90deg, #FFFFFF 82.21%, rgba(255, 255, 255, 0) 99.25%);
	max-width: 1234px;
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 2;
}

.news-details .news-title {
	position: relative;
	z-index: 2;
}

.news-single-banner {
	position: absolute;
	max-width: 934px;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	display: flex;
	z-index: 1;
}

.news-single-banner img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.news-details .news-title h1 {
	color: var(--text-blue);
	font-weight: 700;
	line-height: 1.2;
	max-width: 812px;
}

.news-detail-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -26px;
}

.news-detail-left {
	width: 100%;
	max-width: 100%;
	padding: 0 26px;
}

.news-d-title {
	margin-right: 45px;
}

.news-post-content h2 {
	font-size: 30px;
	line-height: 1.2;
	color: var(--text-blue);
	margin: 0 0 15px;
}

.news-post-content h3 {
	font-size: 26px;
	line-height: 1.2;
}

.news-d-title p {
	margin: 0;
}

.post-img-flex {
	display: flex;
	align-items: self-start;
	margin: 0 -15px;
	padding-top: 20px;
}

.news-post-img img {
	width: 100%;
	display: flex;
}

.news-post-content h1,
.news-post-content h2,
.news-post-content h3,
.news-post-content h4,
.news-post-content h5,
.news-post-content h6,
.news-post-content {
	color: var(--text-blue);
}

.news-post-content h1,
.news-post-content h2,
.news-post-content h3,
.news-post-content h4,
.news-post-content h5,
.news-post-content h6 {
	margin-bottom: 0.5rem;
}

.news-post-content ol,
.news-post-content ul,
.news-post-content p {
	margin-bottom: 1rem
}

.news-post-content ol,
.news-post-content ul {
	padding-left: 2.4rem;
}

.news-post-content ol li ol .news-post-content ol li ul,
.news-post-content ul li ol,
.news-post-content ul li ul {
	margin-top: 0.8rem;
}

.news-post-content ol:last-child,
.news-post-content ul:last-child,
.news-post-content p:last-child {
	margin-bottom: 0;
}


.news-post-content ol li:not(:last-child),
.news-post-content ul li:not(:last-child) {
	margin-bottom: 0.8rem;
}

.news-post-content a {
	color: var(--text-green);
	text-decoration: none;
}

.news-post-content a:focus,
.news-post-content a:active,
.news-post-content a:hover {
	color: var(--text-blue);
}

.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

.news-tags {
	display: flex;
	align-items: center;
	list-style: none;
	padding: 21px 0 20px;
	margin: 0;
	border-bottom: 2px solid #F7F8F8;
}

.news-tags li:not(:last-child) {
	padding-right: 4px;
}

.news-tags li a {
	padding: 7px 10px;
	background: #F8F9FA;
	font-weight: 700;
	font-size: 10px;
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--text-blue);
	text-decoration: none;
	transition: all .5s ease-in-out;
}

.news-tags li a:hover {
	background: var(--text-blue);
	color: var(--text-white);
}

.releted-post-title h4 {
	font-size: 18px;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--text-black);
	margin: 0 0 1rem 0;
}

.news-releted-post {
	margin-top: 60px;
}

.blog-details {
	row-gap: 30px;
	margin: 30px -15px 0 -15px;
}

.blog-details .news-post-inner {
	width: calc(100% / 4);
	padding: 0 15px;
}

.blog-details .news-post-inner .news-item {
	box-shadow: none;
}

.blog-details .news-post-inner .news-item:hover {
	margin-top: 0;
}

.news-img a {
	display: flex;
	width: 100%;
}

.blog-details .news-post-inner .news-content {
	padding: 15px 0 0;
	border-radius: 0;
}

.blog-details .news-item:hover .news-content {
	background-color: var(--text-white);
}

.blog-details .news-item:hover .news-content p,
.blog-details .news-item:hover .news-content p a {
	color: var(--text-blue);
}

.blog-details .news-item:hover .news-content a h3 {
	color: var(--text-green);
}

.blog-details .news-content p {
	font-weight: 700;
	font-family: 'Open Sans';
}

.blog-details .news-content a h3 {
	letter-spacing: normal;
	margin: 8px 0 0;
}

.border-releted-post {
	border-top: 2px solid #F7F8F8;
	border-bottom: 2px solid #F7F8F8;
	padding: 10px;
	margin-top: 20px;
}

.search-form,
.search-post-detail {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.search-field,
.searchinput {
	width: 100%;
	padding: 11px 20px;
	outline: none;
	font-size: 15px;
	line-height: 1.5;
	background-color: #F8F9FA;
	border: 0;
	color: var(--text-blue) !important;
}

.search-submit,
.searchButton {
	border: 1px solid var(--text-green);
	background: var(--text-green);
	text-align: center;
	cursor: pointer;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 700;
	border-radius: 4px;
	padding: 14px 40px;
	font-family: 'Open Sans';
	color: var(--text-blue);
	transition: .3s ease-in-out;
}

.search-submit:hover,
.searchButton:hover {
	background: transparent;
	color: var(--text-green);
}

.news-category {
	margin-bottom: 40px;
}

.news-category:last-child {
	margin-bottom: 0;
}

.news-category-title {
	margin-bottom: 24px;
}

.news-category-title h3 {
	font-weight: 500;
	font-size: 18px;
	line-height: 1.2;
	text-transform: uppercase;
	position: relative;
	margin: 0;
}

.news-category-title h3::after,
.news-category-title h3::before {
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: var(--text-black);
	content: '';
}

.news-category-title h3::after {
	width: 42px;
	height: 1px;
}

.news-category-title h3::before {
	width: 23px;
	height: 1px;
	bottom: -3px;
}

.news-category-main {
	list-style: none;
	padding: 0;
	margin: 0;
}

.news-category-main li {
	padding: 10px 0;
	border-bottom: 1px solid rgba(67, 177, 231, 0.1);
}

.news-category-main li a {
	font-weight: 500;
	font-size: 14px;
	line-height: 1.5;
	color: var(--text-blue);
	text-decoration: none;
	transition: .3s ease-in-out;
}

.news-category-main li a:hover {
	color: var(--text-blue);
}

.news-category-main li svg {
	width: 14px;
	height: 10.5px;
	margin-right: 10px;
}

.news-said-post-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.news-said-post-item:last-child {
	margin-bottom: 0;
}

.news-said-img a {
	display: flex;
}

.news-said-img img {
	width: 110px;
	height: 110px;
}

.news-said-img img {
	max-width: 110px;
	height: 110px;
}

.news-said-desc p {
	font-weight: 700;
	font-size: 13px;
	line-height: 1.5;
	margin-bottom: 0.5px;
}

.news-said-desc a {
	font-weight: 600;
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 0;
	color: var(--text-black);
	text-decoration: none;
	transition: .3s ease-in-out;
}

.news-said-desc a:hover {
	color: var(--text-green);
}

.news-saidbar-tag {
	flex-wrap: wrap;
	row-gap: 8px;
	border-bottom: 0;
	padding: 0;
}

.clearfix {
	overflow: auto;
}

.clearfix::after {
	content: "";
	clear: both;
}

.sec-sub-title {
	font-weight: 700;
	font-size: 13px;
	line-height: 1.5;
	letter-spacing: 1.08333px;
	text-transform: uppercase;
	color: var(--text-blue);
}

.sec-title {
	font-size: 36px;
	line-height: 1.2;
	padding-bottom: 16px;
	color: var(--text-blue);
	position: relative;
}

.sec-title::after {
	content: '';
	background-color: var(--text-green);
	position: absolute;
	bottom: 0;
	width: 200px;
	height: 5px;
	left: 0;
}

.news-search-form .search-form {
	margin-bottom: 0;
	justify-content: flex-end;
	align-items: stretch;
	-webkit-filter: drop-shadow(0px 2px 6px rgba(69, 73, 91, 0.08));
	filter: drop-shadow(0px 2px 6px rgba(69, 73, 91, 0.08));
}

.sec-pnews-awv {
	background: #FAFAFA;
}

.news-search-form .search-form label {
	flex-basis: 300px;
}

.news-search-form .search-form .search-field {
	max-width: 100%;
	width: 100%;
	background: #FFFFFF;
	border-radius: 4px 0px 0px 4px;
	height: 100%;
}

.sec-pnews-awv .row:first-child {
	margin-bottom: 100px;
}

.sec-pnews-awv .row:last-child {
	margin-top: 30px;
}

.sec-pnews-awv .row {
	--gutter-y: 30px;
}

.news-card {
	display: block;
	overflow: hidden;
	height: 100%;
	border-radius: 10px;
	/*	background: #FFFFFF;*/
}

.news-card .news-card-image {
	position: relative;
	width: 100%;
	display: block;
	padding-top: 56.25%;
	overflow: hidden;
}

.news-card .news-card-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	transition: all 350ms ease-in-out;
}

.news-card:hover .news-card-image img {
	transform: scale(1.05);
}

.news-card .news-card-body {
	padding: 1.5rem 0;
}

.news-card .news-card-category .post-categories {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
}

.news-card .news-card-category .post-categories li:not(:last-child) a::after {
	content: ', ';
}

.news-card .news-card-category .post-categories a {
	text-decoration: none;
	color: #60697B;
}

.news-card .news-card-meta {
	display: flex;
	flex-wrap: wrap;
	color: #60697B;
	font-weight: 500;
	font-size: 13px;
	font-family: 'Open Sans';
	line-height: 1.5;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.news-card .news-card-meta .news-card-date {
	margin-right: 4px;
}

.news-card .news-card-category:empty {
	display: none;
}

.news-card .news-card-category .post-categories::before {
	content: '|';
	margin-right: 3px;
	margin-left: 5px;
	line-height: 1.2;
}

.news-card .news-card-title {
	font-weight: 600;
	font-size: 20px;
	color: var(--text-blue);
	text-decoration: none;
	font-family: 'Segoe UI Historic';
	line-height: 1.5;
}

.news-card .news-card-title h3 {
	margin-bottom: 0;
}

.text-center {
	text-align: center;
}

.sec-guide .news-card .news-card-image {
	padding-top: 75%;
}

.sec-guide .news-card .news-card-body {
	padding-left: 0;
	padding-right: 0;
}

.sec-guide {
	background: #fff;
}

.overview-search-form .search-form .search-field {
	width: 100%;
}

.sec-title.no-border {
	margin-bottom: 0;
	padding-bottom: 0;
}

.sec-title.no-border::after {
	display: none;
}

.sec-overview .row {
	--gutter-y: 30px;
}

.overview-tags {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.overview-tags li {
	padding: 7px 10px;
	background: #F8F9FA;
	font-weight: 700;
	font-size: 10px;
	font-family: 'Open Sans';
	text-transform: uppercase;
	color: #60697B;
}


.sec-overview .news-card {
	background: #FAFAFA;
}

.team-main .sec-title {
	text-align: center;
}

.team-main .sec-title::after {
	left: 50%;
	transform: translatex(-50%);
	width: 100px;
}

.google-review-main {
	display: flex;
	align-items: center;
	column-gap: 32px;
}

.google-review-slider {
	width: 85%;
}

.sec-news-meta {
	padding: 100px 0;
}

.sec-news-meta .row {
	--gutter-y: 30px;
}

.news-detail-wrapper {
	padding-top: 20px !important;
}

.news-detail-wrapper .news-post-content {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.sec-news-meta .news-meta-wrapper {
	display: flex;
	flex-wrap: wrap;
	color: var(--text-blue);
	font-weight: 500;
	font-size: 13px;
	font-family: 'Segoe UI Historic';
	line-height: 1.5;
	text-transform: uppercase;
	margin-bottom: 0px;
	padding: 0;
	list-style: none;
}

.sec-news-meta .news-meta-wrapper li:not(:last-child) {
	position: relative;
	padding-right: 15px;
}

.sec-news-meta .news-meta-wrapper li:not(:last-child)::after {
	content: '|';
	margin-left: 15px;
	line-height: 1;
	vertical-align: 1px;
}

.not-found .search-form {
	justify-content: flex-start !important;
	margin-top: 30px;
}

.nav-navigation {
	text-align: center;
	margin-top: 60px;
}

.nav-navigation .page-numbers {
	border: 2px solid #83ac30;
	padding: 10px 15px;
	border-radius: 3px;
	text-decoration: none;
	color: var(--text-blue);
	display: inline-block;
}

.nav-navigation .current {
	background: #83ac30;
	color: #fff;
}

.impressum-section ul li {
	color: var(--text-blue);
}

.impressum-section a {
	color: var(--text-blue);
}

.our-work-main {
	text-align: center;
	padding-bottom: 30px;
}

h4.title-all {
	font-size: 48px;
	line-height: 1.2;
}

.accordion {
	border: 1px solid #d1d5db;
	border-bottom-color: transparent;
	border-radius: 4px;
}

.accordion .accordion__item {
	border-bottom: 1px solid #d1d5db;
}

.accordion .accordion__header {
	align-items: center;
	display: flex;
	cursor: pointer;
	padding: 16px;
}

.accordion .accordion__toggle {
	margin-right: 12px;
	position: relative;
	width: 16px;
	height: 16px;
}

.accordion .accordion__toggle::after,
.accordion .accordion__toggle::before {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	height: 100%;
	width: 3px;
	background: var(--text-blue);
	transform: translate(-50%, -50%);
	transition: all 350ms ease-in-out;
}

.accordion .accordion__item--expanded .accordion__toggle::before,
.accordion .accordion__toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.accordion .accordion__title {
	flex: 1;
	font-size: 22px;
	font-weight: 700;
	color: var(--text-blue);
	transition: all 350ms ease-in-out;
}

.accordion .accordion__content {
	padding: 16px;
	font-size: 16px;
	line-height: 1.5;
}

.accordion .accordion__content {
	display: none;
}

.accordion .accordion__item--expanded .accordion__title {
	color: #83ac30;
}

.plus {
	background: #333;
	height: 50px;
	position: relative;
	width: 8px;
}

.plus:after {
	background: #333;
	content: "";
	height: 8px;
	left: -21px;
	position: absolute;
	top: 21px;
	width: 50px;
}

.page-template-page-social .accordion-header {
	display: flex;
	justify-content: space-between;
	padding: 15px;
	border-bottom: 1px solid #d1d5db !important
}
.page-template-page-social .home-content .desc {
	width: 95%;
	display: block;
}
.page-template-page-social .accordion-content {
	padding: 15px;
}

.round {
	position: relative;
	width: 32px;
	height: 32px;
	border: 2px solid #19375F;
	border-radius: 50%;
	display: inline-block;
}

.round::after {
	position: absolute;
	content: ' ';
	top: 62%;
	left: 34%;
	width: 10px;
	height: 10px;
	transform: rotate(45deg) translate(-50%, -50%);
	border-top: 2px solid #A0C84B;
	border-left: 2px solid #A0C84B;
}

.page-template-page-social .accordion {
	border-bottom: 1px solid #d1d5db;
}

.page-template-page-social .accordion {
	border: 1px solid transparent !important;
}

.accordion-header.active .round::after {
	transform: rotate(227deg) translate(-50%, -50%);
	top: 0%;
	left: 34%;

}

.uniq-faq {
	max-width: 700px;
	margin: 0 auto;
}

.uniq-faq {
	max-width: 1000px;
	margin: 0 auto;
	padding: 3rem 2rem;
	box-shadow: rgb(0 0 0 / 10%) 0px 20px 25px 15px, rgb(0 0 0 / 4%) 0px 10px 10px -5px;
	border-radius: 5px;
}

.form-grid {
	display: flex;
	flex-wrap: wrap;
	margin: -20px -15px 0 -15px;
}

.form-section .form-grid-item {
	max-width: 100%;
	width: 50%;
	flex: 0 0 auto;
	padding: 0 15px;
	margin-top: 20px;
}

.form-section .form-grid-item.full-item {
	width: 100%;
}

.form-section .form-grid-item select,
.form-section .form-grid-item .form-control {
	font-size: 16px;
	padding: 10px 16px;
	width: 100%;
	color: var(--text-blue);
	border: 1px solid var(--text-blue);
	outline: none;
	box-shadow: none;
	border-radius: 0;
	border-radius: 5px;
}


.form-section .form-grid-item textarea.form-control {
	height: 100px;
	border-radius: 5px;
	padding: 16px;
	resize: none;
}

.form-section .form-grid-item .form-control::placeholder {
	color: var(--text-blue);
}

.form-section .form-grid-item p {
	margin-bottom: 0;
}

.form-section .form-grid-item br {
	display: none;
}

.form-section .form-grid-item label {
	margin-bottom: 0.2rem;
	/*    font-weight: 700;*/
	display: block;
}

.wpcf7-acceptance .wpcf7-list-item label,
.wpcf7-acceptance .wpcf7-list-item {
	margin: 0 !important;
}

.wpcf7-acceptance .wpcf7-list-item label {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	justify-content: flex-start;
	font-weight: 400;
}

.wpcf7-acceptance .wpcf7-list-item label input {
	width: 1.2em;
	height: 1.2em;
	accent-color: #063f9d;
	flex-shrink: 0;
	margin-top: 5px;
}

.form-section .form-submit {
	padding: 0.6rem 3rem;
	margin: 0;
	font-size: 1rem;
	display: inline-block;
	border: 1px solid var(--text-blue);
	background: var(--text-blue);
	color: #fff;
	line-height: 1.5;
	box-shadow: none;
	outline: none;
	border-radius: 0;
	font-weight: 700;
	border-radius: 5px
}

.form-section {
	max-width: 750px;
	margin: 0 auto;
	padding: 2rem;
	box-shadow: rgb(0 0 0 / 10%) 0px 20px 25px 15px, rgb(0 0 0 / 4%) 0px 10px 10px -5px;
	border-radius: 10px;
}

.form-grid-item input[type=file]::-webkit-file-upload-button {
	background: var(--text-green);
	color: #fff;
	border-radius: 0;
	padding: 0.5rem 1rem;
	border: none;
}

.team-main {
	display: flex;
	align-items: center;
	background: transparent;
	padding-top: 100px !important;
}

.team-img {
	width: 33%;
	display: flex;
	justify-content: center;
}

.team-content {
	width: 67%;
}

.team-content-wrapper .row:not(:last-child) {
	margin-bottom: 3rem;
}

.team-content-wrapper .point-title {
	color: var(--text-blue);
	font-size: 1.5rem;
	line-height: 1.2;
	padding-bottom: 1rem;
	position: relative;
}

.team-content-wrapper .point-title::after {
	content: '';
	background-color: var(--text-green);
	position: absolute;
	bottom: 0;
	width: 150px;
	height: 5px;
	left: 0;
}

.sec-team-banner .sec-title span {
	display: block;
	font-size: 1.2rem;
	line-height: 1.2;
}

.sec-team-banner .home-left {
	padding: 50px 30px 50px 0;
}

.light-gray-bg {
	background: #FAFAFA;
}

.home-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-height: 450px;
}

.home-banner .image-wrapper {
	line-height: 0;
}

.sec-pnews-awv.no-search-wrapper .row {
	margin-top: -30px !important;
	margin-bottom: 0 !important;
}

.point-desc {
	font-size: 1rem;
	line-height: 1.5;
	color: var(--text-blue);
}

.point-desc ul {
	padding-left: 1.3rem;
}

.rh-link {
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
}

#ProvenExpert_widget_container {
	max-width: 150px;
}

.wp-block-quote {
	margin: 1rem 0;
	background: #f5f5f5;
	padding: 30px;
	border-radius: 10px;
}

.file-upload-wrap {
	padding: 10px 16px;
	border-radius: 5px;
	border: 1px solid var(--text-blue);
}

.file-upload-btn {
	padding: 0.5rem 1rem;
	font-size: 1rem;
	font-weight: 400;
	border-radius: 0;
	line-height: 1;
}

.advocado-wrap {
	position: fixed;
	left: 0;
	bottom: 80px;
	z-index: 10;
}

.social-service-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.social-service-item {
	flex-grow: 1;
	width: 33%;
}

.social-service,
.social-faq {
	background: #FAFAFA;
}

.social-service .sec-title {
	text-align: center;
}

.social-service .sec-title::after {
	left: 50%;
	transform: translatex(-50%);
	width: 100px;
}

.social-flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	/*     justify-content: center; */
	/* margin: 0 -32px; */
	padding-top: 40px;
}

.social-item:first-child {
	justify-content: flex-start;

}

.social-item:last-child {
	justify-content: flex-end;

}

.social-item {
	display: flex;
	align-items: center;
	padding: 0 32px;
	width: 33.33%;
	gap: 20px;
	justify-content: center;
}

.socail-item img {
	margin-right: 10px;
}

.social-item h3,
.social-item a {
	margin: 0;
}

.social-item h3 {
	font-size: 24px;
	font-weight: 700;
	line-height: 38px;
}

.social-item a {
	font-family: Open Sans;
	font-size: 16px;
	font-weight: 600;
	line-height: 28px;
	text-align: left;
	text-decoration: none;
}

/* Inner CTA Section */

.social-cta-section .row {
	box-shadow: -10px 17px 25px 0px #0000001A;
	border-radius: 10px;
	padding: 24px 0;
}

.social-cta-section .row:not(:last-child) {
	margin-bottom: 50px;
}

.social-cta-section .row {
	--gutter-x: 15px;
	--gutter-y: 0px;
	display: flex;
	flex-wrap: wrap;
	margin-top: 0;
	margin-right: calc(-1* var(--gutter-x));
	margin-left: calc(-1* var(--gutter-x));
	margin-top: calc(-1* var(--gutter-y));
}

.social-cta-section .row>* {
	box-sizing: border-box;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-left: var(--gutter-x);
	padding-right: var(--gutter-x);
	margin-top: var(--gutter-y);
}

.social-cta-section .point-desc {
	font-size: 1rem;
	line-height: 1.5;
	color: var(--text-blue);
}

.social-cta-section .col-12.col-lg-3 {
	text-align: end;
}

.social-cta-section h3 {
	padding-bottom: 8px;
	font-size: 24px;
	font-weight: 700;
	line-height: 26px;
}

.social-cta-section p {
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	text-align: left;
}

.social-faq .faq-header {
	margin-bottom: 30px;
}

.social-faq .faq-header p {
	margin-top: 17px;
}

.page-template-page-social .accordion-header h3 {
	font-size: 24px;
	margin: 0;
}
/* File Upload */
.codedropz-upload-inner h3, .codedropz-upload-inner span {
    display: none !important;
    visibility: hidden !important;
}
/*Author Card css*/
.author-box {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 24px;
    background: white;
        gap: 32px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        margin-top: 40px;
}
.author-details h3
 {
    font-size: 20px;
}
.author-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.author-box img.author-photo {
    width: 140px;
    height: 140px;
    object-fit: cover;
}
@media (min-width: 576px) {
	.col-sm {
		flex: 1 0 0%;
	}

	.row-cols-sm-auto>* {
		flex: 0 0 auto;
		width: auto;
	}

	.row-cols-sm-1>* {
		flex: 0 0 auto;
		width: 100%;
	}

	.row-cols-sm-2>* {
		flex: 0 0 auto;
		width: 50%;
	}

	.row-cols-sm-3>* {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.row-cols-sm-4>* {
		flex: 0 0 auto;
		width: 25%;
	}

	.row-cols-sm-5>* {
		flex: 0 0 auto;
		width: 20%;
	}

	.row-cols-sm-6>* {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.col-sm-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-sm-1 {
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.col-sm-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-sm-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-sm-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-sm-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-sm-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-sm-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-sm-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-sm-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-sm-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.col-sm-11 {
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.col-sm-12 {
		flex: 0 0 auto;
		width: 100%;
	}
}

@media (min-width: 768px) {
	.col-md {
		flex: 1 0 0%;
	}

	.row-cols-md-auto>* {
		flex: 0 0 auto;
		width: auto;
	}

	.row-cols-md-1>* {
		flex: 0 0 auto;
		width: 100%;
	}

	.row-cols-md-2>* {
		flex: 0 0 auto;
		width: 50%;
	}

	.row-cols-md-3>* {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.row-cols-md-4>* {
		flex: 0 0 auto;
		width: 25%;
	}

	.row-cols-md-5>* {
		flex: 0 0 auto;
		width: 20%;
	}

	.row-cols-md-6>* {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.col-md-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-md-1 {
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.col-md-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-md-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-md-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-md-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-md-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-md-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-md-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-md-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-md-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.col-md-11 {
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.col-md-12 {
		flex: 0 0 auto;
		width: 100%;
	}
}

@media (min-width: 992px) {
	.col-lg {
		flex: 1 0 0%;
	}

	.row-cols-lg-auto>* {
		flex: 0 0 auto;
		width: auto;
	}

	.row-cols-lg-1>* {
		flex: 0 0 auto;
		width: 100%;
	}

	.row-cols-lg-2>* {
		flex: 0 0 auto;
		width: 50%;
	}

	.row-cols-lg-3>* {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.row-cols-lg-4>* {
		flex: 0 0 auto;
		width: 25%;
	}

	.row-cols-lg-5>* {
		flex: 0 0 auto;
		width: 20%;
	}

	.row-cols-lg-6>* {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.col-lg-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-lg-1 {
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.col-lg-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-lg-3 {
		flex: 0 0 auto;
		width: 25% !important;
	}

	.col-lg-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-lg-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-lg-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-lg-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-lg-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-lg-9 {
		flex: 0 0 auto;
		width: 75% !important;
	}

	.col-lg-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.col-lg-11 {
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.col-lg-12 {
		flex: 0 0 auto;
		width: 100%;
	}

	.order-lg-last {
		order: 1;
	}
}

@media (min-width: 1200px) {
	.col-xl {
		flex: 1 0 0%;
	}

	.row-cols-xl-auto>* {
		flex: 0 0 auto;
		width: auto;
	}

	.row-cols-xl-1>* {
		flex: 0 0 auto;
		width: 100%;
	}

	.row-cols-xl-2>* {
		flex: 0 0 auto;
		width: 50%;
	}

	.row-cols-xl-3>* {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.row-cols-xl-4>* {
		flex: 0 0 auto;
		width: 25%;
	}

	.row-cols-xl-5>* {
		flex: 0 0 auto;
		width: 20%;
	}

	.row-cols-xl-6>* {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.col-xl-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-xl-1 {
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.col-xl-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-xl-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-xl-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-xl-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-xl-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-xl-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-xl-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-xl-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-xl-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.col-xl-11 {
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.col-xl-12 {
		flex: 0 0 auto;
		width: 100%;
	}
}

@media (min-width: 1400px) {
	.col-xxl {
		flex: 1 0 0%;
	}

	.row-cols-xxl-auto>* {
		flex: 0 0 auto;
		width: auto;
	}

	.row-cols-xxl-1>* {
		flex: 0 0 auto;
		width: 100%;
	}

	.row-cols-xxl-2>* {
		flex: 0 0 auto;
		width: 50%;
	}

	.row-cols-xxl-3>* {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.row-cols-xxl-4>* {
		flex: 0 0 auto;
		width: 25%;
	}

	.row-cols-xxl-5>* {
		flex: 0 0 auto;
		width: 20%;
	}

	.row-cols-xxl-6>* {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.col-xxl-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-xxl-1 {
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.col-xxl-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-xxl-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-xxl-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-xxl-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-xxl-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-xxl-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-xxl-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-xxl-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-xxl-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.col-xxl-11 {
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.col-xxl-12 {
		flex: 0 0 auto;
		width: 100%;
	}
}

@media(max-width:1500px) {

	.care-flex,
	.service-flex,
	.news-detail-flex {
		margin: 0 -15px;
	}

	.care-item,
	.service-item,
	.news-detail-left {
		padding: 0 15px;
	}

	.office-flex {
		gap: 40px;
	}

	.social-content-wrapper {
		padding: 0 15px;
	}

	.grid-item {
		padding: 24px 15px;
	}

	.news-detail-flex {
		padding: 0;
	}

	.news-d-title {
		margin-right: 20px;
	}

	.blog-details {
		margin: 30px -15px 0 -15px;
	}

	.news-single-banner {
		max-width: 50%;
	}

	.news-banner-grdiante {
		max-width: 65%;
	}
}

@media(max-width:1300px) {
	.office-left {
		width: 60%;
	}

	.page-template-page-social .home-banner .home-content h1 {
		width: 59%;
	}

	.office-right {
		width: 40%;
	}

	.service-item h3,
	.service-item h2 {
		min-height: 76px;
	}

	.post-img-flex {
		flex-wrap: wrap;
	}

	.news-post-img {
		margin-bottom: 30px;
	}

	.news-d-title {
		margin-right: 0px;
	}

	.home-left {
		min-height: 400px;
	}

	.grid-item {
		padding: 0 10px 20px;
		width: calc(100% / 4);
	}

	.sec-news-meta,
	.section-padding {
		padding: 60px 0;
	}

	.sec-pnews-awv .row:first-child {
		margin-bottom: 60px;
	}

	.blog-details .news-post-inner {
		width: calc(100% / 3);
	}

	.home-banner img {
		max-width: 100%;
	}

	.social-image-icon-section .desc p {
		width: 33%;
	}

}

@media(max-width:1240px) {
	.home-content h1 span {
		display: inline;
	}

	.home-left {
		padding: 100px 30px 100px 0;
	}

	.care-title h2 {
		font-size: 25px;
		line-height: 1.2;
	}

	.testimonial-content {
		padding: 80px 0 0px;
	}

	.testimonial-content .section-title p {
		margin: 30px 0 30px;
	}

	.review-section {
		padding: 50px 0 60px;
	}
}

@media(max-width:1100px) {
	.grid-item {
		width: 33.33%;
	}

	.page-template-page-social .home-banner .home-content h1 {
		width: 70%;
	}

	.team-content {
		width: 100%;
	}

	.team-img {
		width: 100%;
	}

	.team-main {
		flex-wrap: wrap;
		row-gap: 30px;
	}

	.home-banner .home-content {
		padding: 40px 0;
	}

	.home-banner .home-content {
		min-height: 400px;
	}

	.social-item {
		padding: 0;
	}
}

@media(max-width:1024px) {

	.news-detail-right {
		margin-top: 50px;
	}

	.page-template-page-social .home-banner .home-content h1 {
		width: 76%;
	}

	.sec-pnews-awv .row:first-child {
		margin-bottom: 50px;
	}

	.sec-news-meta {
		padding: 10px 0 40px;
	}

	.advocado-wrap {
		display: none !important;
	}
}

@media (max-width: 991px) {

	/* header */
	.header {
		padding: 15px 0;
	}

	.page-template-page-social .home-banner .home-content h1 {
		width: 100%;
	}

	.page-template-page-social .home-banner .home-content .dec p {
		width: 100%;
	}

	.navbar {
		position: fixed;
		top: 0;
		left: -100%;
		width: 300px;
		height: 100%;
		z-index: 10;
		opacity: 0;
		overflow-y: auto;
		visibility: hidden;
		box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
		background-color: var(--bg-light-gray);
		transition: all 0.5s ease;
	}

	.brand img {
		max-width: 149px;
	}

	.navbar.active {
		left: 0;
	}

	.nav-menu li,
	.nav-menu li a,
	.care-flex .care-item:first-child,
	.office-left,
	.office-right,
	.home-left,
	.filter-content img {
		width: 100%;
	}

	.nav-menu {
		height: auto;
		padding: 15px 15px 30px 20px;
		flex-direction: column;
		gap: 15px;
		justify-content: flex-start;
		align-items: flex-start;
	}

	.nav-menu li a {
		font-size: 20px;
		line-height: 1.5;
		padding: 5px;
	}

	.burger,
	.overlay.active,
	.navbar.active {
		opacity: 1;
		visibility: visible;
	}

	.overlay.active,
	.close-btn,
	.burger,
	.nav-menu li a,
	.care-title h2 span {
		display: block;
	}

	/* header end */
	.bg-img {
		display: flex;
		flex-wrap: wrap;
	}

	.home-banner-description {
		order: 2;
	}

	.home-img {
		width: 100%;
		height: 500px;
		position: relative;
		order: 1;
	}

	.section-padding,
	.home-left {
		padding: 50px 0 50px;
	}

	.home-left {
		padding: 0px 0 !important;
		min-height: auto;
	}

	.uniq-faq {
		padding: 2rem 1rem;
	}

	.care-item,
	.service-item {
		width: 50%;
	}

	.office-flex {
		flex-wrap: wrap;
	}

	.office-address {
		margin-left: -160px;
	}

	.filter-content h3,
	.filter-content h6,
	.filter-content p {
		font-size: 17px;
		line-height: 1.2;
	}

	.filter-content p {
		line-height: 1.5;
	}

	.grid-item {
		padding: 20px 15px;
	}

	.filters li {
		padding: 15px 15px;
		font-size: 15px;
	}

	.testimonial-content {
		order: 2;
	}

	.testimonial-img img {
		height: auto;
	}

	.testimonial-flex {
		flex-direction: column;
	}

	.testimonial-content,
	.testimonial-img {
		max-width: 100%;
	}

	.testimonial-content {
		padding: 10px 0 0px;
	}

	.filter-flex {
		/* margin: 0 -15px 60px -15px; */
	}

	.news-search-form .search-form {
		justify-content: center;
	}

	.team-content-wrapper .row:not(:last-child) {
		margin-bottom: 2rem;
	}

	.sec-team-banner .row {
		--gutter-y: 2rem;
	}

	.sec-team-banner {
		padding: 2rem 0;
	}

	.home-banner .home-content {
		min-height: auto;
	}

	.footer-flex {
		margin-top: 5px;
		gap: 5px;
		flex-direction: column;
	}

	.news-content a h3 {
		font-size: 1.2rem;
	}

	.social-cta-section .col-12.col-lg-3,
	.review-section .col-12.col-lg-3 {
		margin-top: 15px;
		text-align: left !important;
	}

	/*.social-cta-section .col-12.col-lg-9,.review-section .col-12.col-lg-9 {
		width: 75%;
	} */

}

@media(max-width:767px) {
	.home-img {
		height: 300px;
	}

	.home-content h1 {
		font-size: 30px;
		line-height: 1.2;
		margin: 20px 0;
	}

	.desc {
		margin-bottom: 20px;
	}

	.desc span,
	.testimonial-content .section-title p span {
		display: inline;
	}

	.care-inner {
		padding: 24px 15px;
	}

	.care-icon-flex h3 {
		font-size: 18px;
		margin: 0 0 0 10px;
	}

	.care-flex,
	.service-flex {
		row-gap: 40px;
	}

	.office-img img {
		height: auto;
	}

	.service-item h3,
	.service-item h2 {
		font-size: 20px;
		letter-spacing: 0;
	}

	.grid-item {
		width: 50%;
	}

	.office-right h5,
	.section-title h2 {
		margin-bottom: 30px;
	}

	.filters {
		padding: 0px 0 16px;
	}

	.footer-list {
		gap: 15px;
	}

	.testimonial-content .section-title h2 {
		font-size: 25px;
		line-height: 1.2;
		margin: 0;
	}

	.testimonial-content .section-title p {
		margin: 20px 0;
	}

	.quote-img {
		top: -15%;
	}

	.news-title {
		padding: 100px 0 100px;
	}

	.news-title h1,
	.news-details .news-title h1 {
		font-size: 29px;
		line-height: 1.2;
		max-width: 100%;
	}

	.news-post .care-title {
		max-width: 100%;
	}

	.news-post-inner {
		width: 100%;
	}

	.news-content a h3 {
		min-height: auto;
	}

	.news-post,
	.news-detail-wrapper {
		padding-bottom: 0;
	}

	.view-post {
		margin-top: 50px;
	}

	.care-title h2 {
		font-size: 23px;
	}

	.news-post-content h2 {
		font-size: 26px;
		line-height: 1.2;
	}

	.news-post-content h3 {
		font-size: 22px;
		line-height: 1.2;
	}

	.sec-title {
		font-size: 26px;
		line-height: 1.2;
	}

	.search-submit,
	.searchButton {
		padding: 14px 20px;
		line-height: 1.5;
		font-size: 14px;
		flex-shrink: 0;
	}

	.news-search-form .search-form .search-field {
		width: 100%;
	}

	.home-left {
		padding: 40px 0;
	}

	.back-to-top {
		right: 20px;
		bottom: 20px;
	}

	.section-padding {
		padding: 50px 0;
	}

	.wrapper-main a img {
		max-width: 150px;
	}

	.office-right h5,
	.section-title h2 {
		font-size: 24px;
	}

	.form-section {
		padding: 1rem;
	}

	.accordion .accordion__toggle {
		margin-right: 0;
		margin-left: 8px;
	}

	.home-banner-description {
		padding-bottom: 30px;
	}

	.home-banner+.section-padding:not(.care-main) {
		padding-top: 0;
	}

	.accordion .accordion__header {
		padding: 12px;
	}

	.home-banner .home-content h1 {
		font-size: 28px;
	}

	.home-banner .home-content .desc {
		font-size: 1rem;
		line-height: 1.5;
		margin-bottom: 1rem;
	}

	.sec-pnews-awv .row:first-child {
		margin-bottom: 30px;
	}

	.sec-news-meta {
		padding: 0 0 10px;
	}

	.blog-details .news-post-inner {
		width: calc(100% / 2);
	}

	.sec-team-banner .row {
		--gutter-y: 1rem;
	}

	.wp-block-quote {
		padding: 15px;
	}

	.social-faq .faq-header {
		margin-bottom: 20px;
	}

	.page-template-page-social .accordion-header h3 {
		width: 90%;
	}
}

@media(max-width:576px) {
	.home-img {
		height: 250px;
	}
	.author-box {
    flex-direction: column;
    gap: 16px;
 
}
	.social-item h3,
	h3,
	.social-cta-section h3 {
		font-size: 21px;
		line-height: 34px;
	}

	.social-cta-section p,
	p {
		font-size: 16px;
		line-height: 26px;
	}

	.accordion .accordion__title {
		font-size: 18px;
	}

	.home-content h1 {
		font-size: 21px;
		line-height: 1.2;
	}

	.desc {
		font-size: 16px;
		line-height: 1.5;
	}

	.form-section .form-grid-item {
		width: 100%;
	}

	.care-item,
	.service-item,
	.grid-item,
	.blog-details .news-post-inner {
		width: 100%;
	}

	.care-icon img {
		width: 50px;
		height: 50px;
	}

	.office-left,
	.filters ul {
		flex-direction: column;
	}

	.office-add-item {
		max-width: 100%;
	}

	.office-address {
		margin: 30px 0 0 0;
	}

	.service-item h3,
	.service-item h2 {
		min-height: auto;
	}

	.filters {
		margin-top: 2rem;
	}

	.filters ul {
		flex-wrap: wrap;
		flex-direction: row;
	}

	.filters li {
		text-align: center;
		width: calc(50% - 10px);
	}

	.news-content {
		padding: 20px 15px 20px;
	}

	.news-content a h3 {
		font-size: 20px;
		line-height: 1.2;
	}

	.sec-pnews-awv .row:last-child {
		margin-top: 0;
	}

	.btn-green {
		line-height: 1.5;
		padding: 10px 20px;
	}

	.news-title h1,
	.news-details .news-title h1 {
		font-size: 19px;
		line-height: 1.2;
	}

	.searchButton {
		padding: 10px 15px;
	}

	.news-post-content h2 {
		font-size: 20px;
		line-height: 1.2;
	}

	.news-content a h3 {
		font-size: 18px;
		line-height: 1.2;
	}

	.news-said-desc a {
		font-size: 15px;
		line-height: 1.2;
	}

	.team-content-wrapper .point-title {
		font-size: 1.2rem;
	}

	.news-card .news-card-title h3 {
		font-size: 1.2rem;
	}

	.home-banner .home-content {
		padding: 30px 0;
	}

	.home-banner .home-content h1 {
		margin-bottom: 1rem;
	}

	.section-padding {
		padding: 30px 0;
	}

	.google-review-main {
		flex-direction: column;
		row-gap: 32px;
	}

	.review-section {
		padding: 40px 0 30px;
	}

	.social-flex {
		padding-top: 30px;
	}

	.page-template-page-social .accordion-header {
		padding: 15px 0;
	}

	.page-template-page-social .accordion-content {
		padding: 15px 0;
		word-wrap: break-word;
	}

	.social-image-icon-section .social-icon img {
		width: 50px;
	}
}

@media(max-width:480px) {

	.footer-list,
	.footer-flex {
		flex-direction: column;
	}

	.footer-main {
		padding: 1.5rem 0;
	}

	.footer-list {
		gap: 0px;
	}

	.page-template-page-social .accordion-header h3 {
		width: 85%;
	}

	.social-image-icon-section .social-icon {
		gap: 20px;
	}

	.social-image-icon-section .social-icon img {
		width: 40px;
	}
}


/* component css */
.grey-box {
	background: #f5f5f5;
	padding: 24px;
	width: 100%;
}