/* Reset e variabili */
:root {
    --primary-color: #000000;
    --secondary-color: #222222;
    --text-color: #ffffff;
    --spacing-unit: 1rem;
    --spacing-double: 2rem;
    --spacing-triple: 3rem;
    --border-radius: 4px;
    --font-primary: 'Poppins', sans-serif;
    --font-impact: "Impact";
    --font-size-base: 16px;
    --font-size-large: 36px;
    --font-size-medium: 20px;
    --layout-space-unit: var(--spacing-unit);
    --layout-space-halfunit: calc(var(--spacing-unit) / 2);
    --layout-space-oneandhalfunits: calc(var(--spacing-unit) * 1.5);
    --layout-space-twounits: var(--spacing-double);
    --layout-space-threeunits: var(--spacing-triple);
    --layout-space-fourunits: calc(var(--spacing-unit) * 4);
    --layout-space-sixunits: calc(var(--spacing-unit) * 6);
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.5;
    color: var(--text-color);
    background: var(--primary-color);
}

/* Utility classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: var(--spacing-unit);
}

.gap-2 {
    gap: var(--spacing-double);
}

.mt-1 {
    margin-top: var(--spacing-unit);
}

.mt-2 {
    margin-top: var(--spacing-double);
}

.mb-1 {
    margin-bottom: var(--spacing-unit);
}

.mb-2 {
    margin-bottom: var(--spacing-double);
}

/* Classi di testo unificate */
.text-base {
    color: var(--text-color);
    display: inline-block;
    font-size: var(--font-size-base);
    font-family: var(--font-primary);
}

.text-light {
    font-weight: 300;
}

.text-bold {
    font-weight: 700;
}

.text-semibold {
    font-weight: 600;
}

.text-impact {
    font-family: var(--font-impact);
}

.text-impact-large {
    font-size: var(--font-size-large);
    font-family: var(--font-impact);
    text-transform: uppercase;
}

.text-impact-medium {
    font-size: var(--font-size-medium);
    font-family: var(--font-impact);
    font-weight: 700;
}

/* Layout components */
.section-wrapper {
    display: contents;
}

.section-max-width {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.section-content {
    gap: var(--layout-space-oneandhalfunits);
    width: 100%;
    display: flex;
    align-self: stretch;
    align-items: center;
    flex-direction: column;
}

.section-title {
    gap: var(--spacing-unit);
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

/* Card component */
.card {
    gap: var(--layout-space-oneandhalfunits);
    flex: 1;
    width: 100%;
    display: flex;
    flex-grow: 1;
    max-width: 500px;
    align-items: center;
    flex-shrink: 0;
    flex-direction: column;
}

.card-image {
    width: 80px;
    height: 80px;
}

.card-content {
    gap: var(--layout-space-unit);
    display: flex;
    align-self: stretch;
    align-items: center;
    flex-direction: column;
}

.card-title {
    display: flex;
    align-self: stretch;
    align-items: center;
    flex-direction: column;
}

/* Team section specific */
.team1-wrapper {
    display: contents;
}

.team1-max-width {
    gap: var(--spacing-triple);
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: column;
}

.team1-section-title {
    gap: var(--spacing-unit);
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.team1-content1 {
    gap: var(--layout-space-oneandhalfunits);
    width: 100%;
    display: flex;
    align-self: stretch;
    align-items: center;
    flex-direction: column;
}

.team1-content2 {
    gap: var(--layout-space-sixunits);
    display: flex;
    align-self: stretch;
    align-items: center;
    flex-direction: column;
}

.team1-content3 {
    gap: 64px;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-direction: column;
}

.team1-row1,
.team1-row2 {
    gap: var(--layout-space-twounits);
    display: flex;
    align-self: stretch;
    flex-shrink: 0;
    justify-content: center;
}

.team1-container1,
.team1-container2,
.team1-container3 {
    gap: var(--layout-space-twounits);
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.team1-card1,
.team1-card2,
.team1-card3,
.team1-card4,
.team1-card5 {
    gap: var(--layout-space-oneandhalfunits);
    flex: 1;
    width: 100%;
    display: flex;
    flex-grow: 1;
    max-width: 500px;
    align-items: center;
    flex-shrink: 0;
    flex-direction: column;
}

.team1-placeholder-image1,
.team1-placeholder-image2,
.team1-placeholder-image3,
.team1-placeholder-image4,
.team1-placeholder-image5 {
    width: 80px;
    height: 80px;
}

.team1-content4,
.team1-content5,
.team1-content6,
.team1-content7,
.team1-content8 {
    gap: var(--layout-space-unit);
    display: flex;
    align-self: stretch;
    align-items: center;
    flex-direction: column;
}

.team1-title1,
.team1-title2,
.team1-title3,
.team1-title4,
.team1-title5 {
    display: flex;
    align-self: stretch;
    align-items: center;
    flex-direction: column;
}

.team1-text11,
.team1-text14,
.team1-text17,
.team1-text20,
.team1-text23 {
    font-style: normal;
    font-weight: 600;
}

.team1-text12,
.team1-text13,
.team1-text15,
.team1-text16,
.team1-text18,
.team1-text19,
.team1-text21,
.team1-text22,
.team1-text24,
.team1-text25 {
    text-align: center;
}

.team1-social-icons1,
.team1-social-icons2,
.team1-social-icons3,
.team1-social-icons4,
.team1-social-icons5 {
    gap: var(--layout-space-unit);
    display: flex;
    align-items: flex-start;
}

.team1-link1,
.team1-link2,
.team1-link3,
.team1-link4,
.team1-link5 {
    display: contents;
}

.team1-icon10,
.team1-icon12,
.team1-icon14,
.team1-icon16,
.team1-icon18 {
    fill: var(--text-color);
    text-decoration: none;
}

.team1root-class-name {
    padding: var(--layout-space-threeunits);
    background-color: var(--primary-color);
}

.smoked
{
    background-image: url('public/smoke_yellow.png');
}

.gold-text {
    color: #FFD700 !important;
}

/* Media queries */
@media(max-width: 991px) {
    .team1-content2 {
        gap: var(--spacing-triple);
    }
}

@media(max-width: 767px) {

    .team1-row1,
    .team1-row2 {
        align-items: center;
        flex-direction: column;
    }
}

@media(max-width: 479px) {
    .team1-text10 {
        text-align: center;
    }

    .team1-container1,
    .team1-container2,
    .team1-container3 {
        flex-direction: column;
    }
}

/* Componenti */
.banner3-wrapper {
    display: contents;
}

.banner3-container1 {
    gap: var(--spacing-unit);
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: column;
}

.banner3-image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0;
}

.banner3-max-width {
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 100;
    gap: var(--spacing-double);
    align-items: center;
    flex-direction: column;
}

.banner3-container2 {
    gap: var(--dl-layout-space-halfunit);
    display: flex;
    z-index: 100;
    align-items: center;
    flex-direction: column;
}

.banner3root-class-name {
    height: 600px;
}

@media(max-width: 991px) {
    .banner3root-class-name {
        height: 500px;
    }
}

@media(max-width: 479px) {
    .banner3root-class-name {
        height: 300px;
    }
}

/* Hero section */
.hero1-wrapper {
    display: contents;
}

.hero1-max-width {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.hero1-column {
    gap: 24px;
    top: auto;
    flex: 1;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.hero1-image {
    position: absolute;
    width: 40%;
    top: 50px;
    left: 0;
    z-index: 2;
    object-fit: fill;
}

.hero1-content {
    width: 65%;
    position: relative;
    z-index: 1;
    opacity: 0.9;
    padding: var(--spacing-triple);
    background-color: var(--secondary-color);
}

.hero1-content11,
.hero1-content12,
.hero1-content13,
.hero1-content14,
.hero1-content15,
.hero1-content16,
.hero1-content17,
.hero1-content18 {
    margin-top: var(--dl-layout-space-unit);
}

.hero1-content18 {
    margin-bottom: var(--dl-layout-space-unit);
}

.hero1-actions {
    gap: var(--dl-layout-space-unit);
    display: flex;
    align-items: flex-start;
}

.home-fragment15 {
    display: contents;
}

.home-text26 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.home-text27 {
    font-style: normal;
    font-weight: 700;
}

.home-fragment13 {
    display: contents;
}

.home-text20 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.home-fragment17 {
    display: contents;
}

.home-text33 {
    color: rgb(253, 252, 252);
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.home-text34 {
    font-style: normal;
    font-weight: 700;
}

.home-fragment12 {
    display: contents;
}

.home-text17 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    margin-left: 30px;
}

.home-fragment14 {
    display: contents;
}

.home-text23 {
    fill: var(--dl-color-theme-neutral-dark);
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.home-fragment11 {
    display: contents;
}

.home-text14 {
    color: #ffffff;
    display: inline-block;
    font-size: 36px;
    font-family: "Impact";
}

.home-text15 {
    font-family: "Impact";
}

.home-fragment10 {
    display: contents;
}

.home-text11 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    margin-left: 40px;
}

.home-fragment18 {
    display: contents;
}

.home-text37 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.home-text38 {
    font-style: normal;
    font-weight: 700;
}

.home-fragment16 {
    display: contents;
}

.home-text30 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.hero1root-class-name {
    width: 100%;
    padding-top: var(--dl-layout-space-threeunits);
    padding-left: var(--dl-layout-space-threeunits);
    padding-right: var(--dl-layout-space-threeunits);
    padding-bottom: var(--dl-layout-space-threeunits);
    background-color: #000000;
}

@media(max-width: 991px) {
    .hero1-container {
        flex-direction: column;
    }
}

@media(max-width: 767px) {
    .hero1-heading1 {
        text-align: center;
    }

    .hero1-content11,
    .hero1-content12,
    .hero1-content13,
    .hero1-content14,
    .hero1-content15,
    .hero1-content16,
    .hero1-content17,
    .hero1-content18 {
        text-align: center;
    }

    .hero1-actions {
        width: 100%;
        justify-content: center;
    }
}

@media(max-width: 479px) {
    .hero1-image {
        display: block;
        position: absolute;
        width: 100%;
        height: auto;
        top: 0;
        left: 0;
        z-index: 1;
        opacity: 0.5;
    }

    .hero1-content {
        width: 100%;
        position: relative;
        z-index: 2;
        background-color: rgba(34, 34, 34, 0.7);
    }

    .hero1-actions {
        flex-direction: column;
    }

    .hero1root-class-name {
        padding-top: 0px;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }
}

/* Contact section */
.contact-form5-wrapper {
    display: contents;
}

.contact-form5-contact1 {
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: column;
}

.contact-form5-section-title {
    gap: var(--spacing-unit);
    align-items: center;
}

.contact-form5-content {
    gap: var(--dl-layout-space-oneandhalfunits);
    display: flex;
    align-self: stretch;
    align-items: center;
    flex-direction: column;
}

.contact-form5-form {
    gap: var(--dl-layout-space-oneandhalfunits);
    width: 100%;
}

.contact-form5-container1 {
    gap: var(--dl-layout-space-unit);
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
}

.contact-form5-input1 {
    gap: var(--dl-layout-space-halfunit);
    width: 50%;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-direction: column;
}

.contact-form5-text12 {
    color: #ffffff;
}

.contact-form5-text-input1 {
    border-color: #ffffff;
    border-width: 1px;
    border-radius: var(--dl-layout-radius-cardradius);
    background-color: #ffffff;
}

.contact-form5-input2 {
    gap: var(--dl-layout-space-halfunit);
    width: 50%;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-direction: column;
}

.contact-form5-text13 {
    color: #ffffff;
}

.contact-form5-text-input2 {
    border-width: 0px;
    border-radius: var(--dl-layout-radius-cardradius);
    background-color: #ffffff;
}

.contact-form5-container2 {
    gap: var(--dl-layout-space-unit);
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
}

.contact-form5-input3 {
    gap: var(--dl-layout-space-halfunit);
    width: 50%;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-direction: column;
}

.contact-form5-text14 {
    color: #ffffff;
}

.contact-form5-text-input3 {
    border-width: 0px;
    border-radius: var(--dl-layout-radius-cardradius);
    background-color: #ffffff;
}

.contact-form5-input4 {
    gap: var(--dl-layout-space-halfunit);
    width: 50%;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-direction: column;
}

.contact-form5-text15 {
    color: #ffffff;
}

.contact-form5-text-input4 {
    border-width: 0px;
    border-radius: var(--dl-layout-radius-cardradius);
    background-color: #ffffff;
}

.contact-form5-container3 {
    flex: 0 0 auto;
    width: 50%;
    display: flex;
    align-self: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.contact-form5-input5 {
    gap: var(--dl-layout-space-halfunit);
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-direction: column;
}

.contact-form5-text16 {
    color: #ffffff;
}

.contact-form5-select {
    border-radius: var(--dl-layout-radius-cardradius);
}

.contact-form5-container4 {
    gap: var(--dl-layout-space-halfunit);
    flex: 0 0 auto;
    width: 50%;
    display: flex;
    align-self: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.contact-form5-text17 {
    color: #ffffff;
}

.contact-form5-textarea {
    border-width: 0px;
    border-radius: var(--dl-layout-radius-cardradius);
    background-color: #ffffff;
}

.contact-form5-checkbox1 {
    gap: var(--dl-layout-space-unit);
    display: flex;
    align-self: flex-start;
    align-items: center;
}

.contact-form5-text18 {
    color: #ffffff;
}

.contact-form5-button {
    color: #000000;
    align-self: flex-start;
    border-color: var(--dl-color-theme-secondary1);
    border-width: 0px;
    background-color: #ffffff;
}

.home-fragment37 {
    display: contents;
}

.home-text88 {
    color: #ffffff;
    display: inline-block;
    font-size: 36px;
    font-family: "Impact";
    text-transform: uppercase;
}

.home-fragment36 {
    display: contents;
}

.home-text87 {
    color: #ffffff;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.home-fragment35 {
    display: contents;
}

.home-text86 {
    display: inline-block;
}

.contact-form5root-class-name {
    padding-top: var(--dl-layout-space-threeunits);
    padding-left: var(--dl-layout-space-threeunits);
    padding-right: var(--dl-layout-space-threeunits);
    padding-bottom: var(--dl-layout-space-threeunits);
    background-color: #000000;
}




@media(max-width: 991px) {
    .contact-form5-text11 {
        font-size: 36px;
        font-family: Impact;
    }

    .contact-form5-container1 {
        gap: var(--dl-layout-space-twounits);
        width: 100%;
        flex-direction: row;
    }

    .contact-form5-input1 {
        width: 50%;
    }

    .contact-form5-text-input1 {
        border-radius: var(--dl-layout-radius-cardradius);
    }

    .contact-form5-input2 {
        width: 50%;
        flex-direction: column;
    }

    .contact-form5-text-input2 {
        border-radius: var(--dl-layout-radius-cardradius);
    }

    .contact-form5-container2 {
        gap: var(--dl-layout-space-twounits);
        width: 100%;
        flex-direction: row;
    }

    .contact-form5-input3 {
        width: 50%;
    }

    .contact-form5-text-input3 {
        border-radius: var(--dl-layout-radius-cardradius);
    }

    .contact-form5-input4 {
        width: 50%;
    }

    .contact-form5-text-input4 {
        border-radius: var(--dl-layout-radius-cardradius);
    }

    .contact-form5-container3 {
        gap: var(--dl-layout-space-twounits);
        width: 100%;
        flex-direction: row;
    }

    .contact-form5-input5 {
        gap: var(--dl-layout-space-halfunit);
        width: 50%;
        flex-direction: column;
    }

    .contact-form5-container4 {
        width: 100%;
    }

    .contact-form5-textarea {
        border-radius: var(--dl-layout-radius-cardradius);
    }

    .contact-form5-checkbox1 {
        align-self: flex-start;
    }

    .contact-form5root-class-name {
        padding-top: var(--dl-layout-space-threeunits);
        padding-left: var(--dl-layout-space-threeunits);
        padding-right: var(--dl-layout-space-threeunits);
        padding-bottom: var(--dl-layout-space-threeunits);
        background-color: #000000;
    }
}

@media(max-width: 767px) {
    .contact-form5-textarea {
        flex: 1;
    }
}

@media(max-width: 479px) {
    .contact-form5-form {
        padding: var(--dl-layout-space-unit);
    }

    .contact-form5-container1 {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-form5-input1 {
        width: 100%;
    }

    .contact-form5-input2 {
        width: 100%;
    }

    .contact-form5-container2 {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-form5-input3 {
        width: 100%;
    }

    .contact-form5-input4 {
        width: 100%;
    }

    .contact-form5-input5 {
        width: 100%;
    }

    .contact-form5-select {
        width: 100%;
    }
}

/* Footer */
.footer8-wrapper {
    display: contents;
}

.footer8-container {
    width: 100%;
    height: auto;
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.footer8-max-width {
    gap: var(--spacing-double);
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.footer8-content {
    gap: var(--dl-layout-space-fourunits);
    width: 100%;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-shrink: 0;
}

.footer8-newsletter {
    gap: var(--dl-layout-space-oneandhalfunits);
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    flex-direction: column;
}

.footer8-content-title1 {
    color: #ffffff;
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
}

.footer8-content1 {
    color: #ffffff;
    text-transform: capitalize;
}

.footer8-text12 {
    color: #ffffff;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
}

.footer8-text13 {
    text-transform: capitalize;
}

.footer8-text15 {
    color: #ffffff;
}

.footer8-social-links {
    gap: var(--dl-layout-space-unit);
    display: flex;
    align-self: flex-start;
    align-items: flex-start;
    flex-direction: row;
}

.footer8-icon10 {
    fill: #ffffff;
}

.footer8-icon12 {
    fill: #ffffff;
}

.footer8-icon14 {
    fill: #ffffff;
}

.footer8-icon16 {
    fill: #ffffff;
}

.footer8-icon18 {
    fill: #ffffff;
}

.footer8-credits {
    gap: var(--dl-layout-space-twounits);
    width: 100%;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-direction: column;
}

.footer8-row {
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-shrink: 0;
    justify-content: space-between;
}

.footer8-footer-links {
    gap: 24px;
    display: flex;
    align-items: flex-start;
}

.footer8-link11,
.footer8-link12 {
    text-decoration: none;
}

.home-fragment40 {
    display: contents;
}

.home-text91 {
    color: #ffffff;
    display: inline-block;
}

.home-fragment38 {
    display: contents;
}

.home-text89 {
    color: #ffffff;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.home-fragment39 {
    display: contents;
}

.home-text90 {
    color: #ffffff;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.home-fragment41 {
    display: contents;
}

.home-text92 {
    color: #ffffff;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.footer8root-class-name {
    padding-top: var(--dl-layout-space-threeunits);
    padding-left: var(--dl-layout-space-threeunits);
    padding-right: var(--dl-layout-space-threeunits);
    padding-bottom: var(--dl-layout-space-threeunits);
    background-color: #000000;
}

@media(max-width: 991px) {
    .footer8-container {
        background-color: #000000;
    }

    .footer8-content {
        border-radius: 0px;
    }

    .footer8-newsletter {
        width: 300px;
    }
}

@media(max-width: 767px) {
    .footer8-content {
        flex-direction: column;
    }

    .footer8-newsletter {
        width: 100%;
    }

    .footer8-social-links {
        align-self: flex-start;
    }

    .footer8-row {
        gap: 0;
        flex-direction: column;
        justify-content: space-between;
    }
}

@media(max-width: 479px) {
    .footer8-container {
        background-color: #000000;
    }

    .footer8-newsletter {
        align-self: center;
        align-items: center;
        justify-content: center;
    }

    .footer8-content1 {
        text-align: center;
    }

    .footer8-content2 {
        text-align: center;
    }

    .footer8-social-links {
        align-self: center;
        align-items: center;
        justify-content: center;
    }

    .footer8-credits {
        gap: 0;
    }

    .footer8-row {
        gap: var(--dl-layout-space-oneandhalfunits);
        align-items: center;
        justify-content: center;
    }

    .footer8-footer-links {
        align-items: center;
        flex-direction: column;
        justify-content: center;
        font-family: 'Poppins', sans-serif;
    }
}

.home-container1 {
    width: 100%;
    display: flex;
    min-height: 100vh;
    align-items: center;
    flex-direction: column;
}

.home-container2 {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}

.home-image1 {
    text-align: center;
    width: 150px;
    margin-top: var(--dl-layout-space-unit);
    margin-bottom: var(--dl-layout-space-unit);
}

.home-container3 {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    padding: var(--dl-layout-space-threeunits);
    align-items: flex-start;
    justify-content: center;
    background-color: #222222;
}

.home-text10 {
    color: #ffffff;
    font-size: 36px;
    text-align: center;
    text-transform: uppercase;
}

.home-fragment10 {
    display: contents;
}

.home-text11 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.home-fragment11 {
    display: contents;
}

.home-text14 {
    color: #ffffff;
    display: inline-block;
    font-size: 36px;
    font-family: "Impact";
}

.home-text15 {
    font-family: "Impact";
}

.home-fragment12 {
    display: contents;
}

.home-text17 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    margin-left: 30px;
}

.home-fragment13 {
    display: contents;
}

.home-text20 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.home-fragment14 {
    display: contents;
}

.home-text23 {
    fill: var(--dl-color-theme-neutral-dark);
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.home-fragment15 {
    display: contents;
}

.home-text26 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.home-text27 {
    font-style: normal;
    font-weight: 700;
}

.home-fragment16 {
    display: contents;
}

.home-text30 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.home-fragment17 {
    display: contents;
}

.home-text33 {
    color: rgb(253, 252, 252);
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.home-text34 {
    font-style: normal;
    font-weight: 700;
}

.home-fragment18 {
    display: contents;
}

.home-text37 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.home-text38 {
    font-style: normal;
    font-weight: 700;
}

.home-container4 {
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
}

.home-image2 {
    width: 50%;
    object-fit: cover;
}

.home-container5 {
    width: 100%;
    display: flex;
    padding-top: var(--dl-layout-space-threeunits);
    padding-left: var(--dl-layout-space-threeunits);
    padding-right: var(--dl-layout-space-threeunits);
    flex-direction: column;
    padding-bottom: var(--dl-layout-space-threeunits);
    justify-content: center;
    background-color: #222222;
}

.home-text40 {
    color: #ffffff;
    display: block;
    font-size: 36px;
    font-family: "Impact";
}

.home-text43 {
    color: #ffffff;
    margin-top: var(--dl-layout-space-unit);
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}

.home-container6 {
    flex: 0 0 auto;
    display: flex;
    flex-direction: row-reverse;
}

.home-image3 {
    width: 50%;
    object-fit: cover;
}

.home-container7 {
    width: 100%;
    display: flex;
    align-self: stretch;
    padding-top: var(--dl-layout-space-threeunits);
    padding-left: var(--dl-layout-space-threeunits);
    padding-right: var(--dl-layout-space-threeunits);
    flex-direction: column;
    padding-bottom: var(--dl-layout-space-threeunits);
    justify-content: center;
    background-color: #222222;
}

.home-text55 {
    color: #ffffff;
    display: block;
    font-size: 36px;
    font-family: "Impact";
}

.home-text58 {
    color: #ffffff;
    margin-top: var(--dl-layout-space-unit);
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}

.home-container8 {
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
}

.home-image4 {
    width: 50%;
    object-fit: cover;
}

.home-container9 {
    width: 100%;
    display: flex;
    align-self: stretch;
    padding-top: var(--dl-layout-space-threeunits);
    padding-left: var(--dl-layout-space-threeunits);
    padding-right: var(--dl-layout-space-threeunits);
    flex-direction: column;
    padding-bottom: var(--dl-layout-space-threeunits);
    justify-content: center;
    background-color: #222222;
}

.home-text61 {
    color: #ffffff;
    display: block;
    font-size: 36px;
    font-family: "Impact";
}

.home-text64 {
    color: #ffffff;
    margin-top: var(--dl-layout-space-unit);
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}

.home-fragment19 {
    display: contents;
}

.home-text67 {
    color: #ffffff;
    display: inline-block;
    font-size: 20px;
    font-style: normal;
    font-family: "Impact";
    font-weight: 700;
}

.home-fragment20 {
    display: contents;
}

.home-text68 {
    color: #ffffff;
    display: inline-block;
    font-size: 20px;
    font-style: normal;
    font-family: "Impact";
    font-weight: 700;
}

.home-fragment21 {
    display: contents;
}

.home-text69 {
    color: #ffffff;
    display: inline-block;
    font-size: 20px;
    font-style: normal;
    font-family: "Impact";
    font-weight: 700;
}

.home-fragment22 {
    display: contents;
}

.home-text70 {
    color: #ffffff;
    display: inline-block;
    font-size: 20px;
    font-style: normal;
    font-family: "Impact";
    font-weight: 700;
}

.home-fragment23 {
    display: contents;
}

.home-text71 {
    color: #ffffff;
    display: inline-block;
    font-size: 20px;
    font-style: normal;
    font-family: "Impact";
    font-weight: 700;
}

.home-fragment24 {
    display: contents;
}

.home-text72 {
    color: #ffffff;
    display: inline-block;
    font-size: 36px;
    font-style: normal;
    font-family: "Impact";
    font-weight: 700;
    text-transform: uppercase;
}

.home-fragment25 {
    display: contents;
}

.home-text73 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.home-fragment26 {
    display: contents;
}

.home-text74 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.home-fragment27 {
    display: contents;
}

.home-text75 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.home-fragment28 {
    display: contents;
}

.home-text76 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.home-fragment29 {
    display: contents;
}

.home-text77 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.home-fragment30 {
    display: contents;
}

.home-text78 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.home-fragment31 {
    display: contents;
}

.home-text79 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.home-fragment32 {
    display: contents;
}

.home-text80 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.home-fragment33 {
    display: contents;
}

.home-text81 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.home-fragment34 {
    display: contents;
}

.home-text85 {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.home-fragment35 {
    display: contents;
}

.home-text86 {
    display: inline-block;
}

.home-fragment36 {
    display: contents;
}

.home-text87 {
    color: #ffffff;
    display: inline-block;
}

.home-fragment37 {
    display: contents;
}

.home-text88 {
    color: #ffffff;
    display: inline-block;
    font-size: 36px;
    font-family: "Impact";
    text-transform: uppercase;
}

.home-fragment38 {
    display: contents;
}

.home-text89 {
    color: #ffffff;
    display: inline-block;
}

.home-fragment39 {
    display: contents;
}

.home-text90 {
    color: #ffffff;
    display: inline-block;
}

.home-fragment40 {
    display: contents;
}

.home-text91 {
    color: #ffffff;
    display: inline-block;
}

.home-fragment41 {
    display: contents;
}

.home-text92 {
    color: #ffffff;
    display: inline-block;
}

@media(max-width: 991px) {
    .home-container4 {
        flex-direction: column;
    }

    .home-image2 {
        width: 100%;
    }

    .home-container5 {
        width: 100%;
    }

    .home-container6 {
        flex-direction: column;
    }

    .home-image3 {
        width: 100%;
    }

    .home-container7 {
        width: 100%;
    }

    .home-container8 {
        flex-direction: column;
    }

    .home-image4 {
        width: 100%;
    }

    .home-container9 {
        width: 100%;
    }
}

@media(max-width: 479px) {
    .home-container4 {
        flex-direction: column;
    }

    .home-image2 {
        width: 100%;
    }

    .home-container5 {
        width: 100%;
        flex-direction: column;
    }

    .home-container6 {
        flex-direction: column;
    }

    .home-image3 {
        width: 100%;
    }

    .home-container7 {
        width: 100%;
        flex-direction: column;
    }

    .home-container8 {
        flex-direction: column;
    }

    .home-image4 {
        width: 100%;
    }

    .home-container9 {
        width: 100%;
        flex-direction: column;
    }

}