.project-content {
    
}

.project-content .hero {
    height: 309px;
    margin: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 5px;
	background-size:cover;
	background-position:center;
}

    .project-content .hero .cover-project {
    	width: 100%;
        height: 100%;
        position: absolute;
        overflow: hidden;
        z-index: 1;
        background-size: cover;
        background-position: center;
        opacity: 0.4;
    }

        .project-content .hero .cover-project:before {
            content: "";
            width: 100%;
            height: 100%;
            position: absolute;
            overflow: hidden;
            top: 0;
            left: 0;
            z-index: 1;
            transform-origin: 0 0;
            -webkit-backface-visibility: hidden;
        	backdrop-filter: brightness(1.5) blur(21px);
			-webkit-backdrop-filter: brightness(1.5) blur(21px);
        }

    .project-content .hero .row {
    	position: relative;
    	z-index:2;
    }

    .project-content .cover {
    	position: relative;
        z-index: 2;
       /* margin-top: -190px;*/
		overflow:hidden;
		height:314px;
        margin-bottom: 20px;
        border-radius: 5px;
        box-shadow: 0 30px 30px -25px rgb(0 0 0 / 30%);
    }

.project-content .cover img{
	object-fit:cover;
}

.details {
  /*	position:absolute;
	bottom:20px;*/
	margin-bottom:20px;
}
.details .title1 {
  color: black;
  font-size: 44px;
  margin-bottom: 0px;
  position: relative;
}
.details .title1 span {
position: absolute;
    top: 3px;
    margin-left: 12px;
    background: #FFE082;
    border-radius: 5px;
    color: #544C21;
    font-size: 22px;
    padding: 0px 4px;
}
.details .title2 {
 	color: #000000;
  font-size: 23px;
  font-weight: 300;
  margin-bottom: 0px;
}
.details .likes {
  margin-left: 24px;
	display:none;
}
.details .likes:before {
  content: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/195612/icon_like.png");
  position: relative;
  top: 2px;
  padding-right: 7px;
}

.tag {
  background: white;
  border-radius: 10px;
  padding: 3px 8px;
  font-size: 14px;
  margin-right: 4px;
  line-height: 35px;
  cursor: pointer;
}

.tag:hover {
  background: #ddd;
}

.avatars {
  margin-top: 23px;
}
.avatars img {
  cursor: pointer;
}
.avatars img:hover {
  opacity: 0.6;
}
.avatars a:hover {
  text-decoration: none;
}

fieldset, label {
  margin: 0;
  padding: 0;
}


a[data-tooltip] {
  position: relative;
}

a[data-tooltip]::before,
a[data-tooltip]::after {
  position: absolute;
  display: none;
  opacity: 0.85;
}

a[data-tooltip]::before {
  /*
   * using data-tooltip instead of title so we 
   * don't have the real tooltip overlapping
   */
  content: attr(data-tooltip);
  background: #000;
  color: #fff;
  font-size: 13px;
  padding: 5px;
  border-radius: 5px;
  /* we don't want the text to wrap */
  white-space: nowrap;
  text-decoration: none;
}

a[data-tooltip]::after {
  width: 0;
  height: 0;
  border: 6px solid transparent;
  content: "";
}

a[data-tooltip]:hover::before,
a[data-tooltip]:hover::after {
  display: block;
}

/** positioning **/
/* top tooltip */
a[data-tooltip][data-placement=top]::before {
  bottom: 100%;
  left: 0;
  margin-bottom: 40px;
}

a[data-tooltip][data-placement=top]::after {
  border-top-color: #000;
  border-bottom: none;
  bottom: 50px;
  left: 20px;
  margin-bottom: 4px;
}

.ditailed-side {
	font-size: 14px;
}

.project-video-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

    .project-video-list select{
        width: 270px;
        padding: 5px;
        border-radius: 5px;
        border: 1px solid #C6D9E8;  
    }