/* navbar */

* {
    /* user-select: none !important; */
    caret-color: transparent !important;
}

.navbar-nav .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    color: #333;
    font-weight: 500;
}

.navbar-nav .nav-link:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background-color: #ccc;
}

.btn-navbar-contact {
    border-radius: 30px;
    padding: 6px 18px;
    font-weight: 600;
}

.icon-circle {
    background: #f2f2f2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: #555;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link.active {
    font-weight: 700;
    color: black;
}

.navbar-divider {
    border-left: 1px solid #e5e5e5;
    height: 24px;
    margin: 0 10px;
}

.btn-navbar-contact {
    background-color: #1c1c1c;
    color: #fff;
    border-radius: 30px;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    border: none;
}

.icon-circle {
    width: 36px;
    height: 36px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

@media (max-width: 991.98px) {
    .navbar-divider {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav {
        flex-direction: column !important;
        gap: 10px;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .icon-circle {
        margin-right: 0;
    }

    .btn-navbar-contact {
        width: 100%;
    }
}

/* footer */

.contact-card {
    background-color: #fff;
    border-radius: 20px;
    position: relative;
    color: #000;
}

.circle1-btn {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 24px;
}

.newsletter-box input[type="email"] {
    background-color: #1a1a1a;
    border-radius: 20%;
    color: white;
}

.newsletter-box input[type="email"]::placeholder {
    color: #aaa;
}

.newsletter-box button img {
    width: 20px;
}

.list-unstyled a {
    font-weight: 300;
    font-size: 18px;
    color: #888888;
    text-decoration: none;
}

.address p {
    font-size: 14px;
    font-weight: 300;
}

.contact-card .row {
    margin-inline: 2cm;
}

.social-media {
    margin-inline: 2cm;
}

@media (max-width:576px) {
    .contact-card .row {
        margin-inline: 1cm;
    }

    .social-media {
        margin-inline: 1cm;
    }
}