/* ============================= */
/* GLOBAL CONTAINER */
/* ============================= */

.company-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ============================= */
/* HERO */
/* ============================= */

.company-hero {
    height: 420px;
    position: relative;
    display: flex;
    align-items: center;
}

.company-hero-content {
    width: 100%;
    display: flex;
    align-items: center;
}

.company-hero-box {
    width: 480px;
    margin-left: 60px;
    background: rgba(40, 120, 165, 0.88);
    padding: 40px;
    color: #fff;
}

.company-hero-box h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

.company-hero-box p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.company-hero-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s ease;
}

.company-hero-btn:hover {
    background: #fff;
    color: #0b3bbf;
}

/* ============================= */
/* INTRO */
/* ============================= */

.company-intro {
    padding: 70px 0 40px;
}

.company-intro p {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 22px;
}

/* ============================= */
/* VALUES */
/* ============================= */

.company-values {
    padding: 60px 0;
}

.company-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.company-image {
    flex: 1;
}

.company-image img {
    width: 100%;
    height: auto;
    display: block;
}

.company-values-text {
    flex: 1;
}

.company-values-text h3 {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0b3bbf;
    margin-bottom: 22px;
}

.company-values-text ul {
    padding-left: 24px;
}

.company-values-text li {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
    line-height: 1.7;
}

/* ============================= */
/* SECTORS */
/* ============================= */

.company-sectors {
    padding: 80px 0;
}

.company-sectors-wrap {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.company-sectors-text {
    flex: 1;
    font-family: "Roboto", Arial, sans-serif;
}

.company-sectors-text h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0b3bbf;
    margin-bottom: 28px;
}

.company-sectors-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 24px;
}

.company-sectors-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.sector-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.sector-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sector-img:hover img {
    transform: scale(1.05);
}

/* ============================= */
/* RESPONSIVE TABLETTE */
/* ============================= */

@media (max-width: 992px) {

    .company-hero-box {
        width: 70%;
        margin-left: 40px;
        padding: 30px;
    }

    .company-flex {
        flex-direction: column;
        gap: 40px;
    }

    .company-sectors-wrap {
        flex-direction: column;
        gap: 40px;
    }
}

/* ============================= */
/* RESPONSIVE MOBILE */
/* ============================= */

@media (max-width: 768px) {

    .company-hero {
        height: auto;
        padding: 60px 0;
    }

    .company-hero-content {
        justify-content: center;
    }

    .company-hero-box {
        width: 90%;
        margin: 0;
        padding: 25px;
        text-align: center;
    }

    .company-hero-box h1 {
        font-size: 22px;
    }

    .company-hero-box p {
        font-size: 13px;
    }

    .company-intro {
        padding: 50px 0;
    }

    .company-values {
        padding: 50px 0;
        text-align: center;
    }

    .company-values-text ul {
        text-align: left;
    }

    .company-sectors {
        padding: 60px 0;
    }

    .company-sectors-images {
        grid-template-columns: 1fr;
    }

    .sector-img {
        
        height: 100%;
    }
}
