@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    /* Light Theme Variables */
    --background-color: #ffffff;
    --text-color: #333333;
    --primary-color: #2baa4a;
    --secondary-color: #02395a;
    --navbar-background: #ffffff;
    --navbar-text-color: #333333;
    --footer-background: #f8f8f8;
    --footer-text-color: #333333;
    --text-color-primary: #181818;
    --text-color-secondary: #010054c4;
    --card-background-color: #ccccff;
    --card-text-color: #373753;
    --font-family: 'Poppins', sans-serif;
    --text-color-ParagrafoForm: #181818;
    --text-color-paragrf: #333333;
}

/* Dark Theme */
[data-theme='dark'] {
    --background-color: #181818;
    --text-color: #ffffff;
    --navbar-background: #181818;
    --navbar-text-color: #ffffff;
    --footer-background: #181818;
    --footer-text-color: #ffffff;
    --text-color-primary: #ffffff;
    --text-color-secondary: #bebebe;
    --card-background-color: #333333;
    --card-text-color: #bebebe;
    --text-color-ParagrafoForm: #e5e5e5;
    --text-color-paragrf: #cccccc;
}

/* Global Styles */
body {
    margin: 0;
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    transition:
        background-color 0.3s,
        color 0.3s;
}

#padding-container {
    padding: 6.5rem 0 3rem !important;
}

/* Typography */
.fs-16px {
    font-size: 16px;
}
.fs-18px {
    font-size: 18px;
}
.fs-20px {
    font-size: 20px;
}
.fs-32px {
    font-size: 32px;
}
.fs-36px {
    font-size: 36px;
}
.fs-48px {
    font-size: 48px;
}

/* Images */
.full-img {
    width: 100%;
    display: block;
}

/* Miscellaneous */
.upper {
    position: relative;
    z-index: 10000;
}

/* Smooth Transitions for Theme Change */
* {
    transition:
        background-color 0.3s,
        color 0.3s,
        border-color 0.3s;
}

:root {
    --section-padding: 6.75rem;
}

/* font-weights */
.weight-9 {
    font-weight: 900;
}

.weight-8 {
    font-weight: 800;
}

.weight-7 {
    font-weight: 700;
}

.weight-6 {
    font-weight: 600;
}

.weight-5 {
    font-weight: 500;
}

.weight-4 {
    font-weight: 400;
}

.weight-3 {
    font-weight: 300;
}

/* margins */
.mb-5px {
    margin-bottom: 5px;
}

.mb-10px {
    margin-bottom: 10px;
}

.mb-15px {
    margin-bottom: 15px;
}

.mb-20px {
    margin-bottom: 20px;
}

.mb-25px {
    margin-bottom: clamp(5px, 1.73611vw, 25px);
}

.mb-30px {
    margin-bottom: clamp(18px, 2.08333vw, 30px);
}

.mb-35px {
    margin-bottom: 35px;
}

.mb-40px {
    margin-bottom: 40px;
}

.mb-45px {
    margin-bottom: 45px;
}

.mb-50px {
    margin-bottom: clamp(20px, 3.47222vw, 50px);
}

.mb-55px {
    margin-bottom: 55px;
}

.mb-60px {
    margin-bottom: clamp(40px, 4.16667vw, 60px);
}

.mb-70px {
    margin-bottom: clamp(40px, 4.86111vw, 70px);
}

.mb-75px {
    margin-bottom: clamp(35px, 5.20833vw, 75px);
}

.mb-80px {
    margin-bottom: 80px;
}

.mb-100px {
    margin-bottom: clamp(40px, 6.94444vw, 100px);
}

.mb-150px {
    margin-bottom: clamp(80px, 10.41667vw, 150px);
}

/* theme Contact */
.contact-header {
    color: var(--text-color);
}

.contact-container {
    background-color: var(--background-color);
}

form:focus {
    border: var(--text-color);
}

/* .barraemail {
    color: var(--text-color);
    background-color: var(--background-color)
} 

.barraName{
    color: var(--text-color);
    background-color: var(--background-color)
} */

input,
textarea {
    color: var(--text-color);
    background-color: var(--background-color);
}

.containerParagrafoForm {
    color: var(--text-color);
}

/* fine theme */

@media screen and (max-width: 1200px) {
    :root {
        --section-padding: 4rem;
    }
}

@media screen and (max-width: 991px) {
    :root {
        --section-padding: 3rem;
    }
}

@media screen and (max-width: 575px) {
    :root {
        --section-padding: 1rem;
    }
}

* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body[data-theme='light'] {
    background-color: #f4f4f4; /* Light background */
    color: #333; /* Dark text */
}

/* Dark Theme */
body[data-theme='dark'] {
    background-color: #181818; /* Dark background */
    color: #fff; /* Light text */
}

h1 {
    font-size: 56px;
    line-height: 68px;
}

@media screen and (max-width: 1300px) {
    h1 {
        font-size: 50px;
    }
}

@media screen and (max-width: 1200px) {
    h1 {
        font-size: 44px;
    }
}

@media screen and (max-width: 991px) {
    h1 {
        font-size: 34px;
        line-height: 48px;
    }
}

h2 {
    font-size: 3.33vw;
    line-height: 57px;
}

@media screen and (min-width: 1441px) {
    h2 {
        font-size: 48px;
    }
}

@media screen and (max-width: 1300px) {
    h2 {
        font-size: 40px;
    }
}

@media screen and (max-width: 1200px) {
    h2 {
        font-size: 40px;
    }
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 22px;
    line-height: 33px;
}

@media screen and (max-width: 1340px) {
    h4 {
        font-size: 20px;
    }
}

@media screen and (max-width: 991px) {
    h4 {
        font-size: 16px;
        line-height: 28px;
    }
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

@media screen and (max-width: 575px) {
    h6 {
        font-size: 16px;
    }
}

p {
    font-size: 16px;
}

a,
button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

.btn {
    background-color: #2baa4a;
    color: #fff;
    padding: 1rem 2.85rem;
    font-weight: bold;
    font-size: 16px;
    border-radius: 5px;
}

.btn:hover {
    opacity: 1;
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
}

.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 3px !important;
}

.swiper-pagination-bullet {
    background-color: #2baa4a !important;
    margin: 0 2px !important;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px !important;
    border-radius: 50px !important;
}

.container-fluid {
    max-width: 1340px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 !important;
}

#navbar,
#hero,
#services,
#about,
#portfolio,
#footer {
    padding-left: var(--section-padding) !important;
    padding-right: var(--section-padding) !important;
}

/* Navbar Colors for Light Theme */
body[data-theme='light'] #navbar {
    background-color: #f5f5f5;
    color: #000;
}

body[data-theme='light'] #navbar .nav .nav-item {
    color: #000;
}

body[data-theme='light'] #navbar .nav .nav-item a:hover {
    color: #2baa4a;
}

/* Navbar Colors for Dark Theme */
body[data-theme='dark'] #navbar {
    background-color: #181818;
    color: #fff;
}

body[data-theme='dark'] #navbar .nav .nav-item {
    color: #fff;
}

body[data-theme='dark'] #navbar .nav .nav-item a:hover {
    color: #66ff66; /* Light green hover for dark mode */
}

/* Active Nav Item */
#navbar .nav .nav-item.active {
    font-weight: bold;
}

body[data-theme='light'] #navbar .nav .nav-item.active a {
    color: #2baa4a;
}

body[data-theme='dark'] #navbar .nav .nav-item.active a {
    color: #66ff66;
}

/* Style for the theme toggle switch */
.theme-switcher {
    position: relative;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: '';
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #2baa4a;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

:root {
    --background-color: #ffffff; /* Light mode background */
    --text-color-primary: #000000; /* Light mode primary text */
    --text-color-secondary: #666666; /* Light mode secondary text */
}

[data-theme='dark'] {
    --background-color: #181818; /* Dark mode background */
    --text-color-primary: #ffffff; /* Dark mode primary text */
    --text-color-secondary: #bebebe; /* Dark mode secondary text */
}

#hero {
    position: relative;
    padding: 10rem 0 7rem;
    background-color: var(--background-color);
    z-index: 1;
}

@media screen and (max-width: 991px) {
    #hero {
        padding-bottom: 4rem;
    }
}

#hero img.line {
    position: absolute;
    width: 95%;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
    max-width: 1368px;
}

#service img.line {
    position: absolute;
    width: 95%;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
    max-width: 1368px;
}

@media screen {
    #hero img.line {
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width: 767px) {
    #hero .left {
        text-align: center;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

#hero .left h1 {
    color: var(--text-color-primary);
}

@media screen and (max-width: 767px) {
    #hero .left h1 {
        margin-left: auto;
        margin-right: auto;
    }
    #hero .left h1 br {
        display: none;
    }
}

#hero .left h4 {
    color: var(--text-color-secondary);
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    #hero .left .btn {
        margin-left: auto;
        margin-right: auto;
    }
}

#hero .right {
    position: relative;
}

#hero .right .right-img {
    width: 100%;
}

@media screen and (max-width: 991px) {
    #hero .right .right-img {
        width: 75%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
        display: block;
    }
}

#hero .right img.dots {
    position: absolute;
    right: 50px;
    top: 40px;
    z-index: -1;
}

/*START SocialLinks.jsx*/

#social-links {
    padding: 2rem 0;
}

#social-links .social {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    justify-items: center;
    align-items: center;
    padding: 0 1rem;
}

#social-links .social .item {
    display: block;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

#social-links .social .item:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

#social-links .social .item img {
    width: 100%;
    max-width: 180px; /* Optional: Restrict the max size of the logos */
    height: auto;
    display: block;
    object-fit: contain;
}

/* Responsive Improvements */
@media screen and (max-width: 575px) {
    #social-links .social {
        gap: 0.75rem;
    }
}

/*END SocialLinks.jsx*/

/* START About.jsx */
#about {
    padding: 7rem;
    position: relative;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-family);
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

#about .bg {
    position: absolute;
    left: 0;
    bottom: 7rem;
    z-index: -1;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

#about h2 {
    color: var(--text-color-primary);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    transition: color 0.3s ease;
}

#about h6 {
    font-weight: 300;
    color: var(--text-color-secondary);
    font-size: 1rem;
    margin-top: 1rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

/* Testimonial Card */
#about .testimonial {
    background-color: var(--card-background-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: var(--card-text-color);
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.2s ease;
}

#about .testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

#about .testimonial .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

#about .testimonial .header .user-info {
    display: flex;
    align-items: center;
}

#about .testimonial .header .user-info .user-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

#about .testimonial .header .user-info .user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#about .testimonial .header .user-info h6 {
    margin-left: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color-primary);
    transition: color 0.3s ease;
}

#about .testimonial .header .user-info small {
    font-weight: 300;
    color: var(--text-color-secondary);
    display: block;
    margin-left: 1rem;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

#about .testimonial .header .logo {
    width: 100px;
    height: auto;
    transition: transform 0.2s ease;
}

#about .testimonial .header .logo:hover {
    transform: scale(1.1);
}

#about .testimonial .body {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-color-secondary);
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Swiper Pagination Styling */
.swiper-pagination-bullet {
    background-color: var(--text-color-secondary);
    opacity: 0.8;
    transition:
        background-color 0.3s ease,
        opacity 0.3s ease;
}

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

/* Responsive Adjustments */
@media screen and (max-width: 767px) {
    #about {
        padding: 4rem 2rem;
    }

    #about h2 {
        font-size: 2rem;
    }

    #about h6 {
        font-size: 0.9rem;
    }

    #about .testimonial {
        padding: 1rem;
    }

    #about .testimonial .header .user-info h6 {
        font-size: 1rem;
    }

    #about .testimonial .header .user-info small {
        font-size: 0.8rem;
    }

    #about .testimonial .header .user-info .user-img {
        width: 60px;
        height: 60px;
    }
}

/*END About.jsx*/

/*START ImageSlider.js*/
.image-slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    cursor: ew-resize;
}

.image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.slider-handle {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 2px solid #007bff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: grab;
    transition: background-color 0.3s ease;
}

.slider-handle:active {
    cursor: grabbing;
    background-color: #0056b3;
}

/* Ensure no underlining or blue color when the image is clicked or hovered */
.image-slider img:focus,
.image-slider img:active,
.image-slider img:hover {
    outline: none;
    text-decoration: none;
    color: inherit;
}
/*END ImageSlider.js*/

/*START ServiceSelect.js*/

#services .stroke {
    position: absolute;
    top: -104px;
    left: -107px;
}
#services .line {
    position: absolute;
    width: 100%;
    top: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 1423px;
}
.services_selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    margin-top: 4rem;
    gap: 2rem;
}

/* Desktop Hover */
.services_selector_cards .services_selector_card:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Mobile Scroll Activation */
.services_selector_cards .services_selector_card.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

@media (max-width: 1000px) {
    .services_selector {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 2rem;
        gap: 1rem;
    }
}

.services_selector .services_selector_left {
    flex: 1;
    margin-right: 100px;
    position: relative;
    width: 50%;
    overflow: hidden;
    padding-left: 5%;
    padding-right: 5%;
}

@media (max-width: 1000px) {
    .services_selector .services_selector_left {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2rem;
        padding-left: 10%;
        padding-right: 10%;
    }
}

.services_selector .services_selector_left .swiper-container {
    width: 100% !important;
    overflow: hidden !important;
}

.services_selector .services_selector_left .swiper-container .swiper-slide {
    width: 100% !important;
    padding-right: 30px;
    transition: transform 0.3s ease-in-out;
}

/* Original Style for Navigation Buttons */
.services_selector .services_selector_left .swiper_navigation_btn_left,
.services_selector .services_selector_left .swiper_navigation_btn_right {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999; /* Ensure higher priority */
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
}

.services_selector .services_selector_left .swiper_navigation_btn_left {
    left: 0px;
}

.services_selector .services_selector_left .swiper_navigation_btn_right {
    right: 0px;
}

@media (max-width: 570px) {
    .services_selector .services_selector_left .swiper_navigation_btn_left {
        left: 0px;
    }

    .services_selector .services_selector_left .swiper_navigation_btn_right {
        right: 0px;
    }
}

.services_selector .services_selector_right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    min-height: 250px;
    transition: all 0.3s ease;
    color: white;
}

@media (max-width: 1000px) {
    .services_selector .services_selector_right {
        width: 100%;
        position: absolute;
        width: 100%;
        opacity: 0.05;
    }
}

.services_selector .services_selector_right img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.services_selector_cards {
    display: flex;
    margin-top: 80px;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 800px) {
    .services_selector_cards {
        flex-direction: column;
    }
}

.services_selector_cards .services_selector_card {
    flex: 1;
    padding: 24px;
    box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.11);
    border-radius: 8px;
    background-color: var(--card-background-color);
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
    cursor: pointer;
}

.services_selector_cards .services_selector_card:hover {
    box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.services_selector_cards .services_selector_card .services_selector_card_title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-color-primary);
}

.services_selector_cards .services_selector_card.active {
    background-color: var(--primary-color);
    color: var(--text-color-primary);
}

.services_selector_cards
    .services_selector_card.active
    .services_selector_card_title {
    color: var(--text-color-primary);
}

.services_selector_btn {
    background: var(--primary-color);
    border-radius: 4px;
    color: white;
    text-transform: uppercase;
    padding: 1.2rem 3rem;
    margin: 4rem auto 5rem auto;
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    transition:
        background-color 0.3s ease,
        transform 0.2s ease;
}

.services_selector_btn:hover {
    background: #248d3e;
    transform: translateY(-3px);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 500px) {
    .services_selector_btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

/*END ServiceSelect.js*/

/* START VideoSection.css */

.video-section {
    position: relative;
    padding: 4rem 2rem;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-family);
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.video-wrapper {
    position: relative;
    z-index: 1;
    padding-bottom: 4rem;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: var(--card-background-color);
    border-radius: 8px;
    z-index: -1;
    transition: background-color 0.3s ease;
}

.video-wrapper-img {
    max-width: 790px;
    height: 400px;
    width: 100%;
    margin: 0 auto 5rem;
    display: block;
    box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.16);
    border-radius: 8px;
    background-color: var(--background-color);
    transition:
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.video-wrapper-cards {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    transition: gap 0.3s ease;
}

@media (max-width: 580px) {
    .video-wrapper-cards {
        flex-direction: column;
        gap: 0;
    }
}

.video-wrapper-card {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background-color: var(--card-background-color);
    border-radius: 8px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.video-wrapper-card.with-border {
    border-right: 1px solid var(--primary-color);
}

@media (max-width: 580px) {
    .video-wrapper-card.with-border {
        border-right: none;
        border-bottom: 1px solid var(--primary-color);
    }
}

.video-wrapper-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12);
}

.video-wrapper-card p {
    margin: 0;
}

.fs-36px {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-color-primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.fs-20px {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-color-secondary);
    transition: color 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 760px) {
    .video-wrapper-img {
        height: 280px;
        margin-bottom: 1.5rem;
    }
}

/* END VideoSection.css */

/*START CARD SUBSCRIPTION*/

/* For screens smaller than 576px (extra small devices) */
@media (max-width: 1000px) {
    .cardsubscription {
        margin: 10px;
        width: 90%;
    }
}

/* For screens larger than 1200px (extra large devices) */
@media (min-width: 1000px) {
    .cardsubscription {
        margin: 20px;
        width: 400px;
    }
}

#services {
    background-color: var(
        --background-color
    ); /* Adapts to light or dark theme */
    padding: 80px 0;
}

.cardsubscription-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cardsubscription {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
}

.cardsubscription h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cardsubscription p {
    font-size: 22px;
    margin-bottom: 40px;
}

.cardsubscription ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.cardsubscription li {
    font-size: 16px;
    margin-bottom: 10px;
}

.cardsubscription a {
    display: block;
    margin-top: 40px;
}

.cardsubscription button {
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.cardsubscription button:hover {
    background-color: #0062cc;
}

/*END CARD SUBSCRIPTION*/

.accordion-wrapper {
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq_accordion_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px 0;
    border-bottom: 1px solid rgba(150, 150, 150, 0.16);
}

.faq_accordion_btn > :first-child {
    margin-right: 1rem;
}

.faq_accordion_btn .faq_accordion_icon {
    width: 24px;
    height: 24px;
    border: 2px solid #000000;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.2rem;
}

.faq_accordion_btn .faq_accordion_icon img {
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.faq_accordion_btn .faq_accordion_icon img.active {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.faq_accordion_content {
    padding: 1rem;
}

.faq_accordion_body {
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 1px solid rgba(150, 150, 150, 0.16);
    border-top: none;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

@media (max-width: 1000px) {
    .fs-32px {
        font-size: 28px;
    }
    .fs-18px {
        font-size: 16px;
    }
    .fs-36px {
        font-size: 32px;
    }
    .fs-20px {
        font-size: 18px;
    }
    .fs-48px {
        font-size: 42px;
    }
}

@media (max-width: 600px) {
    .fs-32px {
        font-size: 22px;
    }
    .fs-36px {
        font-size: 28px;
    }
    .fs-20px {
        font-size: 16px;
    }
    .fs-48px {
        font-size: 35px;
    }
}
/*# sourceMappingURL=styles.css.map */

/* Stili per LandingHeaderAXAI */

.it-landingaxai-container {
    padding: 0px;
}

#landing-header-axai {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: var(--background-color);
    color: var(--text-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#landing-header-axai .logo img {
    width: 250px;
}

/* Stili per il pulsante Call to Action */
#landing-header-axai .cta button {
    background-color: #2baa4a;
    color: #fff;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#landing-header-axai .cta button:hover {
    background-color: #24983e;
}

/* Stili per il bottone di tema */
#landing-header-axai .theme-toggle button {
    padding: 0.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    background-color: transparent;
    border: none;
    color: inherit;
}

/* Privacy and Policy */

.privacy-policy {
    padding: 2rem;
    background-color: #f9f9f9;
    color: #333;
    font-family: Arial, sans-serif;
}

.privacy-policy .container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-policy h1,
.privacy-policy h2 {
    color: #2baa4a;
    margin-bottom: 1rem;
}

.privacy-policy p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.privacy-policy ul {
    list-style: disc;
    margin-left: 2rem;
}

.privacy-policy ul li {
    margin-bottom: 0.75rem;
}

.privacy-policy section {
    margin-bottom: 2rem;
}
