/* currently no rules here, the following rule is just there so the minifier won't choke on an empty result */

/*  Homepage CONTACT US section, start  */

.hp-contact-form-wrapper {
    background-color: #01294d;
    padding: 30px 0;
    margin: 5rem 0;
}

.hp-contact-form-wrapper .container {
    background-color: #e6eaee;
    display: flex;
    flex-direction: column;
    
}

.hp-contact-form-wrapper .container .container-header {
    background-color: var(--brand-blue);
    color: white;
    padding: 1.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    
}

.hp-contact-form-wrapper .container .body {
    padding: 2rem;
}

.hp-contact-form-wrapper .text .header {
    font-size: 2.3rem;
    font-weight: 500;
    line-height: normal;
}

.hp-contact-form-wrapper #form input,
.hp-contact-form-wrapper #form textarea,
.hp-contact-form-wrapper #form select {
    border: 1px solid black;
    border-radius: 2rem;
    padding: 20px;
    font-size: 1rem;
    font-weight: 500;
}

.hp-contact-form-wrapper #form .cms-button-a {
    font-size: 1.2rem;
    margin-top: 20px;
}

.hp-contact-form-wrapper #form input::placeholder {
    color: black;
    
}

@media only screen and (max-width: 1020px) {

    .hp-contact-form-wrapper .container .body {
        flex-direction: column;
    }
}

@media only screen and (max-width: 670px) {
    .hp-contact-form-wrapper .text .header {
        font-size: 1.8rem;
    }

    .hp-contact-form-wrapper #form input {
        padding: 15px;
        font-size: 1rem;
    }

    .hp-contact-form-wrapper #form .cms-button-a {
        font-size: 1rem;
    }
    
}

.industries-list-wrapper {
    margin: 5rem 0;
}

.industries-list { 
    margin: 3rem 0;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
}

.industries-list .elm {
    display: flex;
}

.industries-list .elm {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.industries-list .elm .image {
    width: 56px;
    height: 56px;
    background-color: var(--brand-blue);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industries-list .elm .image img {
    max-width: 15px;
}

.industries-list .elm .text {
    font-size: 1.5rem;
    font-weight: 500;   
}

@media only screen and (max-width: 1300px) {

    .industries-list .elm .text {
        font-size: 1.3rem;
    }
}

@media only screen and (max-width: 1024px) {
    .industries-list { 
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 650px) {
    .industries-list .elm .text {
        font-size: 1rem;
    }

    .industries-list .elm .image {
        width: 40px;
        height: 40px;
    }

    .industries-list .elm .image img {
        max-width: 10px;
    }

    .industries-list .elm {
        gap: 1rem;
    }
}

@media only screen and (max-width: 500px) {
    .industries-list { 
        grid-template-columns: repeat(1, 1fr);
    }
}

/*  Homepage CONTACT US section, finish  */

@media only screen and (max-width: 1185px) {

}

@media only screen and (max-width: 679px) {

}