.location {
    width: 80%;
    margin: auto;
    padding: 70px 0 20px 0;

    iframe {
        width: 100%;
    }
}

.contactUs {
    width: 80%;
    margin: auto;
    align-items: center;
}


.contactSec {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin: auto;

    div {
        display: flex;
        align-items: center;
        text-align: start;
        margin: 10px 0 10px;
    }

    & .fa-solid {
        font-size: 20px;
        width: 4.2rem;
        aspect-ratio: 1;
        margin-right: 30px;
        background-color: var(--supporting-color);
        color: green;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s linear;
        cursor: pointer;

        &:hover {
            color: var(--supporting-color);
            background-color: var(--bnt-hover-bg-color);
            rotate: 360deg;
            /* transform: scale(1.1); */
        }
    }

    .numMar {
        margin: 25px 0 25px;
    }

    h5 {
        font-size: 20px;
        color: #000;
        font-weight: 400;
        margin-bottom: 5px;
    }

    p {
        color: #777;
        padding: 0;
        font-size: 15px;
    }
}

@media(max-width: 767px) {

    .contactSec {
        width: 80%;
        margin: 30px auto 0;

        h5 {
            font-size: 15px;
        }

        p {
            font-size: 10px;
        }

        .fa-solid {
            margin-right: 20px;
            width: 2rem;
        }

        .numMar {
            margin: 15px 0 15px;
        }

        .heroBtn2 {
            font-size: 15px;
            padding: 8px;
        }
    }
}

.contactSec input,
.contactSec textarea {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    outline: none;
    background: #f1efef;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.heroBtn2 {
    display: inline-block;
    text-decoration: none;
    color: #f44336;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 16px;
    font-weight: 700;
    border: 3px solid #f44336;
    position: relative;
    cursor: pointer;
    background: transparent;
}

.heroBtn2:hover {
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
    color: white;
}