/*--------------------------------------------------------------------------
|  Header
--------------------------------------------------------------------------*/
.entire-action-header {
  position: relative;
}

.entire-action-header .form-dropdown {
  position: absolute;
  padding: 10px;
  background-color: #ffffff;
  width: 300px;
  top: 100%;
  left: auto;
  right: 0;
  z-index: 1000;
  margin-bottom: 0;
  -webkit-animation: nav_menu_anim_close 0.3s both;
  -o-animation: nav_menu_anim_close 0.3s both;
  animation: nav_menu_anim_close 0.3s both;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  filter: opacity(0);
  visibility: hidden;
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
}

.entire-action-header:hover .form-dropdown {
  -webkit-animation: nav_menu_anim_open 0.3s both;
  -o-animation: nav_menu_anim_open 0.3s both;
  animation: nav_menu_anim_open 0.3s both;
  opacity: 1;
  filter: opacity(1);
  visibility: visible;
  pointer-events: unset;
}

.search-section .btn-submit {
  padding: 0 0.75rem !important;
  font-size: 13px;
}
/*--------------------------------------------------------------------------
|  Main
--------------------------------------------------------------------------*/
.rounded-2 {
    border-radius: 2rem;
}

.article-on-img .inner-image>a:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, rgba(216,216,216,0)), to(#0d0d1f));
    background-image: -webkit-linear-gradient(top, rgba(216,216,216,0) 25%, #0d0d1f);
    background-image: -moz-linear-gradient(top, rgba(216,216,216,0) 25%, #0d0d1f);
    background-image: linear-gradient(to bottom, rgba(216,216,216,0) 25%, #0d0d1f);
}

.featured-media-on-img {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    text-align: center;
}

.article-item .inner-image .featured-media i , 
.article-item .featured-media-on-img i {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  color: #222;
  margin: 0px 2px;
}

.article-on-img:hover {
   -webkit-box-shadow: 0 5px 5px #000;
    box-shadow: 0 5px 5px #000; 
}

.article-on-img:hover .featured-media-on-img i {
    background-color: var(--color-highlight);
    color: white;
}

.article-on-img:hover .line-af:after {
    background: var(--color-highlight);
}

.article-on-img:hover .article-title a {
    color: var(--color-highlight) !important;
}

.article-on-img img {
    background-size: cover;
    background-position: center center;
    -o-object-fit: cover;
    object-fit: cover;
    will-change: transform;
    -webkit-transition: -webkit-transform 1.5s ease-out;
    transition: -webkit-transform 1.5s ease-out;
    -moz-transition: transform 1.5s ease-out, -moz-transform 1.5s ease-out;
    transition: transform 1.5s ease-out;
    transition: transform 1.5s ease-out, -webkit-transform 1.5s ease-out, -moz-transform 1.5s ease-out;
}

.article-on-img:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}

.article-on-img .article-title {
    max-height: 5.6em;
}

.center-me {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.bottom-me {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.line-af:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 3px;
    background: #D9D9D9;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0 auto;
}

.item-on-type .inner-content {
    width: 100%;
    padding: 2rem;
}

.item-on-type .inner-image a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: .4;
}

.item-on-type .inner-content a {
    color: white;
    display: block;
}

.item-on-type .inner-content * {
    color: white;
}

.title-reg {
    font-family: TimeNewRoman;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 3rem;
}

.desc-reg {
    font-size: 2rem;
    font-weight: bold;
}

.title-page {
    font-size: 2rem;
    margin: 0;
}

.box-article-detail .banner-article-detail {
    max-width: calc(100% - 10vw);
    margin-left: auto;
    margin-right: auto;
}

.box-article-detail .banner-article-detail .inner-image img {
    width: 100%;
    height: 25vw;
    object-fit: cover;
    border-radius: 50px;
    filter: blur(4px);
}

.box-article-detail .article-detail {
    flex-basis: calc(100% - 90px);
    max-width: calc(100% - 90px);
    padding: 30px 20px 20px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #ddd;
}

.box-article-detail .box-share-article {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -140px;
    position: relative;
}

.box-article-detail .social-share {
    background: #fff;
    display: inline-block;
    padding: 5px 5px;
    border-radius: 43px;
    border: 1px solid #dddd;
}

.box-article-detail .item-detail-share {
    flex: 0 0 60px;
    max-width: 60px;
}

.box-article-detail .social-share .list-social .btn-social a {
    color: #fff !important;
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.box-article-detail .social-share .list-social .btn-social svg {
    width: 40px;
    height: 40px;
}

.box-article-detail .article-detail .article-top .title {
    font-size: 38px;
    font-weight: 700;
    color: #000;
    text-transform: upercase;
    padding: 0 50px;
    margin-bottom: 15px;
}

.box-article-detail .article-detail .article-top {
    text-align: center;
}

.box-article-detail .author-view-detail {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.box-article-detail .author-view-detail .author {
    display: flex;
    align-items: center;
}

.box-article-detail .author-view-detail .author .img-author {
    margin-right: 15px;
}

.box-article-detail .author-view-detail .author .img-author img {
    width: 54px;
    height: 54px;
    border: 4px solid var(--blue-black);
    border-radius: 50%;
}

.box-article-detail .author-view-detail .view {
    background: #EAEAEA;
    padding: 2px 10px;
    border-radius: 20px;
    color: #000;
    font-size: 13px;
}

.box-article-detail .author-view-detail .view i {
    margin-right: 5px;
}

.box-article-detail .social-share .list-social .btn-social:last-child a {
    margin-bottom: 0;
}
/*--------------------------------------------------------------------------
|  Footer
--------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------
|  Responsive
--------------------------------------------------------------------------*/
@media (max-width: 500px) {
    .box-article-detail .box-share-article {
        margin-top: -80px;
    }
    
    .box-article-detail .banner-article-detail .inner-image img {
        border-radius: 10px;
        height: 38vw;
    }
    
    .box-article-detail .article-detail {
        flex: 0 0 100%;
        max-width: 100%;
        border-radius: 8px;
        padding: 15px;
    }
    
    .box-article-detail .banner-article-detail {
        max-width: 100%;
    }
    
    .box-article-detail .article-detail .article-top .title {
        font-size: 20px;
        padding: 0;
        margin-bottom: 10px;
    }
    
    .box-article-detail .article-detail .article-top {
        margin-bottom: 15px;
    }
    
    .box-article-detail .item-detail-share {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .box-article-detail .social-share {
        border-radius: 8px;
        margin-top: 15px;
    }
    
    .box-article-detail .social-share .list-social {
        display: flex;
    }
    
    .box-article-detail .social-share .list-social .btn-social a {
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .box-article-detail .social-share .list-social .btn-social:last-child a {
        margin-right: 0;
    }
}
