.footer-section {
    min-height: 250px;
    max-height: 100%;
    background-image: url('/wp-content/themes/holtech/assets/images/footer.jpg');
    border-top: 5px solid transparent;
    border-image: linear-gradient(to left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
    border-image-slice: 1;
    padding-top: 50px;
    padding-bottom: 50px;
}
.footer-logo {
    width: 100%;
    max-width: 250px;
}
.footer-nav-title {
    margin-top: 25px;
    color: #898989;
    font-size: 22px;
}
.footer-nav-item {
    width: 100%;
    float: left;
    color: #626262;
}
.end-line {
    border-color: #d3d4d4; 
}
.end-text {
    color: #d3d4d4;
    font-size: 18px;
}
.up {
    transition: 0.3s;
    text-align: center;
    display: block;
    position: absolute;
    bottom: 25%;
    right: 15px;
    color: white;
    border: 2px solid white;
    padding: 15px;
    min-width: 100px;
}
.up:hover {
    transition: 0.3s;
    text-decoration: none;
    color: #1d2327;
}
.up>h2>i {
    font-size: 36px;
}
.up>h2 {
    position: relative;
	font-size: 24px;;
	font-weight: 600;
	transition: .3s ease-out;
    margin-bottom: 0;
    padding: 0;
}
.up-hover-animation:before {
    position: absolute; 
    left: 0;
    bottom: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: white;
    color: #1d2327;
    transform-origin: 0 bottom 0;
    transform: scaleY(0);
    transition: .3s ease-out;
    z-index: 0;
}
.up-hover-animation:hover:before {
    transform: scaleY(1);
}