/* Button css */
.titltShake {
    animation: tilt-shaking 0.15s infinite;
}

@keyframes tilt-shaking {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(0eg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.Button {
    padding: 0.5rem 0.8rem;
    background-color: transparent;
    box-shadow: 2px 2px 5px black;
    transition: 300ms;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
    border: 2px solid var(--brandColor2);
    text-transform: uppercase;
    color: white;
}

.Button::before {
    content: "";
    position: absolute;
    background-color: var(--brandColor2);
    width: 90%;
    height: 80%;
    z-index: -1;
    transition: 200ms;
}

.Button i {
    font-size: 1.5rem;
}

.Button:hover i {
    transform: scale(1.1);
}

.Button:hover::before {
    width: 100%;
    height: 100%;
    background-color: var(--whatsappDark);
}

.fixedContainer {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
    z-index:999;
}

.fixedContainer>a {
    width: 60px;
    height: 60px;
    background-color: transparent;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    font-size: 2rem;
    z-index: 999;
    box-shadow: 2px 2px 5px var(--brandColor2);
    border: 2px solid var(--brandColor2);
}

.fixedContainer>a::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    background-color: var(--brandColor2);
    z-index: -1;
    border-radius: 100%;
    transition: 200ms;
}

.fixedContainer>a:hover::before {
    width: 100%;
    height: 100%;
}

.fixedContainer>a:hover i {
    transform: scale(1.1);
}

/* footer Title */
.footerTitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footerTitle::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30%;
    height: 4px;
    background-color: var(--brandColor2);
}



.titleBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    text-align: center;
    margin: 1rem 0;
}

.title {
    font-size: max(3vw, 2rem);
    text-transform: uppercase;
}

.titleBox p {
    font-size: max(2vw, 1.3rem);
}

/* ErrorContainer */
.ErrorContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--footerBg);
    color: white;
    padding: 1rem;
    gap: 0.6rem;
}

.ErrorContainer h1 {
    font-size: max(6vw, 2rem);
    margin: 0.5rem 0;
}