.google-map  iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: none;
}

footer.footer {
    position: relative;
    padding: 90px 0 30px 0;
    color: var(--color-white);
    background-color: var(--color-black);
}

footer.footer .row-gap {
    row-gap: 90px;
}

footer.footer .footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

footer.footer .container {
    position: relative;
    z-index: 2;
}

footer.footer .social-media-list {
    display: flex;
    gap: 16px;
    flex-direction: row;
    align-items: center;
}

footer.footer .social-media-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-gold);
    transition: all 0.3s ease;
    padding: 4px;
}

footer.footer .social-media-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--color-white);
    transition: all 0.3s ease;
}

footer.footer .social-media-list li:hover {
    color: var(--color-gold);
    background: var(--color-gray-light);
    transition: all 0.3s ease;
}

footer.footer .main-address-container {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

footer.footer .main-address-container .main-address {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-gray-light);
}

footer.footer .main-address-container .contact-container {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}

footer.footer .main-address-container .contact-container a {
    display: block;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer.footer .main-address-container .contact-container a:hover {
    color: var(--color-gold);
    transition: all 0.3s ease;
}

footer.footer .branches-list {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

footer.footer .branches-list li {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

footer.footer .branches-list li .branch-name {
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    color: var(--color-gray-light);
}

footer.footer .branches-list li .branch-address {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}

footer.footer .branches-list li .contact-container {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}

footer.footer .branches-list li .contact-container a {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer.footer .branches-list li .contact-container a:hover {
    color: var(--color-gold);
    transition: all 0.3s ease;
}

footer.footer .menu {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

footer.footer .menu .menu-item a {
    color: var(--color-gray-light);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer.footer .menu .menu-item a:hover {
    color: var(--color-gold);
    transition: all 0.3s ease;
}

footer.footer a:not(.button-icon-link):not(.logo-link) {
    position: relative;
    display: inline-block;
    width: fit-content;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

footer.footer a:not(.button-icon-link):not(.logo-link)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

footer.footer a:not(.button-icon-link):not(.logo-link):hover::after,
footer.footer a:not(.button-icon-link):not(.logo-link):focus-visible::after {
    transform: scaleX(1);
}

footer.footer a:not(.button-icon-link):not(.logo-link):focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    footer.footer a:not(.button-icon-link):not(.logo-link),
    footer.footer a:not(.button-icon-link):not(.logo-link)::after {
        transition: none;
    }
}

footer.footer .footer-bottom-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

footer.footer .footer-bottom-row .footer-bottom-center {
    grid-column: 2;
    justify-self: center;
}

footer.footer .footer-bottom-row .footer-bottom-right {
    grid-column: 3;
    justify-self: end;
}

footer.footer .copyrights,
footer.footer .author {
    margin: 0;
    padding: 0;
}

footer.footer .copyrights a,
footer.footer .author a {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: var(--color-gray-light);
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer.footer .copyrights a:hover {
    color: var(--color-gold);
    transition: color 0.3s ease;
}

footer.footer .author {
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

footer.footer .author a::after {
    display: none;
}

footer.footer .footer-bottom {
    margin-top: 90px;
    padding-top: 30px;
    border-top: 1px solid var(--darkest-gray);
    z-index: 4;
    position: relative;
}