@charset "UTF-8";
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..800&family=Roboto:wght@100;300;400;500;700;900&family=Montserrat:wght@100..900&display=swap");
*, *::after, *::before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
	--default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
	--heading-font: "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
	--nav-font: "Montserrat", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
	--background-color: #ffffff; /* Background color for the entire website, including individual sections */
	--default-color: #364d59; /* Default color used for the majority of the text content across the entire website */
	--heading-color: #52565e; /* Color for headings, subheadings and title throughout the website */
	--accent-color: #ffaa00; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
	--surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
	--contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
	--alt-color: color-mix(in srgb, var(--default-color), transparent 50%); /* Alternative color */
	--alt-heading-color: #005500;
	--alt-accent-color: #ff9021;
	--border-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
	--nav-color: rgba(255, 255, 255, 0.75); /* The default color of the main navmenu links */
	--nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
	--nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
	--nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
	--nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
	--nav-dropdown-hover-color: #feb900; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
	--background-color: #f4f7f6;
	--surface-color: #ffffff;
}

.dark-background {
	--background-color: #06060680;
	--default-color: #ffffff;
	--heading-color: #ffffff;
	--surface-color: #252525;
	--contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Bootstrap Redefenition
--------------------------------------------------------------*/
/* pagination */
.pagination {
	--bs-link-color: var(--default-color);
	--bs-pagination-color: var(--default-color);
	--bs-pagination-hover-color: var(--contrast-color);
	--bs-pagination-hover-bg: color-mix(in srgb, var(--accent-color), transparent 15%);
	--bs-pagination-hover-border-color: var(--bs-pagination-hover-bg);
	--bs-pagination-active-color: var(--contrast-color);
	--bs-pagination-active-bg: var(--accent-color);
	--bs-pagination-active-border-color: var(--accent-color);
}
.pagination .page-link.active, .active > .pagination .page-link {
	color: var(--bs-pagination-active-color);
	border-color: var(--bs-pagination-active-border-color);
	background-color: var(--bs-pagination-active-bg);
}
.pagination .page-link:hover, .pagination .page-link:focus {
	color: var(--bs-pagination-hover-color);
	background-color: var(--bs-pagination-hover-bg);
	border-color: var(--bs-pagination-hover-border-color);
}
.pagination .page-link [class^=icon-]::before, .pagination .page-link [class*=" icon-"]::before {
	margin: 0;
}

/*----------------
	Typography 
-----------------*/
/* font weight */
.text-thin {
	font-weight: 300 !important;
}

.text-book {
	font-weight: 400 !important;
}

.text-demi {
	font-weight: 500 !important;
}

.text-semibold {
	font-weight: 600 !important;
}

.text-bold {
	font-weight: 700 !important;
}

.text-bolder {
	font-weight: 900 !important;
}

/* font-size */
.fs-8 {
	font-size: 8px;
}

.fs-9 {
	font-size: 9px;
}

.fs-10 {
	font-size: 10px;
}

.fs-11 {
	font-size: 11px;
}

.fs-12 {
	font-size: 12px;
}

.fs-13 {
	font-size: 13px;
}

.fs-14 {
	font-size: 14px;
}

.fs-15 {
	font-size: 15px;
}

.fs-16 {
	font-size: 16px;
}

.fs-17 {
	font-size: 17px;
}

.fs-18 {
	font-size: 18px;
}

.fs-19 {
	font-size: 19px;
}

.fs-20 {
	font-size: 20px;
}

.fs-21 {
	font-size: 21px;
}

.fs-22 {
	font-size: 22px;
}

.fs-23 {
	font-size: 23px;
}

.fs-24 {
	font-size: 24px;
}

.fs-25 {
	font-size: 25px;
}

.fs-26 {
	font-size: 26px;
}

.fs-27 {
	font-size: 27px;
}

.fs-28 {
	font-size: 28px;
}

.fs-29 {
	font-size: 29px;
}

.fs-30 {
	font-size: 30px;
}

.fs-31 {
	font-size: 31px;
}

.fs-32 {
	font-size: 32px;
}

.fs-33 {
	font-size: 33px;
}

.fs-34 {
	font-size: 34px;
}

.fs-35 {
	font-size: 35px;
}

.fs-36 {
	font-size: 36px;
}

.fs-37 {
	font-size: 37px;
}

.fs-38 {
	font-size: 38px;
}

.fs-39 {
	font-size: 39px;
}

.fs-40 {
	font-size: 40px;
}

.fs-41 {
	font-size: 41px;
}

.fs-42 {
	font-size: 42px;
}

.fs-43 {
	font-size: 43px;
}

.fs-44 {
	font-size: 44px;
}

.fs-45 {
	font-size: 45px;
}

.fs-46 {
	font-size: 46px;
}

.fs-47 {
	font-size: 47px;
}

.fs-48 {
	font-size: 48px;
}

.fs-49 {
	font-size: 49px;
}

.fs-50 {
	font-size: 50px;
}

.fs-51 {
	font-size: 51px;
}

.fs-52 {
	font-size: 52px;
}

.fs-53 {
	font-size: 53px;
}

.fs-54 {
	font-size: 54px;
}

.fs-55 {
	font-size: 55px;
}

.fs-56 {
	font-size: 56px;
}

.fs-57 {
	font-size: 57px;
}

.fs-58 {
	font-size: 58px;
}

.fs-59 {
	font-size: 59px;
}

.fs-60 {
	font-size: 60px;
}

.fs-61 {
	font-size: 61px;
}

.fs-62 {
	font-size: 62px;
}

.fs-63 {
	font-size: 63px;
}

.fs-64 {
	font-size: 64px;
}

.fs-65 {
	font-size: 65px;
}

.fs-66 {
	font-size: 66px;
}

.fs-67 {
	font-size: 67px;
}

.fs-68 {
	font-size: 68px;
}

.fs-69 {
	font-size: 69px;
}

.fs-70 {
	font-size: 70px;
}

.fs-71 {
	font-size: 71px;
}

.fs-72 {
	font-size: 72px;
}

/* line-height */
.lh-1 {
	line-height: 1;
}

.lh-10 {
	line-height: 10px;
}

.lh-11 {
	line-height: 11px;
}

.lh-12 {
	line-height: 12px;
}

.lh-13 {
	line-height: 13px;
}

.lh-14 {
	line-height: 14px;
}

.lh-15 {
	line-height: 15px;
}

.lh-16 {
	line-height: 16px;
}

.lh-17 {
	line-height: 17px;
}

.lh-18 {
	line-height: 18px;
}

.lh-19 {
	line-height: 19px;
}

.lh-20 {
	line-height: 20px;
}

.lh-21 {
	line-height: 21px;
}

.lh-22 {
	line-height: 22px;
}

.lh-23 {
	line-height: 23px;
}

.lh-24 {
	line-height: 24px;
}

.lh-25 {
	line-height: 25px;
}

.lh-26 {
	line-height: 26px;
}

.lh-27 {
	line-height: 27px;
}

.lh-28 {
	line-height: 28px;
}

.lh-29 {
	line-height: 29px;
}

.lh-30 {
	line-height: 30px;
}

.lh-31 {
	line-height: 31px;
}

.lh-32 {
	line-height: 32px;
}

.lh-33 {
	line-height: 33px;
}

.lh-34 {
	line-height: 34px;
}

.lh-35 {
	line-height: 35px;
}

.lh-36 {
	line-height: 36px;
}

.lh-37 {
	line-height: 37px;
}

.lh-38 {
	line-height: 38px;
}

.lh-39 {
	line-height: 39px;
}

.lh-40 {
	line-height: 40px;
}

.lh-41 {
	line-height: 41px;
}

.lh-42 {
	line-height: 42px;
}

.lh-43 {
	line-height: 43px;
}

.lh-44 {
	line-height: 44px;
}

.lh-45 {
	line-height: 45px;
}

.lh-46 {
	line-height: 46px;
}

.lh-47 {
	line-height: 47px;
}

.lh-48 {
	line-height: 48px;
}

.lh-49 {
	line-height: 49px;
}

.lh-50 {
	line-height: 50px;
}

.lh-51 {
	line-height: 51px;
}

.lh-52 {
	line-height: 52px;
}

.lh-53 {
	line-height: 53px;
}

.lh-54 {
	line-height: 54px;
}

.lh-55 {
	line-height: 55px;
}

.lh-56 {
	line-height: 56px;
}

.lh-57 {
	line-height: 57px;
}

.lh-58 {
	line-height: 58px;
}

.lh-59 {
	line-height: 59px;
}

.lh-60 {
	line-height: 60px;
}

.lh-61 {
	line-height: 61px;
}

.lh-62 {
	line-height: 62px;
}

.lh-63 {
	line-height: 63px;
}

.lh-64 {
	line-height: 64px;
}

.lh-65 {
	line-height: 65px;
}

.lh-66 {
	line-height: 66px;
}

.lh-67 {
	line-height: 67px;
}

.lh-68 {
	line-height: 68px;
}

.lh-69 {
	line-height: 69px;
}

.lh-70 {
	line-height: 70px;
}

.lh-71 {
	line-height: 71px;
}

.lh-72 {
	line-height: 72px;
}

.lh-73 {
	line-height: 73px;
}

.lh-74 {
	line-height: 74px;
}

.lh-75 {
	line-height: 75px;
}

.lh-76 {
	line-height: 76px;
}

.lh-77 {
	line-height: 77px;
}

.lh-78 {
	line-height: 78px;
}

.lh-79 {
	line-height: 79px;
}

.lh-80 {
	line-height: 80px;
}

/* opacity */
.opacity-0 {
	opacity: 0;
}

.opacity-1 {
	opacity: 1;
}

/* text align */
.text-left {
	text-align: left;
}

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

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

/* text styles */
.text-normal {
	font-family: var(--default-font);
	font-size: 1rem;
	font-weight: 400;
	font-style: normal;
	line-height: 1.35;
	text-decoration: none;
	text-transform: none;
}

.text-heading, .text-head {
	font-family: var(--heading-font);
}

.text-notrans {
	text-transform: none !important;
}

.text-italic {
	font-style: italic;
}

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

.text-nounderline {
	text-decoration: none;
}

.link-nou {
	text-decoration: none;
}
.link-nou:hover, .link-nou:focus {
	text-decoration: underline;
}

/* wrap text */
.text-wrap-normal {
	white-space: normal;
}

.text-wrap {
	white-space: pre-wrap;
}

.text-nowrap {
	white-space: nowrap;
}

/* Переносы слов */
.text-hyphens {
	-ms-hyphens: auto;
	    hyphens: auto;
}

.text-no-hyphens {
	-ms-hyphens: none;
	    hyphens: none;
}

/* links */
a:hover, a:focus, a:focus-visible {
	outline: none;
}

/* vertical align */
.valign-top, .va-t {
	vertical-align: top !important;
}

.valign-bottom, .va-b {
	vertical-align: bottom !important;
}

.valign-middle, .va-m {
	vertical-align: middle !important;
}

.va-1 {
	vertical-align: 1px !important;
}

.va-2 {
	vertical-align: 2px !important;
}

.va-3 {
	vertical-align: 3px !important;
}

.va-4 {
	vertical-align: 4px !important;
}

.va-5 {
	vertical-align: 5px !important;
}

.va-6 {
	vertical-align: 6px !important;
}

.va-7 {
	vertical-align: 7px !important;
}

.va-8 {
	vertical-align: 8px !important;
}

/* more/back */
.more, .back {
	display: block;
	margin-top: 0.75rem;
	color: var(--default-color);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.25;
}
.more:hover, .more:focus, .back:hover, .back:focus {
	color: var(--accent-color);
	text-decoration: underline;
}

.more, .back.r, .back.text-right {
	text-align: right;
}

.back, .more.l, .more.text-left {
	text-align: left;
}

.more:after, .back:before {
	display: inline-block;
	vertical-align: 1px;
	color: var(--default-color);
	font-family: "icons";
	font-size: 0.65rem;
}

.more:after {
	margin-left: 0.25rem;
	content: "\e822";
}

.back:before {
	margin-right: 0.25rem;
	content: "\e821";
}

dl.inline {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: -webkit-max-content auto;
	-ms-grid-columns: max-content auto;
	grid-template-columns: -webkit-max-content auto;
	grid-template-columns: max-content auto;
	font-size: 1rem;
}
dl.inline dt {
	-ms-grid-column: 1;
	    grid-column-start: 1;
	margin-bottom: 0.75rem;
	padding-right: 0.75rem;
	color: color-mix(in srgb, var(--default-color), transparent 25%);
	font-weight: 400;
}
dl.inline dd {
	-ms-grid-column: 2;
	    grid-column-start: 2;
	margin: 0;
	color: var(--default-color);
	font-weight: 500;
}
dl.inline dd [class^=icon-], dl.inline dd [class*=" icon-"] {
	font-size: 0.85rem;
}
dl.inline dd a {
	color: var(--default-color);
}
dl.inline dd a:hover, dl.inline dd a:focus {
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: var(--default-font);
}

a {
	color: var(--alt-accent-color);
	text-decoration: none;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
a:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%);
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
	display: none;
	background: #df1529;
	color: #ffffff;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}
.php-email-form .sent-message {
	display: none;
	color: #ffffff;
	background: #059652;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}
.php-email-form .loading {
	display: none;
	background: var(--surface-color);
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
}
.php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid var(--accent-color);
	border-top-color: var(--surface-color);
	-webkit-animation: php-email-form-loading 1s linear infinite;
	        animation: php-email-form-loading 1s linear infinite;
}

@-webkit-keyframes php-email-form-loading {
	0% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}

@keyframes php-email-form-loading {
	0% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
	--background-color: rgba(255, 255, 255, 0);
	--default-color: #ffffff;
	--heading-color: #ffffff;
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 20px 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	z-index: 997;
}
.header .logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-flow: row nowrap;
	        flex-flow: row nowrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.header .logo img {
	margin: -20px 0;
	max-height: 100px;
	margin-right: 10px;
}
@media (max-width: 575.98px) {
	.header .logo img {
		max-height: 60px;
	}
}
.header .logo h1 {
	margin: 0 0 0 0.25rem;
	color: var(--heading-color);
	font-size: 2.25rem;
	font-weight: 900;
	text-transform: uppercase;
}
@media (max-width: 575.98px) {
	.header .logo h1 {
		font-size: 1.5rem;
	}
}
.header .logo h1 span {
	display: block;
	color: var(--accent-color);
	font-family: var(--heading-font);
	font-size: 1.25rem;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.1rem;
}
@media (max-width: 575.98px) {
	.header .logo h1 span {
		font-size: 0.75rem;
	}
}

.scrolled .header {
	-webkit-box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
	--background-color: rgba(255, 255, 255, 0.95);
	--heading-color: rgba(0,0,0,.7);
	--nav-color: #3c3c3c;
	--nav-hover-color: #3c3c3c;
}

/* Global Header on Scroll
------------------------------*/
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
	.navmenu {
		padding: 0;
	}
	.navmenu ul {
		margin: 0;
		padding: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		list-style: none;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.navmenu li {
		position: relative;
	}
	.navmenu > ul > li {
		white-space: nowrap;
		padding: 15px 14px;
	}
	.navmenu > ul > li:last-child {
		padding-right: 0;
	}
	.navmenu a {
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		padding: 0 2px;
		color: var(--nav-color);
		font-family: var(--nav-font);
		font-size: 14px;
		font-weight: 500;
		white-space: nowrap;
		text-transform: uppercase;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.navmenu a:focus {
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		padding: 0 2px;
		color: var(--nav-color);
		font-family: var(--nav-font);
		font-size: 14px;
		font-weight: 500;
		white-space: nowrap;
		text-transform: uppercase;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.navmenu a i, .navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.navmenu a:hover:before {
		visibility: visible;
		width: 100%;
	}
	.navmenu > ul > li > a:before {
		content: "";
		position: absolute;
		height: 2px;
		bottom: -6px;
		left: 0;
		background-color: var(--accent-color);
		visibility: hidden;
		width: 0px;
		-webkit-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.navmenu li:hover > a:before, .navmenu .active:before {
		visibility: visible;
		width: 100%;
	}
	.navmenu li:hover > a {
		color: var(--nav-hover-color);
	}
	.navmenu .active {
		color: var(--nav-hover-color);
	}
	.navmenu .active:focus {
		color: var(--nav-hover-color);
	}
	.navmenu .dropdown ul {
		margin: 0;
		padding: 10px 0;
		background: var(--nav-dropdown-background-color);
		display: block;
		position: absolute;
		visibility: hidden;
		left: 14px;
		top: 130%;
		opacity: 0;
		-webkit-transition: 0.3s;
		transition: 0.3s;
		border-radius: 4px;
		z-index: 99;
		-webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
		        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}
	.navmenu .dropdown ul li {
		min-width: 200px;
	}
	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: none;
		font-weight: 400;
		color: var(--nav-dropdown-color);
	}
	.navmenu .dropdown ul a i {
		font-size: 1rem;
	}
	.navmenu .dropdown ul a:hover {
		color: var(--nav-dropdown-hover-color);
	}
	.navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li:hover > a {
		color: var(--nav-dropdown-hover-color);
	}
	.navmenu .dropdown:hover > ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}
	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}
	.navmenu .dropdown .dropdown:hover > ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible;
	}
}
/* Mobile Navigation */
@media (max-width: 1199px) {
	.mobile-nav-toggle {
		color: var(--nav-color);
		font-size: 28px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		-webkit-transition: color 0.3s;
		transition: color 0.3s;
	}
	.navmenu {
		padding: 0;
		z-index: 9997;
	}
	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;
		border-radius: 6px;
		background-color: var(--nav-mobile-background-color);
		border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
		-webkit-box-shadow: none;
		        box-shadow: none;
		overflow-y: auto;
		-webkit-transition: 0.3s;
		transition: 0.3s;
		z-index: 9998;
	}
	.navmenu a {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: var(--nav-font);
		font-size: 17px;
		font-weight: 500;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		white-space: nowrap;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: var(--nav-font);
		font-size: 17px;
		font-weight: 500;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		white-space: nowrap;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.navmenu a i, .navmenu a:focus i {
		font-size: 1rem;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		border-radius: 50%;
		-webkit-transition: 0.3s;
		transition: 0.3s;
		background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	}
	.navmenu a i:hover, .navmenu a:focus i:hover {
		background-color: var(--accent-color);
		color: var(--contrast-color);
	}
	.navmenu a:hover {
		color: var(--nav-dropdown-hover-color);
	}
	.navmenu .active {
		color: var(--nav-dropdown-hover-color);
	}
	.navmenu .active:focus {
		color: var(--nav-dropdown-hover-color);
	}
	.navmenu .active i, .navmenu .active:focus i {
		background-color: var(--accent-color);
		color: var(--contrast-color);
		-webkit-transform: rotate(180deg);
		        transform: rotate(180deg);
	}
	.navmenu .dropdown ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: var(--nav-dropdown-background-color);
		-webkit-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
	}
	.navmenu .dropdown ul ul {
		background-color: rgba(33, 37, 41, 0.1);
	}
	.navmenu .dropdown > .dropdown-active {
		display: block;
		background-color: rgba(33, 37, 41, 0.03);
	}
	.mobile-nav-active {
		overflow: hidden;
	}
	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 32px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}
	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.mobile-nav-active .navmenu > ul {
		display: block;
	}
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
	position: relative;
	color: var(--default-color);
	font-size: 0.875rem;
	background-color: var(--background-color);
	background-position: bottom center no-repeat;
	background-size: cover;
}
.footer:before {
	position: absolute;
	content: "";
	background: color-mix(in srgb, var(--background-color), transparent 20%);
	inset: 0;
}
.footer .container {
	position: relative;
}
.footer .footer-top {
	padding-top: 3rem;
}
.footer .footer-logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.footer .footer-logo img {
	max-width: 100%;
	max-height: 160px;
	height: auto;
	opacity: 0.75;
}
.footer .footer-about {
	padding-left: 1rem;
}
.footer .footer-about .logo {
	line-height: 1;
	margin-bottom: 25px;
}
.footer .footer-about .logo img {
	max-height: 40px;
	margin-right: 6px;
}
.footer .footer-about .logo span {
	color: var(--heading-color);
	font-family: var(--heading-font);
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 1px;
}
.footer .footer-about p {
	font-size: 14px;
	font-family: var(--heading-font);
}
.footer .social-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
}
@media (min-width: 768px) {
	.footer .social-links.vert {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: end;
		    -ms-flex-align: end;
		        align-items: flex-end;
	}
	.footer .social-links.vert a {
		margin-right: 0;
		margin-top: 10px;
	}
	.footer .social-links.vert a:first-of-type {
		margin-top: 0;
	}
}
.footer .social-links a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 5px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 20px;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	margin-right: 10px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.footer .social-links a:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
}
.footer .social-links a i:before {
	margin: 0;
}
.footer h4 {
	font-size: 16px;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}
.footer .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer .footer-links ul i {
	padding-right: 2px;
	font-size: 12px;
	line-height: 0;
}
.footer .footer-links ul li {
	padding: 10px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.footer .footer-links ul li:first-child {
	padding-top: 0;
}
.footer .footer-links ul a {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	display: inline-block;
	line-height: 1;
}
.footer .footer-links ul a:hover {
	color: var(--accent-color);
}
.footer .footer-contact p {
	margin-bottom: 5px;
}
.footer .copyright {
	padding-top: 1rem;
	padding-bottom: 1rem;
	border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .copyright p {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	overflow: hidden;
	background: var(--background-color);
	-webkit-transition: all 0.6s ease-out;
	transition: all 0.6s ease-out;
}
#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #ffffff;
	border-color: var(--accent-color) transparent var(--accent-color) transparent;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1.5s linear infinite;
	        animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background-color: var(--accent-color);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.scroll-top i {
	font-size: 24px;
	color: var(--default-color);
	line-height: 0;
}
.scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	color: var(--contrast-color);
}
.scroll-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		-webkit-transition-delay: 0 !important;
		        transition-delay: 0 !important;
	}
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
	color: var(--default-color);
	background-color: var(--background-color);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 160px 0 60px 0;
	text-align: center;
	position: relative;
}
.page-title:before {
	content: "";
	background-color: color-mix(in srgb, var(--background-color), transparent 40%);
	position: absolute;
	inset: 0;
}
.page-title h1 {
	font-size: 56px;
	font-weight: 500;
	margin-bottom: 10px;
}
.page-title .breadcrumbs ol {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	list-style: none;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 0;
	margin: 0;
	font-size: 16px;
	font-weight: 500;
}
.page-title .breadcrumbs ol li + li {
	padding-left: 10px;
}
.page-title .breadcrumbs ol li + li::before {
	content: "/";
	display: inline-block;
	padding-right: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 60px 0;
	scroll-margin-top: 92px;
	overflow: clip;
}

@media (max-width: 1199px) {
	section, .section {
		scroll-margin-top: 76px;
	}
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	position: relative;
	padding-bottom: 2rem;
	text-align: center;
}
@media (max-width: 767.98px) {
	.section-title {
		padding-bottom: 1rem;
	}
}
.section-title h2, .section-title h3 {
	position: relative;
	font-size: 2rem;
	font-weight: 500;
}
.section-title h2 span, .section-title h3 span {
	font-size: 1.75rem;
	font-weight: 400;
}
.section-title h2:before, .section-title h2:after, .section-title h3:before, .section-title h3:after {
	display: inline-block;
	width: 50px;
	height: 2px;
	content: "";
	background: var(--accent-color);
}
.section-title h2:before, .section-title h3:before {
	margin: 0 1rem 0.625rem 0;
}
.section-title h2:after, .section-title h3:after {
	margin: 0 0 0.625rem 1rem;
}
.section-title h3 {
	font-size: 1.5rem;
	font-weight: 400;
}
.section-title h3:before {
	margin: 0 1rem 0.5rem 0;
}
.section-title h3:after {
	margin: 0 0 0.5rem 1rem;
}
.section-title p {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
Sections
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100%;
	min-height: 60vh;
	position: relative;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: end;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	overflow: hidden;
}
.hero .info {
	position: relative;
	inset: 0;
	z-index: 3;
	padding: 0;
}
.hero .info h2 {
	position: relative;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	font-size: 3rem;
	font-weight: 400;
}
@media (max-width: 575.98px) {
	.hero .info h2 {
		font-size: 2rem;
	}
}
.hero .info h2 span {
	font-size: 3.5rem;
	font-weight: 900;
	text-transform: uppercase;
}
@media (max-width: 575.98px) {
	.hero .info h2 span {
		font-size: 2.5rem;
	}
}
.hero .info h2:after {
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	bottom: 0;
	width: 80px;
	height: 4px;
	margin: auto;
	background: var(--accent-color);
	content: "";
}
.hero .info p {
	color: color-mix(in srgb, var(--default-color), transparent 15%);
}
.hero .info .hero-description {
	margin-bottom: 0.5rem;
	padding: 1.5rem;
	border-radius: 0.5rem;
	background-color: rgba(6, 6, 6, 0.5019607843);
}
.hero .info .hero-description p {
	margin-bottom: 0.75rem;
	-ms-hyphens: auto;
	    hyphens: auto;
	text-align: justify;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.35;
	color: color-mix(in srgb, var(--contrast-color), transparent 15%);
}
.hero .info .hero-description p:last-of-type {
	margin-bottom: 0;
}
.hero .carousel {
	inset: 0;
	position: absolute;
	overflow: hidden;
}
.hero .carousel-item {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	-webkit-transition-duration: 0.4s;
	        transition-duration: 0.4s;
}
.hero .carousel-item img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	z-index: 1;
}
.hero .carousel-item::before {
	content: "";
	background-color: color-mix(in srgb, var(--background-color), transparent 30%);
	position: absolute;
	inset: 0;
	z-index: 2;
}
.hero .carousel-control-prev {
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: start;
}
.hero .carousel-control-next {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: end;
}
.hero .carousel-control-next-icon, .hero .carousel-control-prev-icon {
	background: none;
	font-size: 26px;
	line-height: 0;
	background: color-mix(in srgb, var(--default-color), transparent 80%);
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	border-radius: 50px;
	width: 54px;
	height: 54px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.hero .carousel-control-prev, .hero .carousel-control-next {
	z-index: 3;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.hero .carousel-control-prev:focus, .hero .carousel-control-next:focus {
	opacity: 0.5;
}
.hero .carousel-control-prev:hover, .hero .carousel-control-next:hover {
	opacity: 0.9;
}

@media (max-width: 768px), (max-height: 480px) {
	.hero .info {
		padding: 100px 50px 60px 50px;
	}
}
@media (max-width: 768px) {
	.hero .info h2 {
		font-size: 36px;
	}
}
@media (min-width: 640px) {
	.hero .carousel-control-prev {
		padding-left: 15px;
	}
}
@media (min-width: 640px) {
	.hero .carousel-control-next {
		padding-right: 15px;
	}
}
/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started .content h3 {
	position: relative;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	font-size: 36px;
	font-weight: 500;
}
.get-started .content h3:after {
	position: absolute;
	display: block;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 4px;
	content: "";
	background: var(--accent-color);
}
.get-started .content h3 span {
	font-weight: 600;
	text-transform: uppercase;
}
.get-started .content p {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}
.get-started .php-email-form {
	height: 100%;
	padding: 30px 30px 0 30px;
	background: color-mix(in srgb, var(--default-color), transparent 97%);
}
.get-started .php-email-form h3 {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.get-started .php-email-form p {
	font-size: 14px;
	margin-bottom: 20px;
}
.get-started .php-email-form input[type=text], .get-started .php-email-form input[type=email] {
	font-size: 14px;
	padding: 10px 15px;
	-webkit-box-shadow: none;
	        box-shadow: none;
	border-radius: 0;
	color: var(--default-color);
	background-color: color-mix(in srgb, var(--background-color), transparent 20%);
	border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.get-started .php-email-form textarea {
	font-size: 14px;
	padding: 10px 15px;
	-webkit-box-shadow: none;
	        box-shadow: none;
	border-radius: 0;
	color: var(--default-color);
	background-color: color-mix(in srgb, var(--background-color), transparent 20%);
	border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.get-started .php-email-form input[type=text]:focus, .get-started .php-email-form input[type=email]:focus {
	border-color: var(--accent-color);
}
.get-started .php-email-form textarea:focus {
	border-color: var(--accent-color);
}
.get-started .php-email-form input[type=text]::-webkit-input-placeholder, .get-started .php-email-form input[type=email]::-webkit-input-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.get-started .php-email-form input[type=text]::-moz-placeholder, .get-started .php-email-form input[type=email]::-moz-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.get-started .php-email-form input[type=text]:-ms-input-placeholder, .get-started .php-email-form input[type=email]:-ms-input-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.get-started .php-email-form input[type=text]::-ms-input-placeholder, .get-started .php-email-form input[type=email]::-ms-input-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.get-started .php-email-form input[type=text]::placeholder, .get-started .php-email-form input[type=email]::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.get-started .php-email-form textarea::-webkit-input-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.get-started .php-email-form textarea::-moz-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.get-started .php-email-form textarea:-ms-input-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.get-started .php-email-form textarea::-ms-input-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.get-started .php-email-form textarea::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.get-started .php-email-form button[type=submit] {
	color: var(--contrast-color);
	background: var(--accent-color);
	border: 0;
	padding: 10px 30px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border-radius: 4px;
}
.get-started .php-email-form button[type=submit]:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 575px) {
	.get-started .php-email-form {
		padding: 20px;
	}
}
/*--------------------------------------------------------------
# dogsmain Section
--------------------------------------------------------------*/
.dogsmain .card-item {
	position: relative;
	border-radius: 0;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
	background-color: var(--surface-color);
}
.dogsmain .card-item .card-bg {
	position: relative;
	min-height: 200px;
}
.dogsmain .card-item .card-bg img {
	position: absolute;
	display: block;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
.dogsmain .card-item .card-body {
	padding: 0.75rem 0.25rem;
}
.dogsmain .card-item h4 {
	margin-bottom: 0.25rem;
	font-size: 1.115rem;
	font-weight: 500;
}
.dogsmain .card-item h4 span {
	font-weight: 400;
}
.dogsmain .card-item h5 {
	margin-bottom: 0.75rem;
	font-size: 1rem;
	font-weight: 400;
}
.dogsmain .card-item p {
	margin: 0;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.dogsmain .card-item sup [class^=icon-], .dogsmain .card-item sup [class*=" icon-"] {
	vertical-align: middle;
	color: color-mix(in srgb, var(--default-color), transparent 65%);
	font-size: 0.75rem;
}
.dogsmain .card-item dl {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: -webkit-max-content auto;
	-ms-grid-columns: max-content auto;
	grid-template-columns: -webkit-max-content auto;
	grid-template-columns: max-content auto;
	font-size: 1rem;
}
.dogsmain .card-item dl dt {
	-ms-grid-column: 1;
	    grid-column-start: 1;
	padding-right: 0.75rem;
	color: color-mix(in srgb, var(--default-color), transparent 25%);
	font-weight: 400;
}
.dogsmain .card-item dl dd {
	-ms-grid-column: 2;
	    grid-column-start: 2;
	margin: 0;
	color: var(--default-color);
	font-weight: 500;
}
.dogsmain .card-item dl dd [class^=icon-], .dogsmain .card-item dl dd [class*=" icon-"] {
	font-size: 0.85rem;
}
.dogsmain .card-item dl dd a {
	color: var(--default-color);
}
.dogsmain .card-item dl dd a:hover, .dogsmain .card-item dl dd a:focus {
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-flow: column nowrap;
	        flex-flow: column nowrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	height: 100%;
	padding: 40px;
	background-color: var(--surface-color);
	-webkit-box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}
.services .service-item .icon {
	width: 48px;
	height: 48px;
	position: relative;
	margin-bottom: 50px;
}
.services .service-item .icon i {
	color: var(--heading-color);
	font-size: 56px;
	-webkit-transition: ease-in-out 0.3s;
	transition: ease-in-out 0.3s;
	z-index: 2;
	position: relative;
}
.services .service-item .icon:before {
	position: absolute;
	z-index: 1;
	top: 1rem;
	right: -1rem;
	height: 100%;
	width: 100%;
	background: color-mix(in srgb, var(--heading-color), transparent 95%);
	border-radius: 50px;
	content: "";
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.services .service-item h3 {
	position: relative;
	display: inline-block;
	margin: 0 0 1rem 0;
	padding-bottom: 8px;
	color: color-mix(in srgb, var(--heading-color), transparent 20%);
	font-size: 22px;
	font-weight: 700;
	border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.services .service-item h4 {
	position: relative;
	display: block;
	color: color-mix(in srgb, var(--default-color), transparent 35%);
	margin: 0 0 0.75rem 0;
	padding-bottom: 8px;
	font-size: 1rem;
	font-weight: 500;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.services .service-item h3 + h4 {
	margin-top: -0.25rem;
}
.services .service-item p {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	margin-bottom: 0;
	font-size: 0.875rem;
	line-height: 1.5;
}
.services .service-item .readmore {
	margin-top: 15px;
	display: inline-block;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.services .service-item:hover .icon i {
	color: var(--heading-color);
}
.services .service-item:hover .icon:before {
	background: var(--accent-color);
}
.services .service-item:hover h3 {
	border-color: var(--accent-color);
	color: var(--heading-color);
}
.services .service-item:hover .readmore {
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .features-image, .about-us .features-image {
	position: relative;
	min-height: 400px;
}
.alt-services .features-image img, .about-us .features-image img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	z-index: 1;
}
.alt-services h3, .about-us h3 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}
.alt-services h3:after, .about-us h3:after {
	content: "";
	background: var(--accent-color);
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	left: 0;
	bottom: 0;
}
.alt-services .icons-box, .about-us .icons-box {
	margin-top: 50px;
}
.alt-services .icons-box i, .about-us .icons-box i {
	color: var(--accent-color);
	background-color: var(--surface-color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-right: 25px;
	font-size: 28px;
	width: 56px;
	height: 56px;
	border-radius: 4px;
	line-height: 0;
	-webkit-box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.alt-services .icons-box:hover i, .about-us .icons-box:hover i {
	background-color: var(--accent-color);
	color: var(--contrast-color);
}
.alt-services .icons-box h4, .about-us .icons-box h4 {
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 18px;
}
.alt-services .icons-box h4 a, .about-us .icons-box h4 a {
	color: var(--heading-color);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.alt-services .icons-box h4 a:hover, .about-us .icons-box h4 a:hover {
	color: var(--accent-color);
}
.alt-services .icons-box p, .about-us .icons-box p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
	border: 0;
}
.features .nav-link {
	color: var(--heading-color);
	padding: 15px 0;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	border-radius: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	cursor: pointer;
	height: 100%;
	border: 0;
	border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.features .nav-link i {
	padding-right: 15px;
	font-size: 48px;
}
.features .nav-link h4 {
	font-size: 18px;
	font-weight: 600;
	margin: 0;
}
.features .nav-link:hover {
	color: var(--accent-color);
	border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.features .nav-link.active {
	background-color: var(--background-color);
	color: var(--accent-color);
	border-color: var(--accent-color);
}
.features .tab-content {
	margin-top: 30px;
}
.features .tab-pane h3 {
	color: var(--heading-color);
	font-weight: 700;
	font-size: 32px;
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
.features .tab-pane h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 60px;
	height: 3px;
	background: var(--accent-color);
	left: 0;
	bottom: 0;
}
.features .tab-pane h3 span {
	font-weight: 500;
}
.features .tab-pane ul {
	list-style: none;
	padding: 0;
}
.features .tab-pane ul li {
	padding-top: 10px;
}
.features .tab-pane ul i {
	font-size: 20px;
	padding-right: 4px;
	color: var(--accent-color);
}
.features .tab-pane p:last-child {
	margin-bottom: 0;
}

@media (max-width: 575px) {
	.features .nav-link h4 {
		font-size: 16px;
	}
}
/*--------------------------------------------------------------
# Puppies Section
--------------------------------------------------------------*/
.puppies .nav-tabs {
	border: 0;
}
@media (max-width: 767.98px) {
	.puppies .nav-item {
		padding: 0;
	}
}
.puppies .nav-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	height: 100%;
	cursor: pointer;
	padding: 1rem 0;
	color: var(--heading-color);
	border: 0;
	border-radius: 0;
	border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
@media (max-width: 767.98px) {
	.puppies .nav-link {
		padding: 1rem 0.25rem;
		border: var(--bs-nav-tabs-border-width) solid var(--border-color);
		border-top-left-radius: var(--bs-nav-tabs-border-radius);
		border-top-right-radius: var(--bs-nav-tabs-border-radius);
	}
}
.puppies .nav-link [class^=icon-], .puppies .nav-link [class*=" icon-"] {
	padding-right: 1rem;
	font-size: 3rem;
}
.puppies .nav-link h4 {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 600;
}
.puppies .nav-link h4 span {
	font-weight: 400;
}
@media (max-width: 767.98px) {
	.puppies .nav-link h4 {
		font-size: 1rem;
		font-weight: 500;
	}
}
@media (max-width: 575.98px) {
	.puppies .nav-link h4 {
		font-size: 0.85rem !important;
	}
}
.puppies .nav-link:hover {
	color: var(--accent-color);
	border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.puppies .nav-link.active {
	color: var(--contrast-color);
	border-color: var(--accent-color);
	background-color: var(--accent-color);
}
.puppies .nav-link.active h4 {
	color: var(--contrast-color);
}
.puppies .tab-content {
	margin-top: 2rem;
}
.puppies .tab-pane [class^=icon-], .puppies .tab-pane [class*=" icon-"], .puppies .pane [class^=icon-], .puppies .pane [class*=" icon-"] {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	margin-right: 0.5rem;
	font-size: 1.125rem;
}
.puppies .tab-pane [class^=icon-]:before, .puppies .tab-pane [class*=" icon-"]:before, .puppies .pane [class^=icon-]:before, .puppies .pane [class*=" icon-"]:before {
	margin: 0;
}
.puppies .tab-pane sup [class^=icon-], .puppies .tab-pane sup [class*=" icon-"], .puppies .pane sup [class^=icon-], .puppies .pane sup [class*=" icon-"] {
	vertical-align: middle;
	color: color-mix(in srgb, var(--default-color), transparent 65%);
	font-size: 0.75rem;
}
.puppies .tab-pane h3, .puppies .pane h3 {
	position: relative;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	color: var(--heading-color);
	font-size: 2rem;
	font-weight: 700;
}
.puppies .tab-pane h3:after, .puppies .pane h3:after {
	position: absolute;
	display: block;
	width: 80px;
	height: 3px;
	left: 0;
	bottom: 0;
	background: var(--accent-color);
	content: "";
}
.puppies .tab-pane h3 span, .puppies .pane h3 span {
	font-weight: 400;
}
.puppies .tab-pane h4, .puppies .pane h4 {
	margin-bottom: 1rem;
	color: var(--heading-color);
	font-size: 1.25rem;
	font-weight: 400;
}
.puppies .tab-pane h4 span, .puppies .pane h4 span {
	font-size: 1.125rem;
	font-weight: 400;
}
.puppies .tab-pane img, .puppies .pane img {
	max-width: 100%;
	height: auto;
}
.puppies .tab-pane ul, .puppies .pane ul {
	list-style: none;
	padding: 0;
}
.puppies .tab-pane ul li, .puppies .pane ul li {
	padding-top: 10px;
}
.puppies .tab-pane ul [class^=icon-], .puppies .tab-pane ul [class*=" icon-"], .puppies .pane ul [class^=icon-], .puppies .pane ul [class*=" icon-"] {
	padding-right: 4px;
	color: var(--accent-color);
	font-size: 1.25rem;
}
.puppies .tab-pane p, .puppies .pane p {
	margin-bottom: 0.5rem;
}
.puppies .tab-pane p:last-of-type, .puppies .pane p:last-of-type {
	margin-bottom: 0;
}
.puppies .tab-pane a, .puppies .pane a {
	color: var(--default-color);
}
.puppies .tab-pane a:hover, .puppies .tab-pane a:focus, .puppies .pane a:hover, .puppies .pane a:focus {
	color: var(--accent-color);
	text-decoration: underline;
}
.puppies .tab-pane dl, .puppies .pane dl {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: -webkit-max-content auto;
	-ms-grid-columns: max-content auto;
	grid-template-columns: -webkit-max-content auto;
	grid-template-columns: max-content auto;
}
.puppies .tab-pane dl dt, .puppies .pane dl dt {
	-ms-grid-column: 1;
	    grid-column-start: 1;
	color: color-mix(in srgb, var(--default-color), transparent 10%);
	padding-right: 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.625rem;
}
.puppies .tab-pane dl dt [class^=icon-], .puppies .tab-pane dl dt [class*=" icon-"], .puppies .pane dl dt [class^=icon-], .puppies .pane dl dt [class*=" icon-"] {
	margin-right: 0.65rem;
}
.puppies .tab-pane dl dd, .puppies .pane dl dd {
	-ms-grid-column: 2;
	    grid-column-start: 2;
	color: var(--default-color);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.625rem;
}
.puppies .tab-pane dl dd span, .puppies .pane dl dd span {
	font-size: 1rem;
	font-weight: 400;
}
.puppies .tab-pane dl dd.justify, .puppies .pane dl dd.justify {
	-ms-hyphens: auto;
	    hyphens: auto;
	text-align: justify;
}
.puppies .list-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-flow: column nowrap;
	        flex-flow: column nowrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	min-height: 100%;
	padding: 40px;
	background-color: var(--surface-color);
	-webkit-box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}
.puppies .list-item h3 {
	position: relative;
	display: block;
	margin: 0 0 1rem 0;
	padding-bottom: 8px;
	color: color-mix(in srgb, var(--heading-color), transparent 20%);
	font-size: 22px;
	font-weight: 700;
	border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.puppies .list-item h4 {
	position: relative;
	display: block;
	color: color-mix(in srgb, var(--default-color), transparent 35%);
	margin: 0 0 0.25rem 0;
	padding-bottom: 8px;
	font-size: 1rem;
	font-weight: 400;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.puppies .list-item h4 span {
	font-weight: 500;
}
.puppies .list-item h3 + h4 {
	margin-top: -0.25rem;
}
.puppies .list-item h5 {
	color: color-mix(in srgb, var(--default-color), transparent 35%);
	margin: 0 0 0.5rem 0;
	padding-bottom: 8px;
	font-size: 0.875rem;
	font-weight: 400;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.puppies .list-item h5 span {
	font-weight: 500;
}
.puppies .list-item p {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	margin-bottom: 0;
	font-size: 0.875rem;
	line-height: 1.5;
}
.puppies .list-item:hover h3, .puppies .list-item:hover h4, .puppies .list-item:hover h5 {
	border-color: var(--accent-color);
	color: var(--heading-color);
}

@media (max-width: 575px) {
	.puppies .nav-link h4 {
		font-size: 1rem;
	}
}
.puplist .card {
	margin-bottom: 1rem;
}
.puplist .card img {
	max-width: 100%;
	height: auto;
	border-top-left-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
	height: 100%;
	max-width: 120px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
	.puplist .card img {
		max-width: 90px;
	}
}
.puplist .card-link {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 100%;
}
.puplist .card-link [class^=icon-], .puplist .card-link [class*=" icon-"] {
	position: absolute;
	top: 0.15rem;
	left: 0.15rem;
	color: var(--contrast-color);
	font-size: 1rem;
}
.puplist .card-body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
	.puplist .card-body {
		padding: 0.35rem;
	}
}
.puplist .card-body .card-title {
	margin: 0;
}
.puplist .card-body.block-title {
	margin: 0;
	padding: 0.75rem 0.5rem;
	background-color: rgba(0, 0, 0, 0.035);
}
.puplist .card-body.block-title [class^=icon-], .puplist .card-body.block-title [class*=" icon-"] {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-right: 0.5rem;
	color: var(--alt-accent-color);
	font-size: 3rem;
	line-height: 0;
}
.puplist .card-body.block-title .card-title {
	color: var(--heading-color);
	font-family: var(--heading-font);
	font-size: 1.5rem;
	font-weight: 400;
}

/*--------------------------------------------------------------
# Galmain Section
--------------------------------------------------------------*/
.galmain .galmain-filters {
	padding: 0;
	margin: 0 auto 20px auto;
	list-style: none;
	text-align: center;
}
.galmain .galmain-filters li {
	cursor: pointer;
	display: inline-block;
	padding: 0;
	font-size: 18px;
	font-weight: 500;
	margin: 0 10px;
	line-height: 1;
	margin-bottom: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.galmain .galmain-filters li:hover, .galmain .galmain-filters li.filter-active {
	color: var(--accent-color);
}
.galmain .galmain-filters li:first-child {
	margin-left: 0;
}
.galmain .galmain-filters li:last-child {
	margin-right: 0;
}
.galmain .galmain-content {
	position: relative;
	overflow: hidden;
}
.galmain .galmain-content img {
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.galmain .galmain-content .galmain-info {
	opacity: 0;
	position: absolute;
	inset: 0;
	z-index: 3;
	-webkit-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
	background: rgba(0, 0, 0, 0.6);
	padding: 15px;
}
.galmain .galmain-content .galmain-info h4 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	min-height: 48px;
	margin: -15px -15px 0 -15px;
	padding: 5px 10px;
	color: var(--contrast-color);
	font-size: 1rem;
	font-weight: 500;
	background-color: var(--alt-accent-color);
}
.galmain .galmain-content .galmain-info p {
	position: absolute;
	bottom: 10px;
	text-align: center;
	display: inline-block;
	left: 0;
	right: 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.875rem;
	font-weight: 600;
}
.galmain .galmain-content .galmain-info .preview-link, .galmain .galmain-content .galmain-info .details-link {
	position: absolute;
	left: calc(50% - 1rem);
	top: calc(50% - 1rem);
	color: #fff;
	font-size: 44px;
	line-height: 1.2;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.galmain .galmain-content .galmain-info .preview-link:hover {
	color: var(--accent-color);
}
.galmain .galmain-content .galmain-info .details-link {
	left: 50%;
	font-size: 34px;
	line-height: 0;
}
.galmain .galmain-content .galmain-info .details-link:hover {
	color: var(--accent-color);
}
.galmain .galmain-content:hover .galmain-info {
	opacity: 1;
}
.galmain .galmain-content:hover img {
	-webkit-transform: scale(1.1);
	        transform: scale(1.1);
}

@media (max-width: 575px) {
	.galmain .galmain-filters li {
		font-size: 14px;
		margin: 0 5px;
	}
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
	padding-left: 50px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
	overflow: hidden;
}
.testimonials .testimonial-item {
	background-color: var(--surface-color);
	-webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	padding: 30px 30px 30px 60px;
	margin: 30px 15px;
	min-height: 200px;
	position: relative;
}
.testimonials .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 10px;
	border: 6px solid var(--background-color);
	position: absolute;
	left: -45px;
}
.testimonials .testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0 5px 0;
}
.testimonials .testimonial-item h4 {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 14px;
	margin: 0;
}
.testimonials .testimonial-item .stars {
	margin: 10px 0;
}
.testimonials .testimonial-item .stars i {
	color: #ffc107;
	margin: 0 1px;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
	color: color-mix(in srgb, var(--accent-color), transparent 60%);
	font-size: 1.125rem;
	line-height: 0;
}
.testimonials .testimonial-item .quote-icon-left {
	position: relative;
	display: inline-block;
	left: -5px;
}
.testimonials .testimonial-item .quote-icon-right {
	position: relative;
	display: inline-block;
	right: -5px;
	top: 2px;
}
.testimonials .testimonial-item p {
	font-style: italic;
	margin: 15px auto 15px auto;
}
.testimonials .swiper-wrapper {
	height: auto;
}
.testimonials .swiper-pagination {
	margin-top: 20px;
	position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: var(--background-color);
	opacity: 1;
	border: 1px solid var(--accent-color);
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

@media (max-width: 767px) {
	.testimonials .testimonial-wrap {
		padding-left: 0;
	}
	.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
		overflow: hidden;
	}
	.testimonials .testimonial-item {
		padding: 30px;
		margin: 15px;
	}
	.testimonials .testimonial-item .testimonial-img {
		position: static;
		left: auto;
	}
}
/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/
.news-section {
	padding-top: 0;
}
.news-section .section-title {
	padding-bottom: 0;
}
.news-section .news-carousel, .news-section .news-slider {
	overflow: hidden;
	padding: 0 25px;
}
@media (max-width: 575.98px) {
	.news-section .news-carousel, .news-section .news-slider {
		padding: 0;
	}
}
.news-section .new-wrap {
	padding-left: 50px;
}
.news-section .new-item {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	min-height: 140px;
	margin: 2rem 1rem;
	padding: 2rem 2rem 1rem 4rem;
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	background-color: var(--surface-color);
	-webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.news-section .new-item .new-img, .news-section .new-item img {
	position: absolute;
	left: -60px;
	width: 120px;
	border-radius: 10px;
	border: 6px solid var(--background-color);
}
@media (max-width: 767.98px) {
	.news-section .new-item .new-img, .news-section .new-item img {
		position: relative;
		left: auto;
		margin-bottom: 0.15rem;
		border-width: 0;
	}
}
.news-section .new-item h3 {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 500;
}
.news-section .new-item h4, .news-section .new-item .new-more {
	-ms-flex-item-align: end;
	    align-self: flex-end;
	margin: 0;
	font-size: 0.975rem;
}
.news-section .new-item h4 a, .news-section .new-item .new-more a {
	color: color-mix(in srgb, var(--default-color), transparent 35%);
}
.news-section .new-item h4 a:hover, .news-section .new-item h4 a:focus, .news-section .new-item .new-more a:hover, .news-section .new-item .new-more a:focus {
	color: var(--accent-color);
	text-decoration: underline;
}
.news-section .new-item h4 a:after, .news-section .new-item .new-more a:after {
	display: inline-block;
	margin-left: 0.25rem;
	vertical-align: 0;
	font-family: "icons";
	content: "\e813";
}
.news-section .new-item p, .news-section .new-item .new-anounce {
	display: block;
	-ms-flex-item-align: start;
	    align-self: flex-start;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	margin: 0.5rem auto;
}
.news-section .swiper-wrapper {
	height: auto;
}
.news-section .swiper-pagination {
	margin-top: 20px;
	position: relative;
}
.news-section .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: var(--background-color);
	opacity: 1;
	border: 1px solid var(--accent-color);
}
.news-section .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}
.news-section .swiper-button-prev, .news-section .swiper-button-next {
	top: 50%;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
@media (min-width: 576px) {
	.news-section .swiper-button-prev, .news-section .swiper-button-next {
		-webkit-transform: translateY(calc(-50% + 0.5rem));
		        transform: translateY(calc(-50% + 0.5rem));
		height: 100%;
	}
}
.news-section .swiper-button-prev {
	margin-left: -0.75rem;
}
@media (max-width: 575.98px) {
	.news-section .swiper-button-prev {
		margin-left: 0;
	}
}
.news-section .swiper-button-next {
	margin-right: -0.75rem;
}
@media (max-width: 575.98px) {
	.news-section .swiper-button-next {
		margin-right: 0;
	}
}
@media (max-width: 767.98px) {
	.news-section .new-wrap {
		padding-left: 0;
	}
	.news-section .new-item {
		min-height: 400px;
		margin: 1rem;
		padding: 2rem;
	}
	.news-section .new-item .new-img {
		position: static;
		left: auto;
	}
}

/*--------------------------------------------------------------
# News List Section
--------------------------------------------------------------*/
.newslist {
	margin-top: 2.5rem;
}
.newslist .card {
	margin-bottom: 3.5rem;
	border: none;
	border-radius: 0;
}
.newslist .card .card-body {
	padding: 0;
}
.newslist .card .card-body::after {
	display: block;
	clear: both;
	content: "";
}
.newslist .card .card-body .date {
	display: block;
	float: left;
	width: 86px;
	height: 120px;
	margin: 0 1.75rem 0 0;
	padding-top: 0.625rem;
	text-align: center;
	border: 2px solid var(--border-color);
	border-radius: 0.25rem;
	background-color: color-mix(in srgb, var(--default-color), transparent 96%);
	-webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.newslist .card .card-body .date p {
	margin: 0;
	color: var(--alt-accent-color);
	font-family: var(--heading-font);
	font-weight: 400;
	line-height: 1.1;
}
.newslist .card .card-body .date .day {
	font-size: 2.75rem;
}
.newslist .card .card-body .date .month {
	font-size: 1rem;
	font-weight: 500;
}
.newslist .card .card-body .date .year {
	padding-top: 0.5rem;
	font-size: 1rem;
}
@media (max-width: 767.98px) {
	.newslist .card .card-body .date {
		float: none;
		width: auto;
		height: auto;
		margin: 0 0 0.5rem 0;
		padding-left: 1rem;
		text-align: left;
	}
	.newslist .card .card-body .date p {
		display: inline-block;
		padding: 0 0.5rem 0 0;
		line-height: 2.75rem;
	}
	.newslist .card .card-body .date .month, .newslist .card .card-body .date .year {
		font-size: 1.5rem;
		font-weight: 400;
	}
}
.newslist .card .card-body .news-title, .newslist .card .card-body h3 {
	margin-top: -0.35rem;
	margin-bottom: 0.25rem;
	color: var(--heading-color);
	font-size: 1.65rem;
	font-weight: 400;
	line-height: 1.15;
}
.newslist .card .card-body .news-title a, .newslist .card .card-body h3 a {
	color: var(--heading-color);
}
.newslist .card .card-body .news-title a:hover, .newslist .card .card-body .news-title a:focus, .newslist .card .card-body h3 a:hover, .newslist .card .card-body h3 a:focus {
	color: var(--accent-color);
	text-decoration: none;
}
.newslist .card .card-body .news-text {
	margin-left: 7rem;
}
.newslist .card .card-body .news-text::after {
	display: block;
	clear: both;
	content: "";
}
.newslist .card .card-body .news-text p {
	margin: 0;
}
.newslist .card .card-body .news-text .news-img, .newslist .card .card-body .news-text img {
	max-width: 100%;
	height: auto;
	float: left;
	width: 120px;
	margin-right: 1rem;
	border-radius: 0.15rem;
}
@media (max-width: 767.98px) {
	.newslist .card .card-body .news-text {
		margin-left: 0;
	}
	.newslist .card .card-body .news-text .news-img, .newslist .card .card-body .news-text img {
		float: right;
		margin-right: 0;
		margin-left: 0.5rem;
	}
}

/*--------------------------------------------------------------
# News Item Section
--------------------------------------------------------------*/
.newsitem .news-title {
	margin-bottom: 0.5rem;
	color: var(--heading-color);
	font-family: var(--heading-font);
	font-size: 1.75rem;
	font-weight: 400;
	line-height: 1.25;
}
.newsitem .news-date {
	margin-bottom: 0.5rem;
	padding: 1rem;
	color: var(--contrast-color);
	text-align: center;
	font-family: var(--nav-font);
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1.25;
	background-color: var(--accent-color);
}
@media (max-width: 767.98px) {
	.newsitem .news-title, .newsitem .news-date {
		margin-bottom: 1rem;
	}
}
.newsitem .news-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-flow: column nowrap;
	        flex-flow: column nowrap;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.35;
}
.newsitem .news-content .news-source {
	-ms-flex-item-align: end;
	    align-self: flex-end;
	font-family: var(--heading-font);
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.25;
}
.newsitem .news-content .news-source a {
	color: var(--alt-accent-color);
	text-decoration: underline;
}
.newsitem .news-content .news-source a:hover {
	color: var(--accent-color);
}
.newsitem .news-content ul {
	list-style-type: disc;
	list-style-position: outside;
	margin-left: 1rem;
	padding: 0;
}
.newsitem .news-content ul li {
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
}
.newsitem .news-content dt {
	font-family: var(--heading-font);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.35;
}
.newsitem .news-content dd sup [class^=icon-], .newsitem .news-content dd sup [class*=" icon-"] {
	vertical-align: middle;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 0.75rem;
}
.newsitem .news-img {
	max-height: 350px;
	border-radius: 0.15rem;
	max-width: 100%;
	height: auto;
}

/*--------------------------------------------------------------
# Dogs Section
--------------------------------------------------------------*/
.dogs .block-content .block-title, .dogs .block-content .block-item {
	height: 100%;
	margin-bottom: 1.5rem;
	padding: 1.5rem;
	background-color: var(--background-color);
	-webkit-box-shadow: 0px 0 2rem rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 0 2rem rgba(0, 0, 0, 0.1);
}
.dogs .block-content .block-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 1rem 1.5rem;
}
.dogs .block-content .block-title [class^=icon-], .dogs .block-content .block-title [class*=" icon-"] {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-right: 1rem;
	color: var(--alt-accent-color);
	font-size: 3rem;
	line-height: 0;
}
.dogs .block-content .block-title h4 {
	margin: 0;
	font-family: var(--heading-font);
	font-size: 1.75rem;
	font-weight: 500;
}
.dogs .block-content .block-item {
	min-height: 100px;
}
.dogs .block-content .block-item::after {
	display: block;
	clear: both;
	content: "";
}
.dogs .block-content .block-item img {
	max-width: 100%;
	height: auto;
	float: left;
	width: 112px;
	margin-right: 1.25rem;
	border-radius: 0.25rem;
}
.dogs .block-content .block-item [class^=icon-], .dogs .block-content .block-item [class*=" icon-"] {
	color: var(--alt-color);
	font-size: 1rem;
	font-weight: 400;
	line-height: 0;
}
.dogs .block-content .block-item sup [class^=icon-], .dogs .block-content .block-item sup [class*=" icon-"] {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
	font-size: 0.75rem;
}
.dogs .block-content .block-item h4, .dogs .block-content .block-item h5 {
	margin-top: 0;
	margin-bottom: 0.25rem;
	font-family: var(--heading-font);
	line-height: 1.25;
}
.dogs .block-content .block-item h4 {
	margin-top: -0.25rem;
	font-size: 1.25rem;
	font-weight: 500;
}
.dogs .block-content .block-item h5 {
	font-size: 0.95rem;
	font-weight: 400;
}
.dogs .block-content .block-item p {
	margin: 0;
	font-family: var(--default-font);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.25;
}
.dogs .block-content .block-item p a {
	font-size: 1rem;
	font-weight: 500;
}
.dogs .block-content .block-item a {
	color: var(--default-color);
}
.dogs .block-content .block-item a:hover, .dogs .block-content .block-item a:focus {
	color: var(--alt-accent-color);
}
.dogs .block-content .block-item a:hover h4, .dogs .block-content .block-item a:hover h5, .dogs .block-content .block-item a:focus h4, .dogs .block-content .block-item a:focus h5 {
	color: var(--alt-accent-color);
}

.dogitem .card-item {
	position: relative;
	background-color: var(--surface-color);
}
.dogitem .card-item .card-bg {
	position: relative;
	min-height: 300px;
}
.dogitem .card-item .card-bg img {
	max-width: 100%;
	height: auto;
	width: 460px;
	border-radius: 0.25rem;
}
.dogitem .card-item .card-body {
	padding: 0 1rem;
}
.dogitem .card-item h4, .dogitem .card-item .card-title {
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	font-weight: 500;
}
.dogitem .card-item h4 span, .dogitem .card-item .card-title span {
	font-weight: 400;
}
.dogitem .card-item .card-subtitle {
	margin-bottom: 1rem;
	font-size: 1.25rem;
	font-weight: 400;
}
.dogitem .card-item sup [class^=icon-], .dogitem .card-item sup [class*=" icon-"] {
	vertical-align: middle;
	color: color-mix(in srgb, var(--default-color), transparent 65%);
	font-size: 0.75rem;
}
.dogitem .card-item p {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.dogitem .card-item p:last-of-type {
	margin: 0;
}
.dogitem .card-item a {
	color: var(--default-color);
}
.dogitem .card-item a:hover, .dogitem .card-item a:focus {
	color: var(--alt-accent-color);
}
.dogitem .card-item a:hover h4, .dogitem .card-item a:hover h5, .dogitem .card-item a:focus h4, .dogitem .card-item a:focus h5 {
	color: var(--alt-accent-color);
}
.dogitem .card-item ul.list-unstyled {
	padding-left: 0;
}
.dogitem .card-item dl {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: -webkit-max-content auto;
	-ms-grid-columns: max-content auto;
	grid-template-columns: -webkit-max-content auto;
	grid-template-columns: max-content auto;
}
.dogitem .card-item dl dt {
	-ms-grid-column: 1;
	    grid-column-start: 1;
	color: color-mix(in srgb, var(--default-color), transparent 10%);
	padding-right: 0.75rem;
	font-size: 1rem;
	font-weight: 400;
}
.dogitem .card-item dl dd {
	-ms-grid-column: 2;
	    grid-column-start: 2;
	margin-bottom: 0.25rem;
	color: var(--default-color);
	font-size: 1rem;
	font-weight: 500;
}
.dogitem .card-item dl dd.justify {
	-ms-hyphens: auto;
	    hyphens: auto;
	text-align: justify;
}
.dogitem .card-item dl dd [class^=icon-], .dogitem .card-item dl dd [class*=" icon-"] {
	font-size: 0.75rem;
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
	background: var(--surface-color);
	-webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.recent-blog-posts .post-item .post-img img {
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.recent-blog-posts .post-item .post-date {
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: var(--accent-color);
	color: var(--contrast-color);
	text-transform: uppercase;
	font-size: 13px;
	padding: 6px 12px;
	font-weight: 500;
}
.recent-blog-posts .post-item .post-content {
	padding: 30px;
}
.recent-blog-posts .post-item .post-title {
	color: var(--heading-color);
	font-size: 20px;
	font-weight: 700;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	margin-bottom: 15px;
}
.recent-blog-posts .post-item .meta i {
	font-size: 16px;
	color: var(--accent-color);
}
.recent-blog-posts .post-item .meta span {
	font-size: 15px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.recent-blog-posts .post-item hr {
	color: color-mix(in srgb, var(--default-color), transparent 80%);
	margin: 20px 0;
}
.recent-blog-posts .post-item .readmore {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-weight: 600;
	line-height: 1;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.recent-blog-posts .post-item .readmore i {
	line-height: 0;
	margin-left: 6px;
	font-size: 16px;
}
.recent-blog-posts .post-item:hover .post-title, .recent-blog-posts .post-item:hover .readmore {
	color: var(--accent-color);
}
.recent-blog-posts .post-item:hover .post-img img {
	-webkit-transform: scale(1.1);
	        transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
	font-size: 2.75rem;
	font-weight: 700;
	margin: 30px 0;
}
.about .our-story {
	padding: 40px;
	background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}
.about .our-story h4 {
	text-transform: uppercase;
	font-size: 1.1rem;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.about .our-story h3 {
	font-size: 2.25rem;
	font-weight: 700;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.about .our-story p:last-child {
	margin-bottom: 0;
}
.about ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
}
.about ul li {
	padding: 5px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.about ul i {
	font-size: 1.25rem;
	margin-right: 0.5rem;
	line-height: 1.2;
	color: var(--accent-color);
}
.about .watch-video i {
	font-size: 2rem;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: var(--accent-color);
}
.about .watch-video a {
	font-weight: 600;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	margin-left: 8px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.about .watch-video:hover a {
	color: var(--accent-color);
}
.about .about-img {
	min-height: 400px;
	position: relative;
}
.about .about-img img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	z-index: 1;
}

@media (min-width: 991px) {
	.about .inner-title {
		max-width: 65%;
		margin: 0 0 80px 0;
	}
}
@media (min-width: 991px) {
	.about .our-story {
		padding-right: 35%;
	}
}
@media (min-width: 992px) {
	.about .about-img {
		position: absolute;
		top: 0;
		right: 0;
		min-height: 600px;
	}
}
/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
	-webkit-box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
	padding: 30px;
}
.stats-counter .stats-item i {
	color: var(--accent-color);
	font-size: 42px;
	line-height: 0;
	margin-right: 20px;
}
.stats-counter .stats-item span {
	color: var(--heading-color);
	font-size: 36px;
	display: block;
	font-weight: 600;
}
.stats-counter .stats-item p {
	padding: 0;
	margin: 0;
	font-family: var(--heading-font);
	font-size: 16px;
}

.block-counter .block-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100%;
	height: 100%;
	padding: 3rem 2rem;
	-webkit-box-shadow: 0px 0 2rem rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 0 2rem rgba(0, 0, 0, 0.1);
}
.block-counter .block-item i {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-right: 20px;
	color: var(--alt-accent-color);
	font-size: 48px;
	line-height: 0;
}
.block-counter .block-item span {
	display: block;
	color: var(--heading-color);
	font-size: 36px;
	font-weight: 600;
}
.block-counter .block-item p {
	margin: 0;
	padding: 0;
	font-family: var(--heading-font);
	font-size: 16px;
}
.block-counter .block-item a {
	color: var(--heading-color);
}
.block-counter .block-item a:hover, .block-counter .block-item a:focus {
	color: var(--accent-color);
}
.block-counter .block-item h3, .block-counter .block-item h4 {
	margin: 0;
	font-family: var(--heading-font);
	font-weight: 400;
}

/*--------------------------------------------------------------
# Alt Services 2 Section
--------------------------------------------------------------*/
.alt-services-2 .features-image {
	position: relative;
	min-height: 400px;
}
.alt-services-2 .features-image img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	z-index: 1;
}
.alt-services-2 h3 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
}
.alt-services-2 .icons-box {
	margin-top: 30px;
}
.alt-services-2 .icons-box i {
	color: var(--accent-color);
	margin-right: 15px;
	font-size: 24px;
	line-height: 1.2;
}
.alt-services-2 .icons-box h4 {
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 18px;
}
.alt-services-2 .icons-box p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
	position: relative;
}
.team .member .member-img {
	position: relative;
	overflow: hidden;
	margin: 0 80px;
	border-radius: 50%;
}
.team .member .member-img img {
	position: relative;
	z-index: 1;
}
.team .member .member-img .social {
	position: absolute;
	visibility: hidden;
	inset: 0;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	padding-bottom: 20px;
	background-color: rgba(0, 0, 0, 0.6);
	-webkit-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
}
.team .member .member-img .social a {
	margin: 0 8px;
	color: var(--contrast-color);
	font-size: 20px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.team .member .member-img .social a:hover {
	color: var(--accent-color);
}
.team .member .member-info {
	margin-top: 30px;
}
.team .member .member-info h4 {
	font-weight: 700;
	margin-bottom: 6px;
	font-size: 18px;
}
.team .member .member-info span {
	font-style: italic;
	display: block;
	font-size: 15px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	margin-bottom: 10px;
}
.team .member .member-info p {
	margin-bottom: 0;
	font-size: 14px;
}
.team .member:hover .member-img .social {
	visibility: visible;
	opacity: 1;
	padding-bottom: 0;
}

@media (max-width: 1024px) {
	.team .member .member-img {
		margin: 0 60px;
	}
}
/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards h3 {
	font-size: 20px;
	font-weight: 700;
}
.features-cards p {
	font-size: 15px;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.features-cards ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 14px;
	padding-top: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.features-cards ul li i {
	font-size: 16px;
	color: var(--accent-color);
	margin-right: 6px;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
	background-color: var(--surface-color);
	padding: 10px 30px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
	margin-bottom: 20px;
}
.service-details .services-list a {
	display: block;
	line-height: 1;
	padding: 8px 0 8px 15px;
	border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
	margin: 20px 0;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.service-details .services-list a.active {
	color: var(--heading-color);
	font-weight: 700;
	border-color: var(--accent-color);
}
.service-details .services-list a:hover {
	border-color: var(--accent-color);
}
.service-details .services-img {
	margin-bottom: 20px;
}
.service-details h3 {
	font-size: 26px;
	font-weight: 700;
}
.service-details h4 {
	font-size: 20px;
	font-weight: 700;
}
.service-details p {
	font-size: 15px;
}
.service-details ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
}
.service-details ul li {
	padding: 5px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.service-details ul i {
	font-size: 20px;
	margin-right: 8px;
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
	width: 100%;
}
.project-details .swiper-wrapper {
	height: auto;
}
.project-details .swiper-button-prev, .project-details .swiper-button-next {
	width: 48px;
	height: 48px;
}
.project-details .swiper-button-prev:after, .project-details .swiper-button-next:after {
	color: rgba(255, 255, 255, 0.8);
	background-color: rgba(0, 0, 0, 0.15);
	font-size: 24px;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.project-details .swiper-button-prev:hover:after, .project-details .swiper-button-next:hover:after {
	background-color: rgba(0, 0, 0, 0.3);
}
.project-details .swiper-pagination {
	margin-top: 20px;
	position: relative;
}
.project-details .swiper-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: color-mix(in srgb, var(--default-color), transparent 85%);
	opacity: 1;
}
.project-details .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}
.project-details .portfolio-info h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}
.project-details .portfolio-info h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: var(--accent-color);
	left: 0;
	bottom: 0;
}
.project-details .portfolio-info ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
}
.project-details .portfolio-info ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding-bottom: 15px;
}
.project-details .portfolio-info ul strong {
	text-transform: uppercase;
	font-weight: 400;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 14px;
}
.project-details .portfolio-info .btn-visit {
	padding: 8px 40px;
	background: var(--accent-color);
	color: var(--contrast-color);
	border-radius: 50px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.project-details .portfolio-info .btn-visit:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.project-details .portfolio-description h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
}
.project-details .portfolio-description p {
	padding: 0;
}
.project-details .portfolio-description .testimonial-item {
	padding: 30px 30px 0 30px;
	position: relative;
	background: color-mix(in srgb, var(--default-color), transparent 97%);
	margin-bottom: 50px;
}
.project-details .portfolio-description .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 50px;
	border: 6px solid var(--background-color);
	float: left;
	margin: 0 10px 0 0;
}
.project-details .portfolio-description .testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 15px 0 5px 0;
	padding-top: 20px;
}
.project-details .portfolio-description .testimonial-item h4 {
	font-size: 14px;
	color: #6c757d;
	margin: 0;
}
.project-details .portfolio-description .testimonial-item .quote-icon-left, .project-details .portfolio-description .testimonial-item .quote-icon-right {
	color: color-mix(in srgb, var(--accent-color), transparent 50%);
	font-size: 26px;
	line-height: 0;
}
.project-details .portfolio-description .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}
.project-details .portfolio-description .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
	-webkit-transform: scale(-1, -1);
	        transform: scale(-1, -1);
}
.project-details .portfolio-description .testimonial-item p {
	font-style: italic;
	margin: 0 0 15px 0 0 0;
	padding: 0;
}

@media (max-width: 575px) {
	.project-details .swiper-button-prev, .project-details .swiper-button-next {
		display: none;
	}
}
/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
	background-color: var(--surface-color);
	-webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.blog-posts .post-img img {
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.blog-posts .post-date {
	background-color: var(--accent-color);
	color: var(--contrast-color);
	position: absolute;
	right: 0;
	bottom: 0;
	text-transform: uppercase;
	font-size: 13px;
	padding: 6px 12px;
	font-weight: 500;
}
.blog-posts .post-content {
	padding: 30px;
}
.blog-posts .post-title {
	font-size: 20px;
	color: var(--heading-color);
	font-weight: 700;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	margin-bottom: 15px;
}
.blog-posts .meta i {
	font-size: 16px;
	color: var(--accent-color);
}
.blog-posts .meta span {
	font-size: 15px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.blog-posts p {
	margin-top: 20px;
}
.blog-posts hr {
	color: color-mix(in srgb, var(--default-color), transparent 60%);
	margin-bottom: 15px;
}
.blog-posts .readmore {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-weight: 600;
	line-height: 1;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: color-mix(in srgb, var(--heading-color), transparent 20%);
}
.blog-posts .readmore i {
	line-height: 0;
	margin-left: 6px;
	font-size: 16px;
}
.blog-posts article:hover .post-title, .blog-posts article:hover .readmore {
	color: var(--accent-color);
}
.blog-posts article:hover .post-img img {
	-webkit-transform: scale(1.1);
	        transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
	padding-top: 0;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.blog-pagination ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
}
.blog-pagination li {
	margin: 0 5px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.blog-pagination li a {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	padding: 7px 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.blog-pagination li a.active, .blog-pagination li a:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
}
.blog-pagination li a.active a, .blog-pagination li a:hover a {
	color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
	padding-bottom: 30px;
}
.blog-details .article {
	background-color: var(--surface-color);
	padding: 30px;
	-webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog-details .post-img {
	margin: -30px -30px 20px -30px;
	overflow: hidden;
}
.blog-details .title {
	color: var(--heading-color);
	font-size: 28px;
	font-weight: 700;
	padding: 0;
	margin: 30px 0;
}
.blog-details .content {
	margin-top: 20px;
}
.blog-details .content h3 {
	font-size: 22px;
	margin-top: 30px;
	font-weight: bold;
}
.blog-details .content blockquote {
	overflow: hidden;
	background-color: color-mix(in srgb, var(--default-color), transparent 95%);
	padding: 60px;
	position: relative;
	text-align: center;
	margin: 20px 0;
}
.blog-details .content blockquote p {
	color: var(--default-color);
	line-height: 1.6;
	margin-bottom: 0;
	font-style: italic;
	font-weight: 500;
	font-size: 22px;
}
.blog-details .content blockquote:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: var(--accent-color);
	margin-top: 20px;
	margin-bottom: 20px;
}
.blog-details .meta-top {
	margin-top: 20px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.blog-details .meta-top ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	list-style: none;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 0;
	margin: 0;
}
.blog-details .meta-top ul li + li {
	padding-left: 20px;
}
.blog-details .meta-top i {
	font-size: 16px;
	margin-right: 8px;
	line-height: 0;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.blog-details .meta-top a {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	font-size: 14px;
	display: inline-block;
	line-height: 1;
}
.blog-details .meta-bottom {
	padding-top: 10px;
	border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.blog-details .meta-bottom i {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	display: inline;
}
.blog-details .meta-bottom a {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.blog-details .meta-bottom a:hover {
	color: var(--accent-color);
}
.blog-details .meta-bottom .cats {
	list-style: none;
	display: inline;
	padding: 0 20px 0 0;
	font-size: 14px;
}
.blog-details .meta-bottom .cats li {
	display: inline-block;
}
.blog-details .meta-bottom .tags {
	list-style: none;
	display: inline;
	padding: 0;
	font-size: 14px;
}
.blog-details .meta-bottom .tags li {
	display: inline-block;
}
.blog-details .meta-bottom .tags li + li::before {
	padding-right: 6px;
	color: var(--default-color);
	content: ",";
}
.blog-details .meta-bottom .share {
	font-size: 16px;
}
.blog-details .meta-bottom .share i {
	padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
	padding: 10px 0 40px 0;
}
.blog-author .author-container {
	background-color: var(--surface-color);
	padding: 20px;
	-webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog-author img {
	max-width: 120px;
	margin-right: 20px;
}
.blog-author h4 {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 0px;
	padding: 0;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.blog-author .social-links {
	margin: 0 10px 10px 0;
}
.blog-author .social-links a {
	color: color-mix(in srgb, var(--default-color), transparent 60%);
	margin-right: 5px;
}
.blog-author p {
	font-style: italic;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
	padding: 10px 0;
}
.blog-comments .comments-count {
	font-weight: bold;
}
.blog-comments .comment {
	margin-top: 30px;
	position: relative;
}
.blog-comments .comment .comment-img {
	margin-right: 14px;
}
.blog-comments .comment .comment-img img {
	width: 60px;
}
.blog-comments .comment h5 {
	font-size: 16px;
	margin-bottom: 2px;
}
.blog-comments .comment h5 a {
	font-weight: bold;
	color: var(--default-color);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.blog-comments .comment h5 a:hover {
	color: var(--accent-color);
}
.blog-comments .comment h5 .reply {
	padding-left: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.blog-comments .comment h5 .reply i {
	font-size: 20px;
}
.blog-comments .comment time {
	display: block;
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	margin-bottom: 5px;
}
.blog-comments .comment.comment-reply {
	padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
	padding-top: 10px;
}
.comment-form form {
	background-color: var(--surface-color);
	margin-top: 30px;
	padding: 30px;
	-webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.comment-form form h4 {
	font-weight: bold;
	font-size: 22px;
}
.comment-form form p {
	font-size: 14px;
}
.comment-form form input {
	background-color: var(--surface-color);
	color: var(--default-color);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
	font-size: 14px;
	border-radius: 4px;
	padding: 10px 10px;
}
.comment-form form input:focus {
	color: var(--default-color);
	background-color: var(--surface-color);
	-webkit-box-shadow: none;
	        box-shadow: none;
	border-color: var(--accent-color);
}
.comment-form form input::-webkit-input-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.comment-form form input::-moz-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.comment-form form input:-ms-input-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.comment-form form input::-ms-input-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.comment-form form input::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.comment-form form textarea {
	background-color: var(--surface-color);
	color: var(--default-color);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
	border-radius: 4px;
	padding: 10px 10px;
	font-size: 14px;
	height: 120px;
}
.comment-form form textarea:focus {
	color: var(--default-color);
	-webkit-box-shadow: none;
	        box-shadow: none;
	border-color: var(--accent-color);
	background-color: var(--surface-color);
}
.comment-form form textarea::-webkit-input-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.comment-form form textarea::-moz-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.comment-form form textarea:-ms-input-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.comment-form form textarea::-ms-input-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.comment-form form textarea::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.comment-form form .form-group {
	margin-bottom: 25px;
}
.comment-form form .btn-primary {
	border-radius: 4px;
	padding: 10px 20px;
	border: 0;
	background-color: var(--accent-color);
	color: var(--contrast-color);
}
.comment-form form .btn-primary:hover {
	color: var(--contrast-color);
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-title h3, .contact .contact-title h4 {
	margin: 0 0 0.5rem 0;
	font-size: 1.125rem;
	font-weight: 500;
}
.contact .info-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-flow: column wrap;
	        flex-flow: column wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: start;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	min-height: 190px;
	padding: 1.25rem 0.75rem;
	background-color: var(--surface-color);
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) and (max-width: 1199.98px) {
	.contact .info-item {
		min-height: 200px;
	}
}
.contact .info-item .info-icon [class^=icon-], .contact .info-item .info-icon [class*=" icon-"] {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 56px;
	height: 56px;
	color: var(--accent-color);
	font-size: 1.5rem;
	border-radius: 50%;
	border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.contact .info-item .info-social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.contact .info-item .info-social [class^=icon-], .contact .info-item .info-social [class*=" icon-"] {
	margin: 0 0.25rem;
	font-size: 1.35rem;
	color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.contact .info-item .info-social [class^=icon-]:hover, .contact .info-item .info-social [class^=icon-]:focus, .contact .info-item .info-social [class*=" icon-"]:hover, .contact .info-item .info-social [class*=" icon-"]:focus {
	color: var(--accent-color);
}
.contact .info-item h3 {
	margin: 0.625rem 0;
	font-size: 1.125rem;
	font-weight: 600;
	text-align: center;
}
.contact .info-item p {
	margin-bottom: 0;
	padding: 0;
	font-size: 0.875rem;
}
.contact .info-item a {
	color: var(--default-color);
}
.contact .info-item a:hover, .contact .info-item a:focus {
	color: var(--accent-color);
	text-decoration: underline;
}
.contact .contact-form {
	background-color: var(--surface-color);
	padding: 1rem 1.75rem 1.75rem;
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.contact .contact-form .alert {
	margin: 0.75rem 0 0 0;
	padding: 0.75rem 48px 0.75rem 1rem;
}
.contact .contact-form input[type=text], .contact .contact-form input[type=email], .contact .contact-form input[type=tel] {
	font-size: 14px;
	padding: 10px 15px;
	-webkit-box-shadow: none;
	        box-shadow: none;
	border-radius: 0;
	color: var(--default-color);
	background-color: var(--surface-color);
	border-color: color-mix(in srgb, var(--default-color), transparent 75%);
}
.contact .contact-form textarea {
	font-size: 14px;
	padding: 10px 15px;
	-webkit-box-shadow: none;
	        box-shadow: none;
	border-radius: 0;
	color: var(--default-color);
	background-color: var(--surface-color);
	border-color: color-mix(in srgb, var(--default-color), transparent 75%);
}
.contact .contact-form input[type=text]:focus, .contact .contact-form input[type=email]:focus {
	border-color: var(--accent-color);
}
.contact .contact-form textarea:focus {
	border-color: var(--accent-color);
}
.contact .contact-form input[type=text]::-webkit-input-placeholder, .contact .contact-form input[type=email]::-webkit-input-placeholder, .contact .contact-form input[type=tel]::-webkit-input-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.contact .contact-form input[type=text]::-moz-placeholder, .contact .contact-form input[type=email]::-moz-placeholder, .contact .contact-form input[type=tel]::-moz-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.contact .contact-form input[type=text]:-ms-input-placeholder, .contact .contact-form input[type=email]:-ms-input-placeholder, .contact .contact-form input[type=tel]:-ms-input-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.contact .contact-form input[type=text]::-ms-input-placeholder, .contact .contact-form input[type=email]::-ms-input-placeholder, .contact .contact-form input[type=tel]::-ms-input-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.contact .contact-form input[type=text]::placeholder, .contact .contact-form input[type=email]::placeholder, .contact .contact-form input[type=tel]::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.contact .contact-form textarea::-webkit-input-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.contact .contact-form textarea::-moz-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.contact .contact-form textarea:-ms-input-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.contact .contact-form textarea::-ms-input-placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.contact .contact-form textarea::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.contact .contact-form button[type=submit] {
	color: var(--contrast-color);
	background: var(--accent-color);
	border: 0;
	padding: 10px 30px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border-radius: 50px;
}
.contact .contact-form button[type=submit]:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 575px) {
	.contact .contact-form {
		padding: 20px;
	}
}
/*--------------------------------------------------------------
# Starter Section
--------------------------------------------------------------*/
.starter-section {
	/* Add your styles here */
}

/*--------------------------------------------------------------
# Photo Gallery Section
--------------------------------------------------------------*/
/* glightbox */
.gslide-desc h4 {
	margin-bottom: 0.25rem;
	font-family: var(--heading-font);
	font-size: 1.125rem;
	font-weight: 500;
}
.gslide-desc p {
	font-family: var(--default-font);
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.35;
}

/* photogal */
.photogal .col {
	position: relative;
}
.photogal .col img {
	max-width: 100%;
	height: auto;
}
.photogal .col .play {
	position: absolute;
	left: calc(50% - 32px);
	top: calc(50% - 32px);
	max-width: 64px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.photogal .col .caption {
	position: absolute;
	display: none;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0.5rem 1rem;
	line-height: 1.35;
	color: var(--default-color);
	background-color: rgba(255, 255, 255, 0.85);
}
.photogal .col .caption h4, .photogal .col .caption h5 {
	margin-bottom: 0.25rem;
	text-align: center;
	color: var(--heading-color);
	font-family: var(--heading-font);
}
.photogal .col .caption h4 {
	font-size: 1.10625rem;
	font-weight: 500;
}
.photogal .col .caption h5 {
	font-size: 1rem;
	font-weight: 500;
}
.photogal .col .caption p {
	margin-bottom: 0.25rem;
	text-align: left;
	font-size: 0.85rem;
}
.photogal .col:hover .caption, .photogal .col:focus .caption {
	display: block;
}

/* card columns layout */
@media (min-width: 576px) {
	.card-columns {
		-webkit-column-count: 4;
		   -moz-column-count: 4;
		        column-count: 4;
		-webkit-column-gap: 0.75rem;
		   -moz-column-gap: 0.75rem;
		        column-gap: 0.75rem;
		orphans: 1;
		widows: 1;
	}
	.card-columns .card {
		display: inline-block;
		width: 100%;
	}
}
@media (min-width: 576px) and (max-width: 991.98px) {
	.card-columns {
		-webkit-column-count: 3;
		   -moz-column-count: 3;
		        column-count: 3;
	}
}
@media (min-width: 576px) and (max-width: 991.98px) and (max-width: 767.98px) {
	.card-columns {
		-webkit-column-count: 2;
		   -moz-column-count: 2;
		        column-count: 2;
	}
}
.card-columns .card {
	margin-bottom: 0.75rem;
	border-radius: 0;
	-webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
	        box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
}
.card-columns .card img {
	max-width: 100%;
	height: auto;
	border-radius: 0;
}

/* gallery */
.gallery .card {
	position: relative;
	-webkit-transition: bottom 1s ease-out 0.5s;
	transition: bottom 1s ease-out 0.5s;
}
.gallery .card img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
.gallery .card .caption {
	display: none;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0.5rem 0.75rem;
	line-height: 1.35;
	color: var(--default-color);
	background-color: rgba(255, 255, 255, 0.85);
}
.gallery .card .caption h4, .gallery .card .caption h5 {
	margin-bottom: 0.25rem;
	text-align: center;
	color: var(--heading-color);
	font-family: var(--heading-font);
}
.gallery .card .caption h4 {
	font-size: 1.125rem;
	font-weight: 500;
	text-transform: uppercase;
}
.gallery .card .caption h5 {
	font-size: 1rem;
	font-weight: 500;
}
.gallery .card .caption p {
	margin-bottom: 0.25rem;
	text-align: left;
	font-size: 0.85rem;
}
.gallery .card:hover .caption, .gallery .card:focus .caption {
	display: block;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
	background-color: var(--surface-color);
	padding: 30px;
	margin: 60px 0 30px 0;
	-webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
	color: var(--heading-color);
	font-size: 20px;
	font-weight: 700;
	padding: 0;
	margin: 0 0 20px 0;
}

.widget-item {
	margin-bottom: 40px;
}
.widget-item:last-child {
	margin-bottom: 0;
}

.search-widget form {
	background: var(--background-color);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
	padding: 3px 10px;
	position: relative;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.search-widget form input[type=text] {
	border: 0;
	padding: 4px;
	border-radius: 4px;
	width: calc(100% - 40px);
	background-color: var(--background-color);
	color: var(--default-color);
}
.search-widget form input[type=text]:focus {
	outline: none;
}
.search-widget form button {
	background: var(--accent-color);
	color: var(--contrast-color);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border: 0;
	font-size: 16px;
	padding: 0 15px;
	margin: -1px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	border-radius: 0 4px 4px 0;
	line-height: 0;
}
.search-widget form button i {
	line-height: 0;
}
.search-widget form button:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.search-widget form:is(:focus-within) {
	border-color: var(--accent-color);
}

.categories-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.categories-widget ul li {
	padding-bottom: 10px;
}
.categories-widget ul li:last-child {
	padding-bottom: 0;
}
.categories-widget ul a {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.categories-widget ul a:hover {
	color: var(--accent-color);
}
.categories-widget ul a span {
	padding-left: 5px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 14px;
}

.recent-posts-widget .post-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 15px;
}
.recent-posts-widget .post-item:last-child {
	margin-bottom: 0;
}
.recent-posts-widget .post-item img {
	width: 80px;
	margin-right: 15px;
}
.recent-posts-widget .post-item h4 {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 5px;
}
.recent-posts-widget .post-item h4 a {
	color: var(--default-color);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.recent-posts-widget .post-item h4 a:hover {
	color: var(--accent-color);
}
.recent-posts-widget .post-item time {
	display: block;
	font-style: italic;
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
	margin-bottom: -10px;
}
.tags-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.tags-widget ul li {
	display: inline-block;
}
.tags-widget ul a {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	font-size: 14px;
	padding: 6px 14px;
	margin: 0 6px 8px 0;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
	display: inline-block;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.tags-widget ul a:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
	border: 1px solid var(--accent-color);
}
.tags-widget ul a span {
	padding-left: 5px;
	color: color-mix(in srgb, var(--default-color), transparent 60%);
	font-size: 14px;
}
/*# sourceMappingURL=main.css.map */