.elementor-2494 .elementor-element.elementor-element-425effd{--display:flex;}/* Start custom CSS for html, class: .elementor-element-1682430 */```css
/* =========================================
   SPIRIT ELECTRONICS
   ORGANIZED ABOUT SECTION
   ========================================= */

.about-section {
    position: relative;
    padding: 95px 20px;
    background: #ffffff;
    overflow: hidden;
}


/* Main container */

.about-container {
    width: min(1050px, 100%);
    margin: 0 auto;
}


/* =========================================
   HEADER
   ========================================= */

.about-header {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;

    animation: aboutHeader 0.8s ease forwards;
}


.about-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #635bff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.5px;
}


.about-header h2 {
    margin: 0;

    color: #151515;

    font-size: clamp(34px, 4.5vw, 52px);

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -1.8px;
}


.about-header h2 span {
    color: #635bff;
}


/* Small decorative line */

.about-line {
    width: 45px;
    height: 3px;

    margin: 22px auto 0;

    border-radius: 10px;

    background: #635bff;
}


/* =========================================
   CONTENT
   ========================================= */

.about-text {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    position: relative;
}


/* Vertical divider */

.about-text::before {
    content: "";

    position: absolute;

    top: 5px;
    bottom: 5px;

    left: 50%;

    width: 1px;

    background: #e7e7e7;
}


/* Columns */

.about-column {
    padding: 0 5px;

    opacity: 0;

    animation: aboutText 0.8s ease forwards;
}


.about-column:first-child {
    padding-right: 35px;
    animation-delay: 0.2s;
}


.about-column:last-child {
    padding-left: 35px;
    animation-delay: 0.35s;
}


/* Paragraph */

.about-column p {
    margin: 0;

    color: #555555;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.9;
}


/* Important company name */

.about-column p strong {
    color: #151515;

    font-weight: 700;
}


/* =========================================
   SUBTLE HOVER
   ========================================= */

.about-column {
    transition: transform 0.3s ease;
}

.about-column:hover {
    transform: translateY(-3px);
}


/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes aboutHeader {

    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes aboutText {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 768px) {

    .about-section {
        padding: 75px 20px;
    }

    .about-header {
        margin-bottom: 40px;
    }

    .about-text {
        gap: 35px;
    }

    .about-text::before {
        display: none;
    }

    .about-column:first-child {
        padding-right: 0;
    }

    .about-column:last-child {
        padding-left: 0;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .about-section {
        padding: 65px 18px;
    }

    .about-header h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .about-text {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .about-column p {
        font-size: 14px;
        line-height: 1.8;
    }

}
```/* End custom CSS */