*{
    font-family: 'Familjen Grotesk', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.content-box{
    max-width: 1255px !important;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 180px;
}
.cta_button_primary {
    padding: 10px 15px;
    background: #992E00;
    border-radius: 61px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: inline-flex;
    border: 0;
    color: #F2F1ED;
    cursor: pointer;
}
.Ss-btn_txt {
    color: #F2F1ED;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
}
.section-heading{
    color: #992E00;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    font-family: "DM Serif Display";
}
.blog-options{
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 10px; 
    margin-bottom: 20px;
}
.search-container {
    display: flex;
    flex-direction: column;
    border-bottom: 2px black solid;
    font-size: 20px;
    color: #707073;
    font-weight: 400;
    line-height: 140%;
}
.search-input-container {
    width: 100%;
    align-self: start;
    display: flex;
    gap: 11px;
    padding: 0;
    align-items: end;
}
.prog-search-icon {
    width: 48px;
    aspect-ratio: 1;
    object-fit: auto;
    object-position: center;
}
.search-input {
    width: 100%;
    padding: 10px;
    font-size: 20px;
    color: var(--Colors-Neutral-Neutral-70, #707073);
    font-weight: 400;
    line-height: 140%;
    border: none;
    outline: none;
    box-sizing: border-box;
    background: transparent;
}
.options-container{
    display: flex; 
    gap: 10px; 
    flex-wrap: wrap;
}
.dropdown-select{
    border: none;
    padding: 5px 15px;
    border-bottom: 2px solid black;
    background: transparent;
}
.loader {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #992E00;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    display: none;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.tags{
    background: #992E00;
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
}
.tags-container{
    display:flex; 
    flex-wrap:wrap;
    margin-top: 10px;
    gap: 5px;
}
.blog-card {
  opacity: 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transform: translateY(40px);
  transition: all 0.5s ease;
  max-height: 350px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-card:hover {
  box-shadow: rgb(5 5 5 / 16%) 0px 10px 36px 0px, rgb(0 0 0 / 6%) 0px 0px 0px 1px;
}
.options-innrdiv2{
    display:flex;
    flex-direction:row;
    gap:10px
}
.options-innrdiv1{
    display:flex;
    align-items:center;
}
@media (min-width:320px) and (max-width:767.99px) {
    .options-innrdiv2{
        display: grid;
        gap: 10px;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
    .options-container {
        flex-direction:column;
        flex-wrap: nowrap;
        width: 100%;
    }
    .search-input-container{
        gap: 0px;
    }
    .section-heading{
        font-size: 30px !important;
    }
}