:root {
    --primaryColor: #212529;
    --middleColor: #bfb08c;
    --helperColor: #B29414;
    --lightHelper: #F0ECE3;
    --transparentColor: #af847494;
    --shadow: #f0ece39f;
    --black: #212529;

    /* --------------------------------- */
    --whatsappColor: #25D366;
    --white: #ffff;
    --blue: #1877F2;
    --green: #25D366;
    --gray: #f8f8f8;
}

.navbar-contact {
    color: var(--primaryColor);
    text-align: center;
    background-color: var(--white);

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.navbarContact-container {
    width: 97%;
    margin: 8px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ankor tag */
.phone-icon1 {
    font-size: large;
    text-decoration: none;
    color: var(--primaryColor);
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: linear-gradient(135deg, #6F4E37, #866D4f, var(--helperColor), #6F4E37);
    border-radius: 10px;
    padding: 5px;
    transition: all 0.6s ease-out;
    gap: 8px;
}

/* .phone-icon1 i {
    color: var(--primaryColor);
} */

.phone-icon1:hover {
    transform: scale(1.2);
    border: none;
}

/* ============================================================ */
.social-icons a {
    text-decoration: none;
    margin-right: 10px;

}

/* span that contain whats app icon */
.whatsapp {
    display: inline-flex;
    justify-content: center;
    box-shadow: 5px 5px 10px rgba(128, 128, 128, 0.493);
    align-items: center;
    background-color: #25D366;
    padding: 8px;
    border-radius: 50%;
    width: 25px;
    height: 25px;
}

.whatsapp .fa-whatsapp {
    color: #ffffff;
    font-size: 25px;
}

.facebook {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #1877F2;
    padding: 8px;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    box-shadow: 5px 5px 10px rgba(128, 128, 128, 0.493);

}

.facebook .fa-facebook {
    color: #fff;
    font-size: 25px;
}

.instagram {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 10px;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    box-shadow: 5px 5px 10px rgba(128, 128, 128, 0.493);

}

.instagram .fa-instagram {
    color: #fff;
    font-size: 25px;
}


/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

@media (max-width: 760px) {

    .navbar-contact {
        height: auto;
        text-align: center;
    }

    .navbarContact-container {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .phone-icon1 {
        width: 35%;
        gap: 8px;
        background: linear-gradient(135deg, #6F4E37, #866D4f, var(--helperColor), #6F4E37);
        border: none;
        border-radius: 10px;
        color: var(--white);
        padding: 5px 30px 5px 10px;

    }
}