@charset "UTF-8";

/* Global Styles */
* {
    box-sizing: border-box;
}

article, aside, footer, header, main, nav, section {
    display: block;
}

/* Body Structure */
body {
    margin: 0;
    padding: 0;
    font-family: Verdana, sans-serif;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', 'Roboto Condensed', Helvetica, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 4px;
}

h1 {
    font-size: 40px;
}

/* Header */
header {
    text-align: left;
}

/* Navigation */
.logo {
  padding: 10px;
}

.topnav {
    background-color: #000;
    overflow: hidden;    
}

.topnav a {
    float: left;
    display: block;
    color: #fff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.current {
    background-color: #25aae1;
    color: #f2f2f2;
}

.topnav .icon {
    display: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 17px;
    border: none;
    outline: none;
    color: #fff;
    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: #000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
    background-color: #555;
    color: #25aae1;
}

.dropdown-content a:hover {
    background-color: #ddd;
    color: #000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Page Structure */
.content {
    max-width: 800px;
    padding: 64px 16px;
    margin: auto;
    display: block;
    box-sizing: inherit;
}

/* Intro Section */
#intro {
    margin-top: 64px;
    margin-bottom: 64px;
}

#intro p {
    width: 60%;
    margin: auto;
}

/* Service Section */
#services {
    background-color: #25aae1;
    padding: 64px 16px;
    
    box-sizing: inherit;
}

.services {
    width: 80%;
    margin: auto;
    padding: 32px 0px;
    display: flex;
    flex-direction: row;
}

.service {
    border: 2px solid #000;
    margin: 10px;
    padding: 10px;
}

.service-icon {
    font-size: 50px;
}

/* Stats */
/* Float four columns side by side */
#stats {
    padding: 64px 16px;
}

.stats {
    float: left;
    width: 25%;
    padding: 0 5px;
}

.stats-container {
    margin: 30px -5px;
}

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

/* Style the counter cards */
.stats-card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 16px;
    text-align: center;
    background-color: #444;
    color: white;
}

.stat-icon {font-size:50px;}

/* Footer */
footer {
    background-color: #f1f1f1;
    color: #000;
    padding: 64px;
    font-size: 20px;
    opacity: 0.60;
}

/* Team Page */
/* Style Team Section */
.mission {
    width: 80%;
    margin: auto;
 }

.values {
	margin-top: 50px;
}

/* Style Contact Cards */
.team-content {
  max-width: 90%;
  display: flex;
  flex-direction: row;
  padding: 50px 16px;
  margin: auto;
}

.team {
  flex: 1 1 100%;
}

.team-card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 8px;
}

.team-container {
  padding: 16px;
}

.title {
  color: grey;
}

.team-button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
}

.team-button:hover {
  background-color: #555;
}

/* Portfolio Page */
#portfolio {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}
        
.row {
  margin: 8px -16px;
}

/* Add padding BETWEEN each column (if you want) */
.row,
.row > .column {
  padding: 8px;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  display: none; /* Hide columns by default */
}

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

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

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: white;
  cursor: pointer;
}

/* Add a grey background color on mouse-over */
.btn:hover {
  background-color: #ddd;
}

/* Add a dark background color to the active button */
.btn.active {
  background-color: #666;
   color: white;
}


/* Contact Section */
.wireframes {
    display: block;
    margin: 50px auto;
    max-width: 50%;
}

/* Login Section */
section.login {
  margin-top: 30px;
}

.login h2 {
    text-align: center;
  }

.formone {border: 3px solid #f1f1f1;
    width: 60%;
    margin: auto;    
}

input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  box-sizing: border-box;
}

.buttonone {
  background-color: #000;
  color: white;
  padding: 14px 20px;
  margin: 20px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

.buttonone:hover {
  opacity: 0.8;
}

.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

.containerone {
  padding: 16px;
}

span.psw {
  float: right;
  padding-top: 16px;
}

/* Team/Client Area */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  width: 60%;
  margin: 10px auto;
  padding: 18px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

active, .accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel a {
	display: block;
	
}

.panel p {
	font-weight: bold;
}

/* Privacy Form */
#privacy {
    padding: 10px;
}

/* Media Queries */
/* for 900px or less */
@media screen and (max-width: 900px) {
  
  .column {
    width: 50%;
    display: block;
  }
  .team {
		width: 90%;
	}
}

@media screen and (max-width: 600px) {
    .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
    .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;
    }
    .info {
        width: 100%;
    }
    .stats {
        width: 100%;
        display: block;
        padding: 5px;
    }
    .services {
        flex-direction: column;
        width: 100%;
    }
	.team-content {
		flex-direction: column;
	}
 }

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
     display: block;
     float: none;
  }
  .cancelbtn {
     width: 100%;
  }
}

