* {
    box-sizing: border-box;
}
body {margin:0;font-family:Arial; }

p { font-size: 1.1em; }

.header {
    font-size:48px;
    font-weight:normal;
    text-align:center;
    margin:0px;
    padding-top:12px;
}

.h3small {
    margin-top:6px;
    margin-bottom:6px;
}

.col-left {
box-sizing: border-box;
vertical-align:top;
width:15%;
display:inline-block;
padding:5px;
}
.col-right {
box-sizing: border-box;
vertical-align:top;
width:15%;
display:inline-block;

padding:5px;
}
.col-content {
box-sizing: border-box;
vertical-align:top;
width:68%;
display:inline-block;
margin-left:5px;
margin-right:5px;
}

.banner-big { width:100%; display:block; }
.banner-small { width:100%; display:none; }

.logo {
    height:128px;
    float:left;
    margin-left:6px;
    margin-top:0px;
    margin-right:14px;
}
.footer { text-align:center; margin-top:60px;font-size:12px; }

/* Create three equal columns that floats next to each other */
.column {
  box-sizing: border-box;
  float: left;
  width: 33.3%;
  padding: 10px;
  height:240px;
  overflow: scroll;
}

.col-image {
    float:left; margin-right:6px; height:52px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.news-item {
    margin-top:0px;
    margin-bottom:0px;
}
.showcase { width:100%; display:inline-block; padding:20px; vertical-align:top; }

@keyframes fadeInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.fadeInUp-animation {
  animation: 2s fadeInUp;
}


.topnav {
  margin-top:0px;
  background-color: #252f37; // #333;
  overflow: hidden;
}

.menu-first {
  margin-left:22px;
}
.menu-last {
  margin-right:22px;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 16px 14px;
  text-decoration: none;
  font-size: 22px;
}


/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

.nav-right /* Not working! */
{
  color:red;
  float: right;
}

/* Square Showcase  */
.sqrow {
  margin: 8px -10px;
}

/* Add padding BETWEEN each column (if you want) */
.sqrow,
.sqrow > .sqcolumn {
  box-sizing: border-box;
  padding: 0px;
}

/* Create four equal columns that floats next to each other */
.sqcolumn {
  float: left;
  width: 25%;
}

/* Clear floats after rows */
.sqrow:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.sqcontent {
  background-color: white;
  padding: 10px;
}

/* Add an active class to highlight the current page */
.active {
  background-color: #2279c8; // #35b4f6;
  color: white;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */

.dropdown .dropbtn {
  cursor:pointer;
  font-size: 22px;
  border: none;
  outline: none;
  color: white;
  padding: 16px 14px;
  font-family: inherit;
  margin: 0;
  background-color: inherit;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
  display: block;
}


    .app-icons
    {
        height:110px;
        display:inline-block;
        font-size:1em;
        margin:3px;
        cursor:pointer;
    }
    .app-icons-nolink
    {
        height:60px;
        display:inline-block;
        font-size:1em;
        margin:3px;
    }

    .app-icons:hover
    {
      background-color: LightBlue;
    }

.product-image{
    width: 20%;
    margin-right:10px;
    float:left;
}

.alink {
  background: linear-gradient( to bottom, #1899fc 0%, #1899fc 100% );
  background-position: 0 100%;
  background-repeat: repeat-x;
  background-size: 0px 0px;
  color: #000;
  text-decoration: none;
  transition: background-size .3s;
  font-size: 1.1em;
}

.alink:hover
{
  color:white;
  background-size: 12px 50px;
}
.alink_regular {
  color: #000;
  text-decoration: none;
}

.alink_regular:hover
{
  color: #000;
}

.button {
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button1 {
  background-color: white;
  color: black;
  border: 2px solid #04AA6D;
}

.button1:hover {
  background-color: #04AA6D;
  color: white;
}

.button2 {
  background-color: white;
  color: black;
  border: 2px solid #2279c8;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}
.buttongreen {
  background-color: white;
  color: black;
  border: 2px solid #2279c8;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button2:hover {
  background-color: #2279c8;
  color: white;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px)
{
.sqcolumn { width: 50%; }

}


/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }

  .topnav a.icon {
    float: right;
    display: block;
  }

  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }

.header {
    font-size:28px;
    font-weight:normal;
    height:64px;
    text-align:center;
    margin:0px;
    padding-top:2px;
}
.banner-big { width:100%; display:none; }
.banner-small { width:100%; display:block; }
.logo {
    height:66px;
    float:left;
    margin-left:6px;
    margin-top:0px;
    margin-right:14px;
}
.menu-first {
  margin-left:0px;
}
.col-left { display:block; width:100%; }
.col-right { display:block; width: 100%; }
.col-content { display:block; width:94%; }
.column { width: 100%; margin-bottom:10px; float:none; }
.showcase { width:100%; display:block;}

.sqcolumn { width: 100%; }
}

