*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}
html,body{
    font-family: 'Montserrat', sans-serif;
}
.wrapper{
    display: flex;
    width: calc(100% + 320px);
    height: 100vh;
    overflow: hidden;
}
.div{
    width: calc(25% + 320px);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:  center;
    transform: skew(-15deg);
    margin-left: -320px;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}
.div::after{
    overflow: hidden;
    transform: skew(15deg);
    transition: all .3s;
}
.div1{
    /* background-image: url(./1.jpg); */
    
}
.div1::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(./1.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform-origin: top;
    background-color: #9f9f9f;
    background-blend-mode: multiply;
    
}
/* .div1::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #293b96;
    background-blend-mode: multiply;
    z-index: 9;
} */
.div2{
    /* background-image: url(./2.jpg); */
    transform-origin:bottom;
}
.div2::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(./2.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform-origin: bottom;
    background-color: #9f9f9f;
    background-blend-mode: multiply;
}
.div3{
    /* background-image: url(./3.jpg); */
    transform-origin: bottom;
}
.div3::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(./4.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform-origin: bottom;
    background-color: #9f9f9f;
    background-blend-mode: multiply;
}
.div4{
    /* background-image: url(./4.jpg); */
    transform-origin:bottom;
}
.div4::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(./3.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform-origin:bottom;
    background-color: #9f9f9f;
    background-blend-mode: multiply;
}
.div:hover.div::after{
    background-blend-mode: unset;
}
.bottom{
    position: absolute;
    width: calc(100% - 189px);
    height: 169px;
    bottom: 0;
    z-index: 9;
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); 
  
}
.bottom img {
    position: absolute;
    top: 50%;
    left: calc(50% + 189px);
    transform: translate(-50%, -50%) skew(15deg);
    width: 22%;
    
}
.bottom2 img{
    left: calc(50% - 59px);
}
.bottom3, .bottom4{
    bottom: unset;
    top: 0;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); 
}

.bottom3 img{
    left: calc(50% - 60px);
}
.bottom4 img{
    left: calc(50% - 155px);
}
a.abs{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.top{
    font-weight: 700;
    color: white;
    font-size: 30px;
    z-index: 9;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%) skew(15deg);
    text-shadow: 0px 0px 2px rgba(181, 181, 181, 1);
    transition: all.3s;
}
.top2{
    left: 30%;
}
.top3{
    top: 50px;
    left: 40%;
    bottom: 50px;
}
.top4{
    top: 50px;
    left: 30%;
    bottom: 50px;
}
.dnone{
    opacity: 0;
}
.title{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width:1200px){
    .wrapper{
        width: 100%;
        flex-wrap: wrap;
    }
    .div{
        width: 100%;
        height: 25%;
        transform: unset;
        margin-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .div::after{
        width: 100%;
        transform: unset;
    }
    .bottom{
        width: 100%;
        background: unset;
        position: relative;
        left: unset;
        transform: unset;
        top: unset;
        bottom: unset!important;
        height: auto;
        display: flex;
        justify-content: center;
    }
    .bottom img {
        max-width: 120px;
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
        bottom: unset;
    }
    .top{
        position: relative;
        transform: unset;
        left: unset;
        top: unset;
        bottom: unset!important;
    }

}


