
body {
    margin: 0;
    padding: 0;
    background-color: coral;
    font-family: "Inter", sans-serif;
    }
    
.container {
    width: 90vw;
    margin:0 auto;
}

/* Typography */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

H1 {
    font-size: 3.7vw;
    font-family: "Inter", sans-serif;
}


/* Navigation */
.navbar {
    background-color: #333;
    overflow: hidden;
    padding:1px;
    position: fixed;
    top: 0;
    width: 90vw;

}

.navbar a {
    float: right;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 1.5vw 1.5vw;
    text-decoration: none;
    font-size: 2vw;
}

.navbar a:hover {
    background: #ddd;
    color: black;
}

/* End Navigation */

/* Content Boxes */
.main {
    background-color: white;
    padding-left: 0.5em;
    padding-top: 2em;
 
}

.about {
    background-color: #cfcabe;
    padding: 1em;

}
.services {
    background-color: #b5bdbc;
    padding: 1em;

}

.clients {
    background-color: #ffff;
    padding: 1em;

}

.clients img {
    width:12vw;
}

.contact {
    background-color:#EDEEE9;
    min-height: 90vh;
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.footer {
    background-color: black;
    color: white;
    padding: 1em;
}

.footer a {
    color: #F0E53E;
    text-decoration:none;
}

/* Actual In Container Content */
.content {
    width: 80vw;
    margin: auto;
    font-size: 2vw;
    padding: 0vw;
    display: block;
    margin-bottom: 1vw;
    line-height: 1.8;
}

.content img {
    width: 24vw;
    object-fit: contain;
    margin: 5vw;
    border-radius: 15%;
}

/*  Grid for About and Services */

.content_grid {
    display: flex;
    flex-wrap: wrap;
}
.contentcolumn {
    flex: 0 0 50%; /* Take up 8.33% of the grid (12 columns) */
    text-align: left;
    
}


/* Grid for Clients Images */
.clientgrid {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    width: 65vw;
   
}
.clientcolumn {
    flex: 0 0 33.3%; /* Take up 8.33% of the grid (12 columns) */
    padding-bottom:1em;
    justify-content: center;
}

.clientcolumn img {
    max-height: 17vh;
}

/* Grid for Footer */
.left_align_text {
    text-align: left;
}

.right_align_text {
    text-align: right;
    display:block;
}

/* Contact */
/* Fancy form code from https://codepen.io/ */

.contact_container {
    margin: auto;
    margin-top: 4vh;
    margin-bottom: 2vh;
    background-color: #D8DBCE;
    width: 60vw;
    padding: 4vw;
    font-size: 2vw;
    line-height: 1.8;
}

form {
    width: 100%;
    padding: 5vw;
  }
  
.form-input {
    height: 3.8vw;
    padding: 0 1vw;
    border: 1px solid ; /* Basic border styling */
    border-radius: 1px 1px 2px 2px;
    margin: 0 auto 0 auto;
    transition: all 500ms; /* This is used to animate the border later */
  }
  
  /* By default, an outline appears around form fields when they're in focus.
  This disables outlines when form fields are in focus. */
  /* Also, it makes the top border disappear when the field in focus. */
  .form-input:focus {
    outline: none;
  }

  .multi_line {
    width:40vw;
    height: 3.8vw;

  }
  
  /* Note: I'm using rems here with a base of 10px. 
  So this means 1.4rem is 14px. */
  .form-label {
    font-size: 1em;
    color: rgb(117, 117, 117);
    display: block;
    /* Moves the label on TOP of the placeholder */
    /* You'll need to change this as needed */
    transform: translate(0.9vmin,-3.3vmin);
    transform-origin: 0 0; /* Used later for transitions */
    transition: all 500ms;
    
    /* Prevents users from highlighting the label. */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    
    /* THIS PART IS IMPORTANT! */
    /* This line prevents the label from being selected.*/
    /* This is crucial because if we want to select the form field,
       we want to click THROUGH the label. */
    pointer-events: none; 
  }
  
  /* THIS PART IS ALSO IMPORTANT!! */
  /* The block below hides the placeholder entirely. */
  /* For all intents and purposes, the placeholder no longer exists. */
  /* What shows on the input field is only the label*. */
  /* HOWEVER, the input fields still recognizes that the placeholder exists!*/
  /* The placeholder is just invisible. We need the placeholder to exist for some weird CSS stuff. If we skip this step, we can't make this CSS-only. */
  .form-input::placeholder {
    display: none;
    color: transparent;
    
  /* Prevents users from highlighting the placeholder. */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }
  
  /* How to read this: */
  /* When the input field (.form-input) is in focus, 
     STYLE the .form-label accordingly */
  /* ALSO, if the placeholder is NOT shown,
     STYLE the .form-label accordingly */
  
  /* Basically, if there's text inside the input field,
     by default, the placeholder should disappear.
     When this happens, the label translates ABOVE the input field and scales down. */
  
  .form-input:focus + .form-label,
  .form-input:not(:placeholder-shown) + .form-label {
    transform: translateY(-4rem) scale(0.8);
  }
  
  /* When the placeholder is NOT shown,
     STYLE the top border accordingly. */
  /* This makes the top border fade-out to grey when the placeholder disappears. */
  .form-input:not(:placeholder-shown) {
    border-top-color: rgba(0, 0, 0, 0.5);
  }

button {
    width: 10vw;
    height: 2.8vw;
    border: none;
    outline: none;
    background: #84894A;
    color: #fff;
    font-size: 1em;
    border-radius: 1vw;
    text-align: center;
    box-shadow: 0 6px 20px -5px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}  
