.aui {
            max-width: 100%;
            width: auto\9;
            height: auto;
            vertical-align: middle;
            border: 0;
            -ms-interpolation-mode: bicubic;
        }
    .system-grid-container {
        display: grid;
        grid-template-columns: 24% 24% 24% 24%;
        padding: 2% 1% 5% 1%;
        grid-gap: 20px 5px;
        justify-content: center;
    }
    .system-hub-container {
        background: #dfeded;
        width: auto;
        height: 100%;
        margin: 0 0 0 5%;
    }
    .system-hub-container-text {
        padding: 5% 5% 5% 5%;
    }
    .system-hub-content p {
        color: #5D5D5D;
        font-size: 15px;
        text-align: justify;
    }
    .system-hub-content h1 {
        color: #18425E;
        font-size: 19px;
        line-height: 1;
    }
    .system-hub-subtitle {
        color: #26749B;
        font-size: 16px;
    }
	.system-hub-image {
        text-align: center;
    }
    .system-hub-subtitle span {
        color: #26749B;
    }
    .system-grid-title-container h1 {
        color: #26749B;
        font-size: 45px;
        line-height: 1.2;
    }
    .system-grid-title-container span {
        font-family: 'Poppins-Regular';
    }
    .system-grid-title-container {
        text-align: center;
        padding: 0 0 0 0;
    }
    #fixmenu{
        width: 100%;
        position:fixed;
        top:0;
        background:#33475b;
        display:none;
        z-index: 999;
}
        
.menu-fixed{
        padding:4px 0 5px 0;
        list-style-type:none;
}

.menu-fixed li{ display:inline; }

.menu-fixed a{
        ont-size:0.9em;
        color:#fff; 
        text-shadow:1px 1px #5E8BC5;
        padding:0 0 0 10px;
}
    @media (min-width: 320px) and (max-width: 425px) {
        .system-grid-title-container h1 {
            font-size: 25px;
        }
        .system-hub-container {
            margin: 0;
        }
        .system-grid-container {
            display: grid;
            grid-template-columns: auto auto;
            padding: 0;
        }
        .system-hub-container-text {
            padding: 0;
        }
        
    }
    @media (min-width: 426px) and (max-width: 768px) {
        .system-grid-container {
            grid-template-columns: auto auto auto;
        }
    

    
    }

body {
  font-family: Arial, sans-serif;
  background-size: cover;
  height: 100vh;
}

h1 {
  text-align: center;
  font-family: Tahoma, Arial, sans-serif;
  color: #06D85F;
  margin: 80px 0;
}

.box {
  width: 40%;
  margin: 0 auto;
  background: rgba(255,255,255,0.2);
  padding: 35px;
  border: 2px solid #fff;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;
}

.button {
  font-size: 1em;
  padding: 10px;
  color: #fff;
  border: 2px solid #06D85F;
  border-radius: 20px/50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.button:hover {
  background: #06D85F;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}

.container-enlarge {
    display: inline-block;
    position: relative;
    margin: 15px;
}
.container-enlarge > img {
    height: auto;
    max-width: 100%;
    width: 100%;
    border-radius: 5px;
}
.container-enlarge span {
    position: absolute;
    top: -9999em;
    left: -9999em;
}
.container-enlarge:hover span {
    top: -320px;
    left: -675px;
    width: 300px;
}
* {box-sizing: border-box;}
        body {font-family: Verdana, sans-serif;}
        .mySlides .mySlides2 .mySlides3 .mySlides4 .mySlides5 .mySlides6 .mySlides7 .mySlides8{display: none;}
        img {vertical-align: middle;}
        
        /* Slideshow container */
        .slideshow-container{
        max-width: 1280;
        position: relative;
        margin: auto;
        }
        
        .active {
        background-color: #717171;
        }
        
        /* Fading animation */
        .fade {
        -webkit-animation-name: fade;
        -webkit-animation-duration: 2s;
        animation-name: fade;
        animation-duration: 2s;
        }
        
        @-webkit-keyframes fade {
        from {opacity: .4} 
        to {opacity: 1}
        }
        
        @keyframes fade {
        from {opacity: .4} 
        to {opacity: 1}
        }
        
        /* On smaller screens, decrease text size */
        @media only screen and (max-width: 300px) {
        .text {font-size: 11px}
        }