#hs_cos_wrapper_widget_1755828723265 .background-settings{
  background-position: center top 35px;
  background-size: 1920px;
}


@media (max-width:991px){
  #hs_cos_wrapper_widget_1755828723265 .background-settings {
    background-position: center top 80px;
    background-size: 1194px;
  }
}

.blogListing__head{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (min-width:992px){
  .blogListing__head h1{
    width:30%;
  }
  .blogListing__head--copy{
    font-size:32px;
    width: 70%;
  }
}


.dropdown-label{
  display:none;
}

.dropdown-list{
  list-style:none;
  padding:0;
  margin:0;
}

.dropdown-list li{
  display:inline-block;
  margin-right:10px;
  margin-bottom:10px;
}
.dropdown-list li a{
  display:block;
  border:1px solid var(--primary-color);
  border-radius:12px;
  font-size:16px;
  padding: 7px 15px;
  background-color:#fff;
  transition:.2s all linear;
}
.dropdown-list li a:not(.is-active):hover{
  background-color:#f2f2f2;
}
.dropdown-list li a.is-active{
  box-shadow: 0 0 0 2px var(--primary-color);
}



.blog_listing{
  display:flex;
  flex-wrap:wrap;
}
.cardCol{
  width:100%;
  padding:12px;
}

.card{
  border: 1px solid #e5c877;
  background-color: #fcfaf2;
  border-radius:12px;
  height:100%;
  overflow:hidden;
  display: flex;
  flex-direction: column;
  transition: .2s all linear;
}

.card__copy{
  padding:10px 20px 20px;
  flex:1;
  display: flex;
  flex-direction: column;
}

.card__link,
.card__summary{
  display:none;
}

.card__img{
  position:relative;
  display:block;
}

.card__img svg{
  z-index: 1;
  width: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card__img {
  transition:.1s all ease;
  overflow:hidden;
  aspect-ratio: 16/9;
  -webkit-aspect-ratio: 16/9;
}
.card__img img{
  object-fit:cover;
  width:100%;
  height:100%;
  display:block;
  transition: .3s all linear;
  overflow:hidden;
}

.card:hover {
  box-shadow:5px 5px 20px rgba(299, 200, 119, .3);
  transform:translateY(-2px);
}


.card__date{
  margin-top: auto;
  border-top: 1px solid rgba(0,0,0,.1);
  padding-top: 10px;
  font-size: 14px;
  font-weight: 500;
}

.card__title{
  font-size: 20px;
  line-height: 1.3;
  padding-top: 10px;
  margin-bottom:30px;
}
.card__title a{
  color:#1c1818;
  text-decoration: none;
  font-weight:700;
}
.card__title a:hover{
  color:var(--primary-color);
}

.card__tag span{
  display: inline-block;
  font-size: 14px;
  color: #e5c877;
}
.card__tag span:not(:last-child):after{
  content:","
}

.blogListing__filters-inner{
  background-color: #fcfaf2;
  border-radius:6px;
  border: 1px solid #e5c877;
  overflow: hidden;
}

.keyword-search{
  width: 100%;
  height: 50px;
  border: 0;
  padding: 0 15px;
  font-size: 16px;
  border-bottom: 1px solid var(--primary-color);
  outline:none;
  transition:.3s all linear;
}
.keyword-search:focus,
.keyword-search:hover{
  box-shadow: 0 1px 0 0 var(--primary-color);
}

#blog_listing_action{
  display: flex;
  justify-content: center;
  padding-top: 30px;
}


.blogListing__filters{
  
}

.toggle-label{
  padding: 10px 15px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  display: block;
  position:relative;
}
.toggle-label:before,
.toggle-label:after{
  content:"";
  width:15px;
  height:2px;
  background-color:#000;
  border-radius:1px;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  right:15px;
  transition:.3s all linear;
}

.blogListing__filters:not(.is-open) .toggle-label:after{
  transform: translateY(-50%) rotate(270deg);
}

.toggle-ready .toggle-list{
  max-height:0;
}

.toggle-list{
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: #fff;
  padding:0 15px;
/*   max-height:0; */
  overflow:hidden;
  transition:max-height 0.3s ease-out;
}

.toggle-list li:first-child{
  padding-top:10px;
}

.toggle-list li:last-child{
  padding-bottom:10px;
}

.is-open .toggle-list{
  max-height:var(--height);
}

.toggle-list a{
  color: #555;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
  position:relative;
}
.toggle-list a:hover:before{
  background-color:#e6e6e6;
}
.toggle-list a.is-active:before{
  background-color:#e5c877;
}
.toggle-list a:before{
  content:"";
  width:22px;
  height:22px;
  background-color:#fff;
  border:1px solid #e5c877;
  border-radius:3px;
  display:inline-block;
  transition:.3s all linear;
}
.toggle-list a.is-active:after{
  opacity:1;
}
.toggle-list a:after{
  content: "";
  width: 14px;
  height: 7px;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  position: absolute;
  top: 7px;
  left: 5px;
  transform: rotate(-40deg);
  opacity:0;
}


@media (min-width:480px){
  .blog_listing{
    margin: 0 -13px;
  }
  .cardCol{
    width:calc(100% / 2);
  }
}

@media (min-width:768px){
  .cardCol{
    width:calc(100% / 2);
  }
}


@media (min-width:768px){
  .cardCol{
    width:calc(100% / 3);
  }
  .blogListing__index{
    display:flex;
    flex-wrap:wrap;
  }
  .blogListing__filtersWrap{
    width:270px;
    padding-top:12px;
    position:relative;
  }
  .blogListing__main{
    width:calc(100% - 270px);
    padding-left:35px;
    min-height:800px;
  }
}

@media (max-width:1300px){
  .hs-blog-listing .formTheme__text{
    width: 40%;
  }
  .hs-blog-listing .formTheme__form {
    width: 60%;
  }
}

@media (max-width:992px){
  .hs-blog-listing .formTheme__text,
  .hs-blog-listing .formTheme__form {
    width: 100%;
    padding:0;
  }
  .hs-blog-listing .formTheme__text{
    margin-bottom:20px!important;
  }
}


/* Author CSS */

.blogAuthor__head{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom:50px;
}
.blogAuthor__img{
  width:200px;
}
.blogAuthor__img img{
  width:200px;
  aspect-ratio:1/1;
  -webkit-aspect-ratio:1/1;
  border-radius:50%;
  box-shadow:0 4px 22px 10px rgba(0, 23,34, .08);
}
.blogAuthor__title h3{
  font-weight:400;
}
.blogAuthor__social{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.blogAuthor__social a{
  font-size:16px;
}

.blogAuthor__bio{
  font-size:18px;
}

.blogAuthor__posts--title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.blogAuthor__posts--title h3{
  font-weight:400;
}

.videoCustom__close{
  display: block;
  width: 35px;
  height: 35px;
}
.videoCustom__play{
  transition:.3s all ease;
}

.videoCustom__play:hover{
  transform: scale(.8);
  -webkit-transform: scale(.8);
}

@media (min-width:992px){
  .blogAuthor__title{
    width: calc(55% - 200px);
    padding-left: 40px;
  }

  .blogAuthor__bio{
    width: calc(60% - 200px);
    padding-left:130px;
  }
}



.videoCustom__inner{
  position:relative;
}
.videoCustom__play{
  height:100%;
  display: flex;
  flex-wrap:wrap;
  cursor: pointer;
  padding: 40px;
  justify-content: center;
  z-index: 1;
  position: relative;
  align-items: center;
  position:absolute;
  width:100%;
}
.videoCustom__play:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}
.videoCustom__play--inner{
  position:relative;
}
.videoCustom__play--button{
  display:inline-block;
  color: #FFF;
  font-size: 20px;
  text-align: center;
  font-family: sans-serif;
  text-transform: uppercase;
  animation: animate-pulse 3s linear infinite;
  cursor: pointer;
  line-height:0;
  border-radius: 30px;
}
.show.videoCustom__popupWrap{
  visibility:visible;
  opacity:1;
}
.videoCustom__popupWrap{
  transition:.3s all ease;
  -webkit-transition:.3s all ease;
  visibility:hidden;
  opacity:0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:30px;
  background-color: rgba(0,0,0,.5);
  padding-top:100px;
}



.videoCustom__popup {
  display: inline-block;
  height: 100%;
  position: relative;
  width: 100%;
  box-shadow: 0 0 30px rgb(0, 0, 0);
  line-height:0;
}

.videoCustom__popup.iframe{
  padding-bottom: 56.25%; 
}

.videoCustom__popup video{
  width:100%;
  height:auto;
}

.videoCustom__popup iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videoCustom__inner{
  max-width:1200px;
  width:100%;
  aspect-ratio:16/9;
  -webkit-aspect-ratio:16/9;
  display:inline-block;
  position:relative;
}

.videoCustom__popupInner{
  max-width:1200px;
  width:100%;
  position:relative;
}

.videoCustom__close:hover{
  opacity:.7;
}
.videoCustom__close{
  position: absolute;
  z-index: 1;
  top: -10px;
  right: -10px;
  background-color: #fff;
  line-height: 0;
  border-radius: 50%;
  cursor: pointer;
}
.videoCustom__close svg{
  width:30px;
  height:30px;
}

.videoCustom__inner img{
  display:block;
  max-width:100%;
  height:100%;
  object-fit: cover;
  -o-object-fit: cover;
  position: absolute;
  bottom: 0;
  z-index: 0;
}

.videoCustom__content{
  margin-bottom:20px;
  max-width:500px;
  color:#fff;
}
.videoCustom__content :is(h1, h2, h3, h4, h5, h6){
  color:#fff;
}

@media (max-width:767px){
  .videoCustom__play svg{
    width:50px;
    height:50px;
  }

  .videoCustom__play{
    padding:30px;
  }
}


@media (max-width:767px){
  {% if module.order_on_mobile == 'img-first' %}
  .image-first>.row-fluid{
    display:flex;
    flex-direction:column
  }
  .image-first>.row-fluid>div:first-child{
    order:2;
  }
  {% endif %}
}


.videoCustom__bubble{
  display: flex;
  width: 300px;
  height: 300px;
  position: absolute;
  background-color: #2d30b6;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  left: -150px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  padding: 20px 45px;
  box-shadow: 10px 4px 104px rgba(0,0,0,.2);
}

@media (max-width:1200px){
  .videoCustom__bubble{
    width: 200px;
    height: 200px;
    left: -100px;
    font-size: 24px;
    padding:25px;
  }
}

@media (max-width:1200px){
  .videoCustom__bubble{
    width: 150px;
    height: 150px;
    font-size: 17px;
    left: -40px;
  }
}


@keyframes animate-pulse{
  0%{
    box-shadow: 0 0 0 0 rgba(, 0.7),  0 0 0 0 rgba(, 0.7);
  }
  40%{
    box-shadow: 0 0 0 10px rgba(, 0.0),  0 0 0 0 rgba(, 0.7);
  }
  80%{
    box-shadow: 0 0 0 10px rgba(, 0.0),  0 0 0 10px rgba(, 0);
  }
  100%{
    box-shadow: 0 0 0 0 rgba(, 0.0,  0 0 0 10px rgba(, 0);
      }

}
