/*! BuildToolsCookbook v2.0.0 | (c) 2023 Piotr Burzynski | MIT License | http://github.com/cferdinandi/build-tools-boilerplate */
@charset "UTF-8";
/**
Fonts
 */
html {
	line-height: 1.15;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

.open-menu {
	overflow: hidden;
	height: 100%;
}

body {
	margin: 0;
	line-height: 1.15;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility !important;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	font: 400 1em/1em "roboto", sans-serif;
	background: #000;
}
body .rotate {
	display: none;
}
@media screen and (min-aspect-ratio: 13/9) and (max-width: 920px) and (min-width: 400px) and (max-height: 500px) {
	body > * {
		display: none !important;
	}
	body .rotate {
		display: flex !important;
		align-items: center;
		justify-content: center;
		height: 100vh;
		background: #222222;
	}
	body .rotate .box img {
		width: 200px;
		margin: 25px;
	}
	body .rotate .box p {
		font: 700 calc($fz / $defaultFontSize)rem/calc($lh/$defaultFontSize)rem "Roboto", sans-serif;
		text-align: center;
		color: #fff;
	}
}

a:hover {
	text-decoration: none !important;
}

article,
aside,
footer,
header,
nav,
section {
	display: block;
}

h1 {
	font-family: "Playfair Display", serif;
	font-size: 60px;
	line-height: 60px;
	font-weight: 700;
}
@media (max-width: 767px) {
	h1 {
		font-size: 50px;
		line-height: 50px;
	}
}
@media (max-width: 575px) {
	h1 {
		font-size: 40px;
		line-height: 40px;
	}
}
@media (max-width: 450px) {
	h1 {
		font-size: 30px;
		line-height: 30px;
	}
}
@media (max-width: 349px) {
	h1 {
		font-size: 27px;
		line-height: 27px;
	}
}

h2 {
	font-family: "Playfair Display", serif;
	font-size: 50px;
	line-height: 50px;
	font-weight: 700;
	margin-bottom: 0;
}
@media (max-width: 991px) {
	h2 {
		font-size: 45px;
		line-height: 45px;
	}
}
@media (max-width: 767px) {
	h2 {
		font-size: 35px;
		line-height: 35px;
	}
}
@media (max-width: 575px) {
	h2 {
		font-size: 28px;
		line-height: 28px;
	}
}

h3 {
	font-family: "Playfair Display", serif;
	font-size: 30px;
	line-height: 30px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 10px;
}
@media (max-width: 991px) {
	h3 {
		font-size: 26px;
		line-height: 26px;
	}
}
@media (max-width: 767px) {
	h3 {
		font-size: 22px;
		line-height: 22px;
	}
}
@media (max-width: 575px) {
	h3 {
		font-size: 20px;
		line-height: 20px;
	}
}

h4 {
	font-family: "Playfair Display", serif;
	font-size: 20px;
	line-height: 20px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 10px;
}

h4.boldPlay {
	font-family: "Playfair Display", serif;
	font-size: 20px;
	line-height: 20px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 10px;
}
@media (max-width: 991px) {
	h4.boldPlay {
		font-size: 16px;
		line-height: 16px;
	}
}
@media (max-width: 767px) {
	h4.boldPlay {
		font-size: 14px;
		line-height: 14px;
	}
}
@media (max-width: 575px) {
	h4.boldPlay {
		font-size: 12px;
		line-height: 12px;
	}
}

p {
	font-family: "Roboto", serif;
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	color: #a1a1a1;
	text-align: justify;
}
p:last-of-type {
	margin-bottom: 0;
}
p.p-title {
	color: #ffffff;
}
@media (max-width: 767px) {
	p {
		font-size: 14px;
		line-height: 16px;
	}
}

section {
	position: relative;
	overflow: hidden;
	padding: 80px 0;
}
@media (max-width: 1199px) {
	section {
		padding: 60px 0;
	}
}
@media (max-width: 991px) {
	section {
		padding: 50px 0;
	}
}
@media (max-width: 767px) {
	section {
		padding: 40px 0;
	}
}
@media (max-width: 575px) {
	section {
		padding: 30px 0;
	}
}

a {
	color: #d8a35b;
	transition: all 0.4s;
}

a:hover {
	color: #ffffff;
	transition: all 0.4s;
}

span {
	margin-right: 5px;
}
span.bold {
	color: #ffffff;
}
span.fontweight {
	font-weight: 500;
}

ul {
	list-style: none;
	/* Remove default bullets */
	padding-left: 10px;
	color: #a1a1a1;
}
ul:last-child {
	margin-bottom: 0;
}
@media (max-width: 767px) {
	ul {
		font-family: "Roboto", serif;
		font-size: 14px;
		line-height: 16px;
		font-weight: 400;
	}
}
ul li {
	margin-bottom: 10px;
}
ul li:last-child {
	margin-bottom: 0;
}
ul li::before {
	content: "•";
	/* Add content: \2022 is the CSS Code/unicode for a bullet */
	color: #d8a35b;
	/* Change the color */
	font-weight: 700;
	/* If you want it to be bold */
	display: inline-block;
	/* Needed to add space between the bullet and the text */
	width: 12px;
	/* Also needed for space (tweak if needed) */
	margin-left: 10px;
	/* Also needed for space (tweak if needed) */
}

ol {
	list-style: none;
	counter-reset: my-awesome-counter;
	padding-left: 20px;
	color: #a1a1a1;
	font-family: "Roboto", serif;
	font-size: 16px;
	line-height: 18px;
	font-weight: 400;
}
ol:last-child {
	margin-bottom: 0;
}
@media (max-width: 767px) {
	ol {
		font-size: 14px;
		line-height: 16px;
	}
}
ol li {
	counter-increment: my-awesome-counter;
	margin-bottom: 10px;
}
ol li:last-child {
	margin-bottom: 0;
}
ol li::before {
	content: counter(my-awesome-counter) ". ";
	color: #d8a35b;
}

.container-fluid {
	max-width: 1400px;
}
@media (min-width: 992px) {
	.container-fluid {
		padding: 0 35px;
	}
}
@media (max-width: 991px) {
	.container-fluid {
		padding: 0 25px;
	}
}
@media (max-width: 767px) {
	.container-fluid {
		padding: 0 20px;
	}
}
@media (max-width: 575px) {
	.container-fluid {
		padding: 0 15px;
	}
}

.title-section {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 10px;
	z-index: 2;
}
@media (max-width: 390px) {
	.title-section {
		flex-wrap: wrap;
	}
}
.title-section::after {
	position: absolute;
	bottom: -10px;
	left: 0;
	background-color: #d8a35b;
	height: 1px;
	width: 150px;
	content: "";
}
.title-section .icon-title {
	height: 45px;
	width: auto;
}
@media (max-width: 991px) {
	.title-section .icon-title {
		height: 40px;
	}
}
@media (max-width: 575px) {
	.title-section .icon-title {
		height: 35px;
	}
}
.title-section h2 {
	color: #ffffff;
	margin-left: 20px;
	padding-bottom: 5px;
}
@media (max-width: 767px) {
	.title-section h2 {
		margin-left: 15px;
	}
}
@media (max-width: 575px) {
	.title-section h2 {
		margin-left: 10px;
	}
}

.button-contact-row-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-button {
	margin-top: 30px;
}
@media (max-width: 991px) {
	.contact-button {
		margin-top: 25px;
	}
}

.yellow_button {
	border: none;
	text-decoration: none;
	cursor: pointer;
	padding: 15px 30px;
	background-color: #d8a35b;
	color: #ffffff;
	transition: all 0.4s;
	font-family: "Roboto", serif;
	font-size: 16px;
	line-height: 16px;
	font-weight: 700;
}
.yellow_button:focus {
	outline: none;
}
@media (max-width: 1199px) {
	.yellow_button {
		padding: 13px 26px;
		font-size: 16px;
		line-height: 16px;
	}
}
@media (max-width: 991px) {
	.yellow_button {
		padding: 10px 20px;
		font-size: 15px;
		line-height: 15px;
	}
}
@media (max-width: 575px) {
	.yellow_button {
		padding: 8px 16px;
		font-size: 14px;
		line-height: 14px;
	}
}

.yellow_button:hover {
	background-color: #c28940;
	transition: all 0.4s;
}

.yellow_link {
	border: 1px solid #d8a35b;
	border-radius: 5px;
	text-decoration: none;
	cursor: pointer;
	padding: 10px 20px;
	background-color: transparent;
	color: #d8a35b;
	transition: all 0.4s;
	font-family: "Playfair Display", serif;
	font-size: 14px;
	line-height: 14px;
	font-weight: 700;
}
.yellow_link:focus {
	outline: none;
}
.yellow_link:hover {
	color: #ffffff;
	transition: all 0.4s;
}
@media (max-width: 991px) {
	.yellow_link {
		padding: 10px 20px;
		padding-bottom: 13px;
		font-size: 14px;
		line-height: 14px;
	}
}
@media (max-width: 575px) {
	.yellow_link {
		padding: 8px 16px;
		padding-bottom: 11px;
		font-size: 13px;
		line-height: 13px;
	}
}

#header {
	position: relative;
	overflow: hidden;
	background-repeat: repeat;
	background-color: #131313;
	background-image: url("data:image/svg+xml,%3Csvg width='40' height='12' viewBox='0 0 40 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6.172L6.172 0h5.656L0 11.828V6.172zm40 5.656L28.172 0h5.656L40 6.172v5.656zM6.172 12l12-12h3.656l12 12h-5.656L20 3.828 11.828 12H6.172zm12 0L20 10.172 21.828 12h-3.656z' fill='%23000000' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
	z-index: 1;
	width: 100%;
	height: 100vh;
	padding: 0;
	max-height: 1080px;
}
@media (max-width: 1000px) and (min-height: 1000px) {
	#header {
		max-height: 900px;
	}
}
@media (max-width: 900px) {
	#header {
		max-height: 1100px;
	}
}
@media (max-width: 750px) {
	#header {
		max-height: 700px;
	}
}
@media (max-width: 600px) {
	#header {
		max-height: 650px;
	}
}
@media (max-width: 450px) {
	#header {
		max-height: 600px;
	}
}
#header::after {
	position: absolute;
	top: 0;
	right: 940px;
	background-color: #222222;
	width: 3000px;
	height: 3000px;
	transform: rotate(22deg) translateY(-30%);
	border-right: 5px solid #d8a35b;
	content: "";
	z-index: 2;
}
@media (max-width: 1800px) {
	#header::after {
		right: 850px;
	}
}
@media (max-width: 1700px) {
	#header::after {
		right: 800px;
	}
}
@media (max-width: 1600px) {
	#header::after {
		transform: rotate(18deg) translateY(-30%);
		right: 650px;
	}
}
@media (max-width: 1500px) {
	#header::after {
		transform: rotate(20deg) translateY(-30%);
		right: 675px;
	}
}
@media (max-width: 1300px) {
	#header::after {
		right: 655px;
	}
}
@media (max-width: 1250px) {
	#header::after {
		transform: rotate(22deg) translateY(-30%);
		right: 705px;
	}
}
@media (max-width: 700px) and (max-height: 950px) {
	#header::after {
		transform: rotate(22deg) translateY(-30%);
		right: 694px;
	}
}
@media (max-width: 700px) and (max-height: 850px) {
	#header::after {
		transform: rotate(22deg) translateY(-30%);
		right: 705px;
	}
}
@media (max-width: 575px) {
	#header::after {
		transform: rotate(22deg) translateY(-30%);
		right: 694px;
	}
}
@media (max-width: 550px) {
	#header::after {
		transform: rotate(22deg) translateY(-30%);
		right: 694px;
	}
}
@media (max-width: 500px) {
	#header::after {
		right: 684px;
	}
}
@media (max-width: 460px) {
	#header::after {
		transform: rotate(24deg) translateY(-30%);
		right: 734px;
	}
}
@media (max-width: 460px) and (max-height: 850px) {
	#header::after {
		transform: rotate(24deg) translateY(-30%);
		right: 760px;
	}
}
@media (max-width: 400px) and (max-height: 850px) {
	#header::after {
		transform: rotate(24deg) translateY(-30%);
		right: 734px;
	}
}
@media (max-width: 400px) and (max-height: 800px) {
	#header::after {
		transform: rotate(24deg) translateY(-30%);
		right: 760px;
	}
}
@media (max-width: 400px) and (max-height: 650px) {
	#header::after {
		transform: rotate(24deg) translateY(-30%);
		right: 775px;
	}
}
#header .logotype-bg {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(3%, -50%);
	height: 80%;
	min-height: 480px;
	max-height: 800px;
	z-index: 3;
}
@media (max-width: 1920px) {
	#header .logotype-bg {
		height: 70%;
	}
}
@media (max-width: 1599px) {
	#header .logotype-bg {
		height: 55%;
	}
}
@media (max-width: 1199px) {
	#header .logotype-bg {
		height: 45%;
		left: auto;
		right: 300px;
	}
}
@media (max-width: 991px) {
	#header .logotype-bg {
		height: 40%;
		display: none;
	}
}
#header .content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 4;
	width: 60%;
	height: 100%;
	padding-left: 30px;
}
@media (max-width: 1300px) {
	#header .content {
		width: 55%;
	}
}
@media (max-width: 900px) and (max-aspect-ratio: 9/10) {
	#header .content {
		width: 100%;
		height: 42%;
		padding-left: 0;
	}
}
@media (max-width: 450px) and (max-height: 700px) {
	#header .content {
		padding-top: 30px;
	}
}
#header .content .header-text {
	display: flex;
	flex-direction: column;
}
@media (max-width: 1199px) {
	#header .content .header-text {
		max-width: 500px;
	}
}
@media (max-width: 900px) and (max-aspect-ratio: 9/10) {
	#header .content .header-text {
		max-width: none;
		align-items: center;
		text-align: center;
	}
}
#header .content .header-text h1 {
	color: #d8a35b;
	margin-bottom: 15px;
	font-family: "Playfair Display", serif;
	font-size: 80px;
	line-height: 80px;
	font-weight: 700;
	margin-top: 0;
}
@media (max-width: 1919px) {
	#header .content .header-text h1 {
		font-size: 70px;
		line-height: 70px;
	}
}
@media (max-width: 1599px) {
	#header .content .header-text h1 {
		font-size: 60px;
		line-height: 60px;
	}
}
@media (max-width: 991px) {
	#header .content .header-text h1 {
		font-size: 55px;
		line-height: 55px;
	}
}
@media (max-width: 900px) {
	#header .content .header-text h1 {
		font-size: 50px;
		line-height: 50px;
	}
}
@media (max-width: 750px) {
	#header .content .header-text h1 {
		font-size: 40px;
		line-height: 40px;
	}
}
@media (max-width: 600px) {
	#header .content .header-text h1 {
		font-size: 35px;
		line-height: 35px;
	}
}
@media (max-width: 450px) {
	#header .content .header-text h1 {
		font-size: 29px;
		line-height: 29px;
		margin-bottom: 10px;
	}
}
@media (max-width: 360px) {
	#header .content .header-text h1 {
		font-size: 25px;
		line-height: 25px;
	}
}
@media (max-width: 300px) {
	#header .content .header-text h1 {
		font-size: 22px;
		line-height: 22px;
	}
}
#header .content .header-text .sub-title {
	color: #ffffff;
	margin-bottom: 35px;
	font-family: "Roboto", serif;
	font-size: 30px;
	line-height: 30px;
	font-weight: 400;
}
#header .content .header-text .sub-title span {
	white-space: nowrap;
}
@media (max-width: 750px) {
	#header .content .header-text .sub-title {
		font-size: 25px;
		line-height: 25px;
		margin-bottom: 20px;
	}
}
@media (max-width: 600px) {
	#header .content .header-text .sub-title {
		font-size: 20px;
		line-height: 20px;
	}
}
@media (max-width: 450px) {
	#header .content .header-text .sub-title {
		font-size: 15px;
		line-height: 15px;
	}
}
#header .photoMK {
	position: absolute;
	right: 15%;
	bottom: 0;
	height: 90%;
	z-index: 3;
}
@media (max-width: 2200px) {
	#header .photoMK {
		right: 10%;
	}
}
@media (max-width: 1919px) {
	#header .photoMK {
		right: 6%;
	}
}
@media (max-width: 1599px) {
	#header .photoMK {
		right: 0%;
	}
}
@media (max-width: 1400px) {
	#header .photoMK {
		right: -6%;
	}
}
@media (max-width: 991px) {
	#header .photoMK {
		right: -10%;
	}
}
@media (max-width: 1000px) and (min-height: 1000px) {
	#header .photoMK {
		right: -10%;
	}
}
@media (max-width: 900px) and (max-aspect-ratio: 9/10) {
	#header .photoMK {
		right: 50%;
		transform: translateX(50%);
		height: 65%;
	}
}
@media (max-width: 900px) and (min-aspect-ratio: 9/7) {
	#header .photoMK {
		right: 0%;
	}
}

nav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: rgba(34, 34, 34, 0);
	display: flex;
	color: #3d454f;
	align-items: center;
	z-index: 100;
	text-align: center;
}
@media (max-width: 1199px) {
	nav {
		background-image: -moz-linear-gradient(-90deg, #222222 50%, rgba(34, 34, 34, 0) 100%);
		background-image: -webkit-linear-gradient(-90deg, #222222 50%, rgba(34, 34, 34, 0) 100%);
		background-image: -ms-linear-gradient(-90deg, #222222 50%, rgba(34, 34, 34, 0) 100%);
	}
}
@media (max-width: 991px) {
	nav {
		font-family: "Roboto", serif;
		font-size: 14px;
		line-height: 14px;
		font-weight: 500;
		height: 60px;
	}
}
@media (max-width: 575px) {
	nav {
		background: #222222;
	}
}
nav .container-fluid {
	max-width: 1240px;
}
@media (max-width: 1199px) {
	nav .container-fluid {
		padding: 0 20px;
	}
}
@media (max-width: 767px) {
	nav .container-fluid {
		padding: 0 20px;
	}
}
nav .menu-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
nav .menu-content .logo {
	height: 36px;
	width: auto;
}
@media (max-width: 991px) {
	nav .menu-content .logo {
		height: 32px;
	}
}
@media (max-width: 400px) {
	nav .menu-content .logo {
		height: 30px;
	}
}
@media (max-width: 360px) {
	nav .menu-content .logo {
		height: 32px;
	}
}
@media (max-width: 890px) and (min-width: 768px) {
	nav .menu-content .logo-desktop {
		display: none;
	}
}
@media (max-width: 360px) {
	nav .menu-content .logo-desktop {
		display: none;
	}
}
nav .menu-content .logo-mobile {
	display: none;
}
@media (max-width: 890px) and (min-width: 768px) {
	nav .menu-content .logo-mobile {
		display: flex;
	}
	nav .menu-content .logo-mobile .logo {
		height: 36px;
	}
}
@media (max-width: 360px) {
	nav .menu-content .logo-mobile {
		display: inherit;
	}
}
nav .menu-items {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
nav .menu-items a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	margin-right: 30px;
}
@media (max-width: 1100px) {
	nav .menu-items a {
		margin-right: 25px;
	}
}
@media (max-width: 991px) {
	nav .menu-items a {
		margin-right: 20px;
	}
}
@media (max-width: 767px) {
	nav .menu-items a {
		margin-right: 0;
	}
}
nav .menu-items a:hover {
	color: #d8a35b;
}
nav .menu-items a.hidden-md-down.last {
	margin-right: 0;
}
nav .menu-items .language-items {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
nav .menu-items .language-items a {
	text-decoration: none;
	margin-right: 0;
}
nav .menu-items .language-items a:not(:last-child) {
	margin-right: 10px;
}
nav .menu-items .language-items img {
	height: 12px;
	width: auto;
}
@media (max-width: 767px) {
	nav .menu-items .language-items img {
		height: 14px;
	}
}
@media (max-width: 400px) {
	nav .menu-items .language-items img {
		height: 12px;
	}
}
nav .menu-items .language-items .separator {
	height: 30px;
	width: 1px;
	background-color: rgba(255, 255, 255, 0.2);
	margin: 0 20px;
}
@media (max-width: 767px) {
	nav .menu-items .language-items .separator {
		order: 2;
		argin: 0 20px;
	}
}
@media (max-width: 400px) {
	nav .menu-items .language-items .separator {
		margin: 0 15px;
	}
}
@media (max-width: 767px) {
	nav .menu-items .language-items .order2 {
		order: 1;
	}
}
nav .menu-items #toggle-menu-mobile {
	width: 24px;
	height: 18px;
	cursor: pointer;
}
nav .menu-items #toggle-menu-mobile div {
	width: 24px;
	height: 18px;
	position: relative;
}
nav .menu-items #toggle-menu-mobile div span {
	display: block;
	width: 25px;
	height: 2px;
	background-color: #d8a35b;
	position: absolute;
	transition: transform 0.5s ease-in-out, top 0.25s ease-in-out 0.5s, opacity 0.25s ease-in-out 0.5s;
	transform-origin: center;
}
nav .menu-items #toggle-menu-mobile div span.top {
	top: 0;
}
nav .menu-items #toggle-menu-mobile div span.middle {
	top: 8px;
}
nav .menu-items #toggle-menu-mobile div span.bottom {
	top: 16px;
}
nav .menu-items #toggle-menu-mobile.menu-is-active span {
	transition: transform 0.5s ease-in-out 0.3s, top 0.25s ease-in-out, opacity 0.25s ease-in-out;
}
nav .menu-items #toggle-menu-mobile.menu-is-active span.top, nav .menu-items #toggle-menu-mobile.menu-is-active span.middle {
	top: 6px;
	transform: rotate(135deg);
}
nav .menu-items #toggle-menu-mobile.menu-is-active span.middle {
	opacity: 0;
}
nav .menu-items #toggle-menu-mobile.menu-is-active span.bottom {
	top: 6px;
	transform: rotate(225deg);
}

.menu-mobile {
	display: none;
}
.menu-mobile.open {
	display: inherit;
	position: absolute;
	top: 60px;
	width: 100vw;
	height: calc(100vh - 60px);
	background-color: rgba(20, 20, 24, 0.95);
	z-index: 999;
}
@media (max-width: 767px) {
	.menu-mobile.open {
		height: calc(var(--vh, 1vh) * 100) !important;
	}
}
.menu-mobile .content {
	height: calc(100% - 60px);
	width: 100%;
	display: flex;
	justify-content: center;
}
.menu-mobile .content .menu-items {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	padding: 10vh 0;
}
@media (max-height: 450px) {
	.menu-mobile .content .menu-items {
		padding: 8vh 0;
	}
}
.menu-mobile .content .menu-items a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-family: "Roboto", serif;
	font-size: 24px;
	line-height: 24px;
	font-weight: 500;
	transition: color 0.3s;
	margin-right: 0;
}
.menu-mobile .content .menu-items a:hover {
	color: #d8a35b;
	transition: color 0.3s;
}

@media (min-width: 768px) {
	.hidden-md-up {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.hidden-md-down {
		display: none !important;
	}
}

.nav-fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background: rgba(34, 34, 34, 0.9);
	display: flex;
	color: #3d454f;
	align-items: center;
	z-index: 100;
	transition: background 0.3s;
}
.nav-fixed .container-fluid {
	max-width: 1400px;
}
.nav-fixed.open {
	background: rgba(0, 0, 0, 0.9);
	transition: background 0.3s;
}
.nav-fixed .logo {
	display: flex;
	height: 36px;
}
@media (max-width: 991px) {
	.nav-fixed .logo {
		height: 32px;
	}
}

#about {
	background-color: #141418;
}
#about .about-container {
	display: flex;
	align-items: stretch;
}
@media (max-width: 767px) {
	#about .about-container {
		flex-direction: column;
	}
}
#about .text-about {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 25px;
	padding-right: 25px;
}
@media (max-width: 767px) {
	#about .text-about {
		order: 2;
		padding-right: 0;
	}
}
#about .text-about .parapraph-title {
	font-family: "Roboto", serif;
	font-size: 20px;
	line-height: 24px;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 15px;
	width: 100%;
}
@media (max-width: 767px) {
	#about .text-about .parapraph-title {
		font-size: 16px;
		line-height: 20px;
	}
}
#about .photo-container {
	position: relative;
	background-color: #222222;
	width: 290px;
	margin-left: 80px;
}
@media (max-width: 1500px) {
	#about .photo-container {
		margin-left: 60px;
	}
}
@media (max-width: 1199px) {
	#about .photo-container {
		margin-left: 40px;
	}
}
@media (max-width: 991px) {
	#about .photo-container {
		width: 200px;
		margin-left: 20px;
	}
}
@media (max-width: 767px) {
	#about .photo-container {
		margin-top: 35px;
		margin-left: 0;
		width: 100%;
		height: 150px;
		order: 1;
	}
}
#about .photo-container::after {
	content: "";
	position: absolute;
	top: -75px;
	left: -45px;
	width: 119px;
	height: 119px;
	background-image: url("/img/kwadrat_kropki.svg");
	background-repeat: no-repeat;
}
@media (max-width: 991px) {
	#about .photo-container::after {
		top: -50px;
		left: -25px;
	}
}
@media (max-width: 767px) {
	#about .photo-container::after {
		display: none;
	}
}
#about .photo-container::before {
	content: "";
	position: absolute;
	bottom: -25px;
	right: -45px;
	width: 119px;
	height: 119px;
	background-image: url("/img/kwadrat_kropki.svg");
	background-repeat: no-repeat;
}
@media (max-width: 991px) {
	#about .photo-container::before {
		bottom: -25px;
		right: -5px;
	}
}
@media (max-width: 767px) {
	#about .photo-container::before {
		display: none;
	}
}
#about .photo-container .photo {
	position: relative;
	z-index: 2;
	width: 290px;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("/img/abogado-polonia-martyna-kawalec-about-photo-tiny.jpeg");
	box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.4);
	transform: translate(-8px, -30px);
}
@media (max-width: 991px) {
	#about .photo-container .photo {
		width: 200px;
		transform: translate(-8px, -15px);
	}
}
@media (max-width: 767px) {
	#about .photo-container .photo {
		width: 100%;
		height: 150px;
		transform: translate(0, -10px);
	}
}
#about .photo-container .photo::after {
	content: "";
	position: absolute;
	right: -15px;
	top: 15px;
	background-color: transparent;
	border: 1px solid #d8a35b;
	height: 100%;
	width: 100%;
	z-index: 3;
}
@media (max-width: 767px) {
	#about .photo-container .photo::after {
		right: -10px;
		top: 10px;
	}
}

#services {
	background-image: -moz-linear-gradient(90deg, #222222 50%, #141418 100%);
	background-image: -webkit-linear-gradient(90deg, #222222 50%, #141418 100%);
	background-image: -ms-linear-gradient(90deg, #222222 50%, #141418 100%);
}
#services .accordion-services {
	margin-top: 50px;
	width: 100%;
}
@media (max-width: 767px) {
	#services .accordion-services {
		margin-top: 30px;
	}
}
#services .accordion-services .accordion-services-item:last-child .accordion-services-header {
	border: 1px solid #434344;
}
#services .accordion-services .accordion-services-item .accordion-services-header {
	position: relative;
	display: flex;
	align-items: center;
	height: 90px;
	width: 100%;
	border: 1px solid #434344;
	border-bottom: 1px solid transparent;
	background-color: #141418;
	cursor: pointer;
	transition: all 0.4s;
	padding-right: 40px;
}
#services .accordion-services .accordion-services-item .accordion-services-header[aria-expanded=true] {
	border: 1px solid #434344;
}
#services .accordion-services .accordion-services-item .accordion-services-header[aria-expanded=true]:before {
	transform: rotate(180deg);
}
@media (max-width: 991px) {
	#services .accordion-services .accordion-services-item .accordion-services-header {
		height: 80px;
	}
}
@media (max-width: 767px) {
	#services .accordion-services .accordion-services-item .accordion-services-header {
		height: 70px;
	}
}
@media (max-width: 575px) {
	#services .accordion-services .accordion-services-item .accordion-services-header {
		height: 60px;
	}
}
#services .accordion-services .accordion-services-item .accordion-services-header:hover {
	border: 1px solid #d8a35b;
	transition: all 0.4s;
}
#services .accordion-services .accordion-services-item .accordion-services-header:active {
	border: 1px solid #d8a35b;
}
#services .accordion-services .accordion-services-item .accordion-services-header:before {
	content: "";
	position: absolute;
	right: 30px;
	top: calc(50% - 5px);
	background-image: url("/img/icon_arrow_down.svg");
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 23px;
	height: 14px;
	transform: rotate(0deg);
	transition: all 0.5s;
}
@media (max-width: 767px) {
	#services .accordion-services .accordion-services-item .accordion-services-header:before {
		right: 22px;
		width: 22px;
		height: 13px;
	}
}
@media (max-width: 575px) {
	#services .accordion-services .accordion-services-item .accordion-services-header:before {
		right: 15px;
		width: 18px;
		height: 10px;
	}
}
#services .accordion-services .accordion-services-item .accordion-services-header .panel-header-background-photo {
	position: absolute;
	top: 1px;
	left: 1px;
	width: 225px;
	height: calc(100% - 1px);
	z-index: 1;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-image: url("/img/rozwod.jpg");
	filter: grayscale(100%);
	overflow: hidden;
}
#services .accordion-services .accordion-services-item .accordion-services-header .panel-header-background-photo::before {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: #141418;
	opacity: 0.9;
	z-index: 2;
	content: "";
}
#services .accordion-services .accordion-services-item .accordion-services-header .panel-header-background-photo::after {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 3;
	background-image: -moz-linear-gradient(0deg, rgba(20, 20, 24, 0) 0%, #141418 100%);
	background-image: -webkit-linear-gradient(0deg, rgba(20, 20, 24, 0) 0%, #141418 100%);
	background-image: -ms-linear-gradient(0deg, rgba(20, 20, 24, 0) 0%, #141418 100%);
	content: "";
}
#services .accordion-services .accordion-services-item .accordion-services-header .panel-header-background-photo.photo-rozwod {
	background-image: url("/img/rozwod.jpg");
}
#services .accordion-services .accordion-services-item .accordion-services-header .panel-header-background-photo.photo-podzial {
	background-image: url("/img/podzial.jpg");
}
#services .accordion-services .accordion-services-item .accordion-services-header .panel-header-background-photo.photo-alimenty {
	background-image: url("/img/alimenty.jpg");
}
#services .accordion-services .accordion-services-item .accordion-services-header .panel-header-background-photo.photo-kontakty {
	background-image: url("/img/kontakty.jpg");
}
#services .accordion-services .accordion-services-item .accordion-services-header .panel-header-background-photo.photo-przemoc {
	background-image: url("/img/przemoc.jpg");
	opacity: 0.9;
}
#services .accordion-services .accordion-services-item .accordion-services-header .panel-header-background-photo.photo-rozdzielnosc {
	background-image: url("/img/rozdzielnosc.jpg");
	opacity: 0.5;
}
#services .accordion-services .accordion-services-item .accordion-services-header .panel-header-background-photo.photo-dziecko {
	background-image: url("/img/dziecko.jpg");
}
#services .accordion-services .accordion-services-item .accordion-services-header .panel-header-background-photo.photo-niealimentacyjne {
	background-image: url("/img/niealimentacyjne.jpg");
}
#services .accordion-services .accordion-services-item .accordion-services-header .panel-header-background-photo.photo-brak-kontaktow {
	background-image: url("/img/brak-kontaktow.jpg");
}
#services .accordion-services .accordion-services-item .accordion-services-header .panel-header-background-photo.photo-inne-sprawy {
	background-image: url("/img/inne-sprawy.jpg");
}
#services .accordion-services .accordion-services-item .accordion-services-header .panel-header-background-photo.photo-pobyt {
	background-image: url("/img/pobyt.jpg");
}
#services .accordion-services .accordion-services-item .accordion-services-header .panel-header-background-photo.photo-uprowadzenie {
	background-image: url("/img/uprowadzenie.jpg");
}
#services .accordion-services .accordion-services-item .accordion-services-header .icon-container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 90px;
	z-index: 2;
}
@media (max-width: 991px) {
	#services .accordion-services .accordion-services-item .accordion-services-header .icon-container {
		min-width: 80px;
	}
}
@media (max-width: 767px) {
	#services .accordion-services .accordion-services-item .accordion-services-header .icon-container {
		min-width: 70px;
	}
}
@media (max-width: 575px) {
	#services .accordion-services .accordion-services-item .accordion-services-header .icon-container {
		min-width: 60px;
	}
}
#services .accordion-services .accordion-services-item .accordion-services-header .icon-container .panel-header-icon {
	height: 45px;
	width: auto;
}
@media (max-width: 991px) {
	#services .accordion-services .accordion-services-item .accordion-services-header .icon-container .panel-header-icon {
		height: 40px;
	}
}
@media (max-width: 767px) {
	#services .accordion-services .accordion-services-item .accordion-services-header .icon-container .panel-header-icon {
		height: 35px;
	}
}
#services .accordion-services .accordion-services-item .accordion-services-header .icon-container .panel-header-icon.podzial {
	height: 52px;
}
@media (max-width: 767px) {
	#services .accordion-services .accordion-services-item .accordion-services-header .icon-container .panel-header-icon.podzial {
		height: 43px;
	}
}
#services .accordion-services .accordion-services-item .accordion-services-header .panel-header-title {
	font-family: "Roboto", serif;
	font-size: 20px;
	line-height: 20px;
	font-weight: 500;
	color: #ffffff;
	z-index: 2;
}
@media (max-width: 767px) {
	#services .accordion-services .accordion-services-item .accordion-services-header .panel-header-title {
		font-size: 18px;
		line-height: 18px;
	}
}
@media (max-width: 575px) {
	#services .accordion-services .accordion-services-item .accordion-services-header .panel-header-title {
		font-size: 16px;
		line-height: 16px;
	}
}
@media (max-width: 340px) {
	#services .accordion-services .accordion-services-item .accordion-services-header .panel-header-title {
		font-size: 15px;
		line-height: 15px;
	}
}
#services .accordion-services .accordion-services-item .accordion-services-body {
	display: flex;
	align-items: flex-start;
	border-left: 1px solid #434344;
	border-right: 1px solid #434344;
	background-color: #141418;
	padding: 30px;
}
#services .accordion-services .accordion-services-item .accordion-services-body:last-child {
	border-bottom: 1px solid #434344;
}
@media (max-width: 991px) {
	#services .accordion-services .accordion-services-item .accordion-services-body {
		padding: 25px;
	}
}
@media (max-width: 767px) {
	#services .accordion-services .accordion-services-item .accordion-services-body {
		flex-direction: column;
		align-items: center;
		padding: 20px;
	}
}
#services .accordion-services .accordion-services-item .accordion-services-body .photo-container {
	position: relative;
}
#services .accordion-services .accordion-services-item .accordion-services-body .photo-container .photo {
	height: 200px;
	width: auto;
}
@media (max-width: 991px) {
	#services .accordion-services .accordion-services-item .accordion-services-body .photo-container .photo {
		height: 150px;
	}
}
@media (max-width: 767px) {
	#services .accordion-services .accordion-services-item .accordion-services-body .photo-container .photo {
		height: 200px;
	}
}
@media (max-width: 575px) {
	#services .accordion-services .accordion-services-item .accordion-services-body .photo-container .photo {
		height: 150px;
	}
}
#services .accordion-services .accordion-services-item .accordion-services-body .photo-container::after {
	content: "";
	position: absolute;
	right: -10px;
	top: 10px;
	background-color: transparent;
	border: 1px solid #d8a35b;
	height: 100%;
	width: 100%;
	z-index: 3;
}
@media (max-width: 767px) {
	#services .accordion-services .accordion-services-item .accordion-services-body .photo-container::after {
		right: -10px;
		top: 10px;
	}
}
#services .accordion-services .accordion-services-item .accordion-services-body .text-container {
	display: flex;
	flex-direction: column;
	margin-left: 50px;
	padding: 10px 10px 10px 0;
}
@media (max-width: 767px) {
	#services .accordion-services .accordion-services-item .accordion-services-body .text-container {
		margin-left: 0;
		margin-top: 30px;
		padding: 0;
	}
}
@media (max-width: 575px) {
	#services .accordion-services .accordion-services-item .accordion-services-body .text-container {
		margin-top: w0px;
	}
}
#services .accordion-services .accordion-services-item .accordion-services-body .text-container .title {
	font-family: "Roboto", serif;
	font-size: 20px;
	line-height: 24px;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 15px;
	width: 100%;
}
@media (max-width: 767px) {
	#services .accordion-services .accordion-services-item .accordion-services-body .text-container .title {
		font-size: 16px;
		line-height: 20px;
	}
}
@media (max-width: 575px) {
	#services .accordion-services .accordion-services-item .accordion-services-body .text-container .title {
		margin-bottom: 10px;
	}
}

#steps {
	position: relative;
	background-color: #222222;
}
#steps.es .step-1 {
	margin-left: 5%;
	width: 75%;
	padding-right: 15px;
}
@media (max-width: 1199px) {
	#steps.es .step-1 {
		width: 80%;
	}
}
@media (max-width: 991px) {
	#steps.es .step-1 {
		margin-left: 2%;
		width: 85%;
	}
}
@media (max-width: 767px) {
	#steps.es .step-1 {
		width: 98%;
		margin-left: 2%;
	}
}
@media (max-width: 575px) {
	#steps.es .step-1 {
		margin-top: 35px;
		margin-left: 10px;
		width: 100%;
	}
}
#steps.es .step-2 {
	margin-left: 10%;
	padding-right: 15px;
	width: 75%;
}
@media (max-width: 1199px) {
	#steps.es .step-2 {
		margin-left: 10%;
		width: 80%;
	}
}
@media (max-width: 991px) {
	#steps.es .step-2 {
		width: 85%;
		margin-left: 6%;
	}
}
@media (max-width: 767px) {
	#steps.es .step-2 {
		width: 95%;
		margin-left: 5%;
	}
}
@media (max-width: 575px) {
	#steps.es .step-2 {
		margin-left: 10px;
		width: 100%;
	}
}
#steps.es .step-3 {
	margin-left: 18%;
	width: 75%;
	padding-right: 15px;
}
@media (max-width: 1199px) {
	#steps.es .step-3 {
		margin-left: 15%;
		width: 80%;
	}
}
@media (max-width: 991px) {
	#steps.es .step-3 {
		margin-left: 11%;
		width: 85%;
	}
}
@media (max-width: 767px) {
	#steps.es .step-3 {
		width: 92%;
		margin-left: 8%;
	}
}
@media (max-width: 575px) {
	#steps.es .step-3 {
		margin-left: 10px;
		width: 100%;
	}
}
#steps.es .step-4 {
	margin-left: 25%;
	width: 75%;
	padding-right: 15px;
}
@media (max-width: 1199px) {
	#steps.es .step-4 {
		margin-left: 20%;
		width: 80%;
	}
}
@media (max-width: 991px) {
	#steps.es .step-4 {
		margin-left: 15%;
		width: 85%;
	}
}
@media (max-width: 767px) {
	#steps.es .step-4 {
		width: 89%;
		margin-left: 11%;
	}
}
@media (max-width: 575px) {
	#steps.es .step-4 {
		margin-left: 10px;
		width: 100%;
	}
}
#steps .photo-bg {
	position: absolute;
	right: 5%;
	bottom: 0;
	opacity: 0.8;
	z-index: 0;
}
@media (max-width: 1450px) {
	#steps .photo-bg {
		right: 0;
	}
}
@media (max-width: 1199px) {
	#steps .photo-bg {
		right: -150px;
		opacity: 0.7;
	}
}
@media (max-width: 991px) {
	#steps .photo-bg {
		opacity: 0.5;
	}
}
@media (max-width: 767px) {
	#steps .photo-bg {
		right: -100px;
		opacity: 0.4;
	}
}
@media (max-width: 575px) {
	#steps .photo-bg {
		right: -120px;
	}
}
#steps .photo-bg img {
	height: 836px;
	width: auto;
}
@media (max-width: 767px) {
	#steps .photo-bg img {
		height: 500px;
	}
}
#steps .photo-bg::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	background: -moz-linear-gradient(bottom, #222222 0%, rgba(34, 34, 34, 0) 100%);
	background: -webkit-linear-gradient(bottom, #222222 0%, rgba(34, 34, 34, 0) 100%);
	background: linear-gradient(to top, #222222 0%, rgba(34, 34, 34, 0) 100%);
	width: 815px;
	height: 400px;
}
@media (max-width: 767px) {
	#steps .photo-bg::after {
		width: 100%;
	}
}
@media (max-width: 575px) {
	#steps .photo-bg::after {
		right: -100px;
	}
}
@media (max-width: 450px) {
	#steps .photo-bg::after {
		right: -200px;
	}
}
#steps .step-container {
	position: relative;
	display: flex;
	align-items: stretch;
	margin-top: 80px;
	z-index: 2;
}
@media (max-width: 991px) {
	#steps .step-container {
		margin-top: 70px;
	}
}
@media (max-width: 767px) {
	#steps .step-container {
		margin-top: 40px;
	}
}
@media (max-width: 500px) {
	#steps .step-container {
		margin-top: 20px;
	}
}
@media (max-width: 400px) {
	#steps .step-container {
		margin-left: 3px !important;
		padding-right: 3px !important;
	}
}
#steps .step-container .photo-container {
	position: relative;
}
#steps .step-container .photo-container .photo {
	height: 160px;
	width: 160px;
}
@media (max-width: 767px) {
	#steps .step-container .photo-container .photo {
		height: 140px;
		width: 140px;
	}
}
@media (max-width: 500px) {
	#steps .step-container .photo-container .photo {
		height: 90px;
		width: 90px;
	}
}
@media (max-width: 400px) {
	#steps .step-container .photo-container .photo {
		height: 70px;
		width: 70px;
	}
}
@media (max-width: 370px) {
	#steps .step-container .photo-container .photo {
		height: 60px;
		width: 60px;
	}
}
#steps .step-container .photo-container::after {
	content: "";
	position: absolute;
	left: -10px;
	top: -10px;
	background-color: transparent;
	border: 1px solid #d8a35b;
	height: 160px;
	width: 160px;
	z-index: 3;
}
@media (max-width: 767px) {
	#steps .step-container .photo-container::after {
		height: 140px;
		width: 140px;
		left: auto;
		right: -5px;
		top: 5px;
	}
}
@media (max-width: 500px) {
	#steps .step-container .photo-container::after {
		height: 90px;
		width: 90px;
	}
}
@media (max-width: 400px) {
	#steps .step-container .photo-container::after {
		height: 70px;
		width: 70px;
	}
}
@media (max-width: 370px) {
	#steps .step-container .photo-container::after {
		height: 60px;
		width: 60px;
	}
}
#steps .step-container .number {
	font-family: "Playfair Display", serif;
	font-size: 160px;
	line-height: 160px;
	font-weight: 900;
	color: #d8a35b;
	position: absolute;
	left: -40px;
	top: 40px;
	z-index: 3;
	text-shadow: 0px 5px 40px black;
}
@media (max-width: 991px) {
	#steps .step-container .number {
		font-size: 120px;
		line-height: 120px;
		left: -35px;
		top: 80px;
	}
}
@media (max-width: 767px) {
	#steps .step-container .number {
		font-size: 80px;
		line-height: 80px;
		left: -22px;
	}
}
@media (max-width: 500px) {
	#steps .step-container .number {
		top: 40px;
	}
}
@media (max-width: 400px) {
	#steps .step-container .number {
		font-size: 60px;
		line-height: 60px;
		left: -18px;
	}
}
@media (max-width: 370px) {
	#steps .step-container .number {
		font-size: 60px;
		line-height: 60px;
		left: -20px;
		top: 30px;
	}
}
#steps .step-container .step-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	margin-left: 50px;
	z-index: 1;
}
@media (max-width: 991px) {
	#steps .step-container .step-item {
		margin-left: 40px;
	}
}
@media (max-width: 767px) {
	#steps .step-container .step-item {
		margin-left: 25px;
	}
}
@media (max-width: 370px) {
	#steps .step-container .step-item {
		margin-left: 20px;
	}
}
#steps .step-container .step-item h3 {
	margin-bottom: 15px;
}
@media (max-width: 991px) {
	#steps .step-container .step-item h3 {
		margin-bottom: 10px;
	}
}
@media (max-width: 400px) {
	#steps .step-container .step-item p {
		text-align: start;
	}
}
#steps .step-1 {
	margin-left: 5%;
	width: 75%;
	padding-right: 15px;
}
@media (max-width: 1199px) {
	#steps .step-1 {
		width: 80%;
	}
}
@media (max-width: 991px) {
	#steps .step-1 {
		margin-left: 5%;
		width: 85%;
	}
}
@media (max-width: 767px) {
	#steps .step-1 {
		width: 98%;
		margin-left: 2%;
	}
}
@media (max-width: 575px) {
	#steps .step-1 {
		margin-top: 35px;
		margin-left: 10px;
		width: 100%;
	}
}
#steps .step-2 {
	margin-left: 15%;
	padding-right: 15px;
	width: 75%;
}
@media (max-width: 1199px) {
	#steps .step-2 {
		margin-left: 10%;
		width: 80%;
	}
}
@media (max-width: 991px) {
	#steps .step-2 {
		width: 85%;
	}
}
@media (max-width: 767px) {
	#steps .step-2 {
		width: 93%;
		margin-left: 7%;
	}
}
@media (max-width: 575px) {
	#steps .step-2 {
		margin-left: 10px;
		width: 100%;
	}
}
#steps .step-3 {
	margin-left: 25%;
	width: 75%;
	padding-right: 15px;
}
@media (max-width: 1199px) {
	#steps .step-3 {
		margin-left: 15%;
		width: 80%;
	}
}
@media (max-width: 991px) {
	#steps .step-3 {
		width: 85%;
	}
}
@media (max-width: 767px) {
	#steps .step-3 {
		width: 88%;
		margin-left: 12%;
	}
}
@media (max-width: 575px) {
	#steps .step-3 {
		margin-left: 10px;
		width: 100%;
	}
}
#steps .contact-button button {
	z-index: 99;
}

#salary {
	background-color: #222222;
	padding-top: 120px;
}
@media (max-width: 1599px) {
	#salary {
		padding-top: 100px;
	}
}
@media (max-width: 1199px) {
	#salary {
		padding-top: 80px;
	}
}
@media (max-width: 767px) {
	#salary {
		padding-top: 40px;
	}
}
#salary .salary-container {
	display: grid;
	grid-template-columns: 50% 50%;
	width: 100%;
}
@media (max-width: 991px) {
	#salary .salary-container {
		grid-template-columns: 60% 40%;
	}
}
@media (max-width: 767px) {
	#salary .salary-container {
		display: flex;
		flex-direction: column;
	}
}
#salary .salary-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
#salary .salary-content p {
	margin-top: 30px;
	margin-right: 50px;
	font-family: "Roboto", serif;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
}
@media (max-width: 991px) {
	#salary .salary-content p {
		margin-right: 20px;
	}
}
@media (max-width: 767px) {
	#salary .salary-content p {
		margin-top: 20px;
		margin-right: 0px;
		font-size: 14px;
		line-height: 18px;
	}
}
#salary .salary-content a {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}
@media (max-width: 767px) {
	#salary .salary-content a {
		align-self: center;
	}
}
#salary .photo-container {
	position: relative;
	background-color: #222222;
	margin-left: 80px;
}
@media (max-width: 1599px) {
	#salary .photo-container {
		margin-left: 40px;
	}
}
@media (max-width: 991px) {
	#salary .photo-container {
		margin-left: 0;
		transform: translateX(50px);
	}
}
@media (max-width: 767px) {
	#salary .photo-container {
		margin-top: 35px;
		margin-left: 0;
		width: 100%;
		height: 150px;
		transform: translateX(0);
	}
}
#salary .photo-container::after {
	content: "";
	position: absolute;
	bottom: -35px;
	left: -45px;
	width: 119px;
	height: 119px;
	background-image: url("/img/kwadrat_kropki.svg");
	background-repeat: no-repeat;
}
@media (max-width: 767px) {
	#salary .photo-container::after {
		display: none;
	}
}
@media (max-width: 767px) {
	#salary .photo-container.desktop {
		display: none;
	}
}
@media (min-width: 768px) {
	#salary .photo-container.mobile {
		display: none;
	}
}
#salary .photo-container .photo {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("/img/wynagrodzenie-bg.jpg");
	box-shadow: 0px 5px 70px 0px rgba(0, 0, 0, 0.7);
}
@media (max-width: 767px) {
	#salary .photo-container .photo {
		width: 100%;
		height: 150px;
		transform: translate(0, -10px);
		box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.5);
	}
}
#salary .photo-container .photo::after {
	content: "";
	position: absolute;
	right: -10px;
	top: 10px;
	background-color: transparent;
	border: 1px solid #d8a35b;
	height: 100%;
	width: 100%;
	z-index: 3;
}
@media (min-width: 768px) {
	#salary .photo-container .photo::after {
		display: none;
	}
}
#salary .photo-container .photo::before {
	content: "";
	position: absolute;
	top: -25px;
	right: -45px;
	width: 119px;
	height: 119px;
	background-image: url("/img/kwadrat_kropki.svg");
	background-repeat: no-repeat;
}
@media (max-width: 767px) {
	#salary .photo-container .photo::before {
		display: none;
	}
}

#blog {
	position: relative;
	overflow: initial;
	background-color: #222222;
	overflow-x: hidden;
}
#blog .blog-container {
	z-index: 2;
	display: flex;
	align-items: center;
}
@media (max-width: 767px) {
	#blog .blog-container {
		flex-direction: column;
	}
}
@media (max-width: 400px) {
	#blog .blog-container {
		align-items: flex-start;
	}
}
#blog .blog-text-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 30%;
	margin-right: 100px;
}
@media (max-width: 1199px) {
	#blog .blog-text-container {
		margin-right: 80px;
	}
}
@media (max-width: 991px) {
	#blog .blog-text-container {
		margin-right: 60px;
	}
}
@media (max-width: 767px) {
	#blog .blog-text-container {
		margin-right: 0;
		width: 100%;
		margin-bottom: 20px;
	}
}
#blog .blog-text-container p {
	margin-top: 30px;
	font-family: "Roboto", serif;
	font-size: 18px;
	line-height: 22px;
	font-weight: 400;
}
@media (max-width: 1199px) {
	#blog .blog-text-container p {
		font-size: 16px;
		line-height: 20px;
	}
}
@media (max-width: 991px) {
	#blog .blog-text-container p {
		font-size: 16px;
		line-height: 20px;
	}
}
@media (max-width: 767px) {
	#blog .blog-text-container p {
		margin-top: 20px;
		margin-right: 0px;
		font-size: 14px;
		line-height: 16px;
	}
}
#blog .blog-text-container a {
	display: flex;
	margin-top: 30px;
}
@media (max-width: 767px) {
	#blog .blog-text-container a {
		display: none;
	}
}
#blog .blog-posts-container {
	position: relative;
	display: grid;
	grid-template-columns: auto auto;
	gap: 30px;
	flex-grow: 1;
	transform: translate(0, 10%);
}
@media (max-width: 991px) {
	#blog .blog-posts-container {
		gap: 25px;
	}
}
@media (max-width: 767px) {
	#blog .blog-posts-container {
		gap: 20px;
		grid-template-columns: auto auto auto;
		width: 120%;
	}
}
@media (max-width: 575px) {
	#blog .blog-posts-container {
		gap: 15px;
		transform: translate(0, 0);
		width: 150%;
	}
}
@media (max-width: 400px) {
	#blog .blog-posts-container {
		width: 200%;
	}
}
#blog .blog-posts-container::after {
	content: "";
	position: absolute;
	top: -35px;
	left: -35px;
	width: 119px;
	height: 119px;
	background-image: url("/img/kwadrat_kropki.svg");
	background-repeat: no-repeat;
}
@media (max-width: 767px) {
	#blog .blog-posts-container::after {
		top: auto;
		bottom: -35px;
	}
}
#blog .blog-posts-container::before {
	content: "";
	position: absolute;
	bottom: 65px;
	right: -65px;
	width: 119px;
	height: 119px;
	background-image: url("/img/kwadrat_kropki.svg");
	background-repeat: no-repeat;
}
@media (max-width: 767px) {
	#blog .blog-posts-container::before {
		bottom: 45px;
		right: -65px;
	}
}
#blog .blog-posts-container .post-item {
	position: relative;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	height: 200px;
	cursor: pointer;
	transition: all 0.4s;
	z-index: 2;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 5px;
	overflow: hidden;
	opacity: 1;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
@media (max-width: 1199px) {
	#blog .blog-posts-container .post-item {
		height: 175px;
	}
}
@media (max-width: 991px) {
	#blog .blog-posts-container .post-item {
		height: 150px;
	}
}
@media (max-width: 575px) {
	#blog .blog-posts-container .post-item {
		height: 125px;
	}
}
#blog .blog-posts-container .post-item:nth-child(2), #blog .blog-posts-container .post-item:nth-child(4) {
	transform: translateY(-50%);
}
@media (max-width: 767px) {
	#blog .blog-posts-container .post-item:nth-child(2), #blog .blog-posts-container .post-item:nth-child(4) {
		transform: translateY(25%);
	}
}
@media (max-width: 400px) {
	#blog .blog-posts-container .post-item:nth-child(2), #blog .blog-posts-container .post-item:nth-child(4) {
		transform: translate(-25%, 25%);
	}
}
@media (max-width: 767px) {
	#blog .blog-posts-container .post-item:nth-child(4) {
		display: none;
	}
}
@media (max-width: 400px) {
	#blog .blog-posts-container .post-item:nth-child(3) {
		display: none;
	}
}
#blog .blog-posts-container .post-item::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 60%);
	background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 60%);
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 60%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
	z-index: 1;
	content: "";
}
#blog .blog-posts-container .post-item::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	z-index: 2;
	content: "";
	transition: opacity 0.4s;
}
#blog .blog-posts-container .post-item:hover::before {
	opacity: 0.4;
	transition: opacity 0.4s;
}
#blog .blog-posts-container .post-item .title-container {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	padding: 0 15px;
	padding-top: 50px;
	padding-bottom: 25px;
	background: black;
	background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
	background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
	z-index: 2;
}
@media (max-width: 575px) {
	#blog .blog-posts-container .post-item .title-container {
		padding: 0 10px;
		padding-top: 50px;
		padding-bottom: 15px;
	}
}
@media (max-width: 400px) {
	#blog .blog-posts-container .post-item .title-container {
		padding-right: 30px;
	}
}
#blog .blog-posts-container .post-item img {
	height: auto;
	width: 100%;
	box-shadow: 0px 5px 40px 0px black;
	transition: all 0.4s;
}
#blog .blog-posts-container .post-item h4 {
	padding: 0 5px;
	transition: all 0.4s;
	text-shadow: 0 1px 10px black;
	margin-bottom: 0;
}
#blog .mobile-btn {
	display: none;
}
@media (max-width: 767px) {
	#blog .mobile-btn {
		display: flex;
		margin-top: 70px;
	}
}
@media (max-width: 575px) {
	#blog .mobile-btn {
		margin-top: 50px;
	}
}

#references {
	background-image: -moz-linear-gradient(-90deg, #222222 0%, #050505 100%);
	background-image: -webkit-linear-gradient(-90deg, #222222 0%, #050505 100%);
	background-image: -ms-linear-gradient(-90deg, #222222 0%, #050505 100%);
}
#references .references-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
	margin-top: 30px;
}
@media (max-width: 1599px) {
	#references .references-container {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 991px) {
	#references .references-container {
		gap: 25px;
	}
}
@media (max-width: 767px) {
	#references .references-container {
		gap: 20px;
	}
}
@media (max-width: 575px) {
	#references .references-container {
		grid-template-columns: auto;
		gap: 12px;
	}
}
@media (max-width: 991px) {
	#references .references-container.hidden {
		margin-top: 25px;
	}
}
@media (max-width: 767px) {
	#references .references-container.hidden {
		margin-top: 20px;
	}
}
@media (max-width: 575px) {
	#references .references-container.hidden {
		margin-top: 12px;
	}
}
#references .references-container .reference-item {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 30px;
	background-color: #141418;
	border: 1px solid #434344;
	border-radius: 5px;
	width: 100%;
	box-shadow: 0px 5px 50px 0px rgba(0, 0, 0, 0.1);
}
#references .references-container .reference-item:nth-child(3n+2) {
	transform: translateY(30px);
}
@media (max-width: 1599px) {
	#references .references-container .reference-item:nth-child(3n+2) {
		transform: translateY(0);
	}
	#references .references-container .reference-item:nth-child(even) {
		transform: translateY(30px);
	}
}
@media (max-width: 1199px) {
	#references .references-container .reference-item {
		padding: 20px;
	}
}
@media (max-width: 991px) {
	#references .references-container .reference-item {
		padding: 15px;
	}
	#references .references-container .reference-item:nth-child(even) {
		transform: translateY(25px);
	}
}
@media (max-width: 991px) {
	#references .references-container .reference-item:nth-child(even) {
		transform: translateY(20px);
	}
}
@media (max-width: 575px) {
	#references .references-container .reference-item:nth-child(even) {
		transform: translateY(0);
	}
}
@media (max-width: 1599px) {
	#references .references-container .reference-item.hide-xl {
		display: none;
	}
}
#references .references-container .reference-item.show-xl {
	display: none;
}
@media (max-width: 1599px) {
	#references .references-container .reference-item.show-xl {
		display: flex;
	}
}
#references .references-container .reference-item .icon {
	position: absolute;
	top: 30px;
	right: 30px;
	height: 44px;
	margin-bottom: 25px;
}
@media (max-width: 1199px) {
	#references .references-container .reference-item .icon {
		top: 20px;
		right: 20px;
	}
}
@media (max-width: 991px) {
	#references .references-container .reference-item .icon {
		height: 34px;
		top: 15px;
		right: 15px;
	}
}
@media (max-width: 767px) {
	#references .references-container .reference-item .icon {
		height: 28px;
	}
}
#references .references-container .reference-item .quota {
	position: relative;
	font-family: "Roboto", serif;
	font-size: 15px;
	line-height: 22px;
	font-weight: 400;
}
@media (max-width: 991px) {
	#references .references-container .reference-item .quota {
		font-size: 14px;
		line-height: 18px;
	}
}
@media (max-width: 767px) {
	#references .references-container .reference-item .quota {
		font-size: 13px;
		line-height: 16px;
	}
}
#references .references-container .reference-item .more {
	font-family: "Playfair Display", serif;
	font-size: 14px;
	line-height: 14px;
	font-weight: 700;
	text-decoration: none;
	margin-top: 10px;
}
#references .references-container .reference-item .person {
	display: flex;
	position: relative;
	align-items: center;
	margin-bottom: 20px;
}
@media (max-width: 991px) {
	#references .references-container .reference-item .person {
		margin-bottom: 15px;
	}
}
#references .references-container .reference-item .person .avatar-photo {
	height: 50px;
	width: 50px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	border-radius: 5px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
	background-color: #222222;
	background-image: url("/img/icon-user.svg");
	background-size: 75%;
}
@media (max-width: 991px) {
	#references .references-container .reference-item .person .avatar-photo {
		height: 40px;
		width: 40px;
	}
}
#references .references-container .reference-item .person .avatar-photo.person1es {
	background-image: url("/img/photo-es-1.jpg");
	background-size: 100%;
}
#references .references-container .reference-item .person .avatar-photo.person2es {
	background-image: url("/img/photo-es-2.jpg");
	background-size: 100%;
}
#references .references-container .reference-item .person .avatar-photo.person3es {
	background-image: url("/img/photo-es-3.jpg");
	background-size: 100%;
}
#references .references-container .reference-item .person .avatar-photo.person4es {
	background-image: url("/img/photo-es-4.jpg");
	background-size: 100%;
}
#references .references-container .reference-item .person .avatar-photo.person5es {
	background-image: url("/img/photo-es-5.jpg");
	background-size: 100%;
}
#references .references-container .reference-item .person .avatar-photo.person6es {
	background-image: url("/img/photo-es-6.jpg");
	background-size: 100%;
}
#references .references-container .reference-item .person .avatar-photo.person7es {
	background-image: url("/img/photo-es-7.jpg");
	background-size: 100%;
}
#references .references-container .reference-item .person .avatar-photo.person8es {
	background-image: url("/img/photo-es-8.jpg");
	background-size: 100%;
}
#references .references-container .reference-item .person .avatar-photo.person9es {
	background-image: url("/img/photo-es-9.jpg");
	background-size: 100%;
}
#references .references-container .reference-item .person .avatar-photo.person10es {
	background-image: url("/img/photo-es-10.jpg");
	background-size: 100%;
}
#references .references-container .reference-item .person .avatar-photo.person11es {
	background-image: url("/img/photo-es-11.jpg");
	background-size: 100%;
}
#references .references-container .reference-item .person .avatar-photo.person1 {
	background-image: url("/img/chlop1.jpg");
	background-size: 100%;
}
#references .references-container .reference-item .person .avatar-photo.person2 {
	background-image: url("/img/baba1.jpg");
	background-size: 100%;
}
#references .references-container .reference-item .person .avatar-photo.person3 {
	background-image: url("/img/32.jpg");
	background-size: 100%;
}
#references .references-container .reference-item .person .avatar-photo.person4 {
	background-image: url("/img/osoba4.jpg");
	background-size: 100%;
}
#references .references-container .reference-item .person .avatar-photo.person6 {
	background-image: url("/img/osoba6.jpg");
	background-size: 100%;
}
#references .references-container .reference-item .person .text-container {
	margin-left: 20px;
}
@media (max-width: 991px) {
	#references .references-container .reference-item .person .text-container {
		margin-left: 15px;
	}
}
#references .references-container .reference-item .person .text-container h4 {
	font-family: "Roboto", serif;
	font-size: 18px;
	line-height: 20px;
	font-weight: 500;
	margin: 0;
}
@media (max-width: 991px) {
	#references .references-container .reference-item .person .text-container h4 {
		font-size: 16px;
		line-height: 18px;
	}
}
#references .references-container .reference-item .person .text-container p {
	margin: 0;
	font-family: "Roboto", serif;
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
}
@media (max-width: 991px) {
	#references .references-container .reference-item .person .text-container p {
		font-size: 13px;
		line-height: 16px;
	}
}
#references .yellow_link {
	display: none;
	margin-top: 50px;
}
@media (max-width: 575px) {
	#references .yellow_link {
		margin-top: 20px !important;
	}
}
#references .yellow_link.collapsed {
	display: flex;
}
#references .yellow_link.less {
	display: flex;
	border-color: rgba(216, 163, 91, 0.2);
	color: rgba(216, 163, 91, 0.8);
}
@media (max-width: 991px) {
	#references .yellow_link {
		margin-top: 45px;
	}
}
@media (max-width: 767px) {
	#references .yellow_link {
		margin-top: 40px;
	}
}

#footer {
	background-repeat: repeat;
	position: relative;
	z-index: 0;
	padding-top: 10px;
	background-color: #222222;
	background-image: url("data:image/svg+xml,%3Csvg width='40' height='12' viewBox='0 0 40 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6.172L6.172 0h5.656L0 11.828V6.172zm40 5.656L28.172 0h5.656L40 6.172v5.656zM6.172 12l12-12h3.656l12 12h-5.656L20 3.828 11.828 12H6.172zm12 0L20 10.172 21.828 12h-3.656z' fill='%23000000' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
}
#footer::before {
	content: "";
	position: absolute;
	background-color: black;
	opacity: 0.5;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
#footer::after {
	content: "";
	position: absolute;
	background-image: -moz-linear-gradient(-90deg, black 0%, rgba(0, 0, 0, 0) 50%);
	background-image: -webkit-linear-gradient(-90deg, black 0%, rgba(0, 0, 0, 0) 50%);
	background-image: -ms-linear-gradient(-90deg, black 0%, rgba(0, 0, 0, 0) 50%);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
#footer .container-fluid {
	z-index: 3;
	position: relative;
}
#footer .footer-content {
	margin-top: 30px;
	display: grid;
	grid-template-columns: 60% 40%;
	gap: 30px;
	width: 100%;
}
@media (max-width: 767px) {
	#footer .footer-content {
		grid-template-columns: 55% 45%;
	}
}
@media (max-width: 575px) {
	#footer .footer-content {
		grid-template-columns: auto;
		gap: 15px;
	}
}
@media (max-width: 575px) {
	#footer .info-details {
		display: grid;
		grid-template-columns: 1fr 1fr;
		width: 100%;
		padding-top: 15px;
		border-top: 1px solid rgba(216, 163, 91, 0.4);
	}
}
@media (max-width: 430px) {
	#footer .info-details {
		grid-template-columns: auto;
		padding-top: 0;
		border-top: 0;
		gap: 2px;
	}
}
#footer .footer-item {
	display: flex;
	margin-bottom: 10px;
}
#footer .footer-item:last-child {
	margin-bottom: 0;
}
@media (max-width: 991px) {
	#footer .footer-item {
		margin-bottom: 5px;
		font-family: "Roboto", serif;
		font-size: 15px;
		line-height: 15px;
		font-weight: 400;
	}
}
#footer .footer-item.column {
	flex-direction: column;
	margin-bottom: 20px;
}
#footer .footer-item.column:last-child {
	margin-bottom: 0;
}
@media (max-width: 991px) {
	#footer .footer-item.column {
		margin-bottom: 7px;
	}
}
#footer .footer-item.column .icon {
	margin-bottom: 5px;
}
@media (max-width: 767px) {
	#footer .footer-item.column .icon {
		margin-bottom: 5px;
	}
}
#footer .footer-item.column .text {
	margin-left: 0;
}
#footer .footer-item .icon {
	color: #d8a35b;
}
#footer .footer-item .text {
	color: #ffffff;
	margin-left: 10px;
}
#footer .footer-item .text a {
	color: #ffffff;
}
#footer .footer-item .text a:hover {
	color: #d8a35b;
}
#footer .footer-additional-text {
	color: #d8a35b;
	margin: 0 auto;
	margin-top: 30px;
	font-family: "Roboto", serif;
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	text-align: center;
	max-width: 700px;
}
@media (max-width: 991px) {
	#footer .footer-additional-text {
		font-size: 16px;
		line-height: 20px;
	}
}
@media (max-width: 767px) {
	#footer .footer-additional-text {
		font-size: 14px;
		line-height: 18px;
	}
}

.contact-fixed-panel {
	position: fixed;
	z-index: 60;
	bottom: 0;
	right: 10px;
	transform: translateY(100%);
	opacity: 0;
	transition: transform 0.3s, bottom 0.3s, opacity 0.3s;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: auto;
	padding: 10px;
	border-radius: 30px;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	background-color: rgba(0, 0, 0, 0.7);
	border: 1px solid #434344;
	box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 575px) {
	.contact-fixed-panel {
		flex-direction: row;
		bottom: -1px;
		right: 50%;
		transform: translateX(50%);
		padding: 8px 10px;
		border-radius: 20px;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}
}
@media (max-width: 350px) {
	.contact-fixed-panel {
		padding: 7px;
	}
}
.contact-fixed-panel:not(.footer).show {
	opacity: 1;
	bottom: 10px;
	transform: translateY(0);
	transition: transform 0.3s, bottom 0.3s, opacity 0.3s;
}
@media (max-width: 575px) {
	.contact-fixed-panel:not(.footer).show {
		bottom: -1px;
		transform: translateX(50%);
	}
}
.contact-fixed-panel.footer {
	opacity: 1;
	transform: translateY(0);
	bottom: auto;
	right: auto;
	position: relative;
	width: auto;
	margin-top: 30px;
}
@media (max-width: 767px) {
	.contact-fixed-panel.footer {
		border-radius: 15px;
	}
}
@media (max-width: 575px) {
	.contact-fixed-panel.footer {
		padding: 0;
		margin-top: 15px;
		padding-top: 15px;
		border: 0;
		background-color: transparent;
		box-shadow: 0 0 0 0;
		border-radius: 0;
		width: 100%;
		border-top: 1px solid rgba(216, 163, 91, 0.4);
	}
}
.contact-fixed-panel.footer .contact-fixed-panel-icons-container {
	display: grid;
	grid-template-columns: auto auto auto auto;
	gap: 10px;
	width: auto;
}
@media (max-width: 767px) {
	.contact-fixed-panel.footer .contact-fixed-panel-icons-container {
		grid-template-columns: auto auto;
	}
}
@media (max-width: 575px) {
	.contact-fixed-panel.footer .contact-fixed-panel-icons-container {
		width: 100%;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 499px) {
	.contact-fixed-panel.footer .contact-fixed-panel-icons-container {
		grid-template-columns: 1fr;
	}
}
.contact-fixed-panel.footer .contact-fixed-panel-icon-item {
	margin: 0;
	width: auto;
	border-radius: 30px;
	text-decoration: none;
	padding-right: 10px;
	background-color: transparent;
}
@media (max-width: 767px) {
	.contact-fixed-panel.footer .contact-fixed-panel-icon-item {
		justify-content: flex-start;
	}
}
.contact-fixed-panel.footer .contact-fixed-panel-icon-item:hover {
	opacity: 1;
	box-shadow: inset 0 0 0 1px #d8a35b;
	background-color: rgba(216, 163, 91, 0.2);
}
.contact-fixed-panel.footer .contact-fixed-panel-icon-item:hover.email {
	background-color: rgba(25, 159, 236, 0.2);
	box-shadow: inset 0 0 0 1px #199fec;
}
.contact-fixed-panel.footer .contact-fixed-panel-icon-item:hover.whatsapp {
	background-color: rgba(27, 215, 65, 0.2);
	box-shadow: inset 0 0 0 1px #1bd741;
}
.contact-fixed-panel.footer .contact-fixed-panel-icon-item:hover.messenger {
	background-color: rgba(0, 132, 255, 0.2);
	box-shadow: inset 0 0 0 1px #0084FF;
}
.contact-fixed-panel.footer .contact-fixed-panel-icon-item .icon-container {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	min-width: 30px;
	border-radius: 50%;
	background-color: #d8a35b;
	box-shadow: 0 0 0 1px #000;
}
.contact-fixed-panel.footer .contact-fixed-panel-icon-item .icon-container.email {
	background-color: #199fec;
}
.contact-fixed-panel.footer .contact-fixed-panel-icon-item .icon-container.whatsapp {
	background-color: #1bd741;
}
.contact-fixed-panel.footer .contact-fixed-panel-icon-item span {
	font-family: "Roboto", serif;
	font-size: 14px;
	line-height: 14px;
	font-weight: 700;
	color: #ffffff;
	margin-left: 10px;
	text-decoration: none;
}
@media (max-width: 991px) {
	.contact-fixed-panel.footer .contact-fixed-panel-icon-item span.desktop {
		display: none;
	}
}
.contact-fixed-panel.footer .contact-fixed-panel-icon-item span.tablet {
	display: none;
}
@media (max-width: 991px) and (min-width: 768px) {
	.contact-fixed-panel.footer .contact-fixed-panel-icon-item span.tablet {
		display: inherit;
	}
}
@media (max-width: 767px) {
	.contact-fixed-panel.footer .contact-fixed-panel-icon-item span.mobile {
		display: inherit;
	}
}
.contact-fixed-panel-title {
	font-family: "Playfair Display", serif;
	font-size: 16px;
	line-height: 16px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 20px;
	margin-right: 0;
	display: none;
}
@media (max-width: 575px) {
	.contact-fixed-panel-title {
		display: flex;
		font-size: 14px;
		line-height: 14px;
		margin-bottom: 0;
		margin-right: 10px;
		white-space: nowrap;
	}
}
.contact-fixed-panel-icons-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
@media (max-width: 575px) {
	.contact-fixed-panel-icons-container {
		flex-direction: row;
	}
}
.contact-fixed-panel-icon-item {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #d8a35b;
	height: 30px;
	width: 30px;
	border-radius: 50%;
}
.contact-fixed-panel-icon-item:last-child {
	margin-right: 0;
	margin-bottom: 0;
}
@media (max-width: 575px) {
	.contact-fixed-panel-icon-item {
		margin-bottom: 0;
		margin-right: 10px;
		height: 28px;
		width: 28px;
	}
}
.contact-fixed-panel-icon-item:hover {
	opacity: 0.7;
}
.contact-fixed-panel-icon-item.email {
	background-color: #199fec;
}
.contact-fixed-panel-icon-item.messenger {
	background-color: transparent;
}
.contact-fixed-panel-icon-item.messenger img {
	height: 100%;
	width: auto;
}
@media (max-width: 575px) {
	.contact-fixed-panel-icon-item.messenger img {
		height: 95%;
	}
}
.contact-fixed-panel-icon-item.whatsapp {
	background-color: #1bd741;
}
.contact-fixed-panel-icon-item.whatsapp img {
	height: 18px;
	width: auto;
}
@media (max-width: 575px) {
	.contact-fixed-panel-icon-item.whatsapp img {
		height: 16px;
	}
}
.contact-fixed-panel-icon-item img {
	height: 16px;
	width: auto;
}
@media (max-width: 575px) {
	.contact-fixed-panel-icon-item img {
		height: 14px;
	}
}

.tooltip-custom-phone {
	font-family: "Roboto", serif;
	--bs-tooltip-bg: #d8a35b;
	font-weight: 700;
	opacity: 1;
}
.tooltip-custom-email {
	font-family: "Roboto", serif;
	--bs-tooltip-bg: #199fec;
	font-weight: 700;
	opacity: 1;
}
.tooltip-custom-whatsapp {
	font-family: "Roboto", serif;
	--bs-tooltip-bg: #1bd741;
	font-weight: 700;
	opacity: 1;
}
.tooltip-custom-messanger {
	font-family: "Roboto", serif;
	--bs-tooltip-bg: #9f1bd7;
	font-weight: 700;
	opacity: 1;
}