.image-parent {
    max-width: 40px;
}

.anavbar {
    overflow: hidden;
    background-color: #0202a3;
    font-family: inherit;
}

/* Links inside the navbar */
.anavbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 8px 10px;
    text-decoration: none;
}

/* The dropdown container */
.adropdown {
    float: left;
    overflow: hidden;
}

/* Dropdown button */
.adropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 8px 10px;
    background-color: inherit;
    font: inherit;
    /* Important for vertical align on mobile phones */
    margin: 0;
    /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.anavbar a:hover,
.adropdown:hover .dropbtn {
    background-color: #000;
}

/* Dropdown content (hidden by default) */
.adropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 100%;
    left: 0;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10000;
}

/* Mega Menu header, if needed */
.adropdown-content .header {
    background: red;
    padding: 16px;
    color: white;
}

/* Show the dropdown menu on hover */
.adropdown:hover .adropdown-content {
    display: block;
}

/* Create three equal columns that floats next to each other */
.column {
    float: left;
    width: 25%;
    padding: 10px;
    /*background: url('/assets/img/bg.png') azure;
    background-size:250% auto;*/
}

/* Style links inside the columns */
.column a {
    float: none;
    color: black;
    text-decoration: none;
    display: block;
    text-align: left;
    padding: 0;
}

/* Add a background color on hover */
.column a:hover {
    background-color: #ddd;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
@media screen and (max-width: 600px) {
    .column {
        width: 100%;
        height: auto;
    }
}