/*!
Theme Name: Amici Bruerni
Theme URI: https://github.com/KadziolkaLuda/Amici-Bruerni-theme
Author: Liudmyla Kadziolka
Author URI: https://github.com/KadziolkaLuda
Description: A custom WordPress theme for Amici Bruerni - the charity supporting Bruern Abbey. This theme includes SCSS support and is specifically designed for the charity's website needs.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: amici-bruerni
*/
/* Normalize styles */
html {
	box-sizing: border-box;
	font-size: 16px;
}

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

body {
	margin: 0;
	padding: 0;
	font-family: "Helvetica Neue", Arial, sans-serif;
	line-height: 1.5;
	color: #333;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: #3D89A5;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 20px;
	font-family: "Helvetica Neue", Arial, sans-serif;
	line-height: 1.2;
}

/* Typography styles */
body {
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #333;
}

h1 {
	font-size: 2.5rem;
	line-height: 1.2;
	font-family: "Helvetica Neue", Arial, sans-serif;
	margin-bottom: 20px;
}

h2 {
	font-size: 2rem;
	line-height: 1.3;
	font-family: "Helvetica Neue", Arial, sans-serif;
	margin-bottom: 20px;
}

h3 {
	font-size: 1.75rem;
	line-height: 1.4;
	font-family: "Helvetica Neue", Arial, sans-serif;
	margin-bottom: 20px;
}

p {
	margin-bottom: 20px;
}

blockquote {
	margin: 20px 0;
	padding: 20px;
	border-left: 4px solid #3D89A5;
	background-color: #f1f1f1;
}
blockquote p {
	margin-bottom: 0;
}

pre {
	background-color: #f1f1f1;
	padding: 20px;
	border-radius: 4px;
	overflow-x: auto;
}

code {
	font-family: monospace;
	background-color: #f1f1f1;
	padding: 2px 4px;
	border-radius: 2px;
}

.link-footer {
	color: #fff;
}

/* Header styles */
.site-header {
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 20px 0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-branding {
	display: flex;
	align-items: center;
}
.site-branding .site-title {
	margin: 0;
	font-size: 1.5rem;
	font-weight: bold;
}
.site-branding .site-title a {
	color: #333;
	text-decoration: none;
}
.site-branding .site-title a:hover {
	color: #3D89A5;
}

.main-navigation ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}
.main-navigation ul li {
	margin-left: 20px;
}
.main-navigation ul li a {
	color: #333;
	text-decoration: none;
	padding: 0.5rem 1rem;
	border-radius: 4px;
}
.main-navigation ul li a:hover {
	color: #3D89A5;
	background-color: #f1f1f1;
}

/* Footer styles */
.site-footer {
	background-color: #23282d;
	color: #fff;
	padding: 60px 0;
}
.site-footer .footer-widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 60px;
}
.site-footer .footer-widgets .widget h2 {
	color: #fff;
	font-size: 1.25rem;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #3D89A5;
}
.site-footer .footer-widgets .widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.site-footer .footer-widgets .widget ul li {
	margin-bottom: 10px;
}
.site-footer .footer-widgets .widget ul li a {
	color: #f1f1f1;
	text-decoration: none;
}
.site-footer .footer-widgets .widget ul li a:hover {
	color: #3D89A5;
}
.site-footer .footer-widgets .widget p {
	color: #f1f1f1;
	line-height: 1.6;
}
.site-footer .footer-widgets .widget .tagcloud a {
	display: inline-block;
	padding: 5px 10px;
	margin: 0 5px 5px 0;
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 0.875rem !important;
}
.site-footer .footer-widgets .widget .tagcloud a:hover {
	background-color: #3D89A5;
}
.site-footer .site-info {
	text-align: center;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .site-info p {
	margin: 0;
	color: #f1f1f1;
}
.site-footer .site-info p a {
	color: #3D89A5;
	text-decoration: none;
}
.site-footer .site-info p a:hover {
	text-decoration: underline;
}

/* Sidebar styles */
.sidebar .widget {
	background-color: #fff;
	padding: 40px;
	margin-bottom: 40px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.sidebar .widget h2 {
	color: #23282d;
	font-size: 1.25rem;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #3D89A5;
}
.sidebar .widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.sidebar .widget ul li {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #f1f1f1;
}
.sidebar .widget ul li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.sidebar .widget ul li a {
	color: #333;
	text-decoration: none;
}
.sidebar .widget ul li a:hover {
	color: #3D89A5;
}
.sidebar .widget p {
	color: #333;
	line-height: 1.6;
	margin-bottom: 20px;
}
.sidebar .widget .tagcloud a {
	display: inline-block;
	padding: 5px 10px;
	margin: 0 5px 5px 0;
	background-color: #f1f1f1;
	color: #333;
	text-decoration: none;
	border-radius: 4px;
	font-size: 0.875rem !important;
}
.sidebar .widget .tagcloud a:hover {
	background-color: #3D89A5;
	color: #fff;
}
.sidebar .widget .search-form {
	display: flex;
}
.sidebar .widget .search-form input[type=search] {
	flex: 1;
	padding: 10px;
	border: 1px solid #f1f1f1;
	border-radius: 4px 0 0 4px;
}
.sidebar .widget .search-form input[type=search]:focus {
	outline: none;
	border-color: #3D89A5;
}
.sidebar .widget .search-form button {
	padding: 10px;
	background-color: #3D89A5;
	color: #fff;
	border: none;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
}
.sidebar .widget .search-form button:hover {
	background-color: rgb(47.2345132743, 106.0840707965, 127.7654867257);
}

/* Content styles */
.site-content {
	padding: 80px 0;
}
.site-content .entry-header {
	margin-bottom: 60px;
	text-align: center;
}
.site-content .entry-header .entry-title {
	color: #23282d;
	font-size: 2.5rem;
	margin-bottom: 20px;
}
.site-content .entry-header .entry-meta {
	color: #f1f1f1;
	font-size: 0.875rem;
}
.site-content .entry-header .entry-meta a {
	color: #3D89A5;
	text-decoration: none;
}
.site-content .entry-header .entry-meta a:hover {
	text-decoration: underline;
}
.site-content .entry-content {
	color: #333;
	line-height: 1.8;
}
.site-content .entry-content p {
	margin-bottom: 30px;
}
.site-content .entry-content h2, .site-content .entry-content h3, .site-content .entry-content h4 {
	color: #23282d;
	margin: 40px 0 20px;
}
.site-content .entry-content ul, .site-content .entry-content ol {
	margin-bottom: 30px;
	padding-left: 40px;
}
.site-content .entry-content ul li, .site-content .entry-content ol li {
	margin-bottom: 10px;
}
.site-content .entry-content blockquote {
	border-left: 4px solid #3D89A5;
	padding-left: 40px;
	margin: 40px 0;
	font-style: italic;
	color: #23282d;
}
.site-content .entry-content img {
	max-width: 100%;
	height: auto;
	margin: 40px 0;
	border-radius: 8px;
}
.site-content .entry-content a {
	color: #3D89A5;
	text-decoration: none;
}
.site-content .entry-content a:hover {
	text-decoration: underline;
}
.site-content .entry-footer {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid #f1f1f1;
}
.site-content .entry-footer .cat-links, .site-content .entry-footer .tags-links {
	display: inline-block;
	margin-right: 40px;
}
.site-content .entry-footer .cat-links a, .site-content .entry-footer .tags-links a {
	color: #3D89A5;
	text-decoration: none;
}
.site-content .entry-footer .cat-links a:hover, .site-content .entry-footer .tags-links a:hover {
	text-decoration: underline;
}
.site-content .post-navigation {
	margin: 80px 0;
}
.site-content .post-navigation .nav-links {
	display: flex;
	justify-content: space-between;
}
.site-content .post-navigation .nav-links .nav-previous a, .site-content .post-navigation .nav-links .nav-next a {
	display: inline-block;
	padding: 20px;
	background-color: #f1f1f1;
	color: #333;
	text-decoration: none;
	border-radius: 4px;
}
.site-content .post-navigation .nav-links .nav-previous a:hover, .site-content .post-navigation .nav-links .nav-next a:hover {
	background-color: #3D89A5;
	color: #fff;
}
.site-content .comments-area {
	margin-top: 80px;
}
.site-content .comments-area .comments-title {
	color: #23282d;
	font-size: 1.5rem;
	margin-bottom: 40px;
}
.site-content .comments-area .comment-list {
	list-style: none;
	padding: 0;
	margin: 0 0 60px;
}
.site-content .comments-area .comment-list .comment {
	padding: 40px;
	margin-bottom: 40px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.site-content .comments-area .comment-list .comment .comment-author {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.site-content .comments-area .comment-list .comment .comment-author .avatar {
	margin-right: 20px;
	border-radius: 50%;
}
.site-content .comments-area .comment-list .comment .comment-author .fn {
	color: #23282d;
	font-weight: 600;
}
.site-content .comments-area .comment-list .comment .comment-author .fn a {
	color: inherit;
	text-decoration: none;
}
.site-content .comments-area .comment-list .comment .comment-author .fn a:hover {
	color: #3D89A5;
}
.site-content .comments-area .comment-list .comment .comment-metadata {
	color: #f1f1f1;
	font-size: 0.875rem;
	margin-bottom: 20px;
}
.site-content .comments-area .comment-list .comment .comment-metadata a {
	color: inherit;
	text-decoration: none;
}
.site-content .comments-area .comment-list .comment .comment-metadata a:hover {
	color: #3D89A5;
}
.site-content .comments-area .comment-list .comment .comment-content {
	color: #333;
	line-height: 1.6;
}
.site-content .comments-area .comment-list .comment .reply {
	margin-top: 20px;
}
.site-content .comments-area .comment-list .comment .reply a {
	color: #3D89A5;
	text-decoration: none;
	font-size: 0.875rem;
}
.site-content .comments-area .comment-list .comment .reply a:hover {
	text-decoration: underline;
}
.site-content .comments-area .comment-respond {
	background-color: #fff;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.site-content .comments-area .comment-respond .comment-reply-title {
	color: #23282d;
	font-size: 1.5rem;
	margin-bottom: 40px;
}
.site-content .comments-area .comment-respond .comment-form label {
	display: block;
	margin-bottom: 10px;
	color: #23282d;
}
.site-content .comments-area .comment-respond .comment-form input[type=text],
.site-content .comments-area .comment-respond .comment-form input[type=email],
.site-content .comments-area .comment-respond .comment-form input[type=url],
.site-content .comments-area .comment-respond .comment-form textarea {
	width: 100%;
	padding: 20px;
	margin-bottom: 20px;
	border: 1px solid #f1f1f1;
	border-radius: 4px;
}
.site-content .comments-area .comment-respond .comment-form input[type=text]:focus,
.site-content .comments-area .comment-respond .comment-form input[type=email]:focus,
.site-content .comments-area .comment-respond .comment-form input[type=url]:focus,
.site-content .comments-area .comment-respond .comment-form textarea:focus {
	outline: none;
	border-color: #3D89A5;
}
.site-content .comments-area .comment-respond .comment-form .form-submit input[type=submit] {
	background-color: #3D89A5;
	color: #fff;
	padding: 20px 40px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
.site-content .comments-area .comment-respond .comment-form .form-submit input[type=submit]:hover {
	background-color: rgb(47.2345132743, 106.0840707965, 127.7654867257);
}

.custom-nav .menu-item {
	padding-left: 12px;
	padding-right: 12px;
	position: relative;
}
@media only screen and (min-width: 1025px) {
	.custom-nav .menu-item:not(:last-child):after {
		content: "";
		position: absolute;
		display: block;
		width: 1px;
		height: 100%;
		background-color: #FFF;
		right: 0;
		top: 0;
	}
}
.custom-nav .menu-item a:after {
	height: 1px !important;
}
.custom-nav .uc-close-side-menu {
	border: 1px solid #FFF;
}

.amici-header-menu a:hover {
	text-decoration: none;
}
.amici-header-menu .e--pointer-double-line .elementor-item:after, .amici-header-menu .e--pointer-underline .elementor-item:after {
	bottom: -4px;
}

.custom-owl .owce-carousel.owl-loaded {
	display: flex;
	flex-direction: column;
}
.custom-owl .owce-carousel .owl-nav {
	width: 300px;
	margin: 0;
	align-self: center;
	position: relative;
}
.custom-owl .owce-carousel .owl-nav .owl-prev,
.custom-owl .owce-carousel .owl-nav .owl-next {
	top: auto;
}
.custom-owl .owce-carousel .owl-nav .owl-prev i,
.custom-owl .owce-carousel .owl-nav .owl-next i {
	border-radius: 100%;
	font-size: 16px;
	padding: 20px;
}
.custom-owl .owce-carousel .owl-nav .owl-prev {
	left: 0;
}
.custom-owl .owce-carousel .owl-nav .owl-prev i:before {
	content: "\e8bf";
}
.custom-owl .owce-carousel .owl-nav .owl-next {
	right: 0;
}
.custom-owl .owce-carousel .owl-nav .owl-next i:before {
	content: "\e8c0";
}
.custom-owl .owce-carousel .owl-dots {
	max-width: 100px;
	margin: 0 auto;
	height: 60px;
	display: flex;
	align-items: center;
}
.custom-owl .owce-carousel .owl-dots .owl-dot.active span {
	background: #006C83;
}

.custom-btn .elementor-button:hover {
	text-decoration: none;
}
.custom-btn--link .elementor-button {
	text-underline-offset: 6px;
}

.bullet-list ul {
	list-style: disc;
	padding-left: 0;
	margin-left: 1.25rem;
}

.amici-elementor-form .elementor-subgroup-inline .elementor-field-option {
	margin-top: 8px;
}
.amici-elementor-form .elementor-subgroup-inline .elementor-field-option input {
	visibility: hidden;
	position: absolute;
}
.amici-elementor-form .elementor-subgroup-inline .elementor-field-option input:checked + label {
	background: #3D89A5;
	color: #FFF;
}
.amici-elementor-form .elementor-subgroup-inline .elementor-field-option input + label {
	cursor: pointer;
	background: #ececec;
	padding: 2px 8px;
	border-radius: 8px;
}
.amici-elementor-form .elementor-form-fields-wrapper + .elementor-message {
	text-align: center;
}
.amici-elementor-form .elementor-form-fields-wrapper + .elementor-message:before {
	display: none;
}
.amici-elementor-form input[type=text]:focus,
.amici-elementor-form input[type=email]:focus,
.amici-elementor-form input[type=tel]:focus,
.amici-elementor-form input[type=number]:focus,
.amici-elementor-form textarea:focus,
.amici-elementor-form select:focus {
	border-color: var(--e-global-color-primary) !important;
	box-shadow: 0px 0px 0px 1px #066AAB inset !important;
}
.amici-elementor-form button[type=submit] {
	margin-top: 32px;
}

.frm_style_formidable-style .frm_submit {
	text-align: center;
}

.frm_error_style, .frm_message {
	border-radius: 8px !important;
	text-align: center;
}

.frm_error_style p {
	margin-bottom: 0 !important;
}

.amici-form--btn-submit {
	margin-bottom: 0 !important;
}
.amici-form--btn-submit .frm_button_submit {
	margin-bottom: 0 !important;
	text-transform: uppercase;
}
.amici-form-input input:focus,
.amici-form-input textarea:focus,
.amici-form-input select:focus {
	box-shadow: 0px 0px 0px 1px #066AAB inset !important;
}
.amici-form-checkbox.frm_blank_field label {
	box-shadow: 0px 0px 0px 1px #e20b0b inset;
}
.amici-form-checkbox--options .frm_checkbox {
	margin-bottom: 8px;
}
.amici-form-checkbox--options .frm_checkbox:not(:last-of-type) {
	margin-right: 8px;
}
.amici-form-checkbox--options .frm_checkbox label {
	cursor: pointer;
	background: #ececec;
	padding: 2px 8px;
	border-radius: 8px;
}
.amici-form-checkbox--options .frm_checkbox label:has(input:checked) {
	background: #3D89A5;
	color: #FFF;
	box-shadow: none;
}
.amici-form-checkbox--options .frm_checkbox input {
	visibility: hidden;
	position: absolute !important;
}
.amici-form-html {
	margin-bottom: 0 !important;
}
.amici-form-html-texts ul {
	list-style: disc;
	margin-left: 22px;
	margin-bottom: 12px;
}