@import url('https://fonts.googleapis.com/css2?family=National+Park:wght@200..800&family=Staatliches&display=swap');

body {
	font-family: "AmpleSoftPro-Regular";
	font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fff;
    color: #333446;
	font-size: 16px;
}

a {
	text-decoration: none;
}

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

h1 {
	font-size: 50px;
	font-weight: 800;
}

h2 {
	font-size: 40px;
	font-weight: 800;
}

h3 {
	font-size: 35px;
	font-weight: 700;
}

h4 {
	font-size: 20px;
	font-weight: 600;
}

h1, h2, h3, h4, h5 { margin: 0; padding: 0; }
p { margin: 0; padding: 0; }

/* HEADER */

header {
	background-color: #fff;
	position: relative;
	z-index: 10001;
}

header .middle {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding: 15px 0;
}

header .middle .wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

header .middle .left-side {
	display: flex;
	justify-content: flex-start;
	position: relative;
	flex: 1;
	margin-right: 50px;
}

header .middle .right-side {
	display: flex;
	justify-content: flex-end;
	position: relative;
	flex: 1;
	margin-left: 50px;
}

header .middle .single-item {
	display: flex;
}

header .middle .right-side .single-item {
	text-align: right;
}

header .middle .single-item .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 100%;
	border: 1px solid #ddd;
}

header .middle .single-item .icon .nikofonts {
	width: 20px;
	height: 20px;
	background-color: #BDAA70;
	animation-name: triangle;
	animation-duration: 5s;
	animation-iteration-count: infinite;
}

@keyframes triangle {
	0% {
		transform: rotate(0deg);
	}
	15% {
		transform: rotate(360deg);
	}
	25% {
		transform: rotate(0deg);
	}
}

header .middle .single-item .details {
	flex: 1;
}

header .middle .single-item p {
	position: relative;
	background-color: #fff;
	padding: 0 15px;
}

header .middle .single-item:before {
	position: absolute;
	content: '';
	left: 0;
	bottom: 10px;
	height: 1px;
	width: 100%;
	background-color: #ddd;
}

header .middle .single-item h4 {
	font-weight: 600;
	margin-bottom: 5px;
	padding: 0 15px;
}

header .middle .single-item p a {
	font-size: 16px;
	color: #BDAA70;
	font-weight: 500;
}

header .logo {
	position: relative;
	width: 120px;
}

header .logo:before {
	position: absolute;
	left: -100px;
	top: 53px;
	content: '';
	height: 1px;
	width: 50px;
	background-color: #ddd;
}

header .logo:after {
	position: absolute;
	right: -100px;
	top: 53px;
	content: '';
	height: 1px;
	width: 50px;
	background-color: #ddd;
}

header .wrapper .logo img {
	width: 100%;
}

header .main-menu {
	padding: 10px 0;
}

header .main-menu nav {
	display: flex;
	justify-content: center;
}

header nav > ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

header nav > ul li {
	position: relative;
	border-right: 1px solid #ddd;
}

header nav ul li:last-child {
	border-right: none;
}

header nav ul li a {
	display: block;
	text-transform: uppercase;
	font-weight: 600;
	color: #131313;
	padding: 8px 30px;
}

header nav ul li a:hover,
header nav ul li a.active {
	color: #BDAA70;
}

header ul.submenu {
	display: flex;
	flex-direction: column;
	position: absolute;
    left: 0;
	visibility: hidden;
    opacity: 0;
    top: 0px;
	width: 350px;
	transition: .1s;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	z-index: 10001;
}

header ul li.with-submenu > a:after {
	content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid #6f7580;
    border-bottom: 2px solid #6f7580;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.2s ease;
}

header ul.submenu li a i {
	color: #007834;
	font-size: 40px;
	padding-right: 0px;
}

header ul.submenu a {
	display: block;
	width: 100%;
	background-color: #fff;
	padding: 10px 15px;
	border-bottom: 1px solid #ddd;
}

header ul.submenu li:last-child a {
	border-bottom: 0;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

header ul.submenu.show {
	visibility: visible;
    opacity: 1;
    top: 50px;
}

header .header-scroll {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #BDAA70;
	z-index: 10001;
}

header .header-scroll .wrapper {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding-top: 10px;
	padding-bottom: 10px;
}

header .header-scroll .wrapper nav {
	margin-left: auto;
}

header .header-scroll .wrapper .logo {
	width: 40px;
}

header .header-scroll .wrapper .logo img {
	width: 100%;
}

header .header-scroll .wrapper .logo.kryncki {
	animation-name: kryncki;
	animation-duration: 1s;
}

header .header-scroll ul li.with-submenu > a:after {
	border-color: #fefefe;
}

@keyframes kryncki {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}

header .header-scroll .wrapper nav > ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

header .header-scroll .wrapper nav > ul li {
	border-color: rgba(255, 255, 255, .5);
}

header .header-scroll .wrapper nav > ul > li > a {
	color: #fff;
}

header .mobile-icons {
	display: none;
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100001;
	background-color: #fff;
	padding: 30px;
	overflow-y: auto;
}

.mobile-menu.show {
	display: block;
}

.mobile-menu ul li {
	display: block;
}

.mobile-menu ul li.menu-link a {
	display: block;
	padding: 10px 0px;
	border-bottom: 1px solid #ddd;
	text-decoration: none;
    font-weight: 600;
    color: #343434
}

#nav-icon2 {
	display: none;
	position: fixed;
	right: 15px;
	top: 25px;
	width: 25px;
	height: 25px;
	transition: .5s ease-in-out;
	cursor: pointer;
	z-index: 100005;
}

#nav-icon2 span {
	display: block;
	position: absolute;
	height: 4px;
	width: 50%;
	background-color: #333446;
	opacity: 1;
	transition: .25s ease-in-out;
}

#nav-icon2.open span {
	background-color: #333446;
}

#nav-icon2 span:nth-child(even) {
	left: 50%;
	border-radius: 0 3px 3px 0;
}

#nav-icon2 span:nth-child(odd) {
	left: 0px;
	border-radius: 3px 0 0 3px;
}

#nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
	top: 0px;
}

#nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
	top: 8px;
}

#nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
	top: 16px;
}

#nav-icon2.open span:nth-child(1),#nav-icon2.open span:nth-child(6) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),#nav-icon2.open span:nth-child(5) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
	left: 6px;
	top: 8px;
}

#nav-icon2.open span:nth-child(2) {
	left: calc(50% - 6px);
	top: 8px;
}

#nav-icon2.open span:nth-child(3) {
	left: -50%;
	opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
	left: 100%;
	opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
	left: 6px;
	top: 8px;
}

#nav-icon2.open span:nth-child(6) {
	left: calc(50% - 6px);
	top: 8px;
}

.hero {
	position: relative;
	height: 79vh;
	min-height: 450px;
}

.hero .wrapper {
	position: relative;
	z-index: 3;
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	height: 78vh;
	min-height: 450px;
	padding: 120px 30px;
}

.hero .wrapper:before {
	position: absolute;
	left: 0;
	top: 50px;
	bottom: 80px;
	content: '';
	width: 1px;
	background-color: rgba(255, 255, 255, .2);
}

.hero .wrapper:after {
	position: absolute;
	left: 0;
	bottom: 80px;
	content: '';
	right: 0;
	height: 1px;
	background-color: rgba(255, 255, 255, .2);
}

.hero .wrapper span.subtitle {
	color: #BDAA70;
	font-weight: 800;
	border-left: 3px solid #BDAA70;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 2px;
	padding-left: 15px;
	border-radius: 3px;
}

.hero .wrapper h1 {
	color: #fff;
	font-size: 70px;
}

.hero .wrapper ul {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 20px;
}

.hero .wrapper ul li {
	position: relative;
	color: #fff;
	font-size: 20px;
	padding-left: 20px;
}

.hero .wrapper ul li span {
	font-weight: 600;
	color: #BDAA70;
}

.hero .wrapper ul li:before {
	position: absolute;
	content: '';
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border: 2px solid #fff;
	border-radius: 100%;
}

.hero .buttons {
	position: absolute;
	right: 0;
	bottom: 55px;
	z-index: 3;
}

.hero .video-background {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.hero .video-background:after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	background-color: rgba(0, 0, 0, .45);
}

.hero .video-background video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.title {
	display: flex;
	flex-direction: column;
}

.title.with-menu {
	align-items: center;
	flex-direction: row;
	justify-content: space-between;
}

.title.with-menu ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.title.with-menu ul li a {
	
}

.title.centered {
	align-items: center;
}

.title h2 {
	font-size: 40px;
	font-weight: 800;
}

h3.with-arrow {
	position: relative;
	padding-left: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #BDAA70;
}

h3.with-arrow:before {
	position: absolute;
	left: 0;
	top: -30px;
	content: '';
	width: 1px;
	bottom: 0px;
	background-color: #BDAA70;
}

h3.with-arrow:after {
	position: absolute;
	right: 0;
	content: '';
	width: 1px;
	bottom: -60px;
	height: 60px;
	background-color: #BDAA70;
}

.bg-1 {
	background-color: #626E74;
}

.bg-2 {
}

.bg-3 {
	background-color: #f5f5f5;
}

.bg-dots {
	background-image: url(../img/bg-dots.png);
	background-position: top right;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: auto;
}

.bg-idea {
	position: relative;
}

.bg-idea:before {
	content: "";
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%; 
	height: 100%;
	z-index: -1; 
	background-image: url(../img/bg-idea.png);
	background-position: center right;
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-size: auto;
}

p.desc {
	font-size: 20px;
}

.images-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.images-group .item {
	height: 400px;
}

.images-group .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-top-left-radius: 35px;
}

.images-group .item:last-child img {
	border-top-left-radius: 0px;
	border-bottom-right-radius: 35px;
}

.boxes {
	display: grid;
	grid-template-columns: 1fr 1fr ;
	gap: 30px;
}

.boxes .item {
	position: relative;
    display: flex;
	flex-wrap: wrap;
    -webkit-box-shadow: 0px 3px 8px 2px #ededed;
    box-shadow: 0px 3px 8px 2px #ededed;
	padding: 35px 20px;
	background-color: #fff;
	border-top-right-radius: 35px;
	border-bottom-left-radius: 35px;
}

.boxes .item .icon {
	width: 130px;
}

.boxes .item .icon img {
	width: 100%;
}

.boxes .item .details {
	flex: 1;
	margin-left: 20px;
}

.boxes .item .divider {
	width: 60px;
	height: 2px;
	background-color: #BDAA70;
	margin: 20px 0;
}

.boxes .item h4 {
	margin-bottom: 15px;
}

.boxes .item p {
	margin-bottom: 15px;
}

/* DECOR */

.decor-wrapper {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.decor-wrapper .decor-image {
	width: 36px;
	margin: 0 15px;
}

.decor-wrapper img {
	width: 100%;
}

.decor-wrapper .decor {
	width: 60px;
	height: 8px;
	position: relative;
}

.decor-wrapper .decor span {
	position: absolute;
	right: 0;
	top: 0;
	height: 2px;
	width: 40px;
	background-color: #BDAA70;
}

.decor-wrapper .decor.white span {
	background-color: #fff;
}

.decor-wrapper .decor span:last-child {
	top: 6px;
	width: 60px;
}

.decor-wrapper .decor.reverse span {
	right: auto;
	left: 0;
}

/* REFERENCES */

.references {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 100px 30px;
}

.references .item {
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
	position: relative;
	padding: 50px 30px 0;
	background-color: #fff;
	-webkit-box-shadow: 0px 3px 8px 2px #ededed;
    box-shadow: 0px 3px 8px 2px #ededed;
	border-radius: 5px;
	border-top-right-radius: 35px;
	border-bottom-left-radius: 35px;
	border-bottom-right-radius: 35px;
	border-top: 3px solid #BDAA70;
}

.references .item p {
	font-size: 18px;
	color: #828282;
}

.references .item .author {
	position: relative;
	top: 70px;
	margin-top: 0px;
	text-align: center;
	border: 3px solid #BDAA70;
	padding: 50px 30px;
	background-color: #fff;
	border-radius: 5px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 35px;
	border-top-right-radius: 35px;
	-webkit-box-shadow: 0px 3px 8px 2px #ededed;
    box-shadow: 0px 3px 8px 2px #ededed;
	width: 90%;
	transition: .5s;
}

.references .item:hover .author {
	top: 60px;
}

.references .item .author p {
	color: #828282;
}

.references .item .author .image {
	position: absolute;
	left: 50%;
	top: -50%;
	transform: translate(-50%, 50%);
	z-index: 2;
	width: 80px;
	height: 80px;
	border-radius: 35px;
	background-color: #fff;
	border: 3px solid #BDAA70;
	display: flex;
	align-items: center;
	justify-content: center;
}

.references .item .author .image .nikofonts {
	width: 40px;
	height: 40px;
	background-color: #BDAA70;
}

.references .item .author h5 {
	font-weight: 700;
	margin-bottom: 15px;
}

/* PROPERTIES */

.accordion-flush .accordion-item .accordion-button {
	padding: 20px;
	font-size: 20px;
    font-weight: 600;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
}

.accordion-button:not(.collapsed) {
	background-color: #BDAA70;
	color: #fff;
	box-shadow: none;
}

.accordion-button:focus {
	box-shadow: none;
	border: 0;
}

.accordion-flush .accordion-item {
	-webkit-box-shadow: 0px 3px 8px 2px #ededed;
    box-shadow: 0px 3px 8px 2px #ededed;
	margin-bottom: 15px;
	border-radius: 10px;
}

.accordion-flush .accordion-item:last-child {
	margin-bottom: 0px;
}

.accordion-body {
	padding: 20px;
	font-size: 18px;
    color: #828282;
}

/* PORTFOLIO */

.portfolio {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 100px;
	overflow: hidden;
}

.portfolio .item {
	width: calc(50% - 50px);
	position: relative;
	cursor: pointer;
}

.portfolio .item:nth-child(odd):after {
	position: absolute;
	right: -49px;
	top: 0;
	bottom: 0;
	content: '';
	background-color: #BDAA70;
	width: 1px;
	height: 100%;
}

.portfolio .item .details {
	text-align: center;
	margin-top: 10px;
}

.portfolio .item .details p {
	color: #828282;
	font-size: 18px;
}

.portfolio .item:nth-child(even) {
	margin-top: 75px;
}

.portfolio .item:before {
	position: absolute;
	content: '';
	left: 10%;
	top: -20px;
	right: 10%;
	height: 360px;
	background-color: #f4f4f4;
	z-index: -1;
	border-radius: 5px;
	border-top-left-radius: 35px;
	transition: .5s;
	transform: rotate(10deg);
}

.portfolio .item:hover:before {
	transform: rotate(0deg);
}

.portfolio .item video {
	position: relative;
	z-index: 5;
	width: 100%;
	height: 360px;
	object-fit: cover;
	border-radius: 5px;
	border-bottom-right-radius: 35px;
}

.portfolio .item .before-after {
	position: relative;
	height: 360px;
}

.portfolio .img-wrapper {
	position: absolute;
	width: 100%;
	overflow: hidden;
	height: 360px;
}

.portfolio .before {
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 5;
	background-color: #BDAA70;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 14px;
	padding: 5px 15px;
	border-radius: 5px;
	border-bottom-left-radius: 15px;
	color: #fff;
}

.portfolio .after {
	position: absolute;
	left: 20px;
	top: 20px;
	z-index: 5;
	background-color: #BDAA70;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 14px;
	padding: 5px 15px;
	border-radius: 5px;
	border-top-right-radius: 15px;
	color: #fff;
}

.portfolio .img-wrapper:nth-child(2) img {
	clip-path: inset(0 50% 0 0);
}

.portfolio .img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
	border-top-right-radius: 35px;
}

.portfolio .line {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: .2rem;
	height: 100%;
	background-color: #FAFAFA;
}

.portfolio input {
	appearance: none;
	-webkit-appearance: none;
	background-color: transparent;
	position: absolute;
	width: calc(100% + 2.25rem);
	height: 100%;
	left: -1.125rem;
}

.portfolio input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	height: 2.25rem;
	width: 2.25rem;
	border: .25rem solid #fff;
	border-radius: 50%;
	box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.1);
	background-color: #fff;
	background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 height%3D%2224px%22 viewBox%3D%220 -960 960 960%22 width%3D%2224px%22 fill%3D%22%23000%22%3E%3Cpath d%3D%22M286.15-293.85 100-479.62l185.77-185.76 42.15 41.76-113 113.62h530.16l-113-113.62 42.15-41.76L860-479.62 674.23-293.85l-42.54-41.77 113.39-114H214.54l113.38 114-41.77 41.77Z%22/%3E%3C/svg%3E');
	background-size: cover;
	cursor: grab;
}

.portfolio input::-moz-range-thumb {
	height: 2.25rem;
	width: 2.25rem;
	border: .25rem solid #fff;
	border-radius: 50%;
	box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.1);
	background-color: #fff;
	background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 height%3D%2224px%22 viewBox%3D%220 -960 960 960%22 width%3D%2224px%22 fill%3D%22%23000%22%3E%3Cpath d%3D%22M286.15-293.85 100-479.62l185.77-185.76 42.15 41.76-113 113.62h530.16l-113-113.62 42.15-41.76L860-479.62 674.23-293.85l-42.54-41.77 113.39-114H214.54l113.38 114-41.77 41.77Z%22/%3E%3C/svg%3E');
	background-size: cover;
	cursor: grab;
}

.portfolio input:active::-webkit-slider-thumb {
	cursor: grabbing;
}

.portfolio input:active::-moz-slider-thumb {
	cursor: grabbing;
}

/* FAQ BOXES */

.faq-boxes {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}

.faq-boxes .item {
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, .1);
}

.faq-boxes:not(.all) .item:last-child {
	background-color: #BDAA70;
}

.faq-boxes .item .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #fff;
	border-radius: 100%;
	margin-bottom: 30px;
}

.faq-boxes .item .icon .nikofonts {
	width: 34px;
	height: 34px;
	background-color: #BDAA70;
	transition: .5s;
}

.faq-boxes .item:hover .icon .nikofonts {
	transform: rotate(20deg);
}

.faq-boxes .item h3 {
	color: #fff;
}

.faq-boxes .item p {
	color: #fff;
}

/* STATS */

.stats {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	background-color: #fff;
	position: relative;
	top: 150px;
	margin-top: -100px;
}

.stats .item {
	text-align: center;
	padding: 35px 30px;
	border-right: 1px solid #ddd;
}

.stats .item:last-child {
	border-right: 0;
}

.stats .item span {
	display: block;
}

.stats .item span.value {
	font-size: 70px;
    font-weight: 800;
}

.stats .item span.name {
	margin: 30px 0;
	font-size: 25px;
    font-weight: 500;
}

/* CONTACT BOXES */

.contact-boxes {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	background-color: #fff;
	position: relative;
	top: 150px;
	margin-top: -100px;
}

.contact-boxes .item {
	text-align: center;
	padding: 35px 30px;
	border-right: 1px solid #ddd;
}

.contact-boxes .item:last-child {
	border-right: 0;
}

.contact-boxes .item span {
	display: block;
}

.contact-boxes .item span.value {
	font-size: 30px;
    font-weight: 800;
}

.contact-boxes .item span.name {
	margin: 30px 0;
	font-size: 25px;
    font-weight: 500;
}

.contact-form {
	padding: 30px 50px;
	border-radius: 5px;
	background-color: #fff;
	border-top-left-radius: 35px;
	position: relative;
}

.contact-form:before {
	position: absolute;
	left: -6px;
	bottom: -6px;
	background-color: #BDAA70;
	content: '';
	width: 200px;
	height: 100px;
	border-radius: 8px;
	z-index: 1;
}

.contact-form:after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	content: '';
	background-color: #fff;
	z-index: 2;
}

.contact-form * {
	position: relative;
	z-index: 3;
}

.form-space label {
	display: block;
	margin-bottom: 5px;
	font-size: 16px;
    color: #BDAA70;
    font-weight: 500;
	text-transform: uppercase;
}

.form-space input,
.form-space textarea {
	display: block;
	width: 100%;
	border: 0;
	padding: 12px 15px;
	background-color: #f4f4f4;
	border-radius: 5px;
	border-top-right-radius: 35px;
}

/* PARTNERS */

.partners {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 30px;
	justify-content: center;
	text-align: center;
}

.partners img {
	width: 100%;
	object-fit: contain;
	height: 50px;
	text-align: center;
	filter: grayscale(100%);
	opacity: .6;
	transition: filter .6s ease, opacity 0.3s ease;
}

.partners img:hover {
	filter: grayscale(0);
	opacity: 1;
}

footer {
	background-color: #626E74;
	color: #efefef;
	padding: 50px 0 30px 0;
}

footer h5 {
	position: relative;
	font-weight: 600;
}

footer .footer-menu li {
	padding: 5px 0;
}

footer .box-item {
	position: relative;
	margin-bottom: 20px;
}

footer .box-item .inside {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 2;
	padding: 10px 20px;
	border-radius: 8px;
    background-color: #626E74;
    border: 1px solid rgba(255, 255, 255, .2);
}

footer .box-item:before {
    position: absolute;
    content: '';
    background-color: #BDAA70;
    left: -6px;
    top: -6px;
    height: 50%;
    width: 25%;
    z-index: 1;
    border-radius: 8px;
    transition: .5s;
}

footer .box-item:last-child {
	margin-bottom: 0px;
}

footer .box-item span {
	display: block;
	margin-bottom: 5px;
	color: #d0cdcd;
}

footer .box-item i {
	color: #fff;
	font-size: 22px;
	line-height: 22px;
	position: relative;
	top: -4px;
}

footer .box-item a {
	color: #fff;
	font-family: "Arboria", sans-serif;
	font-weight: 700;
	font-size: 20px;
}

footer .box-item p {
	margin-left: 20px;
}

footer ul.menu {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

footer ul li a {
	color: #fff;
}

footer ul li a:hover {
	color: #BDAA70;
}

footer p.copyrights {
	color: #999;
}

.references .owl-item {
	padding-bottom: 70px;
}

/* BUTTONS */

.btn {
	text-transform: uppercase;
	letter-spacing: 2px;
	border-radius: 0;
	padding: 15px 25px;
	font-weight: 600;
}

.btn-1 {
	color: #fff;
	background-color: #BDAA70;
	border-top-left-radius: 35px;
	border-bottom-right-radius: 35px;
	transition: .2s;
}

.btn-1:hover {
	border-radius: 35px;
	border-top-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.btn-3 {
	color: #BDAA70;
	background-color: transparent;
	padding: 0;
}

.nikofonts {
    width: 30px;
    height: 30px;
    background-color: #000;
}

.nikofonts[data-icon="call"] {
    mask: url(../img/nikofonts/call.svg) center/contain no-repeat;
    -webkit-mask: url(../img/nikofonts/call.svg) center/contain no-repeat;
}

.nikofonts[data-icon="email"] {
    mask: url(../img/nikofonts/email.svg) center/contain no-repeat;
    -webkit-mask: url(../img/nikofonts/email.svg) center/contain no-repeat;
}

.nikofonts[data-icon="help"] {
    mask: url(../img/nikofonts/help.svg) center/contain no-repeat;
    -webkit-mask: url(../img/nikofonts/help.svg) center/contain no-repeat;
}

.nikofonts[data-icon="paiting"] {
    mask: url(../img/nikofonts/paiting.svg) center/contain no-repeat;
    -webkit-mask: url(../img/nikofonts/paiting.svg) center/contain no-repeat;
}

.nikofonts[data-icon="choices"] {
    mask: url(../img/nikofonts/choices.svg) center/contain no-repeat;
    -webkit-mask: url(../img/nikofonts/choices.svg) center/contain no-repeat;
}

.nikofonts[data-icon="weather"] {
    mask: url(../img/nikofonts/weather.svg) center/contain no-repeat;
    -webkit-mask: url(../img/nikofonts/weather.svg) center/contain no-repeat;
}

.nikofonts[data-icon="time"] {
    mask: url(../img/nikofonts/time.svg) center/contain no-repeat;
    -webkit-mask: url(../img/nikofonts/time.svg) center/contain no-repeat;
}

.nikofonts[data-icon="wall"] {
    mask: url(../img/nikofonts/wall.svg) center/contain no-repeat;
    -webkit-mask: url(../img/nikofonts/wall.svg) center/contain no-repeat;
}

.nikofonts[data-icon="quote"] {
    mask: url(../img/nikofonts/quote.svg) center/contain no-repeat;
    -webkit-mask: url(../img/nikofonts/quote.svg) center/contain no-repeat;
}

.pos-rel { position: relative !important; }
.pt50 { padding-top: 50px !important; }
.pt100 { padding-top: 100px !important; }
.pt150 { padding-top: 150px !important; }
.pt200 { padding-top: 200px !important; }
.pt250 { padding-top: 250px !important; }
.pb50 { padding-bottom: 50px !important; }
.pb100 { padding-bottom: 100px !important; }
.pb150 { padding-bottom: 150px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb10 { margin-bottom: 10px !important; }
.mt10 { margin-top: 10px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.pr20 { padding-right: 20px !important; }
.mt50 { margin-top: 50px !important; }
.g-6 { --bs-gutter-x: 4rem; }
iframe { height: 750px; }

@media (min-width: 0px) and (max-width: 991px) {
	
	#nav-icon2 {
		display: block;
	}
	
	header {
		position: sticky;
		top: 0;
		left: 0;
		right: 0;
	}
	
	header .main-menu {
		display: none;
	}
	
	header .middle {
		padding: 10px 0;
	}
	
	header .middle .left-side,
	header .middle .right-side {
		display: none;
	}
	
	header .logo {
		width: 70px;
	}
	
	header .logo:after {
		display: none;
	}
	
	header .logo:before {
		display: none;
	}
	
	header .mobile-icons {
		position: absolute;
		left: 15px;
		top: 50%;
		transform: translateY(-50%);
		display: flex;
		align-items: center;
		gap: 10px;
	}
	
	header .mobile-icons a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		border: 1px solid #ddd;
		border-radius: 100%;
	}
	
	header .mobile-icons a .nikofonts {
		width: 22px;
		height: 22px;
		background-color: #BDAA70;
	}
	
	.hero {
		height: 90vh;
	}

	.hero .wrapper:after {
		bottom: 20px;
	}
	
	.hero .wrapper:before {
		bottom: 20px;
	}
	
	.hero .buttons {
		bottom: 0;
	}
	
	.hero .wrapper h1 {
		font-size: 50px;
	}
	
	.images-group {
		gap: 10px;
	}
	
	.images-group .item {
		height: 320px;
	}
	
	.boxes {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	
	.boxes .item {
		padding: 25px 15px;
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}
	
	.boxes .item .divider {
		margin: 20px auto;
	}
	
	.boxes .item .icon {
		margin: 0 auto;
	}
	
	.faq-boxes {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	
	.references {
		grid-template-columns: 1fr;
		gap: 110px;
	}
	
	.stats {
		grid-template-columns: 1fr;
	}
	
	.stats .item {
		border: 0;
		border-bottom: 1px solid #ddd;
	}
	
	.contact-boxes {
		grid-template-columns: 1fr;
	}
	
	.contact-boxes .item {
		border: 0;
		border-bottom: 1px solid #ddd;
	}
	
	.portfolio {
		flex-direction: column;
		gap: 80px;
	}
	
	.portfolio .item:nth-child(even) {
		margin: 0;
	}
	
	.portfolio .item {
		width: 100%;
	}
	
	.portfolio .item:first-child:after {
		display: none;
	}
	
	.title h2 {
		font-size: 33px;
	}
	
	h3 {
		font-size: 27px;
	}
	
	.stats .item span.value {
		font-size: 50px;
	}
	
	.btn {
		padding: 12px 20px;
	}
	
	footer p.copyrights {
		text-align: center;
	}
	
	footer ul.menu {
		justify-content: center;
	}
	
	p.desc {
		padding-right: 20px;
	}
	
	.m-mt20 { margin-top: 20px !important; }
	.m-mt30 { margin-top: 30px !important; }
	.m-mt50 { margin-top: 50px !important; }
	
}

@media (min-width: 1200px) {
	.container {
		max-width: 1240px;
	}
}