/* =========================================================
   ABOUT
========================================================= */

.about {
    background: #fbfcfe;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
}

.advantages {
    margin-top: 45px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.advantage {
    padding: 24px 20px;

    text-align: center;

    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: 12px;

    box-shadow:
        0 8px 22px rgba(20, 43, 76, .05);
}

.advantage-title {
    font-family: "Nunito Sans", Arial, sans-serif;

    font-size: 17px;
    font-weight: 700;

    color: var(--blue);
}


/* =========================================================
   MANUFACTURER DETAILS
========================================================= */

.manufacturer-details {
    background: #ffffff;
    border-top: 1px solid var(--border);
}

.manufacturer-details-content {
    width: 100%;
}

.manufacturer-details-content h2 {
    margin: 0 0 24px;

    font-size: 34px;
    color: var(--blue);
}

.manufacturer-details-content p {
    margin: 0 0 20px;

    font-size: 16px;
    line-height: 1.75;

    color: var(--text-light);
}

.lionex-details-logo {
    width: 40%;
    max-width: 220px;
    height: auto;

    margin-bottom: 28px;
}

.biohit-details-logo {
    width: 13%;
    height: auto;
    margin-bottom: 28px;
}

.elitech-details-logo {
    width: 20%;
    height: auto;
    margin-bottom: 28px;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-section {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 0;
}

.contact-form-title {
    margin: 0 0 4px;

    font-size: 28px;
    color: var(--blue);
}

.contact-form-description {
    margin: 0 0 16px;

    font-size: 16px;
    color: var(--text-light);
}

.contact-form {
    max-width: 780px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 8px 16px;
}

.form-field {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.form-field label {
    font-size: 14px;
    font-weight: 600;

    color: var(--text-light);
}

.form-field input {
    width: 100%;
    height: 36px;

    padding: 0 14px;

    font: inherit;
    font-size: 16px;

    color: var(--text);

    background: #ffffff;

    border: 1px solid #ccd7e5;
    border-radius: 7px;

    outline: none;
}

.form-field input:focus {
    border-color: var(--blue-light);

    box-shadow:
        0 0 0 3px rgba(47, 121, 239, .10);
}

.contact-form-button {
    margin-top: 10px;

    padding: 13px 24px;

    border: 0;
    border-radius: 7px;

    background: var(--blue-light);
    color: #ffffff;

    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
}

.contact-form-button:hover {
    background: var(--blue);
}
.contact-form-message {
    margin: 12px 0 0;
    min-height: 0px;
    font-size: 15px;
    font-weight: 600;
}

.contact-form-message.success {
    color: #218739;
}

.contact-form-message.error {
    color: #c62828;
}

.contact-form-button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* =========================================================
   CONTACT / FOOTER
========================================================= */

.footer {
    background:
        linear-gradient(90deg,
            #f4f8fd 0%,
            #eaf4ff 100%);

    padding: 35px 0 20px;

    border-top: 1px solid #dfe8f2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 50px;
    align-items: end;
}

.footer-company-block {
    display: flex;
    align-items: flex-end;
}

.footer-logo {
    width: 40%;
    height: auto;
    margin: 12px;
}

/* TEMPORARILY HIDDEN */

.footer-hidden {
    display: none;
}


/* OLD FOOTER ELEMENTS */

.footer-company {
    font-size: 15px;

    color: var(--text-light);
}

.footer-company strong {
    color: var(--text);

    font-size: 16px;
}

.footer-title {
    margin: 0 0 20px;

    color: var(--blue);

    font-size: 17px;
}

.contact-row {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 16px;

    color: #40516a;
}

.contact-icon {
    width: 24px;

    color: var(--blue);

    text-align: center;
}

.contact-row a:hover {
    color: var(--blue);
}

.footer-links {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-links a {
    color: #40516a;

    font-size: 15px;
}

.footer-links a:hover {
    color: var(--blue);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    margin-top: 25px;
    padding-top: 15px;

    border-top:
        1px solid rgba(100, 130, 170, .15);

    display: flex;
    justify-content: space-between;

    color: #8a98ab;

    font-size: 13px;
}

.contact-icon-phone {
    width: 16px;
    height: auto;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 950px) {

    .navigation {
        display: none;
    }

    .hero {
        background-position: 65% center;
    }

    .hero-title {
        font-size: 46px;
    }

    .manufacturer-grid {
        grid-template-columns: 1fr;
    }

    .advantages {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 620px) {

    .container {
        width:
            min(calc(100% - 32px),
                var(--container));
    }

    .header-inner {
        min-height: 75px;
    }

    .logo img {
        width: 220px;
    }

    .hero {
        min-height: 0;
        height: auto;

        background: none;
    }

    .hero-content {
        padding: 30px 0;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-text {
        font-size: 17px;
    }

    section {
        padding: 45px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .advantages {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }

    .manufacturers {
        padding-top: 30px;
    }

    .manufacturer-card p,
    .about-text,
    .manufacturer-details-content p {
        text-align: justify;
    }
    /* FOOTER FORM — MOBILE */

.footer {
    padding: 35px 0 18px;
}

.footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
}

.footer-company-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    width: 180px;
    margin: 0 0 5px;
}

.contact-form-section {
    width: 100%;
}

.contact-form {
    width: 100%;
    max-width: none;
}

.contact-form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
}

.form-field {
    gap: 4px;
}

.form-field input {
    width: 100%;
    height: 40px;
}

.contact-form-button {
    width: 100%;
    margin-top: 14px;
}

.footer-bottom {
    margin-top: 30px;
}
}