.home-feature{
    background-color: #022A4E;
    .right-padding{
        padding-right: 40px;
    }
}
.feature-heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
    h4{
font-size: 26px;
    font-weight: 500;
    color: #fff;
    font-family: $secondaryFont;
    margin-bottom: 20px;
    }
    .feature-all-btn{
         font-size: 14px;
    font-weight: 400;
    font-family: $secondaryFont;
    border: 1px solid $whiteColor;
    border-radius: 5px;
    padding: 8px 16px;
    color: $whiteColor;
    &:hover{
        background-color: $secondaryColor;
        color: #fff;
    border: 1px solid $secondaryColor;
    }
    }
}
.home-notice{
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
}
.home-media-wrapper{ 
     
    background-color: #022036;
    border-radius: 12px;
    margin-top: 15px;
}

.home-media-item{
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
     border-bottom: 1px solid #ececec29;
     &:last-child{
        border-bottom: none;
     }
    .media-img{
        width: 100%;
        height: 180px;
        border-radius: 8px;
        overflow: hidden;

        img{
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
    }

    h4{
        font-size: 22px;
        font-weight: 400;
        color: #fff;
        font-family: $secondaryFont;
        margin-bottom: 10px;
        @include text-ellips-3;
        line-height: 30px;
        &:hover{
           text-decoration: underline;
        }
    }

      h5{
        color: #dedede;
        font-size: 14px;
    }
}

.home-notice{
        padding: 30px 30px;
    h4{
        font-size: 22px;
        font-weight: 500;
        color: #333;
        font-family: $secondaryFont;
        margin-bottom: 10px;
        border-bottom: 1px dashed #71737944;
        padding-bottom: 10px;
    }
}

.home-notice-wrapper{
    margin-left: 17px;
    li{
        list-style:square;
        padding: 10px;
        background-color: #f2f2f2;
        margin-top: 10px;
        border-radius: 4px;
        &:hover{
            background-color: #e1e1e1;
        }
        a{
            font-size: 16px;
            font-weight: 400;
            color: #333;
            @include text-ellips-2 ;
            &:hover{
                text-decoration: underline;  
                padding-left: 10px;  
            }

        }

        .date{
            text-align: end;
            font-size: 13px;
            color: #666;
            margin-top: 5px;
        }
    }
}

.home-resource-content{
    h4{
        font-size: 52px;
        line-height: 62px;
        font-family: $secondaryFont;
        font-weight: 500;
        color: #333;
    }
    p{
        font-size: 18px;
        color: #555;
        margin-top: 15px;
        margin-bottom: 25px;
        line-height: 1.6;
    }
}

.home-resource-item{
    margin-bottom: 16px;
   .resource-img{
        max-height: 220px;
        width: 100%;
        img{
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 8px;
        }
    }
    .resource-text{
       h5{
         margin-bottom: 15px;
        font-size: 20px;
        font-weight: 500;
        color: #333;
        @include text-ellips-2 ;
        font-family: $secondaryFont;
         &:hover{
            text-decoration: underline;
         }
       }

       .resource-see{
        text-align: end;
        display: flex;
        align-items: center;
        color: $primaryColor;
        padding-top: 20px;
        &:hover{
            text-decoration: underline;
            padding-left: 10px;
        }
       }
    }
}