@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.navbar{background: #68583b;}
.navbar-brand{
    font-family: "Nunito", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}
#navbarSupportedContent ul li a{
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 500;
    padding-right: 30px;
    color: #fff;
    text-transform: capitalize;
}
.space-top {
    margin-top: 80px;
}
#homeabout{
    background: #f8efe1;
}
.pb-40{padding-bottom: 40px;}
.pt-20{padding-top: 20px;}
.pt-30{padding-top: 30px;}
.navbar-brand:focus, .navbar-brand:hover
 {
    color: #e4d1ae;
}
.des-contact{
    font-size: 17px;
    line-height: 32px;
}
.des-contact strong{
    color: #735f3b;
    font-weight: 600;
}
.descrip-2 strong{
    color: #735f3b;
    font-weight: 600;
}
.cta-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #d7c099;
    padding: 20px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgb(104 88 59);
}

.phone-info:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgb(217 182 122);
}

.phone-info i {
    font-size: 26px;
    color: #222;
}

.phone-info .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 5px;
}

.phone-info a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    /* font-size: 1.1rem; */
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.phone-info a:hover {
    color: var(--secondary-color);
}

.appointment-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #68583b;
    color: #fff;
    padding: 20px 35px;
    border-radius: 50px;
    font-weight: 700;
    /* font-size: 1.1rem; */
    text-decoration: none;
    box-shadow: 0 8px 25px rgb(52 12 55 / 54%);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.appointment-btn span a {
    color: #fff;
}

.appointment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgb(217 182 122);
    color: #d9b67a;
    text-decoration: none;
}

.appointment-btn i {
    font-size: 24px;
    color: #fff;
}