<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media screen and (max-width: 567px) {

h1, h2, h3, h4, h5, h6 {
	font-family: 'helvetica', serif;
	font-weight: 600;
	font-style: normal;
}

h1 {
	font-size: 2.4rem;
	margin: 0 0 0.67em 0;
}

h2 {
	font-size: 2rem;
	margin: 0 0 0.67em 0;
}

h3 {
	font-size: 1.8rem;
	margin: 0 0 0.67em 0;
}

h4 {
	font-size: 1.8rem;
	margin: 0 0 0.67em 0;
}

p {
	font-size: 1rem;
	line-height: 1.3rem;
}

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

a {
	color: inherit;
}

/*Header*/

.header {
	position: fixed;
	display: block;
	width: 100%;
	height: 60px;
	z-index: 1000;
	background-color: var(--background);
}

.header__container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	padding: 0 2rem;
}

.header__logo-link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	left: 50%;
}

.header__logo {
	height: 50%;
	opacity: 0.22;
}

.header__navigation {
	position: relative;
	display: block;
}

.header__menu-button {
	display: flex;
	justify-content: center;
	position: relative;
	padding: 0.2rem;
	font-size: 1.3rem;
	font-weight: 600;
}

.header__menu-button::after {
	content: "";
	position: absolute;
	display: none;
	width: 100%;
	height: 2px;
	bottom: 0;
	background-color: var(--accent);
}

.menu-open {
	display: block
}

.menu-close {
	display: none
}

.header__menu-button.toggled .menu-open {
	display: none
}

.header__menu-button.toggled .menu-close {
	display: block
}

/*Menu*/

.menu__wrapper {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	background-color: var(--background);
	width: 100vw;
	height: 100vh;
	z-index: 800;
	margin: 0;
}

.menu__wrapper.toggled {
	display: block;
}

.menu__container {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	padding: 6rem 2rem 2rem 2rem;
}

.menu {
	list-style-type: none;
	padding: 0;
	margin: 0;
	position: relative;
	display: block;
	/* align-items: center;
	justify-content: flex-start; */
}

.menu__item {
	display: block;
	margin-bottom: 0.5vh;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.menu__item-link {
	display: block;
	font-size: 10vw;
	text-decoration: none;
	transition: all 0.2s;
}

.menu__footer {
	position: relative;
	width: 100%;

}

.menu__footer-list {
	display: flex;
	flex-wrap: wrap;
}

.menu__footer-item {
	width: 100%;
}

.menu__footer-link {
	text-decoration: none;
	font-size: 1.3rem;
}

/* Page */

main.page {
	padding-top: 60px;
}

.page__container {
	position: relative;
	display: block;
	width: 100%;
	padding: 0 1rem;
}

.page__hero {
	min-height: 12vh;
	padding: 2rem;
}

.page__hero-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

.page__hero-title {
	font-size: 10vw;
	margin: 0;
	text-align: center;
}

/* Blocks */

.block {
	position: relative;
	display: block;
	width: 100%;
	padding: 1rem 1rem;
}

/* .block::after {
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--black);;
	background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
} */

.block__container {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	/* max-width: 1300px; */
	margin: 0 auto;
	/* margin-bottom: 2rem; */
}

/* Columns */

.block__columns {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
}

.block__column {
	position: sticky;
	top: 20%;
}

.block__columns--1 .block__column {
	width: 100%;
}

.block__columns--2 .block__column {
	width: 48%;
}

.block__columns--3 .block__column {
	width: 30%;
}

.block__columns--4 .block__column {
	width: 23%;
}

.block__column img {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
}

.block__column-content {
	padding: 2rem 0;
}

.block__caption {
	display: block;
	font-weight: 500;
	width: 50%;
	font-size: 1rem;
	line-height: 1.7rem;
	padding: 1rem 0;
}

/* Gallery */

.gallery {
	width: 100%;
	margin: 4rem 0;
}

.gallery__container {
	position: relative;
}

.gallery__columns-wrapper {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.gallery__column {
	width: 100%;
}

.gallery__item {
	display: block;
	width: 100%;
	margin-bottom: 25px;
}

.gallery__item-link {
	text-decoration: none;
}

.gallery__image {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
}

.gallery__image-caption {
	position: relative;
	margin-top: 1.5rem;
	color: var(--grey);
	font-size: 0.8rem;
	line-height: 1rem;
	font-style: italic;
	padding-left: 1.5rem;
}

.gallery__image-caption::before {
	content: "â†‘";
	position: absolute;
	top: 0;
	left: 0;
	font-style: normal;
}

.gallery__container2 {
	position: relative;
  display: flex;
  flex-wrap: wrap;
	padding: 20rem 0;
}

.gallery__row {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-height: 22vw;
}

.gallery__item2 {
	width: 30vw;
	transition: all 0.2s;
}

.gallery__image2 {
	width: 100%;
	height: auto;
}

.gallery__row:nth-of-type(3n+1) {
	width: 50%;
	justify-content: flex-start;
}

.gallery__row:nth-of-type(3n+2) {
	justify-content: flex-end;
	width: 50%;
}

.gallery__row:nth-of-type(3n+3) {
	justify-content: center;
	width: 100%;
}

/* Blog */

.blog__thumbnail-wrapper {
	position: relative;
	width: 100%;
}

.blog__thumbnail {
	display: block;
	width: 100%;
	height: auto;
}

.blog__related {
	display: none;
}

.blog__post {
  position: relative;
  display: block;
  width: 40%;
}

.blog__post-header {
	display: block;
	font-size: 1rem;
  width: 100%;
  margin-bottom: 1.3rem;
}

/* .blog__post#prev .blog__post-header {
	text-align: right;
} */

.blog__post#next .blog__post-header {
	text-align: right;
}

.blog__post-link {
  text-decoration: none;
}

.blog__post-image-wrapper, .blog__post-inner {
  position: relative;
  width: 100%;
  /* height: 300px; */
  padding-bottom: 100%;
}

.blog__post-image-box {
  position: absolute;
  top: 0;
  width: 150%;
  height: 150%;
}

.blog__post#prev .blog__post-image-box {
	right: 0;
}

.blog__post#next .blog__post-image-box {
	left: 0;
}

.blog__post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog__post-content {
  position: relative;
  display: none;
}

.blog__post-title {
  font-size: 2rem;
  width: 100%;
  margin-bottom: 1.3rem;
}

.blog__post-inner {
	position: relative;
	background-color: var(--light-grey);
}

.blog__post-inner-content {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 2rem;
	width: 100%;
	height: 100%;
	text-align: center;
}

/* Button */

.button {
	position: relative;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	font-weight: 600;
	height: 50px;
	padding-left: 1.8rem;
	padding-right: 1.8rem;
	border-radius: 2rem;
	background-color: var(--accent);
	color: #fff;
}

.button--back {
	margin-bottom: 1rem;
}

.button__arrow {
	position: relative;
	display: block;
	width: 15px;
	height: 15px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: rotate(-45deg);
	margin-right: 0.8rem;
}

/* Footer */

.footer {
	position: relative;
	display: block;
	width: 100%;
	padding: 6rem 2rem 2rem;
	color: var(--text);
}

.footer__container {
	position: relative;
	display: block;
	width: 100%;
	font-size: 1.2rem;
}

.footer__list {
	display: flex;
	flex-wrap: wrap;
}

.footer__list:not(:first-of-type) {
	margin-top: 2rem;
}

.footer__list-item {
	width: 100%;
	margin-bottom: 0.5rem;
}

.footer__list-link {
	color: var(--text);
	text-decoration: none;
	font-size: 1.3rem;
}

.footer__columns {
	position: relative;
	display: flex;
	width: 100%;
	text-align: center;
	border: 1px solid #fff;
}

.footer__copyright {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	padding: 2rem 0;
	font-size: 1rem;
}

.footer__copyright span {
	display: block;
	width: 100%;
	margin-bottom: 0.5rem;
}

.marquee {
	position: relative;
	width: 100%;
	height: 14rem;
	background-color: var(--text);
	overflow: hidden;
}

.marquee .marquee__container {
  display: flex;
	align-items: center;
	justify-content: space-between;
  width: 700%;
  height: 100%;

  position: absolute;
  overflow: hidden;

  animation: marquee 10s linear infinite;
}

.marquee span {
  float: left;
	font-size: 10vw;
  width: 50%;
	color: var(--text-invert);
}

@keyframes marquee {
  0% { left: 0; }
  100% { left: -100%; }
}

/*Owl*/

/* .owl-stage-outer {
	margin-bottom: 2rem;
}

.owl-nav {
	display: flex;
	justify-content: flex-start;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0!important;
	text-indent: -600px;
	color: #fff!important;
	background-color: var(--black)!important;
	width: 66px;
	height: 66px;
}

.owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev:hover {
	background-color: var(--black-hover)!important;
}

.owl-carousel .owl-nav button.owl-next::after, .owl-carousel .owl-nav button.owl-prev::after {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background-size: 20px;
	background-repeat: no-repeat;
}

.owl-carousel .owl-nav button.owl-next::after {
	background-image: url('https://davidsonpert.wpengine.com/wp-content/uploads/2023/01/chevron-right-white.svg');
}

.owl-carousel .owl-nav button.owl-prev::after {
background-image: url('https://davidsonpert.wpengine.com/wp-content/uploads/2023/01/chevron-left-white.svg');
}


.owl-dots {
	display: flex;
	justify-content: center;
	margin: 1rem 0;
}

.owl-carousel button.owl-dot {
	width: 10px;
	height: 10px;
	border-radius: 10px;
	border: 1px solid var(--black)!important;
	margin: 0 4px;
}

.owl-carousel button.owl-dot.active {
	background-color: var(--black)!important;
} */


}

/* Cursor */

.cursor {
  position: fixed;
	top: 0;
	left: 0;
  background: #fff;
  width: 25px;
  height: 25px;
  margin: -12.5px 0 0 -12.5px;
  border-radius: 50%;
  will-change: transform;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
	mix-blend-mode: difference;
}

	/* Attachment Page */

	.attachment__container {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 2rem;
	}

	.attachment__wrapper {
		position: relative;
		width: 100%;
		max-width: 2000px;
	}

	.attachment__image-wrapper {
		display: flex;
		justify-content: center;
	}

	.attachment__image {
		height: auto;
		width: auto;
		max-height: 1600px;
		max-width: 100%;
	}

	.attachment__info-wrapper {
		position: relative;
		display: flex;
		align-items: center;
		margin-top: 2rem;
		margin-bottom: 2rem;
	}

	/* .attachment__info-section {
		position: relative;
		display: flex;
		align-items: center;
	} */

	.attachment__info-item {
		display: flex;
		margin-right: 1.5rem;
		max-width: 60%;
	}

	.attachment__info-item:last-of-type {
		margin-right: 0;
	}

	.attachment__info-icon {
		position: relative;
		display: block;
		width: 20px;
		height: 20px;
		background-color: var(--text);
		margin-right: 0.5rem;
	}

	.attachment__info-icon#alt-icon {
		mask: url("https://www.gullachsen.com/wp-content/uploads/2023/03/alt.svg");
	}

	.attachment__info-icon#location-icon {
		mask: url("https://www.gullachsen.com/wp-content/uploads/2023/03/location.svg");
	}

	.attachment__info-title {
		margin-bottom: 0.5rem;
		text-transform: lowercase;
		font-weight: 600;
	}

	.attachment__info-content {
		position: relative;
		display: flex;
		align-items: center;
		height: 50px;
		overflow: scroll;
	}

	.attachment__info-content::-webkit-scrollbar {
		display: none;
	}

	.attachment__info-content::scrollbar {
		display: none;
	}

	.attachment__cats {
		position: relative;
	}

	.attachment__cat {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size: 1.3rem;
		font-weight: 600;
		text-decoration: none;
		margin-right: 0.6rem;
	}

	.attachment__views {
		font-size: 2rem;
	}

	.attachment__colors {
		width: 300px;
	}

	.attachment__color {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		/* width: 50px; */
		height: 20px;
		flex-grow: 1;
		transition: all 0.2s;
	}

	.attachment__color:first-child {
		border-radius: 4px 0 0 4px;
	}

	.attachment__color:last-child {
		border-radius: 0 4px 4px 0;
	}

	.attachment__color span {
		font-size: 0.6rem;
		color: #fff;
		opacity: 0;
	}

	.attachment__description-wrapper {
		margin-bottom: 2rem;
	}

/* Tax Page */

.cat__description {
	display: flex;
	justify-content: center;
	margin: 3rem 0;
	width: 100%;
	z-index: 1005;
}

.cat__description-inner {
	width: 100%;
	max-width: 1300px;
}
.cat__description-inner p {
	margin-bottom: 3rem;
}

.cat__description-inner p:not(:first-child) {
	max-width: 600px;
}

.error-page {

}

.error__header {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-bottom: 1.5rem;
}

.error__title {
	font-size: 6rem;
	margin-bottom: 3rem;
}

.error__content {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 0;
}

.error__menu {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.error__menu-item {
	margin: 0.3rem;
	/* text-decoration: none; */
	font-size: 1.3rem;
	width: 100%;
	text-align: center;
}</pre></body></html>