
/* start breadcrum start */


.breadcrumb {
    position: absolute;
    top: 2.083vw;
    z-index: 5;
    left: 3.125vw;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    padding: 0 0;
    padding-top: 0;
    margin: 0;
    flex-wrap: wrap;
    font-family: var(--theme-roboto-font);
}

.breadcrumb ul li {
    margin-right: 10px;
    color: #fff;
}

.breadcrumb ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 400;
}

.breadcrumb ul li::after {
    content: ">";
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.70);
}

.breadcrumb ul li:last-child::after {
    content: "";
}

/* end breadcrum start */


 /* start inner banner page css */

.inner_page_banner{
    padding-top: 15px;
    padding-bottom: 0px;
}

.inner_page_banner .custom-container {
    padding-left: min(max(1.25rem, 2.0833vw), 2.5rem);
    padding-right: min(max(1.25rem, 2.0833vw), 2.5rem);
}

.inner_page_banner .banner__area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.48);
    z-index: 1;
}

.banner_img_inner{
    width: 100%;
    position: relative;
}

.banner_img_inner::before{
    content: "";
    border-radius: 20px;
    opacity: 0.48;
    background: var(--theme-black);
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute;
}

.banner_img_inner img{
    width: 100%;
}

.inner_page_banner .banner__area{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.banner_img_inner{
    min-height: 19.7917vw;
}

.banner_img_inner img{
    object-fit: cover;
    object-position: top;
}


@media (max-width: 1199px) {

    .banner_img_inner {
       height: 25.7917vw;
    }

}


@media (max-width: 991px) {

    .banner_img_inner {
        height: 24.7917vw;
    }

}


@media (max-width: 767px) {

.banner_img_inner {
    height: initial;
    height: 180px;
    object-position: left;
    object-fit: cover;
    background-position-x: 83% !important;
}

.inner_page_banner {
    padding-top: 10px;
    padding-bottom: 10px;
}


}

 /* start inner banner page css */



 /* start blog list top title */

 .blog_list_main{
   position: relative;
 }

.blog_list_main .section_overlay {
    content: "";
    position: absolute;
    left: 0;
    top: 0%;
    width: 100%;
    height: 21%;
    z-index: -1;
    background: linear-gradient(0deg, #F0E2C9 0%, rgba(240, 226, 201, 0.00) 100%);
}

.section__overlay{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0%;
    width: 100%;
    height: 80%;
    z-index: -1;
    background: var(--theme-light-yellow);
}


 /* end blog list top title */




/* start new select box */

.select_new_list .custom__select-wrapper{
   min-height: 3.0729vw;
}


.select_new_list {
    display: flex;
    height: 100%;
    align-items: flex-end;
    justify-content: flex-end;
}

.select_new_inner{
    column-gap: 5px;
    align-items: center;
}

.select_new_inner .short_by{
    color: var(--theme-brown-light);
    font-size: 18px;
}

/* Wrapper */
.custom-select {
  min-width: 200px; 
  position: relative;
  font-family: Arial, sans-serif;
}

/* Select box */
.select_new_list .selected {
    height: 40px;
    cursor: pointer;
    background: #fff;
    position: relative;
    border: .8px solid #D6D3D1;
    border-radius: 8px;
    /* font-size: 0; */
    display: flex;
    align-items: center;
    padding-left: 10px;
    font-size: 14px;
    font-weight: 600;
}

/* Arrow */
.select_new_list .selected::after {
    content: "";
    width: 12px;
    height: 12px;
    border-right: 2px solid #79716B;
    border-bottom: 2px solid #79716B;
    position: absolute;
    right: 12px;
    top: 44%;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.3s;
}

/* Arrow up when active */
.custom-select.active .selected::after {
  transform: translateY(-50%) rotate(-135deg); /* up */
  top: 55%;
}

/* Dropdown */


.select_new_list .check_data {
    color: #000;
    font-weight: 600;
}

.select_new_list .options {
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    z-index: 10;
    padding: 10px 0px;
    border: 1px solid #D6D3D1;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

/* Option row */
.select_new_list .option {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
}


/* Hide native radio */
.select_new_list .option input {
  display: none;
}

/* Custom radio */
.radio-custom {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    position: relative;
    border-radius: 4px;
    border: 0.6px solid #858585;
    background: var(--Primary-4, #FFF);
}

/* Checked state */

.option input:checked + .radio-custom::after {
    content: "";
    width: 19px;
    height: 19px;
    background: var(--theme-dark-brown-new);
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}




@media (max-width: 1199px) {
    .select_new_list .custom__select-wrapper {
        min-height: 4.0729vw;
    }
}

@media (max-width: 991px) {

    .select_new_list .custom__select-wrapper {
        min-height: 5.3729vw;
    }

   

}

@media (max-width: 767px) {

    .select_new_list .custom__select-wrapper {
        min-height: 9.5729vw;
    }

     .select_new_list {
        justify-content: flex-start;
        margin-top: 20px;
        align-items: flex-start;
    }

    .select_new_inner {
        column-gap: 5px;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .select_new_list .selected::after {
      width: 10px;
      height: 10px;
    }

}

/* end new select box */




/* start blog list item */

.blog_list_inner{
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    margin-top: min(max(30px, 2.6042vw), 50px);
}

.blog_list_left{
   width: calc((100% - 40px) / 3);
}


.blog_list_left .single__item{
    width: 100%;
    border: 1px solid rgba(18, 18, 18, 0.10);
    background: var(--theme-whiteout-lotion);
    box-shadow: 0 4px 10px 0 rgba(18, 18, 18, 0.12);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog_list_left .single__item .img__wrap{
    width: 100%;
}

.blog_list_left .single__item .img__wrap img{
    width: 100%;
    max-height: min(max(250px, 16.4583vw), 316px);
    object-fit: cover;
}

.blog_list_left .single__item .content__wrap{
  width: 100%;
  padding: 20px min(max(min(max(15px, 1.3021vw), 25px), 1.5625vw), 30px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog_list_left .single__item .content__wrap .content_title{
    font-weight: 700;
    font-family: var(--theme-font-lato);
    color: var(--theme-black);
    flex-grow: 1;
}

.content_auther{
    width: 100%;
    margin-top: 7px;
}

.content_auther ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    column-gap: 50px;
}

.content_auther ul li{
    position: relative;
    color: var(--theme-brown-light);
    opacity: 0.66;
}

.content_auther ul li:first-child::before {
    content: "";
    width: 1px;
    height: 80%;
    background: var(--theme-brown-light);
    position: absolute;
    right: -25px;
    top: 17%;
    opacity: 0.66;
}

.blog_list_left .single__item .content__wrap .content_area {
    width: 100%;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog_list_left .single__item .content__wrap .button_part{
    width: 100%;
    margin-top: min(max(18px, 1.25vw), 24px);
}

.common_read_more {
    display: flex;
    align-items: center;
    column-gap: 6px;
    color: var(--theme-orange-red);
    font-size: min(max(16px, 1.0417vw), 20px);
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}



.custom-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: min(max(30px, 3.125vw), 60px) 0;
  margin-bottom: 0;
}

.custom-pagination a, .custom-pagination span {
    border: 1px solid var(--theme-orange-red);
    color: var(--theme-orange-red);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-pagination .current {
  background-color: var(--theme-orange-red);
  color: var(--theme-white);
  border-color: var(--theme-orange-red);
  font-weight: bold;
}

.custom-pagination a.prev, .custom-pagination a.next{
    color: var(--theme-black);
    opacity: 0.4;
    border-color: var(--theme-black);
    font-size: 0px;
    position: relative;
}

.custom-pagination a.prev::before{
  content: "";
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="17" viewBox="0 0 18 17" fill="none"><path d="M16.754 8.22664H1.24992M1.24992 8.22664L8.22675 1.24981M1.24992 8.22664L8.22675 15.2035" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  width: 20px;
  height: 16px;
}

.custom-pagination a.next::before{
    content: "";
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="17" viewBox="0 0 18 17" fill="none"><path d="M1.24992 8.22664H16.754M16.754 8.22664L9.77716 1.24981M16.754 8.22664L9.77716 15.2035" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    width: 20px;
   height: 16px;
}


@media (max-width: 991px) {

    .blog_list_left {
        width: calc((100% - 20px) / 2);
    }

}

@media (max-width: 767px) {

    .blog_list_left{
        width: 100%;
    }

    .custom-pagination a, .custom-pagination span {
       width: 40px;
       height: 40px;
    }
}

/* end blog list item */