.hero-section {
    padding: 75px 0;
    background-color: #F7F5F0;
}

.profile-main {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-img {
    height: 150px;
    width: 150px;
    min-width: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #22BE0D;
}

.profile-desc h2 {
    margin-top: 18px;
}


.profile-desc-bottom {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 30px 40px;
}

.btn-wrapper {
    display: flex;
    flex-direction: column;
    padding-left: 30px;
    align-items: end;
    gap: 38px;
    border-left: 1px solid #D2CFC9
}

.hero-sec-left-col {
    flex: 1;
}

.hero-sec-right-col {
    max-width: 210px;
    width: 100%;
}

/* Banner end */

/* About section */
.about-section {
    padding: 100px 0;
}

.default-heading {
    position: relative;
    margin-bottom: 40px;
}

.default-heading::before {
    position: absolute;
    content: "";
    right: 0;
    height: 1px;
    width: 100%;
    background-color: #DBD9D9;
    top: 50%;
}

.default-heading h2 {
    display: inline-block;
    position: relative;
    padding-right: 30px;
    background-color: #fff;
}

.about-left-sec p {
    font-size: 18px;
    margin-bottom: 30px;
}

.about-left-sec p:last-child {
    margin-bottom: 0;
}

.about-user-desc ul {
    padding: 0 0 30px 56px;
    margin-top: 11px;
}

.about-user-desc ul:last-of-type {
    padding-bottom: 0;
}

.about-user-desc ul li {
    margin-bottom: 5px;
    font-size: 18px;
    list-style-type: disc;
}

.about-user-desc ul li:last-child {
    margin-bottom: 0;
}

.about-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    align-items: self-start;
}

.about-column {
    max-width: 60%;
    width: 100%;
}

.sidebar {
    max-width: 31%;
    width: 100%;
    background-color: #F7F5F0;
    border-radius: 10px;
    padding: 30px;
}

.side-bar-desc h5 {
    font-size: 18px;
    flex: 1;
    text-align: right;
    word-break: break-word;
}

.side-bar-desc>ul>li {
    padding: 25px 0;
    gap: 10px;
    border-bottom: 1px solid #D2CFC9;
}

.overview-detail {
    gap: 16px;
}

.sidebar-button-wrapper .document-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 11px 24px;
}

.sidebar-button-wrapper a {
    justify-content: center !important;
}

.document-btn span {
    font-size: 18px;
    font-weight: 700;
}

.sidebar-button-wrapper {
    padding: 30px 0 0;
}

.documnent-name a:not(:last-child) {
    margin-bottom: 10px;
}

.documnent-name {
    margin-bottom: 30px;
}

.sidebar-button-wrapper a.disabled {
    background-color: #22BE0D66;
    cursor: not-allowed;
}

.about-left-sec {
    padding-bottom: 50px;
}

.section-padding {
    padding: 50px 0;
}

.about-left-bottom {
    display: flex;
    justify-content: space-between;
    max-width: 660px;
    width: 100%;
    padding-left: 8px;
}

.about-bottom-column h4 {
    margin-bottom: 20px;
}

.education-column h4 {
    color: #00B3BA;
}

.about-left-bottom li {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
    position: relative;
    padding-left: 17px;
}

.about-left-bottom li:last-child {
    margin-bottom: 0;
}

.education-date {
    color: #00B3BA;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1;
}

.edu-course-name {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.about-bottom-column ul {
    position: relative;
}

.about-bottom-column ul::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 1px;
    top: 0;
    left: 0;
}

.about-bottom-column li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0px;
    height: 8px;
    width: 8px;
    transform: translateX(-50%) rotate(45deg);
}

.about-left-bottom li span {
    line-height: 1;
}

.education-column :is(ul, li)::before {
    background: #00B3BA;
}

.experience-column :is(ul, li)::before {
    background: #22BE0D;
}

.experience-column h4,
.experience-column .education-date {
    color: #22BE0D;
}

/* Skill section */
.skill-items span {
    height: 22px;
    width: 22px;
    border-radius: 50%;
    border: 2px solid #888888;
    display: inline-block;
    background-color: rgb(14 0 4 / 15%);
}

/* Skill section */

.Circles {
    --total: 10;
    --size: 20px;
    --gap: 2px;
    --active-bg: rgb(34 190 13 / 15%);
    --active-border: #22BE0D;
    --inactive-bg: rgba(14, 0, 4, 0.15);
    --inactive-border: #888;
    display: flex;
    gap: var(--gap);
}

/* all circles default */
.Circles span {
    height: var(--size);
    width: var(--size);
    border-radius: 50%;
    border: 2px solid var(--inactive-border);
    background-color: var(--inactive-bg);
    flex-shrink: 0;
}

.Circles[style*="--rating:1"] span:nth-child(-n+1),
.Circles[style*="--rating:2"] span:nth-child(-n+2),
.Circles[style*="--rating:3"] span:nth-child(-n+3),
.Circles[style*="--rating:4"] span:nth-child(-n+4),
.Circles[style*="--rating:5"] span:nth-child(-n+5),
.Circles[style*="--rating:6"] span:nth-child(-n+6),
.Circles[style*="--rating:7"] span:nth-child(-n+7),
.Circles[style*="--rating:8"] span:nth-child(-n+8),
.Circles[style*="--rating:9"] span:nth-child(-n+9),
.Circles[style*="--rating:10"] span:nth-child(-n+10) {
    border-color: var(--active-border);
    background-color: var(--active-bg);
}

.skill-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    border: 1px solid #DBD9D9;
    border-radius: 10px;
    padding: 30px;
}

.skill-wrapper .skill-item {
    flex: 1 1 229px;
    min-width: 229px;
    max-width: 100%;
}

.skill-items p {
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1;
    font-size: 20px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.grid-items-1 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
}

.grid-items-2 {
    grid-column-start: 3;
}

.grid-items-3 {
    grid-column-start: 3;
    grid-row-start: 2;
}

.portfolio-grid img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.grid-img-wrapper {
    border-radius: 10px;
    overflow: hidden;
}

.custumer-review {
    padding-bottom: 40px;
    border-bottom: 1px solid #DBD9D9;
}

/* rating star */
.custumer-review-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.avarage-rating h2 {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
}

.avarage-rating span {
    font-size: 18px;
}

.Stars {
    --total: 5;
    --size: 24px;
    position: relative;
    width: calc(var(--total) * var(--size) + (var(--total)-1) * 4px);
    /* 4px gap */
    height: var(--size);
}

.Stars::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 17L6 20L7.5 14L3 9L9.5 8.5L12 3L14.5 8.5L21 9L16.5 14L18 20L12 17Z' fill='%23ffffff' fill-opacity='0.5'/%3E%3Cpath d='M12 17L6 20L7.5 14L3 9L9.5 8.5L12 3L14.5 8.5L21 9L16.5 14L18 20L12 17Z' stroke='%23FFB200' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: var(--size) var(--size);
}

/* Filled stars overlay */
.Stars::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(var(--rating)/var(--total)*100%);
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 17L6 20L7.5 14L3 9L9.5 8.5L12 3L14.5 8.5L21 9L16.5 14L18 20L12 17Z' fill='%23FFB300' fill-opacity='0.5'/%3E%3Cpath d='M12 17L6 20L7.5 14L3 9L9.5 8.5L12 3L14.5 8.5L21 9L16.5 14L18 20L12 17Z' stroke='%23FFB200' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: var(--size) var(--size);
    overflow: hidden;
}

.star-wrapper {
    max-width: 120px;
    width: 100%;
    margin-inline: auto;
    margin-bottom: 5px;
}

.avarage-rating {
    max-width: 176px;
    width: 100%;
    text-align: center;
}

.review-right-sec {
    flex: 1;
    max-width: 508px;
    width: 100%;
}

.review-right-sec .rating-label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.progress .progress-bar {
    background-color: #22BE0D;
}

.rating-label .progress {
    height: 8px;
}

.progress {
    flex: 1;
    max-width: 90%;
    width: 100%;
    margin-left: 10px;
    height: 8px;
}

.review-right-sec {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.testimonial-user-img {
    height: 74px;
    width: 74px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #22BE0D;
}

.testimonial-user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-section {
    padding: 30px 0 0px;
}

.testimonial-left {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 1;
}

.author-wrapper {
    max-width: 70px;
    width: 70px;
}

.author-description {
    flex: 1;
    padding-right: 30px;
    /* border-right: 1px solid #DBD9D9; */
}
.author-detail {
    min-width: 120px;
}
.tesmonial-top-desc {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 27px;
    gap: 20px;
}

.testimonial-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.testimonial-right {
    padding-left: 30px;
    max-width: 172px;
    width: 100%;
    font-size: 18px;
}

.testimonial-related-cards img {
    width: 142px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 9px;
}

.testimonial-related-cards h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.testimonial-items .w-btn-secondary-lg,
body .white-bg-btn {
    background-color: transparent;
    color: var(--lime-300);
    border: 1px solid var(--lime-300);
}

.review-button {
    padding-top: 10px;
    text-align: center;
}

.review-button svg {
    margin-right: 2px;
}

.w-btn-secondary-sm {
    display: inline-block;
}

.responsive-banner-desc {
    display: none;
}

.documnent-name:empty {
    display: none;
}

.about-right-sec h2{
    margin-bottom: 10px;
}
/* responsive start */
@media(max-width:1250px) {


    .sidebar {
        max-width: 36%;
    }
}

@media(max-width:1024px) {

    .sidebar,
    .about-column {
        max-width: 100%;
    }

    .section-padding {
        padding: 40px 0;
    }

    .about-section {
        padding: 80px 0;
    }

    .about-left-sec {
        padding-bottom: 30px;
    }

    .hero-section {
        padding: 60px 0;
    }
}

@media(max-width:991px) {
    .profile-desc-bottom {
        flex-direction: column;
        align-items: self-start;
        gap: 16px;
    }

    .about-section {
        padding: 60px 0;
    }

    .sidebar {
        padding-inline: 17px;
    }

    .testimonial-items {
        flex-direction: column;
    }

    .testimonial-right {
        padding-left: 90px;
        margin-top: 40px;
        max-width: 240px;
    }

    .testimonial-section .star-wrapper {
        margin: 10px 0 0;
    }
}

@media(max-width:768px) {

    .hero-sec-right-col,
    .hero-sec-left-col {
        max-width: 100%;
        width: 100%;
    }

    .hero-sec-left-col {
        padding-bottom: 30px;
    }

    .btn-wrapper {
        flex-direction: inherit;
        flex-wrap: wrap;
        padding: 30px 0 0;
        align-items: center;
        gap: 28px;
        justify-content: space-between;
        border-top: 1px solid #D2CFC9;
        border-left: 0;
    }

    .hero-section {
        padding: 50px 0 30px;
    }

    .section-padding {
        padding: 30px 0;
    }

    .profile-main {
        align-items: center;
        gap: 20px;
        justify-content: space-between;
    }

    body .w-btn-secondary-lg,
    body .w-btn-secondary-sm {
        padding: 10px 28px;
    }

    body h2 {
        font-size: 30px;
    }

    body h3 {}

    body h4 {
        font-size: 26px;
    }

    body h5 {}

    .sidebar {
        margin-top: 30px;
    }

    .author-description {
        padding-right: 0;
        border-right: 0;
    }

}

@media(max-width:580px) {
    .about-left-bottom {
        flex-direction: column;
        gap: 60px;
        padding-left: 8px;
    }

    .skill-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .responsive-banner-desc {
        display: block;
        margin-top: 40px;
    }

    .desktop-banner-desc {
        display: none;
    }

    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 20px;
    }

    .portfolio-grid {
        grid-template-rows: repeat(2, 1fr);
    }

    .grid-items-1 {
        grid-column: span 4 / span 4;
        grid-row: span 2 / span 2;
    }

    .grid-items-2 {
        grid-column: span 2 / span 2;
        grid-row-start: 3;
    }

    .grid-items-3 {
        grid-column: span 2 / span 2;
        grid-column-start: 3;
        grid-row-start: 3;
    }

    .custumer-review-wrapper {
        flex-direction: column;
        align-items: center;
        margin-top: 54px;
    }

    .star-wrapper {
        max-width: 120px;
        width: 100%;
        margin-inline: auto;
        margin: 20px auto 10px;
    }

    .tesmonial-top-desc button {
        font-size: 12px;
        padding: 10px 17px;
    }

}