@charset "UTF-8";
/* CSS Document */

  @font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    }
    material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;  /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
    }
    .material-icons.md-18 { font-size: 18px; }
    .material-icons.md-24 { font-size: 24px; }
    .material-icons.md-36 { font-size: 36px; }
    .material-icons.md-48 { font-size: 48px; }
    /* Rules for using icons as black on a light background. */
    .material-icons.md-blue { color: #143f84; }
    .material-icons.md-light { color: rgba(255, 255, 255, 1); }
    .ehc-container {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line on smaller screens */
    }
    .ehc-column {
    flex: 1;
    margin: 10px;
    box-sizing: border-box;
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Added box-shadow transition */
    text-decoration: none; /* Remove default underline for links */
    color: inherit; /* Inherit the color from the parent element */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Added drop shadow */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the left */
    cursor:pointer;
    margin-bottom: 25px;
    background-color: #fff;
    }
    .ehc-text-white {
    color:#ffffff;
    }
    .ehc-blue-bg {
    background-color:#143f84;
    }
    .ehc-column:hover {
    background-color: #D7EDF5; /* Change the color on mouseover */
    }
    .ehc-column:active {
    text-decoration: none !important;
    }
    .ehc-column:link {
    text-decoration: none !important;
    }
    .ehc-column:visited {
    text-decoration: none !important;
    }
    .ehc-blue-bg:hover {
    background-color: #4475C5; /* Change the color on mouseover */
    }
    .ehc-blue-bg:active {
    text-decoration: none !important;
    }
    .ehc-blue-bg:link {
    text-decoration: none !important;
    }
    .ehc-blue-bg:visited {
    text-decoration: none !important;
    }
    .ehc-gray-box {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start; /* Align items to the left */
    justify-content: flex-start; /* Align items to the top */
    height: 100%;
    }
    .ehc-icon-container {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    margin-bottom: 10px; /* Add some spacing between the icon and the title */
    }
    .ehc-title {
    margin-top: 10px;
    font-size: 20px;
    font-family: "Noto Serif",Georgia,serif;
    text-decoration: none; /* Remove underline from text */
    text-align: left; /* Align title to the left */
    margin-left: 10px; /* Add margin to separate title from the icon */
    }
    .ehc-hr-line {
    width: 50px;
    height: 2px;
    background-color: #E3C84D;
    }
    .ehc-description {
    margin-top: 10px;
    text-align: left; /* Align description to the left */
    }
    @media only screen and (max-width: 1024px) {
    .ehc-column {
    flex: 100%; /* Full width on smaller screens */
    }
    }