/* home banner section css start */

section.home-banner {
  position: relative;
  background-image: url("./img/case-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  height: 75vh;
}

section.home-banner .home-cont {
  align-self: center;
  padding: 150px 50px;
  position: relative;
}

section.home-banner .home-cont .hero-head {
  padding: 30px;
}

section.home-banner .home-cont .hero-head h6 {
  color: var(--other-color);
}

section.home-banner .home-cont .hero-head h1 {
font-size: 48px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
}

section.blog-section {
    padding: 60px 72px;
}
.blog-page {
    margin-bottom: 30px;
    border-radius: 0;
}
.blog-page .upper-sec {
    position: relative;
    overflow: hidden;
    height: 250px;
}
.blog-page .upper-sec a {
    -webkit-transition: .35s;
    transition: .35s;
    position: relative;
    width: 100%;
    display: inline-block;
}
.blog-page .upper-sec img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    -webkit-transition: .4s;
    transition: .4s;
}
.blog-page:hover .upper-sec img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}
.blog-page .upper-sec a:after {
    background: rgba(255,255,255,.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: .4s linear;
    transition: .4s linear
}
.blog-page .date-sec, .blog-page .date-sec span {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.blog-page .date-sec {
    background: var(--other-color);
    color: #fff;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    padding: 10px 15px;
    line-height: 1;
    font-weight: 600;
}
.blog-page .date-sec:before {
    position: absolute;
    bottom: -10px;
    left: 0;
    border-top: 10px solid var(--other-color);
    border-right: 10px solid transparent;
    content: "";
}
.blog-page:focus .upper-sec a:after, .blog-page:hover .upper-sec a:after {
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: .4s linear;
    transition: .4s linear;
}
.blog-page .bottom-sec {
    -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .05);
    background: var(--white-color);
    padding: 30px;
}
.blog-page .bottom-sec a{
 text-decoration:none; 
}
.blog-page .admin-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog-page .admin-area .admin {
    align-items: center;
    gap: 4px;
    font-size: var(--f14);
    color: var(--primary-color);
    display: none;
}
.blog-page .admin-area .category a {
    color: var(--other-color);
    font-size: var(--f14);
    font-weight: 700;
}
.blog-page .bottom-sec h3 {
    margin-top: var(--m20);
    font-size: var(--f22);
    height: 58px;
    overflow: hidden;
    font-weight: bold;
}
.blog-page .bottom-sec h3 a{
color:#212529;
}
.blog-page .bottom-sec h3 a:hover{
    color:var(--other-color);
}
.blog-page p{
  color: #717582;
}
.link-sec a{
 display: inline-flex;
    transition: .3s;
    position: relative;
    overflow: hidden; 
  align-items: center;
    gap: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
  background: var(--btn-color);
    color: var(--white-color);
    padding: 10px 19px;
}
.link-sec a::before{
      left: 20px;
    transform: translateX(-10px);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    opacity: 0;
  position: absolute;
    transition: .3s;
  content: "\f061";
    color: var(--white-color);
}
.btn-text{
    display: inline-block;
    transition: transform .3s;
}
.link-sec a i{
  transition: transform .3s, opacity .3s;
  margin-left: 5px;
    position: relative;
}
.link-sec a:hover::before{
  left: 16px;
    opacity: 1;
    transform: translateX(0);
}
.link-sec a:hover .btn-text {
    transform: translateX(16px);
}
.link-sec a:hover i{
  transform: translateX(100%);
    opacity: 0;
}