/* Fonts */
@font-face {
	font-family: 'Yanone Kaffeesatz';
	src: url('../fonts/YanoneKaffeesatz-Regular.woff') format('woff2'),
		url('../fonts/YanoneKaffeesatz-Regular.woff2') format('woff');
	font-display: swap;
}
@font-face {
	font-family: 'Yanone Kaffeesatz';
	src: url('../fonts/YanoneKaffeesatz-Light.ttf') format('truetype');
	font-display: swap;
}

/* Variables */
:root {
	--primary-font-family: "Yanone Kaffeesatz", sans-serif;
	--secundary-font-family: "Dancing Script", cursive;
	--primary-font-weight: 200;

    --primary-color: #c8ae85;
    --text-color: #444;
	--white-color: #fff;
	--menu-background-color: rgba(200, 94, 81, 0.95);
	--body-background-color: #e9f2f7;

    --font-size-base: 1.1rem;
	--font-size-subtitle: 1.3rem;
	--font-size-title_int: 2.8rem; 

	--width-full: 100%;
	--height-full: 100%;
	--header-height: 70px;
	--width-menu-icon: var(--header-height);

	--display-flex: flex;
	--text-align-center: center;
	--flex-direction-column: column;

	--postition-absolute: absolute;
	--position-relative: relative;

	--box-shadow: 0 0 6px rgba(0,0,0, 0.5);
	--z-index_100: 100;
	--gap-sm: 15px;
	--cursor-pointer: pointer;
}

/* Preloader full screen */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* Cambia al color que desees */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Círculo girando */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top: 5px solid #e63946; /* Color del borde animado */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Animación */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}
body{
	background: var(--body-background-color);
	font-family: "Yanone Kaffeesatz", sans-serif;
	min-width: 320px;
	overflow-x: hidden;
}
/* General styles */

/* paragraphs */
p{
	font-size: var(--font-size-base);
}
/* pre-title */
.eyebrow{
	color: var(--primary-color); 
	font-size: var(--font-size-base); 
	letter-spacing: 4px; 
	margin-bottom: 20px; 
}
/* main title */
.title__int{
	font-size: var(--font-size-title_int);
	font-weight: var(--primary-font-weight);
	color: var(--text-color);
}
/* title-underline */
.hr-title{
	width: 70px; 
	margin: 10px auto 20px auto; 
	border: 1px solid var(--primary-color);
}
@media only screen and (max-width: 640px) {
	.title__int{
		font-size: 2.2rem;
	}
}
/* Lazy loading animation */
.section {
	transition: 0.7s;
	opacity: 1;
}
.section--hidden {
	opacity: 0.5;
}

/* Nav */
.responsive-nav{
	height: var(--header-height);
	padding: 50px;
	top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center; 
	width: 100%;
	position: absolute;
	right: 0;
	z-index: 300;
}
	.hamburger{
		padding: 10px;
		right: 50px;
		font-size: 3rem;
	}
	.hamburger:hover{
		background-color: rgba(255,255,255, 0.1);
		backdrop-filter: blur(50px);
	}
	.hamburger.scrolled{
		background-color: var(--primary-color);
	}
	.menu-nav-responsive{
		display: flex;
		width: 50vw;
		background-color: var(--menu-background-color);
		transition: transform .3s ease-in-out;
		transform: translate(110%);
	}
	.spread{
		transform: translate(0);
	}
	.menu-nav-responsive ul{
		width: 100%;
	}
	.menu-nav-responsive ul li{
		margin-bottom: 5px 0 !important;
	}
	.menu-nav-responsive ul li a{
		font-size: 1.9rem;
		margin: 0 0 0 20%;
	}
	.menu-nav-responsive ul li a:hover{
		border-bottom: 1px solid #fff;
	}
	.logo_in_menu{
		top: 20%;
		left: 15%;
		font-size: var(--font-size-base);
		text-transform: uppercase;
		letter-spacing: 2px;
		padding-left: 10px;
	}
	.close_icon{
		width: 40px;
		height: 40px;
		color: var(--white-color);
	}
	.logo-res{
		width: 180px;
		height: auto;
	}

/* Menu Socials */
.social_media_in_menu{
	background-color: none;
	bottom: 50px;
	left: 50px;
}

.social_media_in_menu_content a{
	padding: 10px;
	box-sizing: border-box;
}

/* General style Socials*/
.fixed_social-media-icon i, .social_media_in_menu_content{
	font-size: 30px;
}


/* Slider Section  */
.slider{
    height: 100vh;
    overflow: hidden;
}
	.slider .list .item::before{
		position: absolute;
		content: '';
		width: 100%;
		height: 100%;
		inset: 0;
		background-color: rgba(0, 0, 0, 0.3);
	}
	.slider .list .item{
		inset: 0;
	}
	.slider .list .item img{
		object-fit: cover;
	}
	.slider .list .item .content{
		top: 20%;
		max-width: 80%;
		left: 50%;
		transform: translateX(-50%);
		box-sizing: border-box;
		padding: 50px 40% 50px 0;
	}
	.slider .list .item .content .description{
		font-size: 1.2rem;
	}
	.slider .list .item .content .title,
	.slider .list .item .content .type{
		font-size: 5em;
		margin-bottom: 20px;
		text-align: left;
		text-transform:capitalize;
	}

	.slider .list .item .button{
		margin-top: 50px;
		display: none;
	}
	.slider .list .item .button button{
		border: 1px solid #fff;
		background: none;
		transition: 0.4s;
		padding: 15px 35px;
	}
	.slider .list .item .button button:hover{
		background-color: rgba(255,255,255, 0.3);
	}

	/* Thumbnail Section  */
	.thumbnail{
		bottom: 50px;
		left: 50%;
		width: max-content;
		gap: 20px;
	}
	.thumbnail .item{
		width: 10em;
		height: 10em;
		flex-shrink: 0;
	}
	.thumbnail .item img{
		object-fit: cover;
	}

	/* Controls Section  */
	.nextPrevArrows{
		top: 82%;
		right: 55%;
	}
	.nextPrevArrows .button{
		width: 60px;
		height: 60px;
		border-radius: 50%;
		border: 1px solid #fff;
		color: #fff;
		transition: .5s;
		font-size:2rem;
		font-weight: 100;
	}
	.nextPrevArrows .button:hover{
		background-color: rgba(255,255,255, 0.15);
		backdrop-filter: blur(50px);
	}
	.nextPrevArrows ion-icon {
		font-size: 1.2rem;
	}

	/* Animation Part */
	.slider .list .item:nth-child(1){
		z-index: 1;
	}

	/* animation text in first item */
	.slider .list .item:nth-child(1) .content .title,
	.slider .list .item:nth-child(1) .content .type,
	.slider .list .item:nth-child(1) .content .description,
	.slider .list .item:nth-child(1) .content .buttons
	{
		transform: translateY(50px);
		filter: blur(20px);
		opacity: 0;
		animation: showContent .5s 1s linear 1 forwards;
	}
	@keyframes showContent{
		to{
			transform: translateY(0px);
			filter: blur(0px);
			opacity: 1;
		}
	}
	.slider .list .item:nth-child(1) .content .title{
		animation-delay: 0.4s !important;
	}
	.slider .list .item:nth-child(1) .content .type{
		animation-delay: 0.6s !important;
	}
	.slider .list .item:nth-child(1) .content .description{
		animation-delay: 0.8s !important;
	}
	.slider .list .item:nth-child(1) .content .buttons{
		animation-delay: 1s !important;
	}
	/* Animation for next button click */
	.slider.next .list .item:nth-child(1) img{
		width: 150px;
		height: 220px;
		bottom: 50px;
		left: 50%;
		animation: showImage .5s linear 1 forwards;
	}
	@keyframes showImage{
		to{
			bottom: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}
	}
	.slider.next .thumbnail .item:nth-last-child(1){
		overflow: hidden;
		animation: showThumbnail .5s linear 1 forwards;
	}
	@keyframes showThumbnail{
		from{
			width: 0;
			opacity: 0;
		}
	}
	.slider.next .thumbnail{
		animation: effectNext .5s linear 1 forwards;
	}
	@keyframes effectNext{
		from{
			transform: translateX(150px);
		}
	}
	/* Animation for prev button click */
	.slider.prev .list .item:nth-child(2){
		z-index: 2;
	}
	.slider.prev .list .item:nth-child(2) img{
		animation: outFrame 0.5s linear 1 forwards;
		bottom: 0;
		left: 0;
	}
	@keyframes outFrame{
		to{
			width: 150px;
			height: 220px;
			bottom: 50px;
			left: 50%;
			border-radius: 20px;
		}
	}
	.slider.prev .thumbnail .item:nth-child(1){
		overflow: hidden;
		opacity: 0;
		animation: showThumbnail .5s linear 1 forwards;
	}
	.slider.next .nextPrevArrows .button,
	.slider.prev .nextPrevArrows .button{
		pointer-events: none;
	}
	.slider.prev .list .item:nth-child(2) .content .title,
	.slider.prev .list .item:nth-child(2) .content .type,
	.slider.prev .list .item:nth-child(2) .content .description,
	.slider.prev .list .item:nth-child(2) .content .buttons
	{
		animation: contentOut 1.5s linear 1 forwards!important;
	}
	@keyframes contentOut{
		to{
			transform: translateY(-150px);
			filter: blur(20px);
			opacity: 0;
		}
	}
	/* Fixed Socials */
	.fixed_social_media{
		left: 0;
		top: 40%;
		z-index: 300;
	}
		.fixed_social_media_content{
			padding: 20px 15px 12px 15px;
			background-color: rgba(255,255,255, 0.15);
			backdrop-filter: blur(50px);
		}

		.fixed_social_media_content .social-media-icon{
			color: var(--white-color);
			border-color: var(--white-color);
		}
	
/* Intro */
.contenedor{
	max-width: 1400px;
	margin: 160px auto 160px auto;
}
	.title__serv{
		margin-bottom: 40px;
	}
	.contenedor-servicio{
		font-size: 20px;
	}
	.cont1{
		margin: 20px auto;
		width: 70%;
	}

/* Parallax */
.paralax{
	background-image: url(../img/img17.jpg);
	height: 650px;
	background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	object-fit: cover;
	position: relative;
	max-width: 1600px;
	margin:  0 auto;
}
	.paralax::after{
		content: '';
		position: absolute;
		inset: 0;
		width: 95%;
		height: 90%;
		margin: auto;
		background: none;
		z-index: 100;
		border: 1px solid var(--primary-color);
	}
	.circle-logo{
		margin-bottom: 50px;
	}
	.circle-logo img{
		width: 170px;
		height: auto;
	}
	.text-img{
		background-color: rgba(18, 31, 56, 0.5);
	}
	.text-img h2{
		color: var(--white-color) !important;
	}
	.text-img p{
		width: 85%;
	}
	.paralax_social-content{
		margin-top: 40px;
	}
	.paralax-i_content{
		padding: 40px;
		gap: 20px;
	}
	.paralax_n_1{
		border-right: 1px solid #666666;
	}
	.paralax-i_content ion-icon{
		color: var(--primary-color);
		font-size: 2.3em;
	}
	.paralax-i_content h4{
		font-size: var(--font-size-subtitle);
	}

/*-- About --*/
.about{
	max-width: 1500px;
	margin: 250px auto 50px auto;
	gap: 50px;
}	
	.about_img{
		width: 30%;
		padding: 10px;
		border: 1px solid var(--primary-color);
	}
	.about img{
		width: 100%;
		object-fit: cover;
	}
	.text-about{
		width: 30%;
		margin-left: 50px;
	}
	.text-about .hr-title{
		margin: 10px 0 20px 0 !important;
	}
	.text-about .about_p{
		line-height: 25px;
	}
	.responsive_img_sm{
		display: none;
	}
	.featured_content{
		margin-top: 50px;
	}
	.featured_i_about{
		display: flex;
		padding: 20px;
	}
	.featured_i_about ion-icon{
		color: var(--primary-color);
		margin: 20px 20px 0 0;
		font-size: 2.5em;
	}
	.f-i_a-1{
		border-bottom: 1px solid #ccc;
	}
	.featured_text_content{
		text-align: left;
	}
	.featured_text_content h3{
		font-size: 1.8em;
		margin-bottom: 10px;
	}


/* Scroll triggered counter */
.counter-container{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	margin: 100px auto 250px auto;
	max-width: 1200px;
	padding: 0 5%;
	gap: 50px;
}	
.counter-wrap{
	text-align: center;
	color: var(--primary-color);
}
.counter-wrap h2{
	font-weight: 900;
}
.counter-wrap h3{
	font-size: var(--font-size-base);
	letter-spacing: 3px;
	text-transform: uppercase;
}
	
/*  Gallery */	
.gallery_content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 10px;
	width: 80%;
	max-width: 1200px;
	margin: auto;
}	
	.content_gal_img{
		position: relative;
	}
	.content_gal_img::after{
		content: '';
		position: absolute;
		inset: 0;
		width: 90%;
		height: 90%;
		border: 1px solid var(--primary-color);
		margin: auto;
		background: none;
	}
	.front_title{
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		color: var(--white-color);
		font-size: 2em;
	}
	.div1 {
		grid-column: span 2 / span 2;
		grid-row: span 2 / span 2;
	}	
	.div2 {
		grid-column-start: 1;
		grid-row-start: 3;
	}	
	.div3 {
		grid-column-start: 2;
		grid-row-start: 3;
	}
	.div4 {
		grid-column-start: 3;
		grid-row-start: 1;
	}
	.div5 {
		grid-column-start: 4;
		grid-row-start: 1;
	}
	.div6 {
		grid-column: span 2 / span 2;
		grid-row: span 2 / span 2;
		grid-column-start: 3;
		grid-row-start: 2;
	}


/* Zoom Image */
.img_light{
	position: fixed;
	background: #e9f2f7;
	top: 0;
	left: 0;
	transform: translate(100%);
	transition: transform .2s ease-in-out;
	z-index: 400;
	color: var(--text-color);
}
	.open_img_content{
		display: flex;
		align-content: center;
		width: 100%;
		height: 100%;
		gap: 50px;
		margin: 30px;
		flex-wrap: wrap;
	}
	.show{
		transform: translate(0);
	}
	.add_img{
		width: 45%;
		height: auto;
	}
	.text_desc_image_light{
		width: 35%;
		align-content: center;
		text-align: left;
	}
	.text_desc_image_light .hr-title{
		margin: 0 0 20px 0 !important;
	}
	.showImage{
		transform: scale(1);
	}
	.add_title{
		font-size: var(--font-size-title_int);
		font-family: var(--secundary-font-family);
	}
	.add_description{
		font-size: var(--font-size-base);
	}
	.info_clients{
		width: 100%;
		height: 70px;
		justify-content: left;
	}
	.close{
		top: 15px;
		right: 15px;
		width: 40px;
		height: 40px;
	}


/*-- Images section --*/
.esc_ord_cont{
	margin: 250px 0;
}
	.content_img{
		width: 50%;
	}
	.content-desc{
		width: 35%;
		margin: auto;
	}
	.hr-desc{
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	.content-desc p{
		margin-right: 20px;
	}
	.responsive_desc_img_sm{
		display: none;
	}


/* Best of (video section)*/
	.head_vid_section{
		padding: 4%;
		margin: 250px auto 0 auto;
		max-width: 1200px;
	}
	.head_vid_section h2{
		width: 30%;
		font-size: var(--font-size-title_int);
		color: var(--primary-color);
		border-right: 1px solid #ccc;
	}
	.head_vid_section p{
		width: 70%;
		padding-left: 20px;
	}
	.vids_content{
		max-width: 1200px;
		justify-content: space-between;
		margin: 0 auto;
		background-color: var(--white-color);
		padding: 40px;
		gap: 20px;
		border-bottom: 4px solid var(--primary-color);
		box-sizing: border-box;
	}
	.vids_content video{
		width: 65%;
		height: auto;
	}
	.text_video_content{
		width: 30%;
		text-align: left;
	}
	.text_video_content .hr-title{
		margin: 10px 0 20px 0 !important;
	}

/*-- Reviews --*/
.cards{
	max-width: 1200px;
    margin: 180px auto;
}
	.content-cards{
		flex-wrap: wrap;
	}
	.card {
		height: 300px;
		width: 500px;
		padding: 20px;
		box-sizing: border-box;
		align-items: flex-end;
		text-decoration: none;
	}
	.inner {
		height: 60%;
		background: rgba(255,255,255, 0.8);
		box-sizing: border-box;
		padding: 40px;
	}
	.card .title {
		font-size: var(--font-size-subtitle);
		font-weight:300;
		margin: 0 0 20px 0;
	}
	.card__1{
		background-image: url(../img/img7.jpg);
		background-position:bottom;
		background-size: cover;
		object-fit: cover;
	} 
	.card__2 {
		background: url(../img/img8.jpg);
		object-fit: cover;
		background-size: cover;
	}
	.card__3 {
		background: url(../img/img9.jpg);
		object-fit: cover;
		background-size: cover;
	}

/*-- FORM --*/
.contact-form-sec{
	padding: 50px 0;
	background: url("../img/img20.jpg");
	object-fit: cover;
	background-size: cover;
}
	.text-contact{
		margin-bottom: 20px;
	}
	.title-contact{
		margin: 0;
	}
	.text-contact{
		margin: 30px 0;
	}
	.form-sec{
		margin: auto;
	}
	.form{
		background-color: #fff;
		padding: 40px 60px; 
		max-width: 700px;
		width: 45%;
	}
	.name, .email, .tel, .date{
		height: 3em;
		margin-bottom: 30px;
	}
	input, textarea{
		padding: 0 20px;
		font-size: var(--font-size-subtitle);
		outline: none !important;
		border: 0;
		font-family: var(--primary-font-family);
		border-bottom: 1px solid #bdbdbd;
	}
	textarea{
		padding-top: 10px;
		height: 150px;
	}
	#button{
		margin-top: 30px;
		background: var(--primary-color);
		padding: 25px 40px;
		transition: 0.5s;
	}
	#button:hover{
		background: #ccb899;
	}
	.form_contac-info{
		justify-content: space-evenly;
		background-color: var(--primary-color);
		width: 220px;
		height: 400px;
		padding: 10px;
		color: var(--white-color);
		border-radius: 3px;
		box-shadow: 0 2px 6px 3px rgba(255, 255, 255, 0.2);
	}

	.form_contac-info h3{
		font-size: 1.8em;
		width: 78%;
	}

	.form_contac-info .contact__info .icon-contact-cont h4{
		font-size: var(--font-size-base);
		color: var(--white-color) !important;
	}

	.form_contac-info .contact__info .icon-contact-cont h4 span{
		font-weight:900;
		text-decoration: underline;
	}

	.form_contac-info .social-media-icon{
		color: var(--white-color) !important;
		border: 1px solid var(--white-color);
	}

	.form_contac-info .social-media-icon:hover{
		background: var(--white-color);
		color: var(--primary-color) !important;
		border-color: var(--white-color);
	}

/* Footer Section */
footer{
    padding-bottom: 0.1px;
}
	.footer-content{
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(326px, 1fr));
		padding-top: 60px;
		padding-bottom: 40px;
		margin: auto;
		width: 90%;
		gap: 40px;
	}
	.brand{
		margin-bottom: 20px;
		font-weight: 200;
		font-size: 3em;
	}
	.brand p{
		font-weight: 500;
	}
	.footer__nav h3::before, .contact__info h3::before{
		position: absolute;
		left: 0;
		bottom: 0;
		border-bottom: 1px solid var(--primary-color);
		width: 50%;
	}
	.footer__nav h3, .contact__info h3{
		font-weight: 500;
		font-size: 1.5em;
	}
	.footer__nav ul{
		list-style: none;	
		margin-top: 25px;
		padding-left: 0;
	}
	.footer__nav ul li{
		margin-bottom: 10px;
	}
	.footer__nav ul li a{
		text-decoration: none;
		font-size: 	var(--font-size-base);
	}
	.hr_footer{
		margin: 10px 0 20px 0 !important; 
	}
	.footer_logo{
		width: 200px;
		height: 100px;
	}
	.min_text{
		margin-top: 40px;
	}
	.social-media{
		margin-top: 20px;
	}
	.social-media-icon, .contact__icon{
		width: 40px;
		height: 40px;
		border: 1px solid #444;
		border-radius: 50%;
	}
	.social-media-icon:hover, .contact__icon:hover{
		background: var(--primary-color);
		color: var(--white-color);
		border-color: var(--primary-color);
	}
	.social-media-icon ion-icon, .contact__icon ion-icon{
		font-size: 17px;
	}
	.contact__icon{
		text-decoration: none;
		margin-right: 20px;
	}
	.icon-contact-cont h4{
		font-family: var(--primary-font-family);
		font-size: var(--font-size-subtitle);
		font-weight: 300;
	}
	.copyright{
		height: 80px;
		background-color: #e1e1e1;
	}
	.copyright p{
		line-height: 80px;
	}


/* Observer Animation (js/lazy_loading.js) */
.animated{
      opacity: 0;
      transition: all 0.5s;
}
	.mostrarArriba{
	    animation: mostrarArrriba 1s
	}
  	@keyframes mostrarArrriba{
		0% {
			transform: translateY(60px);
		}
		100%{
			transform: translateY(0);
		}
	}


/* Display: flex */
.responsive-nav, .fixed_social_media_content, .social_media_in_menu_content, .thumbnail, .nextPrevArrows, .nextPrevArrows .button, .head, .paralax_social-content, .paralax-i_content, .about, .text_desc_image_light, .img_light, .info_clients, .head_vid_section, .vids_content, .text_video_content, .content-cards, .card, .inner, .social-media, .contenedor-servicio, .contact__info, .icon-contact-cont, .form_contac-info, .form-sec, .circle-logo, .circle-logo_S, .social-media-icon, .contact__icon{
	display: var(--display-flex); 
}
/* align-items: center */
.nextPrevArrows, .nextPrevArrows .button, .contenedor-servicio, .circle-logo, .circle-logo_S, .paralax_social-content, .paralax-i_content, .inside-column, .img_light, .head_vid_section, .inner, .icon-contact-cont, .form_contac-info, .form-sec, .social-media-icon, .contact__icon{
	align-items: center;
}
/* justify-content: center */
.img_light, .contenedor-servicio, .circle-logo, .circle-logo_S, .paralax_social-content, .paralax-i_content, .img_light, .open_img_content, .text_desc_image_light, .head_vid_section, .text_video_content, .content-cards, .inner, .form-sec, .social-media-icon, .contact__icon{
	justify-content: center;
}
/* flex-direction: column */
.fixed_social_media_content, .contenedor-servicio, .text_desc_image_light, .inner, .text_video_content, .contact__info, .form_contac-info, .circle-logo_S {
	flex-direction: var(--flex-direction-column);
}
/* text-align: center */
.titulos, .title__serv, .contenedor-servicio, .cont1, .text-img, .gallery_header, .content__galery .title_gal, .cards, .subtitle, .card .title, .title-contact, .social-media-icon, .contact__icon, .copyright{
	text-align: var(--text-align-center);
}
/* width: 100% */
.slider, .slider .list .item, .slider .list .item img, .slider .list .item .content, .thumbnail .item img, .contenedor-servicio, .text-img, .gallery-item .img-gal, .img_light, .contact-form-sec, input, textarea, .copyright{
	width: var(--width-full);
}
/* height: 100%; */
.slider .list .item, .slider .list .item img, .thumbnail .item img, .text-img, .img_light, .contact-form-sec{
	height: var(--height-full);
}
/* z-index: 100 */
.thumbnail, .nextPrevArrows, .slider.prev .list .item img, .text-img{
	z-index: var(--z-index_100);
}
/* position: relative */
.slider, .thumbnail .item, .gallery-item, .card, .card .title, .footer__nav h3, .contact__info h3{
	position: var(--position-relative);
}
/* position: absolute */
.fixed_social_media, .logo_in_menu, .social_media_in_menu, .slider .list .item, .slider .list .item .content, .hamburger, .thumbnail, .nextPrevArrows, .slider.next .list .item:nth-child(1) img, .slider.prev .list .item:nth-child(2) img, .social_media_in_menu, .overlay, .close{
	position: var(--postition-absolute);  
}
/* cursor: pointer */
.slider .list .item .button button, .nextPrevArrows .button, .add_img, .img-gal, .close, #button, .hamburger{
	cursor: var(--cursor-pointer);  
}
/* gap: 15px */
.fixed_social_media_content, .social_media_in_menu_content, .nextPrevArrows, .social-media, .inside-column, .column, .content-gallery, .info_clients, .contact__info, .content-cards {
	gap: var(--gap-sm);
}
/* font-family: var(--secundary-font-family) */
.slider .list .item .content .title, .slider .list .item .content .type, .circle-logo_S h2, .front_title, .featured_text_content h3, .overlay, .head_vid_section h2, .text_video_content .title__int, .brand {
	font-family: var(--secundary-font-family);
}
/* color: #444 */
.title__serv, .featured_text_content, .text_video_content .title__int, .head_vid_section p, .card .title, .subtitle, .text-contact, .social-content, .footer__nav ul li a, .social-media-icon, .contact__icon, input, textarea, .icon-contact-cont h4{
	color: var(--text-color);  
}
/* color: #fff */
.logo, .logo_in_menu, .menu-nav-lg a, .fixed_social-media-icon i, .social_media_in_menu_content a, .content, .title, .type, .slider .list .item .button button, .head, .text-img, #button, .hamburger, .menu-nav-responsive ul li a{
	color: var(--white-color);
}