/* Header Section Style */


.header-actions a button {
    background-color: transparent;
    padding: 8px 13px 8px 10.5px;
    border: 1px solid #E3E3E8;
    border-radius: 100%;
}

.header-actions a button:hover {
    border-color: var(--blue);
    background-color: #FFF;
}

.header-actions a button:hover i {
    color: var(--blue);
}

.header-actions a button i {
    color: var(--black);
}

.search-bar .menu-search-bar {
    margin-left: 30px;
}

.search-bar-input input {
    background-color: #F5F8FB;
    padding: 12px 20px 12px 40px;
    color: #6C6C7F;
    border-radius: 8px;
    font-size: 13px;
}

.search-bar-icon {
    left: 11px;
    top: 11px;
}

.search-bar-icon i {
    color: var(--blue);
    font-weight: 100 !important;
}

.header-logo a img {
    width: 200px;
}

/* End Header Section Style */

/* Main Section Style */

.teachers-intro-heading {
    background-image: url(../../images/article-images/banner_image1.png);
    background-color: rgba(0, 0, 0, 0.534);
    background-blend-mode: darken;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 125px 0px;
}

.page-path ul li {
    color: rgba(255, 255, 255, 0.815);
    font-size: 13px;
}

.page-path ul li a {
    color: inherit;
    font-size: 12.5px;
}

.page-path ul i {
    margin: 0px 10px;
    color: rgba(255, 255, 255, 0.815);
    font-size: 12.5px;
}

.teachers-intro-heading-content h2 {
    color: rgba(255, 255, 255, 0.787);
}

.teachers-intro-main {
    margin-top: 70px;
}

.teachers-main {
    grid-template-columns: repeat(4, calc(25% - 24px));
    gap: 50px 32px;
}

.teacher-box-image img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    height: 250px;
    object-fit: cover;
}

.teachers-box-info {
    box-shadow: 0px 12px 40px rgba(0, 0, 0, .03);
    position: relative;
    padding: 10px 0px;
    top: -6px;
}

.teachers-box-info h5 a {
    font-size: 19px;
    font-weight: 600;
    color: var(--black);
    transition: var(--transition);
}

.teachers-box-info h5 a:hover {
    color: var(--blue);
}

.teacher-box-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 98%;
    transition: var(--transition);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .4));
    opacity: 0;
}

.teacher-box-image:hover::before {
    opacity: 1;
}

.actions {
    background-image: linear-gradient(180deg, #f2f7fc 0%, #fff 100%);
    margin-top: 130px;
    padding: 100px 0px 0px 0px;
}


.actions-content {
    justify-content: space-between;
}

.actions-content p {
    color: #58566b;
    margin-top: 20px;
    margin-bottom: 45px;
}

.actions-content>* {
    flex-basis: 45%;
}

.become-an-instructor::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #cbcdda;
    top: 0;
    left: -50px;
}

/* border-left: 1px solid #cbcdda; */

.actions-content a {
    padding: 10px 25px;
    color: #FFFFFF;
    border-radius: 5px;
    transition: var(--transition);
}

.join-the-club a {
    background-color: var(--red);
}

.become-an-instructor a {
    background-color: var(--blue);
}

.become-an-instructor a:hover {
    background-color: var(--red);
}

.join-the-club a:hover {
    background-color: var(--blue);
}

.join-the-club a i {
    font-size: 15px;
    top: 2.5px;
    left: 1px;
}

/* End Main Section Style */