/* REG-INFO */

/* REG-INFO -> SHORT-INTRO */
.short-intro {
    font-size: 90%;
    margin-bottom: 50px;
}

.short-intro h1 {
    color: var(--color-comp-blue);
    font-size: 130%;
    font-weight: 400;
    text-align: left;
    text-transform: none;
    margin-bottom: 20px;
}

/* REG-INFO -> EXTENDED-DESCRIPTION */
.extended-description {
    display: flex;
    justify-content: center;
}

.extended-description-left,
.extended-description-right {
    width: 50%;
    font-size: 75%;
}

.extended-description-left {
    padding: 30px 40px;
}

.extended-description-left h1 {
    color: var(--color-comp-blue);
    font-size: 130%;
    font-weight: 400;
    text-transform: none;
    margin-bottom: 25px;
    position: relative;
}

.extended-description-left h1::after {
    position: absolute;
    top: 110%;
    left: 30%;
    right: 30%;
    height: 2px;
    background-color: var(--color-comp-blue);

    display: block;
    content: "";
}

.extended-description-left p {
    font-size: 110%;
    margin-bottom: 20px;
    line-height: 145%;
}

.extended-description-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FLASH-CLEANER-MACHINE SECTION */
#flash-cleaner-machine {
    display: flex;
    align-items: center;
}

.flash-cleaner-machine-description {
    margin-right: 15px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.flash-cleaner-machine-description h1 {
    font-size: 70%;
    font-weight: 400;
    text-align: left;
}

.flash-cleaner-machine-description span {
    font-size: 120%;
    display: block;
    margin-bottom: 20px;
}

.certificates {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    flex: 1;
}

.certificates li {
    width: 45%;
    font-size: 80%;
}

.certificates li h2,
.certificates li h3 {
    text-align: left;
}

.certificates li h2 {
    font-size: 170%;
    color: var(--color-comp-blue);
    text-shadow: 1px 1px 2px #888;
}

.certificates li h3 {
    color: var(--color-comp-green);
    margin-bottom: 5px;
}

.certificates li p {
    font-size: 90%;
    margin-bottom: 15px;
}

@media only screen and (max-width: 1140px) {
    .extended-description {
        flex-direction: column-reverse;
        background-color: #555;
    }

    .extended-description-left h1 {
        font-size: 160%;
        color: #fff;
    }

    .extended-description-left h1::after {
        background-color: #fff;
    }

    .extended-description-left p {
        font-size: 130%;
    }

    .extended-description-left,
    .extended-description-right {
        width: 100%;
    }

    .extended-description-left {
        z-index: 2;
        color: #fff;
        text-shadow: 1px 1px #444;
    }

    .extended-description-right {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        opacity: 0.6;
    }

    /* FLASH CLEARNER MACHINE */
    #flash-cleaner-machine {
        flex-direction: column;
    }

    #flash-cleaner-machine img {
        max-width: 90vw;
        margin: 0 auto 30px auto;
    }

    .flash-cleaner-machine-description {
        width: 90vw;
        margin: 0 auto;
    }

    .flash-cleaner-machine-description span {
        font-size: 100%;
    }

    .certificates li h2 {
        font-size: 140%;
    }

    .certificates li h3 {
        font-size: 120%;
    }
}

@media only screen and (max-width: 480px) {
    .certificates {
        flex-direction: column;
    }

    .certificates li {
        width: 100%;
        margin-bottom: 10px;
    }

    .certificates li h2,
    .certificates li h3,
    .certificates li p {
        text-align: center;
    }

    .extended-description-left h1 {
        color: var(--color-comp-blue);
    }

    .extended-description-left h1::after {
        background-color: var(--color-comp-blue);
    }

    .extended-description-left {
        color: unset;
        text-shadow: unset;
    }

    .extended-description {
        background-color: unset;
    }

    .extended-description-right {
        display: none;
    }
}