.rw-wrapper{
	width: 80%;
	position: relative;
	margin: 110px auto 0 auto;
	font-family: 'Bree Serif';
	padding: 10px;
}
.rw-sentence{
	margin: 0;
	text-align: left;
	text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
}
.rw-sentence span{
	color: #444;
	font-size: 200%;
	font-weight: normal;
}
.rw-words{
	display: inline;
	text-indent: 10px;
}
.rw-words-2 span{
	position: absolute;
	opacity: 0;
	overflow: hidden;
	color: #5CE1E6;
	-webkit-animation: rotateWord 8s linear infinite 0s;
	-ms-animation: rotateWord 8s linear infinite 0s;
	animation: rotateWord 8s linear infinite 0s;
}
.rw-words-2 span:nth-child(2) {
    -webkit-animation-delay: 2s;
	-ms-animation-delay: 2s;
	animation-delay: 2s;
	color: #5CE1E6;
}
.rw-words-2 span:nth-child(3) {
    -webkit-animation-delay: 4s;
	-ms-animation-delay: 4s;
	animation-delay: 4s;
	color: #5CE1E6;
}
.rw-words-2 span:nth-child(4) {
    -webkit-animation-delay: 6s;
	-ms-animation-delay: 6s;
	animation-delay: 6s;
	color: #5CE1E6;
}

@-webkit-keyframes rotateWord {
    0% { opacity: 0; }
    2% { opacity: 0; -webkit-transform: translateY(-30px); }
	5% { opacity: 1; -webkit-transform: translateY(0px);}
    20% { opacity: 1; -webkit-transform: translateY(0px); }
	30% { opacity: 0; -webkit-transform: translateY(30px); }
	80% { opacity: 0; }
    100% { opacity: 0; }
}
@-ms-keyframes rotateWord {
    0% { opacity: 0; }
    2% { opacity: 0; -ms-transform: translateY(-30px); }
	5% { opacity: 1; -ms-transform: translateY(0px);}
    20% { opacity: 1; -ms-transform: translateY(0px); }
	30% { opacity: 0; -ms-transform: translateY(30px); }
	80% { opacity: 0; }
    100% { opacity: 0; }
}
@keyframes rotateWord {
    0% { opacity: 0; }
    2% { opacity: 0; -webkit-transform: translateY(-30px); transform: translateY(-30px); }
	5% { opacity: 1; -webkit-transform: translateY(0px); transform: translateY(0px);}
    20% { opacity: 1; -webkit-transform: translateY(0px); transform: translateY(0px); }
	30% { opacity: 0; -webkit-transform: translateY(30px); transform: translateY(30px); }
	80% { opacity: 0; }
    100% { opacity: 0; }
}
@media screen and (max-width: 768px){
	.rw-sentence { font-size: 18px; }
}
@media screen and (max-width: 320px){
	.rw-sentence { font-size: 9px; }
}

.container-image {
	width: 100%;
	position: relative;
}

.container-image::after {
	content: "";
	width: 100%;
	height: 441px;
	position: absolute;
	left: 0;
	bottom: 0;
	background-image: linear-gradient(to top, black, transparent);
	background-image: linear-gradient(to bottom, transparent, black);
}

.container-image-home::after {
	content: "";
	width: 100%;
	height: 1080px;
	position: absolute;
	left: 0;
	background-image: linear-gradient(to top, black, transparent);
}

.swiper {
	width: 100%;
	/*height: 840px;*/
}

@media (max-width: 768px) {
	.container-image::after {
		height: 441px;
	}
	.container-image-home::after {
		height: 836px;
	}
	.swiper {
		width: 100%;
		/*height: 700px;*/
	}
}

@media (max-width: 450px) {
	.swiper {
		width: 100%;
		/*height: fit-content !important;*/
	}
}

.filter-default {
	display: none;
}

.pagination {
	margin: auto;
}

.pagination {
	display: flex;
	justify-content: center;
	margin: auto;
	gap: 96px;
	font-size: 17px;
	font-family: "Scto Grotesk bold", sans-serif;
	border-top-width: 1px;
	border-color: black;
	padding-top: 128px;
}

.pagination li {
	cursor: pointer;
}

.required-field-message {
	color: red;
	font-size: 12px;
	padding-left: 12px;
	display: none;
}

@media (max-width: 768px) {
	.c-footer-content-twin-logo-img {
		width: 140px
	}
}

@media (max-width: 425px) {
	.c-footer-content-twin-logo-img {
		width: 120px
	}
}

.c-header-overbar-element div a {
	display: flex;
	align-items: center;
	gap: 4px;
}

.about-us-slider-slide {
	max-width: 583px;
	max-height: 743px;
	cursor: pointer;
}

.close-btn {
	cursor: pointer;
}

.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
  }
  
  .switch input { 
	opacity: 0;
	width: 0;
	height: 0;
  }
  
  .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
  }
  
  .slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
  }
  
  input:checked + .slider {
	background-color: rgb(229 125 67) !important;
  }
  
  input:focus + .slider {
	box-shadow: 0 0 1px rgb(229 125 67) !important;
  }
  
  input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
	border-radius: 34px;
  }
  
  .slider.round:before {
	border-radius: 50%;
  }

  .c-input__file input {
	display: none;
  }
  .c-input__file button {
	display: block;
	border-radius: 0.25rem;
	--tw-bg-opacity: 1;
	background-color: rgb(229 125 67);
	padding-left: 16px;
	padding-right: 16px;
	padding-top: 8px;
	padding-bottom: 8px;
	--tw-text-opacity: 1;
	color: rgb(255 255 255 / var(--tw-text-opacity));
  }
  .c-input__file span {
	margin-left: 16px;
	display: block;
  }

/* Contenedor principal del dropdown */
.c-header__menu-list--language {
    position: relative;
    display: inline-block;
}

/* Estilo del botón del idioma actual (texto simple) */
.c-header-menu-item-link-language-item {
    padding: 0;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent !important; /* Elimina cualquier fondo */
}

/* Dropdown oculto (solo texto) */
.c-header__menu-list--language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 4px 0; /* Espaciado mínimo entre opciones */
}

/* Items del dropdown (texto simple) */
.c-header__menu-list--language-dropdown a {
    display: block;
    padding: 4px 0; /* Ajusta el espaciado vertical */
    color: inherit; /* Hereda el color del padre (ej. text-black) */
    text-decoration: none;
    white-space: nowrap; /* Evita saltos de línea */
    background: transparent !important;
}

/* Mostrar dropdown al hacer hover/clic */
.c-header__menu-list--language:hover .c-header__menu-list--language-dropdown,
.c-header__menu-list--language:focus-within .c-header__menu-list--language-dropdown {
    opacity: 1;
    visibility: visible;
}