body:has(.contact-section) #footer .head {
    display: none;
}

#footer {
    position: sticky;
    bottom: 0;
    z-index: 1;

    @media only screen and (min-width: 980px) {
        border-left: 1px solid #939393;
        border-right: 1px solid #939393;
        margin-inline: 10px;        
    }

    @media only screen and (max-width: 980px) {
        position: relative;
    }

    .head {
        padding-top: 70px;
        padding-bottom: 70px;

        @media only screen and (max-width: 980px) {
             padding-bottom: 30px;
        }

        .label {
            text-transform: uppercase;
            font-size: 40px;
            font-family: var(--font-alt);
            text-align: center;
            margin-bottom: 32px;

            @media only screen and (max-width: 980px) {
                font-size: 20px;
            } 
        }

        .big {
            position: relative;

            > span {
                text-box: cap alphabetic;
                color: var(--primary);
                font-size: 20vw;
                position: relative;
                font-family: var(--font-heading);
                text-transform: uppercase;
                text-align: center;
                font-weight: 500;
                display: block;
                margin-inline: auto;

                @media only screen and (max-width: 980px) {
                    font-size: 40vw;
                    margin-bottom: 24px;
                } 

            }

            .btn-wrap {
                margin: auto;
                display: flex;
                align-items: center;
                justify-content: center;

                @media only screen and (min-width: 980px) {
                    position: absolute;
                    top: 0;
                    bottom: 0;
                    left: 0;
                    right: 0;
                }

                a {
                    background: #000;
                    border: 1px solid #111;
                    color: #fff;
                    border-radius: 250px;   
                    padding: 20px;
                    display: inline-flex;
                    gap: 20px;
                    align-items: normal;
                    position: relative;
                    transition: all 1s;

                    @media only screen and (max-width: 980px) {
                        padding: 7px;
                        gap: 7px;
                    } 

                    span {
                        text-box: cap alphabetic;
                        background: #000;
                        color: #fff;
                        text-transform: uppercase;
                        font-size: 110px;   
                        border: 2px solid #fff;
                        border-radius: 250px;
                        padding-left: 14px;
                        padding-right: 24px;
                        display: flex;
                        align-items: center;
                        justify-content: center;   

                        @media only screen and (max-width: 980px) {
                            font-size: 40px;
                        }                                           
                    }

                    i {
                        width: 128px;
                        height: 128px;
                        font-size: 75px;
                        border-radius: 50%;
                        background: var(--primary);
                        color: #000;
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;

                        @media only screen and (max-width: 980px) {
                            width: 44px;
                            height: 44px;
                            font-size: 25px;
                        } 

                    }                                                   
                }
            }
        }

        .nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            position: relative;
            z-index: 5;

            a {
                text-transform: uppercase;
                color: #fff;
                transition: all 0.3s;
                font-weight: 700;

                &.active {
                    color: var(--text);
                }

                &:after {
                    content: "";
                    width: 0%;
                    height: 1px;
                    background: #fff;
                    transition: all 0.3s;
                    display: block;
                    margin-top: 5px;
                }

                &:hover {
                    transform: translateX(5px);

                    &:after {
                        width: 100%;
                    }
                }
            }

            span {
                color: var(--primary);
            }

            @media only screen and (max-width: 980px) {
                display: none;
            }

        }
    }

    .body {
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        display: grid;
        grid-template-columns: 1fr 1fr;

        .text {
            border-right: 1px solid #fff;
            padding: 42px;
            text-transform: uppercase;
            font-size: 20px;
            line-height: 1.3;
        }

        .info {
            align-self: center;
            overflow: hidden;
            font-size: 72px;
            white-space: nowrap;

            .slide {
                display: inline-flex;
                align-items: center;
                gap: 50px;
                animation: 20s ScrollCarousel infinite linear;
                position: relative;
                z-index: 2;

                i {
                    color: var(--primary);
                }
            }

            .slide:first-child {
                margin-right: 30px;
            }               
        }

        @media only screen and (max-width: 980px) {
            display: none;
        }

    }

    .foot {
        grid-column-gap: 16px;
        grid-row-gap: 16px;
        justify-content: center;
        padding: 3vh 4vh;
        display: grid;
        align-items: center;
        border-top: 1px solid #939393;

        @media only screen and (min-width: 980px) {
            grid-template-rows: auto;
            grid-auto-columns: 1fr;            
            grid-template-columns: 1fr 1fr;
            justify-content: space-between;
        }

        .left {
            img {
                height: 38px;
            }

            @media only screen and (max-width: 980px) {
                display: none;
            }
        }

        .center {
            margin-left: auto;

            .links {
                position: relative;
                z-index: 9;
                display: flex;
                gap: 10px;

                a {
                    font-size: 28px;
                    color: #fff;
                    text-transform: uppercase;  
                    transition: all 0.75s;
                    overflow: hidden;

                    span {
                        display: inline-block;
                        text-shadow: 0px 38px #fff;
                        transform: translateY(0em) rotate(0.001deg);
                        transition: transform 1s cubic-bezier(0.5, 0.05, 0, 1);
                    }

                    &:hover {
                        transform: scale(0.9);

                        span {
                            transform: translateY(-38px) rotate(0.001deg);
                        }
                    }   

                    @media only screen and (max-width: 980px) {
                        font-size: 20px;
                    } 

                    @media only screen and (min-width: 980px) {
                        border-radius: 250px;                       
                        border: 1px solid #fff;
                        padding: 4px 10px;
                    }      
                }
            }
        }

        .right {
            .by {
                text-align: right;

                span {
                    color: var(--primary);
                }

                @media only screen and (max-width: 980px) {
                    text-align: center;
                    font-size: 16px;
                }

            }
        }
    }
}


.widgets {
    background-color: #0A0A0A;
    border-top: 1px solid #939393;
    padding: 42px;
    color: #fff;
}

.footer-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-contact-item {
    padding-right: 30px;
    width: 100%;
}

.footer-contact-item + .footer-contact-item {
    margin-top: 30px;
}

.footer-contact-item span {
    display: block;
}

.footer-contact-item span:first-child {

}

.footer-privacy {
    line-height: 1.7;
}

.footer-privacy-copyright {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 50px;
    font-size: 14px;
    color: var(--text);
    border-top: 1px solid #939393;
    padding-top: 30px;

    .footer-privacy {
        color: var(--text);
    }
}

.footer-menu-title {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
}

.footer-menu a {
    display: block;
    margin-top: 10px;
    color: var(--text);
}

.logo-text {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: end;
}

.footer-contact-item span:first-child {
    font-size: 16px;
    color: #fff;
}

.footer-contact-item span:last-child {
    color: var(--text);
    margin-top: 10px;
    line-height: 1.3;
}

.footer-copyright {
    text-align: right;
}


@media only screen and (max-width: 980px) {
    .footer-row {
        grid-template-columns: 1fr;
    }

    .footer-privacy-copyright {
        grid-template-columns: 1fr;
    }

    .footer-copyright {
        text-align: left;
    }
}