.site-footer {
    background: var(--color-dark);
    color: #fff;
    padding: 60px 0 30px;
}
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-connect,
.footer-newsletter {
    flex: 1 1 45%;
}

.footer-connect h4,
.footer-newsletter h4 {
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--color-primary);
}

/* .footer-connect p,
.footer-connect .download-brochure {
    margin-bottom: 15px;
} */
.footer-connect p{
    font-size: 15px;
    color: #fff;
    margin-bottom: 30px;
}
.footer-connect p a{
    color: #fff;
    font-size: 14px;
}
.footer-connect p a.mail{
     position: relative;
    padding-right: 12px;
    margin-right: 5px;
}
.footer-connect p a.mail::after{
    content: "";
    width: 1px;
    height: 13px;
    background-color: #fff;
    display: block;
    position: absolute;
    right: 0;
    top: 2px;
}
.footer-connect .download-brochure {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.footer-connect .download-brochure:hover {
    text-decoration: underline;
}

.footer-newsletter p {
    margin-bottom: 20px;
    color: #fff;
    font-size: 15px;
}

.newsletter-form {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
}
.newsletter_set{
    max-width: 580px;
    margin-left: auto;
    position: relative;
}
.newsletter-form input[type="email"] {
    flex: 1;
    padding: 10px;
    border:none;
    background: transparent;
    color: rgba(255, 255, 255,.6);
    width: calc(100% - 172px);
    font-family: var(--font-body);
    font-size: 16px;
    border-radius: 0 !important;
}
.newsletter-form input[type="email"]::placeholder{
    color: rgba(255, 255, 255,.6);
}
.newsletter-form button {
    padding: 10px 20px;
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 500;
    width: 172px;
    height: 48px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-body);
    border-radius: 0 !important;
}

.newsletter-form button:hover {
    background-color: #b9430b;
}

.footer-bottom {
    border-top: 1px solid #9e9e9e;
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    justify-content: center;
    gap: 10px;
}
.footer-bottom p {
    margin: 0;
    color: #9e9e9e;
    font-size: 14px;
}
.footer-menu {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}
.footer-menu li{
    position: relative;
    padding-right: 10px;
}
.footer-menu li::after{
    content: "";
    width: 1px;
    height: 15px;
    background-color: #9e9e9e;
    position: absolute;
    right: 0;
    top: 4px;
}
.footer-menu li a {
    color: #9e9e9e;
    text-decoration: none;
}

.footer-menu li a:hover {
    text-decoration: underline;
}
.newsletter-box{
    width: 100%;
    display: flex;
    border: 1px solid  #fff;
}
.newsletter-msg.newsletter-success{
    font-size: 14px;
    position: absolute;
    bottom: -55px;
    color: #f37032;
}
.newsletter-msg.newsletter-error{
    font-size: 14px;
    position: absolute;
    bottom: -55px;
    color: #dc3232; 
}
