/* about container  */
.about-container {
    background-color: #ffffff;
}

.about-container .about-box .heading h2 {
    position: relative;
    color: #28b475;
    font-size: 12px;
    font-weight: 600;
    margin-left: 70px;
    letter-spacing: 1px;
}

.about-container .about-box .heading h2::before {
    content: "";
    position: absolute;
    top: calc(50% - 1.5px);
    left: -60px;
    width: 50px;
    height: 2px;
    background-color: #28b475;
}

.about-container .about-box .heading h1 {
    font-size: 32px;
    font-weight: 600;
}

.about-container .about-box .heading h1 span:nth-last-child(1) {
    color: #28b475;
    font-weight: 700;
    font-size: 50px;
}

.about-container .about-box .col-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-container .about-box .col-wrapper .right-col .note h1 {
    font-size: 16px;
}

.about-container .about-box .col-wrapper .right-col .description p {
    color: #61656a;
}

.about-container
    .about-box
    .col-wrapper
    .right-col
    .progress-list
    .list
    label
    p {
    color: #787878;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
}

.about-container .about-box .col-wrapper .right-col .progress-list .list .bar {
    overflow-x: hidden;
    height: 8px;
    position: relative;
    border-radius: 2px;
    box-shadow: none;
    border: none;
    background-color: #f0f0f0;
}

.about-container
    .about-box
    .col-wrapper
    .right-col
    .progress-list
    .list
    .bar
    .bar-inner {
    position: relative;
    background: linear-gradient(90deg, #28b475, #1070b7);
    height: 8px;
}

.about-container
    .about-box
    .col-wrapper
    .right-col
    .progress-list
    .list
    .bar
    .bar-inner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(90deg, transparent 98%, #f0f0f0 98%);
    background-size: 20.14%;
}

/* team container  */
.team-container {
    background-color: #ffffff;
}

.team-container .team-box .heading h2 {
    color: #28b475;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.team-container .team-box .heading h1 {
    text-align: center;
    position: relative;
    height: 30px;
    font-weight: 600;
}

.team-container .team-box .heading h1:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 40%;
    bottom: -24px;
    left: calc(50% - 20%);
    background-color: #28b475;
}

.team-container .team-box .heading p {
    color: #61656a;
    text-align: center;
}

.team-container .team-box .box-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-container .team-box .box-wrapper .box {
    position: relative;
    height: 390px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.team-container .team-box .box-wrapper .box .img-box {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
}

.team-container .team-box .box-wrapper .box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
}

.team-container .team-box .box-wrapper .box .info-box {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, #000000b6 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
}

.team-container .team-box .box-wrapper .box .info-box .title {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.team-container .team-box .box-wrapper .box .info-box .title h1 {
    color: #ffffff;
    font-size: 16px;
}

.team-container .team-box .box-wrapper .box .info-box .title p {
    color: #d4d4d8;
    font-size: 14px;
    text-transform: uppercase;
}

/* respponsive  */
@media (max-width: 1000px) {
    .about-container .about-box .col-wrapper .left-col {
        padding-right: 20px;
    }
    .team-container .team-box .box-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 950px) {
    .about-container .about-box .col-wrapper {
        grid-template-columns: 1fr;
    }
    .about-container .about-box .heading {
        margin-bottom: 20px;
    }
    .about-container .about-box .heading .subtitle {
        justify-content: center;
    }
    .about-container .about-box .heading h1 {
        text-align: center;
    }
    .about-container .about-box .col-wrapper .left-col {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .about-container .about-box .col-wrapper .left-col .img-box {
        display: flex;
        justify-content: center;
    }
    .about-container .about-box .col-wrapper .right-col .note h1 {
        text-align: center;
    }
    .about-container .about-box .col-wrapper .right-col .description p {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .team-container .team-box .box-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-container .team-box .box-wrapper {
        gap: 10px;
    }
}

@media (max-width: 550px) {
    .team-container .team-box .box-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    .team-container .team-box .box-wrapper .box {
        height: 500px;
    }
    .about-container .about-box .col-wrapper .left-col .img-box img {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .about-container .about-box .heading h1 span {
        font-size: 40px;
    }
}
