/*
Theme Name: The Styler
Theme URI: https://kdt-solutions.ch
Author: KDT-Solutions
Author URI: https://kdt-solutions.ch
Description: Beauty theme for WordPress
Version: 1.0.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thestyler
Domain Path: /languages
*/
/* -----------------------------------------
	Table of Contents
--------------------------------------------

.. 01. General
.. 02. Main Navigation
.. 03. Header
.. 04. Modules
.. 05. Footer
.. 06. Comments
.. 07. Widgets Styling
.. 08. WordPress defaults
.. 09. Mobile Menu
.. 10. External Plugins
.. 11. Global Mediaqueries

*/
@-webkit-keyframes rot {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@keyframes rot {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

/* -----------------------------------------
	01. General
----------------------------------------- */
html {
	box-sizing: border-box;
	-ms-overflow-style: scrollbar;
	-webkit-tap-highlight-color: rgba(34, 34, 34, 0);
}

* {
	box-sizing: inherit;
}

*::before, *::after {
	box-sizing: inherit;
}

/* Basic Typography
=================================== */
body {
	line-height: 1.5;
	font-size: 16px;
	background-color: #fff;
	color: #414141;
	font-family: Lato, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	line-height: normal;
	margin: 0 0 15px;
	word-wrap: break-word;
	text-rendering: optimizeLegibility;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}

h1 {
	font-size: 30px;
}

h2 {
	font-size: 26px;
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 16px;
}

h6 {
	font-size: 14px;
}

p {
	margin: 0 0 15px;
}

img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

a {
	-webkit-transition: color .18s ease, background-color .18s ease, border-color .18s ease;
	transition: color .18s ease, background-color .18s ease, border-color .18s ease;
	outline: none;
	color: #ea8dd7;
	text-decoration: none;
}

a:hover, a:focus {
	color: #f2b8e6;
	outline: none;
	text-decoration: none;
}

a:active {
	outline: none;
}

.group::after {
	content: "";
	display: table;
	clear: both;
}

/* General Element Styling
=================================== */
/* Reset figure margin from normalize.css */
figure {
	margin: 0;
}

/* Lists */
ul, ol {
	padding-left: 20px;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

dl {
	margin: 0 0 20px;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 0 15px;
}

/* Blockquotes */
blockquote {
	margin: 20px 0;
	padding-left: 15px;
	border-left: 3px solid #e5e5e5;
	font-size: 17px;
	font-weight: 300;
}

blockquote cite {
	display: block;
	font-weight: bold;
	font-style: italic;
	margin: 10px 0 0;
	opacity: .8;
	font-size: 14px;
}

/* Tables */
table {
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
}

.entry-content table {
	border-width: 1px 0 0 1px;
	margin-bottom: 24px;
}

.entry-content th,
.entry-content td {
	border-bottom: 1px solid rgba(34, 34, 34, 0.1);
}

.entry-content th:first-child,
.entry-content td:first-child {
	padding-left: 0;
}

.entry-content caption,
.entry-content th,
.entry-content td {
	font-weight: normal;
	text-align: left;
	padding: 5px;
	vertical-align: middle;
}

.entry-content th {
	border-width: 0 1px 1px 0;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 85%;
}

.entry-content td {
	border-width: 0 1px 1px 0;
}

/* Code */
code, kbd, tt, var, samp, pre {
	font-family: monospace, serif;
	-webkit-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	font-style: normal;
}

pre {
	padding: 15px;
	border: 1px solid rgba(34, 34, 34, 0.1);
}

/* Various */
address {
	margin: 0 0 15px;
}

.sr-only,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* Embeds and iframes
=================================== */
embed,
iframe,
object,
video,
audio {
	margin-bottom: 15px;
	max-width: 100%;
	border: 0;
}

p > embed,
p > iframe,
p > object,
p > audio,
span > embed,
span > iframe,
span > object,
span > audio {
	margin-bottom: 0;
}

#map *,
.map * {
	max-width: none !important;
}

/* General Form Styling
=================================== */
.input-group {
	margin-bottom: 30px;
}

label {
	display: block;
	margin: 0 0 5px;
	font-weight: normal;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: .05em;
}

input,
textarea {
	display: inline-block;
	width: 100%;
	max-width: 100%;
	height: 41px;
	padding: 6px 12px;
	box-shadow: none;
	line-height: normal;
	border: 2px solid #e5e5e5;
	background-color: #fff;
	background-image: none;
	border-radius: 0;
	-webkit-transition: border-color .18s ease;
	transition: border-color .18s ease;
	font-size: 13px;
}

input:hover, input:focus,
textarea:hover,
textarea:focus {
	border-color: #ea8dd7;
	outline: none;
}

@media (max-width: 543px) {
	input,
	textarea {
		width: 100%;
	}
}

input[type="search"] {
	/* Restoring box-sizing */
	box-sizing: border-box;
}

textarea {
	padding-top: 10px;
	padding-bottom: 10px;
	height: auto;
}

select {
	max-width: 100%;
	width: 100%;
	height: 41px;
	border: 2px solid #e5e5e5;
	border-radius: 0;
	background-color: #fff;
}

input[type="checkbox"],
input[type="radio"] {
	margin: 4px 0 0;
	line-height: normal;
	width: auto;
	height: auto;
}

fieldset {
	margin: 0 0 15px;
	padding: 0;
	border: 0;
	min-width: 0;
}

/* Placeholder text color */
::-webkit-input-placeholder {
	color: rgba(65, 65, 65, 0.5);
	font-weight: normal;
	opacity: 1;
}

:-moz-placeholder {
	color: rgba(65, 65, 65, 0.5);
	font-weight: normal;
	opacity: 1;
}

::-moz-placeholder {
	color: rgba(65, 65, 65, 0.5);
	font-weight: normal;
	opacity: 1;
}

:-ms-input-placeholder {
	color: rgba(65, 65, 65, 0.5);
	font-weight: normal;
	opacity: 1;
}

/* Buttons
=================================== */
.btn,
.comment-reply-link,
input[type="submit"],
input[type="reset"],
button {
	display: inline-block;
	font-weight: normal;
	margin: 0;
	line-height: normal;
	border: 0;
	box-shadow: none;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	white-space: nowrap;
	-webkit-transition: .18s background-color ease, .18s color ease, .18s border-color ease;
	transition: .18s background-color ease, .18s color ease, .18s border-color ease;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-radius: 0;
	width: auto;
	height: auto;
	background-image: none;
	text-transform: uppercase;
	letter-spacing: .05em;
	font-weight: 700;
	background-color: #ea8dd7;
	border: 2px solid transparent;
	color: #fff;
	padding: 11px 18px;
	font-size: 12px;
}

.btn:active,
.comment-reply-link:active,
input[type="submit"]:active,
input[type="reset"]:active,
button:active {
	outline: none;
}

.btn:hover,
.comment-reply-link:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover {
	text-decoration: none;
	background-color: transparent;
	color: inherit;
	border-color: #ea8dd7;
}

.btn:focus,
.comment-reply-link:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
button:focus {
	outline: none;
}

.btn-sm {
	padding: 9px 15px;
	font-size: 10px;
}

.btn-lg {
	padding: 18px 30px;
	font-size: 14px;
}

.btn-block {
	min-width: 100%;
	display: block;
	padding-left: 20px;
	padding-right: 20px;
}

/* Magnific Popup Overrides
=================================== */
.mfp-bg {
	background-color: #222;
}

.mfp-preloader {
	color: #fff;
}

.mfp-preloader a {
	color: #fff;
}

.mfp-preloader a:hover {
	color: #fff;
}

.mfp-container:not(.mfp-s-error) .mfp-preloader {
	border: 6px solid rgba(255, 255, 255, 0.35);
	border-top-color: rgba(255, 255, 255, 0.875);
	border-radius: 100%;
	height: 40px;
	width: 40px;
	-webkit-animation: rot .8s infinite linear;
	animation: rot .8s infinite linear;
	background-color: transparent;
	text-indent: -999em;
	margin: 0 auto;
}

button.mfp-close, button.mfp-arrow {
	border: 0;
	opacity: 1;
}

button.mfp-close:hover, button.mfp-arrow:hover {
	background: none;
	border: 0;
}

.mfp-close-btn-in .mfp-close {
	color: #fff;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	color: #fff;
}

.mfp-arrow {
	line-height: .3;
}

.mfp-arrow::before, .mfp-arrow::after {
	border: 0;
}

.mfp-arrow::after {
	font-family: FontAwesome;
	font-size: 70px;
	color: #fff;
}

.mfp-arrow-right::after,
.mfp-arrow-right .mpf-a {
	content: "\f105";
}

.mfp-arrow-left::after,
.mfp-arrow-left .mpf-a {
	content: "\f104";
}

/* Text Alignment Helpers
=================================== */
.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.text-justified {
	text-align: justify;
}

.align-items-center {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

/* -----------------------------------------
	02. Main Navigation
----------------------------------------- */
.nav {
	display: block;
}

.navigation-main {
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: normal;
	/* Functional Styles
	=================================== */
	/* Visual Styles
	=================================== */
}

.navigation-main::after {
	content: "";
	display: table;
	clear: both;
}

.navigation-main li {
	position: relative;
}

.navigation-main > li {
	display: inline-block;
	margin-right: 25px;
}

.navigation-main a {
	display: block;
	white-space: nowrap;
}

.navigation-main ul {
	position: absolute;
	z-index: 10;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .25s ease .2s, visibility 0s ease .35s, -webkit-transform .25s ease .2s;
	transition: opacity .25s ease .2s, visibility 0s ease .35s, -webkit-transform .25s ease .2s;
	transition: transform .25s ease .2s, opacity .25s ease .2s, visibility 0s ease .35s;
	transition: transform .25s ease .2s, opacity .25s ease .2s, visibility 0s ease .35s, -webkit-transform .25s ease .2s;
	-webkit-transform: translate(-18px, 10px);
	-ms-transform: translate(-18px, 10px);
	transform: translate(-18px, 10px);
}

.navigation-main ul ul {
	top: 0;
	left: 100%;
	-webkit-transform: translate(-10px, 0);
	-ms-transform: translate(-10px, 0);
	transform: translate(-10px, 0);
}

.navigation-main li:hover > ul {
	-webkit-transition-delay: 0s, 0s, 0s;
	transition-delay: 0s, 0s, 0s;
	visibility: visible;
	opacity: 1;
}

.navigation-main li:hover ul {
	z-index: 15;
}

.navigation-main > li:hover > ul {
	-webkit-transform: translate(-18px, 25px);
	-ms-transform: translate(-18px, 25px);
	transform: translate(-18px, 25px);
}

.navigation-main li li:hover > ul {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}

.navigation-main ul {
	padding: 12px 0;
	list-style: none;
	background-color: #fff;
	border-radius: 3px;
	min-width: 200px;
	box-shadow: 0 0 7px rgba(34, 34, 34, 0.11);
}

.navigation-main ul::before {
	content: "";
	border: 8px solid transparent;
	border-bottom-color: #fff;
	position: absolute;
	top: -14px;
	left: 15px;
	z-index: 10;
}

.navigation-main ul ul::before {
	display: none;
}

.navigation-main a {
	position: relative;
	text-transform: uppercase;
	font-size: 13px;
	color: #414141;
	font-weight: 700;
}

.navigation-main > li > a {
	padding: 0;
}

.navigation-main > li:hover > a,
.navigation-main > li > a:focus,
.navigation-main > .current-menu-item > a,
.navigation-main > .current-menu-parent > a,
.navigation-main > .current-menu-ancestor > a {
	color: #ea8dd7;
}

.navigation-main li li a {
	padding: 5px 20px;
	font-size: 12px;
}

.navigation-main li li:hover > a,
.navigation-main li li > a:focus,
.navigation-main li .current-menu-item > a,
.navigation-main li .current-menu-parent > a,
.navigation-main li .current-menu-ancestor > a {
	color: #ea8dd7;
}

.navigation-main .menu-item-has-children > a::after {
	content: "\f078";
	font-family: FontAwesome;
	font-size: 8px;
	position: relative;
	top: -5px;
	right: -3px;
	line-height: normal;
	color: #ea8dd7;
}

.navigation-main li .menu-item-has-children > a::after {
	content: "\f054";
	position: absolute;
	right: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* -----------------------------------------
	03. Header
----------------------------------------- */
.header {
	position: absolute;
	width: 100%;
	z-index: 12;
}

.header-fixed {
	position: fixed;
}

.head-wrap {
	background-color: #fff;
	padding: 15px 30px;
	margin-top: 30px;
	border-radius: 3px;
	box-shadow: 0 0 10px rgba(34, 34, 34, 0.11);
}

.site-logo {
	margin: 0;
	font-size: 28px;
	font-family: "Playfair Display", serif;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 700;
}

.site-logo a {
	color: #414141;
}

.site-tagline {
	font-size: 14px;
	margin: 0;
}

.mast-head-info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding-bottom: 5px;
	border-bottom: 1px solid #e5e5e5;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.list-site-contact-info {
	color: #414141;
	text-align: center;
	margin-bottom: 30px;
}

.mast-head-info .list-site-contact-info {
	margin-bottom: 0;
	font-size: 12px;
	text-align: left;
}

.list-site-contact-info > span {
	margin-right: 20px;
	vertical-align: middle;
}

.list-site-contact-info .fa {
	color: #ea8dd7;
	font-size: 14px;
	margin-right: 3px;
}

.list-site-contact-info a {
	color: #414141;
}

.list-site-contact-info a:hover {
	color: #ea8dd7;
}

.mast-head-main {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding-top: 10px;
	line-height: normal;
}

.mast-head-main-extra {
	margin-left: auto;
}

.mast-head-main-extra a {
	text-transform: uppercase;
	font-size: 13px;
	color: #414141;
	font-weight: 700;
}

.mast-head-main-extra a:hover {
	color: #ea8dd7;
}

/* -----------------------------------------
	04. Modules
----------------------------------------- */
/* Layout
=================================== */
.main {
	position: relative;
	padding: 90px 0;
}

@media (min-width: 1200px) {
	.main > .container > .row > .col-lg-8 {
		padding-right: 45px;
	}
}

.widget-sections {
	padding: 0;
}

.page-hero-bg {
	height: 250px;
	background-size: cover;
	background-position: center top;
	position: relative;
}

.page-hero-bg::before {
	content: "";
	background-color: rgba(34, 34, 34, 0.83);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
}

.page-hero-lg {
	height: auto;
}

.page-hero-content {
	height: 100vh;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	padding-bottom: 18%;
	color: #fff;
	position: relative;
	z-index: 10;
}

.page-hero-title {
	font-size: 48px;
	font-weight: bold;
	font-family: "Playfair Display", serif;
	margin: 0;
	line-height: 1.2;
}

.ornament {
	position: absolute;
	top: -35px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 10;
}

.ornament path:first-child {
	fill: #fff;
	fill-opacity: 1;
}

.ornament path:last-child {
	fill: rgba(255, 255, 255, 0);
	fill-opacity: 1;
}

.page-hero-bg .ornament {
	top: auto;
	bottom: -1px;
}

.widget-section .ornament {
	top: -135px;
}

.widget-padded .ornament {
	top: -35px;
}

.page-hero-subtitle {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .5em;
	margin: 0;
	line-height: normal;
}

.heading-wrap {
	text-align: center;
	margin-bottom: 40px;
}

.catalogue-category .heading-wrap {
	margin-bottom: 55px;
}

.heading-main {
	font-size: 30px;
	margin-bottom: 0;
}

.heading-secondary {
	margin-bottom: 0;
	font-size: 14px;
	line-height: normal;
	letter-spacing: .5em;
	text-transform: uppercase;
	opacity: .8;
}

.page-hero-slideshow {
	position: relative;
}

.page-hero-slideshow::before {
	display: none;
}

.page-hero-slideshow .slick-slide::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
}

.page-hero-slideshow .slick-arrow {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 1001;
	border-radius: 50%;
	width: 58px;
	height: 58px;
	font-size: 26px;
	padding: 0;
	text-align: center;
	line-height: normal;
}

.page-hero-slideshow .slick-arrow:hover {
	color: #fff;
}

@media (max-width: 767px) {
	.page-hero-slideshow .slick-arrow {
		display: none !important;
		visibility: hidden;
	}
}

.page-hero-slideshow .slick-next {
	right: 15px;
}

.page-hero-slideshow .slick-next .fa {
	position: relative;
	left: 2px;
}

.page-hero-slideshow .slick-prev {
	left: 15px;
}

.page-hero-slideshow .slick-prev .fa {
	position: relative;
	right: 1px;
}

.page-hero-slideshow .slick-dots {
	position: absolute;
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: center;
	width: 100%;
	bottom: 50px;
}

@media (max-width: 767px) {
	.page-hero-slideshow .slick-dots {
		bottom: 30px;
	}
}

.page-hero-slideshow .slick-dots li {
	display: inline-block;
	margin: 0 5px;
}

.page-hero-slideshow .slick-dots button {
	text-indent: -999em;
	padding: 0;
	margin: 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.page-hero-slideshow .slick-dots .slick-active button {
	background-color: #fff;
	border-color: #ea8dd7;
}

.btn-slideshow {
	width: auto;
	display: inline-block;
	margin-top: 25px;
}

.page-hero-slide {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
}

.ci-video-wrap {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
}

.ci-video-wrap.visible .ci-video-background {
	opacity: 1;
}

.ci-video-wrap.visible::before {
	display: none;
}

.ci-video-wrap::before {
	border: 6px solid rgba(255, 255, 255, 0.35);
	border-top-color: rgba(255, 255, 255, 0.875);
	border-radius: 100%;
	height: 40px;
	width: 40px;
	-webkit-animation: rot .8s infinite linear;
	animation: rot .8s infinite linear;
	content: "";
	position: absolute;
	bottom: 50px;
	z-index: 1000;
	left: 50%;
	margin-left: -20px;
}

@media (max-width: 1080px) {
	.ci-video-wrap::before {
		display: none;
	}
}

.ci-video-background {
	position: absolute;
	left: 0;
	width: 100%;
	pointer-events: none;
	opacity: 0;
	-webkit-transition: opacity .45s ease;
	transition: opacity .45s ease;
	height: 300%;
	top: -100%;
}

.ci-video-background iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

@media (max-aspect-ratio: 16 / 9) {
	.page-hero-lg .ci-video-background {
		height: 100%;
		top: 0;
		width: 300%;
		left: -100%;
	}
}

/* Entry Styles
=================================== */
.entry {
	margin: 0 0 80px;
}

.entry:only-of-type {
	margin: 0;
}

.entry-thumb {
	margin-bottom: 25px;
}

.entry-thumb img {
	margin: 10px 0 0 10px;
	border: 1px solid #fdf2fb;
	box-shadow: -10px -10px 0 0 #fdf2fb;
	-webkit-transition: box-shadow .18s ease;
	transition: box-shadow .18s ease;
}

.entry-thumb:hover img {
	border-color: transparent;
	box-shadow: -10px -10px 0 0 #ea8dd7;
}

.entry-thumb.alignnone, .entry-thumb.alignleft, .entry-thumb.alignright, .entry-thumb.aligncenter {
	margin-top: 0;
}

.entry-title {
	margin-bottom: 25px;
}

.entry-title a {
	color: #414141;
}

.entry-title a:hover {
	color: #ea8dd7;
}

.entry-tag-list {
	text-transform: uppercase;
	font-size: 11px;
}

.entry-meta {
	text-transform: uppercase;
	opacity: .8;
	font-size: 12px;
	margin: -20px 0 20px;
	letter-spacing: .05em;
}

.entry-meta a {
	color: #414141;
	opacity: .8;
}

.entry-meta a:hover {
	color: #ea8dd7;
}

.entry-meta > span::after {
	content: "\2022";
	display: inline-block;
	vertical-align: top;
	margin: 0 2px;
}

.entry-meta > span:last-child::after {
	display: none;
}

.entry-content::after {
	content: "";
	display: table;
	clear: both;
}

.entry-content p {
	margin-bottom: 20px;
	position: relative;
}

.entry-content p:first-of-type {
	position: relative;
}

.entry-content blockquote {
	margin: 40px 0;
}

.entry-content iframe,
.entry-content blockquote,
.entry-content .fluid-width-video-wrapper {
	margin: 25px 0;
}

.entry-content .fluid-width-video-wrapper iframe {
	margin: 0;
}

.btn-read-more {
	margin-top: 15px;
}

/* Items
=================================== */
.row-items {
	margin-bottom: -45px;
}

.item {
	margin-bottom: 45px;
}

.item-thumb {
	margin-bottom: 15px;
}

.item-thumb-default img {
	margin: 10px 0 0 10px;
	border: 1px solid #fdf2fb;
	box-shadow: -10px -10px 0 0 #fdf2fb;
	-webkit-transition: box-shadow .18s ease;
	transition: box-shadow .18s ease;
}

.item-thumb-default:hover img {
	border-color: transparent;
	box-shadow: -10px -10px 0 0 #ea8dd7;
}

.item-thumb-round {
	text-align: center;
}

.item-thumb-round a {
	display: block;
	width: 230px;
	height: 230px;
	border-radius: 50%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.item-thumb-round a::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	box-shadow: inset -10px -10px 0 0 rgba(234, 141, 215, 0.8);
	border-radius: 50%;
}

.item-thumb-round img {
	border-radius: 50%;
}

.item-icon {
	width: 66px;
	height: 66px;
	line-height: 64px;
	text-align: center;
	font-size: 28px;
	color: #414141;
	background-color: #fff;
	border: 2px solid #e5e5e5;
	border-radius: 50%;
	display: block;
	margin: 0 auto 15px;
}

.item-title {
	text-align: center;
	font-family: "Playfair Display", serif;
	font-size: 20px;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.item-title a {
	color: #414141;
}

.item-title a:hover {
	color: #ea8dd7;
}

.item-title-lowercase {
	text-transform: none;
}

.item-subtitle {
	text-align: center;
}

.item-excerpt {
	text-align: center;
}

/* Testimonial Items
=================================== */
.item-testimonial {
	border: 0;
	margin: 0 0 50px;
	padding: 0;
	text-align: center;
	font-family: "Playfair Display", serif;
	font-style: italic;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.333333333;
}

.item-testimonial:last-child {
	margin-bottom: 0;
}

.item-testimonial:focus {
	outline: 0;
}

.item-testimonial .slideshow-testimonial {
	margin-bottom: 30px;
}

.item-testimonial-citation {
	margin-top: 30px;
}

.item-testimonial-citation-thumb {
	display: block;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	position: relative;
	margin: 0 auto;
}

.item-testimonial-citation-thumb img {
	border-radius: 50%;
}

.item-testimonial-citation-thumb::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	box-shadow: inset -5px -5px 0 0 rgba(234, 141, 215, 0.8);
}

/* Catalogue Items (Pricelist)
=================================== */
.catalogue-category {
	margin-bottom: 10px;
}

.catalogue-category:last-child {
	margin-bottom: 0;
}

.item-catalogue {
	margin-bottom: 40px;
}

.item-catalogue-title {
	font-size: 20px;
	/* text-transform: uppercase; */
	font-family: "Playfair Display", serif;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: normal;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.col-xl-3 .item-catalogue-title {
	font-size: 16px;
}

.item-catalogue-title::after {
	content: "";
	border-bottom: 1px solid #e5e5e5;
	width: auto;
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	position: relative;
	top: -6px;
	margin-left: 8px;
	margin-right: 5px;
	opacity: .6;
}

.item-catalogue-price {
	margin-left: auto;
	padding-left: 5px;
	-webkit-box-ordinal-group: 4;
	-webkit-order: 3;
	-ms-flex-order: 3;
	order: 3;
	display: inline-block;
	font-family: "Playfair Display", serif;
	font-weight: 700;
	text-transform: uppercase;
}

.item-catalogue-desc p:last-child {
	margin-bottom: 0;
}

/* Pagination
=================================== */
.navigation {
	margin: 40px 0 0;
}

.navigation a,
.navigation span {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: .05em;
	font-weight: 700;
	background-color: #fdf2fb;
	border: 2px solid transparent;
	color: #414141;
	padding: 13px 20px;
	margin-bottom: 5px;
	font-size: 12px;
}

.navigation a:hover,
.navigation .current {
	text-decoration: none;
	background-color: transparent;
	color: inherit;
	border-color: #fdf2fb;
}

.navigation .nav-links::after {
	content: "";
	display: table;
	clear: both;
}

.navigation .nav-previous {
	float: left;
}

.navigation .nav-next {
	float: right;
}

/* Social Icons
=================================== */
.list-social-icons {
	margin: 0;
	padding: 0;
	list-style: none;
}

.list-social-icons::after {
	content: "";
	display: table;
	clear: both;
}

.list-social-icons li {
	float: left;
	margin-right: 5px;
}

.mast-head-info .list-social-icons li {
	float: none;
	display: inline-block;
	margin-left: 6px;
	margin-right: 0;
}

.mast-head-info .list-social-icons {
	margin-left: auto;
}

.social-icon {
	display: inline-block;
	width: 28px;
	height: 28px;
	line-height: 28px;
	font-size: 14px;
	text-align: center;
	color: #fff;
	background-color: #ea8dd7;
	border-radius: 50%;
}

.social-icon:hover {
	color: #fff;
}

.mast-head-info .social-icon {
	width: auto;
	height: auto;
	line-height: normal;
	font-size: 14px;
	background: none;
	color: #414141;
	margin: 0;
}

.mast-head-info .social-icon:hover {
	color: #ea8dd7;
}

/* -----------------------------------------
	05. Footer
----------------------------------------- */
.footer {
	padding: 90px 0 45px;
	border-top: 1px solid #e5e5e5;
}

.footer-credits {
	font-size: 13px;
}

.footer-credits p {
	margin: 0;
}

.footer-credits .list-social-icons li {
	display: inline-block;
	float: none;
}

/* -----------------------------------------
   06. Comments
----------------------------------------- */
#comments {
	margin: 40px 0 0;
}

#comment-list {
	margin: 0;
	list-style: none;
	padding: 0;
}

#comment-list ol {
	list-style: none;
}

@media (max-width: 767px) {
	#comment-list ol {
		margin: 0;
		padding: 0;
	}
}

#comment-list .comment-body {
	margin-bottom: 20px;
	padding-top: 20px;
}

#comment-list > .comment:first-child > .comment-body {
	border-top: 0;
	padding-top: 0;
}

.post-comments {
	margin: 0 0 45px;
}

.comment-author .avatar {
	width: 64px;
	height: 64px;
	float: left;
	margin: 0 15px 15px 0;
	overflow: visible;
}

@media (max-width: 543px) {
	.comment-author .avatar {
		display: none;
	}
}

.comment-content {
	overflow: hidden;
	zoom: 1;
	font-size: 13px;
}

.comment-metadata {
	font-size: 12px;
	margin: 0 0 5px;
}

.comment-reply-link {
	font-size: 10px;
	text-transform: uppercase;
	padding: 4px 10px;
	margin-left: 80px;
	height: auto;
	width: auto;
}

@media (max-width: 767px) {
	.comment-reply-link {
		margin: 0;
	}
}

.bypostauthor > article .fn::before {
	font-family: FontAwesome;
	content: "\f005";
	margin: 0 2px 0 -2px;
	position: relative;
	top: -1px;
	font-size: 11px;
}

#cancel-comment-reply-link {
	font-size: 13px;
	font-weight: normal;
	margin-left: 5px;
}

.form-allowed-tags,
.comment-notes {
	font-size: 12px;
	line-height: 1.5;
	color: rgba(65, 65, 65, 0.8);
}

/* -----------------------------------------
	07. Widgets Styling
----------------------------------------- */
.widget {
	font-size: 14px;
	line-height: 1.714;
	margin: 0 0 45px;
	/* Nullify bottom margin for last elements in widgets and sidebars */
}

.sidebar .widget:last-child {
	margin-bottom: 0;
}

.widget p:last-child {
	margin-bottom: 0;
}

.widget select {
	width: 100%;
	padding: 5px 10px;
	border-radius: 0;
}

.widget-title label {
	text-transform: none;
	display: block;
	font-size: inherit;
	margin: 0;
	line-height: inherit;
	font-weight: inherit;
}

.widget-title a {
	color: #414141;
}

/* Section Widgets
========================================= */
.widget-section {
	position: relative;
	margin-top: 100px;
}

.widget-section:first-child.widget-padded {
	margin-top: 0;
}

.widget-sections-footer .widget-section:first-child {
	margin-top: 0;
}

.widget-sections-footer .widget-section:last-child:not(.widget-padded) {
	margin-bottom: 100px;
}

.widget-padded + .widget-padded {
	margin-top: 0;
}

.widget-padded .widget-wrap {
	padding: 100px 0;
}

.widget-padded .widget-wrap.wrap-extra-pad {
	padding: 150px 0;
}

.null-instagram-feed .widget-wrap {
	padding-bottom: 0;
}

.widget-wrap {
	background-position: top center;
	background-size: cover;
	position: relative;
}

.widget-wrap .widget-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.widget-wrap-parallax {
	background-attachment: fixed;
}

/* Testimonial Slideshow
========================================= */
.slideshow-testimonial .slick-dots {
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: center;
}

.slideshow-testimonial .slick-dots li {
	display: inline-block;
	margin: 0 3px;
}

.slideshow-testimonial .slick-dots button {
	padding: 0;
	margin: 0;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background-color: #e5e5e5;
	text-indent: -999em;
	border: 0;
}

.slideshow-testimonial .slick-dots .slick-active button {
	background-color: #ea8dd7;
}

/* WIDGET: #List Widgets
========================================= */
.widget_meta ul,
.widget_pages ul,
.widget_categories ul,
.widget_archive ul,
.widget_nav_menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget_meta ul ul,
.widget_pages ul ul,
.widget_categories ul ul,
.widget_archive ul ul,
.widget_nav_menu ul ul {
	margin-left: 15px;
}

.widget_meta li,
.widget_pages li,
.widget_categories li,
.widget_archive li,
.widget_nav_menu li {
	line-height: normal;
	display: block;
	position: relative;
}

.widget_meta li a,
.widget_pages li a,
.widget_categories li a,
.widget_archive li a,
.widget_nav_menu li a {
	display: block;
	padding: 11px 0;
	border-bottom: 1px solid #e5e5e5;
}

.widget_meta li .count,
.widget_meta li .ci-count,
.widget_pages li .count,
.widget_pages li .ci-count,
.widget_categories li .count,
.widget_categories li .ci-count,
.widget_archive li .count,
.widget_archive li .ci-count,
.widget_nav_menu li .count,
.widget_nav_menu li .ci-count {
	position: absolute;
	right: 0;
	top: 8px;
	font-size: 12px;
	padding: 4px 3px;
}

.widget_recent_comments ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget_recent_comments li {
	display: block;
	padding: 11px 0;
	border-bottom: 1px solid #e5e5e5;
}

.widget_pages select,
.widget_categories select,
.widget_archive select {
	display: block;
	width: 100%;
	padding: 6px 15px;
	border-radius: 0;
	font-size: 14px;
	height: 40px;
	font-weight: normal;
	background: #fff;
}

.widget_recent_entries ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.widget_recent_entries li {
	display: block;
	border-bottom: 1px solid #e5e5e5;
	padding: 10px 0 12px;
	line-height: normal;
}

.widget_recent_entries a {
	display: block;
}

.widget_recent_entries .post-date {
	font-size: 11px;
	text-transform: uppercase;
}

/* WIDGET: #Search
========================================= */
.searchform > div {
	position: relative;
}

.searchform .searchsubmit {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	padding: 0 20px;
}

/* WIDGET: #Text Widget
========================================= */
.widget_text p:last-child {
	margin-bottom: 0;
}

/* WIDGET: #Calendar
================================================== */
#wp-calendar {
	width: 100%;
}

#wp-calendar a {
	font-weight: bold;
	font-style: italic;
}

#wp-calendar caption {
	text-align: left;
	margin-top: 10px;
	background: none repeat scroll 0 0 rgba(34, 34, 34, 0.03);
	padding: 9px;
}

#wp-calendar thead {
	font-size: 10px;
}

#wp-calendar thead th {
	background: rgba(34, 34, 34, 0.1);
	font-weight: bold;
	padding: 8px;
}

#wp-calendar tbody td {
	background: none;
	border: 1px solid rgba(34, 34, 34, 0.1);
	text-align: center;
	padding: 3px;
}

#wp-calendar tbody td:hover {
	background: rgba(34, 34, 34, 0.1);
}

#wp-calendar tbody .pad {
	background: none;
}

#wp-calendar tfoot #next {
	font-size: 10px;
	text-transform: uppercase;
	text-align: right;
}

#wp-calendar tfoot #prev {
	font-size: 10px;
	text-transform: uppercase;
	padding-top: 10px;
}

/* -----------------------------------------
	08. WordPress Defaults
----------------------------------------- */
/* WordPress Galleries
=================================== */
.gallery {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -5px;
	margin-right: -5px;
	margin-bottom: 15px;
}

.gallery-item {
	margin-bottom: 10px;
}

.gallery-item img {
	width: 100%;
	max-width: 100%;
}

.gallery-item:hover .gallery-caption {
	opacity: 1;
}

.gallery-columns-1 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 100%;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

.gallery-columns-2 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 33.33333%;
	-ms-flex: 0 0 33.33333%;
	flex: 0 0 33.33333%;
	max-width: 33.33333%;
}

.gallery-columns-4 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 25%;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 20%;
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}

@media (max-width: 767px) {
	.gallery-columns-5 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 25%;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.gallery-columns-6 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 16.66667%;
	-ms-flex: 0 0 16.66667%;
	flex: 0 0 16.66667%;
	max-width: 16.66667%;
}

@media (max-width: 767px) {
	.gallery-columns-6 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 25%;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.gallery-columns-7 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 14.28571%;
	-ms-flex: 0 0 14.28571%;
	flex: 0 0 14.28571%;
	max-width: 14.28571%;
}

@media (max-width: 991px) {
	.gallery-columns-7 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 20%;
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (max-width: 767px) {
	.gallery-columns-7 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 25%;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.gallery-columns-8 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 12.5%;
	-ms-flex: 0 0 12.5%;
	flex: 0 0 12.5%;
	max-width: 12.5%;
}

@media (max-width: 991px) {
	.gallery-columns-8 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 20%;
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (max-width: 767px) {
	.gallery-columns-8 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 25%;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.gallery-columns-9 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 11.11111%;
	-ms-flex: 0 0 11.11111%;
	flex: 0 0 11.11111%;
	max-width: 11.11111%;
}

@media (max-width: 991px) {
	.gallery-columns-9 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 20%;
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (max-width: 767px) {
	.gallery-columns-9 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 25%;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.gallery-caption {
	background-color: rgba(34, 34, 34, 0.7);
	color: #fff;
	font-size: 12px;
	line-height: 1.5;
	margin: 0 0 0 5px;
	max-height: 50%;
	opacity: 0;
	padding: 6px 8px;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: left;
	width: calc(100% - 10px);
	-webkit-transition: opacity .18s ease;
	transition: opacity .18s ease;
}

.gallery-caption::before {
	content: "";
	height: 100%;
	min-height: 49px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}

/* WordPress Classes
=================================== */
/* Alignment */
.alignnone {
	margin: 5px 0 20px;
}

p .alignnone {
	margin-bottom: 0;
}

.aligncenter {
	display: block;
	margin: 7px auto;
}

.alignright {
	float: right;
	margin: 7px 0 7px 24px;
}

.alignleft {
	float: left;
	margin: 7px 24px 7px 0;
}

/* Captions */
.wp-caption {
	max-width: 100%;
	margin-bottom: 15px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	padding: 0;
	width: auto;
}

.wp-caption .wp-caption-text {
	font-size: 12px;
	line-height: 17px;
	margin: 3px 0 5px;
	padding: 5px 0 0;
	text-align: left;
	font-style: italic;
}

.sticky {
	/* Provide sticky styles */
}

/* -----------------------------------------
  09.  MOBILE MENU
----------------------------------------- */
.mm-page {
	position: static;
}

.mm-opened .mm-page {
	position: relative;
}

#mobilemenu {
	display: none;
}

@media (max-width: 991px) {
	#mobilemenu {
		display: block;
	}
}

.mobile-nav-trigger {
	text-transform: uppercase;
	font-size: 14px;
	color: #414141;
	font-weight: 700;
	display: none;
}

.mobile-nav-trigger:hover {
	color: #ea8dd7;
}

/* -----------------------------------------
	10. External Plugins
----------------------------------------- */
/* Jetpack Sharing */
.sharedaddy {
	margin-top: 30px;
}

/* WP Instagram */
.null-instagram-feed .clear {
	padding-top: 10px;
}

section.null-instagram-feed {
	position: relative;
}

section.null-instagram-feed .section-title {
	display: none;
}

section.null-instagram-feed p.clear {
	position: absolute;
	top: 50%;
	text-align: center;
	width: 100%;
	pointer-events: none;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	display: none;
}

section.null-instagram-feed p.clear a {
	display: inline-block;
	font-weight: normal;
	margin: 0;
	line-height: normal;
	border: 0;
	box-shadow: none;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	white-space: nowrap;
	-webkit-transition: .18s background-color ease, .18s color ease, .18s border-color ease;
	transition: .18s background-color ease, .18s color ease, .18s border-color ease;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-radius: 0;
	width: auto;
	height: auto;
	background-image: none;
	text-transform: uppercase;
	letter-spacing: .05em;
	font-weight: 700;
	background-color: #ea8dd7;
	border: 2px solid transparent;
	color: #fff;
	padding: 11px 18px;
	font-size: 12px;
	pointer-events: auto;
	z-index: 10;
}

section.null-instagram-feed p.clear a:active {
	outline: none;
}

section.null-instagram-feed p.clear a:hover {
	text-decoration: none;
	background-color: transparent;
	color: inherit;
	border-color: #ea8dd7;
}

section.null-instagram-feed p.clear a:focus {
	outline: none;
}

.instagram-pics {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget .instagram-pics::after {
	content: "";
	display: table;
	clear: both;
}

.widget .instagram-pics li {
	border-bottom: 0;
	padding: 0;
	float: left;
	width: 33.33333333333%;
}

.widget .instagram-pics li a {
	display: block;
	color: #414141;
}

/* Contact Form 7 */
.entry-content .wpcf7 {
	margin: 30px 0;
}

.entry-content .wpcf7:last-child {
	margin-bottom: 0;
}

.wpcf7-form-control-wrap {
	margin-bottom: 20px;
	display: block;
}

.widget_ci-contact .wpcf7-submit,
.wpcf7-form .col-md-4 .wpcf7-submit {
	display: block;
	width: 100%;
	margin-top: 17px;
}

div.wpcf7-response-output {
	padding: 15px 30px;
}

/* -----------------------------------------
	11. Global Mediaqueries
----------------------------------------- */
@media (max-width: 991px) {
	.header-fixed {
		position: absolute;
	}
	.site-branding {
		margin-bottom: 15px;
		text-align: center;
	}
	.widget-section {
		position: relative;
		margin-top: 70px;
	}
	.widget-section:first-child.widget-padded {
		margin-top: 0;
	}
	.widget-sections-footer .widget-section:first-child {
		margin-top: 0;
	}
	.widget-sections-footer .widget-section:last-child:not(.widget-padded) {
		margin-bottom: 70px;
	}
	.widget-padded + .widget-padded {
		margin-top: 0;
	}
	.widget-padded .widget-wrap {
		padding: 70px 0;
	}
	.widget-padded .widget-wrap.wrap-extra-pad {
		padding: 105px 0;
	}
	.null-instagram-feed .widget-wrap {
		padding-bottom: 0;
	}
	.main {
		padding: 70px 0;
	}
	.widget-sections {
		padding: 0;
	}
	.page-hero-bg .ornament {
		top: auto;
		bottom: -1px;
	}
	.widget-section .ornament {
		top: -105px;
	}
	.widget-padded .ornament {
		top: -35px;
	}
	.nav {
		display: none;
	}
	.mobile-nav-trigger {
		display: inline-block;
	}
	.mast-head-main-extra a {
		font-size: 14px;
	}
	.footer {
		padding: 70px 0 25px;
	}
	.sidebar {
		margin-top: 70px;
	}
}

@media (max-width: 767px) {
	.head-wrap {
		margin-top: 15px;
	}
	.mast-head-info {
		display: none;
	}
	.mast-head-main {
		font-size: 14px;
	}
	.page-hero-title {
		font-size: 36px;
		margin-bottom: 5px;
	}
	.page-hero-content {
		height: 500px;
		padding-bottom: 70px;
	}
	.widget-section {
		position: relative;
		margin-top: 50px;
	}
	.widget-section:first-child.widget-padded {
		margin-top: 0;
	}
	.widget-sections-footer .widget-section:first-child {
		margin-top: 0;
	}
	.widget-sections-footer .widget-section:last-child:not(.widget-padded) {
		margin-bottom: 50px;
	}
	.widget-padded + .widget-padded {
		margin-top: 0;
	}
	.widget-padded .widget-wrap {
		padding: 50px 0;
	}
	.widget-padded .widget-wrap.wrap-extra-pad {
		padding: 75px 0;
	}
	.null-instagram-feed .widget-wrap {
		padding-bottom: 0;
	}
	.main {
		padding: 50px 0;
	}
	.widget-sections {
		padding: 0;
	}
	.ornament {
		width: 320px;
	}
	.page-hero-bg .ornament {
		top: auto;
		bottom: -5px;
	}
	.widget-section .ornament {
		top: -75px;
	}
	.widget-padded .ornament {
		top: -25px;
	}
	h1 {
		font-size: 26px;
	}
	h2 {
		font-size: 22px;
	}
	.heading-main {
		font-size: 26px;
		line-height: 1.2;
		margin-bottom: 5px;
	}
	.item-title {
		font-size: 20px;
	}
	.item-catalogue-title {
		font-size: 17px;
	}
	.entry {
		margin: 0 0 50px;
	}
	.entry:only-of-type {
		margin: 0;
	}
	.entry-thumb img,
	.item-thumb-default img {
		margin: 5px 0 0 5px;
	}
	.footer-credits {
		text-align: center;
	}
	.footer-credits p {
		margin-bottom: 15px;
	}
	.footer-credits .text-right {
		text-align: center;
	}
}

@media (max-width: 543px) {
	.mast-head-main-extra {
		line-height: normal;
	}
	.mast-head-main-extra a {
		font-size: 13px;
	}
	.mobile-nav-trigger {
		font-size: 13px;
		line-height: normal;
	}
}
