@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&family=Tajawal:wght@400;700&display=swap');

:root {
    --primaryColor: #212223;
    --middleColor: #F6672A;
    --helperColor: #223651;
    --lightHelper: #bbd9ff;
    --hrColor: rgb(222, 184, 135);
    --transparentColor: rgba(0, 0, 0, 0.699);
    --shadow: rgba(189, 188, 188, 0.514);
    /* --------------------------------- */
    --whatsappColor: #25D366;
    --white: #ffff;
    --blue: #1877F2;
    --green: #25D366;
    --gray: #f8f8f8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

a {
    text-decoration: none;
}

.aside-phone-number {

    display: none;
    color: var(--middleColor);
}

aside p {
    text-decoration: none;
    color: var(--middleColor);
}

aside a {
    text-decoration: none;
}

.btnsStyle {
    border: 1px solid var(--lightGray);
    background-color: var(--white);
    border-radius: 50%;
    /* padding: 1% 0px; */
    text-align: center;
    align-content: center;
    cursor: pointer;
    transition: transform 0.3s linear;
}

.btnsStyle:hover {
    transform: translateY(-5px);
}

#contactBtn {
    display: inline-block;
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 20px;
    left: 20px;
}

#contactContent {
    position: fixed;
    bottom: 60px;
    left: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    transition: display 2s;
}

.aside-link-phone {
    display: inline-block;
    padding: 0px 10px;
    text-decoration: none;
    color: var(--blue);

}

.aside-link-whats {
    display: inline-flex;
    padding: 0px 10px;
    text-decoration: none;
    color: var(--green);
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-word {
    display: none;
}

.faceboook {
    display: inline-block;
    width: 55px;
    height: 55px;
    color: var(--blue);
    font-size: xx-large;
    font-weight: bolder;

}

.faceboook:hover {
    background-color: var(--blue);
    color: var(--white);
}

.whatsappp {
    display: inline-block;
    width: 55px;
    height: 55px;
    color: var(--green);
    /* margin-top: 5px; */
}

.whatsappp i {
    font-size: xx-large;
    font-weight: bolder;
}

.whatsappp:hover {
    background-color: var(--green);
    color: var(--white);

}

.whatsappp:hover i {
    color: var(--white);
}

.phone {
    display: none;
    width: 55px;
    height: 55px;
    font-size: xx-large;
    font-weight: bolder;
}

.phone:hover {
    background-color: var(--gray);
    color: var(--white);
}

@media (max-width: 800px) {

    #contactBtn {
        display: none;
    }

    #contactContent {
        width: 100%;
        margin: auto;
        height: fit-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        gap: 10px;
        position: fixed;
        bottom: 0px;
        right: 0px;
        padding: 13px 0px;
        background-color: #222;
        border-bottom: 1px solid black;
        /* box-shadow: 0px -10px 40px var(--shadow); */
    }

    .phone {
        display: inline-block;
    }

    .aside-link-whats {
        border: 1px solid #f8f8f8;
        color: #f8f8f8;
        border-radius: 25px;
    }

    .aside-link-phone {
        border: 1px solid #f8f8f8;
        color: #f8f8f8;
        border-radius: 25px;
    }

    .contact-word {
        display: inline-flex;
    }

    .whatsappp {
        display: inline-block;
        width: 30px;
        height: 30px;
        color: #f8f8f8;
    }

    .whatsappp i {
        font-size: x-large;
        font-weight: bold;
    }

    .phone {
        display: inline-block;
        width: 30px;
        height: 30px;
        color: #f8f8f8;
        font-size: large;
        font-weight: bolder;
    }

    .btnsStyle {

        background-color: transparent;

    }
}