/*
	Theme Name: rsfuge
	Author: rsfuge
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

*,
*:after,
*:before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

html {
	font-size: 62.5%;
}

body {
	font-family: "Work Sans", sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 300;
	color: #000;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

a {
	color: #cc000a;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

a:hover {
	color: #444;
}

a:focus,
input:focus {
	outline: 0;
}

a:active {
	color: #cc000a;
	outline: 0;
}

/* Flex helpers */
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.wrap {
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.center {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.end {
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.baseline {
	-webkit-box-align: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
}

.j-center {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.j-end {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.between {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

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

/* Clearfix */
.clear:before,
.clear:after {
	content: ' ';
	display: table;
}

.clear:after {
	clear: both;
}

.clear {
	*zoom: 1;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

.wrapper {
	max-width: 1200px;
	width: 100%;
	padding: 0 10px;
	margin: 0 auto;
	position: relative;
}

.section {
	padding: 50px 0;
}

/*------------------------------------*\
    SHARED ELEMENTS
\*------------------------------------*/

/* Section headline */
.section-title {
	font-size: 30px;
	font-weight: 300;
	color: #000;
	margin: 0;
	line-height: 1.3;
}

.section-title::after {
	content: '';
	display: block;
	width: 80px;
	height: 3px;
	background: #cc000a;
	margin: 20px 0 30px;
}

.section-title--center {
	text-align: center;
}

.section-title--center::after {
	margin-left: auto;
	margin-right: auto;
}

/* Section intro text */
.section-intro {
	max-width: 800px;
	margin: 0 auto 50px;
	text-align: center;
	font-size: 16px;
	line-height: 24px;
	color: #000;
}

.section-intro p {
	margin: 0 0 16px;
	font-weight: 300;
}

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

/* Outline button */
.btn,
.slide-btn,
.welcome__btn,
.infoBox__btn,
.serviceBox__btn {
	display: inline-block;
	padding: 11px 26px;
	border: 2px solid #cc000a;
	border-radius: 30px;
	color: #000;
	background: transparent;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover,
.slide-btn:hover,
.welcome__btn:hover,
.infoBox__btn:hover,
.serviceBox__btn:hover {
	background: #cc000a;
	color: #fff;
}

.welcome__btn {
	margin-top: 30px;
	padding: 13px 32px;
}

.infoBox__btn,
.serviceBox__btn {
	margin-top: auto;
}

.serviceBox__btn {
	align-self: flex-start;
}

/* Centered button row */
.buttons-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-top: 40px;
}

/* Responsive grid */
.grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

/* Zoom overlay on gallery images */
.zoom-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: rgba(0, 0, 0, 0.2);
	opacity: 0;
	transition: opacity 0.3s ease;
}

/* Swiper bullets */
.swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	display: inline-block;
	border-radius: 100%;
	border: 2px solid #868e96;
	background: transparent;
	opacity: 1;
	transition: border-color 0.25s ease;
}

.swiper-pagination-bullet-active {
	background: #cc000a;
	border-color: #cc000a;
}

/*------------------------------------*\
    TOPBAR
\*------------------------------------*/

.topbar {
	display: none;
	background: #ce282d;
	color: #fff;
	font-size: 14px;
}

.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 0;
}

.topbar__left {
	display: flex;
	align-items: center;
	gap: 40px;
}

.topbar__left a,
.topbar__right a {
	color: #fff;
	text-decoration: none;
}

.topbar__right a {
	opacity: 0.75;
}

.topbar__right a:hover {
	opacity: 1;
}

.topbar__item a {
	color: rgba(255, 255, 255, 0.75);
}

.topbar__item:hover a {
	color: #fff !important;
}

/*------------------------------------*\
    HEADER
\*------------------------------------*/

.header {
	background: #fff;
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px 0;
}

.logo-img {
	display: block;
	max-width: 160px;
	width: auto;
}

/* Nav */
.nav {
	display: none;
}

.nav > ul {
	display: inline-block;
}

.nav ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.nav ul li {
	position: relative;
}

.nav > ul > li {
	display: inline-block;
	margin-left: 30px;
}

.nav ul > li > a {
	color: #000;
	font-size: 16px;
	display: block;
	text-decoration: none;
	padding: 16px 0;
}

.nav ul > li > a:hover {
	color: #cc000a;
}

/* Parent arrow */
.nav ul li.menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-right: 2px solid #cc000a;
	border-bottom: 2px solid #cc000a;
	transform: rotate(45deg);
	margin-left: 7px;
	vertical-align: middle;
	position: relative;
	top: -2px;
	transition: transform 0.2s ease, top 0.2s ease;
}

.nav ul li.menu-item-has-children:hover > a::after {
	transform: rotate(225deg);
	top: 2px;
}

/* Dropdown */
.nav ul ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 9;
	text-align: left;
	white-space: nowrap;
	background: #fff;
	border-top: 3px solid #cc000a;
	box-shadow: 0 0 20px rgba(78, 78, 78, 0.16);
	min-width: 270px;
}

.nav ul li:hover > ul {
	display: block;
}

.nav ul ul ul {
	top: 0;
	left: 100%;
	width: 100%;
}

.nav ul ul li {
	border-bottom: 1px solid #eee;
}

.nav ul ul li:last-child {
	border-bottom: none;
}

.nav ul ul li a {
	padding: 15px 20px;
	display: block;
	background: #fff;
	color: #000;
	font-size: 16px;
	text-decoration: none;
	position: relative;
}

.nav ul ul li a::before {
	content: '';
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23CE282D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 12px;
	opacity: 0;
	transition: opacity 0.2s ease, left 0.2s ease;
}

.nav ul ul li a:hover {
	color: #cc000a;
}

.nav ul ul li a:hover::before {
	opacity: 1;
}

/* Hamburger */
.menu-toggle {
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	color: #000;
	line-height: 1;
}

.menu-toggle:hover {
	color: #cc000a;
}

/* Dots toggle */
.dots-toggle {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px 8px;
}

.dots-toggle span {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #000;
}

.dots-toggle:hover span {
	background: #cc000a;
}

/* Dots dropdown */
.dots-dropdown {
	display: none;
	box-shadow: 0 0 22px -4px rgba(0, 0, 0, 0.17);
	position: fixed;
	right: 0;
	padding: 15px;
	width: auto;
	border-radius: 0;
	text-align: left;
	font-size: 14px;
	z-index: 1;
	background: #fff;
}

.dots-dropdown.is-open {
	display: block;
}

.dots-dropdown__item {
	padding: 5px 0;
}

.dots-dropdown__item a {
	color: inherit;
	text-decoration: none;
}

.dots-dropdown__item a:hover {
	color: #cc000a;
}

/*------------------------------------*\
    SLIDER
\*------------------------------------*/

.js-main-swiper {
	position: relative;
	overflow-x: hidden;
}

.js-main-swiper .swiper-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.js-main-swiper .swiper-slide {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 360px;
	width: 100% !important;
	display: flex;
	align-items: center;
}

.js-main-swiper .swiper-slide-caption {
	position: absolute;
	z-index: 2;
	width: 100%;
	padding: 80px 0;
}

.slide-title {
	font-size: 30px;
	font-weight: 300;
	color: #000;
	margin: 0 0 40px;
	line-height: 1.2;
}

.slide-title::after {
	content: '';
	display: none;
	width: 75px;
	height: 3px;
	background: #cc000a;
	margin-top: 16px;
}

.slide-text {
	display: none;
	font-size: 16px;
	font-weight: 300;
	color: #000;
	line-height: 24px;
	margin: 0 0 30px;
	max-width: 450px;
}

.slide-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* Caption animation */
.slide-title,
.slide-text,
.slide-buttons {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-title.is-visible,
.slide-text.is-visible,
.slide-buttons.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Navigation */
.swiper-nav {
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	display: none;
	flex-direction: column;
	gap: 10px;
}

.swiper-button-prev,
.swiper-button-next {
	position: relative !important;
	left: unset;
	right: unset;
	top: unset;
	bottom: unset;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: #fff;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	display: none;
}

.swiper-counter {
	z-index: 10;
	color: #fff;
	font-size: 14px;
	letter-spacing: 1px;
	display: flex;
	align-self: center;
}

.swiper-pagination {
	bottom: 20px;
}

/*------------------------------------*\
    WELCOME
\*------------------------------------*/

.welcome {
	background: #f6f6f6;
}

.welcome__inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

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

.welcome__text {
	font-size: 16px;
	line-height: 24px;
	color: #000;
}

.welcome__text p {
	margin: 0 0 18px;
}

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

.welcome__text strong {
	display: block;
	font-size: 18px;
	color: #000;
	margin-bottom: 18px;
}

/*------------------------------------*\
    INFO BOXES
\*------------------------------------*/

.infoBox {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 30px 24px;
	border: 1px solid #e0e0e0;
	background: #fff;
}

.infoBox__image {
	margin-bottom: 24px;
}

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

.infoBox__text {
	font-size: 16px;
	line-height: 24px;
	color: #000;
	margin-bottom: 24px;
}

.infoBox__text p {
	margin: 0 0 16px;
}

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

/*------------------------------------*\
    SERVICE BOXES
\*------------------------------------*/

.serviceBoxes__grid {
	align-items: start;
}

.serviceBox {
	display: flex;
	flex-direction: column;
	padding: 30px 26px;
	background: #fff;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.serviceBox__title {
	font-size: 21px;
	font-weight: 700;
	color: #000;
	margin: 0 0 16px;
	line-height: 1.3;
}

.serviceBox__text {
	font-size: 16px;
	line-height: 24px;
	color: #000;
}

.serviceBox__text p {
	margin: 0 0 16px;
}

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

.serviceBox__btn {
	margin-top: 26px;
}

/*------------------------------------*\
    TEXT + GALLERY
\*------------------------------------*/

.textGallery__content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	font-size: 16px;
	line-height: 24px;
	color: #000;
}

.textGallery__content p {
	margin: 0 0 16px;
}

.textGallery__content h4 {
	font-size: 21px;
	font-weight: 700;
	color: #000;
	margin: 30px 0 16px;
}

.textGallery__grid {
    padding: 0 10px;
	margin-top: 50px;
}

.textGallery__item {
	position: relative;
	display: block;
	overflow: hidden;
	line-height: 0;
}

.textGallery__item img {
	width: 100%;
	height: auto;
	transition: transform 0.4s ease;
}

.textGallery__item:hover img {
	transform: scale(1.05);
}

.textGallery__item:hover .zoom-overlay {
	opacity: 1;
}

/*------------------------------------*\
    REFERENCER
\*------------------------------------*/

.referencer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	width: 100%;
	background: #e6e6e6;
	border-top: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
}

.reference {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 34px 24px;
	background: #fff;
	transition: box-shadow 0.25s ease;
}

.reference:hover {
	z-index: 2;
	box-shadow: 0 6px 26px rgba(0, 0, 0, 0.12);
}

.reference__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 70px;
	margin-bottom: 26px;
}

.reference__logo img {
	max-width: 170px;
	max-height: 70px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.reference__title {
	font-size: 21px;
	font-weight: 300;
	color: #000;
	margin: 0 0 16px;
	line-height: 1.3;
}

.reference__text {
	font-size: 16px;
	line-height: 24px;
	color: #000;
}

/*------------------------------------*\
    GALLERY PAGE
\*------------------------------------*/

.galleryFilters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 30px;
	margin-bottom: 40px;
}

.galleryFilters__btn {
	padding: 6px 0;
	border: none;
	background: none;
	color: #000;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: color 0.2s ease;
}

.galleryFilters__btn:hover,
.galleryFilters__btn.is-active {
	color: #cc000a;
}

.galleryGrid__item {
	position: relative;
	display: block;
	overflow: hidden;
	line-height: 0;
}

.galleryGrid__item.is-hidden {
	display: none;
}

.galleryGrid__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 5;
	transition: transform 0.4s ease;
}

.galleryGrid__item:hover img {
	transform: scale(1.05);
}

.galleryGrid__item:hover .zoom-overlay {
	opacity: 1;
}

/*------------------------------------*\
    TESTIMONIALS
\*------------------------------------*/

.testimonials {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.testimonials .wrapper {
	position: relative;
	z-index: 2;
}

.testimonials__headline {
	text-transform: uppercase;
	letter-spacing: 3px;
}

.testimonials__swiper {
	padding-bottom: 50px;
}

.testimonials__swiper .swiper-slide {
	height: auto;
	display: flex;
}

.testimonial {
	position: relative;
	width: 100%;
	max-width: 450px;
	margin: 0 auto;
	background: #fff;
	padding: 40px 20px;
	border-bottom: 4px solid #cc000a;
	overflow: hidden;
}

.testimonial__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
}

.testimonial__name {
	font-size: 19px;
	font-weight: 400;
	color: #000;
}

.testimonial__role {
	position: relative;
	padding-left: 14px;
	font-size: 16px;
	color: #000;
}

.testimonial__role::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 20px;
	background: #ccc;
}

.testimonial__text {
	position: relative;
	z-index: 2;
	font-size: 16px;
	line-height: 24px;
	color: #000;
	margin-bottom: 40px;
}

.testimonial::after {
	content: '\201D';
	position: absolute;
	right: 18px;
	bottom: -55px;
	z-index: 1;
	font-family: Georgia, serif;
	font-size: 150px;
	line-height: 1;
	color: #eee;
}

.testimonials__pagination {
	bottom: -5px !important;
}

.testimonials__pagination .swiper-pagination-bullet {
	border-color: #868e96;
}

/*------------------------------------*\
    FORM SECTION
\*------------------------------------*/

.formSection {
	background: #f7f7f7;
}

.formSection__headline {
	margin-bottom: 10px;
}

.formSection__headline::after {
	display: none;
}

.formSection__subheadline {
	font-size: 22px;
	font-weight: 700;
	color: #000;
	text-align: center;
	margin: 0;
	line-height: 1.4;
}

.formSection__subheadline::after {
	content: '';
	display: block;
	width: 80px;
	height: 3px;
	background: #cc000a;
	margin: 20px auto 0;
}

.formSection__text {
	max-width: 700px;
	margin: 26px auto 0;
	text-align: center;
	font-size: 16px;
	line-height: 24px;
	color: #000;
}

.formSection__text p {
	margin: 0 0 12px;
}

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

.formSection__text a {
	color: #cc000a;
	text-decoration: none;
}

.formSection__text a:hover {
	text-decoration: underline;
}

.formSection__form {
	max-width: 700px;
	margin: 34px auto 0;
}

/*------------------------------------*\
    CONTACT FORM 7
\*------------------------------------*/

.wpcf7 {
	text-align: left;
}

.wpcf7 .cf7-col p,
.wpcf7 .cf7-full p,
.wpcf7 .cf7-submit p {
	margin: 0;
	padding: 0;
}

.cf7-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.cf7-full {
	margin-bottom: 24px;
}

.wpcf7 .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	padding: 14px 22px;
	border: 1px solid #111;
	border-radius: 30px;
	background: transparent;
	font-size: 16px;
	line-height: 24px;
	font-family: inherit;
	color: #000;
	outline: none;
	box-sizing: border-box;
	transition: border-color 0.2s ease;
}

.wpcf7 textarea {
	border-radius: 20px;
	height: 130px;
	resize: vertical;
	display: block;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
	color: #888;
	opacity: 1;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	border-color: #cc000a;
}

.wpcf7 select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 22px center;
	padding-right: 50px;
	cursor: pointer;
	color: #888;
}

.cf7-submit {
	text-align: center;
}

.wpcf7 input[type="submit"] {
	display: inline-block;
	width: auto;
	padding: 14px 42px;
	border: none;
	border-radius: 30px;
	background: #cc000a;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	font-family: inherit;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: background 0.2s ease;
}

.wpcf7 input[type="submit"]:hover {
	background: #000;
}

.wpcf7 .wpcf7-not-valid-tip {
	font-size: 13px;
	color: #cc000a;
	padding: 6px 22px 0;
}

.wpcf7 .wpcf7-response-output {
	margin: 24px 0 0;
	padding: 14px 20px;
	border-radius: 8px;
	font-size: 14px;
}

.wpcf7 .wpcf7-spinner {
	display: block;
	margin: 12px auto 0;
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/

.footer {
	padding: 50px 0;
	background: #fff;
	color: #000;
}

.footer .wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

.footer .h3 {
	font-size: 21px;
	font-weight: 400;
	color: #000;
	margin: 0;
}

.footer .h3::after {
	content: '';
	display: block;
	width: 80px;
	height: 3px;
	background: #cc000a;
	margin: 14px 0 22px;
}

.footer .textwidget p {
	margin: 0 0 16px;
}

.footer .textwidget p:last-child {
	margin-bottom: 0;
}

.footer a {
	color: inherit;
	text-decoration: none;
	transition: color 0.15s ease;
}

.footer a:hover {
	color: #cc000a;
}

/* Menu widget */
.footer .menu,
.footer .menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer .menu li:last-child {
	margin-bottom: 0;
}

.footer .menu .sub-menu {
	margin-top: 8px;
}

.footer .menu a {
	display: inline-block;
}

/* Contact info */
.contactInfo {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contactInfo__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.contactInfo__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #cc000a;
	margin-top: 3px;
}

.contactInfo__text a {
	color: inherit;
	text-decoration: none;
}

.contactInfo__text a:hover {
	color: #cc000a;
}

/* Brand logos */
.footer .brand {
	display: inline-block;
}

.footer .brand img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0;
}

/*------------------------------------*\
    COPYRIGHT
\*------------------------------------*/

.copyright {
	padding: 12px 0;
	background: #f6f6f6;
}

.copyright__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	text-align: center;
}

.copyright__logo img {
	display: block;
	max-width: 160px;
	height: auto;
}

.copyright__text {
	color: #000;
}

.copyright__text a {
	color: #000;
	text-decoration: none;
}

.copyright__text a:hover {
	color: #cc000a;
}

/*------------------------------------*\
    SCROLL TO TOP
\*------------------------------------*/

.ui-to-top {
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	color: #fff;
	background: #cc000a;
	overflow: hidden;
	text-decoration: none;
	transition: 0.45s all ease-in-out;
	transform: translate3d(0, 100px, 0);
}

.ui-to-top:hover {
	color: #fff;
	background: #000;
}

.ui-to-top.active {
	transform: translate3d(0, 0, 0);
}

/*------------------------------------*\
    TEXT BLOCK
\*------------------------------------*/

.textBlock__content {
	font-size: 16px;
	line-height: 24px;
	color: #000;
}

.textBlock__content p {
	margin: 0 0 16px;
}

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

.textBlock__content h3,
.textBlock__content h4,
.textBlock__content strong {
	font-size: 16px;
	font-weight: 700;
	color: #000;
	line-height: 24px;
	margin: 0 0 8px;
}

.textBlock__content h3,
.textBlock__content h4 {
	margin-top: 26px;
}

.textBlock__content ul,
.textBlock__content ol {
	margin: 0 0 16px;
	padding-left: 20px;
}

.textBlock__content li {
	margin-bottom: 6px;
}
.buttons-row--left {
	justify-content: flex-start;
}

/*------------------------------------*\
    CONTACT BLOCK
\*------------------------------------*/

.contactBlock__inner {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.contactBlock__text {
	font-size: 16px;
	line-height: 24px;
	color: #000;
}

.contactBlock__text p {
	margin: 0 0 16px;
}

.contactBlock__text a {
	color: #cc000a;
}

/* Form inside this block aligns left */
.contactBlock .wpcf7 {
	margin-top: 24px;
}

.contactBlock .cf7-submit {
	text-align: left;
}

/* Aside items */
.contactItem {
	padding-bottom: 18px;
	margin-bottom: 22px;
	border-bottom: 1px solid #e0e0e0;
}

.contactItem:last-child {
	margin-bottom: 0;
}

.contactItem__title {
	font-size: 21px;
	font-weight: 700;
	color: #000;
	margin: 0 0 12px;
	line-height: 1.3;
}

.contactItem__row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 16px;
	line-height: 24px;
	color: #000;
}

.contactItem__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #cc000a;
	margin-top: 3px;
}

.contactItem__text a {
	color: inherit;
	text-decoration: none;
}

.contactItem__text a:hover {
	color: #cc000a;
}

/*------------------------------------*\
    TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family: 'Font-Name';
	src: url('fonts/font-name.eot');
	src: url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
	font-weight: normal;
	font-style: normal;
}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background: #cc000a;
	color: #fff;
	text-shadow: none;
}

::-moz-selection {
	background: #cc000a;
	color: #fff;
	text-shadow: none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	background: #fff;
	border: 1px solid #f0f0f0;
	max-width: 96%;
	padding: 5px 3px 10px;
	text-align: center;
}

.wp-caption.alignnone,
.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

.removePadding{
    padding-bottom: 0!important;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width: 600px) {

	.grid--2,
	.grid--3,
	.grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.referencer__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer .wrapper {
		grid-template-columns: repeat(2, 1fr);
	}

}

@media only screen and (min-width: 768px) {

	.section {
		padding: 85px 0;
	}

	.slide-title::after {
		display: block;
	}

	.js-main-swiper .swiper-slide {
		min-height: 40.10417vw;
	}

	.cf7-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 24px;
	}

	.footer {
		padding: 60px 0;
	}

	.copyright__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		text-align: left;
		gap: 30px;
	}

	.copyright__text {
		flex: 1;
		position: absolute;
		width: 100%;
		text-align: center;
	}

	.ui-to-top {
		right: 40px;
		bottom: 40px;
	}

}

@media only screen and (min-width: 960px) {

	.section {
		padding: 100px 0;
	}

	.section-title {
		font-size: 38px;
	}

	.grid--3 {
		grid-template-columns: repeat(3, 1fr);
		gap: 36px;
	}

	.grid--4 {
		grid-template-columns: repeat(4, 1fr);
	}

	.referencer__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.header__inner {
		padding: 20px 0;
	}

	.logo-img {
		max-width: 200px;
	}

	.topbar,
	.nav {
		display: block;
	}

	.menu-toggle,
	.dots-toggle,
	.dots-dropdown {
		display: none !important;
	}

	.slide-text {
		display: block;
	}

	.welcome__inner {
		flex-direction: row;
		align-items: center;
		gap: 70px;
	}

	.welcome__image,
	.welcome__content {
		flex: 1;
	}

	.welcome__title {
		font-size: 44px;
	}

	.formSection__subheadline {
		font-size: 24px;
	}

	/* 3 or fewer slides — no bullets needed on desktop */
	.testimonials--few .testimonials__pagination {
		display: none;
	}

	.testimonials--few .testimonials__swiper {
		padding-bottom: 0;
	}

	.footer .wrapper {
		grid-template-columns: repeat(4, 1fr);
		gap: 40px;
	}
.contactBlock__inner {
		flex-direction: row;
		gap: 70px;
	}

	.contactBlock__main {
		flex: 1 1 auto;
	}

	.contactBlock__aside {
		flex: 0 0 320px;
	}
}

@media only screen and (min-width: 1200px) {

	.section {
		padding: 115px 0;
	}

	.section-title {
		font-size: 44px;
	}

	.nav > ul > li {
		margin-left: 46px;
	}

	.js-main-swiper .swiper-pagination {
		display: none;
	}

	.swiper-nav {
		display: flex;
	}

	.slide-title {
		font-size: 60px;
		line-height: 72px;
	}

	.formSection__headline {
		font-size: 48px;
	}

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}
	a,
	a:visited {
		text-decoration: underline;
	}
	a[href]:after {
		content: " (" attr(href) ")";
	}
	abbr[title]:after {
		content: " (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}
	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	thead {
		display: table-header-group;
	}
	tr,
	img {
		page-break-inside: avoid;
	}
	img {
		max-width: 100% !important;
	}
	@page {
		margin: 0.5cm;
	}
	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}
	h2,
	h3 {
		page-break-after: avoid;
	}
}