/* Start Banner Section */
.banner {
    background-image: url(../../img/testimonial/banner-bg.webp);
    background-size: cover;
}

.banner .banner-container .breadcrumb li a {
    color: var(--black) !important;
}

.banner .breadcrumb li:first-child a {
    width: 18px;
    height: 18px;
}

/* End Banner Section */

/* Start Course Section */
.course .search-box {
    border: 1px solid var(--darkGreyColor);
    background-image: linear-gradient(270.16deg,
            var(--backgroundColor) 1.96%,
            var(--white) 96.42%);
    padding: 6px 15px 6px 7px;
}

.course .search-box span {
    min-width: 32px;
    height: 32px;
    padding: 10px;
}

.course .search-box input {
    outline: none;
    border: none;
    background-color: transparent;
    margin-left: 12px;
}

.course .search-box input::placeholder {
    font-size: 14px;
    font-weight: 500;
    color: var(--grey);
}

.course .course-topic h3 {
    color: var(--grey);
    border: 1px solid var(--grey);
    padding: 14px 10px;
}

.course .course-topic h3::after {
    content: "";
    background-image: url(../../img/common/up-arrow.svg);
    background-size: 100% 100%;
    filter: brightness(0.1) opacity(0.3);
    min-width: 12px;
    height: 12px;
    transition: 1s all;
    margin-left: auto;
    transform: rotate(180deg);
}

.course .course-topic h3.rotate::after {
    transform: rotate(0deg);
}

.course .course-topic .course-sidebar {
    position: absolute;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--lightShadow);
    top: 70px;
    z-index: 5;
    overflow-y: scroll;
    max-height: 300px;
    padding: 1.3rem;
}

.course .course-detail .course-sidebar .course-info a {
    border: 1px solid var(--darkGreyColor);
    padding: 13px 15px;
}

.course .course-link .item {
    padding: 5px 10px;
    margin-right: .8rem;
    margin-bottom: 1rem;
}

.course.course-link .item:last-child {
    margin-right: 0 !important;
}

.course .course-link .item span {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 5px 10px;
    width: 30px;
    line-height: 1.5;
}

.course .course-list .course-item {
    border: 1px solid var(--darkGreyColor);
    border-radius: 8px;
    padding: 20px;
    transition: 1s all;
}

.course .course-link .item.active{
    background-image: linear-gradient(90deg, var(--primaryColor) 0%, var(--greenColor) 100%);
}

.course .course-link .item.active a {
  color: var(--white) !important;
}

.course .course-link .item.active a span{
  color: var(--white) !important;
}

.course .course-list .course-item p, .course .course-list .course-item strong {
    color: var(--grey);
}

.course .course-list .course-item .buttons a {
    min-width: 137px;
}

.course .course-list .course-item .buttons .btn-white {
    margin-right: 15px;
}

.course .course-list .course-item:hover {
    border: 1px solid transparent;
    box-shadow: var(--lightShadow);
}

.course .pagination {
    margin-top: 2rem;
}

.course .pagination .pagination-btn {
    width: 35px;
    height: 35px;
    border-radius: 20px 5px 5px 20px;
    transition: all 0.3s ease;
}

.course .pagination ul {
    width: 276px;
}

.course .pagination ul li a {
    color: var(--grey);
    border: 1px solid var(--darkGreyColor);
    transition: all 0.2s ease-in-out;
    width: 35px;
    height: 35px;
}

.course .pagination ul li.active a {
    color: var(--white);
    background-image: linear-gradient(90deg, var(--primaryColor) 0%, var(--greenColor) 100%);
    border-radius: 5px 20px 20px 5px !important;
    border: none;
}

.course .pagination ul .dots {
    color: var(--grey);
}


.course .course-link .item:last-child {
    margin-right: 0;
}

.course .course-topic ul li:first-child{
    margin-top: 0 !important;
}

/* End Course Section */

/* Start Training Section */
.training .training-list {
    border: 1px solid var(--backgroundColor);
}

.training .training-item {
    border-bottom: 1px solid var(--backgroundColor);
}

.training .training-item span {
    height: 48px;
    width: 48px;
    border: 1px solid var(--backgroundColor);
    padding: 10px;
}

.training .training-item:last-child {
    border-bottom: 0;
}

/* End Training Section */

/* Start Process Section */
.process .process-detail span {
    height: 55px;
    width: 55px;
    border-radius: 15px;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
    top: 50%;
    left: 50%;
    transition: transform 1s ease-in-out;
}

.process {
    background-image: linear-gradient(180deg, var(--white) -41.9%, var(--white) -14.61%, var(--backgroundColor) 41.33%, var(--backgroundColor) 99.45%);
}

.process .process-info {
    margin-top: 2.5rem;
}



/* End Process Section */

/* Start grow Section */
.grow .fact-item {
    padding: 5px 30px 5px 5px;
    box-shadow: var(--lightShadow);
}

.grow .fact-item p {
    font-size: 15px;
}

.grow .fact-content {
    padding: 5px 17px;
    min-width: 85px;
}

.grow .fact-content strong {
    color: var(--darkBlue);
    font-size: 22px;
}

.grow .grow-graph {
    background: linear-gradient(var(--white), var(--white)) padding-box, linear-gradient(268.93deg, var(--darkGreyColor) 2.31%, #2D6DF0 99.08%) border-box;
    border: 1px solid transparent;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
    padding: 13px;
    margin-top: 2rem;
    border-radius: 15px;
}

/* End Grow Section */


@media screen and (min-width: 768px) {

    /* Start Course Section */
    .course .pagination {
        width: 405px;
    }

    .course .pagination ul {
        width: 362px;
    }

    .course .course-link .item {
        margin-right: 1rem;
    }

    .course .course-list .course-item .course-name {
        width: calc(100% - 310px);
    }

    /* End Course Section */

    /* Start Training Section */
    .training .training-item {
        border-right: 1px solid var(--backgroundColor);
    }

    .training .training-item::before {
        content: "";
        background-image: linear-gradient(180deg, var(--primaryColor) 0%, var(--greenColor) 100%);
        width: 3px;
        height: 30px;
        position: absolute;
        border-radius: 3px;
        top: 0;
        bottom: 0;
        margin: auto;
        left: -1px;
        animation: 5s ease-in-out 0s infinite alternate none running upDown;
    }

    .training .training-item:nth-child(5) {
        border-bottom: 0;
    }

    .training .training-item:nth-child(2n) {
        border-right: 0;
    }

    /* End Training Section */

    /* Start Process Section */
    .process .process-list {
        height: 400px;
        width: 400px;
    }

    /* End Process Section */

    /* Start grow Section */
    .grow canvas {
        width: 362px !important;
    }

    .grow .fact-list {
        width: 260px;
    }

    .grow .grow-graph {
        width: 400px;
    }

    /* End Grow Section */

}

@media screen and (min-width: 1024px) {

    /* Start Banner Section */
    .banner .banner-container h1::after {
        content: "";
        background-image: url(../../img/testimonial/arrow.webp);
        background-size: 100% 100%;
        min-width: 85px;
        height: 82px;
        margin-left: 3rem;
    }

    /* End Banner Section */

    /* Start Course Section */
    .course .course-heading {
        width: 32%;
    }

    .course .search-box {
        width: 53%;
    }

    .course .course-detail .course-topic {
        width: 31%;
        position: sticky !important;
        top: 17%;
    }

    .course .course-topic .course-sidebar {
        position: static;
    }

    .course .course-container .course-detail {
        margin-top: 2.5rem;
    }

    .course .course-detail .course-tab {
        width: 65%;
    }

    /* End Course Section */

    /* Start Training Section */
    .training .heading {
        margin-bottom: 2rem !important;
    }

    .training .training-item:nth-child(2n) {
        border-right: 1px solid var(--backgroundColor);
    }

    .training .training-item:nth-child(3n) {
        border-right: 0;
    }

    .training .training-item:nth-child(4) {
        border-bottom: 0;
    }

    /* End Training Section */

    /* Start Process Section */
    .process .process-info {
        width: 48%;
    }

    .process .process-content {
        width: 48%;
    }

    .process .heading {
        margin-bottom: 1rem;
    }

    /* End Process Section */

    /* Start grow Section */

    .grow .grow-container .heading {
        margin-bottom: 3.4rem;
    }

    .grow .fact-list {
        width: 310px;
    }

    .grow .fact-item {
        margin-top: 2.7rem !important;
        width: fit-content;
    }

    .grow .fact-item:first-child {
        margin-top: 0 !important;
    }

    .grow .fact-item:last-child {
        margin-right: 1.2rem;
    }

    .grow .grow-content {
        background-image: url(../../img/catalogue/connector.webp);
        background-size: 788px 200px;
        background-repeat: no-repeat;
        background-position: left center;
    }

    .grow .grow-graph::before {
        content: '';
        width: 105px;
        height: 105px;
        background: url(../../img/catalogue/webbook.svg);
        background-size: 100% 100%;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        left: -34%;
    }

    /* End Grow Section */

}

@media screen and (min-width: 1366px) {

    /* Start Banner Section */
    .banner {
        background-size: 100% 100%;
    }

    .banner .banner-container h1 {
        font-size: 50px;
    }

    /* End Banner Section */

    /* Start Course Section */
    .course .course-topic .course-sidebar {
        max-height: 535px;
        padding-right: 2.3rem;
    }

    .course .course-detail .course-sidebar .course-info.active a {
        border: 1px solid transparent;
        box-shadow: var(--lightShadow);
    }

    .course-detail .course-sidebar .course-info a::after {
        content: '';
        background-color: var(--darkBlue);
        height: 40px;
        width: 4px;
        position: absolute;
        top: 0;
        right: -5px;
        bottom: 0;
        margin: auto;
    }

    .course-detail .course-sidebar .course-info.active a::after {
        background-image: linear-gradient(90deg, var(--primaryColor) 0%, var(--greenColor) 100%);
        clip-path: polygon(0% 0%, 20% 0, 100% 50%, 20% 100%, 0% 100%);
        width: 15px;
        right: -16px;
    }

    /* End Course Section */

    /* Start Training Section */
    .training .training-item {
        padding: 1.8rem !important;
    }

    /* End Training Section */

    /* Start Process Section */
    .process .process-content {
        width: 52%;
    }

    .process .process-info {
        width: 42%;
    }

    /* End Process Section */

    /* Start grow Section */

    .grow .fact-list {
        width: 27%;
    }

    .grow .grow-graph {
        margin-right: 3.5rem;
    }

    .grow .grow-graph::before {
        width: 145px;
        height: 145px;
        left: -58%;
    }

    .grow .grow-graph::after {
        content: '';
        background-image: url(../../img/catalogue/bar-chart.svg);
        background-size: 100% 100%;
        width: 117px;
        height: 100px;
        position: absolute;
        right: -56px;
        top: -55px;
    }

    /* End Grow Section */

}