.page-title{
    position: relative;
    overflow: hidden;
}

.page-title .bg-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    aspect-ratio: 4 / 3;
}

.page-title .bg-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-title .bg-image:after{
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0000005e;
    z-index: 2;
    position: absolute;
}

.page-title .bg-up{
    position: relative;
    padding-block: clamp(30px, 5vw, 60px);
    z-index: 3;
}

.page-title .bg-up .hero-badges {
	border: 1px solid #fff;
	background: #ffffff45;
	display: flex;
	padding: 10px 30px;
	gap: 15px;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(20px);
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	width: fit-content;
	margin: auto;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.page-title .bg-up h1{
    font-size: clamp(30px, 5vw, 60px);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 10px 0 0 0;
    line-height: 1.3;
    color: #fff;
    text-align: center;
}

.page-title .bg-up p{
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 10px 0 0 0;
    line-height: 1.3;
    text-align: center;

    color: #fff;
}


.blog-list-page{
    position: relative;
    background: #f5f5f5;
    padding-block: clamp(40px, 4vw, 60px);
}

.blog-box{
position: relative;
  border-radius: 20px;
  background-color: #ffffff;
  --theme-color1: #ee1f2c;
  --theme-color2: #024e7e;
   --theme-color3: #003254;
  --theme-color-silver: #eee;
 border: 1px solid #eee;
  
}

.blog-box .thumb {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1200 / 700;
}

.blog-box .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  max-width: 100%;
}

.blog-box .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}


.blog-box .content {
  padding: 30px 40px;
}
.blog-box .content .cat {
  font-size: 16px;
  font-weight: 400;
  color: var(--theme-color3);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  margin-bottom: 15px;
  background: var(--theme-color-silver);
  padding: 3px 15px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.blog-box .content .cat:hover {
  background: var(--theme-color1);
  color: #fff;
}
.blog-box .content .entry-title {
  margin-bottom: 14px;
  margin-top: 0;
  line-height: 1.4;
  font-size: clamp(20px, 5vw, 24px);
  font-weight: 600;
}
.blog-box .content .entry-title a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  transition: all 0.5s;
}

.blog-box .content .entry-title a span{
    display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

}
.blog-box .content .entry-title a:hover {
  color: var(--theme-color3);
  background-size: 100% 2px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--theme-color1)), to(var(--theme-color1)));
  background-image: linear-gradient(180deg, var(--theme-color1) 0%, var(--theme-color1) 100%);
}
.blog-box .content .link-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 12px;
  color: var(--theme-color2);
  text-transform: capitalize;
  margin-top: 22px;
}
.blog-box .content .link-btn i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  line-height: 32px;
  background-color: var(--theme-color-silver);
  text-align: center;
  color: var(--theme-color3);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.blog-box .content .link-btn:hover i {
  background: var(--theme-color1);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
          color: #fff;
}
.blog-box:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.blog-box:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

@media (max-width: 1399.98px) {
  .blog-box .content {
    padding: 30px 35px;
  }
}
@media (max-width: 991.98px) {
  .blog-box .content {
    padding: 30px;
  }
}
@media (max-width: 575.98px) {
  .blog-box .content {
    padding: 28px 30px;
    padding: 26px 28px;
  }
  .blog-box .content .entry-title {
    margin-bottom: 9px;
  }
  .blog-box .content .link-btn {
    margin-top: 18px;
  }
}




/*=============================
 BLOG PAGINATION
=============================*/
.blog-pagination {
     --theme-color1: #ee1f2c;
  --theme-color2: #024e7e;
   --theme-color3: #003254;
  --theme-color-silver: #eee;
    margin-top: 50px;
    text-align: center;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 18px;
    margin: 0 6px;
    border-radius: 12px;
    background: var(--theme-color-silver);
    color: var(--theme-color3);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
    border: 1px solid transparent;
}

.blog-pagination .page-numbers:hover {
    background: var(--theme-color2);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(2, 78, 126, 0.18);
}

.blog-pagination .page-numbers.current {
    background: linear-gradient(
        135deg,
        var(--theme-color1),
        var(--theme-color1)
    );
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(238, 31, 44, 0.20);
}

.blog-pagination .prev,
.blog-pagination .next {
    padding: 0 22px;
    font-size: 15px;
    font-weight: 700;
}

.blog-pagination .dots {
    background: transparent;
    box-shadow: none;
    min-width: auto;
    padding: 0 5px;
}

.blog-pagination .dots:hover {
    background: transparent;
    transform: none;
    color: var(--theme-color3);
    box-shadow: none;
}


@media (max-width: 767px) {

    .blog-pagination .page-numbers {
        min-width: 42px;
        height: 42px;
        margin: 4px;
        font-size: 14px;
        border-radius: 10px;
    }

    .blog-pagination .prev,
    .blog-pagination .next {
        padding: 0 16px;
    }

}

.blog-sidebar{
     --theme-color1: #ee1f2c;
  --theme-color2: #024e7e;
   --theme-color3: #003254;
  --theme-color-silver: #eee;
}

.blog-sidebar div h4{
    position: relative;
    font-size: clamp(18px, 5vw, 22px);
    margin: 0  0 18px 0;
    padding-bottom: 8px;
    color: #000;
    font-weight: 600;
    width: fit-content;
}

.blog-sidebar div h4:after{
    content: '';
    width: 50%;
    display: block;
    height: 3px;
    position: absolute;
    background: var(--theme-color1);
    left: 0;
    bottom: 0;
    opacity: 0.5;
}

.blog-sidebar > div{
position: relative;
    padding: 18px 15px ;
    background: #fff;
    border: 1px solid #dadada;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.blog-sidebar > div + div{
    margin-top: 30px;
}


.blog-sidebar .searchbar-box input{
    width: 100%;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 8px 15px;
    color: #000;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    display: block;
    outline: unset !important;
    box-shadow: unset !important;
}

.blog-sidebar .searchbar-box input::placeholder{
    color: #afafaf;
}
.blog-sidebar .searchbar-box input:focus{
    border-color: var(--theme-color2);
}


.blog-sidebar .searchbar-box .suggestion{
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 250px;
    overflow-y: auto;
}

.blog-sidebar .searchbar-box .suggestion .items{
    display: flex;
    gap: 20px;
    width: 100%;
    padding-block: 10px;
}

.blog-sidebar .searchbar-box .suggestion .items + .items{
    border-top: 1px solid #eeee;
}

.blog-sidebar .searchbar-box .suggestion .items .thumb{
    border-radius: 8px;
    overflow: hidden;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    width: 100px;
  height: 57px;
}


.blog-sidebar .searchbar-box .suggestion .items .thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-sidebar .searchbar-box .suggestion .items .content{
    display: flex;
    flex-direction: column;
}

.blog-sidebar .searchbar-box .suggestion .items .content .cat{
    display: block;
    font-size: 13px;
    color: var(--theme-color2);
}

.blog-sidebar .searchbar-box .suggestion .items .content h3{
    font-size: clamp(14px, 5vw, 16px);
    margin: 0;
    display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

}


.blog-sidebar .catagory-box .cat-list{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-sidebar .catagory-box .cat-list a{
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    padding: 8px 15px;
    background: #eee;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    gap: 8px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.blog-sidebar .catagory-box .cat-list a span{
    display: flex;
    width: fit-content;
    padding: 4px 10px;
    background: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.blog-sidebar .catagory-box .cat-list a:hover{
    background: var(--theme-color2);
    color: #fff;
}
.blog-sidebar .catagory-box .cat-list a:hover span{
    color: var(--theme-color2);
}

.blog-sidebar .tag-box .tag-list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-sidebar .tag-box .tag-list > div{
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    padding: 8px 15px;
    background: #fff;
    border:1px solid var(--theme-color-silver);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    gap: 8px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    width: fit-content;
    text-transform: capitalize;
}

.blog-sidebar .tag-box .tag-list > div:hover{
     background: var(--theme-color2);
    color: #fff;
    border-color: var(--theme-color2);
    
}


.blog-sidebar .repair-box{
 background: var(--theme-color2);
 border-color: var(--theme-color2);
 padding: 32px;
}

.blog-sidebar .repair-box h3{
     font-size: clamp(18px, 5vw, 24px);
     text-align: center;
     color: #fff;
     margin-bottom: 0px;
}

.blog-sidebar .repair-box .btns-inline{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}



.blog-sidebar .repair-box .btns-inline a{
    padding: 8px 15px;
    font-size: 16px;
    width: fit-content;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    letter-spacing: 0.5px;
}

.blog-sidebar .repair-box .btns-inline a:first-child{
    background: #fff;
    color: var(--theme-color2);
}


.blog-sidebar .repair-box .btns-inline a:first-child:hover{
    background: var(--theme-color1);
    color: #fff;
}

.blog-sidebar .repair-box .btns-inline a:last-child{
    background: #029e17;
    color: #fff;
}


.blog-sidebar .repair-box .btns-inline a:last-child:hover{
    background: var(--theme-color1);
    color: #fff;
}

