* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
img {
	border: none!important;
}
html {
  scroll-behavior: smooth;
}
body {
	font-family: 'DM Sans', sans-serif;
	font-size: medium;
}
input, textarea {
	font-family: 'DM Sans', sans-serif;
}
input:focus,
textarea:focus {
	outline: none;
}
em {
	font-style: italic;
}
/* Main Elements */
[x-cloak] { 
	display: none !important; 
}
.search-icon-button {
	background: none;
	border: none;
}
.red-link {
	color: #BE3C3C;
}
.container {
	width: 95%;
	max-width: 1450px;
	margin: auto;
}
.container--narrow {
	width: 95%;
	max-width: 1250px;
	margin: auto;
}
@media(max-width: 700px) {
	.container {
		padding: 0 36px;
		width: 100%;
	}
	.container--narrow {
		width: 90%;
	}
}
.burger-button {
	border: none;
	background: none;
	cursor: pointer;
	padding-right: 25px;
	display: none;
}
@media(max-width: 1100px) {
	.burger-button {
		display: block;
	}
}
.close-button-x {
	z-index: 9;
	width: 0;
}
.main-menu {
	height: 110px;
	border-bottom: 1px solid #F1ECE5;
	z-index: 10;
	position: fixed;
    width: 100%;
    background: #fff;
}
.main-menu .stuff {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}
.main-menu .links-search {
	display: flex;
	align-items: center;
	gap: 32px;
	position: relative;
}
.main-menu .links-search .links {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
}
.main-menu .links-search .links li a, .main-menu .links-search .links p {
	text-decoration: none;
	color: #404040;
	transition: all .4s ease;
	text-transform: uppercase;
	cursor: pointer;
}
.main-menu .links-search .links li a:hover, .main-menu .links-search .links p:hover {
	color: #BE3C3C;
}
.main-menu .links-search .locale-search {
	display: flex;
	align-items: center;
	gap: 16px;
}
@media(max-width: 1100px) {
	.main-menu .container {
		width: 100%;
	}
	.main-menu .stuff .logo {
		padding-left: 25px;
	}
	.main-menu .stuff .logo img {
		height: 36px;
	}
	.main-menu .links-search {
		position: absolute;
		flex-direction: column;
		top: 100px;
		background: #fff;
		width: 100%;
    	z-index: 9;
    	gap: 0;
    	display: none;
	}
	.main-menu .links-search .links {
		flex-direction: column;
		width: 100%;
		gap: 0;
		margin: 0 22px;
	}
	.main-menu .links-search .links li {
		width: 100%;
		border-bottom: 1px solid #F0ECE6;
		height: 80px;
		display: flex;
    	align-items: center;
    	padding-left: 42px;
	}
	.main-menu .links-search .links a {
		text-transform: uppercase;
	}
	.main-menu .links-search .links .link-with-dropdown {
		display: flex;
	    align-items: center;
	    justify-content: space-between;
	    width: 100%;
	    padding-right: 22px;
	}
	.main-menu .links-search .links .link-dropdown-mobile {
		width: 100%;
	}
	.main-menu .links-search .links .link-dropdown-mobile .production-categories {
		display: flex;
		flex-direction: column;
	}
	.main-menu .links-search .links .link-dropdown-mobile .production-categories .production-category {
		display: flex;
		align-items: center;
		gap: 32px;
		text-decoration: none;
		color: #000000;
		border-bottom: 1px solid #F0ECE6;
		height: 80px;
		padding-left: 22px;
	}
	.main-menu .links-search .links .link-dropdown-mobile .production-categories .production-category img {
		height: 55px;
	    width: 70px;
	    object-fit: contain;
	}
	.main-menu .links-search .links .link-dropdown-mobile .production-categories .production-category span {
		text-transform: none;
		text-decoration: none;
	}
	.main-menu .links-search .locale-search {
		order: -1;
		width: 100%;
		border-bottom: 1px solid #F0ECE6;
		border-top: 1px solid #F0ECE6;
		height: 80px;
		justify-content: space-between;
		padding: 0 25px;
	}
}
.main-menu .links-search .locale-search .locale .current-locale {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #404040;
	padding: 0 8px;
	text-transform: uppercase;
}
.main-menu .links-search .locale-search .locale .other-languages {
	display: flex;
    flex-direction: column;
	gap: 8px;
    padding: 10px 8px;
    align-items: baseline;
    position: absolute;
	top: 32px;
	background: #FFF;
	z-index: 9;
}
.main-menu .links-search .locale-search .locale .other-languages a {
	text-decoration: none;
    color: #404040;
}
.main-menu .links-search .locale-search .locale .other-languages button, a {
	background: none;
	border: none;
	color: #404040;
	text-decoration: none;
}
.main-menu .links-search .locale-search .locale-mobile {
	display: none;
}
@media(max-width: 1100px) {
	.main-menu .links-search .locale-search .locale {
		display: none;
	}
	.main-menu .links-search .locale-search .locale-mobile {
		display: flex;
		gap: 16px;
	} 
	.main-menu .links-search .locale-search .locale-mobile button {
		border: none;
		background: none;
	}
}
.main-menu .links-search .search-icon {
	cursor: pointer;
}
.main-menu .links-search .search-icon img {
	position: relative;
    z-index: 9;
}
.main-menu .links-search .search-icon .search-input {
	position: absolute;
    right: 0;
    height: 42px;
    width: 42px;
    border-radius: 50px;
    opacity: 0;
    background: #f1ece5;
    border: none;
    transition: all .4s ease;
}
.main-menu .links-search .search-icon .search-input.active {
	width: 100%;
	opacity: 1;
	padding: 0 16px;
}
.main-menu .links-search .search-icon .search-button-submit {
	border: none;
	background: none;
}
.main-menu-mobile {
	position: absolute;
	top: 100px;
	display: none;
}
@media(max-width: 1100px) {
	.main-menu-mobile {
		display: flex;
		width: 100%;
		background: #fff;
		height: auto;
		z-index: 10;
	}
	.main-menu-mobile .links-search {
		position: absolute;
		flex-direction: column;
		top: 9px;
		background: #fff;
		width: 100%;
    	z-index: 9;
    	gap: 0;
    	display: flex;
		overflow-y: scroll;
    	height: 85vh;
		left: -36px;
		max-width: 100vw;
	}
}
.link-dropdown {
	position: absolute;
	top: 100px;
	left: 0;
	width: 100%;
	background: #F0ECE6;
	z-index: 10;
	padding: 32px 0;
}
.link-dropdown .production-categories {
	display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.link-dropdown .production-categories .production-category {
	background: #FFF;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 48px;
    gap: 64px;
    color: #000000;
    font-size: 18px;
    position: relative;
    height: 449px;
    justify-content: end;
}
.link-dropdown .production-categories .production-category:hover img {
	transform: scale(1.1) translate(-50%, -50%);
}
.link-dropdown .production-categories .production-category.for-menu {
	height: 300px;
}
.link-dropdown .production-categories .production-category img {
	width: 70%;
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 270px;
    object-fit: contain;
	transition: all .4s ease;
}
.link-dropdown .production-categories .production-category.for-menu img {
	height: 170px;
}
.link-dropdown .production-categories .production-category.all-products img {
	height: 80px;
}
.link-dropdown .production-categories .production-category span {
	text-align: center;
}
.homepage-hero-slider 
{
	height: 760px;
}
@media(max-width: 700px) {
	.homepage-hero-slider {
		height: 400px;
		padding-top: 110px;
	}
	.main-menu .links-search .search-icon .search-input.active {
		width: 90vw;
	}
}
@media(max-width: 1100px) {
	.main-menu .links-search .search-icon .search-input.active {
		width: 90%;
		margin: 0 5%;
	}
}
.homepage-hero-slider .hero-slide {
	display: flex;
	align-items: center;
    height: 100%;
}
.homepage-hero-slider .hero-slide .hero-slide-single {
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: center;
}
.homepage-hero-slider .image {
	height: 100%;
    width: 50%;
    margin-left: auto;
    top: 50%;
    position: absolute;
    right: 0;
    transform: translateY(-50%);
    background-size: cover;
    background-repeat: no-repeat;
}
.homepage-hero-slider .image-full {
	height: 100%;
    width: 100%;
    margin-left: auto;
    top: 0;
    position: absolute;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
@media(max-width: 700px) {
	.homepage-hero-slider .image {
		height: 80%;
	    width: 30%;
	    margin-left: auto;
	    top: 50%;
	    position: absolute;
	    right: 0;
	    transform: translateY(-50%);
	    background-size: cover;
	    background-repeat: no-repeat;
	}
}
.homepage-hero-slider .info {
	display: flex;
	flex-direction: column;
	gap: 32px;
	height: 100%;
    justify-content: center;
    position: relative;
    color: #404040;
}
.homepage-hero-slider .info .text 
{
	font-size: 48px;
	line-height: 64px;
	max-width: 50%;
}
@media(max-width: 700px) {
	.homepage-hero-slider .info .text 
	{
		font-size: 28px;
		line-height: 36px;
		max-width: 60%;
	}
}
.homepage-hero-slider .hero-image {
	padding: 5rem 0;
    position: absolute;
    right: 0;
    max-width: 50%;
}
.homepage-hero-slider .splide__pagination {
	bottom: 50px;
    display: flex;
    gap: 12px;
    width: fit-content;
}
@media(max-width: 900px) {
	.homepage-hero-slider .splide__pagination {
		bottom: 30px;
	}
}
.homepage-hero-slider .splide__pagination .splide__pagination__page.is-active {
	background: transparent;
    transform: scale(1.4);
    z-index: 1;
    border: 1px solid #BE3C3C;
}
.homepage-hero-slider .splide__pagination .splide__pagination__page {
    background: #BE3C3C;
}
.homepage-about-us {
	background: #F0ECE6;
    height: 1150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding-top: 110px;
}
.homepage-about-us.page-about-us {
	padding-top: 0;
}
.homepage-about-us.page-about-us .info {
	display: block;
    padding: 100px 0;
	width: 95%;
}
@media(max-width: 700px) {
	.homepage-about-us 
	{
		height: auto;
	}
}
.homepage-about-us .misc-image {
	position: absolute;
    left: -308px;
    width: 1000px;
    top: 50px;
}
@media(max-width: 1300px) {
	.homepage-about-us .misc-image {
		position: absolute;
	    width: 700px;
	}
}
.homepage-about-us .info {
	display: flex;
	flex-direction: column;
	gap: 32px;
	max-width: 50%;
	margin-left: auto;
	height: 100%;
    justify-content: center;
    width: 50%;
}
@media(max-width: 1600px) {
	.homepage-about-us .info {
		max-width: unset;
	    width: unset;
	    gap: 48px;
	}
}
@media(max-width: 900px) {
	.homepage-about-us .info,
	.homepage-about-us .info.about-us-text {
	    width: 400px;
	    padding-right: 32px;
	}
	.homepage-about-us .info.page-about-us {
		
	}
	.homepage-about-us .info.facts {
		width: unset;
		padding: 0 36px;
	}
}
.homepage-about-us .info .title {
	font-size: 48px;
	font-weight: bold;
	color: #404040;
}
.homepage-about-us .info .text {
	font-size: 16px;
	color: #505050;
    max-width: 536px;
    line-height: 30px;
}
.homepage-about-us .info .text.page-about-us {
	max-width: unset;
}
@media(max-width: 700px) {
	.homepage-about-us .misc-image {
	    left: -100px;
    	width: 400px;
	    top: 30px;
	}
	.homepage-about-us .info {
		width: 100%;
		max-width: unset;
		margin: auto;
		margin-top: 320px;
		padding: 0 36px;
		padding-bottom: 48px;
	}
	.homepage-about-us .info.page-about-us {
		margin-top: 0;
	    width: 100%;
		padding: 36px;
	}
	.homepage-about-us .info .title {
		font-size: 28px;
	}
}
.homepage-about-us .fun-facts {
	background: #FFF;
	display: flex;
	justify-content: space-between;
	height: 440px;
    align-items: center;
    padding: 100px 0;
    padding-top: 150px;
}
.homepage-about-us .fun-facts .info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
}
@media(max-width: 700px) {
	.homepage-about-us .fun-facts .info {
		flex-direction: column;
		margin-top: 0;
		width: 100%;
		padding: 0 36px;
	}
	.homepage-about-us .fun-facts {
		height: auto;
		padding: 48px 0;
	}
	.homepage-about-us .fun-facts .info {
		align-items: baseline;
	}
}
.homepage-about-us .fun-facts .fact-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.homepage-about-us .fun-facts .fact-block span {
	padding-top: 16px;
	font-size: 16px;
	color: #404040;
}
.homepage-about-us .fun-facts .fact-block img {
	max-height: 65px;
}
.homepage-about-us .fun-facts .fact-block .actual-fact {
	font-size: 64px;
	font-weight: bold;
	color: #404040;
}
.services-brands {
	background: #F0ECE6;
	padding: 100px 0;
	overflow-x: hidden;
}
@media(max-width: 700px) {
	.services-brands
	{
		padding-top: 50px;
	}
}
.services-brands .services-top {
	display: flex;
	padding-bottom: 50px;
}
.services-brands .services-top .text {
	width: 50%;
    margin: 0 auto;
    line-height: 30px;
    color: #505050;
    padding-bottom: 20px;
}
.services-brands .services-top .info {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.services-brands .services-top .info .title {
	font-size: 48px;
	font-weight: bold;
	line-height: 44px;
}
.services-brands .services-top .default-red-button.for-mobile {
	display: none;
}
@media(max-width: 700px) {
	.services-brands .services-top .info {
		gap: 16px;
	}
	.services-brands .services-top {
		flex-direction: column;
	}
	.services-brands .services-top .text {
		width: 100%;
		padding-top: 16px;
	}
	.services-brands .services-top .info .default-red-button {
		
	}
	.services-brands .services-top .default-red-button.for-mobile {
		display: block;
	}
	.services-brands .services-top .info .title {
		font-size: 28px;
	}
}
.services-brands .splide__arrows {
	position: absolute;
	right: 60px;
    top: -30px;
}
.services-brands .splide__arrows .splide__arrow--next {
	right: -3rem;
}
.services-brands .splide__arrows .splide__arrow--prev {
	left: -4rem;
}
@media(max-width: 700px) {
	.services-brands .splide__arrows .splide__arrow--next {
		right: -5px;
	}
	.services-brands .splide__arrows .splide__arrow--prev {
		left: -7rem;
	}
}
.services-brands .splide__pagination {
	bottom: 130px;
	display: flex;
	gap: 12px;
}
@media(max-width: 700px) {
	.services-brands .splide__pagination
	{
		display: none;
	}
}
.services-brands .splide__pagination .splide__pagination__page {
	background: #BE3C3C;
}
.services-brands .splide__pagination .splide__pagination__page.is-active {
	background: #f0ece6;
    transform: scale(1.4);
    z-index: 1;
    border: 1px solid #BE3C3C;
}
.services-brands .services-slider {
	padding-bottom: 200px;
}
@media(max-width: 700px) {
	.services-brands .services-slider {
		padding-bottom: 48px;
	}
}
.services-brands .services-slider .service-block .details {
	height: 568px;
	display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
@media(max-width: 1100px) {
	.services-brands .services-slider .service-block .details
	{
		height: 390px;
	}
}
.services-brands .services-slider .service-block .details .full-image {
	height: 100%;
	transition: all .4s ease;
	background-size: cover;
}
.services-brands .services-slider .service-block .details:hover .full-image {
	transform: scale(1.2);
}
.services-brands .services-slider .service-block .details .extra-info {
	background: #BE3C3C;
    position: absolute;
    bottom: 0;
    border-radius: 10px;
    color: #FFF;
    width: 100%;
    text-decoration: none;
    overflow: hidden;
}
.services-brands .services-slider .service-block .details .extra-info .title {
	padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.services-brands .services-slider .service-block .details .extra-info .title span {
	font-size: 24px;
    font-weight: 400;
}
@media(max-width: 1100px) {
	.services-brands .services-slider .service-block .details .extra-info .title span
	{
		font-size: 18px;
	}
}
.services-brands .services-slider .service-block .details .extra-info .text {
	max-height: 0;
    transition: all .5s ease;
    padding: 0 28px;
}
.services-brands .services-slider .service-block .details .extra-info .text.show {
	height: 100%;
	max-height: 150px;
    padding-bottom: 16px;
}
.brands-products .splide__pagination {
	bottom: -42px;
	display: flex;
	gap: 12px;
}
.brands-products .splide__pagination .splide__pagination__page {
	background: #BE3C3C;
	width: 10px;
	height: 10px;
}
.brands-products .splide__pagination .splide__pagination__page.is-active {
	background: #f0ece6;
    transform: scale(1.4);
    z-index: 1;
    border: 1px solid #BE3C3C;
}
.brands-products .details {
	height: 100px;
	background: #FFF;
	border-radius: 5px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.brands-products .details img {
	width: 100%;
    padding: 16px;
    object-fit: contain;
    height: 100%;
}
.homepage-contacts-us .info-form {
	display: flex;
	justify-content: space-between;
    padding: 100px 0;
    align-items: center;
	padding-top: 150px;
}
.homepage-contacts-us .info-form .info {
	width: 100%;
}
@media(max-width: 700px) {
	.homepage-contacts-us .info-form {
		flex-direction: column;
		gap: 48px;
		padding-bottom: 40px;
	}
	.homepage-contacts-us .info-form .info {
		width: 100%;
	}
}
.homepage-contacts-us .red-text-link {
	color: #be3c3c;
}
.homepage-contacts-us .info-form .info .title {
	font-size: 36px;
	font-weight: bold;
	padding-bottom: 16px;
}
.homepage-contacts-us .info-form .info .company-detail-block {
	display: flex;
	flex-direction: column;
	gap: 4px;
	color: #505050;
	margin-bottom: 32px;
}
.homepage-contacts-us .info-form .info .company-detail-block .detail .active-link {
	color: #BE3C3C;
}
.homepage-contacts-us .info-form .info .company-detail-block .detail.company {
	font-weight: bold;
}
.homepage-contacts-us .info-form .info .company-detail-block .detail.adress {
	display: flex;
	gap: 8px;
}
.homepage-contacts-us .info-form .info .branches-contacts-link {
	display: flex;
	align-items: center;
	gap: 12px;
}
.homepage-contacts-us .info-form .info .branches-contacts-link a {
	text-transform: uppercase;
	font-size: 16px;
	color: #be3c3c;
    text-decoration: underline;
}
.homepage-contacts-us .info-form .info .social-icons {
	display: flex;
	gap: 20px;
	margin-top: 50px;
}
.form {
	
}
@media(max-width: 700px) {
	.form {
		width: 100%;
	}
}
.form .contact-us-form {
	background: #F0ECE6;
	border-radius: 10px;
	padding: 48px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.form .contact-us-form .title {
	font-size: 36px;
	font-weight: bold;
}
@media(max-width: 700px) {
	.form .contact-us-form {
		padding: 32px;
		padding-bottom: 48px;
	}
	.form .contact-us-form .title {
		font-size: 28px;
	}
}
.form .contact-us-form .text {
	font-size: 16px;
	color: #505050;
	padding-bottom: 16px;
}
.form .contact-us-form label {
	color: #505050;
	display: none;
}
.form .contact-us-form input {
	height: 60px;
	border-radius: 5px;
	background: #FFF;
	border: none;
	color: #7F7F7F;
	padding: 16px;
	width: 100%;
}
.form .contact-us-form input[type="checkbox"] {
	width: 20px;
    height: 20px;
}
.form .contact-us-form .checkbox {
	display: flex;
	gap: 8px;
}
.form .contact-us-form .checkbox label {
	display: block;
	padding-top: 20px;
}
@media(max-width: 700px)
{
	.form .contact-us-form input {
		height: 20px;
	}
	.form .contact-us-form .checkbox label {
		padding-top: 0;
	}
}
.form .contact-us-form input:placeholder {
	color: #7F7F7F;
}
.form .contact-us-form textarea {
	min-height: 200px;
	border-radius: 5px;
	background: #FFF;
	border: none;
	color: #7F7F7F;
	padding: 16px;
	width: 100%;
	font-size: 16px;
}
.form .contact-us-form textarea:placeholder {
	color: #7F7F7F;
}
.form .contact-us-form .send-form-button, 
.form .contact-us-form .action  {
	background: #BE3C3C;
    border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
	padding: 10px 72px;
    font-size: 14px;
    width: fit-content;
    border: none;
    cursor: pointer;
    transition: all .4s ease;
    min-width: 150px;
    height: 50px;
}
.form .contact-us-form .send-form-button:hover, 
.form .contact-us-form .action:hover {
	background: #DD4F4F;
}
/* Carrer Page */
.carrer-section {
	background: #F1ECE5;
	padding: 100px 0;
}
.carrer-section .top-section {
	display: flex;
	gap: 100px;
	align-items: center;
}
@media(max-width: 1250px) {
	.carrer-section .top-section {
		flex-direction: column;
	}
}
@media(max-width: 700px) {
	.carrer-section .top-section img {
		display: none;
	}
}
.carrer-section .top-section .info-section {
	display: flex;
	flex-direction: column;
	gap: 48px;
}
.carrer-section .top-section .info-section .text {
	font-size: 16px;
	color: #505050;
	line-height: 30px;
}
.carrer-section .top-section .info-section .click-to-action {
	font-size: 16px;
	color: #FFF;
	background: rgb(190, 60, 60);
	text-decoration: none;
	text-transform: uppercase;
	padding: 20px 40px;
	border-radius: 50px;
	width: fit-content;
	letter-spacing: 2px;
	transition: all .4s ease;
}
.carrer-section .top-section .info-section .click-to-action:hover {
	background:#DD4F4F;
}
.carrer-section .perks {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 170px 0;
}
@media(max-width: 700px) {
	.carrer-section .perks {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 32px;
		padding: 120px 0;
	}
}
.carrer-section .perks .single-perk {
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.carrer-section .open-positions .positions {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 32px;
}
.carrer-section .open-positions .positions .single-position {
	background: #FFF;
	padding: 20px 30px;
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	cursor: pointer;
	text-decoration: none;
}
.carrer-section .open-positions .positions .single-position .text-info {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.carrer-section .open-positions .positions .single-position .posiotion-name {
	font-size: 24px;
	color: #505050;
}
.carrer-section .open-positions .positions .single-position .position-place {
	display: flex;
	gap: 16px;
	align-items: center;
}
.carrer-section .open-positions .positions .single-position .position-place span {
	font-size: 16px;
	color: #505050;
}
@media(max-width: 700px) {
	.carrer-section .open-positions .positions .single-position .posiotion-name {
		font-size: 18px;
	}
	.carrer-section .open-positions .positions .single-position .position-place span {
		font-size: 14px;
	}
}
.position-info-section {
	background: #F1ECE5;
	padding: 50px 0;
	padding-bottom: 100px;
}
.position-info-section p {
	color: #76777A;
	font-size: 16px;
}
.position-info-section h3 {
	color: #76777A;
	font-size: 24px;
	font-weight: bold;
}
.empty-results {
	padding: 16px 0;
    color: #404040;
}
.all-contacts-section {
	background: #F1ECE5;
	padding: 100px 0;
}
.all-contacts-section .one-single-section {
	padding-top: 32px;
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 100px;
    row-gap: 40px;
}
@media(max-width: 1200px) {
	.all-contacts-section .one-single-section {
		display: flex;
		flex-wrap: wrap;
		gap: 48px;
	}
}
.all-contacts-section .chapter.get-big {
	grid-column: 1 / 4;
}
.all-contacts-section .chapter .contact-all-blocks.is-big {
	display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 100px;
    row-gap: 32px;
}
@media(max-width: 700px)
{
	.all-contacts-section .chapter .contact-all-blocks.is-big {
		grid-template-columns: repeat(1,minmax(0,1fr));
	}
}
.all-contacts-section .one-single-section.not-first {
	padding-top: 50px;
}
.all-contacts-section .chapter {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.all-contacts-section .chapter .person,
.all-contacts-section .chapter .contacts {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.all-contacts-section .chapter .person span:first {
	font-size: 18px;
}
.all-contacts-section .chapter .person span,
.all-contacts-section .chapter .contacts span {
	color: #505050;
	font-size: 16px;
}
.all-contacts-section .chapter .contacts span a {
	text-decoration: none;
	color: #505050;
}
.all-contacts-section .chapter .contacts span .email {
	color: #BE3C3C;
}
.all-contacts-section .chapter .chapter-name {
	display: flex;
	align-items: center;
	gap: 16px;
	height: 50px;
}
.all-contacts-section .chapter .chapter-name span {
	font-size: 24px;
	font-weight: bold;
	color: #505050;
}
.services {
	background: #F0ECE6;
	padding: 128px 0;
}
.services .title {
	font-size: 48px;
	font-weight: bold;
	text-align: center;
    padding-bottom: 40px;
}
.services-section {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}
@media(max-width: 800px) {
	.services-section {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media(max-width: 550px) {
	.services-section {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
.services-section .details {
	height: 569px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}
@media(max-width: 700px) {
	.services .title {
		font-size: 28px;
	}
	.services-section .details {
		height: 369px;
	}
}
.services-section .details .full-image {
	height: 100%;
	transition: all .5s ease;
	background-size: cover;
	background-position: center;
}
.services-section .details:hover .full-image {
	transform: scale(1.2);
}
.services-section .details .extra-info {
	background: #BE3C3C;
	position: absolute;
	bottom: 0;
	border-radius: 10px;
	color: #FFF;
	width: 100%;
	text-decoration: none;
}
.services-section .details .extra-info .title {
	padding: 22px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.services-section .details .extra-info .title span {
	font-size: 24px;
	font-weight: 400;
}
.services-section .details .extra-info .text {
	max-height: 0;
	transition: all .5s ease;
	padding: 0 28px;
}
@media(max-width: 1100px) {
	.services-section .details .extra-info .title span {
		font-size: 18px;
	}
}
@media(max-width: 700px) {
	.services-section .details .extra-info .title span {
		font-size: 18px;
	}
	.services-section .details .extra-info .text {
		font-size: 16px;
	}
}
.services-section .details .extra-info .text.show {
	height: 100%;
	max-height: 150px;
	padding-bottom: 16px;
}
.page-content {
	background: #F0ECE6;
	padding: 180px 0;
	display: flex;
	flex-direction: column;
	gap: 70px;
}
@media(max-width: 900px) {
	.page-content {
		padding: 70px 0;
	}
}
.page-content .content-block {
	display: flex;
	border-radius: 10px;
	min-height: 495px;
	color: #505050;
}
.page-content .content-block-text {
	border-radius: 10px;
	color: #505050;
	line-height: 24px;
}
@media(max-width: 700px) {
	.page-content .content-block {
		flex-direction: column;
		min-height: 300px;
	}
}
.page-content .content-block .background-side {
	background: #404040;
	width: 50%;
	border-radius: 10px 0 0 10px;
}
.page-content .content-block .background-side img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}
.page-content .content-block .background-side video {
	width: 100%;
    height: 100%;
    border-radius: 10px 0 0 10px;
}
.page-content .content-block .info-side {
	background: #FFF;
    width: 50%;
    display: flex;
    justify-content: center;
    padding: 0 70px;
    color: #505050;
    font-size: 16px;
    line-height: 24px;
    font-weight: 100;
    border-radius: 0 10px 10px 0;
	flex-direction: column;
}
@media(max-width: 700px) {
	.page-content .content-block .info-side {
		width: 100%;
		border-radius: 0 0 10px 10px;
		min-height: 150px;
		padding: 16px;
	}
	.page-content .content-block .background-side {
		width: 100%;
		border-radius: 10px 10px 0 0;
		min-height: 150px;
	}
}
.page-content .content-block:nth-of-type(2n) .background-side {
	border-radius: 0 10px 10px 0;
}
.page-content .content-block:nth-of-type(2n) .background-side img,
.page-content .content-block:nth-of-type(2n) .background-side video {
	border-radius: 0 10px 10px 0;
}
.page-content .content-block .info-side h1 {
	font-size: 36px;
    color: #000;
	line-height: 40px;
}
.page-content .content-block:nth-of-type(2n) .info-side {
	order: -1;
	border-radius: 10px 0 0 10px;
}
@media(max-width: 700px) {
	.page-content .content-block:nth-of-type(2n) .background-side {
		border-radius: 0 0 10px 10px;
	}
	.page-content .content-block:nth-of-type(2n) .info-side {
		order: -1;
		border-radius: 10px 10px 0 0;
	}
	.page-content .content-block .info-side h1 {
		font-size: 26px;
		color: #000;
	}
}
.page-content .simple-text-block {
	color: #505050;
	font-size: 16px;
	line-height: 24px;
}
.transport-slider {
	padding: 0 64px;
}
.transport-slider .transport-slide {
	height: 357px;
	background-size: cover;
}
.brands-block .all-brands {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 32px;
}
@media(max-width: 1000px)
{
	.brands-block .all-brands {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media(max-width: 700px)
{
	.brands-block .all-brands {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
.brands-block .all-brands .brand-wrapper {
	background: #FFF;
	border-radius: 10px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.brands-block .all-brands .brand-wrapper img {
	height: 100%;
	width: 100%;
    padding: 16px;
    object-fit: contain;
}
/* Production */
.production {
	background: #F1ECE5;
	padding: 0 2.5%;
	padding-top: 145px;
	padding-bottom: 64px;
}
@media(max-width: 700px) { 
	.production {
		padding-top: 65px;
	}
}
.production .production-categories {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}
@media(max-width: 1000px) {
	.production .production-categories {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media(max-width: 700px) {
	.production .production-categories {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media(max-width: 450px) {
	.production .production-categories {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
.production .production-categories .production-category {
	background: #FFF;
	border-radius: 10px;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 32px 48px;
	color: #000000;
	font-size: 18px;
	position: relative;
	height: 449px;
	justify-content: end;
}
.production .production-categories .production-category .name-amount {
    text-align: center;
}
.production .production-categories .production-category span {
	text-align: center;
	transition: all .4s ease;
}
.production .production-categories .production-category:hover span {
	margin-bottom: 32px;
}
.production .production-categories .production-category img {
	width: 70%;
	position: absolute;
	top: 38%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 270px;
	object-fit: contain;
	transition: all .4s ease;
}
@media(max-width: 700px) {
	.production .production-categories .production-category {
		height: 330px;
	}
	.production .production-categories .production-category img {
		height: 170px;
	}
}
.production .production-categories .production-category:hover img {
	transform: translate(-50%, -50%) scale(1.2);
}
.production .production-categories .production-category:hover .more-details-link {
	bottom: 32px;
	opacity: 1;
}
.production .production-categories .production-category .more-details-link {
	position: absolute;
    bottom: 10px;
    transition: all .4s ease;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: #BE3C3C;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.production .production-categories .production-category .more-details-link img {
	height: 8px;
    position: relative;
    transform: none;
}
.production .production-categories .production-category .more-details {
	position: absolute;
    bottom: 10px;
    transition: all .4s ease;
    opacity: 0;
    font-size: 14px;
    color: #7F7F7F;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: auto;
}
.production .production-categories .production-category:hover .more-details {
	bottom: 32px;
	opacity: 1;
}
.production .production-categories .production-category .name-amount .amount {
	text-align: center;
}
/* Single Product */
.single-product {
	background: #F1ECE5;
}
@media(max-width: 700px) {
	.single-product {
		padding-top: 40px;
	}
}
.single-product .single-product-area {
	background: #FFF;
	border-radius: 10px;
	display: flex;
	position: relative;
	height: 676px;
	width: 100%;
	margin-top: 100px;
}
@media(max-width: 700px) {
	.single-product .single-product-area {
		flex-direction: column;
		height: auto;
		padding: 48px 0;
		width: 90%;
		padding-top: 0;
	}
}
.single-product .single-product-area .close-button {
	position: absolute;
	right: 32px;
	top: 32px;
	transition: all .3s ease;
	cursor: pointer;
	background: none;
    border: none;
    z-index: 9;
}
.single-product .single-product-area .close-button:hover {
	transform: rotate(90deg);
}
.single-product .single-product-area .image-side {
	display: flex;
	align-items: center;
	height: 100%;
    width: 40%;
    justify-content: center;
	position: relative;
}
@media(max-width: 700px) {
	.single-product .single-product-area .image-side {
		width: 100%;
		height: 250px;
	}
	.single-product .single-product-area .close-button {
		right: 16px;
		top: 16px;
		height: 48px;
	}
}
.single-product .single-product-area .image-side .product-image {
    background-repeat: no-repeat;
    height: 315px;
	cursor: zoom-in;
}
.single-product .single-product-area .image-side .zoomable-image {
	/*display: none;*/
	height: 100%;
    width: 100%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
}
#zoomC {
	/* (A) DIMENSIONS */
	width: 500px;
	height: 100%;
   
	/* (B) BACKGROUND IMAGE */
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 1;
}
@media(max-width: 700px) {
	#zoomC {
		height: 160px;
	}
}
.single-product .single-product-area .image-side .zoomable-image.active {
	display: block;
	height: 100%;
    width: 100%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
	cursor: zoom-out;
}
.single-product .single-product-area .product-details {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	height: 100%;
    width: 60%;
    gap: 32px;
	padding: 0 32px;
}
.single-product .single-product-area .product-details .title {
	font-size: 36px;
	line-height: 48px;
	font-weight: 100;
}
@media(max-width: 700px) {
	.single-product .single-product-area .product-details {
		width: 90%;
		margin: auto;
		gap: 16px;
		padding: 0 8px;
	}
	.single-product .single-product-area .image-side .product-image {
		height: 180px;
	}
	.single-product .single-product-area .product-details .title {
		font-size: 24px;
		padding-top: 16px;
		line-height: 36px;
		width: 90%;
	}
}
.single-product .single-product-area .product-details .description {
    line-break: auto;
}
.single-product .single-product-area .product-details table {
	width: 70%;
	border-collapse: collapse;
}
@media(max-width: 800px) {
	.single-product .single-product-area .product-details table {
		width: 100%
	}
}
.single-product .single-product-area .product-details table td {
	color: #505050;
	font-size: 16px;
	border-bottom: 2px solid #F1ECE5;
	height: 50px;
	vertical-align: middle;
}
.single-product .single-product-area .product-details table .td-for-mobile {
	display: none;
}
@media(max-width: 700px) {
	.single-product .single-product-area .product-details table {
		width: 100%;
	}
	.single-product .single-product-area .product-details table .td-for-desktop {
		display: none;
	}
	.single-product .single-product-area .product-details table .td-for-mobile {
		display: block;
	}
	.single-product .single-product-area .product-details table td {
		padding: 8px 0;
	}
}
.similar-products-block {
	padding: 50px 0;
}
.similar-products-block .title {
	font-size: 36px;
	font-weight: 100;
	text-align: center;
}
.similar-products-block .similar-products {
	padding: 32px;
}
@media(max-width: 700px) {
	.similar-products-block .similar-products {
		padding: 32px 2.5%;
	}
	.similar-products-block .title {
		font-size: 28px;
	}
}
.similar-products-block .similar-products .similar-product-single a {
	background: #FFF;
	border-radius: 10px;
	height: 449px;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    padding: 42px;
	text-align: center;
}
.similar-products-block .similar-products .similar-product-single a .image {
	height: 100%;
    position: absolute;
    top: 50px;
	left: 50%;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 212px;
	max-height: 200px;
	transition: all .4s ease;
}
.similar-products-block .similar-products .similar-product-single a:hover .image {
	transform: translateX(-50%) scale(1.2);
}
/* Products With Filters */
.products {
	background: #F1ECE5;
}
.products .filters {
	padding: 40px 0;
	display: flex;
    gap: 100px;
	flex-wrap: wrap;
}
@media(max-width: 1200px) {
	.products .filters {
		gap: 20px;
	}
}
@media(max-width: 700px) {
	.products .filters {
		display: none;
	}
}
.products .filters .category {
	display: flex;
    align-items: center;
    gap: 32px;
}
.products .filters .category .category-name {
	font-size: 16px;
}
.products .filters .category .options {
	display: flex;
	gap: 16px;
}
.products .filters .category .options .filter-button {
	border: 1px solid #BE3C3C;
    border-radius: 50px;
    padding: 10px 28px;
    background: none;
    color: #BE3C3C;
    font-family: 'DM Sans';
    cursor: pointer;
    transition: all .4s ease;
	text-decoration: none;
}
.products .filters .category .options .filter-button:hover {
	background: #BE3C3C;
	color: #FFF;
}
.products .filters .category .options .filter-button.active {
	background: #BE3C3C;
	color: #FFF;
}
.filters-mobile {
	padding-top: 16px;
    padding-bottom: 16px;
	display: none;
}
@media(max-width: 700px) {
	.filters-mobile {
		display: block;
	}
}
.filters-mobile .actual-filters {
	display: flex;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: all .4s ease;
    border-radius: 0 0 10px 10px;
}
.filters-mobile .actual-filters.active {
	padding: 16px;
    max-height: 400px;
    opacity: 1;
    pointer-events: auto;
}
.filters-mobile .filter-button {
	background: #FFF;
	border-radius: 10px;
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
    padding: 0 16px;
    cursor: pointer;
}
.filters-mobile .filter-button.active {
	border-radius: 10px 10px 0 0;
}
.filters-mobile .filter-button .down-arrow {
	transition: all .4s ease;
}
.filters-mobile .filter-button .down-arrow.active {
	transform: rotate(180deg);
}
.filters-mobile .filter-button > div {
	display: flex;
	align-items: center;
	gap: 26px;
}
.filters-mobile .actual-filters .category {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.filters-mobile .actual-filters .category .category-name {
	font-size: 16px;
}
.filters-mobile .actual-filters .category .options {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.filters-mobile .actual-filters .category .options .filter-button {
	border: 1px solid #BE3C3C;
    border-radius: 50px;
    padding: 10px 28px;
    background: none;
    color: #BE3C3C;
    font-family: 'DM Sans';
    cursor: pointer;
    transition: all .4s ease;
    height: fit-content;
}
.filters-mobile .actual-filters .category .options .filter-button.active {
	background: #BE3C3C;
    color: #FFF;
}
.products .all-products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding-bottom: 48px;
}
.empty-search-result {
	padding: 100px 0;
	color: #505050;
	text-align: center;
}
@media(max-width: 1200px) {
	.products .all-products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media(max-width: 900px) {
	.products .all-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media(max-width: 700px) {
	.products .all-products {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
.products .all-products .single-product {
	background: #FFF;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 48px;
    gap: 64px;
    color: #000000;
    font-size: 18px;
    position: relative;
    height: 449px;
    justify-content: end;
}
.products .all-products .single-product img {
	transition: all .4s ease;
}
.products .all-products .single-product:hover img {
	transform: scale(1.2);
}
.products .all-products .single-product .name-amount .name {
	text-align: center;
}
.products .all-products .single-product .name-amount {
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: center;
}
.products .all-products .single-product img {
    width: 170px;
    object-fit: contain;
}
.other-products-categories {
	padding-bottom: 64px;
}
@media(max-width: 700px) {
	.other-products-categories {
		display: none;
	}
}
.other-products-categories .title {
	font-size: 36px;
	text-align: center;
    padding-bottom: 32px;
    font-weight: 100;
}
.other-products-categories .products-categories {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
@media(max-width: 900px) {
	.other-products-categories .products-categories {
		grid-template-columns: repeat(2, 1fr);
	}
}
.other-products-categories .products-categories .other-product {
	background: #FFF;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 48px;
    gap: 64px;
    color: #000000;
    font-size: 18px;
    position: relative;
    height: 449px;
    justify-content: end;
}
.other-products-categories .products-categories .other-product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 270px;
}
.position-description {
	color: #76777A;
}
.position-description li::before {
	content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
	color: #BE3C3C; /* Change the color */
	font-weight: bold; /* If you want it to be bold */
	display: inline-block; /* Needed to add space between the bullet and the text */
	width: 1em; /* Also needed for space (tweak if needed) */
	margin-left: -1em; /* Also needed for space (tweak if needed) */
  }
/* Some Classes */
.display-flex {
	display: flex;
}
/* General Elements */
.header-block-position {
	height: 400px;
	background: #BE3C3C;
	position: relative;
	padding-top: 110px;
	overflow: hidden;
}
.header-block-position .main-info .hero-image {
	position: absolute;
    height: 100%;
    width: 700px;
    background-repeat: no-repeat;
    right: 0px;
    background-size: cover;

}
@media(max-width: 700px) {
	.header-block-position .main-info .hero-image {
		display: none;
	}
}
.header-block-position .main-info {
	height: 100%;
}
.header-block-position .main-info .position-info {
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
	position: relative;
	z-index: 1;
}
.header-block-position .position-info .position-name {
	font-size: 48px;
	color: #fff;
	z-index: 9;
	max-width: 900px;
}
@media(max-width: 700px) {
	.header-block-position .position-info .position-name {
		font-size: 24px;
	}
}
.header-block-position .position-info .position-place span {
	font-size: 16px;
	color: #fff;
}
.header-block-position .position-info .position-place {
	display: flex;
	gap: 10px;
}
.header-block {
	height: 597px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}
@media(max-width: 700px) {
	.header-block {
		max-height: 300px;
		padding: 0 16px;
		padding-top: 110px;
	}
}
.header-block .main-info {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.header-block .main-info .hero-icon {
	z-index: 9;
}
@media(max-width: 700px) {
	.header-block .main-info .hero-icon {
		height: 64px;
		margin-bottom: 8px;
	}
}
.header-block .main-info .title {
	font-size: 64px;
	color: #FFF;
	z-index: 9;
}
@media(max-width: 700px) {
	.header-block .main-info .title {
		font-size: 28px;
		font-weight: 200;
		text-align: center;
	}
}
.header-block .main-info .hero-image {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    backdrop-filter: brightness(0.0);
	filter: brightness(0.5);
	-webkit-filter: brightness(0.5);
	-moz-filter: brightness(0.5);
	-ms-filter: brightness(0.5);
	background-size: cover;
    background-position: center;
}
/* Popups */
.popup {
	position: fixed;
    width: 100%;
    height: 100%;
    background: #00000066;
    top: 0;
    left: 0;
    z-index: 99;
	display: flex;
    align-items: center;
    justify-content: center;
}
.popup .popup-without-image {
	height: 480px;
    background: #fff;
    width: 70%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 100px;
    gap: 16px;
	position: relative;
}
@media(max-width: 700px) {
	.popup .popup-without-image {
		width: 90%;
		height: auto;
		padding: 50px;
	}
}
.popup .popup-without-image .close-button {
	top: 16px;
    right: 16px;
    position: absolute;
	cursor: pointer;
	transition: all .4s ease;
}
.popup .popup-without-image .close-button:hover {
	transform: rotate(-90deg);
}
.popup .popup-without-image .title {
	font-size: 36px;
	color: #404040;
	text-align: center;
}
.popup .popup-without-image .description {
	font-size: 16px;
	color: #76777A;
	text-align: center;
	padding-top: 16px;
	padding-bottom: 32px;
	line-height: 27px;
}
.popup .popup-without-image .link-button {
	background: #BE3C3C;
	color: #fff;
	border-radius: 50px;
	transition: all .4s ease;
	text-decoration: none;
	padding: 16px 40px;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.popup .popup-without-image .link-button:hover {
	background: #DD4F4F;
}
.popup .popup-with-image {
	min-height: 480px;
    background: #fff;
    width: 70%;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
	position: relative;
}
.popup .popup-with-image .image-side {
	width: 50%;
	object-fit: cover;
	border-radius: 10px 0 0 10px;
}
.popup .popup-with-image .information-side {
	width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
	padding: 32px;
}
@media(max-width: 700px) {
	.popup .popup-with-image {
		flex-direction: column;
		width: 90%;
		height: auto;
	}
	.popup .popup-with-image .image-side {
		width: 100%;
		border-radius: 10px 10px 0 0;
	}
	.popup .popup-with-image .information-side {
		width: 100%;
	}
}
.popup .popup-with-image .close-button,
.popup .popup-only-image .close-button {
	top: 16px;
    right: 16px;
    position: absolute;
	cursor: pointer;
	transition: all .4s ease;
	z-index: 9;
}
.popup .popup-with-image .close-button:hover,
.popup .popup-only-image .close-button:hover {
	transform: rotate(-90deg);
}
.popup .popup-with-image .title {
	font-size: 36px;
	color: #404040;
	text-align: center;
}
.popup .popup-with-image .description {
	font-size: 16px;
	color: #76777A;
	text-align: center;
	padding-top: 16px;
	padding-bottom: 32px;
	line-height: 27px;
}
.popup .popup-with-image .link-button {
	background: #BE3C3C;
	color: #fff;
	border-radius: 50px;
	transition: all .4s ease;
	text-decoration: none;
	padding: 16px 40px;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.popup .popup-with-image .link-button:hover {
	background: #DD4F4F;
}
.popup .popup-only-image {
	height: 480px;
    max-width: 70%;
    border-radius: 10px;
	position: relative;
}
@media(max-width: 800px)
{
	.popup .popup-only-image {
		height: 350px;
	    max-width: 90%;
	}
}
.popup .popup-only-image .only-image {
	height: 100%;
    width: 100%;
    object-fit: cover;
    position: relative;
    border-radius: 10px;
}
.carrer-send-popup {
	position: fixed;
    width: 100%;
    height: 100%;
    background: #00000066;
    top: 0;
    left: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carrer-send-popup .carrer-send-content {
	background: #F0ECE6;
    border-radius: 10px;
    padding: 32px;
    max-width: 700px;
	min-width: 600px;
	display: flex;
    flex-direction: column;
    gap: 16px;
	position: relative;
	width: 100%;
}
@media(max-width: 900px) {
	.carrer-send-popup .carrer-send-content {
		min-width: unset;
	}
}
.carrer-send-popup .carrer-send-content .action {
	background: #BE3C3C;
    border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 22px 72px;
    font-size: 14px;
    width: fit-content;
    border: none;
    cursor: pointer;
    transition: all .4s ease;
}
.carrer-send-popup .carrer-send-content .action:hover {
	background: #DD4F4F;
}
.carrer-send-popup .carrer-send-content label {
	display: none;
}
.carrer-send-popup .carrer-send-content .text, 
.carrer-send-popup .carrer-send-content .textarea {
    font-size: 16px;
    color: #505050;
    padding-bottom: 16px;
}
.carrer-send-popup .carrer-send-content input {
	height: 60px;
    border-radius: 5px;
    background: #FFF;
    border: none;
    color: #7F7F7F;
    padding: 16px;
	width: 100%;
}
.carrer-send-popup .carrer-send-content textarea {
	min-height: 200px;
    border-radius: 5px;
    background: #FFF;
    border: none;
    color: #7F7F7F;
    padding: 16px;
	width: 100%;
}
.carrer-send-popup .carrer-send-content .send-form-button, 
.carrer-send-popup .carrer-send-content #Form_CvForm_action_sendCv {
	background: #BE3C3C;
	border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 22px 72px;
    font-size: 14px;
    width: fit-content;
    border: none;
    cursor: pointer;
    transition: all .4s ease;
}
.carrer-send-popup .carrer-send-content .send-form-button:hover, 
.carrer-send-popup .carrer-send-content #Form_CvForm_action_sendCv:hover {
	background: #DD4F4F;
}
.carrer-send-popup .carrer-send-content .close-button {
	height: 35px;
    position: absolute;
    right: 16px;
    top: 16px;
	cursor: pointer;
}
.not-found-page {
	padding-top: 110px;
}
.not-found-page .container .content {
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 150px 0;
}
.not-found-page .container .content .title {
	display: flex;
    gap: 16px;
    align-items: center;
    font-size: 70px;
    color: #505050;
}
@media(max-width: 900px) {
	.not-found-page .container .content .title {
	    font-size: 26px;
	}
}
.not-found-page .container .content .title span {
	font-weight: 500;
    color: #be3c3c;
}
.not-found-page .container .content .go-homepage-button {
	background: #be3c3c;
    color: #fff;
    padding: 10px 30px;
    border-radius: 3px;
    font-size: 16px;
}
.default-red-button {
	background: #BE3C3C;
	border-radius: 50px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
	padding: 21px 57px;
	font-size: 14px;
	width: fit-content;
	transition: all .4s ease;
	letter-spacing: 1px;
}
.default-red-button:hover {
	background: #DD4F4F;
}
.default-red-button-letter-spaced {
	background: #BE3C3C;
	border-radius: 50px;
	color: #fff;
	letter-spacing: 2px;
	text-decoration: none;
	text-transform: uppercase;
	padding: 22px 40px;
	font-size: 14px;
	width: fit-content;
	border: none;
	cursor: pointer;
	transition: all .5s ease;
}
.default-red-button-letter-spaced:hover {
	background: #DD4F4F;
}
.approval-with-privacy {
	display: flex;
	align-items: center;
	font-size: 14px;
	gap: 10px;
}
.approval-with-privacy .text {
	padding-bottom: 0!important;
	margin: 0;
}
.approval-with-privacy a {
	color: #BE3C3C;
	text-decoration: none;
}
.text-h2 {
	font-size: 36px;
	font-weight: bold;
}
.relative {
	position: relative;
}
.overflow-visible {
	overflow: visible!important;
}
@media(max-width: 700px) {
	.text-h2 {
		font-size: 28px;
		font-weight: 100;
	}
}
.red-color-link {
	font-size: 16px;
	color: #BE3C3C;
	text-decoration: none;;
}
.grey-color-link {
	font-size: 16px;
	color: #505050;
	text-decoration: none;;
}
.padding-top-48px {
	padding-top: 48px;
}
.message .success {
	color: #BE3C3C;
    font-size: 14px;
}
footer {
	height: 100px;
	border-top: 1px solid #F1ECE5;
}
footer ul {
	display: flex;
	gap: 48px;
	align-items: center;
	height: 100%;
	list-style: none;
}
footer ul li {
	margin: 0;
}
footer ul li a {
	font-size: 14px;
	color: #000;
	text-decoration: underline;
}
footer .copyright-mobile {
	display: none;
}
@media(max-width: 700px) {
	footer ul .copyright {
		display: none;
	}
	footer .copyright-mobile {
		padding-bottom: 38px;
		display: block;
	}
}
.breadcrumb {
	z-index: 9;
}
@media(max-width: 700px) {
	.breadcrumb {
		display: none;
	}
}
.breadcrumb .breadcrumb-list {
	list-style: none;
	display: flex;
	gap: 16px;
	padding: 12px 0;
}
.breadcrumb .breadcrumb-list li {
	margin: 0;
}
.breadcrumb .breadcrumb-list li a {
	text-decoration: none;
	font-size: 14px;
	color: #000;
}
.breadcrumb .breadcrumb-list li a.white {
	color: #FFF;
}
.breadcrumb .breadcrumb-list li a::after {
	content: ">";
	padding-left: 12px;
}
.breadcrumb .breadcrumb-list li:last-of-type a::after {
	display: none;
}
/* Splide Edits */
.splide__arrow {
	background: none!important;
}
/* Cookie TermsFeed */
.termsfeed-com---palette-light.termsfeed-com---nb {
    background-color: #f0ece6!important;
    color: #fff!important;
    border-radius: 7px 0 0 0;
}
.termsfeed-com---palette-light .cc-nb-okagree {
    color: #fff;
    background-color: #be3c3c!important;
}
.termsfeed-com---palette-light .cc-nb-reject {
    color: #fff;
    background-color: #be3c3c!important;
}
.termsfeed-com---palette-light .cc-nb-changep {
    background-color: #ffffff!important;
    color: #404040!important;
}