/* Hero */

main {
    /* margin-top: 75px; */
}
.id-hero {
    height: clamp(280px, 38vw, 440px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
}

.id-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0.45;
    z-index: 0;
}

.id-hero::before {
    content: '';
    position: absolute;
    inset: 0;
}

.id-hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0;
}

.id-hero-overlay h1 {
    color: #0F0F33;
    font-family: 'Sailec Bold';
    font-size: 4vw;
    line-height: 1.3;
    margin: 0 0 16px;
}

span.id-green {
    color: #00338C;
;
}

.id-hero-overlay .id-hero-line {
    width: 90px;
    height: 5px;
    background: #8BD440;
    border-radius: 2px;
}

.id-hero-desc {
    font-family: 'Sailec Light';
    font-size: 17px;
    color: #555;
    line-height: 1.6;
    margin: auto;
    width: 60%;
}

.id-content-section {
    text-align: left;
    padding-top: 75px;
    padding-bottom: 50px;
    max-width: 90%;
    margin: 0 auto;
}

.id-img {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    margin: 50px auto;
}

.id-img img {
    width: 350px;
    object-fit: contain;
}

.id-content-section > div {
    margin-bottom: 20px;
}

.id-content-section h2 {
    color: #646464;
    font-family: 'Sailec Medium';
    font-size: 20px;
}
.id-content-section p em{
    color: #32326B;
}

.id-content-section h4{
     color: #646464;
    font-family: 'Sailec Medium';
    font-size: 20px;
}

.id-content-section p {
    color: #646464;
    font-family: 'Sailec Light';
    line-height: 1.6;
    font-size: 17px;
}

.id-content-section ul {
    color: #646464;
    font-family: 'Sailec Light';
    line-height: 1.6;
    font-size: 17px;
}

/* Responsive */

@media (min-width: 1500px) {
}
@media (max-width: 1200px) {
}
@media (max-width: 970px) {
}

@media (max-width: 767px) {
    .id-hero {
        padding: 0 30px;
    }

    .id-hero-desc {
        width: 100%;
    }

    .id-hero-overlay h1 {
        font-size: 24px;
    }

    .id-img {
        flex-direction: column;
    }
}
