



/* Column container */
.row1 {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  text-align:left;
  color:white;
}


/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.sider {
  -ms-flex: 0%; /* IE10 */
  flex: 60%;
  background-color: white;
  padding: 20px;
}

.sider a {text-decoration:none;color:green;}
.about a {text-decoration:none;color:green;}

/* Main column */
.mainl {   
  -ms-flex: 50%; /* IE10 */
  flex: 40%;
  background-color: white;
  padding: 20px;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side1 {
  -ms-flex: 0%; /* IE10 */
  flex: 50%;
  background-color: green;
  padding: 20px;
}

/* Main column */
.main1 {   
  -ms-flex: 50%; /* IE10 */
  flex: 50%;
  background-color: green;
  padding: 20px;
}

.rowfooter {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  text-align:left;
  color:white;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.rightfooter {
  -ms-flex: 0%; /* IE10 */
  flex: 35%;
  background-color: black;
  padding: 20px;
}

/* Main column */
.leftfooter {   
  -ms-flex: 50%; /* IE10 */
  flex: 30%;
  background-color: black;
  padding: 20px;
  text-align:center;
}

/* Main column */
.middlefooter {   
  -ms-flex: 50%; /* IE10 */
  flex: 35%;
  background-color: black;
  padding: 20px;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row1 {   
    flex-direction: column;
  }
  
  .rowfooter {   
    flex-direction: column;
  }
  
  .container {
  padding: 0 16px;
  height:auto;
}
.rightfooter {
  text-align: center;
}
.middlefooter {
  background-color: green;
}
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }
  
}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

ul.no-bullets {
  list-style-type: none;
  margin: 0;
  padding: 0;
}


ul.no-bullets1 {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.column {
  float: left;
  width: 33.3%;
  margin-bottom: 16px;
  padding: 0 8px;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 8px;
}

.about-section {
  padding: 50px;
  text-align: center;
  background-color: #474e5d;
  color: white;
}



.container {
  padding: 0 16px;
  height:auto;
}

.container::after, .row::after {
  content: "";
  clear: both;
  display: table;
}

.title {
  color: grey;
}

.button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
}

.button:hover {
  background-color: #555;
}

.button1 {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #000;
  text-align: center;
  float:center;
  cursor: pointer;
  width: 50%;
}

.button1:hover {
  background-color: #555;
}

@media screen and (max-width: 650px) {
  .column {
    width: 100%;
    display: block;
  }
}

.partnerlogo {width:100px;}

.row1 a {
  text-decoration: none;
  color:white;
}

.row1 a:visited {
  text-decoration: none;
}

.row1 a:hover {
  text-decoration: underline;
  color:red;
}

.row1 a:active {
text-decoration: underline;}

.rowfooter a {
  text-decoration: none;
  color:white;
}

.rowfooter a:visited {
  text-decoration: none;
}

.rowfooter a:hover {
  text-decoration: underline;
  color:red;
}

.rowfooter a:active {
text-decoration: underline;}

#log {margin-left:10px;margin-top:10px;}
body {margin:0;font-family:Arial}

.topnav {
  overflow: hidden;
  background-color: green;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
.active {
  background-color: green;
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.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;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .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;
  }
}