.course_section_1.banner-section {}

/* section 2 */
.course_section_2 {
    padding: 60px 0;
    background-color: var(--Background-2);
}

.course_section_2 .box-head {
    margin-bottom: 50px;
}

.course-image {
    margin-bottom: 60px;
}

/* section 3 */
.course_section_3 {
    padding: 60px 0;
    background-color: var(--Background);
}

.course_section_3 .box-head {
    margin-bottom: 40px;
}

.btn-type-2 {
    border-radius: 12px;
    border: 1px solid var(--Orange, #EB6423);
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.05);
    color: #fff;
    max-width: 622px;
    width: 100%;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: auto;
    font-weight: 600;
    margin-top: 40px;
    overflow: hidden;
    transition: 0.5s all;
    position: relative;
    background-color: #fff;
}
.btn-type-2 span{
    z-index: 3;
    color: #fff;
    transition: 1s all;
}
.btn-type-2::after,
.btn-type-2::before {
    content: "";
    width: 699px;
    height: 699px;
    border-radius: 50%;
    box-shadow: 0 13.98px 83.88px 0 rgba(0, 0, 0, 0.05);
    display: block;
    transform: translateX(0%);
    position: absolute;
    transition: 1s all;
    z-index: 1;
}

.btn-type-2::after {
    background: linear-gradient(0deg, #ED6400 41.42%, #F6892C 56.94%);
}

/* .btn-type-2::before {
    background-color: #fff;
    transform: translateX(-100%);
    transition: 3s all;
} */
.btn-type-2:hover span{
    color: var(--color-2);
}
.btn-type-2:hover::after {
    transform: translate(100%,-100%);
}

/* .btn-type-2:hover::before {
    transform: translateX(0%);
     transition: 0.3s all;
} */

@media screen and (min-width: 1440px) {
    .course_section_1.banner-section .box-right .image {
        bottom: 0;
        max-width: 39%;
        width: 100%;
    }
}