.template1-about-section {
    padding: 60px 0;
}
.about-image-wrapper {
    position: relative;
    display: inline-block;
}
.about-img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}
.about-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 32px;
    color: #000 !important;
}
.about-desc {
    font-size: 18px !important;
    color: #000 !important;
    margin-bottom: 48px;
    font-weight: 500;
}

.about-divider {
    width: 100px;
    height: 2px;
    background-color: var(--color_one);
    margin-bottom: 40px;
}
.about-us-btn {
    border-radius: 63px;
    font-weight: 600;
    font-size: 1.1rem;
}

.about-us-btn:hover {
  box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
    .about-image-wrapper {
        text-align: center;
    }
    .about-img {
        width: 290px;
        height: 290px;
    }
    .about-title {
        font-size: 24px;
    }
    .about-desc {
        font-size: 14px;
    }
    
}