/* Variables */
:root {
    --primary-blue: #0c4f7c;
    --secondary-blue: #1a7cb5;
    --light-blue: #a7dbf7;
    --primary-green: #267f5d;
    --secondary-green: #4caf50;
    --light-green: #c8f7c5;
    --dark: #1a1a1a;
    --gray: #707070;
    --light-gray: #f3f3f3;
    --white: #ffffff;
    --section-padding: 80px 0;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-gray);
}

img::after {
    content: attr(alt) ' no disponible';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.4rem;
    font-style: italic;
    text-align: center;
    padding: 10px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    color: var(--primary-blue);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-green);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-blue);
}

.btn-secondary {
    background-color: var(--primary-green);
    color: var(--white);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--primary-green);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(38, 127, 93, 0.9);
    background-image: linear-gradient(to right, rgba(38, 127, 93, 0.95), rgba(76, 175, 80, 0.85));
    box-shadow: var(--box-shadow);
    z-index: 1000;
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.site-logo {
    margin-right: 15px;
}

.site-logo img {
    width: 50px;
    height: auto;
    display: block;
    object-fit: contain;
}

.logo h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--light-green);
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 2.4rem;
    cursor: pointer;
    color: var(--white);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0;
    z-index: 1;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("img/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: scale(1.1);
    animation: heroBgZoom 20s ease-in-out infinite alternate;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)); <<---  descomentar para una tonalidad oscura de la imagen   */
    z-index: 0;
}

@keyframes heroBgZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    width: 90%;
    max-width: 800px;
    color: var(--white);
    padding: 30px;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-content h1 {
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

.hero-content .btn-primary, 
.hero-content .btn-secondary {
    margin: 0.5rem;
    animation: fadeInUp 1s ease 0.9s;
    animation-fill-mode: both;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-width: 3px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    padding: 1.4rem 3rem;
    letter-spacing: 1.5px;
}

.hero-content .btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.hero-content .btn-secondary {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.hero-content .btn-primary:hover, 
.hero-content .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* About Section */
.about {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--gray);
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Properties Section */
.properties {
    padding: var(--section-padding);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.property-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-10px);
}

.property-image {
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-info h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.amenities {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.amenities span {
    font-size: 1.4rem;
    background-color: var(--light-green);
    color: var(--primary-green);
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.amenities span:hover {
    transform: translateY(-2px);
    background-color: var(--primary-green);
    color: var(--white);
}

.amenities span i {
    margin-right: 5px;
    color: var(--primary-green);
}

.amenities span:hover i {
    color: var(--white);
}

.property-info p {
    margin-bottom: 2rem;
    color: var(--gray);
    flex-grow: 1;
}

.property-info .btn-secondary,
.tour-info .btn-secondary {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
    padding: 1.2rem 0;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #25d366; /* Color de WhatsApp */
    border-color: #25d366;
    color: white;
}

.property-info .btn-secondary i,
.tour-info .btn-secondary i {
    margin-right: 8px;
    font-size: 1.8rem;
}

.property-info .btn-secondary:hover,
.tour-info .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: #128C7E; /* Color de WhatsApp más oscuro */
    border-color: #128C7E;
    color: white;
}

/* Tours Section */
.tours {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.tour-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-image {
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-info h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.tour-details {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tour-details span {
    font-size: 1.4rem;
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.tour-details span i {
    margin-right: 5px;
}

.tour-info p {
    margin-bottom: 2rem;
    color: var(--gray);
    flex-grow: 1;
}

.tour-info .btn-secondary {
    text-align: center;
    display: block;
    width: 80%;
    margin: 0 auto;
    padding: 1.2rem 0;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery {
    padding: var(--section-padding);
    position: relative;
}

.gallery .container {
    width: 100%;
    max-width: none;
    padding: 0;
}

.gallery-slider {
    position: relative;
    padding-bottom: 50px;
}

.gallery-slider .swiper-wrapper {
    margin: 0 100px;
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
    position: absolute;
    color: var(--primary-blue);
    top: 0;
    height: 100%;
    width: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    transform: none;
    margin: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slider .swiper-button-next:after,
.gallery-slider .swiper-button-prev:after {
    font-size: 24px;
    font-weight: bold;
}

.gallery-slider .swiper-button-prev {
    left: 0;
}

.gallery-slider .swiper-button-next {
    right: 0;
}

.swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide img {
    max-width: 100%;
    width: auto;
    height: 400px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--primary-blue);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-blue);
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--light-gray);
    background-image: linear-gradient(to bottom, var(--light-gray), white);
}

.testimonial-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin: 15px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-blue);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-profile:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-green);
}

.testimonial-profile img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-info h4 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--primary-blue);
    font-weight: 600;
}

.stars {
    color: #ffc107;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.6rem;
    position: relative;
    padding-left: 20px;
    margin-top: 10px;
}

.testimonial-card p::before {
    content: "\201C";
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 3.5rem;
    color: var(--primary-blue);
    opacity: 0.5;
    line-height: 1;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--primary-blue);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-blue);
}

/* Location Section */
.location {
    padding: var(--section-padding);
}

.map-container {
    margin-bottom: 40px;
}

#map {
    height: 400px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.location-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.location-item {
    flex: 1;
    min-width: 250px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.location-item:hover {
    transform: translateY(-5px);
}

.location-item h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.location-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-green);
}

.location-item p {
    margin-bottom: 10px;
    font-size: 1.6rem;
    color: var(--gray);
}

.location-item p i {
    color: var(--primary-green);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.location-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
}

.location-link:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.contact-info {
    background-color: var(--primary-blue);
}

.contact-info h3 {
    color: var(--white);
}

.contact-info h3::after {
    background-color: var(--white);
}

.contact-info p {
    color: var(--white);
}

.contact-info p i {
    color: var(--light-blue);
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1.6rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.social-media {
    margin-top: 30px;
}

.social-media h3 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.4rem;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-5px);
}

.whatsapp {
    background-color: #25d366;
}

.facebook {
    background-color: #3b5998;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding-top: 60px;
    text-align: center;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo h3 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
}

.footer-logo h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-green);
}

.footer-logo p {
    color: #bbb;
    max-width: 80%;
    margin: 0 auto;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary-green);
}

.footer-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links ul li {
    margin-bottom: 10px;
    text-align: center;
}

.footer-links ul li a {
    color: #bbb;
    transition: var(--transition);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
}

.footer-links ul li a:hover {
    color: var(--primary-green);
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.05);
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-contact p {
    margin-bottom: 15px;
    color: #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-green);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-logos img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-logos img:hover {
    opacity: 1;
}

.copyright {
    color: #bbb;
    font-size: 1.4rem;
    margin: 0;
    padding-top: 10px;
    position: relative;
}

.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    html {
        font-size: 60%;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .location-info {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 58%;
    }
    
    .hero-content h1 {
        font-size: 3.6rem;
    }

    .site-logo img {
        width: 40px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: rgba(38, 127, 93, 0.95);
        background-image: linear-gradient(to bottom, rgba(38, 127, 93, 0.95), rgba(76, 175, 80, 0.9));
        box-shadow: var(--box-shadow);
        transition: var(--transition);
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    nav ul li a {
        font-size: 1.8rem;
        color: var(--white);
    }
    
    .mobile-menu {
        display: block;
    }
    
    .properties-grid,
    .tours-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 55%;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }

    .site-logo img {
        width: 35px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .btn-primary, 
    .btn-secondary {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
    
    .location-info {
        flex-direction: column;
        align-items: center;
    }
    
    .location-info p {
        margin-bottom: 10px;
    }

    .property-info .btn-secondary,
    .tour-info .btn-secondary {
        width: 100%;
    }
} 