footer{
    background-color: #F9F9F9;
    position: relative;
}

footer .container{
    display: flex;
    justify-content: space-between;
}

footer a,
footer span{
    display: block;
}

footer .item-grid a{
    text-decoration: none;
    text-transform: uppercase;
    color: #121212;
}

footer .logo{
    width: 227px;
}

footer .logo img{
    width: 100%;
}

.item-grid{
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    column-gap: 70px;
    row-gap: 35px;
}

.item-grid .socials{
    display: flex;
    justify-content: space-between;
}

.copywrite{
    position: absolute;
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 80%;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #ABABAB;
    font-size: 14px;
}
.copywrite .additionalLinks{
    margin-top: 10px;
}

.chatbot{
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 5;
    width: 100px;
    height: 100px;
    display: flex;
    margin: 40px;
}

.chatbot img{
    width: 100%;
    height: 100%;
}

.chatbot:hover .message{
    opacity: 1;
    top: 50%;
}

.chatbot #chatbotWidget{
    position: absolute;
    width: 300px;
    height: 400px;
    bottom: 0;
    right: 0;
    border-radius: 6px;
    border: none;
    background-color: transparent;
    transform: translate(-120px, 0);
    box-shadow: 0px 0px 16px 0px rgba(194, 194, 194, 0.5);
    border-radius: 24px;
}

.chatbot .widgetCloseMobile{
    position: fixed;
    top: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border-radius: 50%;
    color: #F9F9F9;
    border: 1px solid #F9F9F9;
    box-shadow: 0px 0px 16px 0px #F9F9F9;
    display: none;
}

@media screen and (max-width: 743px) {
    .chatbot #chatbotWidget{
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        transform: translate(0, 0);
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .chatbot .widgetCloseMobile:not(.hidden){
        display: block;
    }
}

.chatbot #chatbotWidget.hidden{
    display: none;
}

.chatbot .message{
    position: absolute;
    left: 0;
    top: 500px;
    transform: translate(calc(-100% - 20px), -50%);
    width: 150px;
    padding: 10px;
    font-size: 0.5rem;
    border-radius: 5px;
    background-color: #f3faff;
    opacity: 0;
    transition: .2s;
    z-index: 4;
}

.chatbot .message::after{
    content: '';
    background-color: #f3faff;
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%)
        rotate(45deg);
}

/* MOBILE */
@media screen and (max-width: 743px) {
    footer{
        padding: 70px 0;
    }

    footer .logo{
        margin-bottom: 30px;
    }

    footer nav.item-grid{
        margin-bottom: 40px;
    }

    footer div.item-grid{
        grid-template-columns: auto;
    }

    footer div.item-grid>*:nth-child(2){
        grid-row-start: 3;
    }

    footer .container{
        flex-flow: column;
        text-align: center;
        align-items: center;
    }

    .chatbot{
        width: 50px;
        height: 50px;
        margin: 10px;
    }
}

/* TABLET */
@media screen and (min-width: 744px) and (max-width: 1349px) {
    footer{
        font-size: 14px;
    }

    footer .container{
        flex-flow: column;
        align-items: center;
        padding: 60px 86px 70px;
    }

    nav.item-grid{
        grid-template-columns: repeat(4, auto);
    }

    footer nav{
        padding: 50px 0 70px;
    }

    .chatbot{
        width: 80px;
        height: 80px;
        margin: 30px;
    }

    .chatbot #chatbotWidget{
        transform: translateX(-100px);
    }
}

/* DESKTOP */
@media screen and (min-width: 1350px) {
    footer{
        font-size: 16px;
    }

    footer .container{
        padding: 80px 0;
    }
}