footer {
    background: var(--darkBlue);
    padding: 140px 0;
}
.footer_section {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 150px;
    gap: 70px 30px;
}
.footer_col1 img {
    max-width: 100%;
    object-fit: contain;
}
.footer_col2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: var(--white);
}
.footer_col3 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--white);
}
footer .social-icons {
    display: flex;
    gap: 20px;
}
footer .s-icon {
    background: var(--white);
    color: var(--darkBlue);
}
footer .nav-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer .nav-options ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 !important;
}
footer .nav-link {
    color: var(--white);
}
footer .nav-link:hover,
footer .contact-info a:hover,
.copyright_section a:hover,
footer .nav-link:focus,
footer .contact-info a:focus,
.copyright_section a:focus,
footer .nav-link.active,
.footer_col3 .dropdown-menu li a:hover,
.footer_col3 .dropdown-menu li a:focus,
.footer_col3 .dropdown-menu li a.active {
    color: var(--green) !important;
}

.footer_col2 a.primary-btn:hover,
.footer_col2 a.primary-btn:focus,
.footer_col2 a.primary-btn.active {
    color: var(--white) !important;
}
footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;

    color: var(--white);
	font-family: var(--font-krub);
	font-size: var(--bodyFont);
	font-style: normal;
	font-weight: 500;
	line-height: var(--bodyLh);
}
footer .contact-info strong {
    font-weight: 700;
}

.copyright_section {
    margin-top: 30px;
    color: var(--white);
    
    font-family: var(--font-krub);
    font-size: var(--bodyFont);
	font-style: normal;
	font-weight: 500;
	line-height: var(--bodyLh);
}


.footer_col3 .dropdown-menu {
    position: relative;
    visibility: visible;
    width: auto;
    height: auto;
    top: 0;
    left: 0;
    background: transparent;
    box-shadow: none;
}
.footer_col3 .dropdown-menu a {
    padding: 0 !important;
    padding-left: 20px !important;
    font-weight: 400;
    color: var(--white);
}
.footer_col3 .dropdown-menu li a:hover,
.footer_col3 .dropdown-menu li a:focus,
.footer_col3 .dropdown-item.active, 
.footer_col3 .dropdown-item:active {
    background-color: transparent !important;
}


@media(min-width:992px) {
    .footer_col1 > div {
        width: calc(50% - 25px);
        display: inline-block;
        text-align: center;
        margin-bottom: 15px;
        margin-right: 20px;
        vertical-align: middle;
    }
}
@media(max-width:992px) {
    .footer_col1 {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        width: 100%;
        justify-content: center;
    }
    .footer_col1 img {
        max-width: 100%;
        object-fit: contain;
    }
    .footer_section {
        grid-template-columns: 1fr;
        gap: 70px 50px;
    }
    .footer_section .footer_col1 {
        grid-column: span 4;
    }
}

@media(max-width:767px) {
    footer {
        padding: 100px 0;
    }
    
    .footer_section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    .footer_section .footer_col1 {
        grid-column: unset;
    }
    .footer_col2 .social-icons {
        justify-content: center;
    }
    .footer_col3 .nav-right,.footer_col4 .nav-right {
        margin-bottom: 10px !important;
    }

    .footer_section .footer_col1 {
        order: 1;
        margin-bottom: 40px;
    }
    .footer_section .footer_col2 {
        order: 2;
        margin-bottom: 40px;
    }
    .footer_section .footer_col3 {
        order: 4;
    }
    .footer_section .footer_col4 {
        order: 3;
    }
    .copyright_section {
        text-align: center;
    }
}