.branch {
    background-color: #F5F5F5;
    padding: 5rem 0;
}

.branch-content {
    background-color: #fff;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0px 20px 26px 0px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.branch-content:hover {
    box-shadow: 0px 20px 26px 0px rgba(0, 0, 0, 0.18);
    transform: translateY(-10px);
    transition: all 0.3s ease;
}


.branch-content h2 {
    font-size: 24px;
    color: #161616;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.branch-content-image {
    width: 100%;
    height: 100%;
    margin-bottom: 1rem;
}

.branch-content-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.branch-content-address {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.branch-content-address svg {
    width: 25px;
    height: 25px;
    color: #ED2939;
    background-color: #DB43431A;
    border-radius: 10px;
    font-size: 12px;
    padding: 0.5rem;
    margin-inline-end: .1rem;
}

.branch-content-address-text h3 {
    font-size: 16px;
    color: #6C6C6C;
    font-weight: 400;
    margin-bottom: 0.1rem;
}

.branch-content-address-text a {
    font-size: 14px;
    color: #161616;
    font-weight: 400;
}

.contact-us {
    background-color: #fff;
    padding: 5rem 0;
    border-radius: 8px;
    position: relative;
    z-index: 3;
    /* box-shadow: 0px 20px 26px 0px rgba(0, 0, 0, 0.06); */
}

.home-contact-form {
    border-radius: 8px;
    background: #FFF;
    z-index: 3;
    position: relative;
    box-shadow: 0px 20px 26px 0px rgba(0, 0, 0, 0.08);
}

.contact-liner-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, #2C0000 20.83%, rgba(44, 0, 0, 0.00) 100%);
    opacity: .2;
    filter: blur(60px);
    height: 40%;
    z-index: 1;
}

.contact-us-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    /* align-items: center; */
    z-index: 2;
    position: relative;
    height: 100%;
}

.contact-us-content h2 {
    font-size: 28px;
    color: #161616;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-us-content p {
    font-size: 16px;
    color: #5D5D5D;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.contact-us-content-address {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-us-content-address svg {
    width: 20px;
    height: 20px;
    color: #ED2939;
    background-color: #DB43431A;
    border-radius: 10px;
    font-size: 12px;
    padding: 0.5rem;
    margin-inline-end: .1rem;
}

.contact-us-content-address-text h3 {
    font-size: 16px;
    color: #6C6C6C;
    font-weight: 400;
    margin-bottom: 0.1rem;
}

.contact-us-content-address-text a {
    font-size: 14px;
    color: #161616;
    font-weight: 400;
}

.contact-us-content-media {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-us-content-media h3 {
    font-size: 16px;
    color: #161616;
    font-weight: 600;
    margin-bottom: 0rem;
}

.contact-us-content-media ul {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-us-content-media ul li {
    list-style: none;
}

.contact-us-content-media ul li a {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background-color: #161616;
    color: #fff;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us-content-media ul li a:hover {
    background-color: #ED2939;
}












