
:root{
    --app-primary-color: rgb(255, 0, 128);
    --app-secondary-color: rgb(1, 16, 52);
    --app-general-color: black;
    --app-text-color: rgb(84, 84, 84);
}

.male-wellness h1{
    color: var(--app-general-color);
    font-weight: 700;
}

.male-wellness h4{
    color: var(--app-primary-color);
    font-weight: 700;
}

.male-wellness p{
    color: var(--app-text-color);
}

.male-wellness .side-image{
    width: 50%;
    object-fit: cover;
}

.male-wellness .side-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.male-wellness ul li .title{
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.male-wellness .aliceblue-content{
    background: aliceblue;
}

.male-wellness .tab-box{
    border-left: 4px solid var(--app-primary-color);
    padding: 0px 20px;
    font-size: 22px;
}

.male-wellness .emergency-call{
    background: var(--app-secondary-color);
    color: white;
    padding: 10px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.male-wellness .aliceblue-content ul{
    list-style-type: none;
    padding: 0;
}

.male-wellness .aliceblue-content ul i{
    color: var(--app-primary-color);
}

.male-wellness .aliceblue-content ul li{
    font-size: 16px;
    font-weight: 500;
}

.male-wellness .contactus-content{
    background: var(--app-secondary-color);
}

.male-wellness .contactus-content .contents .sm-title{
    font-size: 14px;
    color: var(--app-primary-color);
}

.male-wellness .contactus-content .contents .lg-title{
    font-size: 30px;
    color: #fff;
    font-weight: 600;
}

.male-wellness .contactus-content .contents .description{
    color: rgb(212, 212, 212);
}

.male-wellness .contactus-content .contents .button{
    background: var(--app-primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
    display: inline-block;
}

.male-wellness .contactus-content .side-image{
    width: 70%;
    object-fit: cover;
}

.male-wellness .primary-sm-text{
    color: var(--app-primary-color);
}

.male-wellness .services-content .services-list{
    list-style: none;
    padding: 0;
    margin: 10px 0;
    font-size: 18px;
    line-height: 30px;
}

.male-wellness .services-content .services-list i {
    color: var(--app-primary-color);
    margin-right: 20px;
}

.male-wellness .appointmnet-card{
    background-color: #f2f2f2;
    border-radius: 15px;
    padding: 20px;
    background-size: 100% !important;
    background-repeat: round !important;
    position: relative;
    /* overflow: hidden; */
}
.male-wellness .appointmnet-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust the color and opacity as needed (0.5 represents 50% opacity) */
    z-index: 1;
    border-radius: 15px;
}
.male-wellness .appointmnet-card p{
    margin: 0;
    text-align: center;
    z-index:11;
    color: white;
}
.male-wellness .appointmnet-card .content{
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.male-wellness .appointmnet-card .title{
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
}
.male-wellness .appointmnet-card .button{
    background: var(--app-primary-color);
    color: white;
    padding: 12px 30px;
    margin: 0 auto;
    display: inline-flex;
    border-radius: 12px;
    position: relative;
    bottom: -35px;
    z-index: 10;
    transition: 0.4s ease-in-out;
}
.male-wellness .appointmnet-card .button:hover{
    transform: scale(1.1);
}


.male-wellness .banner-content{
    height: 400px;
    position: relative;
    z-index: 2;
    /* margin-top: 100px; */
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: 100% !important;
    /* background-repeat: round !important; */
    background-position: center center;
}

.male-wellness .banner-content::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(180deg, transparent, black); /* Adjust the color and opacity as needed (0.5 represents 50% opacity) */
    z-index: 1;
}

.male-wellness .banner-content h1{
    color: #fff;
    z-index: 2;
    letter-spacing: 1px;
}









