﻿.tiles {
    margin: 0 -15px;
}

.landing-box-row {
    margin-top: 40px;
}

.landing-box-container {
    display: flex;
}

.landing-box {
    background: #00193c;
    color: #fff;
    font-family: "franklin-gothic-urw",sans-serif;
    font-size: 16px;
    transition: 0.4s all;
    margin-bottom: 30px;
    width: 100%;
}

div .landing-box a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
}

    div .landing-box a:focus {
        outline: none;
    }

    div .landing-box a:focus-visible {
        outline: 4px solid red;
    }

.landing-box a:hover, .landing-box a:focus {
    text-decoration: underline !important;
    color: #fff !important;
}

.image-wrap {
    display: block;
    width: 100%;
    overflow: hidden;
}

    .image-wrap img {
        width: 100%;
        -webkit-transition: all 0.8s ease;
        -moz-transition: all 0.8s ease;
        transition: all 0.8s ease;
    }

.landing-box img {
    width: 100%;
}

.box-text {
    display: block;
    padding: 7px 10px;
}

.landing-box:hover {
    background-color: #002e6f;
}

    .landing-box:hover img {
        transform: scale(1.1,1.1);
    }
.border {
    border-top: 5px solid!important;
}
@media (max-width: 768px) {
    .tiles {
        margin: 0;
    }
}