.footer-main--build{
    position: relative;
    background-color: var(--footer-bg-color);
}

.footer-main--build > img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-main--build{
    position: relative;
    z-index: 2;
}

.footer__information--build{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin-inline: auto;
}

.footer__guru--build{
    width: 175px;
    min-width: 175px;
    border-radius: 4px;
    padding: 10px;
    aspect-ratio: 1 / 1.35;
}

.footer__logo{
    display: none;
}

.footer__services--build{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.services__item--build{
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}

.footer__content-socials--build{
    display: flex;
    flex-direction: column-reverse;
    gap: 16px
}

.footer__socials--build{
    text-align: center
}

.footer__socials--build > p{
    text-align: center;
    margin-bottom: 10px;
    color: var(--footer-txt-color);
}

.footer__socials--build > div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.footer__socials--build svg{
    cursor: pointer;
    color: var(--footer-icons-color);
}

.footer__book-claim--build{
    width: 120px;
    aspect-ratio: 16/9;
    border-radius: 8px;
    cursor: pointer;
    margin-inline:auto
}

.footer__hr--build{
    border-color: var(--footer-txt-color);
}

.footer__copy--build{
    text-align: center;
    color: var(--footer-txt-color);
}

.footer__copy--build strong{
    cursor: pointer;
    color: var(--footer-txt-color);
}

@media only screen and (min-width: 600px){
    .footer__information--build{
        display: grid;
        grid-template-columns: auto 1fr auto;
        place-items: center;
    }

    .footer__logo{
        display: block;
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        width: 175px;
    }

    .footer__services--build{
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        align-items: flex-start;
    }

    .footer__content-socials--build{ flex-direction: column; }

    .footer__socials--build > div{ justify-content: flex-start; }

    .footer__socials--build p{ text-align: left; }

    .footer__book-claim--build { margin-inline:0; }
}

@media only screen and (min-width: 905px){
    .footer__information--build{
        padding: 0 25px 16px;
    }

    .footer__logo{
        width: 250px;
    }

    .footer__guru--build{
        width: 225px;
        min-width: 225px;
        aspect-ratio: initial;
    }

    .services__item--build{
        padding: 12px 10px
    }
}