/**
 * Add styling for 404 page here
 */

.imgbtns-404,
.links-404{
    display: block;
    position: relative;
}

.imgbtns-404{
    margin-bottom: 30px;
}


.bg-light-blue{
    background-color: #F4FBFF;
}

.bg-white{
    background-color: #fff;
}

.bg-light-blue + .bg-light-blue{
    padding-top: 0;    
}

.search-404{
    margin-bottom: 30px;
}

.contact-404{
    text-align: center;
}


.imgbtns-404 h2{
    font-size: 30px;

}

.link_title h3{
    font-size: 23px;
    padding: 15px 0;
}

.search-404 h4,
.contact-404 h4{
    font-size: 25px;
    padding-bottom: 15px;
}

.image-button-404{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #E4F4FE;
    transition: all 300ms ease-in-out;
    margin-bottom: 30px;
}

.image-button-404:hover{
    background-color: var(--color-dark-blue);    
}


.image-button-404 .link_title h3{
    font-size: 25px;
    padding: 15px 0;
    transition: all 300ms ease-in-out;
}

.image-button-404:hover .link_title h3{
    color: white;
}

.image-button-404 .link-image{
    width: 100%;    
    position: relative;
    height: 300px;
    overflow: hidden;
}

.image-button-404 .link-image img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 300ms ease-in-out;
}



.image-button-404:hover .link-image img{
    transform: scale(1.2);
}




@media (min-width: 768px) {

    .imgbtns-404{
        margin-bottom: 0;
    }



   
    
}

@media (min-width: 1025px) {
   

    .imgbtns-404 h2{
        font-size: 35px;

    }

    .link_title h3{
        font-size: 25px;
        padding: 15px 0;
    }

    .search-404 h4,
    .contact-404 h4{
        font-size: 28px;
        padding-bottom: 15px;
    }

    .image-button-404{
        margin-bottom: 0;
    }
    
    
}

