/*
Theme Name: Los pingos del Taita
Theme URI: https://mati.agency
Version: 1.0
Author: @matiagency
Author URI: https://mati.agency
*/

:root,
[data-bs-theme=light]{

	/* Defaults */
	--header-min-height: 65px;	

	/* Colors */
	--bs-heading-color: inherit; /* H1, H2 colors */

    --bs-body-color: #181818;
    --bs-body-bg: #F8F6EE; /* Off White */

    --bs-primary: #ED682A;
    --bs-primary-rgb: 237,104,42;

    --bs-secondary: #CA531C;
    --bs-secondary-rgb: 202,83,28;

    --bs-white: #F8F6EE;
    --bs-white-rgb: 248,246,238;

    --bs-light: #F6F2EF;

    --bs-dark: #262626;
    --bs-dark-rgb: 38,38,38;
    
    --bs-black: #181818;
    --bs-black-rgb: 24,24,24;

	/* Links */
    --bs-link-color: #0d6efd;
    --bs-link-color-rgb: 13,110,253;
    --bs-link-decoration: underline;
    --bs-link-hover-color: #0a58ca;
    --bs-link-hover-color-rgb: 10,88,202;

    /* BS Borders */
    --bs-border-width: 1px;
   	--bs-border-color: #181818;
    --bs-border-radius: 12px;

}



@media screen and (min-width:1200px){
	:root,
	[data-bs-theme=light]{
		--header-min-height: 90px;
		--header-fixed-min-height: 70px;
	}
}

/* Utilities */


.has-primary-color, .text-primary{ 
	color: var(--bs-primary) !important; 
}

.has-secondary-color, .text-secondary{ 
	color: var(--bs-secondary) !important; 
}

.has-primary-background-color, .bg-primary{ 
	background: var(--bs-primary) !important; 
}

.has-secondary-background-color, .bg-secondary{ 
	background: var(--bs-secondary) !important; 
}

.has-white-background-color, .bg-white{
	background: var(--bs-white) !important; 
}

.has-dark-background-color, .bg-dark{
	background: var(--bs-dark) !important; 
}

.has-black-background-color, .bg-black{
	background: var(--bs-black) !important; 
}

.bg-light{
	background: var(--bs-light) !important;
}

/* Page transitions */

#page-transition{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bs-dark); /* tu color */
  display: flex;              /* no dupliques display */
  align-items: center;
  justify-content: center;

  /* Visible por defecto (evita FOUC); GSAP maneja el fade-out */
  opacity: 1;
  visibility: visible;
  pointer-events: all;

  /* Suavidad del fade */
  will-change: opacity;
}

#page-transition .logo{
  max-width: 68.5px;
  margin: 0 auto;
  filter: invert(1);
  animation: loading 2s infinite;
}



/* 3. Structure */

html{
	scroll-behavior: smooth;
	background: var(--bs-dark);
}

body{
	font-size: 16px;
	font-weight: 400;
	font-family: 'Atyp Text';
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

/*body.header-fixed{
	padding-top: var(--header-min-height);
}
*/

a{
	color: inherit;
	text-decoration: none;
	transition: 0.3s all;
}

h1, h2, h3, h4, h5, h6{
	font-family: 'Atyp Display';
	font-weight: 500;
}

h1 { font-size: 30px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

@media screen and (min-width: 992px) {
	h1 { font-size: 34px; }
	h2 { font-size: 30px; }
	h3 { font-size: 26px; }
	h4 { font-size: 22px; }
	h5 { font-size: 20px; }
	h6 { font-size: 18px; }
}

b, strong {
    font-weight: 600;
}

video {
	border-radius: 0px 0px 12px 12px;
}


.ratio-4x3 {
	aspect-ratio: 4 / 3;	
}
.ratio-4x3 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 4. Structure > Framework */

.main {
	width: 100%;
	min-height: 80vh;
	overflow: hidden;
}

.container,
.container-fluid{
	width: 100%;
	max-width: 100%;
}
.container{
	max-width: 1600px;
}
.container-fluid{
	max-width: 1920px;
}

/*
[class^="col-"]{
	padding-left: 15px;
	padding-right: 15px;
}*/

@media screen and (min-width: 992px){
	.col-lg-5-2{
		-ms-flex: 0 0 20%;
	    flex: 0 0 20%;
	    max-width: 20%;
	}
}

@media screen and (min-width: 1440px){
	.container,
	.container-fluid{
		padding: 0 70px;
	}
}

/* Image */
.image img{
	border-radius: 12px;
}

@media screen and (min-width: 992px){
	.w-md-50 {
		max-width: 50%;
	}
}


/* Keyframes */
@keyframes bounce {
	0% {
		transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		-moz-transform: translate(0, 0);
	}
	50% {
		transform: translate(0, -100%);
		-webkit-transform: translate(0, -100%);
		-moz-transform: translateY(0, -100%);
	}
	100% {
		transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		-moz-transform: translate(0, 0);
	}          
}


@keyframes dropDown{
    0% {
        transform: scaleY(0);
    }
    80% {
        transform: scaleY(1.1);
    }
    100% {
        transform: scaleY(1);
    }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


@keyframes loading {
	0% {
		transform: scale(1.0);
		opacity: 1;
	}
	50% {
		transform: scale(0.95);
		opacity: 0.5;
	}
	100% {
		transform: scale(1.0);
		opacity: 1;
	}          
}

/* Structure > extras */


.overh{
	overflow: hidden;
}

#pageloader{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--bs-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	transition: opacity 0.5s ease-in-out;
	z-index: 1000;
	opacity: 0;
	pointer-events: none;
}
#pageloader.show{
	opacity: 1;
	pointer-events: all;
}


.grecaptcha-badge{
	opacity:0;
}


/* Components > buttons */

.btn{
	min-width: 150px;
	--bs-btn-padding-x: 30px;
	--bs-btn-padding-y: 10px;
	--bs-btn-font-weight: 500;
	border-radius: 50px;
}
.btn i{
	vertical-align: -1px;
	font-size: 18px;
	margin-right: 6px;
}

@media screen and (max-width: 576px){
	.btn-block-mobile{
		width: 100%;
	}
}

.btn-primary{
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-color: var(--bs-light);
    --bs-btn-border-color: var(--bs-primary);

    --bs-btn-hover-bg: var(--bs-secondary);
    --bs-btn-hover-color: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-secondary);

    --bs-btn-active-bg: var(--bs-secondary);
    --bs-btn-active-color: var(--bs-light);
    --bs-btn-active-border-color: var(--bs-secondary);

    
    --bs-btn-disabled-bg:  var(--bs-secondary);
    --bs-btn-disabled-border-color:  var(--bs-secondary);
}
.btn-outline-primary{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);

    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-primary);

    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-color: var(--bs-light);
    --bs-btn-active-border-color: var(--bs-primary);
}

.btn-outline-light{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-light);
    --bs-btn-border-color: var(--bs-light);

    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);

    --bs-btn-active-bg: transparent;
    --bs-btn-active-color: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
}

.btn-secondary{
    --bs-btn-bg: var(--bs-secondary);
    --bs-btn-color: var(--bs-light);
    --bs-btn-border-color: var(--bs-secondary);

    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: var(--bs-secondary);
    --bs-btn-hover-border-color: var(--bs-secondary);

    --bs-btn-active-bg: var(--bs-light);
    --bs-btn-active-color: var(--bs-secondary);
    --bs-btn-active-border-color: var(--bs-secondary);
}
.btn-outline-secondary{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-secondary);
    --bs-btn-border-color: var(--bs-secondary);

    --bs-btn-hover-bg: var(--bs-secondary);
    --bs-btn-hover-color: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-secondary);

    --bs-btn-active-bg: var(--bs-secondary);
    --bs-btn-active-color: var(--bs-light);
    --bs-btn-active-border-color: var(--bs-secondary);
}

/* See more */
.see-more{
	display: inline-flex;
	font-family: 'Atyp Display';
	font-size: 15px;
	color: var(--bs-body-color) !important;
	align-items: center;
}

.see-more:before{
	content: '';
	display: inline-flex;
	width: 24px;
	height: 19px;
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='19' viewBox='0 0 24 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2017_180)'%3E%3Cpath d='M14.5 0.5L23.5 9.5' stroke='%23181818' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.5 18.5L23.5 9.5' stroke='%23181818' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M0.5 9.5H23.5' stroke='%23181818' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2017_180'%3E%3Crect width='24' height='19' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 16px;
	transition: margin 0.3s ease;
}

article:hover .see-more,
.see-more:hover{
	color: var(--bs-primary) !important;
}

article:hover .see-more:before,
.see-more:hover:before{
	margin-right: 20px; 
	filter: brightness(0) saturate(100%) invert(78%) sepia(89%) saturate(4361%) hue-rotate(318deg) brightness(109%) contrast(105%);
}


/**/
ul.lined li{
	border-bottom: solid 1px var(--bs-dark);
	padding: 12px 0;
}
.bg-black ul.lined li,
.bg-dark ul.lined li{
	border-color: var(--bs-white);
}

/* Btn Float */

.btn-float{
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 32px;
    text-align: center;
    z-index: 9999;
    border-radius: 50%;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    transition: 0.3s all;
}

.btn-float-whatsapp{
    color: #fff;
    background: #25D366;
}
.btn-float-whatsapp:hover{
    background: #fff;
    color: #25D366;
}

@media screen and (min-width:768px){
	.btn-float{
	    width: 70px;
	    height: 70px;
	    font-size: 40px;
	}
}

.btn-loading:before{
	content: '';
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
    -webkit-animation: spinner-border .75s linear infinite;
}

/* Components > forms */

label{
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 8px;
	display: block;
}
.bg-primary label,
.bg-dark label{
	color: var(--bs-white);
}

.required{
	color: #ff0000;
}

.form-select,
.form-control{
	background: transparent;
	color: var(--bs-white);
	line-height: 1.8em;
	border-color: var(--bs-white);
	border-radius: 50px;
}
.form-control::placeholder{
	color: var(--bs-white);
}
.form-select:focus,
.form-control:focus{
	background: transparent;
	color: var(--bs-white);
    box-shadow: none !important;
    border-color: #898989;
}
textarea.form-control{
	border-radius: 15px;
}

/* Form checkbox */

.form-check{
	display: inline-block;
}

.form-check-input:focus{
	box-shadow: none;
}
.form-check-input:checked{
	background-color: var(--bs-dark);
	border-color: var(--bs-dark);
}

input[type="checkbox"] ~ label,
input[type="radio"] ~ label{
	margin: 0;
	font-weight: 400;
}

.searcher .form-control{
	color: var(--bs-dark);
	border-color: var(--bs-dark);
}
.searcher .form-control::placeholder{
	color: var(--bs-dark);
}

/* Form files */

/*.input-file-group{
	position: relative;
	display: block;
	padding: 30px 15px;
	margin: 0;
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
	background-color: var(--bs-body-bg);
	border: var(--bs-border-width) dashed var(--bs-border-color);
	border-radius: 15px;
	cursor: pointer;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.input-file-group input{
	opacity: 0;
	width: 0;
}

.input-file-group .files{
	max-height: 100px;
	overflow: auto;
}
.input-file-group .files span{
	display: block;
	font-size: 12px;
	text-transform: uppercase;
}
.input-file-group:hover,
.input-file-group:focus{
	border-color: var(--bs-dark);
}*/

/* Forms > Show password */

.show_password{
	position: absolute;
	bottom: 0;
	right: 15px;
	padding: 15px;
}
.show_password.active,
.show_password:hover{
	color: #f58426;
}

/* Components > modals */

.modal{
	z-index: 99999;
}
.modal-backdrop{
	z-index: 9999;
}
.modal .modal-content{
	border: 0;
	border-radius: 0;
}

.modal .btn-close{
	position: absolute;
	top: 10px;
	right: 15px;
	width: 30px;
	height: 30px;
	padding: 0;
	background: url('assets/img/icons/icon-cross.svg') no-repeat center;
	background-size: contain;
	z-index: 10;
	opacity: 0.5;
}

@media screen and (min-width: 992px) {
	.modal .btn-close{
		top: 20px;
		right: 50px;
	}
}

#modalVideo .modal-content{
	background-color: #000;
}
#modalVideo .modal-body{
	padding: 0;
}
#modalVideo .btn-close{
	top: -40px;
	right: 0;
	color: #fff;
	font-size: 30px;
	filter: brightness(0) invert(1);
}


.modal .form{
	max-width:560px;
	margin: 0 auto;
}

/* Components > socialmedia */

.socialmedia h4{
	font-size: 18px;
	line-height: 24px;
}

ul.socialmedia{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
	gap: 5px;
	list-style: none;
}
ul.socialmedia li{
	display: inline-block;
	vertical-align: middle;
}
ul.socialmedia li a{
	display: block;
	font-size: 26px;
	padding: 5px;
}
ul.socialmedia li a:hover{
	color: var(--bs-primary);
}

@media screen and (min-width: 992px){	
	ul.socialmedia{
		justify-content: flex-start;
	}
	ul.socialmedia li a{
		font-size: 24px;
	}
}


/* Components > Slider  */

.slider{
	position: relative;
}
.slider.swiper:has(.swiper-pagination){
    padding-bottom: 40px;
}
@media screen and (min-width: 992px){	
	.slider.swiper:has(.swiper-pagination){
	    padding-bottom: 60px;
	}
}


.slider.swiper .swiper-pagination {
	bottom: 0;
}
.slider.swiper .swiper-pagination-bullet{
	background: #8A8A8A;
	opacity: 1;
}
.slider.swiper .swiper-pagination-bullet-active {
	background: #181818;
	opacity: 1;
}

.slider.swiper .swiper-button-next,
.slider.swiper .swiper-button-prev{
	position: absolute;
	width: 35px;
	height: 28px;
    color: transparent;
    background-image: url('assets/img/icons/icon-arrow-prev.svg');
    background-repeat: no-repeat;
    background-position: center;
   	background-size: contain;
}
.slider.swiper .circle.swiper-button-next,
.slider.swiper .circle.swiper-button-prev{
	width: 30px;
	height: 30px;
	background: var(--bs-white);
	border: 1px solid var(--bs-dark);
	border-radius: 50%;
	background-image: url('assets/img/icons/icon-arrow-prev-circle.svg');
	 background-repeat: no-repeat;
    background-position: center;
	background-size: 12px;
}
.slider.swiper .swiper-button-next { 
	background-image: url('assets/img/icons/icon-arrow-next.svg'); 
}
.slider.swiper .circle.swiper-button-next {
	background-image: url('assets/img/icons/icon-arrow-next-circle.svg'); 
}
.slider.swiper .swiper-button-prev:after,
.slider.swiper .swiper-button-next:after{
	content: none;
}

@media screen and (min-width: 992px){
	.slider.swiper .circle.swiper-button-next,
	.slider.swiper .circle.swiper-button-prev{
		width: 56px;
		height: 56px;
		background-size: 24px;
	}
}

/**/
.slider.swiper .swiper-pagination.left{
	text-align: left;
	width: 50%;
}

.slider.swiper .swiper-button-next.bottom,
.slider.swiper .swiper-button-prev.bottom{
	top: auto;
	bottom: 0;
}
.slider.swiper .swiper-button-prev.bottom.right{
	left: auto;
	right: 70px;
}





/* Categories Filter */

.categories-filter ul {
    margin: 0 -15px;
    padding: 0 15px;
    white-space: nowrap;
    overflow: auto;
    display: flex;
    gap: 16px;
}
.categories-filter ul li a {
    display: block;
    padding: 8px 22px;
    border: solid 1px var(--bs-primary);
    border-radius: 50px;
    position: relative;
}
.categories-filter ul li a.active,
.categories-filter ul li a:hover{
	background: var(--bs-primary);
	color: var(--bs-white);
}


/* Components > Title */

.title{
	position: relative;
	margin-bottom: 30px;
}

.title h1,
.title h2,
.title h3,
.title h4,
.title h5{
	margin: 0;
}

.title h1{
	font-size: 32px;
	font-weight: 400;
}
.title h2{
	font-size: 36px;
	margin-bottom: 12px;
}
.title h3{
	font-size: 32px;
	margin-bottom: 12px;
	line-height: 1.1em;
}
.title h4{
	font-size: 26px;
}
.title h5{
	font-size: 20px;
}
.title span{
	color: var(--bs-primary);
}
.title p:not(.subtitle){
	margin: 0;
	margin-top: 12px;
}

.title .btn{
	margin-top: 20px;
}
.title .subtitle{
	font-family: 'Atyp Display';
	font-weight: 500;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 0.05em;
	margin-bottom: 5px;
}

.title .lead{
	font-family: 'Atyp Display';
	font-size: 19px;
	font-weight: 500;
	padding-top: 12px;
	padding-bottom: 12px;
	line-height: 1.2em;
}

.title .description {
	font-size: 17px;
}
.title.lined{
	padding-bottom: 15px;
	border-bottom: 1px solid #262626;
}
.title.max-width{
	max-width: 622px;
}
.title.max-width-lg{
	max-width: 992px;
}


@media screen and (min-width: 992px){
	.title{
		margin-bottom: 50px;
	}
	.title h1{
		font-size: 90px;
	}
	.title h2{
		font-size: 48px;
	}
	.title h3{
		font-size: 48px;
	}
	.title h4{
		font-size: 32px;
	}
	.title h5{
		font-size: 22px;
	}
	.title p:not(.subtitle){
		margin-top: 16px;
	}

	.title .lead{
		padding-top: 16px;
		padding-bottom: 16px;
		font-size: 27px;
	}

	.title .description {
		font-size: 18px;
	}
	.title .btn{
		margin-top: 50px;
	}

}

/* Components > Video Player */

.video-player{
	position: relative;
	width: 100%;
	padding: 25% 0;
	background: #000 no-repeat center;
	background-size: cover;
}
.video-player .play{
	display: none;
	position: absolute;
	top: calc(50% - 42px);
	left: calc(50% - 42px);
	width: 84px;
	height: 84px;
	font-size: 48px;
	line-height: 48px;
	text-align: center;
	align-content: center;
	background: transparent;
	border: solid 1px var(--bs-white);
	color: #fff;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
	padding-left: 10px;
}
.video-player.active .play,
.video-player:hover .play{
	background: var(--bs-white);
	color: var(--bs-body-color);
}
.video-player .play:hover{
	transform: scale(1.1);
}
.video-player .play i{
	margin-left: 4px;
}

.video-player.allowed{
	cursor: pointer;
}
.video-player.allowed .play{
	display: block;
}

/* Components > Pagination */

.pagination {
	justify-content: center;
	width: 100%;
	padding: 60px 0 0;
	text-align: center;
}
.pagination .screen-reader-text {
	display: none;
}
.pagination .page-numbers {
	display: inline-block;
	vertical-align: middle;
	padding: 6px 12px;
	font-size: 18px;
}
.pagination .page-numbers:hover{
	color: var(--bs-primary);
}
.pagination .page-numbers.current{
	font-weight: 600;
	color: var(--bs-primary);
}

@media screen and (min-width: 992px) {
	.pagination .page-numbers {
		font-size: 22px;
	}
}


/* Components > Share */

.share  {
	margin: 40px 0;
    padding: 20px 0;
    border-top: solid 1px #36373A;
    border-bottom: solid 1px #36373A;
}
.share ul {
	display: flex;
	align-items: center;
	margin: 0;
}
.share ul li a{
	display: block;
	padding: 8px;
	font-size: 26px;
	color: var(--bs-primary);
}
.share ul li a:hover{
	color: var(--bs-secondary);
}

@media screen and (min-width: 992px){
	.share ul li a{
		font-size: 32px;
	}
}

/* Components > Errors */

.errors {
	text-align: center;
	padding: 30px 0;
}
.errors.error-nologued {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60dvh;
}

.errors .smile {
	margin: 0;
	font-size: 50px;
	transform: rotate(90deg);
	color: var(--bs-primary);
}
@media screen and (min-width: 992px){
	.errors .smile {
		font-size: 80px;
	}
}


/* Structure */

.section{
	position: relative;
	padding: 50px 0;
}

@media screen and (min-width: 992px){
	.section{
		padding: 100px 0;
	}
}

/* Structure > Header */

.header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: var(--header-min-height);	
	transition: 0.3s all;
	z-index: 999;
	align-content: center;
	background: linear-gradient(180deg, #000000 -24.12%, rgba(255, 255, 255, 0) 100%);
	background-blend-mode: multiply;
}
.header .container{
	height: var(--header-min-height);	
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .logo{
	display: inline-block;
	max-width: 68.5px;
	z-index: 2;
}

.header.fixed{
	position: fixed;
	background: transparent;
	z-index: 999;
    -webkit-animation: slideInDown 0.3s ease-out;
    -moz-animation: slideInDown 0.3s ease-out;
}

/**/
.header.relative .navigation,
.header.fixed .navigation{
	background: var(--bs-white);
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.07);
}

.header.relative {
	position: relative;
	background: transparent;
}

/* Header > Navigation */

.header .nav-menu {
	position: relative;
	float: right;
	width: 35px;
	padding: 15px 0;
	cursor: pointer;
	z-index: 21;
	overflow: hidden;
}
.header .nav-menu .menu-line {
	float: right;
	display: block;
	width: 100%;
	height: 2px;
	margin: 4px 0;
	background: var(--bs-dark);
	transition: 0.3s;
	border-radius: 6px;
}

.header:not(.fixed):not(.active):not(.relative) .nav-menu .menu-line{
	background: var(--bs-white);
}

.header .nav-menu.active .menu-line:nth-child(1) { transform: rotate(45deg); width: 40px; margin-top: 14px; }
.header .nav-menu.active .menu-line:nth-child(3) { transform: rotate(-45deg); width: 40px; margin-top: -16px; }
.header .nav-menu.active .menu-line:nth-child(2) { opacity: 0; }

.header .navigation {
	display: none;
	position: absolute;
	top: var(--header-min-height);
	left: 0;
	width: 100%;
	height: calc(100dvh - var(--header-min-height));
	margin: 0;
	text-align: center;
	background: var(--bs-white);
	align-content: center;
}
.header .navigation.active {
	display: block;
}
.header .navigation .menu {
	position: relative;
	margin: 0;
}
.header .navigation .menu li a {
	font-family: 'Atyp Display';
	display: block;
	position: relative;
	padding: 10px 12px;
	font-size: 18px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.header .navigation .menu li .sub-menu{
	display: none;
	margin: 0;
	padding: 0;
	list-style: none;
}
.header .navigation .menu li.open-submenu > ul{
	display: block;
}

.header .navigation .language{

}
.header .navigation .language li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 -2px;
}
.header .navigation .language li a{
	text-transform: uppercase;
	padding-left: 10px;
	padding-right: 10px;
}
.header .navigation .language li a:after{
	content: '';
	position: absolute;
	top: 40%;
	right: 0;
	width: 1px;
	height: 20%;
	background: var(--bs-gray);
}
.header .navigation .language li:last-child a:after{
	content: none;
}
.header .navigation .language li.current-lang a{
	text-decoration: underline;
}




/**/
.header:not(.fixed):not(.active):not(.relative) .navigation .menu li a{
	color: var(--bs-white);
}

.header:not(.fixed):not(.active):not(.relative) .logo{
	filter: invert(1) brightness(1);
}


/**/
.header .navigation ul li:not(.menu-contact) a:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 1px;
	background: var(--bs-dark);
	transition: 0.3s all;
}
.header .navigation ul li:not(.menu-contact).current-menu-item a:after,
.header .navigation ul li:not(.menu-contact) a:hover:after{
	left: 0;
	width: 100%;
}

.header:not(.fixed):not(.active):not(.relative) .navigation ul li:not(.menu-contact) a:after{
	background: var(--bs-white);
}


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

	.header .logo {
		max-width: 68.5px;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}

	.header .nav-menu {
		display: none;
	}

	.header .navigation{
		display: flex;
		align-items: center;
		position: relative;
		top: auto;
		left: auto;
		width: auto;
		background: transparent;
		width: 100%;
	}
	.header .navigation ul{
		margin: 0;
	}
	.header .navigation,
	.header.relative .navigation{
		height: 100%;
		width: 80%;
		background: transparent;
		margin:  0 auto;		
		border-radius: 0px 0px 24px 24px;
	}
	.header .navigation .menu{
		width: 100%;		
	}

	.header .navigation .menu {
		display: inline-flex;
		justify-content: center;
		gap: 32px;		
	}

	.header .navigation .menu.left{
		padding-right: 90px;
		justify-content: right;
	}
	.header .navigation .menu.right{
		padding-left: 90px;
		justify-content: left;
	}

	.header .navigation .menu li a{
		padding: 5px 0px;
	}

	.header .navigation .menu li a {
		font-size: 14px;
	}

	.header .navigation .menu li a {
		text-align: left;
	}

	.header .navigation .socialmedia {
		margin-left: 25px;
	}
	.header .navigation .socialmedia li a{
		font-size: 20px;
	}

	/* Submenu */

	.header .navigation .menu li .sub-menu{
		display: none;
		position: absolute;
		top: var(--header-min-height);
		left: 0;
		width: 150px;
		background: var(--bs-white);
		box-shadow: 0 5px 5px 0 rgba(0,0,0,0.1);
		animation: dropDown 300ms ease-in-out forwards;
    	transform-origin: top center;
	}
	.header .navigation ul li:hover > .sub-menu{
		display: block;
	}
	.header .navigation .menu li .sub-menu li{
		display: block;
		margin: 0;
	}
	.header .navigation .menu li .sub-menu li a{
		display: block;
		padding: 10px 15px;
		font-size: 15px;
		color: var(--bs-dark);
		border-bottom: 1px solid #eee;
	}
	.header .navigation .menu li .sub-menu li:last-child a{
		border-bottom: 0;
	}
	.header .navigation .menu li .sub-menu li.current-menu-item > a,
	.header .navigation .menu li .sub-menu li a:hover{
		background: var(--bs-primary);
		color: var(--bs-white);
		border-bottom-color: var(--bs-primary); 
	}

	.header .navigation .menu li .sub-menu li ul{
		top: 0;
		left: 150px;
		width: 200px;
	}
	.header .navigation .menu li .sub-menu li ul ul{
		left: 200px;
	}

	/* Fixed */
	.header.fixed{
		min-height: var(--header-fixed-min-height);
	}
	.header.fixed .logo{
		margin: 14px 0;
	}
	.header.fixed .navigation .menu li .sub-menu{
		top: var(--header-fixed-min-height);
	}

}

@media screen and (max-width: 1199px){
	.header.fixed,
	.header.active {
		background: var(--bs-white);
	}

	.header .navigation ul li.open-submenu > ul{
		background: rgba(0,0,0,0.05);
	}
	.header .navigation ul li ul li a{
		padding-top: 6px;
		padding-bottom: 6px;
		font-size: 16px;
	}

	.header .navigation ul li:not(.menu-contact).current-menu-item a:after, 
	.header .navigation ul li:not(.menu-contact) a:hover:after {
		width: 60%;
		left: 20%;
	}
}




/*
	Modules
*/

/* Module > Presentation */

.presentation{
	position: relative;
	display: flex;
	align-items: center;
	height: 100dvh;
	min-height: 600px;
	padding: 30px 0;
	background: var(--bs-dark) no-repeat bottom;
	background-size: cover;
}

.presentation .title {
	color: var(--bs-white);
	z-index: 2;
}

.presentation .arrow-down{
	display: block;
	position: absolute;
	left: calc(50% - 14px);
	bottom: 0;
	width: 28px;
    height: 39px;
	background: url('assets/img/icons/icon-arrow-down.svg') no-repeat center;
	background-size: contain;
	animation: bounce 3s infinite;
	z-index: 3;
}

.presentation video{
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.presentation:before{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	left: 0;
	z-index: 1;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
}

@media screen and (min-width: 992px) {
	.presentation .arrow-down{
		bottom: 50px;
	}
}


/* Modules > Banner */

.banner{
	position: relative;
	display: flex;
	align-items: flex-end;
	height: 100dvh;
	background-color: var(--bs-dark);
	padding: 50px 0;
	min-height: 350px;
	overflow: hidden;
}
.banner .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--bs-dark) no-repeat center;
	background-size: cover;	
	z-index: 1;
}
.banner .bg img,
.banner .bg video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner .title{
	position: relative;
	margin: 0;
	color: var(--bs-white);
	z-index: 2;
}

.banner .arrow-down{
    display: block;
    position: absolute;
    right: 15px;
    bottom: 5%;
    width: 28px;
    height: 39px;
    background: url('assets/img/icons/icon-arrow-down.svg') no-repeat center;
    background-size: contain;
    animation: bounce 3s infinite;
    z-index: 3;
}
@media screen and (min-width: 992px) {
	.banner .arrow-down{
    	right: 70px;
	}
}


/* Components > Tab Menu */

.module-tabs .tabs ul {
    margin: 0 -15px;
    padding: 0 15px;
    white-space: nowrap;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;    
    gap: 12px;
    padding-bottom: 10px;
}
.module-tabs .tabs ul li a {
    display: block;
    font-size: 15px;
    padding: 10px 30px;
    position: relative;
    border: solid 1px var(--bs-dark);
    border-radius: 50px;
    text-align: center;
}
.module-tabs .tabs ul li a.active,
.module-tabs .tabs ul li a:hover{
	color: var(--bs-primary);
	border-color: var(--bs-primary);
}

.module-tabs .tabs.fixed{
	position: fixed;
	top: 70px;
	width: 100%;
	z-index: 1;
	box-shadow: 0px 5px 5px 0 rgb(0 0 0 / 0.05);
}

@media screen and (min-width: 992px) {
	.module-tabs .tabs ul {
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 20px;
	}
}

/* Module Full */

.module-full{
	position: relative;
	display: flex;
	align-items: center;
	height: 95dvh;
	background: var(--bs-dark) no-repeat center;
	background-size: cover;
	padding: 80px 0;
}

/* Module > Newsletter */
.module-newsletter .terms-note{
	font-size: 14px;
	margin-bottom: 0;
}
.module-newsletter .captcha{
	display: none;
}


/* Module > Location */
.module-location .image img{
	aspect-ratio: 1.8 / 1;
	object-fit: cover;
}

.module-location .title.w-md-50{
	max-width: 500px;
}

.module-location .video .video-player.allowed{
	border-radius: 12px;
    aspect-ratio: 1.8 / 1;
    object-fit: cover;
}

/* Module > Image & Text */
.module-img-txt .image img{
	aspect-ratio: 0.92 / 1;
	object-fit: cover;
}

.module-img-txt .title .lead{
	max-width: 533px;
}
.module-img-txt .title p:not(.subtitle){
	max-width: 545px;
}


/* Module > Gallery */
.module-gallery .swiper {
	overflow: visible;
}

.module-gallery .swiper .image img{
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

/* Module > Video */
.module-video.full video{
	border-radius: 0;
}

/* Module > Instagram */
.module-instagram .title p {
	color: var(--bs-body-color);
	margin-left: 38px;
}


/* Modules > Accordion */

.module-accordion .items .item{
	position: relative;
	margin-bottom: 3px;
	border-bottom: solid 1px var(--bs-primary);
	padding: 20px 0;
}

.module-accordion .items .item .question{
	position: relative;
	display: block;
	font-size: 18px;
	font-weight: 600;
	padding-right: 50px;

}
.module-accordion .items .item .question:after {
    content: '+';
    position: absolute;
    top: calc(50% - 10px);
    right: 0px;
    width: 20px;
    height: 20px;
    line-height: 20px;
}
.module-accordion .items .item .question[aria-expanded="true"]{
	
}
.module-accordion .items .item .question[aria-expanded="true"]:after{
	content: '-';
}

.module-accordion .items .item .answer{
	margin-top: 15px;
}

.module-accordion .items .item .answer a {
	text-decoration: underline;
}

.module-accordion .items .item .answer a:hover {
	color: var(--bs-primary);
}

.module-accordion .items .item .answer .data {
	max-width: 980px;
}

@media screen and (min-width: 992px) {
	.module-accordion .items .item .question:after {
		right: 20px;
	}
}

/* Module > Clients */

.module-clients .swiper .swiper-slide article{
    display: flex;
    align-items: center;
    justify-content: center;
}
.module-clients .swiper .swiper-slide article img {
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

.module-clients .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

/* Module > Contact */

.module-contact{
	
}

/* Module > Tabs */

.module-tabs .tab-content article {
	display: flex;
	flex-direction: column;
	align-items: center;	
}

@media screen and (min-width: 992px) {
	.module-tabs .tab-content article {
		flex-direction: row;
	}

	.module-tabs .tab-content article .thumbnail {
		min-width: 50%;
	}

	.module-tabs .tab-content article .data {
		padding: 0 25px;
	}
}



/*
	Pages
*/


/* Page > Home */
.page.home .about {
	height: 100dvh;
}
.page.home .about .title h3{
	font-weight: 400;
}
.page.home .about .title p {
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (min-width: 992px) {
	.page.home .about .title h3{
		font-size: 72px;
	}
}


.page.home .stallions .title h2{
	font-size: 48px;
	font-weight: 400;
}

@media screen and (min-width: 992px) {
	.page.home .stallions .title h2{
		font-size: 90px;
	}
}

.page.home .services .items article h2 {
	font-size: 24px;
}
.page.home .services .items article .thumbnail,
.page.home .services .items article .thumbnail img{
	aspect-ratio: 1.3 / 1;
}


.page.home .module-location .title.w-md-50{
	max-width: 665px;
}

@media screen and (max-width: 991.99px) {
	.page.home .stallions .swiper .swiper-pagination{
		display: none;
	}
}

/* Page > About */
.page.about .dedication .title {
	max-width: 1200px;
}
@media screen and (max-width: 991.99px) {
	.page.about .dedication .title h2 {
		font-size: 24px;
	}
	.page.about .dedication .title br{
		display: none;
	}
}

.page.about .team .items .item {
	margin-bottom: 24px;
}
.page.about .team .items .item .name {
	font-size: 21px;
	margin: 0;
}
.page.about .team .items .item .position{
	font-size: 15px;
}

@media screen and (min-width: 992px) {
	.page.about .team .items{
		column-count: 4;
	}
	.page.about .team .items .item{
		break-inside: avoid;
	}
}


.page.about .quotes article {
	max-width: 1030px;
}
.page.about .quotes article .name{
	font-size: 16px;
}

@media screen and (min-width: 992px) {
	.page.about .quotes article .description{
		font-size: 48px;
	}
}

/* Page > Agro */
.page.agro .agricultural .title h3{
	max-width: 460px;
}

.page.agro .production .title {
	max-width: 690px;
}

.page.agro .production .image img {
    aspect-ratio: 1.8 / 1;
    object-fit: cover;
}

/* Page > Facilities */
.page.facilities .benefits ul {
  max-width: 484px;
}
.page.facilities .benefits ul li:last-child {
  border-bottom: none;
}

.page.facilities .benefits ul li {
  position: relative;
  border-bottom: 1px solid var(--bs-white);
  padding: 14px 0 14px 40px; 
}

.page.facilities .benefits ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 26px;
  width: 26px;
  height: 20px;
  transform: translateY(-50%);
  background: url('assets/img/icons/icon-arrow-list.svg') no-repeat center;
  background-size: contain;
}


/* Page > Services */

.page.services .semen .items article{
	background: var(--bs-dark);
	aspect-ratio: 1.19 / 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	padding: 24px;
	border-radius: 12px;
}
/*	.page.services .feed-stallions article .thumbnail, 
	.page.services .feed-stallions article .thumbnail img{
		aspect-ratio: 0.81 / 1;
	}
}*/

/* Page > Auctions */
.page.auctions .previous .items article{
	position: relative;
}
.page.auctions .previous .items article a{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 2;
}

.page.auctions .previous .items article .thumbnail img{
	aspect-ratio: 0.97 / 1;
	object-fit: cover;
	transition: all 0.3s;
}
.page.auctions .previous .items article:hover .thumbnail img{
	transform: translateY(-5px);
}

/*.page.auctions .video .video-player {
    border-radius: 12px;
}*/

/* Pages > Contact */

.page.contact .content .items article h4 {
	font-size: 26px;
}
.page.contact .content .items article p{
	max-width: 260px;
	margin: 0 auto;
}

.page.contact .content .vias {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
}
@media screen and (min-width: 992px) {
	.page.contact .title h1{
		font-size: 72px;
	}
	.page.contact .content .items article h4 {
		font-size: 32px;
	}
}

.page.contact #map{
	position: relative;
	background-color: #eee;
	width: 100%;
	height: 90vh;
}
.page.contact .map .maparea{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* Pages > Thanks */

.page.page-thanks .content{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 80vh;
}

/* Pages > Internal */

.page.internal .content .title{
	text-align: center;
}
.page.internal .content article {
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}

/* Pages > Page 404 */

.page.page-404 .content,
.page.page-maintenance .content{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 80vh;
}

.page.page-maintenance .content{
	min-height: 100vh;
}

/*
	CPT Feed
*/

/* Feed > General */

.feed article{
	position: relative;
}
.feed article a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}
.feed article .thumbnail{
	display: block;
	aspect-ratio: 1.6 / 1;
	width: 100%;
	height: 100%;
	background-color: #eee;
	overflow: hidden;
	border-radius: 12px;
}
.feed article .thumbnail img{
	aspect-ratio: 1.6 / 1;
	object-fit: cover;
	width: 100%;
	transition: 0.3s all;
}
.feed article:hover .thumbnail img{
    transform: scale(1.1);
}

/* Feed > Stallions */
.feed-stallions article .thumbnail{
	position: relative;
}
.feed-stallions article .thumbnail,
.feed-stallions article .thumbnail img{
 	aspect-ratio: 1.37 / 1;
 	border-radius: 12px;
}

.feed-stallions article .thumbnail:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0);
	z-index: 2;
	transition: background 0.4s ease-in-out; 
}
.feed-stallions article:hover .thumbnail:before{
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 39.75%, rgba(0, 0, 0, 0.8) 112.99%);
}

.feed-stallions article .data h2{
	font-size: 21px;
	margin-top: 16px;
}

/* CPT > Single */
.single.stallions .banner:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35.22%, rgba(0, 0, 0, 0.75) 94.99%);
	z-index: 2;
}
.single.stallions .info-meta{
	font-family: 'Atyp Display';
	font-weight: 500;
	text-transform: uppercase;
	display: flex;
	gap: 16px;
}
.single.stallions .info-meta li:not(:last-child):after{
	content: '/';
	margin-left: 10px;
}


.single.stallions .family .items{
	gap: 30px;
}
.single.stallions .family .items li {
    min-width: 120px;
}


.single.stallions .family h6{
	text-transform: uppercase;
	font-weight: 400;
	font-size: 12px;
}

.single.stallions .family.paternal{
	border-bottom: solid 1px var(--bs-dark);
}
.single.stallions .family .table>:not(caption)>*>* {
	border: none;
	white-space: nowrap;
	width: 25%;
}

.single.stallions .family .table>:not(caption) > tr > td:first-child {
    padding-left: 0 !important;
}


@media screen and (max-width: 991.99px){
	.single.stallions .relateds .feed-stallions article .data h2{
		font-size: 16px;
	}
	.single.stallions .family .table>:not(caption)>*>*{
		min-width: 160px;
	}
}

/* Structure > Footer */

.footer a:hover{
	color: var(--bs-primary);
}

.footer .widgets{
	padding: 48px 0;
	font-size: 14px;
	text-align: center;
	color: #898989;
}
.footer .widgets h4{
	margin: 0;
	font-size: 15px;
	line-height: 28px;
	font-weight: 600;
	text-transform: uppercase;
}
.footer .widgets .logo{
	filter: invert(1) brightness(5);
	display: block;
	width: 70px;
	margin: 0 auto 30px;
	opacity: 0.5;
}

.footer .widgets .menu{
	margin: 0 0 30px;
}
.footer .widgets .menu li a{
	font-family: 'Atyp Display';
	display: block;
	padding: 3px;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.03em;
}


.footer .copyright {
	border-top: solid 1px #898989;
	padding-top: 32px;
	margin-top: 48px;
}
.footer .copyright p{
	margin: 0;
	font-size: 12px;
}

@media screen and (min-width: 992px){
	.footer .widgets{
		padding: 60px 0;
		text-align: left;
	}

	.footer .widgets .menu{
		display: inline-flex;
		gap: 32px;
	}

	.footer .copyright p{
		font-size: 16px;
	}
	.footer .copyright br{
		display: none;
	}
	
}

/* Extras */

.df-ui-share,
.df-ui-more {
    display: none !important;
}

.single.catalog .df-3dcanvas {
    top: auto !important;
}

.single.catalog,
.single.catalog ._df_book {
    height: 100vh !important;
    min-height: 100vh !important;
    display: flex;
    align-items: center;
}

.df-container >.df-ui-prev, .df-container >.df-ui-next {
    color: #FFF !important;
}