* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

    --primary-color:#ed1d26;
    --secondary-color:#e9c63d;

    --border-radius-large: 100px;
    --border-radius-medium: 20px;
    --border-radius-small: 10px;

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}
.text-clamp-1{
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.text-clamp-2{
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
html,
body {
    height: 100%;
}

.body {
    background-color: white;
    background-image: url('../images/mihmct_group_pic.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    display: flow-root list-item;
    position: relative;
    height: inherit;
}
a:hover{
    color: var(--primary-color);
}
.header-container {
    position: relative;
    background: url("../images/mih_header.webp") no-repeat;
    background-position: center;
    background-size: cover;
    /* height: 150px; */
    /* margin-bottom: 10px; */
    z-index: 9;
}

.brand-logo-container {
    height: 100px;
    width: 210px;
    overflow: hidden;
}

.brand-logo-container>img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius:10px;
}

.years-logo-container {
    height: 155px;
    position: absolute;
    /* top: -60px; */
    top: -10px;
    right: 0;
}

.years-logo-container>img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.header-fz {
    font-size: 17px;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-list>ul {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-image: radial-gradient(#fff -200%, #373435 80%);
    box-shadow: 2px 10px 5px -10px rgba(0, 0, 0, 0.75);
    border-radius: 50px;
    height: 35px;
}

.nav-list>ul>li {
    list-style: none;
}

.nav-list>ul>li>a {
    color: #fff;
    border-right: 1px solid #302e2f;
    padding: 2px 10px;
    font-weight: 600;
    font-size: 16px;
}

.nav-list>ul>li:last-child>a {
    color: #fff;
    border-right: none;
    padding: 2px 10px 2px 5px;
}

.mv-nav-list {
    display: none;
}


@media screen and (max-width:730px) {
    .years-logo-container {
        height: 120px;
        right: 4px;
    }

    .brand-logo-container {
        /* width: 250px; */
        width: 300px;
    }

    .header-fz {
        font-size: 14px;
    }
}

@media screen and (max-width:768px) {
    .nav-list {
        display: none;
    }

    .years-logo-container {
        display: none;
    }

    .mv-nav-list {
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        min-width: 100%;
        height: 100dvh;
        background: #fff;
        display: block;
        margin: 0 !important;
        transform: translateX(-1000px);
        transition: .5s;
        z-index: 99;
    }

    .mv-nav-list.show {
        transform: translateX(0);
    }

    .mv-nav-list>.close-icon {
        position: absolute;
        top: 0;
        right: 5px;
        padding: 10px;
        font-size: 20px;
    }

    .mv-nav-list>ul {
        position: relative;
        /* top: 25px; */
        padding: 10px !important;
    }

    .mv-nav-list>ul>li {
        display: flex;
        align-items: center;
        padding: 10px 5px;
        border-bottom: 1px solid gray;
    }
    .mv-nav-list>ul>li:last-child {
        border: none;
    }

    .mv-nav-list>ul>li>a>i {
        text-align: center;
        min-width: 20px;
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (min-width: 768px) and (max-width: 992px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 815px;
    }
}

.blinking-text {
    text-align: center;
    margin-top: 20%;
    font-size: 24px;
    color: green;
    animation: blink 1s infinite;
}

.banner .owl-nav{
    position: absolute;
    bottom: 0;
    right: 0;
}
.owl-prev,
.owl-next{
    padding: 3px 8px !important;
    background: #ed1d26 !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.363) !important;
    font-size: 13px !important;
}
.owl-prev{
    border-radius: 10px 0 0 0;
}
.owl-next{
    border-radius: 0 10px 0 0;
}

@media screen and (min-width:768px) {
    .owl-prev,
    .owl-next{
        padding: 5px 15px !important;
        font-size: 14px !important;
    }

    .owl-prev{
        border-radius: 15px 0 0 0;
    }
    .owl-next{
        border-radius: 0 15px 0 0;
    }
}
/* .banner .owl-nav > .owl-prev,
.banner .owl-nav > .owl-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 15px !important;
    background: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 5px;
}
.banner .owl-nav > .owl-prev{
    left: 10px;
}
.banner .owl-nav > .owl-next{
    right: 10px;
} */


/* FOOTER CSS */

.footer-bg {
    position: relative;
    background: url("../images/mih_header.webp") no-repeat;
    background-position: center;
    background-size: cover;
}

.cursor-pointer {
    cursor: pointer;
}


.myButton {
    background: linear-gradient(to bottom, #fe1a00 5%, #ce0100 100%);
    background-color: #fe1a00;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 16px;
    font-weight: bold;
    padding: 13px 14px;
    text-decoration: none;
}

.myButton:hover {
    background: linear-gradient(to bottom, #ce0100 5%, #fe1a00 100%);
    background-color: #ce0100;
}

.myButton:active {
    position: relative;
    top: 1px;
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
    padding: 50px 0;
}




/*---------------------------------------
  NEWS         
-----------------------------------------*/
.news-detail-header-section {
    /* background-image: url('../images/news/close-up-volunteer-oganizing-stuff-donation.jpg'); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-top: 150px;
    padding-bottom: 150px;
}

.news-block-top {
    --event-container-aspect-ration:2/1.3;
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
    aspect-ratio: var(--event-container-aspect-ration);
    box-shadow: 0 0 10px #ebebeb;
}
.news-block-top  img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.news-block-top .owl-item div{
    aspect-ratio: var(--event-container-aspect-ration);
}

.news-block-two-col-image-wrap {
    border-radius: var(--border-radius-small);
    position: relative;
    overflow: hidden;
    width: 150px;
    min-width: 150px;
    margin-right: 20px;
}

.news-category-block {
    width: 85%;
    background: var(--secondary-color);
    color: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 8px 15px;
    z-index: 1;
    border-radius: 0 20px 0 0;
}

.news-category-block .category-block-link {
    color: #fff;
    margin-right: 10px;
}

.news-block-info {
    padding-top: 10px;
    padding-bottom: 10px;
}

.news-block-title-link {
    color: var(--dark-color);
}

.news-detail-image {
    display: block;
    border-radius: var(--border-radius-medium);
}

blockquote {
    background: var(--section-bg-color);
    border-radius: var(--border-radius-small);
    font-size: var(--h5-font-size);
    font-weight: var(--font-weight-semibold);
    color: var(--site-footer-bg-color);
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 90px 50px 50px 50px;
    text-align: center;
}

blockquote::before {
    content: "“";
    color: var(--custom-btn-bg-color);
    font-size: 100px;
    line-height: 1rem;
    display: block;
}

.author-comment-link {
    font-size: var(--copyright-font-size);
    font-weight: var(--font-weight-semibold);
}

.search-form {
    margin-top: 20px;
}

.category-block,
.subscribe-form {
    margin-top: 40px;
    margin-bottom: 40px;
}

.category-block-link {
    font-size: var(--copyright-font-size);
    margin-top: 5px;
    margin-bottom: 5px;
}

.category-block-link:hover {
    color: var(--primary-color);
}

.badge {
    background: var(--secondary-color);
    border-radius: var(--border-radius-medium);
    font-weight: var(--font-weight-normal);
    line-height: normal;
    padding-bottom: 2px;
}

.tags-block-link {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-medium);
    display: inline-block;
    font-size: var(--copyright-font-size);
    line-height: normal;
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 8px 15px;
}

.tags-block-link:hover {
    border-color: var(--dark-color);
    color: var(--dark-color);
}

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: -100px;
    left: -30px;
    margin: auto;
    width: 200px;
    height: 200px;
}

.cta-section::after {
    content: "";
    border: 20px solid var(--custom-btn-bg-color);
    border-radius: 50%;
    position: absolute;
    bottom: -100px;
    right: 0;
    left: 0;
    margin: auto;
    width: 150px;
    height: 150px;
}

.recent-title{
    background: #ff0606;
    color: #fff ;
    padding: 10px;
    border-radius: 6px;
}
.news-block.notification-block-two-col{
    min-height: 60px;
    max-height: 100px;
    box-shadow: 0 0 10px #ededed;
    border-radius: 10px;
}
.news-block.news-block-two-col{
    min-height: 100px;
    max-height: 100px;
    box-shadow: 0 0 10px #ededed;
    border-radius: 10px;
}
.news-block.news-block-two-col img{
   height: 100%;
   width: 100%;
   object-fit: cover;
   object-position: center;
}
.news-block.news-block-two-col > .news-block-two-col-info{
    margin-top: 10px;
}

.event-carousel{
    position: relative;
}
.event-carousel .owl-nav{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}