.footer {
    background: #773618;
}

.footer_logo {
    width: max-content;
}

.footer_connect_cta {
    position: absolute;
    top: 0;
    right: 5%;
}

.footer a {
    width: fit-content;
}

.footer_subform .subscribe-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(252, 209, 139, 1);
    max-width: 100%;
    gap: 1rem;
}

/* subscribe form*/
.footer_subform .subscribe-form input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 1) !important;
}

.footer_subform input::placeholder {
    color: rgba(255, 255, 255, 1) !important;
    opacity: 1 !important;
}

.footer_subform .subscribe-form button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 1);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.underlined_text_white {
    position: relative;
    width: fit-content;
}

.underlined_text_white:before {
    content: "";
    position: absolute;
    bottom: -6px;
    background: rgba(255, 255, 255, 1);
    height: 1px;
    width: 75%;
}


.footer {
    height: 100%;
    overflow:hidden;
}

.footer_left_section::before {
    content: '';
    border: 1px solid #ffffff24;
    border-radius: 50% 50% 0% 50%;
    position: absolute;
    width: 130%;
    height: 140%;
    top: -120px;
    left: -131px;
}

.vector_bg {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    bottom: -150px;
    right: 0;
}

@media screen and (max-width: 768px) {
    .footer_left_section::before {
    content: '';
    border: 1px solid #ffffff24;
    border-radius: 50% 50% 0% 50%;
    position: absolute;
    width: 10rem;
    height: 10rem;
   top: 44%;
        left: 61%;
}
	.vector_bg {
		display:none;
	}
}

@media screen and (min-width: 1920px){
	.footer_left_section::before {
  content: '';
        border: 1px solid #ffffff24;
        border-radius: 50% 50% 0% 50%;
        position: absolute;
        width: 63rem;
        height: 41rem;
        top: -8rem;
        left: -6rem;
}
}