/* General Body Styles */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: sans-serif;
    margin: 0;
    line-height: 1.6;
}


/* Header and Navigation */
header {
    background-color: #1A1A1A;
    padding: 0.5rem 2rem;
    border-bottom: 1px solid #01baff;
}

.header-container {
    display: flex;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    gap: 25px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
}

.header-logo {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

nav {
    border-left: 1px solid #01baff;
    padding-left: 25px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    background-color: #792ccf;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle .fa-chevron-down {
    font-size: 0.8em;
    margin-left: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1A1A1A;
    border: 1px solid #01baff;
    border-radius: 0 0 5px 5px;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 1000;
    min-width: 200px;
}

.dropdown-menu li a {
    padding: 12px 15px;
    display: block;
    white-space: nowrap;
    border-radius: 0; /* Override the main nav link radius */
}

.dropdown-menu li a:hover {
    background-color: #2e3192;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Mods Page Styles */
.page-description {
    text-align: center;
    max-width: 800px;
    margin: -10px auto 30px auto;
    color: #cccccc;
    font-size: 1.1rem;
}

.mods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.mod-card {
    background-color: #1A1A1A;
    border: 1px solid #01baff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mod-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.mod-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mod-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.mod-category, .mod-game {
    background-color: #792ccf;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.mod-game {
    background-color: #01baff;
}

.mod-version {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 10px;
    font-style: italic;
}

.mod-name {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
}

.mod-description {
    color: #cccccc;
    flex-grow: 1;
    margin-bottom: 20px;
}

.mod-download-btn {
    display: inline-block;
    background-color: #01baff;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
}

.mod-download-btn:hover {
    background-color: #008fbb;
}

/* Testimonials Section Styles */
.testimonials-swiper {
    width: 100%;
    height: 100%;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background-color: #1A1A1A;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #792ccf;
    height: 100%; /* Ensure cards in the same view have the same height */
    box-sizing: border-box; /* Include padding in height calculation */
}

.swiper-button-next, .swiper-button-prev {
    color: #01baff;
}

.swiper-pagination-bullet-active {
    background: #01baff;
}

.testimonial-quote {
    font-style: italic;
    color: #e0e0e0;
    margin: 0 0 20px 0;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author .author-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

.testimonial-author a:hover {
    color: #01baff;
}

/* Projects Page Styles */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.project-card {
    background-color: #1A1A1A;
    border: 1px solid #01baff;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.project-icon-fa {
    font-size: 2rem;
    color: #792ccf;
    width: 32px;
    text-align: center;
}

.project-icon-img {
    width: 32px;
    height: 32px;
}

.project-name {
    margin: 0;
    font-size: 1.5rem;
}

.project-description {
    color: #cccccc;
    flex-grow: 1;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.project-status {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.status-en-desarrollo {
    background-color: #ffc107;
    color: #000;
}

.status-muy-pronto {
    background-color: #01baff;
    color: #fff;
}

.status-disponible {
    background-color: #28a745;
    color: #fff;
}

.project-link-btn {
    display: inline-block;
    background-color: #792ccf;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.project-link-btn:hover {
    background-color: #5d22a4;
}

/* Project Detail Page Styles */
.project-detail-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.project-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.project-version {
    background-color: #6c757d;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.gallery-thumbnail {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #01baff;
    cursor: pointer;
    transition: transform 0.2s;
}

.gallery-thumbnail:hover {
    transform: scale(1.05);
}

/* Main Content */
main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    color: #ffffff;
    text-align: center;
}

/* Home Page Styles */
.hero-home {
    position: relative;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden; /* To contain the blurred background */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    transform: scale(1.1); /* To avoid hard edges from the blur */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.6);
    display: inline-block;
    padding: 2rem;
    border-radius: 8px;
}

#stats-bar {
    display: flex;
    justify-content: space-around;
    background-color: #1A1A1A;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid #01baff;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    margin: 0 0 0.5rem 0;
    color: #792ccf;
}

.stat-item p {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

#live-status .live-now {
    background-color: #792ccf;
    border: 2px solid #01baff;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

#live-status .live-now a {
    text-decoration: none;
    color: white;
}

#live-status .live-now h3 {
    margin: 0 0 0.5rem 0;
}

#vtc-events .event-item {
    background-color: #1A1A1A;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #01baff;
    margin-bottom: 1rem;
}

#vtc-events .event-item h3 {
    margin-top: 0;
}

#vtc-events .event-item h3 a {
    color: #792ccf;
    text-decoration: none;
}

#vtc-events .event-item h3 a:hover {
    text-decoration: underline;
}

/* New Portfolio Styles */
.portfolio-container {
    display: flex;
    max-width: 1400px;
    margin: 2rem auto;
    gap: 2rem;
    padding: 0 1rem;
}

.portfolio-sidebar {
    flex: 0 0 300px;
    background-color: #1A1A1A;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    align-self: flex-start;
}

.portfolio-sidebar .profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.portfolio-sidebar h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-sidebar .job-title {
    background-color: #792ccf;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

.portfolio-sidebar .contact-info p {
    text-align: left;
    margin: 1rem 0;
    display: flex;
    align-items: center;
}

.portfolio-sidebar .contact-info i {
    color: #792ccf;
    margin-right: 10px;
    width: 20px;
}

.portfolio-sidebar .contact-info a {
    color: #ffffff;
    text-decoration: none;
}

.portfolio-sidebar .contact-info a:hover {
    text-decoration: underline;
}

.cv-download-container {
    margin-top: 1.5rem;
    text-align: center;
}

.portfolio-content {
    flex: 1;
    background-color: #1A1A1A;
    padding: 2rem;
    border-radius: 8px;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #792ccf;
    display: inline-block;
}

#what-i-do .service-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

#what-i-do .service-icon i {
    font-size: 2.5rem;
    color: #792ccf;
}

#clients .client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

#clients .client-logos img {
    height: 120px;
    filter: grayscale(100%) brightness(150%);
    transition: filter 0.3s;
}

#clients .client-logos img:hover {
    filter: none;
}

#partners .partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

#partners .partners-logos img {
    height: 120px;
    filter: grayscale(100%) brightness(150%);
    transition: filter 0.3s;
}

#partners .partners-logos img:hover {
    filter: none;
}

#resume-section .resume-item {
    margin-bottom: 1.5rem;
}

#resume-section .resume-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #792ccf;
}

#resume-section .resume-entry {
    border-left: 2px solid #01baff;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

#resume-section .resume-entry::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #792ccf;
}

#resume-section .resume-entry span {
    font-size: 0.9rem;
    color: #cccccc;
}

#skills .skill-bar-container {
    background-color: #000000;
    border-radius: 5px;
    height: 10px;
    width: 100%;
}

#skills .skill-bar {
    background-color: #792ccf;
    height: 100%;
    border-radius: 5px;
}

/* Footer Styles */
footer {
    background-color: #1A1A1A;
    color: #ffffff;
    padding: 2rem 1rem;
    margin-top: 40px;
    text-align: center;
}

.social-media-minimal {
    margin-bottom: 1.5rem;
}

.social-media-minimal a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s;
}

.social-media-minimal a:hover {
    color: #792ccf;
}

.footer-bottom-minimal p {
    margin: 0;
    font-size: 0.9rem;
}

/* News Page Styles */
.news-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    margin-bottom: 1rem;
}
.news-post {
    background-color: #1A1A1A;
    padding: 0;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #01baff;
}
.news-content {
    padding: 0 15px 15px 15px;
}
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}
.news-post h3 {
    margin-top: 0;
    margin-bottom: 0;
}
.news-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.news-tag {
    background-color: #792ccf;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
}
.news-meta {
    font-size: 0.8rem;
    color: #cccccc;
    margin-top: 0;
    font-style: italic;
}
.mods-section {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #01baff;
}
.mods-section h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}
.mods-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mods-section ul li a {
    color: #01baff;
}
.read-more-btn {
    display: inline-block;
    margin-top: 1rem;
    background-color: #792ccf;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}
.read-more-btn:hover {
    background-color: #5d22a4;
}

/* Gallery Page Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #01baff;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item .gallery-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}
.gallery-item:hover .gallery-item-info {
    transform: translateY(0);
}
.gallery-item-info p {
    margin: 0 0 5px 0;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}
.gallery-item-info p i {
    margin-right: 8px;
    color: #01baff;
}
.gallery-item-tags {
    margin-top: 10px;
}
.gallery-item-tags span {
    background-color: #792ccf;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-right: 5px;
    display: inline-block;
}

/* Video Page Styles */
.yt-channel-link {
    display: inline-block;
    background-color: #792ccf;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 2rem;
    transition: background-color 0.3s;
}
.yt-channel-link:hover {
    background-color: #5d22a4;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.video-item {
    position: relative;
}
.video-item a {
    text-decoration: none;
    color: #ffffff;
}
.video-item img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #01baff;
    transition: transform 0.3s ease;
}
.video-item img:hover {
    transform: scale(1.05);
}
.video-item h3 {
    margin-top: 10px;
    font-size: 1rem;
}
.video-date {
    font-size: 0.8rem;
    color: #cccccc;
    margin-top: 5px;
}
.new-video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #792ccf;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 1;
}

/* VTC Page Styles */
.page-title-with-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.title-logo {
    height: 50px;
}
.postulacion-vtc .postulacion-content {
    background-color: #1A1A1A;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #01baff;
}
.postulacion-vtc h3 {
    color: #792ccf;
    margin-top: 0;
}
.postulacion-vtc ul {
    list-style: none;
    padding: 0;
}
.postulacion-vtc ul li {
    margin-bottom: 0.5rem;
}
.vtc-links {
    margin-top: 1.5rem;
    border-top: 1px solid #01baff;
    padding-top: 1.5rem;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.vtc-links a {
    color: #01baff;
    text-decoration: none;
}
.vtc-links a:hover {
    text-decoration: underline;
}
.vtc-button {
    display: inline-block;
    background-color: #792ccf;
    color: white !important;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 5px;
    transition: background-color 0.3s;
    text-align: center;
}
.vtc-button:hover {
    background-color: #5d22a4;
    text-decoration: none !important;
}
#vtc-events .event-item {
    background-color: #1A1A1A;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #01baff;
    margin-bottom: 1rem;
}
#vtc-events .event-item h3 {
    margin-top: 0;
}
#vtc-events .event-item h3 a {
    color: #792ccf;
    text-decoration: none;
}
#vtc-events .event-item h3 a:hover {
    text-decoration: underline;
}

/* New VTC Events Card Design */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}
.event-card {
    background-color: #1A1A1A;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #01baff;
    display: flex;
    flex-direction: column;
}
.event-banner {
    height: 150px;
    background-size: cover;
    background-position: center;
}
.event-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.event-card-content h3 {
    margin-top: 0;
    color: #792ccf;
}
.event-card-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    flex-grow: 1;
}
.event-card-content ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}
.event-card-content ul li i {
    color: #01baff;
    width: 25px;
    text-align: center;
    margin-right: 10px;
}
.event-details-link {
    color: #01baff;
    text-decoration: none;
    font-weight: bold;
    align-self: flex-start;
}
.event-details-link:hover {
    text-decoration: underline;
}

/* Pagination Styles */
#pagination-container {
    text-align: center;
    margin-top: 2rem;
}

.pagination-btn {
    background-color: #1A1A1A;
    color: #ffffff;
    border: 1px solid #01baff;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pagination-btn:hover {
    background-color: #2e3192;
}

.pagination-btn.active {
    background-color: #792ccf;
    border-color: #792ccf;
    cursor: default;
}

/* Pagination Styles */
#pagination-container {
    text-align: center;
    margin-top: 2rem;
}
.pagination-btn {
    background-color: #1A1A1A;
    color: #ffffff;
    border: 1px solid #01baff;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.pagination-btn:hover {
    background-color: #2e3192;
}
.pagination-btn.active {
    background-color: #792ccf;
    border-color: #792ccf;
    cursor: default;
}

/* Bot Sales Page Styles */
.bot-sales-page .hero {
    text-align: center;
    padding: 2rem;
    background-color: #1A1A1A;
    border-radius: 8px;
    margin-bottom: 2rem;
}
.bot-sales-page .hero h1 {
    color: #792ccf;
}
.bot-sales-page section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #1A1A1A;
    border-radius: 8px;
    border: 1px solid #01baff;
}
.bot-sales-page h2 {
    border-bottom: 2px solid #792ccf;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}
.features-grid .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}
.feature-item {
    background-color: #000000;
    padding: 1rem;
    border-radius: 5px;
}
.subscription-plans .plans-container, .premium-features .premium-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.plan-item, .premium-item {
    background-color: #000000;
    padding: 0.8rem;
    border-radius: 5px;
}
.pricing-info p, .subscription-plans p, .premium-features p {
    margin: 0.5rem 0;
}
.note {
    margin-top: 1rem;
    font-style: italic;
    color: #cccccc;
}

/* Responsive Design */
.menu-toggle {
    display: none; /* Hidden by default */
    color: #ffffff;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .header-container {
        justify-content: space-between;
    }

    nav {
        display: none; /* Hide nav by default on smaller screens */
        position: absolute;
        top: 60px; /* Position below header */
        left: 0;
        width: 100%;
        background-color: #1A1A1A;
        border-top: 1px solid #01baff;
        z-index: 999;
        padding-left: 0;
        border-left: none;
    }

    nav.active {
        display: block; /* Show when active */
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid #2e3192;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        padding: 1rem;
        border-radius: 0;
    }

    .dropdown-menu {
        position: static;
        display: none; /* Controlled by JS */
        background-color: #2e3192;
        border: none;
        min-width: unset;
        width: 100%;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .menu-toggle {
        display: block; /* Show hamburger menu */
    }

    #stats-bar {
        flex-direction: column;
        gap: 1.5rem;
    }

    .portfolio-container {
        flex-direction: column;
    }

    .portfolio-sidebar {
        flex: 0 0 auto; /* Reset flex property */
    }
}

@media (max-width: 768px) {
    main {
        padding: 10px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .mods-grid,
    .projects-grid,
    .gallery-grid,
    .video-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .news-post,
    .portfolio-container {
        flex-direction: column;
    }

    .social-media-minimal a {
        margin: 0 10px;
        font-size: 1.2rem;
    }

    #clients .client-logos img,
    #partners .partners-logos img {
        height: 80px;
    }
}
