.content-detail {
    border: 1px solid #ccc;
    padding: 1rem;
    margin-top: 3rem;
    box-shadow: 0px 2px 7px rgb(22 30 106 / 30%);
    margin-bottom: 3rem;
}

.content-detail h4{
    font-size: 30px;
}
.content-detail h4,
.author-title p,
.remaining-info h5 {
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.author-title {
    display: flex;
}

.author-title i {
    margin-right: .5rem;
    margin-top: 5px;
    font-size: 18px;
    color: var(--yellow-color)
}

.blog-detail img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.widget_area .widget_tag_cloud .tagcloud a {
    margin: 5px 0;
    display: inline-block;
}

.widget_area .widget_tag_cloud .tagcloud a {
    background-color: var(--yellow-color);
    color: #ffffff;
    text-align: center;
    padding: 3px 8px;
    margin-left: 0;
    transition: all 0.5s;
    border: 1px solid var(--yellow-color);
    cursor: pointer;
}


.widget_area .widget_tag_cloud .tagcloud a:hover {
    background-color: var(--white-color);
    color: var(--yellow-color);
    text-decoration: none;
}

.widget_area h3 {
    position: relative;
    margin-bottom: 10px;
}

.widget_area h3:before {
    content: '';
    position: absolute;
    left: 0%;
    top: 35px;
    transform: translateY(-50%);
    background: var(--yellow-color);
    height: 2px;
    width: 40px;
}

.widget_search {
    height: 40px;
    border-radius: 5px;
    border: 1px solid #000;
    padding: 3px 10px;
}

.search-submit {
    float: right;
    height: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.search-field {
    border: none;
    outline: none;
    background: none;
    float: left;
    padding: 0;
    font-size: 16px;
    transition: 0.4s;
    line-height: 32px;
    font-weight: 600;
}

/* RIGHT SIDEBAR */
.right-sidebar {
    margin-top: 3rem;
}

.abroad-programs h6,
.test-preparation h6,
.follow-us h6 {
    color: var(--yellow-color);
    margin-bottom: 2rem;
    position: relative;
}

.abroad-programs h6:before,
.test-preparation h6:before {
    content: '';
    position: absolute;
    left: 0;
    top: 30px;
    transform: translateY(-50%);
    background: var(--yellow-color);
    height: 2px;
    width: 40px;
}

.abroad-programs ul,
.test-preparation ul,
.follow-us {
    border: 1px solid #ccc;
    box-shadow: 0px 2px 7px rgb(22 30 106 / 20%);

}

.abroad-programs ul,
.test-preparation ul {
    line-height: 3rem;
}

.abroad-programs ul a,
.test-preparation ul a {
    display: block;
    color: #000;
    border-bottom: 1px solid #087b6042;
}

.abroad-programs ul a:nth-child(4) {
    border-bottom: none;
}

.abroad-programs ul li a,
.test-preparation ul li a {
    padding-left: 1rem;
    position: relative;
}

.abroad-programs ul li a:hover,
.test-preparation ul li a:hover {
    text-decoration: none;
    background: var(--yellow-color);
    color: var(--white-color);
}

.abroad-programs ul li a:before,
.test-preparation ul li a:before {
    position: absolute;
    content: '';
    transition: all 500ms ease;
    opacity: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-left: 4px solid var(--black-color);
}


.abroad-programs ul li a:hover:before,
.test-preparation ul li a:hover:before {
    opacity: 1;
    left: 0;
    right: 0;
}
.blog-information p{
    margin-bottom: 15px;
}
.content-detail img{
    margin-bottom: 20px;
}
@media(max-width: 1025px) {
    .follow-us {
        display: none;
    }
}