.explore-block{
    display: flex;
    padding: 110px 0 80px;
}
.explore-sections{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 315px;
    width: 100%;
}
.explore-sections .explore-box{
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    width: 25%;
    position: relative;
    background-position: center;
    height: 100%;
    background-size: cover;
    cursor: pointer;
}
.explore-sections .explore-box:hover {
    width: 40%;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.explore-sections .explore-box:after{
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, #254D59 0%, rgba(217, 217, 217, 0) 100%);
    mix-blend-mode: multiply;
    transform: rotate(-180deg);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.explore-block .text-box{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    overflow: hidden;
    padding: 30px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.explore-block .text-box .overlay{
    width: 63px;
    height: 3px;
    margin-bottom: 14px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.explore-block .text-box:hover .overlay{
    width: 100%;
    height: 100%;
    opacity: 0.9;
    position: absolute;
    margin-bottom: 0px;
    z-index: -1;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.explore-block .text-box:hover{
    justify-content: center;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.explore-block .hidden-box{
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transform: translateY(100%);
}
.explore-sections .explore-box:hover .hidden-box{
    margin-top: 10px;
    height:auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.explore-block .text-box .title{
    font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 5px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.explore-block .text-box .years{
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;

}
.explore-block .hidden-box .text{
    font-weight: 400;
    font-size: 17px;
    line-height: 29px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 40px;

}
.explore-block .hidden-box .explore-button{
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    align-items: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.explore-block .hidden-box .explore-button:after{
    content: "";
    display: inline-block;
    font-family: "fontello";
    font-weight: 400;
 content: '\e80b';
    margin-left: 12px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.explore-block .hidden-box .explore-button:hover:after{
    margin-left: 32px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

@media only screen and (max-width: 1024px) {
    .explore-block{
        flex-direction: column;
        padding:0 0 5vh;
    }


    .explore-block .sque-box{
        display: none;
    }
    .explore-sections{
        flex-direction: column;
        height: auto;
    }
    .explore-sections .explore-box{
        width: 100%;
        margin-top: 10px;
    }
    .explore-sections .explore-box:before{
        content: "";
        display: block;
        background: #1A1B1F;
        opacity: 0.55;
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 0;
        top: 0;
        left: 0;
    }
    .explore-block .text-box{
        min-height: 140px;
    }
    .explore-block .text-box:hover .hidden-box{
        display: none;
    }
    .explore-sections .explore-box:hover {
        width: 100%;
    }
    .explore-block .text-box:hover .overlay{
        width: 63px;
        height: 3px;
        margin-bottom: 14px;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        position: inherit;
    }
}