/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Petona - Veterinary & Pet Care Clinic HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Why Choose Us css
08. Intro Video css
09. Our Features css
10. Our Products css
11. Our Pricing css
12. CTA Box css
13. Our FAQs css
14. Our Testimonials css
15. Our Blog css
16. Footer css
17. About Us Page css
18. Services Page css
19. Services Single css
20. Blog Archive css
21. Blog Single css
22. Products Page css
23. Product Single css
24. Team Page css
25. Team Single css
26. Pricing Page css
27. Testimonials Page css
28. Image Gallery css
29. Video Gallery css
30. FAQs Page css
31.	Contact Us Page css
32. Book Appointment css
33. 404 Error Page css
34. Responsive css
35. Home - Version 2 css
36. Home - Version 3 css 
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #322e2d;
	--secondary-color: #f7f5f5;
	--bg-color: #FFFFFF;
	--text-color: #322e2d;
	--accent-color: #004e66;
	--accent-color-light: #597a84e1;
	--white-color: #FFFFFF;
	--divider-color: #3A19161A;
	--dark-divider-color: #FFFDF91A;
	--error-color: #cd5963;
	--default-font: "Mulish", sans-serif;
	--bs-gutter-x: 1.5rem;
	--primary-accent: #004e66;
	--primary-accent-dark: #003a4d;
	--border-color: rgba(58, 25, 22, 0.1);
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

html,
body {
	width: 100%;
	overflow-x: clip;
	margin: 0;
	padding: 0;
	height: 100%;
}

html.no-smooth-scroll {
	scroll-behavior: auto !important;
}

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--bg-color);
}

::-webkit-scrollbar-track {
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
}

::selection {
	color: var(--primary-color);
	background-color: var(--accent-color-light);
	filter: invert(1);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.1em;
	color: var(--primary-color);
	margin: 0;
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

.container {
	max-width: 1800px;
}

.text-primary {
	color: var(--accent-color) !important;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

#main-content.main-padding {
	padding-top: 90px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.section {
	padding: 50px 0;
}

@media(min-width: 575px) {
	.section {
		padding: 60px 0;
	}
}

@media(min-width: 992px) {
	.section {
		padding: 80px 0;
	}
}

@media(min-width: 1200px) {
	.section:not {
		padding: 100px 0;
	}
}

.page-info .section {
	padding-top: 0 !important;
}

.row {
	margin-right: calc(var(--bs-gutter-x) / -2);
	margin-left: calc(var(--bs-gutter-x) / -2);
}

.row>* {
	padding-right: calc(var(--bs-gutter-x) / 2);
	padding-left: calc(var(--bs-gutter-x) / 2);
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.form-group {
	position: relative;
}

.form-group.form-check {
	display: flex;
}

.form-group.form-check a {
	color: white;
	text-decoration: underline;
}

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

.btn-default {
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1em;
	text-transform: uppercase;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 10px;
	padding: 18px 55px 18px 24px;
	border: none;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default-reverse {
	color: var(--accent-color);
	background-color: var(--bg-color);
}

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

.btn-default-reverse:hover {
	color: var(--secondary-color);
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 7px;
	width: 38px;
	height: 38px;
	background-color: var(--secondary-color);
	background-image: url('../images/arrow-accent.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px auto;
	border-radius: 5px;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.btn-default-reverse:before {
	background-color: var(--accent-color);
	background-image: url(../images/arrow-white.svg);
}

.btn-default::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--primary-color);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover::after {
	right: auto;
	left: 0;
	width: 100%;
}

.btn-outline {
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	line-height: 18px;
	text-transform: uppercase;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 10px;
	padding: 15px 33px 15px 33px;
	border: 1px solid var(--white-color);
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-outline:hover {
	color: var(--accent-color);
	background: var(--white-color);
}

.btn-dark {
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1em;
	text-transform: uppercase;
	color: var(--white-color);
	background: var(--primary-color);
	border-radius: 10px;
	padding: 15px 33px 15px 33px;
	border: none;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-dark:hover {
	color: var(--white-color);
	background: #504947;
}

.btn-light {
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1em;
	text-transform: uppercase;
	color: var(--primary-color);
	background: var(--white-color);
	border-radius: 10px;
	padding: 15px 33px 15px 33px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
	border: none;
}

.btn-light:hover {
	background: #e5e5e5;
}

.btn-accent {
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1em;
	text-transform: uppercase;
	color: var(--white-color);
	background: var(--accent-color);
	border: none;
	border-radius: 10px;
	padding: 15px 33px 15px 33px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-accent:hover {
	color: var(--white-color);
	background: #206a81;
}

.btn-default.btn-highlighted:hover {
	color: var(--primary-color);
}

.btn-default.btn-highlighted:hover:before {
	background-color: var(--primary-color);
	background-image: url('../images/arrow-white.svg');
}

.btn-default.btn-highlighted::after {
	background-color: var(--white-color);
}

.readmore-btn {
	position: relative;
	display: inline-block;
	font-weight: 600;
	line-height: normal;
	text-transform: capitalize;
	color: var(--primary-color);
	padding-right: 28px;
}

.readmore-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	width: 20px;
	height: 20px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
	transform: translateY(-50%) rotate(45deg);
}

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.bg-section {
	position: relative;
	width: 100%;
	max-width: 1880px;
	border-radius: 20px;
	margin: 0 auto;
}

.bg-section .container-fluid {
	padding: 0;
}

.dark-section {
	background-color: var(--primary-color);
	background-image: url('../images/dark-section-bg-shape.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.accent-section {
	background-position: center center;
	background-size: cover;
}

.section-row {
	margin-bottom: 50px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-row .section-title.section-title-center {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.section-btn {
	text-align: right;
}

.section-content-btn .section-btn {
	margin-top: 30px;
	text-align: left;
}

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

.section-title-content p:last-child {
	margin-bottom: 0;
}

.section-title {
	margin-bottom: 40px;
}

.section-title-tag {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.25em;
	color: var(--primary-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.section-title-tag::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url('../images/icon-paw.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 20px;
	height: 20px;
}

.dark-section .section-title-tag h3::before {
	background: url('../images/icon-paw-white.svg') no-repeat;
}

.section-title h1 {
	font-size: 61px;
	line-height: 1.1em;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	text-transform: uppercase;
}

.section-title h2 {
	font-size: 54px;
	line-height: 1.1em;
	letter-spacing: -0.02em;
	margin-bottom: 0;
}

.section-title p {
	margin-top: 20px;
	font-size: 16px;
	margin-bottom: 0;
}

.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p,
.bg-section .section-title h3,
.bg-section .section-title h1,
.bg-section .section-title h2,
.bg-section .section-title p,
.bg-section .section-title-content p {
	color: var(--white-color);
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: white;
	font-weight: 500;
	font-size: 14px;
}

.help-block.with-errors {
	position: absolute;
	top: 8px;
	right: 24px;
	background: var(--error-color);
	padding: 4px 7px;
	border-radius: 8px;
	visibility: hidden;
}

.form-check .help-block.with-errors {
	top: auto;
	bottom: 7px;
	left: 15px;
	right: auto;
}

.form-group.has-error .help-block.with-errors {
	visibility: visible;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
	position: absolute;
	padding: 10px 20px;
	top: 20px;
	left: 0;
	right: 0;
	z-index: 100;
	transition:
		box-shadow 0.3s ease,
		transform 0.3s ease,
		padding 0.3s ease;
	will-change: transform;
	/* Оптимизация для браузера */
}

@media(min-width: 768px) {
	body.modal-open header.main-header {
		right: 7px;
	}
}

header.main-header.accent {
	top: 0;
}

.main-header.accent .navbar {
	background-color: var(--bg-color);
}

/* === Состояние: хедер прилип === */
.main-header.is-sticky {
	position: fixed;
	top: 0;
	animation: slideDown 0.3s ease;
}

.main-header.is-sticky .navbar {
	background-color: var(--bg-color);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
}


/* Анимация появления сверху */
@keyframes slideDown {
	from {
		transform: translateY(-100%);
		opacity: 0.9;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}


.navbar {
	align-items: center;
	padding: 0 10px;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.header-actions {
	display: flex;
	gap: 20px;
	color: white;
	font-size: 16px;
}

.header-actions a {
	color: white;
}

.header-actions a:hover {
	color: white;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0 10px;
	position: relative;
}

.main-menu ul li a {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2em;
	padding: 22px 10px !important;
	color: var(--white-color);
	background: transparent;
	border-radius: 0px;
	text-transform: uppercase;
	transition: padding 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: white;
}

.main-menu ul li.submenu {
	position: initial;
}

.main-menu .submenu-wrap {
	visibility: hidden;
	opacity: 0;
	transform: scale(1, 0.8);
	border-top: 1px solid #96adad;
	transform-origin: top;
	padding: 30px 50px;
	margin: 0;
	list-style: none;
	width: 100%;
	position: absolute;
	left: 0;
	top: 100%;
	background: #f1f5f9;
	transition: all 0.3s ease-in-out;
	text-align: left;
	display: flex;
	justify-content: space-between;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

}

.main-menu .submenu-wrap,
.main-menu .submenu-wrap a {
	color: var(--text-color);
	font-size: 13px;
	font-weight: 400;
}

.main-menu .submenu-wrap a {
	padding: 5px 10px !important;
}

.main-menu .submenu-wrap ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	width: 70%;
	flex-wrap: wrap;
	gap: 5px 40px;
	max-height: 240px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.fw-7 {
	font-weight: 700 !important;
}

.submenu-wrap-left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.main-menu .submenu-wrap .submenu-wrap-left,
.main-menu .submenu-wrap .submenu-wrap-left a {
	color: var(--text-color);
	font-size: 12px;
	font-weight: 400;
}

.submenu-wrap-left span {
	font-weight: 400;
	line-height: 1.2em;
	padding: 5px 10px;
	font-size: 12px;
}

.submenu-wrap-left a:hover {
	color: var(--text-color) !important;
	padding-left: 14px !important;
}

.main-menu ul li:hover>.submenu-wrap {
	visibility: visible;
	opacity: 1;
	transform: scale(1, 1);

}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--white-color);
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--primary-color);
	background-color: transparent;
	text-decoration: underline;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

@media(min-width: 1400px) {
	.main-menu .submenu-wrap {
		padding: 30px 100px;
	}
}

@media(min-width: 1200px) {

	.main-menu .submenu-wrap,
	.main-menu .submenu-wrap a {
		font-size: 16px;
	}

	.main-menu .submenu-wrap .submenu-wrap-left,
	.main-menu .submenu-wrap .submenu-wrap-left a {
		font-size: 14px;
	}

	.submenu-wrap-left span {

		font-size: 14px;
	}
}

header.main-header.accent .main-menu ul li a,
header.main-header.is-sticky .main-menu ul li a,
header.main-header.accent .header-actions a,
header.main-header.is-sticky .header-actions a,
header.main-header.accent .header-actions a:hover,
header.main-header.is-sticky .header-actions a:hover {
	color: black;
}

header.main-header.accent .header-actions svg path,
header.main-header.is-sticky .header-actions svg path {
	fill: black;
}

header.main-header.accent .logo-white,
header.main-header.is-sticky .logo-white {
	display: none;
}

header.main-header.accent .logo-black,
header.main-header.is-sticky .logo-black {
	display: block !important;
}



header.main-header.accent .header-actions,
header.main-header.is-sticky .header-actions {
	color: black;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--white-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	height: 3px;
	width: 22px;
	background-color: var(--text-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--white-color);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	padding: 7px 20px;
	color: var(--text-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a {
	padding: 7px 20px 7px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--text-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: translateY(-50%) rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***         04. Hero css	      ***/
/************************************/

.hero {
	position: relative;
	background-image: url('../images/home-ts-mob.webp');
	background-size: cover;
	background-position: bottom right;
	padding: 175px 0 160px;
	margin-top: 10px;
	height: calc(100svh - 20px);
	width: calc(100% - 20px);
	max-height: 1000px;
	overflow: hidden;
}

@media(min-width: 768px) {
	.hero {
		background-image: url('../images/home-top-screen.webp');
	}
}

.hero .container {
	position: relative;
	z-index: 2;
}

.hero-content {
	height: 100%;
	align-content: center;
}

.hero-content .section-title p {
	font-size: 16px;
	max-width: 600px;
}

.hero-content-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 25px 50px;
}

.video-play-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 20px;
	z-index: 1;
}

.video-play-button a {
	position: relative;
	height: 40px;
	width: 40px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a {
	background: var(--secondary-color);
}

.video-play-button a.bg-effect:before,
.video-play-button a.bg-effect:after {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 100%;
	height: 100%;
	border: 32px solid var(--white-color);
	opacity: 50%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a.bg-effect:after {
	animation-delay: .3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i {
	font-size: 14px;
	color: var(--white-color);
	margin-left: 2px;
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a i {
	color: var(--primary-color);
}

.video-play-button h3 {
	font-size: 18px;
	color: var(--white-color);
}

.hero-client-box {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.satisfy-client-images {
	display: flex;
	align-items: center;
}

.satisfy-client-image {
	position: relative;
	display: inline-block;
	margin-left: -14px;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}

.satisfy-client-image:first-child {
	margin: 0;
}

.satisfy-client-image figure {
	display: block;
}

.satisfy-client-image figure img {
	width: 100%;
	max-width: 50px;
	border-radius: 50%;
}

.satisfy-client-image.add-more {
	width: 52px;
	height: 52px;
	background-color: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more i {
	font-size: 20px;
	color: var(--white-color);
}

.satisfy-client-image.add-more h3 {
	color: var(--white-color);
	font-size: 16px;
	line-height: 1em;
}

.satisfy-client-content p {
	color: var(--white-color);
	margin: 0;
}

.hero-client-box .satisfy-client-image {
	border-color: var(--white-color);
}

.hero-client-box .satisfy-client-content {
	max-width: 56%;
}

.hero-image {
	position: relative;
	height: 100%;
	align-content: end;
	text-align: right;
	z-index: 1;
}

.hero-image figure {
	display: block;
}

.hero-image img {
	width: 100%;
	max-width: 680px;
	aspect-ratio: 1 / 1.095;
	object-fit: cover;
	margin-bottom: -160px;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us {
	padding: 100px 0;
}

.about-us-image-box {
	position: relative;
	margin-right: 20px;
}

.about-us-image figure {
	display: block;
	border-radius: 20px;
}

.about-us-image img {
	width: 100%;
	aspect-ratio: 1 / 0.93;
	object-fit: cover;
	border-radius: 20px;
}

.happy-customer-box {
	position: absolute;
	top: 0;
	left: 0;
	width: 240px;
	background: var(--bg-color);
	border: 20px solid var(--bg-color);
	border-top: none;
	border-left: none;
	border-radius: 10px 0 10px 0;
	z-index: 1;
}

.happy-customer-box::before,
.happy-customer-box::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	mask: url('../images/image-corner-bg-shape.svg');
	-webkit-mask: url('../images/image-corner-bg-shape.svg');
	background-color: var(--bg-color);
	mask-repeat: no-repeat;
	mask-size: cover;
	z-index: 1;
}

.happy-customer-box::before {
	top: 0px;
	right: -40px;
}

.happy-customer-box::after {
	left: 0px;
	bottom: -40px;
}

.happy-customer-box-content {
	background-color: var(--accent-color);
	border-radius: 10px;
	padding: 20px;
}

.happy-customer-box-content .satisfy-client-images {
	margin-bottom: 15px;
}

.happy-customer-box-content .satisfy-client-content {
	font-weight: 600;
}

.about-experience-box {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 190px;
	background: var(--bg-color);
	border: 20px solid var(--bg-color);
	border-right: none;
	border-bottom: none;
	border-radius: 10px 0 10px 0;
	text-align: center;
	z-index: 1;
}

.about-experience-box::before,
.about-experience-box::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	mask: url('../images/image-corner-bg-shape.svg');
	-webkit-mask: url('../images/image-corner-bg-shape.svg');
	background-color: var(--bg-color);
	mask-repeat: no-repeat;
	mask-size: cover;
	transform: rotate(180deg);
	z-index: 1;
}

.about-experience-box::before {
	top: -40px;
	right: 0;
}

.about-experience-box::after {
	left: -40px;
	bottom: 0;
}

.about-experience-box-content {
	background-color: var(--accent-color);
	border-radius: 10px;
	text-align: center;
	padding: 15px;
}

.about-experience-box-content h2 {
	color: var(--white-color);
	font-size: 60px;
}

.about-experience-box-content p {
	color: var(--white-color);
	font-weight: 700;
	line-height: 1.4em;
	margin: 5px 0 0 0;
}

.about-us-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.about-us-body-list {
	width: calc(100% - 160px);
}

.about-us-body-item {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.about-us-body-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.about-us-body-item .icon-box {
	margin-right: 20px;
}

.about-us-body-item .icon-box img {
	width: 100%;
	max-width: 50px;
}

.about-us-body-item-content {
	width: calc(100% - 70px);
}

.about-us-body-item-content h3 {
	font-size: 20px;
}

.about-us-body-item-content p {
	margin: 10px 0 0;
}

.about-us-btn {
	margin-top: 50px;
}

.contact-us-circle a,
.contact-us-circle figure {
	display: block;
	border-radius: 50%;
}

.contact-us-circle img {
	width: 100%;
	max-width: 130px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.contact-us-circle img:hover {
	animation-play-state: paused;
}

@keyframes infiniterotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.about-us-footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1000px;
	margin: 0 auto;
	margin-top: 60px;

}

.about-us-footer-list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.about-us-footer-list ul li {
	position: relative;
	background: transparent;
	border: 1px solid var(--divider-color);
	font-size: 16px;
	color: var(--primary-color);
	padding: 10px 20px 10px 50px;
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}

.about-us-footer-list ul li::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: url('../images/icon-paw.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	transition: all 0.4s ease-in-out;
}

.about-us-footer-list ul li:hover::before {
	filter: brightness(0) invert(1);
}

.about-us-footer-list ul li:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.section-footer-text {
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p {
	color: var(--primary-color);
	margin-bottom: 0;
}

.section-footer-text p span {
	font-size: 14px;
	font-weight: 500;
	background: var(--accent-color);
	color: var(--white-color);
	padding: 3px 10px;
	border-radius: 20px;
	margin-right: 10px;
}

.section-footer-text p a {
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
	color: var(--primary-color);
}

.section-footer-text ul {
	width: 100%;
	padding: 0;
	margin: 15px 0 0;
	list-style: none;
}

.section-footer-text ul li {
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 700;
	line-height: normal;
	color: var(--primary-color);
	margin-right: 5px;
}

.section-footer-text ul li:last-child {
	margin: 0;
}

.section-footer-text ul li i {
	color: var(--accent-color);
}

.dark-section .section-footer-text p,
.dark-section .section-footer-text ul li {
	color: var(--white-color);
}

.dark-section .section-footer-text p a:hover {
	color: var(--white-color);
}

.section-footer-text.section-footer-contact {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 20px;
}

.section-footer-text.section-footer-contact span {
	width: 30px;
	height: 30px;
	padding: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}

.section-footer-text.section-footer-contact span img {
	max-width: 14px;
}

.section-footer-text.section-satisfy-img {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.section-footer-text.section-satisfy-img ul {
	margin: 0;
}

.section-footer-text.section-satisfy-img .satisfy-client-image {
	border-color: var(--white-color);
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img {
	max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more {
	width: 32px;
	height: 32px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img {
	max-width: 16px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more i {
	font-size: 16px;
}

/************************************/
/***      06. Our Services css    ***/
/************************************/


.service-item {
	background-color: var(--white-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	min-height: 315px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 20px 40px;
}

.service-item-img {
	min-height: auto !important;
	height: auto !important;
}

.service-item-img-bg {
	min-height: auto !important;
	height: auto !important;
	max-height: 400px;
}

.service-item-img-bg img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

.service-item-img-bg .service-cta-slide {
	max-height: 400px;
	display: flex;
	justify-content: center;
	/* по горизонтали */
	align-items: center;
	/* по вертикали */
}

.service-item-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
}

.service-item-title {
	width: calc(100% - 70px);
}

.service-item-title h3 {
	font-size: 20px;
}

.service-item-title a {
	color: inherit;
}

.service-item-btn a {
	border: 1px solid var(--divider-color);
	height: 40px;
	width: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.service-item-btn a:hover {
	background-color: var(--accent-color);
}

.service-item-btn a img {
	width: 100%;
	max-width: 20px;
	transition: all 0.4s ease-in-out;
}

.service-item-btn a:hover img {
	filter: brightness(0) invert(1);
	transform: rotate(45deg);
}

.service-item .icon-box img {
	width: 100%;
	max-width: 50px;
}

.service-cta-box {
	position: relative;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: anchor-center;
	gap: 0;
	background-color: var(--secondary-color);
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: var(--bs-gutter-x);
}

.service-cta-box img {
	width: 100%;
}

.service-cta-num {
	font-size: 62px;
	line-height: 1.2em;
	font-weight: 600;
}


.service-cta-box_num .service-cta-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: space-between;
}

.service-cta-box_num .service-cta-title {
	font-size: 24px;
}

.service-cta-box_accent {
	background-color: var(--accent-color);
}

.service-cta-box_accent .service-cta-title,
.service-cta-box_accent .service-cta-num {
	color: var(--white-color)
}

.service-cta-link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}

.service-cta-info {
	width: 60%;
}

.service-cta-title {
	font-size: 20px;
	color: var(--text-color);
	margin-bottom: 20px;
}

.service-cta-content p {
	color: var(--text-color);
	margin-bottom: 0;
}


.service-cta-content ul {
	padding-left: 20px;
	margin: 20px 0 0;
}

.service-cta-content ul li {
	color: var(--text-color);
	font-weight: 700;
}

.service-cta-content ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.service-cta-content ul li a:hover {
	color: var(--primary-color);
}

.service-cta-btn {
	margin-top: 30px;
	display: flex;
	gap: 18px;
	z-index: 3;
}

.service-cta-price_wrap {
	display: flex;
	gap: 20px;
}

.service-cta-price {
	color: var(--accent-color);
	margin-bottom: 20px;
	font-weight: 700;
}

.service-cta-price_old {
	color: var(--text-color);
	text-decoration: line-through;
	margin-bottom: 20px;
	font-weight: 700;
}

.service-cta-btn .btn-default {
	color: var(--accent-color);
	background-color: var(--bg-color);
}

.service-cta-btn .btn-default::before {
	background-color: var(--accent-color);
	background-image: url('../images/arrow-white.svg');
}

.service-cta-btn .btn-default:hover {
	color: var(--secondary-color);
}

.service-cta-image {
	width: 40%;
	text-align: right;
}

.service-cta-image figure {
	display: block;
	border-radius: 20px 20px 0 0;
	margin: 0 -60px -40px 0;
}

.service-cta-image figure img {
	width: 100%;
	max-width: 320px;
	border-radius: 20px 20px 0 0;
	aspect-ratio: 1 / 0.87;
	object-fit: cover;
}

.service-cta-slider,
.about-us-slider,
.team-slider {
	width: 100%;
}

.service-cta-slide-btn-next,
.service-cta-slide-btn-prev {
	position: absolute;
	top: -65px;
	right: 80px;
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border-radius: 12px;
	transition: all 0.4s ease-in-out;
	z-index: 4;
}


.service-cta-slide-btn-next {
	right: 15px;
}

@media(max-width: 991px) {

	.service-cta-slide-btn-next,
	.service-cta-slide-btn-prev {
		top: 45%;
		transform: translateY(-50%);
		right: auto;
		left: 20px;
	}

	.service-cta-slide-btn-next {
		right: 20px;
		left: auto;
	}
}

.service-cta-slide-btn-next:hover,
.service-cta-slide-btn-prev:hover {
	background: var(--primary-color);
}

.service-cta-slide-btn-next::before,
.service-cta-slide-btn-prev::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transform: rotate(45deg);
	background: url('../images/arrow-white.svg') no-repeat;
	background-position: center center;
	background-size: 20px auto;
	transition: all 0.4s ease-in-out;
}

.service-cta-slide-btn-prev::before {
	transform: rotate(225deg);
}

.service-cta-content {
	width: 100%;
}

.service-categories_title {
	color: var(--primary-color);
	font-size: 48px;
	line-height: 1.5em;
	padding-bottom: 10px;
	text-transform: uppercase;
	width: 100%;
	border-bottom: 2px solid var(--primary-color);
	margin-bottom: 25px;
}

.service-categories .service-cta-box.service-item-img-bg img {
	transition: .3s ease-in-out;
}

.service-categories .service-cta-box.service-item-img-bg:hover img {
	transform: scale(1.1);
}

.service-cta-box_accent .service-categories_title {
	color: var(--white-color);
	border-bottom: 2px solid white;
}

.service-categories_item-price {
	flex-shrink: 0;
	font-weight: 700;
}

.service-categories_wrap {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.service-categories_item {
	width: 100%;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	color: var(--primary-color);
	font-size: 22px;
	line-height: 1.2em;
	font-weight: 600;
}

.service-categories .service-cta-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.service-cta-box_accent .service-categories_item {
	color: var(--white-color);
}

.service-categories_item-desc {
	font-size: 15px;
	font-weight: 400;
}

.service-categories_item-left {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.service-categories .service-cta-title {
	position: absolute;
	left: 30px;
	bottom: 5px;
	color: var(--white-color);
	font-size: 35px;
	z-index: 2;
}

.service-categories .service-cta-box {
	margin-bottom: var(--bs-gutter-x);
}

.service-categories .service-cta-box.service-item {
	padding-bottom: 35px;
}

.service-categories .service-item-img-bg .service-cta-content {
	justify-content: center;
	align-items: center;
	max-height: 400px;
}

@media(max-width: 1600px) {
	.service-categories .service-categories_title {
		font-size: 38px !important;
	}
}

@media(max-width: 1400px) {

	.service-cta-content p {
		font-size: 15px;
	}

	.service-categories .service-cta-title {
		font-size: 25px;
		left: 20px;
	}


}

@media(max-width: 767px) {
	.service-cta-num {
		font-size: 46px;
	}

	.service-cta-box_num .service-cta-title {
		font-size: 20px;
	}

	.service-categories .service-cta-box:not(.service-item) {
		margin-bottom: 15px;
	}

	.service-categories .service-categories_title {
		font-size: 27px !important;
	}

	.service-categories_item {
		flex-direction: column;
		gap: 5px;
		margin-bottom: 15px;
	}

	.service-categories .row>.order-2 {
		order: 2;
	}

	.service-categories .service-cta-title {
		font-size: 22px;
		left: 15px;
		margin-bottom: 10px;
	}

	.service-categories .row>*:nth-child(odd):not(.col-12.col-md-6) {
		padding-right: 7.5px;
	}

	.service-categories .row>*:nth-child(even):not(.col-12.col-md-6) {
		padding-left: 7.5px;
	}
}

@media(max-width: 480px) {
	.service-categories .service-cta-title {
		font-size: 18px;
	}
}


/************************************/
/***    07. Why Choose Us css     ***/
/************************************/

.why-choose-us {
	padding: 100px 0;
}

.why-choose-us-image-box {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	margin-right: 15px;
}

.why-choose-us-image-box-1 {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: end;
	width: 100%;
	margin-right: 40px;

}

.why-choose-us-image {
	width: 100%;
}

.why-choose-us-image-box-1 .why-choose-us-image {
	width: calc(100% - 160px);
}

.why-choose-us-image figure {
	display: block;
	border-radius: 20px;
}

.why-choose-us-image figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-us-image-box-1 .why-choose-us-image figure img {
	aspect-ratio: 1 / 0.982;
}

.personalized-caring-box {
	width: 210px;
	position: relative;
	background-color: var(--accent-color);
	border-radius: 20px;
	padding: 20px;
	margin-left: -50px;
	z-index: 2;
}

.personalized-caring-box .icon-box {
	margin-bottom: 25px;
}

.personalized-caring-box .icon-box img {
	width: 100%;
	max-width: 40px;
}

.personalized-caring-box-content h2 {
	font-size: 30px;
	color: var(--white-color);
}

.personalized-caring-box-content p {
	color: var(--white-color);
	font-weight: 700;
	line-height: normal;
	margin: 5px 0 0;
}

.why-choose-us-image-box-2 {
	position: relative;
	display: flex;
	margin-top: -230px;
	align-items: center;
	z-index: 1;
}

.why-choose-us-image-box-2 .why-choose-us-image figure {
	box-shadow: 0 0 10px 0 rgba(51, 52, 55, 0.10);
	border: 6px solid var(--bg-color);
	border-radius: 20px;
}

.why-choose-us-image-box-2 .why-choose-us-image figure img {
	aspect-ratio: 1 / 0.95;
	border-radius: 10px;
}

.why-choose-us-image-box-2 .contact-us-circle {
	position: absolute;
	left: 0;
	transform: translateX(-50%);
	z-index: 2;
}

.why-choose-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-body-item {
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
}

.why-choose-body-item .icon-box {
	margin-right: 20px;
}

.why-choose-body-item .icon-box img {
	width: 100%;
	max-width: 50px;
}

.why-choose-body-item-content {
	width: calc(100% - 70px);
}

.why-choose-body-item-content h3 {
	font-size: 20px;
}

.why-choose-body-item-content p {
	margin: 10px 0 0;
}

.why-choose-list {
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
	margin-top: 40px;
}

.why-choose-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.why-choose-list ul li {
	position: relative;
	margin-bottom: 20px;
	padding-left: 30px;
	line-height: 1.5em;
}

.why-choose-list ul li:last-child {
	margin-bottom: 0;
}

.why-choose-list ul li:before {
	content: '';
	position: absolute;
	top: 1px;
	left: 0;
	height: 20px;
	width: 20px;
	background: url('../images/icon-paw.svg') no-repeat;
	background-position: center center;
	background-size: cover;
}

.why-choose-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	margin-top: 40px;
}

.about-contact-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.about-contact-box .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.about-contact-box .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-contact-box:hover .icon-box::before {
	transform: scale(1);
}

.about-contact-box .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.about-contact-box-content {
	width: calc(100% - 62px);
}

.about-contact-box-content h3 {
	font-size: 20px;
}

.about-contact-box-content h3 a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.about-contact-box-content h3 a:hover {
	color: var(--accent-color);
}

.about-contact-box-content p {
	margin: 5px 0 0;
}

.team-img {
	min-height: 360px;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.team-img img {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	object-fit: cover;
	object-position: 0 20%;
}

@media(max-width: 1400px) {
	.team-img img {
		top: 50%;
	}
}

.team-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-radius: 20px;
	background-color: var(--secondary-color);
	padding: 35px 25px;
	line-height: 1.2em;
	height: 100%;
	justify-content: space-between;
}

.team-name-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.team-name {
	font-size: 28px;
	line-height: 1.2em;
	font-weight: 700;
	margin-bottom: 15px;
}

.team-direction {
	font-size: 17px;
	margin-bottom: 15px;
}

.our-team .service-cta-box {
	align-items: self-start;
}

.our-team .service-cta-box {
	min-height: 360px;
	padding: 40px;
}

.our-team .service-cta-title {
	font-size: 22px;
	margin-bottom: 30px;
}

.our-team .service-cta-text {
	color: var(--white-color);
	font-size: 16px;
	margin-bottom: 30px;
}

@media(max-width: 767px) {
	.our-team .service-item-img-bg {
		max-height: none;
	}

	.our-team .team-wrap {
		min-height: 302px;
	}

	.our-team .team-img {
		border-radius: 20px 20px 0 0;
		aspect-ratio: 1/1;
		max-width: 100%;
		margin-left: 0px;
	}

	.our-team .team-wrap {
		padding: 25px 15px;
		border-radius: 0 0 20px 20px;
	}
}

/************************************/
/***    08. Intro Video css       ***/
/************************************/

.intro-video {
	background: transparent;
	overflow: hidden;
}

.intro-video-box {
	position: relative;
}

.intro-video-image figure {
	position: relative;
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.intro-video-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	border-radius: 20px;
	opacity: 20%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.intro-video-image img {
	width: 100%;
	aspect-ratio: 1 / 0.442;
	object-fit: cover;
	border-radius: 20px;
}

.intro-video-box .intro-video-circle {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 1;
}

.intro-video-box .intro-video-circle a {
	cursor: none;
}

.intro-video-box .intro-video-circle a img {
	width: 100%;
	max-width: 140px;
	animation: infiniterotate 20s infinite linear;
}

.intro-video-box .intro-video-circle a:hover img {
	animation-play-state: paused;
}

/************************************/
/***    09. Our Features css      ***/
/************************************/

.our-features {
	padding: 100px 0;
}

.feature-item {
	position: relative;
	background: var(--secondary-color);
	border-radius: 20px;
	min-height: 565px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px 40px 0;
	overflow: hidden;
}

.feature-item::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.feature-item:hover::before {
	height: 100%;
}

.feature-item-header {
	position: relative;
	z-index: 1;
}

.feature-item-header .icon-box {
	margin-bottom: 30px;
}

.feature-item-header .icon-box img {
	width: 100%;
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}

.feature-item:hover .feature-item-header .icon-box img {
	filter: brightness(0) invert(1);
}

.feature-item-content h3 {
	font-size: 20px;
	transition: all 0.4s ease-in-out;
}

.feature-item-content p {
	margin: 15px 0 0;
	transition: all 0.4s ease-in-out;
}

.feature-item:hover .feature-item-content {
	border-color: var(--dark-divider-color);
}

.feature-item-content ul {
	margin: 20px 0 0 0;
	padding: 20px 0 0 20px;
	border-top: 1px solid var(--divider-color);
}

.feature-item-content ul li {
	position: relative;
	line-height: 1.5em;
	margin-bottom: 10px;
	transition: all 0.4s ease-in-out;
}

.feature-item-content ul li:last-child {
	margin-bottom: 0;
}

.feature-item .feature-item-content ul li::marker {
	color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.feature-item:hover .feature-item-content h3,
.feature-item:hover .feature-item-content p,
.feature-item:hover .feature-item-content ul li,
.feature-item:hover .feature-item-content ul li::marker {
	color: var(--white-color);
}

.feature-item:hover .feature-item-content ul {
	border-color: var(--dark-divider-color);
}

.feature-item-image {
	position: relative;
	width: 100%;
	max-width: 390px;
	margin: 0 auto;
}

.feature-item-image figure {
	display: block;
	border-radius: 20px 20px 0 0;
}

.feature-item-image figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 20px 20px 0 0;
}

/************************************/
/***    10. Our Products css      ***/
/************************************/

.our-product {
	padding: 100px 0;
}

.product-item {
	background: var(--bg-color);
	border-radius: 20px;
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 15px;
	transition: all 0.4s ease-in-out;
}

.product-item:hover {
	transform: translateY(-5px);
}

.product-item-img a {
	display: block;
	border-radius: 10px;
	cursor: none;
	overflow: hidden;
}

.product-item-img figure {
	display: block;
}

.product-item-img img {
	width: 100%;
	aspect-ratio: 1 / 0.914;
	object-fit: cover;
}

.product-item-content {
	padding: 20px 0 15px;
}

.product-rating-star {
	display: inline-block;
	margin-bottom: 20px;
}

.product-rating-star i {
	font-size: 20px;
	color: var(--accent-color);
}

.product-item-content h3 {
	font-size: 20px;
}

.product-item-content h3 a {
	color: inherit;
}

.product-item-content p {
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 700;
	margin: 10px 0 0;
}

.product-item-content p span {
	color: var(--text-color);
	font-weight: 400;
	font-size: 16px;
	text-decoration-line: line-through;
	margin-left: 10px;
}

/************************************/
/***    11. Our Pricing css      ***/
/************************************/

.our-pricing {
	padding: 100px 0;
}

.pricing-item {
	background-color: var(--secondary-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.pricing-item-header .icon-box {
	margin-bottom: 40px;
}

.pricing-item-header .icon-box img {
	width: 100%;
	max-width: 50px;
}

.pricing-item-content h3 {
	font-size: 20px;
}

.pricing-item-content p {
	border-top: 1px solid var(--divider-color);
	margin: 20px 0 0;
	padding: 20px 0 0;
}

.pricing-item-content h2 {
	font-size: 50px;
	margin-top: 20px;
}

.pricing-item-content h2 sub {
	font-size: 20px;
	bottom: 0;
}

.pricing-item-btn {
	margin-top: 30px;
}

.pricing-item-btn .btn-default {
	text-align: center;
	width: 100%;
	padding: 20px;
}

.pricing-item-btn .btn-default:before {
	display: none;
}

.pricing-item-list {
	margin-top: 30px;
}

.pricing-item-list h3 {
	font-size: 20px;
}

.pricing-item-list ul {
	list-style: none;
	border-top: 1px solid var(--divider-color);
	margin: 20px 0 0;
	padding: 20px 0 0;
}

.pricing-item-list ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.pricing-item-list ul li:last-child {
	margin-bottom: 0;
}

.pricing-item-list ul li::before {
	content: '';
	position: absolute;
	top: 1px;
	left: 0;
	background-image: url('../images/icon-paw.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 20px;
	width: 20px;
}

.pricing-item.highlighted-box {
	background-color: var(--accent-color);
}

.pricing-item.highlighted-box .pricing-item-header .icon-box img {
	filter: brightness(0) invert(1);
}

.pricing-item.highlighted-box .pricing-item-content h3,
.pricing-item.highlighted-box .pricing-item-content p,
.pricing-item.highlighted-box .pricing-item-content h2,
.pricing-item.highlighted-box .pricing-item-content h2 sub,
.pricing-item.highlighted-box .pricing-item-list h3,
.pricing-item.highlighted-box .pricing-item-list ul li {
	color: var(--white-color);
}

.pricing-item.highlighted-box .pricing-item-content p,
.pricing-item.highlighted-box .pricing-item-list ul {
	border-color: var(--dark-divider-color);
}

.pricing-item.highlighted-box .pricing-item-btn .btn-default {
	background-color: var(--white-color);
	color: var(--primary-color);
}

.pricing-item.highlighted-box .pricing-item-btn .btn-default:hover {
	color: var(--white-color);
}

.pricing-item.highlighted-box .pricing-item-list ul li:before {
	filter: brightness(0) invert(1);
}

.pricing-benefit-list {
	margin-top: 30px;
}

.pricing-benefit-list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 20px 60px;
}

.pricing-benefit-list ul li {
	display: inline-flex;
	align-items: center;
}

.pricing-benefit-list ul li img {
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
}

/************************************/
/***    	12. CTA Box css       ***/
/************************************/

.cta-box {
	padding: 100px 0 0;
}

.cta-box-content {
	max-width: 950px;
	margin: 0 auto;
	text-align: center;
}

.cta-box-content .section-title p {
	max-width: 740px;
	margin-left: auto;
	margin-right: auto;
}

.cta-box-image {
	max-width: 1650px;
	margin: 0 auto;
	padding: 0 30px;
	margin-top: 30px;
}

.cta-box-image figure {
	display: block;
	border-radius: 20px 20px 0 0;
}

.cta-box-image img {
	width: 100%;
	aspect-ratio: 1 / 0.29;
	object-fit: cover;
	border-radius: 20px 20px 0 0;
}

/************************************/
/***    	13. Our Faqs css      ***/
/************************************/



@media(max-width: 1400px) and (min-width: 992px) {
	.our-faqs .section-title h2 {
		font-size: 45px;
	}

}

.faqs-content {
	position: sticky;
	top: 20px;
}

.accordion-button:focus {
	box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.faq-accordion .accordion-item {
	border-radius: 10px;
	margin-bottom: var(--bs-gutter-x);
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	border: transparent;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3em;
	background: var(--accent-color);
	color: var(--white-color);
	padding: 18px 60px 18px 30px;
	transition: all 0.05s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed {
	background-color: var(--secondary-color);
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body {
	background: var(--accent-color);
	border-top: 1px solid var(--dark-divider-color);
	padding: 18px 30px 26px;
}

.faq-accordion .accordion-item .accordion-body p {
	color: var(--white-color);
	margin: 0;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '';
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%) rotate(180deg);
	height: 24px;
	width: 24px;
	background-image: url('../images/icon-paw.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item :not(.accordion-button.collapsed)::after {
	transform: translateY(-50%) rotate(0);
	filter: brightness(0) invert(1);
}

/************************************/
/***   14. Our Testimonials css   ***/
/************************************/

.our-testimonial {
	padding: 100px 0;
}

.testimonial-rating-box {
	background: var(--accent-color);
	border-radius: 20px;
	padding: 40px;
	text-align: center;
	height: 100%;
}

.testimonial-rating-box .satisfy-client-images {
	justify-content: center;
}

.testimonial-rating-counter {
	margin-top: 20px;
}

.testimonial-rating-counter h2 {
	font-size: 70px;
	color: var(--white-color);
}

.testimonial-rating-counter h2 sub {
	font-size: 24px;
	bottom: 0;
}

.testimonial-rating-star i {
	font-size: 20px;
	color: var(--white-color);
	margin-top: 12px;
}

.testimonial-rating-counter h3 {
	color: var(--white-color);
	margin: 10px 0 0;
	font-size: 20px;
}

.testimonial-rating-counter-content {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.testimonial-rating-counter-content h3 {
	font-size: 18px;
	line-height: 1.3em;
	color: var(--white-color);
}

.testimonial-slider .swiper-wrapper {
	cursor: none;
}

.testimonial-item {
	background: var(--bg-color);
	border-radius: 20px;
	min-height: 430px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 40px;
}

.testimonial-item-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
}

.testimonial-item-quote img {
	width: 100%;
	max-width: 40px;
}

.testimonial-item-rating i {
	font-size: 20px;
	color: var(--accent-color);
}

.testimonial-item-content p {
	font-size: 20px;
	font-weight: 500;
	margin: 0;
}

.testimonials-author-content {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.testimonials-author-content h3 {
	font-size: 20px;
}

.testimonials-author-content p {
	margin: 10px 0 0;
}

.our-testimonial .section-footer-text {
	margin-top: 60px;
}

/************************************/
/***   	  15. Our Blogs css       ***/
/************************************/


.post-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image {
	position: relative;
	margin-bottom: 20px;
}

.post-featured-image a {
	cursor: none;
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.post-featured-image figure {
	display: block;
}

.post-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.724;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.08);
}

.post-item-tags {
	position: absolute;
	top: 30px;
	left: 30px;
	z-index: 1;
}

.post-item-tags a {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.25em;
	text-transform: capitalize;
	color: var(--white-color);
	display: inline-block;
	background-color: var(--divider-color);
	border-radius: 100px;
	backdrop-filter: saturate(100%) blur(20px);
	-webkit-backdrop-filter: saturate(100%) blur(20px);
	padding: 8px 15px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.post-item-tags a:hover {
	background-color: var(--accent-color);
}

.post-item-content {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.post-item-content h2 {
	font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h2 a {
	display: inline-block;
	color: inherit;
}

.our-blog-item {
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	min-height: 315px;
	height: calc(100% - 30px);
	margin-bottom: var(--bs-gutter-x);
	padding: 25px 20px;
	line-height: 1.2em;
}

.our-blog-item_bg {
	max-height: 315px;
	width: 100%;
	height: calc(100% - 30px);
	overflow: hidden;
	padding: 0;
}

.our-blog_post-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* картинка заполняет блок по меньшей стороне */
	object-position: center;
	display: block;
}

.our-blog_post-link {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
}

.our-blog_post-link-icon {
	position: absolute;
	top: 25px;
	right: 20px;
	z-index: 2;
}

.our-blog_post-title {
	font-size: 21px;
	font-weight: 700;
}

.our-blog-desc {
	max-width: 700px;
	font-size: 15px;
}

@media(max-width: 991px) {
	.our-blog-item {
		min-height: 230px;
	}
}

/************************************/
/***   	   16. Footer css         ***/
/************************************/

.main-footer {
	padding: 35px 0 0;
}

.main-footer a,
.main-footer * {
	color: var(--text-color);
	font-size: 14px;
}

.main-footer a {
	text-transform: uppercase;
}

.main-footer a:hover {
	text-decoration: underline;
}

.main-footer p {
	margin-bottom: 6px;
}

.main-footer ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.main-footer ul li:not(:last-child) {
	margin-bottom: 6px;
}

.main-footer .row {
	row-gap: var(--bs-gutter-x);
}

.footer-title-wrap {
	padding: 0 0 30px 0;
	text-align: center;
	border-bottom: 1px solid black;
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
}

.footer-title {
	font-size: 37px;
	line-height: 1.1em;
	font-weight: 500;
	color: #B8B8B8;
	max-width: 700px;
}

.footer-site-title {
	display: block;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 30px;
	line-height: 1.2em;
}

.footer-copyright-wrap {
	display: flex;
	justify-content: space-between;
	padding: 20px 0;
	border-top: 1px solid black;
	margin-top: 40px;
}

.footer-copyright-wrap .footer-copyright {
	color: var(--text-color);
}

.footer-copyright-wrap *,
.footer-copyright-wrap a {
	color: #B8B8B8;
}

.footer-contact-list,
.footer-links-box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
}

.footer-links-box {
	gap: 30px;
	height: 100%;
}

.footer-about {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.footer-contact-list {
	flex: 1;
}

.footer-about-title {
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 3px;
}
a.fc-1{
	text-transform: unset;
	font-size: 13px;
}
@media(max-width: 991px) {
	.footer-copyright-wrap {
		flex-wrap: wrap;
		justify-content: end;
	}

	.fc-1 {
		width: 50%;
		order: 2;
		margin-bottom: 0 !important;
	}

	.fc-2 {
		width: 50%;
		order: 1;
		margin-bottom: 0 !important;
	}

	.fc-3 {
		width: 50%;
		order: 3;
		margin-bottom: 0 !important;
	}
}

@media(max-width: 767px) {
	.footer-title {
		font-size: 21px;
	}

	.main-footer .row {
		row-gap: 20px;
	}

	.footer-links-box {
		gap: 15px;
		margin-top: 10px;
	}

	.footer-contact-list {
		gap: 0;
	}

	.main-footer ul li:not(:last-child) {
		margin-bottom: 10px;
	}

	.footer-copyright {
		padding-right: 15px;
	}

	.footer-copyright-wrap *,
	.footer-copyright-wrap a {
		font-size: 12px;
	}

}

@media(max-width: 389px) {

	.main-footer a,
	.main-footer * {
		font-size: 13px;
	}

	.footer-copyright-wrap *,
	.footer-copyright-wrap a {
		font-size: 12px;
	}
}

/************************************/
/***   	17. About Us Page css     ***/
/************************************/

.page-header {
	position: relative;
	padding: 150px 0 120px;
	margin-top: 10px;
	overflow: hidden;
	height: calc(100svh - 20px);
	max-height: 1000px;
	background-image: var(--bg-mobile);
	background-size: cover;
	background-position: 60% bottom;
	background-repeat: no-repeat;
	width: calc(100% - 20px);
}


.page-header .container {
	position: relative;
	z-index: 2;
	height: 100%;
}

.page-header-box {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: start;
	gap: 20px;
	max-width: 900px;
}

.page-header-text {
	color: white;
}

.page-header-btn-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
}

.page-header-box .btn,
.page-header-box .btn span {
	width: fit-content;
	color: var(--text-color);
}

.page-header-box a {
	text-transform: uppercase;
	line-height: 20px;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 62px;
	font-weight: 600;
	line-height: 1.1em;
	margin-bottom: 10px;
	cursor: none;
	color: white;
	text-transform: uppercase;
}

.page-header-text {
	line-height: 1.25em;
	font-size: 14px;
	margin-bottom: 20px;
	max-width: 650px;
}

@media(min-width: 768px) {
	.page-header-box {
		justify-content: end;
	}

	.page-header {
		background-image: var(--bg-desktop);
		background-position: right 99%;
		padding: 60px 0 60px;
	}

	.page-header-text {
		font-size: 16px;

	}
}

@media(min-width: 992px) {
	.page-header {
		height: calc(100vh - 40px);
		margin-top: 20px;
		width: calc(100% - 40px);
	}

	.hero {
		height: calc(100vh - 40px);
		margin-top: 20px;
		width: calc(100% - 40px);
		display: flex;
		align-items: center;
	}
}

.page-header-box ol {
	justify-content: center;
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.our-approach {
	padding: 100px 0;
}

.approach-item {
	position: relative;
	margin-bottom: 30px;
}

.approach-image figure {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.approach-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.27;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.6s ease-in-out;
}

.approach-item:hover .approach-image figure img {
	transform: scale(1.06);
}

.approach-item-body {
	position: absolute;
	bottom: 10px;
	left: 10px;
	right: 10px;
	background: var(--white-color);
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.approach-item:hover .approach-item-body {
	bottom: 15px;
}

.approach-item-body .icon-box {
	margin-bottom: 20px;
}

.approach-item-body .icon-box img {
	width: 100%;
	max-width: 50px;
}

.approach-item-content h3 {
	font-size: 20px;
}

.approach-item-content p {
	margin: 10px 0 0 0;
}

.our-experties {
	padding: 100px 0;
}

.experties-body-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.experties-skills-list {
	width: calc(70% - 15px);
}

.skills-progress-bar {
	margin-bottom: 30px;
}

.skills-progress-bar:last-child {
	margin-bottom: 0;
}

.skills-progress-bar .skill-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
	font-size: 20px;
	font-weight: 600;
	line-height: normal;
	color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress {
	position: relative;
	width: 100%;
	height: 10px;
	background: var(--secondary-color);
	border-radius: 100px;
	overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 100px;
}

.experties-btn {
	margin-top: 60px;
}

.our-experties-image-box {
	position: relative;
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
}

.our-experties-image {
	padding-right: 80px;
}

.our-experties-image figure {
	display: block;
	border-radius: 10px 10px 0 0;
}

.our-experties-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.35;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}

.experties-customer-box {
	position: absolute;
	bottom: 60px;
	right: 0;
	width: 220px;
	background: var(--white-color);
	border-radius: 10px;
	padding: 20px;
	z-index: 1;
}

.experties-customer-box .satisfy-client-content p {
	color: var(--primary-color);
	font-weight: 600;
	margin: 10px 0 0;
}

.experties-customer-box .satisfy-client-image {
	border-color: var(--white-color);
}

.our-team {
	padding: 100px 0;
}

.team-item {
	position: relative;
	background: var(--secondary-color);
	border-radius: 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px 30px 0;
	overflow: hidden;
}

.team-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.team-item-content h3 a {
	color: inherit;
}

.team-item-content p {
	margin: 10px 0 0;
}

.team-item-image figure {
	display: block;
	border-radius: 20px 20px 0 0;
}

.team-item-image img {
	width: 100%;
	max-width: 290px;
	aspect-ratio: 1 / 1.08;
	object-fit: cover;
	border-radius: 20px 20px 0 0;
}

.team-social-list {
	position: absolute;
	right: 30px;
	bottom: 30px;
	left: 30px;
	transform: translateY(30px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-social-list {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.team-social-list ul {
	display: flex;
	justify-content: center;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.team-social-list ul li a {
	width: 40px;
	height: 40px;
	color: var(--accent-color);
	background: var(--bg-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-list ul li:hover a {
	background: var(--accent-color);
	color: var(--white-color);
}

.team-social-list ul li a i {
	font-size: 20px;
	color: inherit;
}

.what-we-do {
	padding: 100px 0;
}

.what-we-do-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.what-we-do-list {
	width: calc(65% - 15px);
}

.what-we-do-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.what-we-do-list ul li {
	position: relative;
	margin-bottom: 20px;
	padding-left: 30px;
	line-height: 1.5em;
}

.what-we-do-list ul li:last-child {
	margin-bottom: 0;
}

.what-we-do-list ul li:before {
	content: '';
	position: absolute;
	top: 1px;
	left: 0;
	height: 20px;
	width: 20px;
	background: url('../images/icon-paw.svg') no-repeat;
	background-position: center center;
	background-size: cover;
}

.what-we-do-body .contact-us-circle {
	width: calc(35% - 15px);
}

.what-we-do-btn {
	margin-top: 40px;
}

.what-we-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.what-we-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	width: calc(50% - 15px);
	min-height: 300px;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
}

.what-we-item-header .icon-box {
	margin-bottom: 20px;
}

.what-we-item-header .icon-box img {
	width: 100%;
	max-width: 50px;
}

.what-we-item-content h3 {
	font-size: 20px;
}

.what-we-item-content p {
	margin: 10px 0 0;
}

.what-we-item-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.what-we-item-list ul li {
	position: relative;
	border: 1px solid var(--divider-color);
	font-size: 16px;
	color: var(--primary-color);
	padding: 10px 15px 10px 45px;
	border-radius: 100px;
}

.what-we-item-list ul li::before {
	content: '';
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	background: url('../images/icon-paw.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 50%;
	width: 20px;
	height: 20px;
}

/************************************/
/***   	18. Services Page css     ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

.page-services .service-item {
	background-color: var(--secondary-color);
}

.services {
	max-width: 900px;
	margin: auto
}

/************************************/
/***   	19. Services Single css   ***/
/************************************/

.page-service-single {
	padding: 100px 0;
}

.page-single-sidebar {
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.page-category-list {
	background: var(--secondary-color);
	border-radius: 20px;
	margin-bottom: 60px;
	overflow: hidden;
}

.page-category-list h3 {
	font-size: 20px;
	color: var(--white-color);
	background: var(--accent-color);
	padding: 25px 30px;
}

.page-category-list ul {
	list-style: none;
	margin: 0;
	padding: 30px;
}

.page-category-list ul li {
	line-height: 1.5em;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 25px;
	margin-bottom: 25px;
}

.page-category-list ul li:last-child {
	border-bottom: none;
	margin: 0;
	padding: 0;
}

.page-category-list ul li a {
	position: relative;
	display: block;
	text-transform: capitalize;
	color: var(--text-color);
	padding-right: 25px;
	transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover {
	color: var(--primary-color);
}

.page-category-list ul li a::before {
	content: '';
	position: absolute;
	top: 2px;
	right: 0;
	background: url('../images/arrow-accent.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 20px;
	height: 20px;
	transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover::before {
	transform: rotate(45deg);
	filter: brightness(0) invert(0);
}

.sidebar-cta-box {
	position: relative;
}

.sidebar-cta-image figure {
	display: block;
	border-radius: 20px;
}

.sidebar-cta-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.223;
	object-fit: cover;
	border-radius: 20px;
}

.sidebar-cta-body {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	text-align: center;
	background-color: var(--dark-divider-color);
	backdrop-filter: saturate(100%) blur(20px);
	-webkit-backdrop-filter: saturate(100%) blur(20px);
	border-radius: 20px;
	padding: 30px;
}

.sidebar-cta-body .icon-box {
	margin-bottom: 20px;
}

.sidebar-cta-body .icon-box img {
	width: 100%;
	max-width: 167px;
}

.sidebar-cta-content {
	margin-bottom: 20px;
}

.sidebar-cta-content h3 {
	font-size: 20px;
	line-height: 1.3em;
	color: var(--white-color);
}

.page-single-image {
	margin-bottom: 30px;
}

.page-single-image figure {
	display: block;
	border-radius: 20px;
}

.page-single-image img {
	width: 100%;
	aspect-ratio: 1 / 0.568;
	object-fit: cover;
	border-radius: 20px;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry h2 {
	font-size: 52px;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.service-entry h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.service-entry ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-entry ul li {
	position: relative;
	line-height: 1.5em;
	margin-bottom: 10px;
	padding-left: 30px;
}

.service-entry ul li:last-child {
	margin-bottom: 0;
}

.service-entry ul li::before {
	content: '';
	position: absolute;
	top: 1px;
	left: 0;
	height: 20px;
	width: 20px;
	background: url('../images/icon-paw.svg') no-repeat;
	background-position: center center;
	background-size: cover;
}

.health-checkup-box,
.why-checkup-important-box,
.pet-wellness-box {
	margin-top: 60px;
}

.health-checkup-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.health-checkup-item {
	width: calc(50% - 15px);
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

.health-checkup-item .icon-box {
	margin-bottom: 40px;
}

.health-checkup-item-content ul {
	margin-top: 30px;
}

.why-checkup-important-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.why-checkup-important-list ul li {
	position: relative;
	width: calc(50% - 10px);
	margin: 0;
}

.service-entry-video-box {
	position: relative;
	margin-top: 40px;
}

.service-entry-video-image figure {
	position: relative;
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.service-entry-video-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	border-radius: 20px;
	opacity: 50%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.service-entry-video-image img {
	width: 100%;
	aspect-ratio: 1 / 0.464;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.6s ease-in-out;
}

.service-entry-video-box:hover .service-entry-video-image img {
	transform: scale(1.05);
}

.service-entry-video-box .service-entry-video-circle {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 1;
}

.service-entry-video-box .service-entry-video-circle a {
	display: block;
	cursor: none;
	border-radius: 50%;
}

.service-entry-video-box .service-entry-video-circle a img {
	width: 100%;
	max-width: 140px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.service-entry-video-box .service-entry-video-circle a:hover img {
	animation-play-state: paused;
}

.pet-wellness-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.pet-wellness-item {
	width: calc(25% - 22.5px);
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 20px;
	transition: all 0.4s ease-in-out;
}

.pet-wellness-item:hover {
	background-color: var(--accent-color);
}

.pet-wellness-item .icon-box {
	margin-bottom: 40px;
}

.pet-wellness-item .icon-box img {
	width: 100%;
	max-width: 40px;
	transition: all 0.4s ease-in-out;
}

.pet-wellness-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.pet-wellness-item-content h3 {
	font-size: 30px;
	transition: all 0.4s ease-in-out;
}

.pet-wellness-item-content p {
	transition: all 0.4s ease-in-out;
	margin: 0;
}

.pet-wellness-item:hover .pet-wellness-item-content h3,
.pet-wellness-item:hover .pet-wellness-item-content p {
	color: var(--white-color);
}

/************************************/
/***   	20. Blog Archive css      ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-pagination {
	margin-top: 30px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 600;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--accent-color);
	color: var(--white-color);
}

/************************************/
/***   	21. Blog Single css       ***/
/************************************/


.page-single-post {
	padding: 100px 0;
}

.post-single-meta ol li {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child {
	margin-right: 0;
}

.post-single-meta ol li i {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 5px;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 20px;
}

.post-content {
	width: 100%;
	max-width: 1250px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 700;
	line-height: 1.1em;
	margin: 0 0 0.4em;
}

.post-entry h1 {
	font-size: 80px;
}

.post-entry h2 {
	font-size: 52px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 20px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	color: var(--text-color);
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: var(--accent-color) url('../images/icon-blockquote.svg');
	background-repeat: no-repeat;
	background-position: 30px 30px;
	background-size: 45px;
	border-radius: 20px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 20px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	line-height: 1em;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 10px;
	padding: 12px 20px;
	transition: all 0.4s ease-in-out;
}

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

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	transition: all 0.4s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/***   	22. Products Page css     ***/
/************************************/

.page-products {
	padding: 100px 0 70px;
}

.page-products .product-item {
	border: 1px solid var(--divider-color);
}

/************************************/
/***   	23. Product Single css    ***/
/************************************/

.page-product-single {
	padding: 100px 0 70px;
}

.product-about-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
}

.product-single-content,
.product-single-image {
	width: calc(50% - 30px);
}

.product-single-image {
	border-radius: 20px;
	overflow: hidden;
}

.product-single-image figure img {
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
}

.customer-rating-box {
	margin-bottom: 30px;
}

.customer-rating-box i {
	font-size: 18px;
	color: var(--accent-color);
	margin-right: 2px;
}

.customer-rating-box i:last-child {
	margin-right: 0;
}

.customer-rating-box span {
	font-size: 14px;
	color: var(--primary-color);
	margin-left: 5px;
}

.product-single-content h3 {
	font-size: 30px;
	margin-bottom: 20px;
}

.product-single-content h3 span {
	font-size: 20px;
	color: var(--primary-color);
	opacity: 0.3;
	text-decoration: line-through;
}

.product-single-content h2 {
	font-size: 52px;
	margin-bottom: 20px;
}

.product-single-content p {
	margin-bottom: 20px;
}

.product-single-content ul {
	list-style: disc;
	padding: 0 0 0 20px;
	margin: 0 0 20px 0;
}

.product-single-content ul li {
	line-height: 1.4em;
	margin-bottom: 12px;
}

.product-single-content ul li:last-child {
	margin-bottom: 0;
}

.product-cart-btn {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 30px;
}

.product-cart-btn input {
	display: block;
	width: 52px;
	color: var(--primary-color);
	background: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	text-align: center;
	padding: 5px;
}

.product-cart-btn input:focus-visible {
	outline: none;
}

.product-cart-btn .btn-default {
	padding: 18px 24px;
	margin-right: 0;
}

.product-cart-btn .btn-default::before {
	display: none;
}

.product-single-info {
	margin-top: 100px;
}

.product-step-nav {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.product-step-nav .nav-tabs {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border: none;
}

.product-step-nav ul li {
	width: auto;
}

.product-step-nav ul li .nav-link {
	position: relative;
	width: 100%;
	background: transparent;
	border: none;
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 700;
	line-height: 1em;
	padding: 0;
	border-radius: 0;
	margin: 0;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.product-step-nav ul li .nav-link.active,
.product-step-nav ul li .nav-link:hover {
	background: transparent;
	color: var(--accent-color);
}

.product-step-nav ul li .nav-link::before {
	content: '';
	display: block;
	position: absolute;
	top: auto;
	left: auto;
	bottom: -32px;
	right: 0;
	background: var(--accent-color);
	width: 0;
	height: 2px;
	transition: all 0.4s ease-in-out;
}

.product-step-nav ul li .nav-link.active::before,
.product-step-nav ul li .nav-link:hover:before {
	width: 100%;
	right: auto;
	left: 0;
}

.product-tab-item-box h3 {
	font-size: 20px;
	margin-top: 20px;
}

.product-tab-item-box h2 {
	font-size: 52px;
	margin-bottom: 20px;
}

.product-tab-item-box p {
	margin: 20px 0 0 0;
}

.product-tab-item-box ul {
	list-style: disc;
	padding: 0 0 0 20px;
	margin: 20px 0 0 0;
}

.product-tab-item-box ul li {
	line-height: 1.4em;
	margin-bottom: 12px;
}

.product-tab-item-box ul li:last-child {
	margin-bottom: 0;
}

.product-review-from-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

.review-form,
.customer-review-list {
	width: calc(50% - 30px);
}

.customer-review-item {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.customer-review-item:last-child {
	margin-bottom: 0;
}

.customer-review-item .icon-box {
	margin-right: 20px;
}

.customer-review-item .icon-box img {
	width: 100%;
	max-width: 60px;
	border-radius: 50%;
}

.customer-review-item-body {
	width: calc(100% - 80px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

.customer-review-item-content p {
	margin: 0 0 5px 0;
}

.customer-review-item-content p:last-child {
	margin-bottom: 0;
}

.customer-review-item-content p span {
	color: var(--primary-color);
	font-weight: 600;
}

.customer-review-item-rating i {
	color: var(--accent-color);
	font-size: 16px;
}

.review-form-content {
	margin-bottom: 30px;
}

.review-form-content h3 {
	font-size: 20px;
	margin: 0;
}

.review-form-content p {
	margin: 15px 0 0 0;
}

.review-form .form-control {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.445em;
	color: var(--text-color);
	background-color: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.review-form .form-control::placeholder {
	color: var(--text-color);
	opacity: 50%;
}

.review-form-note {
	display: flex;
	align-items: baseline;
	gap: 5px;
}

.review-form-note .form-label {
	margin: 0;
}

.review-form .btn-default {
	width: 100%;
	padding: 17px;
	margin: 20px 0 0 0;
}

.review-form .btn-default::before {
	display: none;
}

.related-products-box {
	margin-top: 100px;
}

.related-products-box .section-title {
	max-width: 700px;
	margin: 0 auto 40px;
	text-align: center;
}

.related-products-box .product-item {
	border: 1px solid var(--divider-color);
}

/************************************/
/***   	  24. Team Page css       ***/
/************************************/

.page-team {
	padding: 100px 0 70px;
}

/************************************/
/***   	25. Team Single css       ***/
/************************************/

.page-team-single {
	padding: 100px 0;
}

.team-single-image {
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 30px 30px 0;
	text-align: center;
	margin-bottom: 60px;
}

.team-single-image figure {
	display: block;
	border-radius: 20px 20px 0 0;
}

.team-single-image img {
	width: 100%;
	max-width: 390px;
	aspect-ratio: 1 / 1.08;
	object-fit: cover;
	border-radius: 20px 20px 0 0;
}

.team-member-about,
.team-experience-box,
.team-achivements,
.team-career {
	margin-bottom: 60px;
}

.team-contact-list {
	background-color: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding: 50px;
}

.team-contact-item {
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 30px;
}

.team-contact-item .icon-box {
	margin-right: 15px;
}

.team-contact-item .icon-box img {
	width: 100%;
	max-width: 30px;
}

.team-contact-item-content {
	width: calc(100% - 45px);
}

.team-contact-item-content h3 {
	font-size: 20px;
}

.team-contact-item-content p {
	margin: 10px 0 0 0;
}

.team-experience-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-content: center;
}

.team-experience-box-content,
.team-experience-image {
	width: calc(50% - 15px);
}

.team-experience-image figure {
	display: block;
	height: 100%;
	border-radius: 20px;
}

.team-experience-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.773;
	object-fit: cover;
	border-radius: 20px;
}

.team-achivements-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-achivements-item {
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 10px;
}

.team-achivements-item-image {
	margin-right: 20px;
}

.team-achivements-item-image figure {
	height: 100%;
	display: block;
	border-radius: 10px;
}

.team-achivements-item-image img {
	width: 100%;
	height: 100%;
	max-width: 100px;
	border-radius: 10px;
	aspect-ratio: 1 / 0.931;
	object-fit: cover;
}

.team-achivements-item-content {
	height: 100%;
	width: calc(100% - 120px);
	align-content: center;
}

.team-achivements-item-content h3 {
	font-size: 20px;
	margin-bottom: 20px;
}

.team-achivements-item-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.team-achivements-item-content ul li {
	position: relative;
	background: var(--white-color);
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 500;
	padding: 6px 16px 6px 42px;
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}

.team-achivements-item-content ul li::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: url('../images/icon-paw.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 50%;
	width: 16px;
	height: 16px;
	transition: all 0.4s ease-in-out;
}

.team-achivements-item-content ul li:hover::before {
	filter: brightness(0) invert(1);
}

.team-achivements-item-content ul li:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.team-career-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-career-item {
	width: calc(33.33% - 20px);
}

.team-career-item .icon-box {
	margin-bottom: 40px;
}

.team-career-item .icon-box img {
	width: 100%;
	max-width: 50px;
}

.team-career-item-content h3 {
	font-size: 20px;
}

.team-career-item-content p {
	margin: 15px 0 0;
}

.contact-us-form.team-contact-form {
	width: 100%;
	border-radius: 20px;
}

/************************************/
/***   	26. Pricing Page css      ***/
/************************************/

.page-pricing {
	padding: 100px 0;
}

/************************************/
/***  27. Testimonials Page css   ***/
/************************************/

.page-testimonials {
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
	background-color: var(--secondary-color);
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

/************************************/
/***  	28. Image Gallery css	  ***/
/************************************/

.page-gallery {
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
	cursor: none;
}

.page-gallery-box .photo-gallery figure {
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.894;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***  	29. Video Gallery css	  ***/
/************************************/

.page-video-gallery {
	padding: 100px 0 70px;
}

.video-gallery-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a {
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 20px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
	opacity: 50%;
	visibility: visible;
	transform: scale(1);
}

.video-gallery-image a::after {
	content: '\f04b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.video-gallery-image:hover a::after {
	opacity: 1;
	visibility: visible;
}

.video-gallery-image img {
	width: 100%;
	aspect-ratio: 1 / 0.894;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***  	  30. FAQs Page css		  ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.page-faqs-catagery .page-single-faqs {
	margin-bottom: 60px;
}

.page-faqs-catagery .page-single-faqs:last-child {
	margin-bottom: 0;
}

/************************************/
/***  	31. Contact Us Page css	  ***/
/************************************/

.page-contact-us {
	padding: 100px 0;
}

.contact-info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 100px;
	margin-bottom: 100px;
}

.contact-info-item {
	position: relative;
	width: calc(25% - 75px);
	display: flex;
	flex-wrap: wrap;
}

.contact-info-item:before {
	content: '';
	position: absolute;
	top: 0;
	right: -50px;
	bottom: 0;
	height: 100%;
	width: 1px;
	background-color: var(--divider-color);
}

.contact-info-item:nth-child(4n + 4):before,
.contact-info-item:last-child:before {
	display: none;
}

.contact-info-item .icon-box {
	position: relative;
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--accent-color);
	border-radius: 10px;
	margin-right: 20px;
}

.contact-info-item .icon-box:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 10px;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.contact-info-item:hover .icon-box::after {
	transform: scale(1);
}

.contact-info-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 20px;
	z-index: 1;
}

.contact-info-item-content {
	width: calc(100% - 60px);
}

.contact-info-item-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.contact-info-item-content p {
	margin: 0;
}

.contact-info-item-content p a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.contact-info-item-content p a:hover {
	color: var(--accent-color);
}

.contact-form-box {
	display: flex;
	flex-wrap: wrap;
	width: fit-content;
	margin: auto;
	padding: 35px 25px;
	border-radius: 10px;
	background: white;
	max-width: 550px;
}


.contact-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background: var(--white-color);
	border-radius: 10px;
	padding: 10px 15px;
	box-shadow: none;
	outline: none;
	border: 2px solid transparent;
}

.form-group.has-error .form-control {
	border: 2px solid var(--error-color);
}

.contact-form .form-control::placeholder {
	color: var(--text-color);
}

.google-map-iframe {
	width: 50%;
}

.google-map-iframe iframe {
	height: 100%;
	width: 100%;
}

/************************************/
/***   32. Book Appointment css   ***/
/************************************/

.book-appointment {
	padding: 100px 0;
}

.appointment-box {
	background-color: var(--secondary-color);
	border-radius: 20px;
	margin-right: 15px;
	overflow: hidden;
}

.appointment-image figure {
	display: block;
}

.appointment-image img {
	width: 100%;
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
}

.appointment-body-content {
	padding: 40px;
}

.appointment-body-content h3 {
	font-size: 20px;
}

.appointment-body-content p {
	margin: 15px 0 0;
}

.appointment-body-content ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	margin: 40px 0 0;
	padding: 0;
}

.appointment-body-content ul li {
	position: relative;
	width: calc(50% - 10px);
	line-height: 1.5em;
	padding-left: 25px;
}

.appointment-body-content ul li::before {
	content: '\f14a';
	font-family: 'FontAwesome';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	color: var(--accent-color);
}

.appointment-from .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	border: 1px solid var(--divider-color);
	background-color: transparent;
	border-radius: 10px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.appointment-from .form-control::placeholder {
	color: var(--text-color);
}

.appointment-from .form-control.form-select {
	padding: 17px 35px 17px 20px;
}

.appointment-form .form-control .form-select option {
	color: var(--text-color);
}

.appointment-from-btn .btn-default {
	width: 100%;
	padding: 18px;
	text-align: center;
}

.appointment-from-btn .btn-default::before {
	display: none;
}

/************************************/
/***    33. 404 Error Page css    ***/
/************************************/

.error-page {
	padding: 100px 0px;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 500px;
}

.error-page-content {
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 15px;
}

/************************************/
/***      34. Responsive css      ***/
/************************************/


@media only screen and (max-width: 1440px) {
	.section-title h1 {
		font-size: 48px;
	}

	.container {
		max-width: 1300px;
	}

	.hero-client-box {
		margin-top: 30px;
		padding-top: 30px;
	}

	.about-us-btn {
		margin-top: 30px;
	}

	.service-item {
		padding: 30px;
	}

	.service-cta-image figure {
		margin: 0 -40px -30px 0;
	}

	.why-choose-list {
		padding: 20px;
	}

	.intro-video-image img {
		aspect-ratio: 1 / 0.5;
	}

	.feature-item {
		padding: 30px 30px 0;
	}

	.pricing-item {
		padding: 30px;
	}

	.pricing-item-header .icon-box {
		margin-bottom: 30px;
	}

	.testimonial-rating-box,
	.testimonial-item {
		padding: 30px 25px;
	}

	.testimonials-author-content {
		padding-top: 30px;
		margin-top: 30px;
	}

	.footer-contact-links {
		max-width: 260px;
	}

	.team-item {
		padding: 30px 30px 0;
	}

	.what-we-item {
		padding: 20px;
	}

	.health-checkup-item {
		padding: 30px;
	}

	.health-checkup-item .icon-box {
		margin-bottom: 30px;
	}

	.pet-wellness-item .icon-box {
		margin-bottom: 30px;
	}

	.post-content {
		max-width: 1100px;
	}

	.team-contact-list {
		padding: 30px;
	}

	.team-contact-item {
		padding: 20px;
	}

	.contact-info-list {
		gap: 30px 50px;
	}

	.contact-info-item {
		width: calc(25% - 37.5px);
	}

	.contact-info-item:before {
		right: -25px;
	}

	.appointment-body-content {
		padding: 30px;
	}
}

@media(max-width: 1300px) {
	.main-menu ul li {
		margin: 0;
	}
}

@media only screen and (max-width: 1024px) {

	.main-menu ul li a {
		font-size: 16px;
	}

	.section-content-btn .section-btn {
		margin-top: 20px;
	}

	.section-title-content {
		margin-top: 10px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.hero-content {
		height: auto;
		margin-bottom: 30px;
	}

	.hero-image {
		height: auto;
		text-align: center;
		max-width: 680px;
		margin: 0 auto;
	}

	.about-us-image-box {
		max-width: 700px;
		margin: 0 auto 30px;
	}

	.why-choose-us-image-box {
		max-width: 700px;
		margin: 0 auto 30px;
	}

	.faqs-content {
		position: initial;
		margin-bottom: 30px;
	}

	.testimonial-rating-box {
		margin-bottom: 30px;
		height: auto;
	}

	.testimonial-rating-counter h2 {
		font-size: 55px;
	}

	.testimonial-rating-counter h2 sub {
		font-size: 20px;
	}

	.footer-newsletter-form {
		margin-top: 30px;
	}

	.our-experties-content {
		margin-bottom: 30px;
	}

	.experties-btn {
		margin-top: 30px;
	}

	.experties-customer-box {
		padding: 15px;
	}

	.what-we-do-content {
		margin-bottom: 30px;
	}

	.what-we-do-body .contact-us-circle {
		text-align: right;
	}

	.what-we-do-btn {
		margin-top: 30px;
	}

	.page-single-sidebar {
		margin: 0;
	}

	.page-category-list h3 {
		padding: 20px;
	}

	.page-category-list ul {
		padding: 20px;
	}

	.page-category-list ul li {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.page-category-list ul li a {
		padding-right: 20px;
	}

	.page-category-list ul li a::before {
		width: 18px;
		height: 18px;
	}

	.sidebar-cta-body {
		padding: 20px;
	}

	.sidebar-cta-body .icon-box {
		margin-bottom: 10px;
	}

	.sidebar-cta-body .icon-box img {
		max-width: 150px;
	}

	.health-checkup-item {
		padding: 20px;
	}

	.service-entry-video-image img {
		aspect-ratio: 1 / 0.5;
	}

	.pet-wellness-item {
		width: calc(50% - 15px);
	}

	.product-about-box {
		gap: 30px;
	}

	.product-single-content,
	.product-single-image {
		width: 100%;
	}

	.product-single-image figure img {
		aspect-ratio: 1 / 0.7;
	}

	.team-single-image {
		padding: 20px 20px 0;
	}

	.team-member-about,
	.team-experience-box,
	.team-achivements,
	.team-career {
		margin-bottom: 40px;
	}

	.team-experience-box-content,
	.team-experience-image {
		width: 100%;
	}

	.team-experience-image figure,
	.team-experience-image img {
		height: auto;
	}

	.team-experience-image img {
		aspect-ratio: 1 / 0.55;
	}

	.team-achivements-item {
		width: 100%;
	}

	.team-career-item {
		width: calc(50% - 15px);
	}

	.contact-info-item {
		width: calc(50% - 25px);
	}

	.contact-info-item:nth-child(4n + 4):before {
		display: block;
	}

	.contact-info-item:nth-child(2n + 2):before,
	.contact-info-item:last-child:before {
		display: none;
	}

	.contact-us-form,
	.google-map-iframe {
		width: 100%;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 550px;
	}

	.appointment-box {
		margin: 0 0 30px;
	}

	.appointment-body-content ul {
		margin-top: 30px;
		gap: 15px 20px;
	}
}

@media only screen and (max-width: 991px) {

	.btn-default {
		padding: 15px 50px 15px 20px;
	}

	.btn-light {
		padding: 14px 20px;
		line-height: 1em;
	}

	.btn-default::before {
		width: 34px;
		height: 34px;
		background-size: 18px auto;
	}

	header.main-header {
		top: 10px;
		padding: 10px;
	}

	header.main-header .header-sticky {
		width: 100%;
	}

	header.main-header .header-sticky.active {
		width: 100%;
		border-radius: 0;
	}

	.navbar {
		padding: 0;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.bg-section .container-fluid {
		padding: 0 15px;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h3 {
		margin-bottom: 10px;
	}

	.section-title h3::before {
		height: 18px;
		width: 18px;
	}

	.section-title h1 {
		font-size: 38px;
	}

	.section-title h2 {
		font-size: 32px;
	}

	.section-title p {
		margin-top: 10px;
	}

	.hero {
		padding: 140px 0 0;
	}

	.hero-content .section-title p {
		font-size: 16px;

	}

	.hero-client-box .satisfy-client-image figure img {
		max-width: 40px;
	}

	.hero-image img {
		margin-bottom: 0;
	}

	.about-us {
		padding: 50px 0;
	}

	.happy-customer-box {
		width: 210px;
		border-width: 10px;
	}

	.happy-customer-box-content {
		padding: 15px;
	}

	.happy-customer-box-content .satisfy-client-images {
		margin-bottom: 10px;
	}

	.happy-customer-box::before {
		right: -30px;
	}

	.happy-customer-box::after {
		bottom: -30px;
	}

	.about-experience-box {
		width: 150px;
		border-width: 10px;
	}

	.about-experience-box-content h2 {
		font-size: 45px;
	}

	.about-experience-box::before {
		top: -30px;
	}

	.about-experience-box::after {
		left: -30px;
	}

	.about-us-body-list {
		width: calc(100% - 140px);
	}

	.about-us-body-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.about-us-body-item .icon-box {
		margin-right: 15px;
	}

	.about-us-body-item .icon-box img {
		max-width: 40px;
	}

	.about-us-body-item-content {
		width: calc(100% - 55px);
	}

	.contact-us-circle img {
		max-width: 110px;
	}

	.about-us-footer {
		margin-top: 40px;
	}

	.section-footer-text {
		margin-top: 10px;
	}

	.about-us-footer-list ul {
		gap: 10px;
	}

	.section-footer-text ul li {
		font-size: 18px;
	}

	.about-us-footer-list ul li {
		padding: 8px 12px 8px 35px;
	}

	.about-us-footer-list ul li::before {
		left: 10px;
		height: 18px;
		width: 18px;
	}

	.service-item {
		padding: 20px;
		min-height: 260px;
	}

	.service-item-header {
		padding-bottom: 20px;
	}

	.service-cta-btn {
		margin-top: 20px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.personalized-caring-box .icon-box {
		margin-bottom: 15px;
	}

	.personalized-caring-box-content h2 {
		font-size: 26px;
	}

	.why-choose-body-item .icon-box {
		margin-right: 15px;
	}

	.why-choose-body-item .icon-box img {
		max-width: 40px;
	}

	.why-choose-body-item-content {
		width: calc(100% - 55px);
	}

	.why-choose-list {
		margin-top: 30px;
	}

	.why-choose-list ul li {
		margin-bottom: 15px;
		padding-left: 25px;
	}

	.why-choose-list ul li:before {
		height: 18px;
		width: 18px;
	}

	.intro-video-box .intro-video-circle a img {
		max-width: 110px;
	}

	.our-features {
		padding: 50px 0;
	}

	.feature-item {
		padding: 20px 20px 0;
		min-height: initial;
		gap: 20px;
	}

	.feature-item-header .icon-box {
		margin-bottom: 20px;
	}

	.feature-item-header .icon-box img {
		max-width: 40px;
	}

	.feature-item-content p {
		margin-top: 10px;
	}

	.feature-item-content ul {
		margin: 15px 0 0 0;
		padding: 15px 0 0 20px;
	}

	.our-product {
		padding: 50px 0;
	}

	.product-item-content {
		padding: 15px 0 5px;
	}

	.product-rating-star {
		margin-bottom: 15px;
	}

	.product-item-content p {
		margin: 5px 0 0;
	}

	.our-pricing {
		padding: 50px 0;
	}

	.pricing-item {
		padding: 20px;
	}

	.pricing-item-header .icon-box {
		margin-bottom: 20px;
	}

	.pricing-item-header .icon-box img {
		max-width: 40px;
	}

	.pricing-item-content p,
	.pricing-item-list ul {
		margin-top: 15px;
		padding-top: 15px;
	}

	.pricing-item-content h2 {
		font-size: 38px;
	}

	.pricing-item-content h2 sub {
		font-size: 18px;
	}

	.pricing-item-btn {
		margin-top: 20px;
	}

	.pricing-item-btn .btn-default {
		padding: 15px;
	}

	.pricing-item-list {
		margin-top: 20px;
	}

	.pricing-item-list ul li {
		margin-bottom: 10px;
		padding-left: 25px;
	}

	.pricing-item-list ul li::before {
		height: 18px;
		width: 18px;
	}

	.pricing-benefit-list {
		margin-top: 10px;
	}

	.pricing-benefit-list ul {
		gap: 15px 30px;
	}

	.cta-box {
		padding: 50px 0 0;
	}

	.cta-box-image {
		padding: 0;
	}


	.faq-accordion .accordion-item {
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button {
		padding: 18px 50px 18px 18px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		height: 20px;
		width: 20px;
		right: 18px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 18px;
	}

	.our-testimonial {
		padding: 50px 0;
	}

	.testimonial-rating-box,
	.testimonial-item {
		padding: 20px;
	}

	.testimonial-item {
		min-height: initial;
	}

	.testimonial-item-quote img {
		max-width: 30px;
	}

	.testimonial-rating-star i,
	.testimonial-item-rating i {
		font-size: 18px;
	}

	.testimonial-item-content p {
		font-size: 18px;
	}

	.testimonial-rating-counter-content,
	.testimonials-author-content {
		padding-top: 20px;
		margin-top: 20px;
	}

	.testimonials-author-content p {
		margin-top: 5px;
	}

	.our-testimonial .section-footer-text {
		margin-top: 40px;
	}


	.post-featured-image {
		margin-bottom: 15px;
	}

	.post-item-tags {
		top: 15px;
		left: 15px;
	}

	.post-item-tags a {
		font-size: 14px;
		padding: 6px 12px;
	}

	.post-item-content {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.main-footer {
		padding: 50px 0 0;
		margin-bottom: 0;
	}

	.about-footer-content h3 {
		font-size: 32px;
	}

	.footer-links h3 {
		margin-bottom: 20px;
	}

	.footer-links ul li {
		margin-bottom: 15px;
		padding-left: 25px;
	}

	.footer-links ul li:before {
		height: 18px;
		width: 18px;
	}

	.footer-social-links ul li {
		padding: 0;
		margin: 0;
	}

	.footer-body {
		padding-top: 30px;
		margin-top: 30px;
	}

	.footer-contact-list {
		width: 100%;
	}

	.footer-copyright-text {
		margin-top: 30px;
		padding: 30px 0;
	}

	.page-header-box h1 {
		font-size: 54px;
	}

	.our-approach {
		padding: 50px 0;
	}

	.approach-item-body {
		padding: 20px;
	}

	.approach-item-body .icon-box img {
		max-width: 40px;
	}

	.our-experties {
		padding: 50px 0;
	}

	.skills-progress-bar {
		margin-bottom: 20px;
	}

	.our-team {
		padding: 50px 0;
	}

	.what-we-do {
		padding: 50px 0;
	}

	.what-we-do-list ul li {
		margin-bottom: 15px;
	}

	.what-we-item-header .icon-box img {
		max-width: 40px;
	}

	.page-services {
		padding: 50px 0 20px;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.page-single-sidebar,
	.page-category-list {
		margin-bottom: 30px;
	}

	.sidebar-cta-image figure img {
		aspect-ratio: 1 / 0.9;
	}

	.page-single-image {
		margin-bottom: 20px;
	}

	.service-entry {
		margin-bottom: 40px;
	}

	.service-entry h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-entry ul li {
		padding-left: 25px;
	}

	.service-entry ul li::before {
		height: 18px;
		width: 18px;
	}

	.health-checkup-box,
	.why-checkup-important-box,
	.pet-wellness-box {
		margin-top: 40px;
	}

	.health-checkup-item .icon-box {
		margin-bottom: 20px;
	}

	.health-checkup-item-content ul {
		margin-top: 20px;
	}

	.service-entry-video-box .service-entry-video-circle a img {
		max-width: 110px;
	}

	.pet-wellness-item .icon-box {
		margin-bottom: 20px;
	}

	.pet-wellness-item-content h3 {
		font-size: 26px;
		margin-bottom: 5px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry h2 {
		font-size: 38px;
	}

	.post-entry p {
		margin-bottom: 15px;
	}

	.post-entry ol li,
	.post-entry ul li {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		background-size: 40px;
		padding: 20px 20px 20px 70px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-tags .tag-links a {
		padding: 12px 15px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.page-products {
		padding: 50px 0 20px;
	}

	.page-product-single {
		padding: 50px 0 20px;
	}

	.customer-rating-box {
		margin-bottom: 20px;
	}

	.product-single-content h3 {
		font-size: 26px;
		margin-bottom: 10px;
	}

	.product-single-content h2 {
		font-size: 38px;
		margin-bottom: 10px;
	}

	.product-single-content p {
		margin-bottom: 15px;
	}

	.product-single-content ul li {
		margin-bottom: 10px;
	}

	.product-cart-btn .btn-default {
		padding: 15px;
	}

	.product-single-info {
		margin-top: 50px;
	}

	.product-step-nav {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.product-step-nav ul li .nav-link {
		font-size: 18px;
	}

	.product-step-nav ul li .nav-link::before {
		bottom: -21px;
	}

	.product-tab-item-box h2 {
		font-size: 38px;
		margin-bottom: 10px;
	}

	.product-tab-item-box p {
		margin: 10px 0 0 0;
	}

	.review-form,
	.customer-review-list {
		width: 100%;
	}

	.customer-review-item {
		margin-bottom: 30px;
	}

	.customer-review-item-content p {
		margin: 0 0 5px 0;
	}

	.review-form .form-control {
		font-size: 16px;
		padding: 12px 15px;
	}

	.review-form .btn-default {
		padding: 15px;
	}

	.related-products-box {
		margin-top: 50px;
	}

	.related-products-box .section-title {
		margin: 0 auto 30px;
	}

	.page-team {
		padding: 50px 0 20px;
	}

	.page-team-single {
		padding: 50px 0;
	}

	.team-single-image {
		margin-bottom: 30px;
	}

	.team-contact-list {
		padding: 20px;
	}

	.team-career-item .icon-box {
		margin-bottom: 20px;
	}

	.team-career-item .icon-box img {
		max-width: 40px;
	}

	.team-career-item-content p {
		margin: 10px 0 0;
	}

	.page-pricing {
		padding: 50px 0;
	}

	.page-testimonials {
		padding: 50px 0 20px;
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-video-gallery {
		padding: 50px 0 20px;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.page-faqs-catagery .page-single-faqs {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 50px 0;
	}

	.contact-us-form {
		padding: 30px 20px;
	}

	.contact-info-list {
		margin-bottom: 50px;
	}

	.contact-form .form-control {
		padding: 12px 15px;
	}

	.book-appointment {
		padding: 50px 0;
	}

	.appointment-from .form-control {
		padding: 12px 15px;
	}

	.appointment-from .form-control.form-select {
		padding: 12px 35px 12px 15px;
	}

	.appointment-from-btn .btn-default {
		padding: 15px;
	}

	.error-page {
		padding: 50px 0px;
	}

	.error-page-image {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 767px) {
	.hero {
		background-position: center bottom;
		padding: 140px 0 180px 0;
	}

	/* .bg-section:before {
		content: '';
		position: absolute;
		display: block;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		background: linear-gradient(90deg, #055770 0%, #0b607a 55%, #0f6883 100%);
		z-index: -1;
	} */

	.section-row {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 28px;
	}

	.section-title h2 {
		font-size: 28px;
	}

	.hero-content .section-title h3 {
		font-size: 14px;
	}

	.hero-content-body {
		gap: 25px;
	}

	.video-play-button h3 {
		font-size: 16px;
	}

	.hero-client-box .satisfy-client-content {
		max-width: 100%;
	}

	.happy-customer-box {
		width: 160px;
		border-width: 10px;
	}

	.happy-customer-box-content,
	.about-experience-box-content {
		padding: 10px;
	}

	.happy-customer-box-content .satisfy-client-image figure img {
		max-width: 30px;
	}

	.satisfy-client-content p,
	.about-experience-box-content p {
		font-size: 14px;
	}

	.about-experience-box {
		width: 120px;
	}

	.about-experience-box-content h2 {
		font-size: 30px;
	}

	.about-us-body-list {
		width: 100%;
	}

	.about-us-body-item-content h3 {
		font-size: 18px;
	}

	.about-us-body-item-content p {
		margin: 5px 0 0;
	}

	.about-us-body .contact-us-circle {
		display: none;
	}

	.contact-us-circle img {
		max-width: 90px;
	}

	.section-footer-text ul li {
		font-size: 16px;
	}

	.service-item {
		min-height: 200px;
	}

	.service-item-title h3,
	.service-cta-content h3 {
		font-size: 18px;
	}

	.service-cta-box {
		gap: 20px;
	}

	.our-team .service-cta-box {
		min-height: 315px;
		padding: 30px;
	}

	.service-cta-info,
	.service-cta-image {
		width: 100%;
	}

	.service-cta-image {
		text-align: center;
	}

	.service-cta-image figure {
		margin: 0 0 -20px 0;
	}

	.why-choose-us-image-box-1 {
		margin-right: 0;
		flex-direction: column-reverse;
	}

	.why-choose-us-image-box-1 .why-choose-us-image {
		width: 100%;
	}

	.personalized-caring-box {
		width: 100%;
		margin: 0 0 20px 0;
	}

	.why-choose-us-image-box-2 {
		width: 100%;
		margin-top: 20px;
	}

	.why-choose-us-image-box-2 .why-choose-us-image figure {
		border: none;
		box-shadow: none;
	}

	.why-choose-us-image-box-2 .contact-us-circle {
		left: 50%;
		top: -10px;
		transform: translate(-50%, -50%);
	}

	.why-choose-body-item {
		width: 100%;
	}

	.why-choose-body-item-content h3 {
		font-size: 18px;
	}

	.why-choose-list {
		padding: 15px;
	}

	.why-choose-list ul li {
		margin-bottom: 10px;
	}

	.why-choose-footer {
		gap: 20px;
	}

	.about-contact-box {
		gap: 10px;
	}

	.about-contact-box .icon-box {
		height: 40px;
		width: 40px;
	}

	.about-contact-box .icon-box img {
		max-width: 20px;
	}

	.about-contact-box-content {
		width: calc(100% - 50px);
	}

	.about-contact-box-content h3 {
		font-size: 18px;
	}

	.intro-video-image img {
		aspect-ratio: 1 / 0.75;
	}

	.intro-video-box .intro-video-circle a img {
		max-width: 80px;
	}

	.feature-item-content h3 {
		font-size: 18px;
	}

	.product-rating-star i,
	.product-item-content h3 {
		font-size: 18px;
	}

	.product-item-content p span {
		margin-left: 5px;
	}

	.pricing-item-content h3,
	.pricing-item-list h3 {
		font-size: 18px;
	}

	.pricing-item-content h2 {
		font-size: 30px;
	}

	.pricing-item-content h2 sub {
		font-size: 16px;
	}

	.pricing-benefit-list {
		margin-top: 5px;
	}

	.pricing-benefit-list ul {
		gap: 10px;
	}

	.pricing-benefit-list ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

	.pricing-benefit-list ul li {
		font-size: 14px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
		padding: 14px 42px 14px 14px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		right: 14px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 14px;
	}

	.testimonial-rating-counter h2 {
		font-size: 40px;
	}

	.testimonial-rating-star i,
	.testimonial-item-rating i {
		font-size: 16px;
	}

	.testimonial-rating-counter h3,
	.testimonials-author-content h3 {
		font-size: 18px;
	}

	.testimonial-rating-counter-content h3 {
		font-size: 16px;
	}

	.testimonial-item-content p {
		font-size: 16px;
	}

	.post-item-content h2 {
		font-size: 18px;
	}

	.about-footer-content h3 {
		font-size: 28px;
	}

	.footer-links {
		max-width: 100%;
	}

	.footer-links h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links ul li {
		margin-bottom: 10px;
	}

	.footer-contact-links {
		max-width: 100%;
	}

	.footer-social-links ul li {
		margin: 0;
	}

	.footer-body {
		padding-top: 20px;
		margin-top: 20px;
	}

	.footer-contact-item {
		max-width: 100%;
	}

	.footer-contact-item h3 {
		font-size: 18px;
	}


	.footer-copyright-text {
		margin-top: 20px;
		padding: 15px 0;
	}



	.approach-item-content h3 {
		font-size: 18px;
	}

	.experties-body-content {
		gap: 20px;
	}

	.experties-skills-list {
		width: 100%;
	}

	.skills-progress-bar .skill-data .skill-title,
	.skills-progress-bar .skill-data .skill-no {
		font-size: 18px;
	}

	.our-experties-image {
		padding-right: 40px;
	}

	.experties-customer-box {
		padding: 10px;
		width: 170px;
	}

	.experties-customer-box .satisfy-client-image figure img {
		max-width: 30px;
	}

	.team-item-content p {
		margin-top: 5px;
	}

	.what-we-do-list {
		width: 100%;
	}

	.what-we-do-list ul li {
		margin-bottom: 10px;
		padding-left: 25px;
	}

	.what-we-do-list ul li:before {
		width: 18px;
		height: 18px;
	}

	.what-we-item {
		width: 100%;
		min-height: 270px;
	}

	.what-we-item-content h3 {
		font-size: 18px;
	}

	.what-we-item-content p {
		margin: 5px 0 0;
	}

	.page-category-list h3 {
		font-size: 18px;
		padding: 15px 20px;
	}

	.sidebar-cta-image figure img {
		aspect-ratio: 1 / 1.223;
	}

	.sidebar-cta-content h3 {
		font-size: 18px;
	}

	.page-single-image img {
		aspect-ratio: 1 / 0.7;
	}

	.service-entry h2 {
		font-size: 26px;
	}

	.service-entry h3 {
		font-size: 18px;
	}

	.health-checkup-item {
		width: 100%;
	}

	.why-checkup-important-list ul {
		gap: 10px;
	}

	.why-checkup-important-list ul li {
		width: 100%;
	}

	.service-entry-video-box {
		margin-top: 30px;
	}

	.service-entry-video-image img {
		aspect-ratio: 1 / 0.6;
	}

	.service-entry-video-box .service-entry-video-circle a img {
		max-width: 80px;
	}

	.pet-wellness-item-list {
		margin-top: 30px;
	}

	.pet-wellness-item-content h3 {
		font-size: 22px;
	}

	.pet-wellness-item-content p {
		font-size: 14px;
	}

	.post-single-meta ol li,
	.post-single-meta ol li i {
		font-size: 16px;
	}

	.post-image img {
		aspect-ratio: 1 / 0.7;
	}

	.post-entry blockquote {
		background-position: 15px 15px;
		padding: 60px 15px 15px 15px;
	}

	.post-entry blockquote p {
		font-size: 16px;
	}

	.post-entry h2 {
		font-size: 26px;
	}

	.tag-links {
		font-size: 18px;
	}

	.customer-rating-box i {
		font-size: 16px;
	}

	.product-single-content h3 {
		font-size: 22px;
	}

	.product-single-content h3 span {
		font-size: 18px;
	}

	.product-single-content h2 {
		font-size: 26px;
	}

	.product-step-nav .nav-tabs {
		gap: 20px;
	}

	.product-tab-item-box h2 {
		font-size: 26px;
	}

	.team-contact-list {
		gap: 20px;
	}

	.team-contact-item {
		width: 100%;
		padding: 15px;
	}

	.team-contact-item-content h3 {
		font-size: 18px;
	}

	.team-contact-item-content p {
		margin-top: 5px;
	}

	.team-achivements-item-image {
		margin-right: 15px;
	}

	.team-achivements-item-content {
		width: calc(100% - 115px);
	}

	.team-achivements-item-content h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.team-achivements-item-content ul li {
		font-size: 14px;
		padding: 6px 10px 6px 35px;
	}

	.team-achivements-item-content ul li::before {
		left: 10px;
	}

	.team-career-item {
		width: 100%;
	}

	.team-career-item-content h3 {
		font-size: 18px;
	}

	.contact-info-item {
		width: 100%;
	}

	.contact-info-item:before {
		top: auto;
		right: 0;
		bottom: -15px;
		left: 0;
		height: 1px;
		width: 100%;
	}

	.contact-info-item:nth-child(2n + 2):before {
		display: block;
	}

	.contact-info-item:last-child:before {
		display: none;
	}

	.contact-info-item-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}

	.appointment-body-content {
		padding: 20px;
	}

	.appointment-body-content h3 {
		font-size: 18px;
	}

	.appointment-body-content ul {
		margin-top: 20px;
		gap: 10px;
	}

	.appointment-body-content ul li {
		width: 100%;
	}
}

@media(max-width: 575px) {
	.page-header-box h1 {
		font-size: 30px;
	}
}

/************************************/
/***   35. Home - Version 2 css   ***/
/************************************/

.hero-prime {
	position: relative;
	background-image: url('../images/hero-bg-prime.jpg');
	padding: 235px 0 40px;
	margin-top: 20px;
	overflow: hidden;
}

.hero-prime::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 80.94%, rgba(58, 25, 22, 0.60) 94.81%), linear-gradient(0deg, transparent 81.65%, rgba(58, 25, 22, 0.60) 95%), linear-gradient(270deg, transparent 0%, rgba(58, 25, 22, 0.80) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-prime .container {
	position: relative;
	z-index: 2;
}

.hero-content-body-prime {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 25px 40px;
}

.hero-info-list-prime {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 40px;
	margin-top: 120px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 5.208vw;
}

.hero-info-item-prime {
	width: calc(33.33% - 3.472vw);
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.hero-info-item-prime .icon-box img {
	width: 100%;
	max-width: 50px;
}

.hero-info-item-content-prime {
	width: calc(100% - 70px);
}

.hero-info-item-content-prime h3 {
	color: var(--white-color);
	font-size: 20px;
}

.hero-info-item-content-prime p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.about-us-prime {
	padding: 100px 0;
}

.about-us-image-box-prime {
	position: relative;
	padding-left: 70px;
	margin-right: 40px;
}

.about-us-image-prime figure {
	display: block;
	border-radius: 20px;
}

.about-us-image-prime figure img {
	width: 100%;
	aspect-ratio: 1/1.15;
	object-fit: cover;
	border-radius: 20px;
}

.contact-us-circle-prime {
	position: absolute;
	top: 60px;
	left: 0;
	border: 10px solid var(--bg-color);
	border-radius: 50%;
	z-index: 1;
}

.contact-us-circle-prime a {
	display: block;
	border-radius: 50%;
}

.contact-us-circle-prime a img {
	width: 100%;
	max-width: 200px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.contact-us-circle-prime a:hover img {
	animation-play-state: paused;
}

.about-us-body-prime {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	justify-content: space-between;
}

.about-body-item-list-prime {
	width: calc(42% - 15px);
}

.about-body-item-prime {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 25px;
}

.about-body-item-prime:last-child {
	margin-bottom: 0;
}

.about-body-item-prime .icon-box img {
	width: 100%;
	max-width: 50px;
}

.about-body-item-content-prime {
	width: calc(100% - 70px);
}

.about-body-item-content-prime h2 {
	font-size: 40px;
}

.about-body-item-content-prime p {
	margin: 5px 0 0 0;
}

.about-body-image-box-prime {
	width: calc(58% - 15px);
	background: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 30px 0 0 30px;
}

.about-pet-care-circle-prime a {
	display: block;
	border-radius: 50%;
}

.about-pet-care-circle-prime a img {
	width: 100%;
	max-width: 90px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.about-body-image-prime {
	width: calc(100% - 100px);
}

.about-body-image-prime figure {
	display: block;
	border-radius: 10px 10px 0 0;
}

.about-body-image-prime figure img {
	width: 100%;
	aspect-ratio: 1 / 0.722;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}

.about-us-footer-prime {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	margin-top: 40px;
}

.about-us-contact-box-prime {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.about-us-contact-box-prime .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-us-contact-box-prime .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 10px;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-us-contact-box-prime:hover .icon-box::before {
	transform: scale(1) rotate(180deg);
}

.about-us-contact-box-prime .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.about-contact-content-box-prime h3 {
	font-size: 20px;
}

.about-contact-content-box-prime p {
	margin: 5px 0 0;
}

.about-contact-content-box-prime p a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.about-contact-content-box-prime p a:hover {
	color: var(--primary-color);
}

.our-services-prime {
	padding: 100px 0;
}

.service-item-prime {
	background-color: var(--bg-color);
	border-radius: 20px;
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 10px;
}

.service-item-image-prime a {
	display: block;
	border-radius: 20px;
	cursor: none;
	overflow: hidden;
}

.service-item-image-prime figure {
	display: block;
}

.service-item-image-prime img {
	width: 100%;
	aspect-ratio: 1 / 1.077;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.service-item-prime:hover .service-item-image-prime img {
	transform: scale(1.06);
}

.service-item-content-prime {
	padding: 30px 10px 20px;
}

.service-item-content-prime h2 {
	font-size: 20px;
}

.service-item-content-prime h2 a {
	color: inherit;
}

.why-choose-us-prime {
	padding: 100px 0;
}

.why-choose-us-content-prime {
	text-align: center;
}

.why-choose-us-content-prime .section-title {
	max-width: 800px;
	margin: 0 auto;
}

.why-choose-us-content-prime .section-title h2 .icon-box {
	display: inline-block;
}

.why-choose-us-content-prime .section-title h2 .icon-box img {
	width: 100%;
	max-width: 30px;
}

.why-choose-us-btn-prime {
	position: relative;
	display: inline-block;
	margin-top: 40px;
}

.why-choose-us-btn-prime::after,
.why-choose-us-btn-prime::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: -180px;
	background: url('../images/why-choose-us-arrow-prime.svg');
	background-repeat: no-repeat;
	background-size: cover;
	transform: rotate(-24deg);
	width: 84px;
	height: 95px;
	animation: arrowmove 3s infinite linear alternate;
}

@keyframes arrowmove {
	50% {
		left: -155px;
	}
}

.why-choose-us-btn-prime::before {
	left: auto;
	right: -185px;
	transform: scaleX(-1) rotate(-24deg);
	animation: arrowmove1 3s infinite linear alternate;
}

@keyframes arrowmove1 {
	50% {
		right: -155px;
	}
}

.why-choose-us-image-prime {
	text-align: center;
	margin-top: 60px;
}

.why-choose-us-image-prime figure {
	display: block;
	border-radius: 20px;
}

.why-choose-us-image-prime img {
	width: 100%;
	max-width: 780px;
	aspect-ratio: 1 / 0.51;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-us-footer-prime {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1000px;
	margin: 0 auto;
	margin-top: 60px;

}

.why-choose-footer-list-prime ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.why-choose-footer-list-prime ul li {
	position: relative;
	background: transparent;
	border: 1px solid var(--divider-color);
	font-size: 16px;
	color: var(--primary-color);
	padding: 10px 20px 10px 50px;
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}

.why-choose-footer-list-prime ul li::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: url('../images/icon-paw.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 20px;
	height: 20px;
	transition: all 0.4s ease-in-out;
}

.why-choose-footer-list-prime ul li:hover::before {
	filter: brightness(0) invert(1);
}

.why-choose-footer-list-prime ul li:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.what-we-do-prime {
	padding: 100px 0;
}

.what-we-image-box-prime {
	position: relative;
	height: 100%;
	margin-right: 15px;
}

.what-we-image-prime {
	height: 100%;
}

.what-we-image-prime figure {
	display: block;
	border-radius: 20px;
	height: 100%;
}

.what-we-image-prime figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.12;
	object-fit: cover;
	border-radius: 20px;
}

.what-we-customer-box-prime {
	position: absolute;
	left: 30px;
	bottom: 30px;
	width: 100%;
	max-width: 240px;
	background: var(--divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 30px;
}

.what-we-customer-box-prime .satisfy-client-image {
	border: 1px solid var(--white-color);
}

.what-we-customer-box-prime .satisfy-client-image figure img {
	max-width: 50px;
}

.what-we-customer-content-prime {
	margin-top: 30px;
}

.what-we-customer-content-prime h3 {
	font-size: 20px;
	line-height: 1.4em;
	color: var(--white-color);
}

.what-we-content-prime {
	height: 100%;
	align-content: center;
}

.what-we-body-prime {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.what-we-body-list-prime {
	width: calc(50% - 15px);
}

.what-we-body-item-prime {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.what-we-body-item-prime:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.what-we-body-item-prime .icon-box {
	margin-right: 15px;
}

.what-we-body-item-prime .icon-box img {
	width: 100%;
	max-width: 50px;
}

.what-we-body-item-content-prime {
	width: calc(100% - 65px);
}

.what-we-body-item-content-prime h3 {
	font-size: 20px;
}

.what-we-body-item-content-prime p {
	margin: 10px 0 0;
}

.what-we-counter-box-prime {
	width: calc(50% - 15px);
}

.what-we-counter-item-prime {
	display: flex;
	flex-wrap: wrap;
	background-color: var(--secondary-color);
	border-radius: 20px;
	margin-bottom: 30px;
	padding: 30px;
	overflow: hidden;
}

.what-we-counter-item-prime:last-child {
	margin-bottom: 0;
}

.what-we-counter-item-prime:nth-child(even) {
	flex-direction: row-reverse;
}

.what-we-counter-item-content-prime {
	width: 36%;
}

.what-we-counter-item-prime:nth-child(even) .what-we-counter-item-content-prime {
	text-align: right;
}

.what-we-counter-item-content-prime h2 {
	font-size: 40px;
}

.what-we-counter-item-content-prime p {
	margin: 10px 0 0;
}

.what-we-counter-item-image-prime {
	width: 64%;
	align-content: end;
}

.what-we-counter-item-image-prime figure {
	display: block;
	margin: -10px -100px -30px 0;
	border-radius: 10px 0 0 0;
	overflow: hidden;
}

.what-we-counter-item-prime:nth-child(even) .what-we-counter-item-image-prime figure {
	margin: -10px 0 -30px -100px;
	border-radius: 0 10px 0 0;
}

.what-we-counter-item-image-prime img {
	width: 100%;
	aspect-ratio: 1 / 0.48;
	object-fit: cover;
}

.our-benefits-prime {
	padding: 100px 0;
}

.benefit-item-prime {
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 20px;
	min-height: 440px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.benefit-item-prime .icon-box img {
	width: 100%;
	max-width: 60px;
}

.benefit-item-content-prime h3 {
	font-size: 20px;
	color: var(--white-color);
}

.benefit-item-content-prime p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.benefit-item-list-prime {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding-top: 30px;
}

.benefit-item-list-prime ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.benefit-item-list-prime ul li {
	position: relative;
	color: var(--white-color);
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.benefit-item-list-prime ul li:last-child {
	margin-bottom: 0;
}

.benefit-item-list-prime ul li::before {
	content: '\f14a';
	font-family: 'FontAwesome';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	color: var(--accent-color);
}

.our-pricing-prime {
	padding: 100px 0;
}

.pricing-item-prime {
	background-color: var(--secondary-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.pricing-item-header-prime .icon-box {
	margin-bottom: 40px;
}

.pricing-item-header-prime .icon-box img {
	width: 100%;
	max-width: 50px;
}

.pricing-item-content-prime h3 {
	font-size: 20px;
}

.pricing-item-content-prime p {
	margin: 10px 0 0 0;
}

.pricing-price-prime {
	margin-top: 30px;
}

.pricing-price-prime h2 {
	font-size: 40px;
}

.pricing-price-prime h2 sub {
	color: var(--text-color);
	font-size: 16px;
	font-weight: 400;
	bottom: 0;
}

.pricing-item-body-prime {
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.pricing-item-list-prime ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-item-list-prime ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.pricing-item-list-prime ul li:last-child {
	margin-bottom: 0;
}

.pricing-item-list-prime ul li::before {
	content: '\f14a';
	font-family: 'FontAwesome';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	color: var(--accent-color);
}

.pricing-item-btn-prime {
	margin-top: 40px;
}

.pricing-item-btn-prime .btn-default {
	text-align: center;
	width: 100%;
	padding: 18px;
}

.pricing-item-btn-prime .btn-default:before {
	display: none;
}

.our-testimonial-prime {
	padding: 100px 0;
}

.testimonial-content-list-prime ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.testimonial-content-list-prime ul li {
	position: relative;
	width: calc(50% - 10px);
	line-height: 1.5em;
	padding-left: 25px;
}

.testimonial-content-list-prime ul li::before {
	content: '\f14a';
	font-family: 'FontAwesome';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	color: var(--accent-color);
}

.testimonial-client-box-prime {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: center;
	background: var(--white-color);
	border-radius: 20px;
	padding: 30px;
	margin-top: 40px;
}

.testimonial-client-content-prime {
	width: calc(100% - 30px);
}

.testimonial-client-box-prime {
	background-color: var(--bg-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	padding: 30px;
}

.testimonial-client-content-prime {
	width: calc(100% - 150px);
}

.testimonial-client-info-prime {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-bottom: 40px;
}

.testimonial-client-info-prime .satisfy-client-image {
	border-color: var(--white-color);
}

.testimonial-client-title-prime {
	max-width: 45%;
}

.testimonial-client-title-prime h3 {
	font-size: 20px;
	line-height: 1.3em;
}

.testimonial-client-info-content-prime p {
	margin: 0;
}

.testimonial-client-circle-prime a {
	display: inline-block;
	border-radius: 50%;
}

.testimonial-client-circle-prime img {
	width: 100%;
	max-width: 120px;
	animation: infiniterotate 20s infinite linear;
}

.testimonial-client-circle-prime a:hover img {
	animation-play-state: paused;
}

.testimonial-slider-prime {
	position: relative;
	max-width: 480px;
	background: var(--bg-color);
	box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
	padding: 15px;
	border-radius: 20px;
	margin: 35px auto;
	z-index: 1;
}

.testimonial-slider-prime:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--bg-color);
	border-radius: 20px;
	transform: rotate(10deg);
	z-index: 0;
}

.testimonial-slider-prime .swiper {
	position: static;
	cursor: none;
	border-radius: 20px;
}

.testimonial-item-prime {
	position: relative;
}

.testimonial-image-prime {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.testimonial-image-prime figure {
	position: relative;
	display: block;
	height: 100%;
	border-radius: 20px;
}

.testimonial-image-prime figure:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(58, 25, 22, 0.00) -23.2%, var(--primary-color) 100%);
	border-radius: 20px;
	height: 100%;
	width: 100%;
	z-index: 0;
}

.testimonial-image-prime img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.testimonial-item-body-prime {
	position: relative;
	min-height: 570px;
	padding: 35px;
	align-content: end;
	z-index: 1;
}

.testimonial-item-content-prime span {
	display: block;
	margin-bottom: 20px;
}

.testimonial-item-content-prime span i {
	font-size: 18px;
	color: var(--accent-color);
}

.testimonial-item-content-prime p {
	color: var(--white-color);
}

.testimonial-item-content-prime p:last-child {
	margin-bottom: 0;
}

.testimonial-autor-content-prime {
	margin-top: 40px;
}

.testimonial-autor-content-prime h3 {
	font-size: 20px;
	color: var(--white-color);
}

.testimonial-autor-content-prime p {
	color: var(--white-color);
	margin: 10px 0 0 0;
}

.testimonial-slider-prime .testimonial-button-next-prime,
.testimonial-slider-prime .testimonial-button-prev-prime {
	position: absolute;
	top: 50%;
	width: 50px;
	height: 50px;
	transform: translateY(-50%);
	background-color: var(--white-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.testimonial-slider-prime .testimonial-button-next-prime {
	right: -6.771vw;
}

.testimonial-slider-prime .testimonial-button-prev-prime {
	left: -6.771vw;
}

.testimonial-slider-prime .testimonial-button-next-prime:hover,
.testimonial-slider-prime .testimonial-button-prev-prime:hover {
	background: var(--accent-color);
}

.testimonial-slider-prime .testimonial-button-next-prime::before,
.testimonial-slider-prime .testimonial-button-prev-prime::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transform: rotate(45deg);
	background: url('../images/arrow-primary.svg') no-repeat;
	background-position: center center;
	background-size: 20px auto;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider-prime .testimonial-button-prev-prime::before {
	transform: rotate(225deg);
}

.testimonial-slider-prime .testimonial-button-next-prime:hover::before,
.testimonial-slider-prime .testimonial-button-prev-prime:hover::before {
	filter: brightness(0) invert(1);
}

.main-footer-prime {
	padding: 100px 0 0;
	margin-bottom: 20px;
}

.footer-logo-prime img {
	width: 100%;
	max-width: 168px;
}

.about-footer-content-prime {
	margin-top: 30px;
}

.about-footer-content-prime p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-contact-list-prime {
	margin-top: 40px;
}

.footer-contact-item-prime {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 40px;
}

.footer-contact-item-prime:last-child {
	margin-bottom: 0;
}

.footer-contact-item-prime .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--accent-color);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-contact-item-prime .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 10px;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.footer-contact-item-prime:hover .icon-box::before {
	transform: scale(1) rotate(180deg);
}

.footer-contact-item-prime .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.footer-contact-item-prime:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.footer-item-content-prime {
	width: calc(100% - 65px);
}

.footer-item-content-prime p {
	color: var(--white-color);
	margin-bottom: 5px;
}

.footer-item-content-prime h3 {
	font-size: 20px;
	color: var(--white-color);
}

.footer-contact-item-prime h3 a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-contact-item-prime h3 a:hover {
	color: var(--accent-color);
}

.footer-links-box-prime {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px 30px;
	margin-left: 5.208vw;
}

.footer-newsletter-form-box-prime {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 40px;
}

.footer-newsletter-form-title-prime {
	width: calc(25% - 15px);
}

.footer-newsletter-form-box-prime h3 {
	color: var(--white-color);
	font-size: 20px;
}

.footer-newsletter-form-prime {
	width: calc(75% - 15px);
}

.footer-newsletter-form-box-prime .form-group {
	display: flex;
	flex-wrap: wrap;
}

.footer-newsletter-form-box-prime .form-group .form-control {
	width: calc(73% - 20px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--white-color);
	background: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: none;
	border-radius: 10px;
	padding: 12px 20px;
	margin-right: 20px;
	outline: none;
	box-shadow: none;
}

.footer-newsletter-form-box-prime .form-group .form-control::placeholder {
	color: var(--white-color);
}

.footer-newsletter-form-box-prime .form-group .btn-default {
	width: 27%;
}

.footer-links-prime {
	max-width: 35%;
}

.footer-links-prime h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 30px;
}

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

.footer-links-prime ul li {
	position: relative;
	color: var(--white-color);
	line-height: 1.5em;
	margin-bottom: 15px;
}

.footer-links-prime ul li:last-child {
	margin-bottom: 0;
}

.footer-links-prime ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-links-prime ul li a:hover {
	color: var(--accent-color);
}

.footer-link-item-prime {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.footer-link-item-prime:last-child {
	border: none;
	margin: 0;
	padding: 0;
}

.footer-link-item-prime .icon-box {
	position: relative;
	height: 40px;
	width: 40px;
	background-color: var(--accent-color);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-link-item-prime .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 10px;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.footer-link-item-prime:hover .icon-box::before {
	transform: scale(1) rotate(180deg);
}

.footer-link-item-prime .icon-box img {
	position: relative;
	width: 100%;
	max-width: 20px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.footer-link-item-prime:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.footer-link-content-prime {
	width: calc(100% - 60px);
}

.footer-link-content-prime p {
	color: var(--white-color);
	margin-bottom: 5px;
}

.footer-link-content-prime p:last-child {
	margin-bottom: 0;
}

.footer-copyright-text-prime {
	text-align: center;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding: 60px 0;
}

.footer-copyright-text-prime p {
	color: var(--white-color);
	margin-bottom: 0;
}

.callback {
	background-color: #f1f5f9;
}

.callback label {
	margin-bottom: 8px;
	margin-left: 3px;
}

.form-check .form-check-input {
	float: left;
	margin-left: 0;
	margin-top: 0;
	margin-right: 10px;
}

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

@media only screen and (max-width: 1440px) {

	.about-us-image-box-prime {
		margin-right: 20px;
	}

	.contact-us-circle-prime a img {
		max-width: 150px;
	}

	.about-body-item-prime {
		gap: 15px;
		margin-bottom: 20px;
	}

	.about-body-item-prime .icon-box img {
		max-width: 40px;
	}

	.about-body-item-content-prime {
		width: calc(100% - 55px);
	}

	.about-body-image-box-prime {
		padding: 20px 0 0 20px;
	}

	.what-we-body-item-prime {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.what-we-counter-item-prime {
		padding: 20px;
	}

	.what-we-counter-item-content-prime {
		width: 38%;
	}

	.what-we-counter-item-image-prime {
		width: 62%;
	}

	.what-we-counter-item-image-prime figure {
		margin: -10px -80px -20px 0;
	}

	.what-we-counter-item-prime:nth-child(even) .what-we-counter-item-image-prime figure {
		margin: -10px 0 -20px -80px;
	}

	.benefit-item-prime {
		min-height: 400px;
		padding: 30px;
	}

	.benefit-item-prime .icon-box img {
		max-width: 50px;
	}

	.benefit-item-list-prime {
		margin-top: 30px;
	}

	.pricing-item-prime {
		padding: 30px;
	}

	.pricing-item-header-prime .icon-box {
		margin-bottom: 30px;
	}

	.pricing-price-prime {
		margin-top: 20px;
	}

	.pricing-item-body-prime {
		margin-top: 30px;
		padding-top: 30px;
	}

	.pricing-item-btn-prime {
		margin-top: 30px;
	}

	.testimonial-client-box-prime {
		gap: 20px;
		padding: 20px;
	}

	.testimonial-client-content-prime {
		width: calc(100% - 120px);
	}

	.testimonial-client-info-prime {
		gap: 15px;
		margin-bottom: 30px;
	}

	.testimonial-client-info-prime .satisfy-client-image img {
		max-width: 44px;
	}

	.testimonial-client-title-prime {
		max-width: 50%;
	}

	.testimonial-client-circle-prime img {
		max-width: 100px;
	}

	.footer-links-box-prime {
		margin-left: 30px;
	}
}

@media only screen and (max-width: 1024px) {

	.hero-info-list-prime {
		gap: 20px;
		margin-top: 80px;
	}

	.hero-info-item-prime {
		gap: 15px;
		width: calc(33.33% - 13.33px);
	}

	.hero-info-item-prime .icon-box img {
		max-width: 40px;
	}

	.hero-info-item-content-prime {
		width: calc(100% - 55px);
	}

	.about-us-image-box-prime {
		max-width: 700px;
		margin: 0 auto 30px;
	}

	.service-item-image-prime img {
		aspect-ratio: 1 / 0.8;
	}

	.service-item-content-prime {
		padding: 20px 0 10px;
	}

	.what-we-image-box-prime {
		height: auto;
		margin: 0 0 30px;
	}

	.what-we-image-prime figure,
	.what-we-image-prime {
		height: auto;
	}

	.what-we-image-prime figure img {
		aspect-ratio: 1 / 0.8;
	}

	.what-we-customer-content-prime {
		margin-top: 20px;
	}

	.what-we-content-prime {
		height: auto;
	}

	.testimonial-content-prime {
		margin: 0 0 30px;
	}

	.testimonial-client-box-prime {
		margin-top: 30px;
	}

	.testimonial-item-body-prime {
		min-height: 520px;
	}

	.testimonial-autor-content-prime {
		margin-top: 30px;
	}

	.testimonial-autor-content-prime p {
		margin-top: 5px;
	}

	.testimonial-slider-prime .testimonial-button-prev-prime {
		left: -9.766vw;
	}

	.testimonial-slider-prime .testimonial-button-next-prime {
		right: -9.766vw;
	}

	.about-footer-prime {
		margin-bottom: 40px;
	}

	.about-footer-content-prime {
		margin-top: 20px;
	}

	.main-footer-prime {
		padding-left: 10px;
		padding-right: 10px;
	}

	.footer-contact-list-prime {
		margin-top: 30px;
	}

	.footer-contact-item-prime {
		margin-bottom: 30px;
	}

	.footer-links-box-prime {
		margin-left: 0;
	}

	.footer-link-item-prime {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
}

@media only screen and (max-width: 991px) {

	.hero-prime {
		padding: 140px 0 30px;
		margin-top: 0;
	}

	.hero-info-list-prime {
		margin-top: 40px;
	}

	.hero-info-item-prime {
		width: calc(50% - 10px);
	}

	.hero-info-item-content-prime p {
		margin: 5px 0 0;
	}

	.about-us-prime {
		padding: 50px 0;
	}

	.contact-us-circle-prime {
		border-width: 5px;
	}

	.contact-us-circle-prime a img {
		max-width: 120px;
	}

	.about-body-item-content-prime h2 {
		font-size: 34px;
	}

	.about-pet-care-circle-prime a img {
		max-width: 80px;
	}

	.about-body-image-prime {
		width: calc(100% - 90px);
	}

	.about-us-contact-box-prime .icon-box {
		height: 44px;
		width: 44px;
	}

	.about-us-contact-box-prime .icon-box img {
		max-width: 22px;
	}

	.about-contact-content-box-prime p {
		margin-top: 2px;
	}

	.our-services-prime {
		padding: 50px 0;
	}

	.why-choose-us-prime {
		padding: 50px 0;
	}

	.why-choose-us-image-prime,
	.why-choose-us-footer-prime {
		margin-top: 30px;
	}

	.why-choose-footer-list-prime ul {
		gap: 10px;
	}

	.why-choose-footer-list-prime ul li {
		padding: 8px 12px 8px 35px;
	}

	.why-choose-footer-list-prime ul li::before {
		left: 10px;
		height: 18px;
		width: 18px;
	}

	.what-we-do-prime {
		padding: 50px 0;
	}

	.what-we-customer-box-prime {
		padding: 20px;
		left: 20px;
		bottom: 20px;
	}

	.what-we-body-item-prime .icon-box img {
		max-width: 40px;
	}

	.what-we-body-item-content-prime {
		width: calc(100% - 55px);
	}

	.what-we-counter-item-content-prime h2 {
		font-size: 34px;
	}

	.what-we-counter-item-content-prime p {
		margin: 5px 0 0;
	}

	.our-benefits-prime {
		padding: 50px 0;
	}

	.benefit-item-prime {
		min-height: 350px;
		padding: 20px;
	}

	.benefit-item-list-prime {
		margin-top: 20px;
		padding-top: 20px;
	}

	.benefit-item-list-prime ul li {
		margin-bottom: 10px;
	}

	.our-pricing-prime {
		padding: 50px 0;
	}

	.pricing-item-prime {
		padding: 20px;
	}

	.pricing-item-header-prime .icon-box {
		margin-bottom: 20px;
	}

	.pricing-item-header-prime .icon-box img {
		max-width: 40px;
	}

	.pricing-price-prime h2 {
		font-size: 34px;
	}

	.pricing-item-body-prime {
		margin-top: 20px;
		padding-top: 20px;
	}

	.pricing-item-list-prime ul li {
		margin-bottom: 10px;
	}

	.pricing-item-btn-prime .btn-default {
		padding: 15px;
	}

	.our-testimonial-prime {
		padding: 50px 0;
	}

	.testimonial-content-list-prime ul {
		gap: 10px 20px;
	}

	.testimonial-client-info-prime {
		margin-bottom: 20px;
	}

	.testimonial-item-body-prime {
		padding: 25px;
	}

	.testimonial-item-content-prime span {
		margin-bottom: 10px;
	}

	.main-footer-prime {
		padding: 50px 0 0;
		margin-bottom: 0;
	}

	.footer-contact-item-prime {
		margin-bottom: 20px;
	}

	.footer-links-box-prime {
		gap: 30px;
	}

	.footer-newsletter-form-box-prime {
		gap: 15px;
		padding-bottom: 30px;
	}

	.footer-newsletter-form-title-prime {
		width: calc(25% - 7.5px);
	}

	.footer-newsletter-form-box-prime h3 {
		font-size: 18px;
	}

	.footer-links-prime {
		max-width: 38%;
	}

	.footer-links-prime h3 {
		margin-bottom: 20px;
	}

	.footer-links-prime ul li {
		margin-bottom: 10px;
	}

	.footer-copyright-text-prime {
		margin-top: 30px;
		padding: 30px 0;
	}
}

@media only screen and (max-width: 767px) {

	.hero-info-list-prime {
		margin-top: 30px;
		padding-top: 30px;
	}

	.hero-info-item-prime {
		width: 100%;
	}

	.hero-info-item-content-prime h3 {
		font-size: 18px;
	}

	.about-us-image-box-prime {
		padding-left: 30px;
	}

	.about-us-image-box-prime .contact-us-circle-prime {
		top: 30px;
	}

	.contact-us-circle-prime a img {
		max-width: 90px;
	}

	.about-body-item-list-prime,
	.about-body-image-box-prime {
		width: 100%;
	}

	.about-body-item-content-prime h2 {
		font-size: 28px;
	}

	.about-contact-content-box-prime h3 {
		font-size: 18px;
	}

	.service-item-content-prime h2 {
		font-size: 18px;
	}

	.why-choose-us-btn-prime {
		margin-top: 30px;
	}

	.why-choose-us-btn-prime::after,
	.why-choose-us-btn-prime::before {
		display: none;
	}

	.what-we-image-prime figure img {
		aspect-ratio: 1 / 1.1;
	}

	.what-we-customer-box-prime {
		padding: 15px;
		left: 15px;
		bottom: 15px;
	}

	.what-we-customer-content-prime h3 {
		font-size: 18px;
	}

	.what-we-body-list-prime {
		width: 100%;
	}

	.what-we-counter-box-prime {
		width: 100%;
	}

	.what-we-counter-item-prime {
		margin-bottom: 20px;
	}

	.what-we-counter-item-content-prime h2 {
		font-size: 28px;
	}

	.benefit-item-content-prime h3 {
		font-size: 18px;
	}

	.pricing-item-content-prime h3 {
		font-size: 18px;
	}

	.pricing-price-prime h2 {
		font-size: 28px;
	}

	.testimonial-content-list-prime ul li,
	.testimonial-client-content-prime {
		width: 100%;
	}

	.testimonial-client-info-prime {
		margin-bottom: 10px;
	}

	.testimonial-client-title-prime {
		max-width: 100%;
	}

	.testimonial-client-title-prime h3 {
		font-size: 18px;
	}

	.testimonial-client-circle-prime {
		margin: 0 auto;
	}

	.testimonial-slider-prime {
		margin: 0 0 70px;
		padding: 10px;
	}

	.testimonial-slider-prime:before {
		display: none;
	}

	.testimonial-item-body-prime {
		padding: 20px;
		min-height: 400px;
	}

	.testimonial-item-content-prime span i {
		font-size: 16px;
	}

	.testimonial-autor-content-prime {
		margin-top: 20px;
	}

	.testimonial-autor-content-prime h3 {
		font-size: 18px;
	}

	.testimonial-btn-prime {
		position: absolute;
		bottom: -70px;
		display: flex;
		left: 50%;
		gap: 15px;
		transform: translateX(-50%);
	}

	.testimonial-slider-prime .testimonial-button-next-prime,
	.testimonial-slider-prime .testimonial-button-prev-prime {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		right: auto;
		transform: none;
		width: 44px;
		height: 44px;
	}

	.testimonial-slider-prime .testimonial-button-next-prime::before,
	.testimonial-slider-prime .testimonial-button-prev-prime::before {
		background-size: 18px auto;
	}

	.about-footer-prime {
		margin-bottom: 30px;
	}

	.footer-contact-list-prime {
		margin-top: 20px;
	}

	.footer-contact-item-prime .icon-box {
		height: 44px;
		width: 44px;
	}

	.footer-contact-item-prime .icon-box img {
		max-width: 22px;
	}

	.footer-item-content-prime {
		width: calc(100% - 59px);
	}

	.footer-item-content-prime h3 {
		font-size: 18px;
	}

	.footer-newsletter-form-title-prime {
		width: 100%;
	}

	.footer-newsletter-form-box-prime h3 {
		font-size: 18px;
	}

	.footer-newsletter-form-prime {
		width: 100%;
	}

	.footer-newsletter-form-box-prime .form-group .form-control {
		width: calc(100% - 63px);
		margin: 0 15px 0 0;
	}

	.footer-newsletter-form-box-prime .form-group .btn-default {
		width: 48px;
		height: 48px;
		font-size: 0;
		padding: 0;
	}

	.footer-links-prime {
		max-width: 100%;
	}

	.footer-links-prime h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-copyright-text-prime {
		padding: 15px 0;
	}
}

/************************************/
/***   36. Home - Version 3 css   ***/
/************************************/

.hero-gold {
	position: relative;
	background-image: url('../images/hero-bg-image-gold.jpg');
	padding: 275px 0 160px;
	margin-top: 20px;
	overflow: hidden;
}

.hero-gold::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(58, 25, 22, 0.00) -26.09%, var(--primary-color) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-gold .container {
	position: relative;
	z-index: 2;
}

.hero-content-gold .section-title p {
	max-width: 740px;
	font-size: 18px;
}

.hero-body-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 25px 50px;
}

.video-play-button-gold {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 20px;
	z-index: 1;
}

.video-play-button-gold a {
	position: relative;
	height: 40px;
	width: 40px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

.video-play-button-gold:hover a {
	background: var(--secondary-color);
}

.video-play-button-gold a.bg-effect:before,
.video-play-button-gold a.bg-effect:after {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 100%;
	height: 100%;
	border: 32px solid var(--white-color);
	opacity: 50%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming-gold 1.2s infinite linear;
}

.video-play-button-gold a.bg-effect:after {
	animation-delay: .3s;
}

@keyframes border-zooming-gold {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button-gold a i {
	font-size: 14px;
	color: var(--white-color);
	margin-left: 2px;
	transition: all 0.3s ease-in-out;
}

.video-play-button-gold:hover a i {
	color: var(--primary-color);
}

.video-play-button-gold h3 {
	font-size: 16px;
	color: var(--white-color);
}

.hero-counter-list-gold {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 30px 70px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.hero-counter-item-gold {
	position: relative;
	max-width: 135px;
}

.hero-counter-item-gold::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -35px;
	background: var(--dark-divider-color);
	width: 1px;
	height: 100%;
}

.hero-counter-item-gold:last-child::before {
	display: none;
}

.hero-counter-item-gold h2 {
	font-size: 40px;
	color: var(--white-color);
}

.hero-counter-item-gold p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.contact-us-circle-gold {
	text-align: center;
}

.contact-us-circle-gold a {
	display: inline-block;
	border-radius: 50%;
}

.contact-us-circle-gold a img {
	width: 100%;
	max-width: 150px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.contact-us-circle-gold a:hover img {
	animation-play-state: paused;
}

@keyframes infiniterotategold {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.about-us-gold {
	padding: 100px 0;
}

.about-us-image-box-gold {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.about-us-content-header-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	justify-content: space-between;
	gap: 30px;
}

.about-us-content-header-gold .section-title {
	width: calc(66% - 15px);
}

.opening-hours-box-gold {
	position: relative;
	width: calc(34% - 15px);
	background: var(--bg-color);
	border: 20px solid var(--bg-color);
	border-top: none;
	border-right: none;
	border-radius: 0 20px;
	margin-bottom: -135px;
	z-index: 1;
}

.opening-hours-box-gold::before {
	content: '';
	position: absolute;
	bottom: -40px;
	right: 0;
	width: 20px;
	height: 20px;
	mask: url('../images/image-corner-bg-shape.svg');
	-webkit-mask: url('../images/image-corner-bg-shape.svg');
	transform: rotate(90deg);
	background-color: var(--bg-color);
	mask-repeat: no-repeat;
	mask-size: cover;
}

.opening-hours-box-gold::after {
	content: '';
	position: absolute;
	bottom: 95px;
	left: -40px;
	width: 20px;
	height: 20px;
	mask: url('../images/image-corner-bg-shape.svg');
	-webkit-mask: url('../images/image-corner-bg-shape.svg');
	transform: rotate(90deg);
	background-color: var(--bg-color);
	mask-repeat: no-repeat;
	mask-size: cover;
}

.opening-hours-content-gold {
	background: var(--accent-color);
	border-radius: 20px;
	padding: 30px;
}

.opening-hours-content-gold h3 {
	font-size: 20px;
	line-height: 1.4em;
	color: var(--white-color);
}

.opening-hours-content-gold h3,
.opening-hours-content-gold ul {
	border-bottom: 1px solid var(--dark-divider-color);
	margin: 0 0 20px;
	padding: 0 0 20px;
}

.opening-hours-content-gold ul {
	list-style: none;
}

.opening-hours-content-gold ul li {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	color: var(--white-color);
	line-height: 1.5em;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.opening-hours-content-gold h3:last-child,
.opening-hours-content-gold ul:last-child,
.opening-hours-content-gold ul li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.about-us-image-gold {
	position: relative;
	z-index: 0;
	height: 100%;
}

.about-us-image-gold figure {
	display: block;
	height: 100%;
	border-radius: 20px;
}

.about-us-image-gold img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.47;
	object-fit: cover;
	border-radius: 20px;
}

.about-us-item-gold {
	background: var(--secondary-color);
	border-radius: 20px;
	margin-bottom: 30px;
	padding: 20px;
}

.about-us-item-gold:last-child {
	margin-bottom: 0;
}

.about-us-item-header-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.about-us-item-header-gold .icon-box img {
	width: 100%;
	max-width: 40px;
}

.about-us-item-title-gold {
	width: calc(100% - 60px);
}

.about-us-item-title-gold h3 {
	font-size: 20px;
	line-height: 1.4em;
}

.about-us-item-content-gold p {
	margin: 0;
}

.about-us-content-footer-gold {
	margin-top: 60px;
}

.about-us-content-footer-gold ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.about-us-content-footer-gold ul li {
	position: relative;
	background: transparent;
	border: 1px solid var(--divider-color);
	font-size: 16px;
	color: var(--primary-color);
	padding: 10px 20px 10px 50px;
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}

.about-us-content-footer-gold ul li::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: url('../images/icon-paw.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	transition: all 0.4s ease-in-out;
}

.about-us-content-footer-gold ul li:hover::before {
	filter: brightness(0) invert(1);
}

.about-us-content-footer-gold ul li:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.our-services-gold {
	padding: 100px 0;
}

.service-item-gold {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	background: var(--white-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.service-item-header-gold {
	padding: 40px 40px 20px;
}

.service-item-content-gold h3 {
	font-size: 20px;
}

.service-item-content-gold h3 a {
	color: inherit;
}

.service-item-content-gold p {
	margin: 15px 0 0;
}

.service-item-btn-gold {
	margin-top: 40px;
}

.service-item-image-gold figure {
	display: block;
	border-radius: 20px 20px 0 0;
}

.service-item-image-gold img {
	width: 100%;
	aspect-ratio: 1 / 0.663;
	object-fit: cover;
	border-radius: 20px 20px 0 0;
}

.our-benefits-gold {
	padding: 100px 0;
}

.benefits-image-box-gold {
	position: relative;
	height: 100%;
	margin-right: 15px;
}

.benefits-image-gold {
	height: 100%;
}

.benefits-image-gold figure {
	display: block;
	height: 100%;
	border-radius: 20px;
}

.benefits-image-gold img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.993;
	object-fit: cover;
	border-radius: 20px;
}

.benefits-image-2-box-gold {
	position: absolute;
	top: 0;
	right: 0;
	max-width: 305px;
	background: var(--bg-color);
	border: 20px solid var(--bg-color);
	border-top: none;
	border-right: none;
	border-radius: 0 20px;
	z-index: 1;
}

.benefits-image-2-box-gold::before,
.benefits-image-2-box-gold::after,
.year-experience-box-gold::before,
.year-experience-box-gold::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	mask: url('../images/image-corner-bg-shape.svg');
	-webkit-mask: url('../images/image-corner-bg-shape.svg');
	background-color: var(--bg-color);
	mask-repeat: no-repeat;
	transform: rotate(90deg);
	mask-size: cover;
	z-index: 1;
}

.benefits-image-2-box-gold::before {
	top: 0px;
	left: -40px;
}

.benefits-image-2-box-gold::after {
	right: 0;
	bottom: -40px;
}

.benefits-image-2-box-gold .benefits-image-gold figure,
.benefits-image-2-box-gold .benefits-image-gold img {
	height: auto;
}

.benefits-image-2-box-gold .benefits-image-gold img {
	aspect-ratio: 1 / 0.722;
}

.year-experience-box-gold {
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 260px;
	background: var(--bg-color);
	border: 20px solid var(--bg-color);
	border-bottom: none;
	border-left: none;
	border-radius: 0 20px 0 0;
	z-index: 1;
}

.year-experience-box-gold::before {
	top: -40px;
	left: 0;
	transform: rotate(-90deg);
}

.year-experience-box-gold::after {
	right: -40px;
	bottom: 0;
	transform: rotate(-90deg);
}

.year-experience-info-gold {
	background: var(--accent-color);
	border-radius: 20px;
	text-align: center;
	padding: 30px;
}

.year-experience-info-gold .satisfy-client-images {
	justify-content: center;
}

.year-experience-content-gold {
	margin-top: 20px;
}

.year-experience-content-gold h2 {
	font-size: 40px;
	color: var(--white-color);
	line-height: 1em;
}

.year-experience-content-gold p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.benefits-content-box-gold {
	height: 100%;
	align-content: center;
}

.benefits-body-gold {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.benefits-body-item-gold {
	width: calc(50% - 15px);
	background: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	padding: 20px;
}

.benefits-body-item-gold .icon-box img {
	width: 100%;
	max-width: 50px;
}

.benefits-body-item-content-gold {
	width: calc(100% - 70px);
}

.benefits-body-item-content-gold h3 {
	font-size: 20px;
	line-height: 1.4em;
}

.benefits-counters-gold {
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 50px;
	padding: 30px;
	margin-top: 40px;
}

.benefits-counter-item-gold {
	position: relative;
	width: calc(25% - 37.5px);
	text-align: center;
}

.benefits-counter-item-gold::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -25px;
	background: var(--divider-color);
	width: 1px;
	height: 100%;
}

.benefits-counter-item-gold:nth-child(4n + 4)::before,
.benefits-counter-item-gold:last-child::before {
	display: none;
}

.benefits-counter-item-gold h2 {
	font-size: 40px;
	line-height: 1em;
}

.benefits-counter-item-gold p {
	margin: 10px 0 0;
}

.benefits-footer-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	margin-top: 40px;
}

.benefits-contact-box-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.benefits-contact-box-gold .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 12px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.benefits-contact-box-gold .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 12px;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.benefits-contact-box-gold:hover .icon-box::before {
	transform: scale(1) rotate(180deg);
	border-radius: 0;
}

.benefits-contact-box-gold .icon-box img {
	position: relative;
	width: 100%;
	max-width: 26px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.benefits-contact-content-gold {
	width: calc(100% - 60px);
}

.benefits-contact-content-gold h3 {
	font-size: 20px;
}

.benefits-contact-content-gold h3 a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.benefits-contact-content-gold h3 a:hover {
	color: var(--accent-color);
}

.benefits-contact-content-gold p {
	margin: 5px 0 0;
}

.why-choose-us-gold {
	padding: 100px 0;
}

.why-choose-content-gold {
	height: 100%;
	align-content: center;
}

.why-choose-item-list-gold {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-item-gold {
	width: calc(50% - 15px);
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 20px;
	padding: 30px;
}

.why-choose-item-header-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.why-choose-item-header-gold .icon-box img {
	width: 100%;
	max-width: 40px;
}

.why-choose-item-title-gold {
	width: calc(100% - 55px);
}

.why-choose-item-title-gold h3 {
	font-size: 20px;
	line-height: 1.4em;
	color: var(--white-color)
}

.why-choose-item-content-gold p {
	margin-bottom: 0;
	color: var(--white-color);
}

.why-choose-image-gold {
	height: 100%;
	align-content: end;
	margin-left: 15px;
}

.why-choose-image-gold figure {
	display: block;
	border-radius: 20px;
}

.why-choose-image-gold img {
	width: 100%;
	aspect-ratio: 1 / 1.183;
	object-fit: cover;
	border-radius: 20px;
	margin-bottom: -100px;
}

.our-pricing-gold {
	padding: 100px 0;
}

.pricing-item-gold {
	background-color: var(--bg-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.pricing-item-gold .icon-box {
	margin-bottom: 20px;
}

.pricing-item-gold .icon-box img {
	width: 100%;
	max-width: 50px;
}

.pricing-item-content-gold h3 {
	font-size: 20px;
}

.pricing-item-content-gold p {
	margin: 10px 0 0;
}

.pricing-item-content-gold h2 {
	font-size: 40px;
	line-height: 1em;
	margin-top: 30px;
}

.pricing-item-content-gold h2 sub {
	font-size: 16px;
	font-weight: 400;
	color: var(--text-color);
	bottom: 0;
}

.pricing-item-list-gold {
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.pricing-item-list-gold ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-item-list-gold ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.pricing-item-list-gold ul li:last-child {
	margin-bottom: 0;
}

.pricing-item-list-gold ul li::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	background-image: url('../images/icon-paw.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 20px;
	width: 20px;
}

.pricing-item-btn-gold {
	margin-top: 40px;
}

.pricing-item-btn-gold .btn-default {
	text-align: center;
	width: 100%;
	padding: 18px;
}

.pricing-item-btn-gold .btn-default:before {
	display: none;
}

.pricing-benefit-list-gold {
	margin-top: 30px;
}

.pricing-benefit-list-gold ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 40px;
}

.pricing-benefit-list-gold ul li {
	display: inline-flex;
	align-items: center;
}

.pricing-benefit-list-gold ul li img {
	max-width: 20px;
	margin-right: 10px;
}

.our-product-gold .product-item {
	border: 1px solid var(--divider-color);
}

.what-we-do-gold {
	padding: 100px 0 0;
}

.what-we-do-item-list-gold {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px 60px;
	margin-bottom: 40px;
}

.what-we-do-item-gold {
	width: calc(33.33% - 40px);
	text-align: center;
}

.what-we-do-item-gold .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 12px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
	overflow: hidden;
}

.what-we-do-item-gold .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 12px;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.what-we-do-item-gold:hover .icon-box::before {
	transform: scale(1) rotate(180deg);
	border-radius: 0;
}

.what-we-do-item-gold .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.what-we-do-item-gold:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.what-we-do-item-content-gold h3 {
	font-size: 20px;
	color: var(--white-color);
}

.what-we-do-item-content-gold p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.what-we-do-image-gold {
	max-width: 815px;
	margin: 0 auto;
}

.what-we-do-image-gold figure {
	display: block;
	border-radius: 20px 20px 0 0;
}

.what-we-do-image-gold img {
	width: 100%;
	aspect-ratio: 1 / 0.591;
	object-fit: cover;
	border-radius: 20px 20px 0 0;
}

.our-faq-gold {
	padding: 100px 0;
}

.faq-accordion-gold .accordion-item-gold {
	border-radius: 10px;
	margin-bottom: 30px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.faq-accordion-gold .accordion-item-gold:last-child {
	margin-bottom: 0;
}

.faq-accordion-gold .accordion-header .accordion-button {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.333em;
	background: transparent;
	color: var(--white-color);
	background: var(--accent-color);
	padding: 18px 54px 18px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion-gold .accordion-item-gold .accordion-button.collapsed {
	background-color: var(--bg-color);
	color: var(--primary-color);
}

.faq-accordion-gold .accordion-item-gold .accordion-button::after,
.faq-accordion-gold .accordion-item-gold .accordion-button.collapsed::after {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) rotate(180deg);
	height: 20px;
	width: 20px;
	background-image: url('../images/icon-paw.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s ease-in-out;
}

.faq-accordion-gold .accordion-item-gold .accordion-body {
	border-top: 1px solid var(--dark-divider-color);
	background: var(--accent-color);
	padding: 18px 20px;
}

.faq-accordion-gold .accordion-item-gold .accordion-body p {
	color: var(--white-color);
	margin: 0;
}

.faq-accordion-gold .accordion-item-gold :not(.accordion-button.collapsed)::after {
	transform: translateY(-50%) rotate(0);
	filter: brightness(0) invert(1);
}

.faq-image-box-gold {
	position: relative;
	height: 100%;
	margin-left: 15px;
}

.faq-image-gold {
	height: 100%;
}

.faq-image-gold figure {
	display: block;
	border-radius: 20px;
	height: 100%;
}

.faq-image-gold figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.136;
	border-radius: 20px;
	object-fit: cover;
}

.faq-cta-box-gold {
	position: absolute;
	left: 30px;
	bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	background: var(--divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 10px;
	margin-top: 40px;
}

.faq-cta-contact-list-gold {
	width: calc(100% - 150px);
	padding: 30px 20px 30px 30px;
}

.faq-cta-item-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.faq-cta-item-gold:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.faq-cta-item-gold .icon-box {
	position: relative;
	background-color: var(--accent-color);
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.faq-cta-item-gold .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 10px;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.faq-cta-item-gold:hover .icon-box::before {
	transform: scale(1) rotate(180deg);
	border-radius: 0;
}

.faq-cta-item-gold .icon-box img {
	position: relative;
	width: 100%;
	max-width: 20px;
	z-index: 1;
}

.faq-cta-item-content-gold {
	width: calc(100% - 60px);
}

.faq-cta-item-content-gold p {
	color: var(--white-color);
	margin-bottom: 2px;
}

.faq-cta-item-content-gold h3 {
	font-size: 20px;
	color: var(--white-color);
}

.faq-cta-item-content-gold h3 a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.faq-cta-item-content-gold h3 a:hover {
	color: var(--accent-color);
}

.faq-cta-image-gold {
	margin-top: -40px;
}

.faq-cta-image-gold figure {
	display: block;
	border-radius: 10px 10px 0 0;
}

.faq-cta-image-gold img {
	width: 100%;
	max-width: 150px;
	aspect-ratio: 1 / 1.58;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}

.main-footer-gold {
	background-image: none;
	margin-bottom: 20px;
	padding: 100px 0 0;
}

.footer-header-gold {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 60px;
	padding-bottom: 60px;
}

.footer-logo-gold img {
	width: 100%;
	max-width: 167px;
}

.footer-header-gold .section-title {
	margin-bottom: 0;
	max-width: 530px;
}

.footer-header-gold .section-title h2 {
	font-size: 40px;
}

.footer-links-box-gold {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: space-between;
	margin-right: 30px;
}

.footer-links-gold {
	max-width: 36%;
}

.footer-links-gold h3 {
	color: var(--white-color);
	font-size: 20px;
	margin-bottom: 25px;
}

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

.footer-links-gold ul li {
	position: relative;
	color: var(--white-color);
	line-height: 1.5em;
	margin-bottom: 20px;
	padding-left: 30px;
}

.footer-links-gold ul li:last-child {
	margin-bottom: 0;
}

.footer-links-gold ul li::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	background-image: url('../images/icon-paw.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 20px;
	width: 20px;
}

.footer-links-gold ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-links-gold ul li a:hover {
	color: var(--accent-color);
}

.footer-links-gold ul li img {
	width: 100%;
	max-width: 20px;
}

.footer-contact-links-gold ul li {
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid var(--dark-divider-color);
	padding: 0 0 20px;
}

.footer-contact-links-gold ul li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.footer-contact-links-gold ul li::before {
	display: none;
}

.footer-newsletter-form-gold {
	margin-bottom: 30px;
}

.footer-newsletter-form-gold h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-newsletter-form-gold p {
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-newsletter-form-gold .form-group {
	display: flex;
	border: 1px solid var(--dark-divider-color);
	border-radius: 10px;
	padding: 9px;
}

.footer-newsletter-form-gold .form-group .form-control {
	width: calc(100% - 40px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 6px 14px;
}

.footer-newsletter-form-gold .form-group .form-control::placeholder {
	color: var(--white-color);
	opacity: 50%;
}

.footer-newsletter-form-gold .form-group .newsletter-btn {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border-radius: 6px;
	border: none;
	outline: none;
	box-shadow: none;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form-gold .form-group .newsletter-btn:hover {
	background-color: var(--white-color);
}

.footer-newsletter-form-gold .form-group .newsletter-btn img {
	width: 100%;
	max-width: 20px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form-gold .form-group .newsletter-btn:hover img {
	filter: brightness(0) invert(0);
	transform: rotate(45deg);
}

.footer-social-links-gold h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-social-links-gold ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 15px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links-gold ul li {
	padding: 0;
	margin: 0;
}

.footer-social-links-gold ul li a {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--dark-divider-color);
	color: var(--white-color);
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.footer-social-links-gold ul li a:hover {
	background: var(--accent-color);
	color: var(--white-color);
}

.footer-social-links-gold ul li a i {
	font-size: 18px;
	color: inherit;
}

.footer-copyright-gold {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding: 40px 0 60px;
}

.footer-copyright-content-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.footer-copyright-text-gold p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-privacy-policy-gold ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-privacy-policy-gold ul li {
	position: relative;
	line-height: 1.5em;
	color: var(--white-color);
}

.footer-privacy-policy-gold ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -18px;
	background: var(--accent-color);
	border-radius: 100px;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
}

.footer-privacy-policy-gold ul li:first-child::before {
	display: none;
}

.footer-privacy-policy-gold ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-privacy-policy-gold ul li a:hover {
	color: var(--accent-color);
}

@media only screen and (max-width: 1440px) {
	.service-item-header-gold {
		padding: 30px 20px 20px;
	}

	.service-item-btn-gold {
		margin-top: 30px;
	}

	.benefits-counters-gold {
		gap: 30px;
		padding: 30px 20px;
	}

	.benefits-counter-item-gold {
		width: calc(25% - 22.5px);
	}

	.benefits-counter-item-gold::before {
		right: -15px;
	}

	.why-choose-item-list-gold {
		gap: 20px;
	}

	.why-choose-item-gold {
		width: calc(50% - 10px);
		padding: 20px;
		border-radius: 14px;
	}

	.why-choose-item-header-gold {
		gap: 10px;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.why-choose-item-title-gold {
		width: calc(100% - 50px);
	}

	.pricing-item-gold {
		padding: 30px;
	}

	.pricing-item-btn-gold {
		margin-top: 30px;
	}

	.pricing-item-list-gold {
		margin-top: 20px;
		padding-top: 20px;
	}
}

@media only screen and (max-width: 1024px) {

	.hero-counter-item-gold {
		max-width: 100%;
	}

	.hero-gold .contact-us-circle-gold {
		display: none;
	}

	.about-us-image-box-gold {
		height: auto;
		margin-bottom: 30px;
	}

	.about-us-image-gold,
	.about-us-image-gold figure,
	.about-us-image-gold img {
		height: auto;
	}

	.service-item-content-gold p {
		margin: 10px 0 0;
	}

	.service-item-btn-gold {
		margin-top: 20px;
	}

	.benefits-image-box-gold {
		max-width: 730px;
		height: auto;
		margin: 0 auto 30px;
	}

	.year-experience-box-gold {
		max-width: 220px;
	}

	.year-experience-info-gold {
		padding: 20px;
	}

	.benefits-body-item-gold {
		gap: 15px;
		padding: 15px;
	}

	.benefits-body-item-content-gold {
		width: calc(100% - 65px);
	}

	.why-choose-content-gold {
		height: auto;
		margin-bottom: 30px;
	}

	.why-choose-image-gold {
		height: auto;
		max-width: 560px;
		margin: 0 auto;
	}

	.what-we-do-item-list-gold {
		gap: 30px;
	}

	.what-we-do-item-gold {
		width: calc(50% - 15px);
	}

	.what-we-do-item-gold .icon-box {
		margin-bottom: 20px;
	}

	.faqs-content-gold {
		margin-bottom: 30px;
	}

	.faq-image-box-gold {
		margin: 0;
	}

	.faq-image-gold figure img {
		aspect-ratio: 1 / 0.7;
	}

	.main-footer-gold {
		padding-left: 10px;
		padding-right: 10px;
	}

	.footer-links-box-gold {
		margin: 0 0 30px;
	}
}

@media only screen and (max-width: 991px) {

	.hero-gold {
		padding: 140px 0 50px;
		margin: 0;
	}

	.hero-gold::before {
		border-radius: 0;
	}

	.hero-content-gold .section-title p {
		font-size: 16px;
	}

	.hero-counter-list-gold {
		gap: 30px 50px;
		margin-top: 30px;
		padding-top: 30px;
	}

	.hero-counter-item-gold {
		width: calc(25% - 37.5px);
	}

	.hero-counter-item-gold::before {
		right: -25px;
	}

	.hero-counter-item-gold:nth-child(4n + 4)::before {
		display: none;
	}

	.hero-counter-item-gold h2 {
		font-size: 34px;
	}

	.about-us-gold {
		padding: 50px 0;
	}

	.about-us-content-header-gold .section-title {
		width: calc(60% - 15px);
	}

	.opening-hours-box-gold {
		width: calc(40% - 15px);
	}

	.opening-hours-box-gold::after {
		bottom: 92px;
	}

	.opening-hours-content-gold {
		padding: 20px;
	}

	.opening-hours-content-gold h3,
	.opening-hours-content-gold ul {
		margin: 0 0 15px;
		padding: 0 0 15px;
	}

	.opening-hours-content-gold ul li {
		margin-bottom: 10px;
		padding-bottom: 10px;
	}

	.about-us-image-gold img {
		aspect-ratio: 1 / 0.57;
	}

	.about-us-content-footer-gold {
		margin-top: 40px;
	}

	.about-content-footer-list-gold ul {
		gap: 10px;
	}

	.about-content-footer-list-gold ul li {
		padding: 8px 12px 8px 35px;
	}

	.about-content-footer-list-gold ul li::before {
		left: 10px;
		height: 18px;
		width: 18px;
	}

	.our-services-gold {
		padding: 50px 0;
	}

	.our-benefits-gold {
		padding: 50px 0;
	}

	.benefits-counters-gold {
		padding: 20px;
		margin-top: 30px;
	}

	.year-experience-content-gold h2,
	.benefits-counter-item-gold h2 {
		font-size: 34px;
	}

	.benefits-footer-gold {
		margin-top: 30px;
	}

	.why-choose-us-gold {
		padding: 50px 0;
	}

	.why-choose-image-gold img {
		margin-bottom: -50px;
	}

	.our-pricing-gold {
		padding: 50px 0;
	}

	.pricing-item-gold {
		padding: 20px;
	}

	.pricing-item-content-gold h2 {
		font-size: 34px;
		margin-top: 20px;
	}

	.pricing-item-list-gold ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.pricing-item-list-gold ul li::before {
		height: 18px;
		width: 18px;
	}

	.pricing-benefit-list-gold {
		margin-top: 10px;
	}

	.pricing-benefit-list-gold ul {
		gap: 15px 30px;
	}

	.pricing-item-btn-gold .btn-default {
		padding: 15px;
	}

	.what-we-do-gold {
		padding: 50px 0 0;
	}

	.our-faq-gold {
		padding: 50px 0;
	}

	.faq-accordion-gold .accordion-item-gold {
		margin-bottom: 20px;
	}

	.faq-accordion-gold .accordion-header .accordion-button {
		padding: 15px 42px 15px 15px;
	}

	.faq-accordion-gold .accordion-item-gold .accordion-body {
		padding: 15px;
	}

	.faq-accordion-gold .accordion-item-gold .accordion-button::after,
	.faq-accordion-gold .accordion-item-gold .accordion-button.collapsed::after {
		right: 15px;
		width: 18px;
		height: 18px;
	}

	.faq-cta-box-gold {
		left: 20px;
		bottom: 20px;
		margin-top: 60px;
	}

	.faq-cta-contact-list-gold {
		padding: 20px;
	}

	.faq-cta-image-gold {
		margin-top: -60px;
	}

	.main-footer-gold {
		padding: 50px 0 0;
		margin-bottom: 0;
	}

	.footer-header-gold {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-header-gold .section-title h2 {
		font-size: 34px;
	}

	.footer-links-box-gold h3,
	.footer-newsletter-form-gold h3 {
		margin-bottom: 20px;
	}

	.footer-links-gold ul li {
		margin-bottom: 15px;
		padding-left: 25px;
	}

	.footer-links-gold ul li::before {
		width: 18px;
		height: 18px;
	}

	.footer-contact-links-gold ul li {
		padding: 0 0 15px;
	}

	.footer-newsletter-form-gold .form-group {
		padding: 6px;
	}

	.footer-newsletter-form-gold .form-group .form-control {
		width: calc(100% - 36px);
	}

	.footer-newsletter-form-gold .form-group .newsletter-btn {
		width: 36px;
		height: 36px;
	}

	.footer-newsletter-form-gold p {
		margin-bottom: 15px;
	}

	.footer-copyright-gold {
		margin-top: 30px;
		padding: 30px 0;
	}

}

@media only screen and (max-width: 767px) {
	.hero-body-gold {
		gap: 30px;
	}

	.hero-counter-list-gold {
		gap: 30px;
	}

	.hero-counter-item-gold {
		width: calc(50% - 15px);
	}

	.hero-counter-item-gold::before {
		right: -15px;
	}

	.hero-counter-item-gold:nth-child(2n + 2)::before {
		display: none;
	}

	.about-us-content-header-gold {
		margin: 0 0 30px;
		gap: 0;
	}

	.about-us-content-header-gold .section-title,
	.opening-hours-box-gold {
		width: 100%;
	}


	.opening-hours-box-gold::after,
	.opening-hours-box-gold::before {
		display: none;
	}

	.opening-hours-box-gold {
		border: none;
		margin: 0;
	}

	.opening-hours-content-gold h3 {
		font-size: 18px;
	}

	.about-us-item-title-gold h3 {
		font-size: 18px;
	}

	.about-us-content-footer ul {
		gap: 6px;
	}

	.about-us-content-footer ul li {
		font-size: 14px;
		background-position: left 10px center;
		background-size: 14px auto;
		padding: 4px 10px 4px 30px;
	}

	.service-item-header-gold {
		padding: 20px;
	}

	.service-item-content-gold h3 {
		font-size: 18px;
	}

	.service-item-content-gold p {
		margin: 5px 0 0;
	}

	.benefits-image-gold img {
		aspect-ratio: 1 / 1.1;
	}

	.benefits-image-2-box-gold {
		max-width: 150px;
		border-width: 10px;
	}

	.benefits-image-2-box-gold::before {
		left: -30px;
	}

	.benefits-image-2-box-gold::after {
		bottom: -30px;
	}

	.year-experience-box-gold {
		border-width: 10px;
		max-width: 150px;
	}

	.year-experience-box-gold::before {
		top: -30px;
	}

	.year-experience-box-gold::after {
		right: -30px;
	}

	.year-experience-info-gold {
		padding: 10px;
	}

	.year-experience-info-gold .satisfy-client-image figure img {
		max-width: 30px;
	}

	.year-experience-content-gold {
		margin-top: 5px;
	}

	.year-experience-content-gold h2 {
		font-size: 28px;
	}

	.year-experience-content-gold p {
		font-size: 12px;
		margin: 2px 0 0;
	}

	.benefits-body-gold {
		gap: 20px;
	}

	.benefits-body-item-gold {
		width: 100%;
	}

	.benefits-body-item-content-gold h3 {
		font-size: 18px;
	}

	.benefits-counter-item-gold {
		width: calc(50% - 15px);
	}

	.benefits-counter-item-gold:nth-child(2n + 2)::before {
		display: none;
	}

	.benefits-counter-item-gold h2 {
		font-size: 28px;
	}

	.benefits-counter-item-gold p {
		margin-top: 5px;
	}

	.benefits-footer-gold {
		gap: 20px;
	}

	.benefits-contact-box-gold .icon-box {
		width: 44px;
		height: 44px;
	}

	.benefits-contact-box-gold .icon-box img {
		max-width: 22px;
	}

	.benefits-contact-content-gold {
		width: calc(100% - 54px);
	}

	.benefits-contact-content-gold h3 {
		font-size: 18px;
	}

	.why-choose-item-gold {
		width: 100%;
	}

	.why-choose-item-title-gold h3 {
		font-size: 18px;
	}

	.pricing-item-gold .icon-box img {
		max-width: 40px;
	}

	.pricing-item-content-gold h3 {
		font-size: 18px;
	}

	.pricing-item-content-gold h2 {
		font-size: 28px;
		margin-top: 20px;
	}

	.pricing-benefit-list-gold ul {
		gap: 15px;
	}

	.pricing-benefit-list-gold ul li {
		font-size: 14px;
	}

	.pricing-benefit-list-gold ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

	.what-we-do-item-list-gold {
		margin-bottom: 30px;
	}

	.what-we-do-item-gold {
		width: 100%;
	}

	.what-we-do-item-content-gold h3 {
		font-size: 18px;
	}

	.faq-accordion-gold .accordion-header .accordion-button {
		font-size: 16px;
		padding: 12px 38px 12px 12px;
	}

	.faq-accordion-gold .accordion-item-gold .accordion-button::after,
	.faq-accordion-gold .accordion-item-gold .accordion-button.collapsed::after {
		right: 12px;
		width: 16px;
		height: 16px;
	}

	.faq-accordion-gold .accordion-item-gold .accordion-body {
		padding: 12px;
	}

	.faq-image-gold figure img {
		aspect-ratio: 1 / 1.1;
	}

	.faq-cta-box-gold {
		left: 15px;
		bottom: 15px;
		right: 15px;
		margin-top: 25px;
	}

	.faq-cta-contact-list-gold {
		width: 100%;
		padding: 15px;
	}

	.faq-cta-item-content-gold h3 {
		font-size: 18px;
	}

	.faq-cta-image-gold {
		margin-top: 0;
	}

	.faq-cta-image-gold {
		display: none;
	}

	.footer-header-gold {
		gap: 20px;
	}

	.footer-header-gold .section-title h2 {
		font-size: 28px;
	}

	.footer-links-gold {
		max-width: 100%;
	}

	.footer-links-box-gold h3,
	.footer-newsletter-form-gold h3,
	.footer-social-links-gold h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links-gold ul li {
		margin-bottom: 10px;
	}

	.footer-contact-links-gold ul li {
		padding: 0 0 10px;
	}

	.footer-newsletter-form-gold {
		margin-bottom: 20px;
	}

	.footer-copyright-gold {
		padding: 15px 0;
	}

	.footer-copyright-content-gold {
		flex-direction: column-reverse;
		gap: 10px;
	}
}



.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
}

.swiper-pagination-bullet-active {
	background: var(--accent-color)
}

.page-hero-box {
	padding: 80px 0;
}

.page-hero-box h1 {
	text-align: center;
	text-transform: uppercase;
	font-size: 56px;
	line-height: 1.2em;
	margin-bottom: 0.5em;
}

.page-hero-box-article h1 {
	text-align: center;
	text-transform: uppercase;
	font-size: 38px;
	line-height: 1.2em;
	max-width: 900px;
	margin: auto;
	margin-bottom: 0.5em;
}

.page-hero-box .page-hero-desc {
	text-align: center;
	margin-bottom: 35px;
}

ol.breadcrumb {
	justify-content: center;
}

.breadcrumb-item.active {
	color: var(--accent-color);
	font-weight: 600;
}

.breadcrumb-item_home a,
.breadcrumb-item a {
	color: var(--text-color);
}

.breadcrumb-item_home a:hover,
.breadcrumb-item a:hover {
	text-decoration: underline;
}

.row-gap-30 {
	row-gap: var(--bs-gutter-x);
}

.page-info-img {
	border-radius: 20px;
	overflow: hidden;
}

.page-info-img img {
	width: 100%;
}

.page-info-img .service-cta-slide {
	max-height: 500px;
}

@media(max-width: 991px) and (min-width: 576px) {
	.hide-on-tab {
		display: none;
	}
}

.page-info-img_xl {
	max-height: none;
}

.page-info-text * {
	font-size: 15px;
}

.page-info-utp-row {
	padding-top: 70px;
	padding-bottom: 100px;
}

.page-info-utp {
	border-radius: 20px;
	background-color: var(--secondary-color);
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 300px;
}

.page-info-utp-row .page-info-utp-col:nth-child(even) .page-info-utp {
	background-color: var(--accent-color);
}

.page-info-utp-title {
	font-size: 21px;
	line-height: 1.2em;
	font-weight: 700;
}

.page-info-utp-info {
	font-size: 15px;
	line-height: 1.2em;
	margin-bottom: 0;
}

.page-info-utp-row .page-info-utp-col:nth-child(even) .page-info-utp * {
	color: white;
}

@media(max-width: 1400px) {
	.page-info-text * {
		font-size: 13px;
	}

	.page-info-img .service-cta-slide {
		max-height: 300px;
	}

	.page-info-utp-title {
		font-size: 17px;
	}

	.page-info-utp-info {
		font-size: 13px;
	}

	.page-hero-box h1 {
		font-size: 47px;
	}
}

@media(max-width: 991px) {
	.page-info-img .service-cta-slide {
		max-height: 500px;
	}

	.page-hero-box h1 {
		font-size: 40px;
	}
}

@media(max-width: 575px) {
	.page-info-utp {
		min-height: 200px;
	}

	.page-info-img .service-cta-slide {
		max-height: 300px;
	}

	.page-hero-box h1 {
		font-size: 28px;
	}

	.page-hero-box-article {
		padding: 40px 0;
	}

	.page-hero-box-article h1 {
		font-size: 26px;
	}

	.page-hero-box-article ol.breadcrumb {
		font-size: 13px;
	}

}

.service-row {
	display: flex;
	margin: 0 -15px 30px -15px;
}

.service-box-col {
	display: flex;
	flex-direction: column;
}

.service-box-img {
	display: flex;
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.service-box-img img {
	width: 100%;
}

.service-box-btn-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	width: 100%;
	padding: 0 15px;
}

.service-box-title {
	border-radius: 20px;
	display: flex;
	font-weight: 700;
	font-size: 21px;
	padding: 15px;
	align-items: center;
	height: 50%;
	background: var(--secondary-color);
	margin-bottom: 25px;
}

.service-box-btn-trigger {
	cursor: pointer;
}

.service-box-btn-trigger svg {
	transition: .25s ease-in-out;
}

.service-box-btn-trigger.active svg {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.service-box-text {
	margin-bottom: 20px;
	max-width: 500px;
	padding: 0 15px;
	font-size: 15px;
	line-height: 1.2em;

}

.service-box-list {
	display: none;
	padding: 15px;
}

.service-box-list-item {
	display: flex;
	justify-content: space-between;
	font-weight: 700;
	font-size: 18px;
	padding: 25px 0;
	border-bottom: 1px solid black;
	gap: 15px;
}

.service-box-list-item_title {
	font-weight: 700;
	font-size: 18px;
	line-height: 1.2em;
}

.service-box-list-item_price {
	flex-shrink: 0;
}

@media(max-width: 767px) {
	.service-box-title {
		height: 100%;
		width: calc(50% - 7.5px);
		justify-content: center;
		font-size: 23px;
	}

	.service-box-img {
		width: calc(50% - 7.5px);
		max-width: none;
	}

	.service-box-col-img {
		flex-direction: row;
		justify-content: space-between;
	}

	.service-row {
		row-gap: 20px;
	}

	.service-box-btn-wrap {
		flex-direction: row-reverse;
	}

	.service-box-btn-wrap,
	.service-box-text,
	.service-box-list {
		padding-left: 0;
		padding-right: 0;
	}

	.service-box-list-item_title,
	.service-box-list-item {
		font-size: 14px;
	}
}

@media(max-width: 575px) {
	.service-box-list-item {
		padding: 20px 0;
	}

	.service-box-title {
		font-size: 18px;
	}
}


.section-title .service-directions-title {
	margin-bottom: 20px;
}

.service-directions-text {
	max-width: 1200px;
	font-size: 18px;
	line-height: 1.2em;
}

.service-directions .row {
	row-gap: var(--bs-gutter-x);
}

.service-direction {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	background: var(--secondary-color);
	border-radius: 20px;
	height: 100%;
}

.service-direction .btn-accent,
.service-direction .btn-light {
	width: fit-content;
}

.service-direction .btn-light {
	border: 1px solid var(--primary-color);
}

.service-directions-style-2 .service-direction-text {
	font-size: 14px;
	margin-bottom: 20px;
}

.service-directions-style-2 .service-direction {
	padding: 50px 20px 20px 20px;
	position: relative;
	justify-content: space-between;
	min-height: 270px;
}

.service-directions-style-2 .service-direction-title {
	padding-right: 65px;
}

.service-direction-svg {
	position: absolute;
	right: 20px;
	top: 20px;
	height: 40px;
	width: 40px;
}

.service-direction-title {
	font-size: 21px;
	line-height: 1.2em;
	font-weight: 700;
}

.service-direction span {
	margin-top: 10px;
	color: var(--accent-color);
	font-weight: 600;
}

.service-direction ul {
	padding-left: 20px;
	margin-bottom: 0;
}

.service-direction li {
	margin-bottom: 10px;
	line-height: 1.3em;
}

@media(max-width: 575px) {
	.service-directions-text {
		font-size: 16px;
	}
}


.service-advantage {
	position: relative;
	padding: 70px 20px 20px 20px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	gap: 15px;
	background: var(--secondary-color);
	border-radius: 20px;
	height: 100%;
}

.service-advantages-text {
	max-width: 1000px;
	line-height: 1.2em;
}

.service-advantage-accent {
	background: var(--accent-color);
	color: white;
}

.service-advantage-accent * {
	color: white;
}

.service-advantage-icon {
	position: absolute;
	right: 18px;
	top: 13px;
	width: 45px;
	height: 45px;
}

.service-advantages .row {
	row-gap: var(--bs-gutter-x);
}

.service-advantage-title {
	font-size: 18px;
	line-height: 1.2em;
	font-weight: 700;
	margin-bottom: 10px;
}

.section-title .service-advantages-title {
	margin-bottom: 20px;
}

.service-advantage ul {
	padding-left: 20px;
	margin-bottom: 0;

}

.service-advantage li {
	margin-bottom: 10px;
	line-height: 1.3em;
}

@media(max-width: 767px) {
	.service-advantage li {
		font-size: 14px;
	}
}

/* CSS: Стили для блока "Когда обращаться к терапевту?" */


.therapy-cards-title {
	text-align: center;
	margin: 0 0 12px;
	line-height: 1.3;
}

.therapy-cards-subtitle {
	font-size: 1.1rem;
	text-align: center;
	margin: 0 0 40px;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.9;
}

.therapy-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.therapy-card {
	background: #fff;
	border: 1px solid rgba(58, 25, 22, 0.1);
	border-radius: 16px;
	padding: 24px 20px;
	text-align: center;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
}

.therapy-card:hover {
	border-color: #004e66;
	box-shadow: 0 8px 25px rgba(0, 78, 102, 0.12);
	transform: translateY(-4px);
}

.therapy-card--accent {
	background: linear-gradient(135deg, #004e66 0%, #006b8a 100%);
	border-color: transparent;
}

.therapy-card--accent .therapy-card-icon {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.therapy-card--accent .therapy-card-title,
.therapy-card--accent .therapy-card-text {
	color: #fff;
}

.therapy-card-icon {
	width: 56px;
	height: 56px;
	background: rgba(0, 78, 102, 0.08);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	color: #004e66;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.therapy-card-icon svg {
	width: 28px;
	height: 28px;
}

.therapy-card-title {
	font-size: 1.05rem;
	font-weight: 600;
	color: #322e2d;
	margin: 0 0 10px;
	line-height: 1.4;
}

.therapy-card-text {
	font-size: 0.95rem;
	color: #322e2d;
	margin: 0;
	line-height: 1.5;
	opacity: 0.85;
}

.therapy-cards-cta {
	background: rgba(0, 78, 102, 0.06);
	border-left: 4px solid #004e66;
	border-radius: 0 12px 12px 0;
	padding: 16px 24px;
	margin-top: 20px;
}

.therapy-cards-cta p {
	margin: 0;
	font-size: 1rem;
	color: #322e2d;
	line-height: 1.5;
}

.therapy-cards-cta strong {
	color: #004e66;
}

/* Адаптив */
@media (max-width: 768px) {
	.therapy-cards-title {
		font-size: 1.5rem;
	}

	.therapy-cards-subtitle {
		font-size: 1rem;
		padding: 0 10px;
	}

	.therapy-cards-grid {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
		gap: 16px;
	}

	.therapy-card {
		padding: 20px 16px;
	}

	.therapy-card-icon {
		width: 48px;
		height: 48px;
		border-radius: 12px;
	}

	.therapy-card-icon svg {
		width: 24px;
		height: 24px;
	}

	.therapy-card-title {
		font-size: 1rem;
	}

	.therapy-card-text {
		font-size: 0.9rem;
	}
}

@media(max-width: 575px) {
	.therapy-card-text {
		font-size: 14px;
	}
}


/* Градиент для акцента (Bootstrap-compatible) */
.bg-primary-gradient {
	background: linear-gradient(135deg, var(--primary-accent) 0%, #006b8a 100%) !important;
}

/* Секция */
.appointment-steps-section {
	background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
	color: var(--text-color);
}

.appointment-steps-title {
	color: var(--text-color);
	font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.appointment-steps-subtitle {
	color: var(--text-color);
	max-width: 1100px;
	margin: auto;
	font-size: 16px;
}

/* Вертикальная линия таймлайна (только десктоп) */
@media (min-width: 768px) {
	.appointment-timeline::before {
		content: '';
		position: absolute;
		left: 26px;
		/* Центрируем относительно маркера */
		top: 40px;
		bottom: 70px;
		width: 3px;
		background: linear-gradient(180deg, var(--primary-accent) 0%, rgba(0, 78, 102, 0.15) 100%);
		border-radius: 3px;
		z-index: 0;
	}
}

/* Маркер с номером */
.appointment-step-number {
	width: 56px;
	height: 56px;
	font-size: 1.5rem;
	box-shadow: 0 4px 15px rgba(0, 78, 102, 0.25);
	transition: transform 0.3s ease;
}

.appointment-step:hover .appointment-step-number {
	transform: scale(1.05);
}

/* Иконка */
.appointment-step-icon {
	width: 44px;
	height: 44px;
	background: rgba(0, 78, 102, 0.08);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.appointment-step-icon svg {
	width: 22px;
	height: 22px;
}

.appointment-step:hover .appointment-step-icon {
	background: var(--primary-accent);
}

.appointment-step:hover .appointment-step-icon svg {
	stroke: #fff;
}

/* Карточка этапа */
.appointment-step-card {
	position: relative;
	z-index: 1;
}

.appointment-step-title {
	color: var(--text-color);
}

.appointment-step-text {
	color: var(--text-color);
	line-height: 1.6;
}

/* Hover-эффекты */
.hover-shadow {
	transition: all 0.3s ease;
}

.hover-shadow:hover {
	box-shadow: 0 8px 25px rgba(0, 78, 102, 0.15) !important;
	border-color: var(--primary-accent) !important;
}

.transition-all {
	transition: all 0.3s ease;
}

/* Анимация появления */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.appointment-step {
	animation: fadeInUp 0.4s ease forwards;
	opacity: 0;
}

.appointment-step:nth-child(1) {
	animation-delay: 0.1s;
	opacity: 1;
}

.appointment-step:nth-child(2) {
	animation-delay: 0.2s;
}

.appointment-step:nth-child(3) {
	animation-delay: 0.3s;
}

.appointment-step:nth-child(4) {
	animation-delay: 0.4s;
}

.appointment-step:nth-child(5) {
	animation-delay: 0.5s;
}

.appointment-step:nth-child(6) {
	animation-delay: 0.6s;
}

/* Адаптив: мобильные */
@media (max-width: 767px) {
	.appointment-timeline::before {
		display: none;
	}

	.appointment-step {
		flex-direction: column !important;
		text-align: center;
	}

	.appointment-step .d-flex.align-items-start {
		flex-direction: column;
		align-items: center !important;
		text-align: center;
	}

	.appointment-step-number {
		width: 48px;
		height: 48px;
		font-size: 1.25rem;
	}

	.appointment-step-icon {
		width: 40px;
		height: 40px;
	}

	.appointment-step-icon svg {
		width: 20px;
		height: 20px;
	}
}

/* CSS: Стили для блока врачей */
:root {
	--vet-accent: #004e66;
	--vet-accent-soft: rgba(0, 78, 102, 0.08);
	--vet-text: #322e2d;
	--vet-border: rgba(58, 25, 22, 0.1);
}

.ratio-5x4 {
	aspect-ratio: 5/4;
}

/* Базовые цвета */
.text-accent {
	color: var(--vet-accent) !important;
}

.bg-soft-accent {
	background-color: var(--vet-accent-soft) !important;
}

.btn-outline-accent {
	--bs-btn-color: var(--vet-accent);
	--bs-btn-border-color: var(--vet-accent);
	--bs-btn-hover-bg: var(--vet-accent);
	--bs-btn-hover-border-color: var(--vet-accent);
	--bs-btn-hover-color: #fff;
	transition: all 0.25s ease;
}

/* Секция */
.therapist-block {
	background-color: #fff;
	color: var(--vet-text);
}

.therapist-specialty {
	white-space: initial;
}

.therapist-block-title {
	color: var(--vet-text);
	font-size: clamp(1.5rem, 4vw, 2.25rem);
}

.therapist-block-subtitle {
	max-width: 720px;
	margin: 0 auto;
	color: var(--vet-text);
	opacity: 0.85;
}

/* Карточка */
.therapist-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
}

.therapist-card-extended {
	min-height: 280px;
	background: var(--secondary-color);
	border: 1px solid #9b9a9a !important;
}

.therapist-card-extended .therapist-name {
	height: 100%;
	display: flex;
	align-items: center;
	text-align: center;
}

.hover-lift:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0, 78, 102, 0.12) !important;
}

/* Изображение */
.therapist-img-wrapper {
	background: var(--vet-accent-soft);
}

.therapist-img-wrapper img {
	transition: transform 0.4s ease;
	object-position: 0 12%;
}

.hover-lift:hover .therapist-img-wrapper img {
	transform: scale(1.03);
}

/* Типографика карточки */
.therapist-name {
	color: var(--vet-text);
}

.therapist-bio {
	line-height: 1.65;
}

/* Адаптив */
@media (max-width: 767px) {
	.therapist-card {
		max-width: 100%;
	}

	.therapist-img-wrapper {
		max-height: 320px;
	}
}

.service-box-list-item_title {
	font-size: 1rem;
	font-weight: 400;
	margin: 0;
	color: #444;
}

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

.all-prices-section {
	padding: 0;
}

.single-prices-section .prices-content {
	padding-top: 0;
}

/* ===== Базовые стили ===== */
.price-table {
	--price-text: #1f2937;
	--price-text-secondary: #6b7280;
	--price-border: #e5e7eb;
	--price-bg: #ffffff;
	--price-bg-alt: #f9fafb;
	--price-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	--price-radius: 12px;
	--price-transition: all 0.3s ease;

	max-width: 900px;
	margin: 0 auto;
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	gap: 35px;
}

.services .price-table {
	max-width: 100%;
}

.services .service-box-list {
	padding: 20px 15px 40px;
	background: var(--secondary-color);
	border-radius: 20px;
	margin-top: 20px;
}

.services .service-box-list .btn-default {
	margin-left: 50%;
	transform: translateX(-50%);
}

@media(max-width: 767px) {

	.services .btn-accent,
	.services .btn-dark {
		padding: 15px 20px;
	}
}

/* ===== Категория ===== */
.price-category {
	background: var(--price-bg);
	border-radius: var(--price-radius);
	box-shadow: var(--price-shadow);
	overflow: hidden;
	border: 1px solid var(--price-border);
	transition: var(--price-transition);
}

.price-category:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(-2px);
}

/* ===== Заголовок категории ===== */
.price-category-header {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px 28px;
	border-bottom: 2px solid var(--price-border);
}

.price-category-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background: var(--accent-color);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.price-category-icon svg {
	width: 24px;
	height: 24px;
}

.price-category-info {
	flex: 1;
	min-width: 0;
}

.price-category-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--price-text);
	margin: 0 0 4px 0;
	line-height: 1.2;
}

.price-category-desc {
	font-size: 0.95rem;
	color: var(--price-text-secondary);
	margin: 0;
	line-height: 1.4;
}

/* ===== Список цен ===== */
.price-list {
	padding: 0 0 8px 0;
}

/* ===== Элемент цены ===== */
.price-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 16px 28px;
	border-bottom: 1px solid var(--price-border);
	transition: var(--price-transition);
	position: relative;
}

.price-item:last-child {
	border-bottom: none;
}

.price-item:hover {
	background: var(--price-bg-alt);
}

.price-item:nth-child(even):hover {
	background: var(--price-bg-alt);
}

.price-item:nth-child(odd) {
	background: var(--price-bg);
}

.price-item:nth-child(odd):hover {
	background: var(--price-bg-alt);
}

/* ===== Название услуги ===== */
.price-item-name {
	flex: 1;
	font-size: 1rem;
	color: var(--price-text);
	line-height: 1.5;
	padding-right: 20px;
}

/* ===== Цена ===== */
.price-item-value {
	flex-shrink: 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--accent-color);
	white-space: nowrap;
	text-align: right;
	display: contents;
}

/* ===== Выделенный элемент ===== */
.price-item--featured {
	background: linear-gradient(135deg, var(--accent-color-light) 0%, var(--price-bg) 100%);
	border-left: 4px solid var(--accent-color);
}

.price-item--featured .price-item-name {
	font-weight: 600;
}

.price-item-badge {
	position: absolute;
	top: 50%;
	right: 140px;
	transform: translateY(-50%);
	background: var(--accent-color);
	color: white;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}


/* ===== Адаптивность ===== */
@media (max-width: 768px) {
	.price-table {
		padding: 12px 0;
	}

	.price-category-header {
		padding: 20px;
		flex-direction: column;
		gap: 12px;
	}

	.price-category-icon {
		width: 40px;
		height: 40px;
	}

	.price-category-icon svg {
		width: 20px;
		height: 20px;
	}

	.price-category-title {
		font-size: 1.25rem;
	}

	.price-category-desc {
		font-size: 0.9rem;
	}

	.price-item {
		padding: 14px 20px;
	}

	.price-item-name {
		padding-right: 0;
		font-size: 0.95rem;
	}

	.price-item-value {
		font-size: 1.125rem;
		align-self: flex-end;
	}

	.price-item-badge {
		right: 90px;
		font-size: 0.7rem;
		padding: 3px 8px;
	}
}

@media (max-width: 480px) {
	.price-category-header {
		padding: 16px;
	}

	.price-category-title {
		font-size: 1.125rem;
	}

	.price-item {
		padding: 12px 16px;
	}

	.price-item-name {
		font-size: 0.9rem;
	}

	.price-item-value {
		font-size: 1rem;
	}

	.price-item-badge {
		position: static;
		transform: none;
		align-self: flex-start;
		margin-top: 4px;
	}
}

/* ===== Печать ===== */
@media print {
	.price-table {
		max-width: 100%;
	}

	.price-category {
		break-inside: avoid;
		box-shadow: none;
		border: 1px solid #000;
	}

	.price-item:hover {
		background: transparent;
	}

	.price-item-badge {
		display: none;
	}
}


/* Скрытые элементы по умолчанию */
.price-item--hidden {
	display: none;
}

/* Показ при раскрытии категории + плавная анимация */
.price-list--expanded .price-item--hidden {
	display: flex !important;
	animation: slideFadeIn 0.4s ease-out;
}

/* Скрытие при поиске */
.price-item--no-match {
	display: none !important;
}

@keyframes slideFadeIn {
	from {
		opacity: 0;
		transform: translateY(-12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Кнопка "Показать ещё" */
.price-toggle-btn {
	display: block;
	width: calc(100% - 30px);
	padding: 14px;
	margin: 12px auto 5px;
	background: transparent;
	border: 2px dashed var(--price-border, #e5e7eb);
	color: var(--price-text-secondary, #6b7280);
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	border-radius: var(--price-radius, 12px);
	transition: all 0.3s ease;
}

.price-toggle-btn:hover {
	border-color: var(--primary-accent);
	color: var(--primary-accent);
	background: white;
}

.price-toggle-btn:focus-visible {
	outline: 2px solid var(--primary-accent);
	outline-offset: 2px;
}

/* ========================================
   Блок спецпредложения
   ======================================== */

/* --- Секция --- */
.special-offer-section {
	background: transparent;
}

/* --- Карточка (обёртка) --- */
.special-offer-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border-radius: 24px;
	overflow: hidden;
	background: var(--secondary-color);
}

/* ========================================
   Левая часть: контент
   ======================================== */
.special-offer-content {
	padding: 40px 36px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* Заголовок */
.special-offer-title {
	font-size: 1.375rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 16px;
	line-height: 1.3;
}

/* Описание */
.special-offer-description {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #555;
	margin: 0 0 20px;
}

/* Список преимуществ */
.special-offer-benefits {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}

.special-offer-benefit {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
}

.special-offer-benefit:last-child {
	margin-bottom: 0;
}

.special-offer-benefit-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
	color: #fff;
	background: var(--accent-color);
	border-radius: 50%;
	margin-top: 1px;
}

.special-offer-benefit-text {
	font-size: 0.875rem;
	line-height: 1.5;
	color: #444;
}

/* Разделитель */
.special-offer-divider {
	height: 1px;
	background: #d5d3cd;
	margin: 0 0 20px;
	flex-shrink: 0;
}

/* Футер: текст + цена */
.special-offer-footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.special-offer-footer-text {
	font-size: 0.8125rem;
	line-height: 1.5;
	color: #777;
	margin: 0;
	max-width: 320px;
}

/* Цены */
.special-offer-prices {
	display: flex;
	align-items: baseline;
	gap: 14px;
	flex-shrink: 0;
}

.special-offer-price-old {
	font-size: 1.125rem;
	font-weight: 500;
	color: #999;
	text-decoration: line-through;
	text-decoration-color: #c0392b;
	text-decoration-thickness: 2px;
}

.special-offer-price-new {
	font-size: 1.625rem;
	font-weight: 800;
	color: var(--accent-color);
	white-space: nowrap;
}

/* ========================================
   Правая часть: галерея изображений
   ======================================== */
.special-offer-gallery {
	position: relative;
}

.special-offer-gallery-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 12px;
	padding: 12px;
	height: 100%;
	min-height: 420px;
}

.special-offer-image-wrapper {
	border-radius: 14px;
	overflow: hidden;
	position: relative;
}

/* Кролик: верхний левый */
.special-offer-image--rabbit {
	grid-column: 1;
	grid-row: 1;
	background: #d4a0a0;
}

/* Собака: верхний правый */
.special-offer-image--dog {
	grid-column: 2;
	grid-row: 1;
	background: #b0b8c4;
}

/* Кошка: нижний (на всю ширину) */
.special-offer-image--cat {
	grid-column: 1 / -1;
	grid-row: 2;
	background: #7fa89e;
}

.special-offer-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.special-offer-image-wrapper:hover .special-offer-image {
	transform: scale(1.03);
}

/* ========================================
   Адаптив: планшеты (≤ 992px)
   ======================================== */
@media (max-width: 992px) {
	.special-offer-card {
		grid-template-columns: 1fr;
	}

	.special-offer-content {
		padding: 32px 28px;
		order: 1;
	}

	.special-offer-gallery {
		order: 0;
	}

	.special-offer-gallery-grid {
		min-height: 300px;
		padding: 10px;
		gap: 10px;
	}

	.special-offer-title {
		font-size: 1.25rem;
	}

	.special-offer-footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.special-offer-footer-text {
		max-width: 100%;
	}
}

/* ========================================
   Адаптив: мобильные (≤ 576px)
   ======================================== */
@media (max-width: 576px) {
	.special-offer-content {
		padding: 24px 20px;
	}

	.special-offer-gallery-grid {
		min-height: 240px;
		padding: 8px;
		gap: 8px;
	}

	.special-offer-image-wrapper {
		border-radius: 10px;
	}

	.special-offer-title {
		font-size: 1.125rem;
	}

	.special-offer-description {
		font-size: 0.875rem;
	}

	.special-offer-benefit-text {
		font-size: 0.8125rem;
	}

	.special-offer-price-old {
		font-size: 1rem;
	}

	.special-offer-price-new {
		font-size: 1.375rem;
	}
}

.special-offers-section {
	background: transparent;
}

.special-offers-wrapper {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

/* ========================================
   Адаптив: планшеты (≤ 992px)
   ======================================== */
@media (max-width: 992px) {
	.special-offers-wrapper {
		gap: 32px;
	}

	.special-offer-card {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   Адаптив: мобильные (≤ 576px)
   ======================================== */
@media (max-width: 576px) {
	.special-offers-wrapper {
		gap: 24px;
	}
}


/* Кнопка в футере акции */
.special-offer-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}


/* Адаптив: на мобильных кнопка на всю ширину */
@media (max-width: 576px) {
	.special-offer-footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.special-offer-btn {
		width: 100%;
		text-align: center;
	}
}

/* ===== Навигация по категориям ===== */
.price-tabs-wrapper {
	background: #fff;
	padding: 16px 0;
	margin-bottom: 32px;
}

.prices-content {
	padding-top: 60px;
	display: flex;
	flex-direction: column;
	max-width: 930px;
	margin: auto;
	gap: 35px;
}

.price-navigation::-webkit-scrollbar {
	height: 6px;
}

.price-navigation::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 3px;
}

.price-nav-item {
	flex-shrink: 0;
}

.price-nav-link {
	display: block;
	padding: 10px 20px;
	background: #f1f5f9;
	color: #475569;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 500;
	font-size: 0.9375rem;
	transition: all 0.3s ease;
	white-space: nowrap;
	border: 2px solid transparent;
}

.price-nav-link:hover {
	background: #e2e8f0;
	color: #1e293b;
}

.price-nav-item.active .price-nav-link {
	background: #0a4f6e;
	color: #fff;
	border-color: #0a4f6e;
}

/* ===== Контент табов ===== */
.price-tab-pane {
	display: none;
	animation: fadeIn 0.4s ease;
	margin-bottom: 48px;
	max-width: 930px;
	margin: 0 auto;
	background: #f1f5f9;
	border-radius: 20px;
	padding: 15px;
	width: 100%;
}

.price-tab-pane.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.price-category-header {
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 2px solid #e5e7eb;
}

.price-category-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0;
}

/* ===== Адаптив ===== */
@media (max-width: 768px) {
	.price-tabs-wrapper {
		padding: 12px 0;
	}

	.price-navigation {
		gap: 6px;
	}

	.price-nav-link {
		padding: 8px 16px;
		font-size: 0.875rem;
	}

	.price-category-title {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.price-tabs-wrapper {
		position: relative;
		top: 0;
	}

	.price-nav-link {
		padding: 6px 12px;
		font-size: 0.8125rem;
	}
}

/* ========================================
   Layout: Сетка (Сайдбар + Контент)
   ======================================== */
.prices-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	/* Меню 240px, контент - остаток */
	gap: 40px;
	align-items: start;
}

/* ========================================
   Сайдбар (ПК)
   ======================================== */
.price-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	position: sticky;
	top: 100px;
	/* Прилипает при скролле */
}

.price-nav-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.price-nav-item {
	margin-bottom: 4px;
}

/* ========================================
   Select (Мобильные)
   ======================================== */
.price-nav-select {
	display: none;
	/* Скрыт на ПК */
	width: 100%;
	padding: 12px;
	font-size: 1rem;
	border: 1px solid #d1d5db;
	color: var(--text-color);
	border-radius: 8px;
	background: #fff;
	appearance: none;
	/* Убирает стандартную стрелку браузера */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
}

.prices-sidebar {
	max-width: 900px;
	margin: auto;
}

.prices-sidebar-desc {
	max-width: 900px;
	margin: auto;
	text-align: left;
	font-size: 28px;
	font-weight: 700;
	color: black;
	margin-bottom: 35px;
	line-height: 1.2em;
	padding: 24px 28px 16px 28px;
	border-bottom: 2px solid #e5e7eb;
}

/* ========================================
   Адаптив: Мобильные (≤ 992px)
   ======================================== */
@media (max-width: 992px) {
	.prices-layout {
		grid-template-columns: 1fr;
		/* Одна колонка */
		gap: 20px;
	}

	.prices-sidebar-desc {
		font-size: 21px;
		margin-bottom: 20px;
		padding-bottom: 16px;
		text-align: center;
	}

	.price-nav-list {
		display: none;
		/* Скрываем список на мобильных */
	}

	.price-nav-select {
		display: block;
		/* Показываем выпадающий список */
	}

	.prices-sidebar {

		background: #fff;
		padding: 10px 0 0;
		box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
		border-radius: 8px;
	}

}

:root {
	--primary-color-light: #e6f0f5;
	--vac-border: #e5e7eb;
	--vac-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vacancies-section {
	background: var(--vac-bg);
}

.vacancies-grid {
	display: grid;
	align-items: start;
	grid-template-columns: repeat(auto-fill, minmax(calc(50% - 14px), 1fr));
	gap: 28px;
}

/* Карточка */
.vacancy-card {
	background: white;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	border: 1px solid var(--vac-border);
	transition: transform var(--vac-transition), box-shadow var(--vac-transition);
}

.vacancy-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.vacancy-card-header {
	margin-bottom: 20px;
}

.vacancy-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0 0 10px;
	line-height: 1.3;
}

.vacancy-short-desc {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--text-color);
	margin: 0;
}

/* Кнопка раскрытия */
.vacancy-toggle-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 33px 15px 33px;
	background: transparent;
	border: 1px solid var(--vac-border);
	border-radius: 10px;
	color: var(--primary-color);
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all var(--vac-transition);
}

.vacancy-toggle-btn:hover {
	background: var(--primary-color-light);
	border-color: var(--primary-color);
}

.vacancy-toggle-btn .btn-icon {
	width: 20px;
	height: 20px;
	transition: transform var(--vac-transition);
	margin-left: 5px;
}

.vacancy-toggle-btn[aria-expanded="true"] .btn-icon {
	transform: rotate(180deg);
}

/* Раскрывающийся блок */
.vacancy-details {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.45s ease, opacity 0.3s ease, padding-top 0.45s ease;

}

.vacancy-btn-wrap {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-between;
	gap: 20px;
}

.vacancy-details.is-open {
	padding-top: 30px;
	max-height: 2500px;
	/* Достаточно для длинного контента */
	opacity: 1;
}

.details-section {
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px dashed var(--vac-border);
}

.details-section:first-child {
	border-top: none;
	margin-top: 0;
	padding-top: 0;
}

.details-section h3 {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--text-color);
	margin: 0 0 12px;
}

.details-section ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.details-section li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 8px;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--text-color);
}

.details-section li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--accent-color);
	font-weight: 700;
	font-size: 1.2em;
	line-height: 1.2;
}

/* Адаптив */
@media (max-width: 768px) {
	.vacancies-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.vacancy-card {
		padding: 20px;
	}

	.section-title {
		margin-bottom: 32px;
	}
}

/* === Модальное окно === */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 9999;
	padding: 20px;
}

.modal-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.modal-container {
	background: var(--text-color);
	border-radius: 16px;
	padding: 32px;
	max-width: 380px;
	width: 100%;
	position: relative;
	transform: translateY(-20px) scale(0.98);
	transition: transform 0.3s ease;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.modal-overlay.is-open .modal-container {
	transform: translateY(0) scale(1);
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	font-size: 28px;
	line-height: 1;
	color: #acadaf;
	cursor: pointer;
	padding: 4px;
	transition: color 0.2s;
}

.modal-close:hover {
	color: white;
}

.modal-title {
	margin: 0 0 24px;
	font-size: 1.5rem;
	font-weight: 700;
	color: white;
}

/* === Форма === */
.contact-form .form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: white;
	font-size: 0.95rem;
}

.required {
	color: #ef4444;
	margin-left: 2px;
}

.form-control {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 1rem;
	color: #111827;
	background: #fff;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control::placeholder {
	color: #9ca3af;
}

.form-control:focus {
	outline: none;
	border-color: #0a4f6e;
	box-shadow: 0 0 0 3px rgba(10, 79, 110, 0.15);
}

.form-control.error {
	border-color: #ef4444;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-actions {
	margin-top: 24px;
}

.btn-submit {
	width: 100%;
	padding: 14px;
	background: #0a4f6e;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}

.btn-submit:hover {
	background: #083d56;
	transform: translateY(-2px);
}

.btn-submit:active {
	transform: translateY(0);
}

.btn-submit:disabled {
	background: #9ca3af;
	cursor: not-allowed;
	transform: none;
}

.form-status {
	margin-top: 16px;
	font-size: 0.9rem;
	text-align: center;
	min-height: 20px;
}

.form-status.success {
	color: #059669;
}

.form-status.error {
	color: #dc2626;
}

/* === Адаптив === */
@media (max-width: 576px) {
	.modal-container {
		padding: 24px 20px;
	}

	.modal-title {
		font-size: 1.35rem;
	}

	.form-control {
		padding: 11px 14px;
	}
}

/* === Секция смежных услуг === */
.related-services-section {
	background: #f8f9fa;
	/* Светлый фон для контраста */
}

/* === Сетка (Grid) === */
.related-services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--bs-gutter-x);
}

/* === Карточка (ссылка) === */
.related-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	/* Чтобы все карточки были одинаковой высоты */
}

.related-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* === Изображение === */
.related-card-image {
	position: relative;
	aspect-ratio: 5 / 4;
	/* Фиксированное соотношение сторон */
	overflow: hidden;
}

.related-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

/* Стрелка поверх картинки */
.related-card-arrow {
	position: absolute;
	bottom: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #0a4f6e;
	/* Фирменный цвет */
	transition: background 0.3s ease;
}

.related-card:hover .related-card-arrow {
	background: #0a4f6e;
	color: #fff;
}

/* === Контент карточки === */
.related-card-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.related-card-price {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.4;
	color: var(--accent-color);
	margin-bottom: 8px;
}

.related-card-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #111827;
	margin: 0 0 8px;
	transition: color 0.3s ease;
}

.related-card:hover .related-card-title {
	color: #0a4f6e;
}

.related-card-desc {
	font-size: 0.9375rem;
	line-height: 1.5;
	color: #6b7280;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media(max-width: 1200px) {
	.related-services-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media(max-width: 991px) {
	.related-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* === Адаптив === */
@media (max-width: 575px) {
	.related-services-grid {
		grid-template-columns: 1fr;
		/* Одна колонка на мобильных */
		gap: 20px;
	}
}

/* Список контактов */
.contact-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.contact-item-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background: #0a4f6e;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.contact-item-icon svg {
	width: 24px;
	height: 24px;
}

.contact-item-content {
	flex-grow: 1;
}

.contact-item-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #6b7280;
	margin: 0 0 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.contact-item-value {
	font-size: 1rem;
	color: #1f2937;
	margin: 0 0 4px;
	line-height: 1.5;
}

.contact-link {
	color: #0a4f6e;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}

.contact-link:hover {
	color: #083d56;
	text-decoration: underline;
}

.contact-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #fff;
}

/* Мессенджеры */
.messengers-list {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.messenger-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9375rem;
	transition: transform 0.2s, box-shadow 0.2s;
	color: #fff;
}

.messenger-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	color: #fff;
}

.messenger-btn.whatsapp {
	background: #25D366;
}

.messenger-btn.telegram {
	background: #0088cc;
}



/* Адаптив */
@media (max-width: 991px) {
	.contact-item {
		gap: 12px;
	}

	.contact-item-icon {
		width: 40px;
		height: 40px;
	}

	.contact-item-icon svg {
		width: 20px;
		height: 20px;
	}
}

@media (max-width: 576px) {

	.contact-item-value {
		font-size: 0.9375rem;
	}

	.messenger-btn {
		padding: 8px 14px;
		font-size: 0.875rem;
	}

}

/* Контейнер карты */
.map-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 400px;
	border-radius: 16px;
	overflow: hidden;
	background: #f1f5f9;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Placeholder (заглушка) */
.map-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	z-index: 1;
	transition: opacity 0.3s ease;
}

.map-placeholder.hidden {
	opacity: 0;
	pointer-events: none;
}

.placeholder-content {
	text-align: center;
	padding: 24px;
	max-width: 280px;
}

.placeholder-icon {
	width: 48px;
	height: 48px;
	color: #0a4f6e;
	margin: 0 auto 16px;
	opacity: 0.7;
}

.placeholder-content p {
	color: #6b7280;
	font-size: 0.9375rem;
	margin: 0 0 16px;
}

/* Кнопка загрузки */
.btn-load-map {
	padding: 10px 24px;
	background: #0a4f6e;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 0.9375rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s;
}

.btn-load-map:hover {
	background: #083d56;
}

/* Iframe карты */
.map-frame {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 16px;
	z-index: 2;
}

/* Анимация появления */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.map-frame.loaded {
	animation: fadeIn 0.4s ease;
}

/* Адаптив */
@media (max-width: 991px) {
	.map-wrapper {
		min-height: 350px;
	}
}

@media (max-width: 576px) {
	.map-wrapper {
		min-height: 300px;
	}

	.placeholder-content {
		padding: 16px;
	}

	.placeholder-icon {
		width: 40px;
		height: 40px;
	}
}

/* === Секция статей === */
.articles-section {
	background: #fff;
}

/* === Фильтры === */
.articles-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.filter-btn {
	padding: 10px 20px;
	background: #f1f5f9;
	border: 2px solid transparent;
	border-radius: 30px;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #64748b;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-btn:hover {
	background: #e2e8f0;
	color: #1e293b;
}

.filter-btn.active {
	background: #0a4f6e;
	color: #fff;
	border-color: #0a4f6e;
}

/* === Сетка статей === */
.articles-grid {
	margin-top: 0;
}

/* === Карточка статьи === */
.article-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
	height: 100%;
	opacity: 1;
	position: relative;
	cursor: pointer;
}
 .article-card .article-read-more::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	/* Слой поверх контента карточки, но под интерактивными элементами */
}



/* 5. Важно: интерактивные элементы внутри карточки (если появятся) 
   должны быть выше слоя-ссылки, чтобы на них можно было кликнуть */
.article-card button,
.article-card input,
.article-card .modal-trigger {
	position: relative;
	z-index: 3;
	cursor: default;
	/* или pointer, по необходимости */
}
.article-card.hidden {
	display: none;
}

.article-card.fade-out {
	opacity: 0;
	transform: scale(0.95);
}

.article-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Изображение */
.article-card-image {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.article-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

.article-category {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 6px 14px;
	background: #0a4f6e;
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 600;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Контент */
.article-card-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.article-meta {
	margin-bottom: 12px;
}

.article-date {
	font-size: 0.875rem;
	color: #94a3b8;
}

.article-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 12px;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.article-card:hover .article-title {
	color: #0a4f6e;
}

.article-excerpt {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #64748b;
	margin: 0 0 20px;
	flex-grow: 1;

	/* Ограничение до 3 строк */
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Кнопка "Читать" */
.article-read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 0.9375rem;
	color: #0a4f6e;
	text-decoration: none;
	transition: gap 0.3s ease;
}

.article-read-more:hover {
	gap: 12px;
	color: #083d56;
}

.article-read-more svg {
	transition: transform 0.3s ease;
}

.article-read-more:hover svg {
	transform: translateX(4px);
}

/* Сообщение "не найдено" */
.articles-not-found {
	grid-column: 1 / -1;
}

/* === Адаптив === */
@media (max-width: 991px) {
	.articles-filters {
		gap: 8px;
	}

	.filter-btn {
		padding: 8px 16px;
		font-size: 0.875rem;
	}

	.article-card-content {
		padding: 20px;
	}

	.article-title {
		font-size: 1.125rem;
	}
}

@media (max-width: 576px) {

	.articles-filters {
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 8px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.articles-filters::-webkit-scrollbar {
		display: none;
	}

	.filter-btn {
		flex-shrink: 0;
		padding: 8px 14px;
		font-size: 0.8125rem;
	}

	.article-card-content {
		padding: 16px;
	}

	.article-title {
		font-size: 1.0625rem;
	}

	.article-excerpt {
		font-size: 0.875rem;
		-webkit-line-clamp: 2;
	}
}

/* Анимация для колонок при фильтрации */
.articles-grid>[data-category] {
	transition: opacity 0.3s ease, transform 0.3s ease;
	will-change: opacity, transform;
}

/* Скрытая колонка */
.articles-grid>[data-category][style*="display: none"] {
	opacity: 0;
	transform: scale(0.95);
}

/* Сообщение "не найдено" растягиваем на всю ширину */
.articles-not-found {
	grid-column: 1 / -1;
	width: 100%;
}


/* =========================================
   🐾 Базовые переменные и сброс
   ========================================= */
:root {
	/* Спокойный синий (доверие, медицина) */
	--color-primary-dark: #1B4F6B;
	--color-text: #2D3748;
	--color-text-light: #4A5568;
	--color-bg-light: #F8FAFC;
	--color-bg-quote: #EFF6FF;
	--color-border: #E2E8F0;
	--spacing-unit: 1rem;
	--radius: 8px;
	--shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* =========================================
   📄 Контейнер статьи
   ========================================= */
.blog-post {
	max-width: 900px;
	text-align: justify;
	margin: 0 auto;
	color: var(--color-text);
	line-height: 1.75;
	font-size: 1.05rem;
}

/* =========================================
   🔤 Типографика
   ========================================= */

.blog-post img {
	border-radius: 12px;
	width: 100%;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.blog-post h2 {
	font-size: clamp(1.4rem, 3vw, 1.75rem);
	color: var(--color-primary-dark);
	margin: 2.5rem 0 1rem;
	line-height: 1.3;
	font-weight: 600;
	scroll-margin-top: 80px;
	/* Для якорных ссылок */
}

.blog-post p {
	margin: 0 0 1.25rem;
}

/* =========================================
   📋 Списки
   ========================================= */
.blog-post ul,
.blog-post ol {
	margin: 0 0 1.5rem;
	padding-left: 1.1rem;
}

.blog-post li {
	margin-bottom: 0.6rem;
}

.blog-post ul li {
	list-style-type: "• ";
	padding-left: 0.3em;
}

.blog-post ol li {
	padding-left: 0.3em;
}

/* =========================================
   💡 Блоки-цитаты / предупреждения
   ========================================= */
.blog-post blockquote {
	background: var(--color-bg-quote);
	border-left: 4px solid var(--accent-color);
	padding: 1.25rem 1.5rem;
	margin: 2rem 0;
	border-radius: 0 var(--radius) var(--radius) 0;
	font-style: normal;
	color: var(--color-text-light);
	display: flex;
	gap: 10px;
}

.blog-post blockquote svg {
	flex-shrink: 0;
	margin-top: 3px;
}

.blog-post blockquote p {
	margin: 0;
	font-weight: 500;
	line-height: 1.6;
}

/* =========================================
   🎯 CTA-блок и кнопка
   ========================================= */
.cta-block {
	background: linear-gradient(135deg, var(--color-bg-light) 0%, #E0F2FE 100%);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 2rem;
	margin: 3rem 0 1rem;
	text-align: center;
	box-shadow: var(--shadow-sm);
}

.cta-block p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: var(--color-text);
}

/* =========================================
   📱 Адаптивность
   ========================================= */
@media (max-width: 768px) {
	.blog-post {
		padding: 1.5rem 0;
		font-size: 1rem;
	}

	.blog-post h1 {
		font-size: 1.85rem;
	}

	.blog-post h2 {
		font-size: 1.45rem;
	}

	.cta-block {
		padding: 1.5rem;
	}


}

/* === Гамбургер-кнопка === */

.navbar-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 44px;
	padding: 0;
	background: transparent;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	z-index: 1001;
	margin-left: auto;
	/* Прижать вправо */
}

/* Иконка гамбургера (3 полоски) */
.hamburger-icon {
	display: block;
	width: 25px;
	height: 18px;
	position: relative;
}

.hamburger-icon span {
	display: block;
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: 0;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.main-header.accent .hamburger-icon span,
.main-header.is-sticky .hamburger-icon span {
	background: #000;
}

.hamburger-icon span:nth-child(1) {
	top: 0;
}

.hamburger-icon span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.hamburger-icon span:nth-child(3) {
	bottom: 0;
}

/* Анимация в крестик при открытии */
.navbar-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
	transform: rotate(45deg);
	top: 50%;
	margin-top: -1px;
}

.navbar-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
	opacity: 0;
}

.navbar-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
	transform: rotate(-45deg);
	bottom: 50%;
	margin-bottom: -1px;
}

/* === Overlay (затемнение фона) === */
.mobile-menu-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 1002;
}

.mobile-menu-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

/* === Панель меню (Offcanvas) === */
.mobile-menu-panel {
	position: fixed;
	top: 0;
	right: 0;
	width: 280px;
	max-width: 85vw;
	height: 100svh;
	background: #fff;
	z-index: 1003;
	transform: translateX(100%);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
}

.mobile-menu-panel.is-open {
	transform: translateX(0);
}

/* Шапка мобильного меню */
.mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid #e5e7eb;
	position: sticky;
	top: 0;
	background: #fff;
	z-index: 1;
}

.mobile-menu-logo img {
	height: 40px;
	width: auto;
}

.mobile-menu-close {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	font-size: 28px;
	color: #6b7280;
	cursor: pointer;
	line-height: 1;
}

/* Контакты в мобильном меню */
.mobile-menu-contacts {
	padding: 16px 20px;
	background: #f8f9fa;
	border-bottom: 1px solid #e5e7eb;
}

.mobile-contact-link {
	display: block;
	font-size: 1.125rem;
	font-weight: 600;
	color: #0a4f6e;
	text-decoration: none;
	margin-bottom: 4px;
}

.mobile-contact-time {
	display: block;
	font-size: 0.875rem;
	color: #6b7280;
	margin-bottom: 12px;
	font-weight: 700;
	margin-top: 6px;
}

.mobile-messengers {
	display: flex;
	gap: 12px;
}

.messenger-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	color: #fff;
	text-decoration: none;
	transition: transform 0.2s;
}

.messenger-icon:hover {
	transform: translateY(-2px);
}

.messenger-icon.telegram {
	background: #0088cc;
}

.messenger-icon.whatsapp {
	background: #25D366;
}

.navbar-mob-wrap {
	display: flex;
	gap: 13px;
	align-items: center;
}

.main-header .navbar-mob-wrap-link {
	display: none;
}

.main-header.is-sticky .navbar-mob-wrap-link {
	display: block;
}

@media(min-width: 992px) {
	.navbar-mob-wrap {
		display: none;
	}
}

/* Навигация */
.mobile-menu-nav {
	padding: 8px 0;
	flex-grow: 1;
}

.mobile-nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-nav-item {
	border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
	font-size: 1rem;
	font-weight: 500;
	color: #1f2937;
	text-decoration: none;
	transition: background 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-item.active>.mobile-nav-link {
	background: #f8f9fa;
	color: #0a4f6e;
}

/* Подменю (аккордеон) */
.mobile-submenu {
	list-style: none;
	padding: 0;
	margin: 0;
	background: #f8f9fa;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.mobile-submenu.is-open {
	max-height: 3000px;
}

.mobile-submenu .mobile-nav-link {
	padding-left: 36px;
	font-size: 0.9375rem;
	color: #4b5563;
}

/* Кнопка +/- для подменю */
.mobile-submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	font-size: 1.25rem;
	color: #9ca3af;
	transition: transform 0.3s;
}

.mobile-nav-parent.active>.mobile-nav-link .mobile-submenu-toggle {
	transform: rotate(45deg);
	/* Превращаем + в х */
}

/* Футер мобильного меню */
.mobile-menu-footer {
	padding: 20px;
	border-top: 1px solid #e5e7eb;
	background: #f8f9fa;
}

.mobile-promo-link {
	display: block;
	padding: 12px;
	background: #0a4f6e;
	color: #fff;
	text-align: center;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	margin-bottom: 16px;
}

.mobile-address {
	font-size: 0.875rem;
	color: #6b7280;
	margin: 0;
	font-style: normal;
	text-align: center;
	line-height: 1.5;
}

/* === Адаптив: показываем мобильное меню только на мобильных === */
@media (min-width: 992px) {

	.navbar-toggle,
	.mobile-menu-overlay,
	.mobile-menu-panel {
		display: none !important;
	}
}

@media (max-width: 991px) {

	/* Скрываем десктопное меню на мобильных */
	.main-menu {
		display: none !important;
	}

	.header-actions {
		display: none !important;
	}

	/* Показываем кнопку гамбургера */
	.navbar-toggle {
		display: flex;
	}
}

@media(max-width: 575px) {
	header.main-header.is-sticky .logo {
		display: none !important;
	}

	header.main-header.is-sticky .logo-mob {
		display: block !important;
	}

	header.main-header.is-sticky .navbar {
		padding: 5px 0;
	}
}

/* === Кнопка "Наверх" === */
.btn-to-top {
	position: fixed;
	bottom: 24px;
	right: 24px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: #0a4f6e;
	color: #fff;
	border: none;
	border-radius: 50px;
	font-size: 0.9375rem;
	font-weight: 500;
	cursor: pointer;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease,
		transform 0.3s ease,
		background 0.3s ease,
		box-shadow 0.3s ease;
	box-shadow: 0 4px 12px rgba(10, 79, 110, 0.3);
	will-change: transform;
}

/* Показываем кнопку */
.btn-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Hover-эффект */
.btn-to-top:hover {
	background: #083d56;
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(10, 79, 110, 0.4);
	color: #fff;
}

/* Active-эффект */
.btn-to-top:active {
	transform: translateY(-1px);
	transition: transform 0.1s ease;
}

/* Иконка */
.btn-to-top svg {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.btn-to-top:hover svg {
	transform: translateY(-2px);
}

/* Текст (скрыт на очень маленьких экранах) */
.btn-to-top-text {
	white-space: nowrap;
}

/* === Адаптив === */
@media (max-width: 576px) {
	.btn-to-top {
		bottom: 16px;
		right: 16px;
		padding: 10px 16px;
		border-radius: 40px;
	}

	.btn-to-top-text {
		display: none;
		/* Показываем только иконку на мобильных */
	}

	.btn-to-top {
		width: 48px;
		height: 48px;
		padding: 0;
		justify-content: center;
	}
}

/* === Доступность === */
.btn-to-top:focus {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.btn-to-top:focus:not(:focus-visible) {
	outline: none;
}

.btn-to-top:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.header-actions_item-phone {
	display: flex;
	flex-direction: column;
	gap: 1px;
	align-items: center;
}

.header-actions_item-phone span {
	font-size: 14px;
	font-weight: 800;
}

@media(max-width: 1440px) {
	.navbar-brand img {
		max-width: 100px;
	}

	.main-menu ul li a,
	.header-actions {
		font-size: 14px;
	}

}

@media(max-width: 1200px) {
	.header-actions_item-hid {
		display: none;
	}
}

@media(max-width: 767px) {
	.navbar-brand img {
		max-width: 115px;
	}
}

/* === Модальное окно === */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 9999;
	padding: 20px;
}

.modal-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.modal-container {
	background: #fff;
	border-radius: 20px;
	padding: 32px;
	max-width: 520px;
	width: 100%;
	position: relative;
	transform: translateY(-20px) scale(0.98);
	transition: transform 0.3s ease;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
	max-height: 90vh;
	overflow-y: auto;
}

.modal-overlay.is-open .modal-container {
	transform: translateY(0) scale(1);
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	font-size: 32px;
	line-height: 1;
	color: #9ca3af;
	cursor: pointer;
	padding: 4px;
	transition: color 0.2s;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.modal-close:hover {
	color: #1f2937;
	background: #f3f4f6;
}

.modal-title {
	margin: 0 0 8px;
	font-size: 1.5rem;
	font-weight: 700;
	color: #111827;
}

.modal-subtitle {
	margin: 0 0 24px;
	font-size: 0.9375rem;
	color: #6b7280;
}

/* === Форма === */
.booking-form .form-group {
	margin-bottom: 20px;
	padding-bottom: 0;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #374151;
	font-size: 0.95rem;
}

.required {
	color: #ef4444;
	margin-left: 2px;
}

.form-control {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	font-size: 1rem;
	color: #111827;
	background: #fff;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control::placeholder {
	color: #9ca3af;
}

.form-control:focus {
	outline: none;
	border-color: #0a4f6e;
	box-shadow: 0 0 0 4px rgba(10, 79, 110, 0.1);
}

.form-control.error {
	border-color: #ef4444;
	box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

textarea.form-control {
	min-height: 50px;
	height: 70px;
	resize: none;
}

select.form-control {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
}

/* Чекбокс */
.form-checkbox {
	margin-top: 8px;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 0.9rem;
	color: #4b5563;
}

.checkbox-label input {
	width: 18px;
	height: 18px;
	accent-color: #0a4f6e;
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
	margin-top: 1px;
}
.checkbox-label input.is-invalid {
	box-shadow: 0 0 0 2px #dc3545;
}
.checkbox-text a {
	color: #0a4f6e;
	text-decoration: none;
}

.checkbox-text a:hover {
	text-decoration: underline;
}
/* Скрытый по умолчанию блок ошибки */
.invalid-feedback {
	display: none;
	color: #dc3545;
	font-size: 0.875rem;
	margin-top: 4px;
	line-height: 1.3;
}

/* Класс для показа */
.invalid-feedback.d-block,
.invalid-feedback--show {
	display: block !important;
}
.form-control.is-invalid,
.was-validated .form-control:invalid {
	padding-right: 16px;
}

/* Ошибки */
.invalid-feedback {
	display: none;
	margin-top: 0;
	font-size: 0.85rem;
	color: #ef4444;
}

.invalid-feedback.is-visible {
	display: none;
}

.form-status {
	margin-top: 16px;
	font-size: 0.9rem;
	text-align: center;
	min-height: 24px;
	display: none;
}

.form-status.success {
	color: #059669;
	font-weight: 500;
}

.form-status.error {
	color: #dc2626;
	font-weight: 500;
}

/* Кнопка */
.form-actions {
	margin-top: 28px;
}



/* === Адаптив === */
@media (max-width: 576px) {
	.modal-container {
		padding: 24px 20px;
		border-radius: 16px;
	}

	.modal-title {
		font-size: 1.35rem;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.form-control {
		padding: 11px 14px;
		font-size: 0.95rem;
	}

	.btn-submit {
		padding: 12px 20px;
		font-size: 0.95rem;
	}
}

/* === Toast-уведомление === */

.app-toast {
	position: fixed;
	top: 90%;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: #059669;
	color: #fff;
	padding: 14px 24px;
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 500;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 10000;
	text-align: center;
	max-width: 500px;
	pointer-events: none;
	width: calc(100% - 30px);
}


.app-toast--show {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(-50%);
}

.app-toast--error {
	background: #dc2626;
}


.policy-subtitle {
	padding-bottom: 8px;
	border-bottom: 2px solid #e5e7eb;
	margin-bottom: 16px;
}

.policy-content {
	font-size: 1.05rem;
	line-height: 1.7;
	color: #374151;
}

.policy-content a {
	color: #0a4f6e;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}

.policy-content a:hover {
	color: #083d56;
	text-decoration: underline;
}

.policy-list li {
	position: relative;
	padding-left: 8px;
}

.policy-contact {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 12px;
	border-left: 4px solid #0a4f6e;
}

.policy-footer .btn {
	padding: 10px 24px;
	font-weight: 500;
}

/* Адаптив */
@media (max-width: 768px) {
	.policy-title {
		font-size: 2rem;
	}

	.policy-subtitle {
		font-size: 1.25rem;
	}

	.policy-content {
		font-size: 1rem;
	}

	.policy-contact {
		padding: 16px;
	}
}

.contact-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-right: 8px;
}

.contact-icon {
	flex-shrink: 0;
	color: #0a4f6e;
	opacity: 0.9;
}

.policy-contact a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px dashed #0a4f6e;
	transition: color 0.2s, border-color 0.2s;
}

.policy-contact a:hover {
	color: #0a4f6e;
	border-bottom-style: solid;
}

.error-section {
	flex: 1;
	display: flex;
	align-items: center;
	padding-top: 160px;
}

.error-wrapper {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.error-code {
	font-size: 160px;
	line-height: 1em;
	font-weight: 800;
	color: var(--accent-color);
	text-align: center;
}

/* Иллюстрация */
.error-visual {
	margin-bottom: 32px;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.error-illustration {
	width: 100%;
	height: auto;
	display: block;
}

/* Контент */
.error-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #111827;
	margin: 0 0 16px;
	line-height: 1.2;
}

.error-text {
	font-size: 1.15rem;
	color: #4b5563;
	margin: 0 0 32px;
	line-height: 1.6;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

/* Кнопки */
.error-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.btn-primary {
	background: #0a4f6e;
	border-color: #0a4f6e;
	color: #fff;
	padding: 12px 28px;
	border-radius: 12px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
	background: #083d56;
	transform: translateY(-2px);
	color: #fff;
}

.btn-outline-secondary {
	border: 2px solid #6b7280;
	color: #4b5563;
	padding: 12px 28px;
	border-radius: 12px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	transition: all 0.2s;
	background: transparent;
}

.btn-outline-secondary:hover {
	border-color: #0a4f6e;
	color: #0a4f6e;
	background: #f1f5f9;
}

/* Быстрые ссылки */
.error-links-title {
	font-size: 1rem;
	color: #6b7280;
	margin: 0 0 16px;
}

.error-links-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	max-width: 400px;
	margin: 0 auto 32px;
}

.error-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	color: #1f2937;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	transition: all 0.2s;
	text-align: left;
}

.error-link:hover {
	border-color: #0a4f6e;
	color: #0a4f6e;
	box-shadow: 0 4px 12px rgba(10, 79, 110, 0.1);
	transform: translateY(-2px);
}

.error-link svg {
	flex-shrink: 0;
	color: #0a4f6e;
	opacity: 0.9;
}

/* Поиск */
.error-search {
	max-width: 400px;
	margin: 0 auto;
}

.search-form {
	display: flex;
	gap: 8px;
}

.search-input {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	font-size: 1rem;
	color: #111827;
	background: #fff;
	transition: border-color 0.2s;
}

.search-input:focus {
	outline: none;
	border-color: #0a4f6e;
	box-shadow: 0 0 0 4px rgba(10, 79, 110, 0.1);
}

.search-btn {
	padding: 12px 20px;
	background: #0a4f6e;
	border: none;
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.search-btn:hover {
	background: #083d56;
}

/* Адаптив */
@media (max-width: 768px) {
	.error-title {
		font-size: 2rem;
	}

	.error-code {
		font-size: 130px;
	}

	.error-text {
		font-size: 1.05rem;
	}

	.error-actions {
		flex-direction: column;
		align-items: center;
	}

	.btn-primary,
	.btn-outline-secondary {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}

	.error-links-grid {
		grid-template-columns: 1fr;
	}

	.search-form {
		flex-direction: column;
	}

	.search-btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.error-section {
		padding: 120px 0 50px;
	}

	.error-code {
		font-size: 110px;
	}

	.error-title {
		font-size: 1.75rem;
	}

	.error-visual {
		max-width: 300px;
	}
}

.error-link:focus-visible,
.btn-primary:focus-visible,
.btn-outline-secondary:focus-visible,
.search-input:focus-visible {
	outline: 2px solid #0a4f6e;
	outline-offset: 2px;
}

/* 🔍 Поиск по прайсу */
.prices-search-wrapper {
	position: relative;
	margin: 1.3rem auto;
	max-width: 900px;
	width: 100%;
}

.prices-search-input {
	width: 100%;
	padding: 0.875rem 2.5rem 0.875rem 3rem;
	font-size: 1rem;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	background: #fff;
	transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none;
}

.prices-search-input:focus {
	outline: none;
	border-color: #0a4f6e;
	box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

.prices-search-icon {
	position: absolute;
	left: 1rem;
	top: 16px;
	width: 18px;
	height: 18px;
	color: #999;
	pointer-events: none;
}

.prices-search-icon svg {
	width: 100%;
	height: 100%;
}

.prices-search-clear {
	position: absolute;
	right: 0.75rem;
	top: 13px;
	background: none;
	border: none;
	font-size: 1.25rem;
	color: #999;
	cursor: pointer;
	padding: 0.25rem;
	line-height: 1;
	transition: color 0.2s;
}

.prices-search-clear:hover {
	color: #666;
}

/* Состояния элементов при поиске */
.price-item--no-match {
	display: none !important;
}

.price-category--no-results {
	display: none !important;
}

.price-search-info {
	margin: 0.5rem 0 1rem;
	font-size: 0.9rem;
	color: #666;
	display: none;
}

.price-search-info.active {
	display: block;
}

/* Анимация появления результатов */
.price-item {
	transition: opacity 0.2s ease;
}

.price-item--no-match {
	opacity: 0;
	height: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

/* Скрытие элементов при поиске */
.price-item--no-match,
.price-category--no-results,
.price-tab-pane--no-results {
	display: none !important;
}

/* Плавные переходы */
.price-item,
.price-tab-pane {
	transition: opacity 0.2s ease, display 0.2s ease;
}

.price-item--no-match {
	opacity: 0;
	height: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

/* Сообщение о результатах поиска */
.price-search-info {
	margin: 0.5rem 0 1rem;
	padding: 0.75rem 1rem;
	font-size: 0.9rem;
	color: #555;
	background: #f0f7ff;
	border-left: 4px solid #0a4f6e;
	border-radius: 0 8px 8px 0;
	display: none;
}

.price-search-info.active {
	display: block;
	animation: slideDown 0.2s ease;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Состояние "ничего не найдено" */
.price-search-info:contains('❌') {
	background: #fff5f5;
	border-left-color: #e53e3e;
	color: #c53030;
}

.prices-content.searching {
	position: relative;
	pointer-events: none;
	opacity: 0.7;
}

.prices-content.searching::after {
	content: '🔍 Ищем...';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 1rem 2rem;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	font-weight: 500;
	z-index: 10;
	animation: pulse 1.5s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.6;
	}
}


.cookie-banner {
    --bg: #ffffff;
    --text: #1f2937;
    --btn-reject-bg: #f3f4f6;
    --btn-reject-hover: #e5e7eb;
    --shadow: 0 -6px 24px rgba(0,0,0,0.12);

    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg);
    box-shadow: var(--shadow);
    padding: 18px 20px;
    z-index: 9999;
    display: none;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    animation: slideUp 0.3s ease-out;
}

.cookie-banner__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.cookie-banner__text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text);
    text-align: center;
}

.cookie-banner__text a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.2s;
}
.cookie-banner__text a:hover { text-decoration: none; }

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: 10px 22px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn--accept {
    background: var(--accent-color);
    color: #fff;
}
.cookie-btn--accept:hover { background: #206a81; transform: translateY(-1px); }

.cookie-btn--reject {
    background: var(--btn-reject-bg);
    color: #374151;
}
.cookie-btn--reject:hover { background: var(--btn-reject-hover); }

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (min-width: 768px) {
    .cookie-banner__wrapper {
        flex-direction: row;
        justify-content: space-between;
        gap: 24px;
    }
    .cookie-banner__text p {
        text-align: left;
        max-width: 80%;
    }
    .cookie-banner__actions {
        flex-shrink: 0;
    }
}