body {
    color: #fff;
    background-color: #e8e8e8;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    
}
h1,h2,h3,h4,h5{
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}
.content {
    max-width: 1200px;
    margin: auto;
}

header {
    width: 100%;
    height: 50px;
    background-color: #000;
    position: fixed;
    z-index: 100;
    top:0px;
}
.logo {
    width: 150px;
    height: 50px;
    background-image: url("./logo.png");
    background-size: contain;
    background-position: 0% 50%;
    background-repeat: no-repeat;
    float: left;
}
#intro {
    transition: opacity 1s ease-in-out;
}

#hero {
    position: relative;
    height: calc(100vh - 50px);
    width: 100%;
    font-size: 2em;
    overflow:hidden;
    margin-top: 50px;
}
#hero h1{
    margin-bottom: 20px;
}

.hero-inner {
    padding-top: 100px;
    overflow-x: hidden;
    overflow-y: auto;
    height: calc(100vh - 70px);
    padding: 10px;
}
#hero_background {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 100%;
    z-index: -10;
}

.alt {
    color:#000;
}
.section_block {
    padding: 100px 0px;
    line-height: 1.5em;
}

.row {
    display: flex;
}
.three-columns > * {
    width:calc(100% / 3);
    padding-top: 1rem;
}
.smaller {
    font-size: 0.8em;
    padding-top: 20px;
}
.chat_box {
    background: transparent;
    border: 0;
    color: #fff;
}

#chat_results {
    font-size: 0.75em;
    margin-top: 20px;
}

#text_input {
    position: fixed;
    left: -10000px;
}

.button {
    border: 1px solid #fff;
    border-radius: 20px;
    display: inline-block;
    padding: 5px 20px;
    color: #fff;
    text-decoration: none;
}
.button:visited {
    color: #fff;
}
.projectDetails .button{
    font-size: 18px;
    margin-top: 10px;
    margin-right: 10px;
}
header .button {
    float: right;
    margin-top: 8px;
}

.userchat {
    margin-bottom: 20px;
    margin-top: 20px;
}
.projectDetails {
    margin: 20px 0 20px 0;

    border-radius: 20px;
    background-color: #333;
}
.client {
    background-size: contain;
    width: 25%;
    height: 100%;
    float: left;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}


.casehero {
    height: 150px;
    width: 100%;
    background-size: cover;
    background-position: 50% 50%;
    border-radius: 20px 20px 0px 0px;
}
.caseinner {
    padding: 20px;
}

.fade-in {
    animation: fadeIn 1s;
    -webkit-animation: fadeIn 1s;
    -moz-animation: fadeIn 1s;
    -o-animation: fadeIn 1s;
    -ms-animation: fadeIn 1s;
  }
  
  .client_card {
    height: 200px;
    border-radius: 20px;
    margin: 10px; 
    padding: 20px;
    width: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
  }
  .client_card img {
    max-width: 200px;
  }
  .client_list {
    display: flex;
    flex-wrap: wrap;
  }


  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  @-moz-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  @-webkit-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  @-o-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  @-ms-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

@media only screen and (max-width: 1200px) {
    .content {
      padding: 0px 20px;
    }
    
}

@media only screen and (max-width: 700px) {
    .content {
      font-size: 0.70em
    }
    .client_card {
        height: calc(50vw - 50px);
        width: calc(50vw - 50px);
    }
}