/* hero */
.hero .form-group {
    display: block;
}

/* Black overlay with light opacity */
.hero::before {
    content: "";
    /* Create a pseudo-element */
    position: absolute;
    /* Position it absolutely within the container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black color with 50% opacity */
}

.content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.contact_inner_ui {
    font-size: 18px;
    font-weight: bold;
}

.contact_inner_ui .cont_det {
    color: var(--primary-color);
    font-size: 18px;
    opacity: 0.6;
}

.left-column {
    flex: 1;
    padding: 20px;
    width: 76%;
    /* width: 60%; */
}

.right-column {
    flex: 1;
    padding: 48px;
    background-color: var(--primary-color);
    border-radius: 12px;
    box-shadow: -1px -1px 0px 14px #b0b0b052, 1px 1px 0px 14px #292d328f, 0px 0px 0px 14px #36221200;
    margin: 15px;
}
.hero .content .left-column{
    padding-left: 0;
}
.hero .content .row{
    width: 100%;
}
.hero .content .left-column .breadcrumbs_listing_top .breadcrumb{
    padding-left: 0;
    margin-bottom: 0;
}
.social-icons {
    display: flex;
    gap: 2px;
    align-items: center;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    /* width: 40px;
    height: 40px; */
}

.social-icons img {
    /* width: 10.39px; */
    /* height: 20px; */
    outline: solid 1px;
    padding: 10px 10px;
    border-radius: 50%;
}

.social-icons #facebook-icon {
    padding: 12px 17px;
}

.form-container {
    margin: 0 auto;
}

form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: bold;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

button {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}



.submission_form {
    font-size: 16px;
    text-transform: uppercase;
    background-color: #00D067;
    font-weight: bold;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.footer-padd .social-icons li a:hover svg path {
    fill: #003B20;
}

#bottom_footer_menu .submission_form {
    background-color: #fff !important;
    transition: background-color 0.5s ease;
    padding: 0 20px;
    color: #006039;
    font-size: 16px;
    text-transform: uppercase;
    width: 100%;
}

#bottom_footer_menu .submission_form:hover {
    background-color: #00D067 !important;
    color: var(--primary-color);
}
.needs-validation input{
    border-radius: 100px;
}
.needs-validation textarea{
    border-radius: 12px;
}


