/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&family=Cal+Sans&family=Chivo:ital,wght@0,100..900;1,100..900&display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Font */
    --cal-sans: 'Cal Sans', sans-serif;
    --atkinson: 'Atkinson Hyperlegible', sans-serif;
    --chivo: 'Chivo', sans-serif;

    /* Color Palette */
    --white: #fff;
    --black: #000;
    --red: #ff0000;
    --dark: #232323;
    --light-dark: #3b3b3b;
    --deep-blue: #054160;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    color: var(--white);
    font-size: 16px;
    font-family: var(--atkinson);
    font-weight: 400;
    line-height: normal;
    background-color: var(--dark);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}


.content-section h2,
.content-section h3,
.content-section h4,
.content-section h5,
.content-section h6 {
    margin-bottom: 14px;
    padding: 0;
}
.content-section p + .content-section  h4 {
margin-top:12px
}

.content-section p, .content-section ul li {
	text-align: justify;
}
.content-section .col-md-6.left-div .half-content {
	padding-right: 20px;
}
.content-section .col-md-6.right-div .half-content {
	padding-left: 20px;
}

.content-section .col-md-6 .photo {
	position: relative;
}
.content-section .col-md-6 .photo::after {
    border-left: solid 10px red;
    border-bottom: solid 10px red;
    content: "";
    position: absolute;
    z-index: 99999;
    width: 70%;
    height: 50px;
    left: -5px;
    bottom: -5px;
}
.solar-project__content, .blog--section .section__title {
    text-align: justify;
}
section,
.section {
    position: relative;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 12px;
}
a,
button {
    outline: none;
    box-shadow: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
button {
    padding: 0;
    border: none;
    background: unset;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
ol li,
ul li {
    list-style: none;
}
img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
    outline: none;
    box-shadow: none;
}

*::-moz-selection {
    background: var(--white);
    color: var(--black);
    text-shadow: none;
}
::-moz-selection {
    background: var(--white);
    color: var(--black);
    text-shadow: none;
}

::selection {
    background: var(--white);
    color: var(--black);
    text-shadow: none;
}

.img-float-right {
	float:right;
	max-width:450px;
	padding-bottom:15px;
	padding-left:15px;
}
.img-float-left {
	float:left;
	max-width:450px;
	padding-bottom:15px;
	padding-right:15px;
}
@media (max-width:768px) {
.img-float-left, .img-float-right {
	float:none;
	padding-bottom:15px;
	padding-right:0;
}
}

/* Button CSS Start */

.btn-text {
	color: #fff;
	font-size: 20px;
}

.btn {
    padding: 24px 32px;
    color: var(--white);
    font-family: var(--cal-sans);
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1;
    white-space: nowrap;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: none;
    background-color: var(--red);
    gap: 14px;
    transition: all 0.3s ease-in-out;
}
.btn:hover,
.btn--white {
    background-color: var(--white);
    color: var(--black);
}
.btn--white:hover {
    background-color: var(--red);
    color: var(--white);
}
.btn--transparent {
    padding: 0;
    background-color: transparent;
    color: var(--white);
    font-size: 28px;
    gap: 8px;
}
.btn--transparent:hover {
    background-color: transparent;
    color: var(--red);
}
.btn__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    overflow: hidden;
    flex-shrink: 0;
}
.arrowRightAnim {
    width: 12px;
}
.btn:hover .arrowRightAnim {
    animation: arrowRightAnim 0.5s ease-in-out forwards;
}
@keyframes arrowRightAnim {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    40% {
        transform: translateX(100%);
        opacity: 0;
    }

    60% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
/* Button CSS End */

/* Typography CSS Start */
.fs-1 {
    font-size: 80px !important;
}
.fs-2 {
    font-size: 56px !important;
}
.fs-3 {
    font-size: 48px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--cal-sans);
    font-weight: 400;
}
/* Typography CSS End */

/* Reusable CSS Start */
.transition {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.section__title {
    margin-bottom: 50px;
}
.section__title span.pretitle {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--atkinson);
    color: var(--white);
}

.section__title h2:not(:last-child) {
    margin-bottom: 8px;
}
.section__title p {
    font-size: 20px;
    line-height: 28px;
}
/* Reusable CSS End */

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.header--area {
    padding: 26px 0;
}
.header__wrapper {
    gap: 48px;
}
.header__logo,
.footer__logo__link {
    max-width: 198px;
}
.header__content {
    gap: 60px;
}
.header__nav__wrap {
    gap: 28px;
}
.header__nav__link,
.header__menu__btn,
.mobile-menu-btn,
.offcanvas__close {
    font-size: 20px;
    color: var(--white);
    font-family: var(--cal-sans);
}


.header__nav__link {
    position: relative;
    transition: all 0.3s ease;
}

.header__nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #e74c3c;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.header__nav__item.active .header__nav__link::after,
.header__nav__link.active::after,
.header__nav__link:hover::after {
    width: 100%;
}

.dropdown__box {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 236px;
    padding: 30px 32px 42px;
    margin-top: 40px;
    gap: 20px;
    background-color: var(--dark);
    opacity: 0;
    visibility: hidden;
}
.dropdown.active .dropdown__box {
    opacity: 1;
    visibility: visible;
    margin-top: 20px;
}
.dropdown__link {
    display: flex;
    color: var(--white);
    font-size: 20px;
    font-family: var(--cal-sans);
}
.header__menu__btn {
    gap: 10px;
}
.header__menu__btn .icon {
    max-width: 19px;
}
.btn--headerContact {
    min-width: 200px;
}
.header__action__btns {
    gap: 20px;
}
.lang-switcher__btn {
    width: 46px;
    height: 46px;
    border: 3px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    font-family: var(--cal-sans);
}
.lang-switcher .dropdown__link {
    font-size: 18px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.menu .offcanvas {
    background-color: rgba(35, 35, 35, 0.8);
    backdrop-filter: blur(8px);
}
.menu .offcanvas-header {
    padding: 24px 20px;
}
.offcanvas__logo {
    max-width: 100px;
}
.menu .offcanvas-body {
    padding: 24px 20px;
}
.menu__link {
    font-size: 18px;
    color: var(--white);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.menu__link:hover {
    color: var(--red);
}
.btn--offcanvas {
    min-width: 200px;
}
/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */
.interior-hero {
  position: relative;
  z-index: 0; /* make sure child overlay layers correctly */
}

.interior-hero::before {
  content: "";
  position: absolute;
  inset: 0; /* covers the section */
  background-color: rgba(0,0,0,0.45); /* 25% black = image appears 75% opaque */
  z-index: 0; /* below content */
}

.interior-hero > * {
  position: relative;
  z-index: 1; /* ensure text stays above overlay */
}

.interior-hero {
	min-height: 500px !important;
	max-height: 500px !important;
}
.hero--section {
    padding: 80px 0;
    min-height: 806px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero--section::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-70deg, #d9d9d900 0%, rgba(9, 14, 18, 0.9) 50%);
    opacity: 0.7;
    z-index: -1;
}
.hero__wrapper {
    max-width: 1064px;
}
.hero__btns {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}
.hero__btns .btn {
	text-transform: inherit !important;
    min-width: 265px;
    width: 100%;
}
.hero__btns .btn:first-child {
	padding-left: 65px;
	padding-right: 65px;
}
.hero__bg__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 Office Section CSS Start */
/* =============================== */


.wp-lightbox-overlay .scrim {
	background: rgba(0, 0, 0, 0.8) !important; /* Black with 80% opacity */
}

.content-section {
	padding: 100px 0;
}
.content-section p {
	color: #D9D9D9;
    font-size:24px;
	line-height: 1.3;
}

.content-section h2,
.content-section h3 {
	border-left: solid 5px red;
	display: block;
	line-height: 1.3;
	margin-bottom: 20px;
	padding-left: 16px;
}

.content-section.bg-section {
	    background-position: 1px center !important;
}

.content-section ul {
	color: #D9D9D9;
    font-size:24px;
	padding-left: 20px;
}
.content-section ul li {
	list-style:disc;
	margin-bottom: 12px
}


.office--section {
    padding: 64px 0 92px;
}
.office__para {
    max-width: 672px;
    color: #cccccb;
    font-size: 24px;
}
.office__links__wrap {
    gap: 24px 132px;
}
.office__link {
    color: var(--white);
    font-size: 28px;
    font-family: var(--cal-sans);
}
.office__link:hover {
    color: var(--red);
}
/* =============================== */
/* :: 6.0 Office Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 Team Section CSS Start */
/* =============================== */
.team--section {
    padding: 112px 0;
}
.team__wrapper {
    max-width: 1436px;
}
.team__slider__item {
    background-color: var(--deep-blue);
}
.team__slider__wrapper {
    min-height: 554px;
    height: 100%;
}
.team__slider__content {
    padding: 76px 90px;
}
.team__slider__content,
.team__slider__inner,
.team__slider__thumb {
    width: 100%;
    height: 100%;
    max-height:554px;
    overflow:hidden;
}
.team__slider__inner {
    max-width: 490px;
}
.team__slider__title {
    line-height: 0.92;
    margin-bottom: 32px;
}
.team__slider__para {
    font-size: 18px;
    line-height: 1.45;
}
.video-play-btn {
    width: 138px;
    height: 138px;
    border-radius: 50%;
    background-color: var(--white);
    color: #101828;
    box-shadow: 0 18px 9px 0 rgba(22, 28, 40, 0.02);
}
.video-play-btn svg {
    width: 20%;
}
.team__slider__pagination {
    position: static;
    margin-top: 40px;
}
.team__wrapper .swiper-pagination-bullet {
    width: 24px;
    height: 24px;
    margin: 0 9px !important;
    background-color: #191818;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.team__wrapper .swiper-pagination-bullet-active {
    background-color: var(--red);
}
.team--section .team__slide__btn {
    transform: translateY(-50%);
    margin-top: 0;
}
.team__slide__btn.btn--circle {
    width: 60px;
    height: 60px;
}
.team--section .team__slide__btn::after {
    display: none;
}
.team--section .swiper-button-prev {
    left: -30px;
}
.team--section .swiper-button-next {
    right: -30px;
}
.team--section .team__card-photo {
	max-height: 355px;
	margin-bottom: 15px;
	overflow: hidden;
}

/* =============================== */
/* :: 7.0 Team Section CSS End */
/* =============================== */

/* ===================================== */
/* :: 8.0 SolarProject Section CSS Start */
/* ===================================== */
.solar-project--section {
    padding: 124px 0 164px;
}
.solar-project__thumb {
    max-width: 88%;
}
.solar-project__thumb__img {
    border-radius: 24px;
}
.section__badge {
    padding: 13px 29px;
    font-size: 14px;
    background-color: var(--red);
    border-radius: 100px;
}
.solar-project--section .section__title {
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px dashed #f2f4f7;
}
.solar-project__desc,
.solar-project__para {
    font-size: 24px;
    line-height: 1.33;
}
/* =================================== */
/* :: 8.0 SolarProject Section CSS End */
/* =================================== */

/* =============================== */
/* :: 9.0 Statictic CSS Start */
/* =============================== */

.statistics--section {
    padding: 200px 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.statistics__wrapper {
    max-width: 1144px;
    background: #13171ce5;
    border-radius: 18px;
    padding: 48px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
}

.statistics__wrapper .section__title {
    flex: 0 0 auto;
    max-width: 390px;
    margin-bottom: 14px;
}

.statistics__content h3 {
    font-size: 80px;
    font-weight: bold;
    font-family: var(--chivo);
}

.statistics__wrapper .section__title h2 {
    font-weight: 400;
    line-height: 1;
}

.statistics__content p {
    font-size: 16px;
    line-height: 28px;
    max-width: 370px;
}
/* =============================== */
/* :: 9.0 Statictic CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Impact CSS Start */
/* =============================== */

.impact--section {
    padding: 140px 0px 140px;
}

.impact__wrapper {
    max-width: 1376px;
    margin: 0 auto;
}

.impact__wrapper .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.impact__item {
    padding: 82px 74px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.impact__item p {
    font-size: 40px;
    line-height: 1;
    color: #e4e7ec;
    flex: 1;
}

.impact__item h3 {
    font-size: 97px;
    font-family: var(--atkinson);
    line-height: 1;
    flex: 0 0 auto;
    letter-spacing: -0.08em;
    display: flex;
    align-items: flex-end;
}

.impact__item.impact__item--bg {
    background: linear-gradient(
        247.55deg,
        #ffffff 29.38%,
        rgba(223, 223, 223, 0.38) 108.75%
    );
}

.impact__item.impact__item--bg h3 {
    color: #353841;
}

.impact__item.impact__item--bg p {
    color: #353841;
}

.impact--section .section__title {
    margin-bottom: 80px;
}

/* =============================== */
/* :: 10.0 Impact CSS End */
/* =============================== */

/* Timeline container */
.timeline-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #fff;
}

.timeline-title {
    text-align: center;
    margin-bottom: 60px;
}

/* Timeline wrapper */
.timeline {
    position: relative;
    padding: 0;
}

/* Individual timeline entry */
.timeline-entry {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 40px;
}

/* Alternate left/right positioning */
.timeline-entry.left {
    flex-direction: row;
}

.timeline-entry.right {
    flex-direction: row-reverse;
}

/* Year hexagon */
.timeline-year {
    flex-shrink: 0;
    width: 180px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.timeline-year svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.timeline-year span {
    font-size: 3em;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

/* Content area */
.timeline-content {
    flex: 1;
    max-width: 600px;
}

/* Right-aligned content for right entries */
.timeline-entry.right .timeline-content {
    text-align: right;
}

.timeline-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.timeline-content p {
    margin: 0;
    line-height: 1.6;
}

/* Divider arrow between entries */
.timeline-divider {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.timeline-divider svg {
    width: 30px;
    height: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline-entry.left,
    .timeline-entry.right {
        flex-direction: column;
    }

    .timeline-entry.right .timeline-content {
        text-align: left;
    }

    .timeline-year {
        width: 140px;
        height: 160px;
    }

    .timeline-year span {
        font-size: 2.5em;
    }

    .timeline-content {
        max-width: 100%;
    }
}
/* =============================== */
/* :: 11.0 Blog CSS Start */
/* =============================== */

.blog--section {
    background: #3b3b3b;
    padding: 70px 0px 80px;
}

.blog__item {
    border-radius: 30px;
    background: var(--white);
    padding: 16px 16px 32px;
    margin-bottom: 30px;
}

.blog__item-thumbnail img {
    width: 100%;
    border-radius: 24px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.blog__item-content {
    display: flex;
    align-items: center;
    padding-top: 24px;
}

.blog__item-content-inner h3, .blog__item-content-inner h3 a {
    color: #010205;
    font-size: 25px;
    margin-bottom: 10px;
}

.blog__item-content-inner p {
    color: #878c91;
    font-size: 18px;
}

.btn--circle {
    width: 46px;
    height: 46px;
    padding: 0px !important;
    flex: 0 0 auto;
    border: 1px solid var(--red) !important;
}
.blog__item-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 49.69%; /* Aspect ratio 324/161 = 2.012 -> 100/2.012 = 49.69% */
    overflow: hidden;
    border-radius: 8px; /* Optional: adjust to match your design */
}

.blog__item-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* =============================== */
/* :: 11.0 Blog CSS End */
/* =============================== */

/* =============================== */
/* :: 12.0 Footer CSS Start */
/* =============================== */

footer.footer {
    padding: 70px 0px 70px;
}
.contact__form-box label {
	font-size: 18px;
}
.contact__form-box input,
.contact__form-box textarea {
    width: 100%;
    height: 60px;
    border: 1px solid transparent;
    background: #fff;
    padding: 0px 24px;
    color: var(--black);
    font-size: 18px;
    line-height: 28px;
    resize: none;
}
.contact__form-box input::placeholder,
.contact__form-box textare::placeholder {
    color: #98a2b3;
    font-size: 18px;
    opacity: 1;
}
.input-required {
    color: var(--red);
}
.contact__form-box {
    margin-bottom: 24px;
}

.contact__form-box textarea {
    padding: 20px 20px;
    height: 150px;
}

.footer__logo {
    margin-bottom: 24px;
}

.footer__contact ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--white);
    line-height: 40px;
}

.footer__contact ul li a:hover {
    color: var(--red);
}

.footer__contact ul li a:hover svg path {
    fill: var(--red);
}

.footer__contact ul li a svg {
    transition: all 0.3s ease;
}

.footer__contact {
    padding-bottom: 23px;
    border-bottom: 1px solid #98a2b3;
    margin-bottom: 60px;
}

.footer__menu ul li a {
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    color: var(--white);
    font-family: var(--cal-sans);
    display: block;
    padding: 12px 0px;
}

.footer__menu ul li a:hover {
    color: var(--red);
}

.footer__bottom-menu ul li,
.footer__bottom-menu ul li a {
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    text-decoration: none;
    padding: 20px 0px;
}

.footer__bottom-menu ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
}

.footer__bottom-menu ul li a:hover {
    color: var(--red);
}

.social {
    display: flex;
    align-items: center;
    gap: 20px;
}
.social a svg {
    transition: 0.3s;
}
.social a:hover svg path {
    fill: var(--red);
}
/* =============================== */
/* :: 12.0 Footer CSS End */
/* =============================== */

/* ============================== */
/* :: 12.0 PopUp Modals CSS Start */
/* ============================== */

/* Common CSS For All Modals Start */
.modal {
	color: var(--black);
}
.modal-dialog {
    max-width: 880px;
    margin-inline: auto;
}
.modal-content {
    padding: 40px;
    border-radius: 20px;
}
.modal-header,
.modal-body {
    padding: 0;
    border: none;
}
.modal-title {
    font-size: 32px;
}
.modal .btn-close {
	padding: 0;
	width: 28px;
	height: 28px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: unset;
	color: var(--black);
	opacity: 1;
}
.modal .btn-close .icon {
    width: 100%;
    height: 100px;
}
.modal .btn-close:hover {
    color: var(--red);
}
.modal .btn-close:focus {
    box-shadow: unset;
}
.modal__subtitle {
	color: #475467;
	font-size: 20px;
}
/* Common CSS For All Modals End */

/* Compra Del I Rec Modals Start */
.modal-container {
    margin: 0 12px;
}
.modal .contact__form-box input,
.modal .contact__form-box textarea {
    border-color: var(--black);
    border-radius: 9px;
}
.modal .contact__form-box label {
    color: #475467;
}
.nice-select {
	height: 60px;
	width: 100%;
	line-height: 1;
	display: flex;
	align-items: center;
	border-color: var(--black);
	border-radius: 9px;
	color: var(--black);
	font-size: 18px;
	padding: 0 24px;
	margin-bottom: 24px;
}
.nice-select:hover, .nice-select.open {
    border-color: var(--black);
}
.nice-select .list {
	width: 100%;
	color: var(--black);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.nice-select .option[data-display] {
    display: none;
    color: #98a2b3;
}
.nice-select::after {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid #d9d9d9;
    border-bottom: none;
    margin-top: 0;
    right: 24px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.nice-select.open::after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
}
/* Compra Del I Rec Modals End */

/* ============================ */
/* :: 12.0 PopUp Modals CSS End */
/* ============================ */


/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Add staggered delay for child elements */
.scroll-animate .row > [class*="col"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.animate-in .row > [class*="col"]:nth-child(1) {
    transition-delay: 0.1s;
}

.scroll-animate.animate-in .row > [class*="col"]:nth-child(2) {
    transition-delay: 0.2s;
}

.scroll-animate.animate-in .row > [class*="col"]:nth-child(3) {
    transition-delay: 0.3s;
}

.scroll-animate.animate-in .row > [class*="col"]:nth-child(4) {
    transition-delay: 0.4s;
}

.scroll-animate.animate-in .row > [class*="col"] {
    opacity: 1;
    transform: translateY(0);
}

/* Disable animations on hero sections */
.hero,
.breadcrumb,
.interior-hero {
    opacity: 1 !important;
    transform: none !important;
}


.swiper-wrapper {
    max-height: 554px;
}

/* Events Slider Styling */
.events-slider-wrapper {
    position: relative;
    padding: 40px 0;
}

.eventsSwiper {
    overflow: hidden;
    padding-bottom: 80px;
    padding-left: 0;
    padding-right: 0;
}

.eventsSwiper .swiper-slide {
    height: auto;
}

/* Navigation and Pagination Controls */
.events-controls {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.events-prev,
.events-next {
        top: -5px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.events-prev:hover,
.events-next:hover {
    background: #e74c3c;
    transform: scale(1.1);
}

.events-prev:hover svg path,
.events-next:hover svg path {
    stroke: #fff;
}

.events-prev svg,
.events-next svg {
    display: block;
    height: 22px;
}

.events-prev svg path,
.events-next svg path {
    stroke: #333;
    transition: stroke 0.3s ease;
}

/* Pagination Dots */
.events-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.events-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
    margin: 0;
    border-radius: 50%;
}

.events-pagination .swiper-pagination-bullet-active {
    background: #e74c3c;
}
.swiper-button-next.events-next {
    right: -60px;
}
.swiper-button-prev.events-prev {
    left: -60px;
}
.swiper-button-next.events-next:after,
.swiper-button-prev.events-prev:after {
    display: none !important;
}
.events-pagination .swiper-button-next:after, .events-pagination .swiper-button-prev:after {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .events-prev,
    .events-next {
        width: 40px;
        height: 40px;
    }

    .events-controls {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .events-controls {
        gap: 15px;
    }

    .events-prev,
    .events-next {
        width: 35px;
        height: 35px;
    }
}
