/*-----------------------------------------------------------------------------------

NOTICE

-----------------------------------------------------------------------------------*/

.the-window {
    width: 100%;
    /* background-color: #000; */
    padding: 0;
}

.the-window h2 {
    margin: 0px;
}

.the-window .container {
    height: 100%;
}

.notices li .notice-image {
    background-color: #ddd;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    background-position: right 100%;
    height: 220px;
    position: relative;
}
.notices .notice-image {
    overflow: hidden;
    position: relative;
}
.notices .notice-image::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0px;
    left: 0px;
    transition: opacity 0.3s;
    opacity: 0;
}
.notices li:hover .notice-image::after {
    opacity: 1;
}

.notices .head {
   background-color: #eb690b;
   border-radius: 0 10px 0 0;
   /* margin-top: 60px; */
   padding: 10px;
   display: inline-block;
   line-height: 1.2;
   position: absolute;
   bottom: 15%;
   left: 0px;
}
.notices li:nth-child(2) .head {
    bottom: 40%;
}
.notices li:nth-child(3) .head {
    bottom: 60%;
 }
 .notices li:nth-child(4) .head {
    bottom: 20%;
}
.notices .head h2 {
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-size: 120%;
    color: #fff;
    transition: 0.3s;
}
.notices .head p {
    margin: 0;
    padding: 0;
    font-size: 200%;
    font-weight: 200;
    color: #fff;
}
.notices li:hover .head h2 {
    color: #d9ffe1;
}
.notices .notice-text {
    margin: 5px 0 0 15px;
    color: #555;
}
.notices .notice-text h2 {
    font-size: 100%;
    font-weight: 400;
}
.notices .notice-text p {
    
}

@media (min-width: 500px) {
    .notices li .notice-image {
    height: 300px;
}
}

@media (min-width: 620px) {
    .notices li {
        width: 50%;
        float: left;
        margin-bottom: 5px;
	}
    .notices li .notice-image {
        height: 0px;
        padding-top: 80%;
	}
}

@media (min-width: 767px) {
    .the-window {
        padding: 0px !Important;
    }
    .the-window .inner {
         height: 340px;
    }
    .notices {
        overflow: hidden;
    }
    .notices li {
        width: 33.3333%;
        margin-bottom: 10px;
    }
    .notices li .notice-image {
    padding-top: 95.7%;
}
    .notices li:nth-child(1)  {
        width: 100%; 
    }
    .notices li:nth-child(1) .notice-image {
    padding-top: 31.8%;
}
    .notices li:nth-child(1) .notice-image .head h2 {
        font-size: 175%;
    }

}

@media (min-width: 1100px) {
    .notices li:nth-child(1)  {
        width: 100%; 
    }
    .notices li .notice-image,
    .notices li:nth-child(1) .notice-image {
        padding-top: 350px;
    }
    .notices li:nth-child(1) .notice-image .head h2 {
        font-size: 175%;
    }

}