.bannerArea .Img .innerImg{
    padding-top: 29%;
}

.bannerArea .TxtBox{
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}

.bannerArea .TxtBox h2{
    color: #d6a12e;
    font-weight: 100;
    font-size: 3rem;
    letter-spacing: 5px;
}

.bannerArea .TxtBox h3{
    color: #fff;
}

.processArea{
    background: #f8b62b;
    overflow: hidden;
    padding: 3% 0 10% 0;
    min-height: 50vh;
}

.processArea .item{
    margin-top: 3rem;
}

.processArea .item .date{
    color: #fff;
    border-bottom: 1px solid  #fff;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.processArea .item p{
    color: #fff;
    line-height: 1.5;
    font-size: 0.9rem;
}

.processArea .item .Img .innerImg{
    padding-top: 78%;
    overflow: hidden;
}

.processArea .item a:hover .Img .innerImg .image{
    transform: scale(1.1);
    transition: all 0.6s;
}

.processArea .item a:hover .Img::after{
    content: '';
    width: 100%;
    height: 100%;
    background: #00000081;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.6s;
}

.processArea .item a:hover .Img::before{
    content: '\F52A';
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 2rem;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 3;
}

.spinner {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-top-color: #f2a400;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 9999;
}

@keyframes spin {
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

.invisible {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}
.processArea .item:not(.invisible) {
    opacity: 1;
    pointer-events: auto;
}

.hidden {
    display: none;
}

@media (max-width:991px) {
    .bannerArea .Img .innerImg{
        padding-top: 69%;
    }

    .bannerArea .Img .innerImg .image{
        background-position: left 24% bottom;
    }

    .bannerArea .TxtBox h2{
        font-size: 1.7rem;
        letter-spacing: 2px;
    }

    .processArea{
        padding-bottom: 5rem;
        min-height: 65vh;
    }

    .processArea .item{
        margin-top: 4rem;
    }
}

@media (min-width: 1800px) {
    .container{
        max-width: 1600px !important;
    }   
}


