

/* -------------- Course -----------------*/
.course
{
    background: #d6e2e5;
    padding: 20px;
    margin-bottom: 15px;
}

.course-btn
{
    background: #1a7db9;
    display: block;
    padding: 8px 20px;
    color: #fff;
    margin-bottom: 1px;
}

.course-btn:hover
{
    background: #125881;
}

.blog-header
{
    font-size:40px;
    padding:20px 0px;
}


.blog-section-header
{
    padding:20px 0px;
}


.blog-text
{
    padding:20px 0px;
    font-size: 20px;
    line-height: 30px;
}

/* -------------- Home banner -----------------*/
.title-note
{
    padding: 40px;
}


.home-title
{
    font-size:40px;
    color: #ffffff;
}




.query-message
{
    font-weight: 400;
    color: #5c5c77;
    font-size: 23px;
    line-height: 33px;
    font-family: "Poppins", sans-serif;
}


.news-card
{
    padding: 0px;
    overflow: hidden;
    background: #e7e6e6;
    border-radius: 3px;
}


.news-card img
{
    width: 100%;
}
.news-card-title
{
    padding: 10px;
}

.news-card-date
{
    padding: 10px;
    float: right;
}
/* News Detail Page */

.news-title
{
    font-size: 38px;
    padding: 20px 0px;
}

.news-cover-pic
{
    width:100%;
    margin-bottom:20px;
}





.para-text
{
    color: #000000;
    font-size: 18px;
    line-height: 27px;
    font-family: "Poppins", sans-serif;
    padding-top: 20px;

}

/* -------------------------- Side Bar ------------------------- */

.category-side-bar
{
    background: #dbdbdb;

}

.side-bar-title
{

    padding: 10px;
    margin-top: -19px;
}

.side-bar-link
{
    display: block;
    padding: 10px;
    margin-bottom: 1px;
    background: #ebebeb;
}



/* ------------------------ Inner Page Header --------------------------------*/

.inner-page-header
{
    color: #c3996b;
}


/* -------------- Project -------------------------- */

.card {
    width: 100%;
    height: 500px;
    margin-bottom: 50px;
    box-shadow: 0px 25px 80px rgba(0, 0, 0, 0.5);

}
.card .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.card .image img {
    width: 100%;
    transition: .5s;
}
.card:hover .image img {
    opacity: .5;
    transform: translateX(30%);/*100%*/
}
.card .details {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;/*100%*/
    height: 100%;
    background: #670000;
    transition: .5s;
    transform-origin: left;
    transform: perspective(2000px) rotateY(-90deg);
}
.card:hover .details {
    transform: perspective(2000px) rotateY(0deg);
}
.card .details .center {
    padding: 20px;
    text-align: center;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.card .details .center h1 {
    margin: 0;
    padding: 0;
    color: #ff3636;
    line-height: 20px;
    font-size: 20px;
    text-transform: uppercase;
}
.card .details .center h1 span {
    font-size: 14px;
    color: #262626;
}
.card .details .center p {
    margin: 10px 0;
    padding: 0;
    color: #262626;
}
.card .details .center ul {
    margin: 10px auto 0;
    padding: 0;
    display: table;
}
.card .details .center ul li {
    list-style: none;
    margin: 0 5px;
    float: left;
}
.card .details .center ul li a {
    display: block;
    background: #262626;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transform: .5s;
}
.card .details .center ul li a:hover {
    background: #ff3636;
}


.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 8px; /* optional */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}