/* Base Styles */
:root {
    --primary-color: #003863;
    --secondary-color: #00a0cb;
    --accent-color: #00cba8;
    --text-color: #333;
    --light-text: #f8f9fa;
    --gray-bg: #f4f8fb;
    --border-radius: 20px;
    --box-shadow: 0 4px 12px rgba(0, 83, 165, 0.15);
    --transition: all 0.3s ease;
    --header-height: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fafafa;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

p {
    margin-bottom: 1rem;
}

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

ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

section {
    padding: 60px 0;
}

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

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto;
    border-radius: 2px;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: var(--header-height);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 50px;
	padding: 5px 0px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link:hover:after, 
.nav-link.active:after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Header / Hero Section */
.hero {
	background-image: url('../images/cover-3.jpg');
	background-size: cover;
    color: var(--light-text);
    padding: calc(var(--header-height) + 60px) 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-background:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 203, 168, 0.1) 0%, rgba(0, 203, 168, 0) 50%);
}

.hero-background:after {
    content: '';
    position: absolute;
    top: 40%;
    right: -5%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23ffffff"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
	transform: rotate(180deg);
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    padding-right: 20px;
    animation: fadeIn 1s ease-out;
}

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

.hero-badge {
    display: flex;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 55%;
}

.main-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.4;
}

.highlight {
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 203, 168, 0.4);
}

.cta-banner {
    background: var(--accent-color);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 8px 30px rgba(0, 203, 168, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-banner:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(30deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

.secondary-title {
    font-size: 25px;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.hero-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.hero-button:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.hero-button:hover i {
    transform: translateX(5px);
}

.hero-image {
    position: relative;
    height: 400px;
}

.hero-image img {
    width: 90%;
}

img.eye-image {
    width: 15%;
} 


.floating-badge {
    position: absolute;
    top: 10%;
    right: 20%;
    background: var(--accent-color);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: pulse 3s infinite;
    z-index: 2;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3); }
    100% { transform: scale(1); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); }
}

.hero-overlay {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.scroll-down {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-down i {
    margin-top: 8px;
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Initiative Section */
.initiative {
    background-color: #fff;
	padding: 60px 0 0 0;
}

.initiative-header {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
	gap:10px;
}

.initiative-bio {
    text-align: center;
    margin-bottom: 40px;
}

.initiative-bio span {
    font-size: 13px;
    line-height: 5;
}

img.bandiera {
    width: 4%;
}

.initiative-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 8px 25px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.initiative-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.initiative-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

img.van.campagna {
    width: 70%;
    margin-top: 80px;
}

.info-box {
    flex: 1 1 300px;
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 83, 165, 0.2);
}

.icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Events Section */
.events {
    position: relative;
    z-index: 1;
}

.events::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/pattern-2.svg);
	background-position:right;
    background-size: contain;
    z-index: -1;
    opacity: 0.1; 
}

.events-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.event-card {
    flex: 1 1 300px;
    max-width: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background: white;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 83, 165, 0.25);
}

.event-header {
    background: var(--primary-color);
    color: white;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.city {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.date-badge {
    background: var(--accent-color);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
}

.event-details {
    padding: 40px 20px;
}

.location, .time {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.location i, .time i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.event-link {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 10px;
    font-weight: 600;
    text-align: center;
}

.event-link:hover {
    background: var(--secondary-color);
    color: white;
}

/* Benefits Section */
.benefits {
    background-color: var(--gray-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.benefit-card {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 83, 165, 0.2);
}

.benefit-icon {
    background: var(--primary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* About Section */
.about {
    background-color: white;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1 1 500px;
}

.about-text .section-title {
    text-align: left;
}

.about-text .section-title:after {
    margin-left: 0;
}

.about-image {
    flex: 1 1 400px;
}


/* Contact Section */
.contact {
    background-color: var(--gray-bg);
    padding: 70px 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}

.contact-info {
    flex: 1 1 400px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 83, 165, 0.2);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-text p {
    margin: 0;
    color: var(--text-color);
}

.social-media {
    flex: 1 1 400px;
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.social-media h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: center;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    transition: var(--transition);
}

.social-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

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

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

.social-button.twitter {
    background-color: #1da1f2;
}

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

/* CTA Section */
.cta {
    color: white;
    text-align: left;
}

#van .container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 40px;
    justify-content: flex-start;
    align-items: center;
}

.cta-image {
	width:30%;
	opacity: 0.9;
}

.cta-title {
    font-size: 35px;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.3rem;
    max-width: 700px;
    font-weight: 300;
	margin-bottom:20px;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.cta-button:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Footer */
.footer {
    background: #003863;
    color: #e0e0e0;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1 1 70px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
    margin-left: -15px;
}

.slogan {
    font-style: italic;
}

.footer-links {
    flex: 1 1 200px;
}

.footer-links h3, .footer-social h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
}

.footer-links h3:after, .footer-social h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    margin-top: 8px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: #e0e0e0;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-social {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 800px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    transition: var(--transition);
}

.close-button:hover {
    color: var(--primary-color);
}

.modal-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 20px 0;
}

.modal-info {
    flex: 1 1 300px;
}

.modal-map {
    flex: 2 1 400px;
}

.map-placeholder {
    width: 100%;
    border-radius: var(--border-radius);
}

.modal-description {
    margin-top: 30px;
}

.modal-description h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.modal-description ul {
    list-style-type: none;
    margin-bottom: 20px;
}

.modal-description ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.modal-description ul li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Media Queries */
@media (max-width: 992px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .secondary-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .secondary-title {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .about-text .section-title:after {
        margin: 15px auto;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        flex-direction: column;
        background-color: white;
        width: 100%;
        top: var(--header-height);
        left: 0;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 100;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        margin: 5px 20px;
    }
    
    .nav-link {
        display: block;
        padding: 10px 0;
    }
	
	.hero-wave {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 25px;
	}
	
	.hero-image {
        height: 300px;
    }
	
	.floating-badge {
    position: absolute;
    top: 0%;
    right: 10%;
	}
	
	#van .container {
	display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 40px;
    align-items: center;
	background-color: #1a5faa;
	}
	
	.cta {
	text-align:center;
	}
	
	.cta-image {
	width:70%;
	}
	
	.hero-badge {
	width: 100%;
    justify-content: center;
	}
	
	.initiative-header {
		gap:0px;
	}

	img.bandiera {
		width: 15%;
	}
	
	img.van.campagna {
    width: 100%;
    margin-top: 70px;
	}
	
	.cta-background {
    top: 0px !important;
	}	
	
	.apmo {
		display: flex;
		flex-direction: column!important;
		row-gap: 20px;
	}
	
	img.logo-apmo {
		width: 35%!important;
	}
}

@media (max-width: 576px) {
    
    .secondary-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .modal-content {
        padding: 20px;
        margin: 10% auto;
    }
    
    .modal-description ul li {
        padding-left: 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .initiative-badge {
        font-size: 1rem;
        padding: 6px 20px;
    }
    
    .info-box {
        padding: 20px;
    }
    
    .icon {
        font-size: 2rem;
    }
    
    .event-card {
        max-width: 100%;
    }
    
    .benefit-card {
        max-width: 100%;
    }
    
}


.cta {
    background-color: #fff!important;
    position: relative;
    overflow: hidden;
    z-index: 1;
	padding: 60px 0 0 0;
}

.cta-background {
    background-image: url(../images/cta-cover.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

img.logo-apmo {
    width: 25%;
}

.apmo {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
}

.apmo a:hover {
    text-decoration:underline;
}