@charset "UTF-8";

/* ======================== RESET ========================= */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  font-family: "TTSupermolotNeue-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }


/* ======================== VARIABLES ========================= */

:root {
   --blue-gray: rgba(73, 83, 86, 1);
   --blue-gray-70: rgba(73, 83, 86, .7);
   --blue-dark: rgba(53, 81, 102, 1);
   --blue-darker: rgba(2, 30, 51, 1);
   --blue-dark-70: rgba(53, 81, 102, .7);
   --blue-mid: rgba(0, 138, 177, 1);
   --blue-mid-70: rgba(0, 138, 177, .7);
   --blue-light: rgba(212, 231, 239, 1);
   --yellow: rgba(255, 207, 83, 1);
   --white: rgba(255, 255, 255, 1);
   
   --font-size-90: 90%;
   --font-size-80: 80%;
  
   --regular: "TTSupermolotNeue-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
   --italic: "TTSupermolotNeue-Italic", "Helvetica Neue", Helvetica, Arial, sans-serif;
   --bold: "TTSupermolotNeue-Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
   --bold-italic: "TTSupermolotNeue-BoldItalic", "Helvetica Neue", Helvetica, Arial, sans-serif; 
   --expanded:  "TTSupermolotNeue-ExpRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
   --expanded-black: "TTSupermolotNeue-ExpBlack", "Helvetica Neue", Helvetica, Arial, sans-serif;

}



/* =========================== BASE ============================= */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "TTSupermolotNeue-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  color: var(--blue-dark);
  line-height: 150%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%; }

body {
  box-sizing: border-box;
  height: 100vh;
  position: relative; }

.regular {
  font-family: var(--regular); }

.bold-italic {
  font-family: var(--bold-italic); }

.expanded {
  font-family: var(--expanded); }

.expanded-black {
  font-family: var(--expanded-black); }

em {
  font-family: var(--italic); }

strong {
  font-family: var(--bold); }

h1 {
  font-size: 2.4em;
  font-family: var(--bold);
  line-height: 130%; }

h1.smaller {
  font-size: 2.1em; }

h2 {
  font-size: 2em;
  font-family: var(--bold);
  line-height: 130%; }

h2.smaller {
  font-size: 1.7em; }

h3 {
  font-size: 1.5em;
  font-family: var(--bold);
  line-height: 130%; }


p, li, time {
  font-family: var(--regular);
  font-size: 1.1em;
  line-height: 150%;
  padding-bottom: 12px;}

a:link {
  border-bottom: 1px dashed rgba(0, 138, 177, 1);
  color: var(--blue-mid);
  line-height: 150%;
  text-decoration: none; }
a:visited {
  border-bottom: 1px dashed var(--blue-mid-70);
  color: var(--blue-mid-70); }
a:hover {
  border-bottom: 1px dashed rgba(73, 83, 86, 1);
  color: var(--blue-gray); }
a img:hover {
  opacity: 50%;
}

/*=========================== RESUSABLE CLASSES ======================== */

.blue-gray-color {
  color: var(--blue-gray) !important; }

.blue-gray-bg {
  background-color: var(--blue-gray) !important; }

.blue-dark-color {
  color: var(--blue-dark) !important; }

.blue-dark-bg {
  background-color: var(--blue-dark) !important; }

.blue-mid-color {
  color: var(--blue-mid) !important; }

.blue-mid-bg {
  background-color: var(--blue-mid) !important; }

.blue-light-color {
  color: var(--blue-light) !important; }

.blue-light-bg {
  background-color: var(--blue-light) !important; }

.yellow-color {
  color: var(--yellow) !important; }

.yellow-bg {
  background-color: var(--yellow) !important; }

.white-color {
  color: var(--white) !important; }

.white-bg {
  background-color: var(--white) !important; }

.font-size-90 {
   font-size: var(--font-size-90);
}
.font-size-80 {
   font-size: var(--font-size-80);
}

.width-25 {
  width: calc(25 * 1%); }

.width-33 {
  width: calc(33 * 1%); }

.width-40 {
  width: calc(40 * 1%); }

.width-45 {
  width: calc(45 * 1%); }

.width-46 {
  width: calc(46 * 1%); }

.width-47 {
  width: calc(47 * 1%); }

.width-48 {
  width: calc(48 * 1%); }

.width-49 {
  width: calc(49 * 1%); }

.width-50 {
  width: calc(50 * 1%); }

.width-60 {
  width: calc(60 * 1%); }

.width-61 {
  width: calc(61 * 1%); }

.width-62 {
  width: calc(62 * 1%); }

.width-63 {
  width: calc(63 * 1%); }

.width-64 {
  width: calc(64 * 1%); }

.width-65 {
  width: calc(65 * 1%); }

.width-66 {
  width: calc(66 * 1%); }

.width-67 {
  width: calc(67 * 1%); }

.width-68 {
  width: calc(68 * 1%); }

.width-69 {
  width: calc(69 * 1%); }

.width-72 {
  width: calc(72 * 1%); }

.width-73 {
  width: calc(73 * 1%); }

.width-74 {
  width: calc(74 * 1%); }

.width-75 {
  width: calc(75 * 1%); }

.width-76 {
  width: calc(76 * 1%); }

.width-77 {
  width: calc(77 * 1%); }

.width-78 {
  width: calc(78 * 1%); }

.width-79 {
  width: calc(79 * 1%); }

.width-100 {
  width: calc(100 * 1%); }

.padding-5 {
  padding: 5px; }

.padding-10 {
  padding: 10px; }

.padding-15 {
  padding: 15px; }

.padding-20 {
  padding: 20px; }

.padding-25 {
  padding: 25px; }

.padding-30 {
  padding: 30px; }

.padding-35 {
  padding: 35px; }

.padding-40 {
  padding: 40px; }

.padding-45 {
  padding: 45px; }

.padding-50 {
  padding: 50px; }

.padding-100 {
  padding: 100px; }

.padding-bottom-5 {
  padding-bottom: 5px; }

.padding-bottom-10 {
  padding-bottom: 10px; }

.padding-bottom-15 {
  padding-bottom: 15px; }

.padding-bottom-20 {
  padding-bottom: 20px; }

.padding-bottom-25 {
  padding-bottom: 25px; }

.padding-bottom-30 {
  padding-bottom: 30px; }

.padding-bottom-35 {
  padding-bottom: 35px; }

.padding-bottom-40 {
  padding-bottom: 40px; }

.padding-bottom-45 {
  padding-bottom: 45px; }

.padding-bottom-50 {
  padding-bottom: 50px; }


.padding-left-5 {
  padding-left: 5px; }

.padding-left-10 {
  padding-left: 10px; }

.padding-left-15 {
  padding-left: 15px; }

.padding-left-20 {
  padding-left: 20px; }

.padding-left-25 {
  padding-left: 25px; }

.padding-left-30 {
  padding-left: 30px; }

.padding-left-35 {
  padding-left: 35px; }

.padding-left-40 {
  padding-left: 40px; }

.padding-left-45 {
  padding-left: 45px; }

.padding-left-50 {
  padding-left: 50px; }

.padding-right-5 {
  padding-right: 5px; }

.padding-right-10 {
  padding-right: 10px; }

.padding-right-15 {
  padding-right: 15px; }

.padding-right-20 {
  padding-right: 20px; }

.padding-right-25 {
  padding-right: 25px; }

.padding-right-30 {
  padding-right: 30px; }

.padding-right-35 {
  padding-right: 35px; }

.padding-right-40 {
  padding-right: 40px; }

.padding-right-45 {
  padding-right: 45px; }

.padding-right-50 {
  padding-right: 50px; }

.padding-top-5 {
  padding-top: 5px; }

.padding-top-10 {
  padding-top: 10px; }

.padding-top-15 {
  padding-top: 15px; }

.padding-top-20 {
  padding-top: 20px; }

.padding-top-25 {
  padding-top: 25px; }

.padding-top-30 {
  padding-top: 30px; }

.padding-top-35 {
  padding-top: 35px; }

.padding-top-40 {
  padding-top: 40px; }

.padding-top-45 {
  padding-top: 45px; }

.padding-top-50 {
  padding-top: 50px; }

.margin-5 {
  margin: 5px; }

.margin-10 {
  margin: 10px; }

.margin-15 {
  margin: 15px; }

.margin-20 {
  margin: 20px; }

.margin-25 {
  margin: 25px; }

.margin-30 {
  margin: 30px; }

.margin-35 {
  margin: 35px; }

.margin-40 {
  margin: 40px; }

.margin-45 {
  margin: 45px; }

.margin-50 {
  margin: 50px; }

.margin-bottom-5 {
  margin-bottom: 5px; }

.margin-bottom-10 {
  margin-bottom: 10px; }

.margin-bottom-15 {
  margin-bottom: 15px; }

.margin-bottom-20 {
  margin-bottom: 20px; }

.margin-bottom-25 {
  margin-bottom: 25px; }

.margin-bottom-30 {
  margin-bottom: 30px; }


.margin-bottom-35 {
  margin-bottom: 35px; }

.margin-bottom-40 {
  margin-bottom: 40px; }

.margin-bottom-45 {
  margin-bottom: 45px; }

.margin-bottom-50 {
  margin-bottom: 50px; }

.margin-left-5 {
  margin-left: 5px; }

.margin-left-10 {
  margin-left: 10px; }

.margin-left-15 {
  margin-left: 15px; }

.margin-left-20 {
  margin-left: 20px; }

.margin-left-25 {
  margin-left: 25px; }

.margin-left-30 {
  margin-left: 30px; }

.margin-left-35 {
  margin-left: 35px; }

.margin-left-40 {
  margin-left: 40px; }

.margin-left-45 {
  margin-left: 45px; }

.margin-left-50 {
  margin-left: 50px; }

.margin-right-5 {
  margin-right: 5px; }

.margin-right-10 {
  margin-right: 10px; }

.margin-right-15 {
  margin-right: 15px; }

.margin-right-20 {
  margin-right: 20px; }

.margin-right-25 {
  margin-right: 25px; }

.margin-right-30 {
  margin-right: 30px; }

.margin-right-35 {
  margin-right: 35px; }

.margin-right-40 {
  margin-right: 40px; }

.margin-right-45 {
  margin-right: 45px; }

.margin-right-50 {
  margin-right: 50px; }

.margin-top-5 {
  margin-top: 5px; }

.margin-top-10 {
  margin-top: 10px; }

.margin-top-15 {
  margin-top: 15px; }

.margin-top-20 {
  margin-top: 20px; }

.margin-top-25 {
  margin-top: 25px; }

.margin-top-30 {
  margin-top: 30px; }

.margin-top-35 {
  margin-top: 35px; }

.margin-top-40 {
  margin-top: 40px; }

.margin-top-45 {
  margin-top: 45px; }

.margin-top-50 {
  margin-top: 50px; }


.center {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important; 
}
.circle-radius {
  border-radius: 50%;
}
.circle-radius-white {
  border-radius: 50%;
  border: 2px solid var(--white);
}
.border-bottom-dotted {
  border-bottom: 1px dotted var(--blue-dark);
}
.border-bottom-dashed {
  border-bottom: 2px dashed var(--blue-dark);
}
.border-bottom-dotted-white {
  border-bottom: 1px dotted var(--white);
}
.border-bottom-dashed-white {
  border-bottom: 2px dashed var(--white);
}
.border-none {
  border: none !important;
}


/* ========================== LAYOUT ============================ */

/* ------------------------ FLEX STYLES ------------------------ */
.flex-cont {
  display: -moz-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flexbox;
  display: flex; }

.flex-order-1 {
  -webkit-box-ordinal-group: 1;
  -webkit-ordinal-group: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 1;
  /* OLD - Firefox 19- */
  -ms-flex-order: 1;
  /* TWEENER - IE 10 */
  -webkit-order: 1;
  /* NEW - Chrome */
  order: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */ }

.flex-order-2 {
  -webkit-box-ordinal-group: 2;
  -webkit-ordinal-group: 2;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 2;
  /* OLD - Firefox 19- */
  -ms-flex-order: 2;
  /* TWEENER - IE 10 */
  -webkit-order: 2;
  /* NEW - Chrome */
  order: 2;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */ }

.flex-order-3 {
  -webkit-box-ordinal-group: 3;
  -webkit-ordinal-group: 3;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 3;
  /* OLD - Firefox 19- */
  -ms-flex-order: 3;
  /* TWEENER - IE 10 */
  -webkit-order: 3;
  /* NEW - Chrome */
  order: 3;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */ }

.justify-content-left {
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -moz-box-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start; }

.justify-content-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-justify-content: center;
  -ms-justify-content: center;
  justify-content: center; }

.justify-content-right {
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  -moz-box-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end; }

.space-between {
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -moz-box-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between; }

.flex-wrap {
  -webkit-box-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-box-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.flex-column {
  -webkit-box-direction: column;
  -webkit-flex-direction: column;
  -moz-box-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.align-items-top {
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.align-items-middle {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.align-items-bottom {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}

.width-100 {
  width: 100%; }

.width-46 {
  width: 46%; }

@media screen and (max-width: 779px) {
  .width-46 {
    width: 100%; } }
  .width-30 {
    width: 100%; }

@media screen and (min-width: 479px) and (max-width: 779px) {
  .width-30 {
    width: 46%; } }
@media screen and (min-width: 780px) {
  .width-30 {
    width: 30%; } }




/* ------------------------ HEADER ------------------------ */
.logo {
  float: left; 
  padding-left: 22px;
  padding-top: 22px; 
  width: 130px;
}
@media screen and (min-width: 779px) {
  .logo {
    padding-top: 20px;
    width: 150px;
  }  
}

/* ========================== NAVIGATION ======================== */
.nav-cont {
  height: 100px;
  padding-left: 30px; 
  padding-right: 30px; 
  position: relative;
}


nav#primary-navigation-desktop {
  background-color: transparent;
  margin-left: 230px;
  padding: 24px 20px 24px 20px; 
}
nav#primary-navigation-desktop ul {
  display: flex; 
  justify-content: space-between; 
  width: 270px;
}
nav#primary-navigation-desktop ul li {
  color: white;
  display: inline-block;
  font-size: 1em;
  list-style: none;
  position: relative;
}
nav#primary-navigation-desktop ul li a, nav#primary-navigation-desktop ul li ul li a {
  border-bottom: none;
  color: var(--white-color);
  display: block;
  font-size: 1.1em;
  padding-bottom: 12px;
  padding-top: 12px; 
}

nav#primary-navigation-desktop ul li ul li a {
  font-size: 1em;
  padding-bottom: 10px;
  padding-top: 10px; 
}

nav#primary-navigation-desktop ul li a:hover, nav#primary-navigation-desktop ul li ul li a:hover {
  border-bottom: none;
  color: #ffffff !important;
  font-weight: 700; 
}

nav#primary-navigation-desktop ul li ul {
  display: none; 
}

nav#primary-navigation-desktop ul li.submenu:hover > ul {
  background-color: var(--blue-dark-bg);
  -webkit-box-shadow: -1px 1px 2px var(--blue-dark-bg);
  -moz-box-shadow: -1px 1px 2px var(--blue-dark-bg);
  box-shadow: -1px 1px 2px var(--blue-dark-bg);
  display: block;
  padding: 20px 30px;
  position: absolute;
  left: 120px;
  top: -22px;
  width: 240px;
  z-index: 200; }

.button-contact {
  position: absolute; 
  right: 30px;
  text-align: center;
  top: 26px;
  width: 200px;
}
@media screen and (max-width: 859px) {
  nav#primary-navigation-desktop, .button-contact {
    display: none;
  }
}


/* ========================== FORMS ============================ */
input[type="text"], input[type="email"], input[type="tel"], textarea {
  border: 2px solid var(--blue-dark);
  border-radius: 2px;
  color: #2d2d2d;
  font-size: 1.1em;
  padding: 8px;
  width: 100%; }

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus {
  background-color: #fffccc; }

input[type="checkbox"] {
  border: 2px solid var(--blue-dark);
  padding: 8px;
}

label {
  color: #2d2d2d;
  display: inline-block;
  padding-bottom: 10px; }

.button {
  max-width: 300px; }

.button a, input[type="submit"] {
  border: none;
  cursor: pointer;
  display: block;
  font-size: 1.1em;
  padding: 10px 20px;
  text-decoration: none; }

.button-yellow a, input[type="submit"].button-yellow {
   background-color: var(--yellow);
   box-shadow: 0px 1px 3px var(--blue-darker);
   color: var(--blue-dark);
}
.button-yellow a:hover, input[type="submit"].button-yellow:hover {
   background-color: var(--blue-darker);
   color: var(--white);
}
.button-blue-mid a, input[type="submit"].button-blue {
   background-color: var(--blue-mid);
   color: var(--yellow);
}
.button-blue-mid a:hover, input[type="submit"].button-blue:hover {
   background-color: var(--yellow);
   color: var(--blue-mid);
}
.button-blue-darker a, input[type="submit"].button-blue {
   background-color: var(--blue-darker);
   color: var(--yellow);
}
.button-blue-darker a:hover, input[type="submit"].button-blue:hover {
   background-color: var(--yellow);
   color: var(--blue-darker);
}


/* ========================== MAIN PAGE STYLES ======================== */
.main {
   width: 100%;
}
.content {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  min-height: 100vh;
}
.content-int {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  text-align: left;
}
.home-hero-cont  {
   background-blend-mode: multiply;
   background-image: url(../images/rain-in-binary.svg), url(../images/raindrops.png), linear-gradient(var(--blue-darker), var(--blue-dark) 30%, var(--blue-mid) 70%);
   background-repeat: no-repeat;
   background-size: cover;
}
.binary {
  background-image: url(../images/rain-in-binary.svg); 
  background-position: 50px 50px; 
  background-repeat: no-repeat; 
  background-size: cover;
}
@media screen and (min-width: 420px) and (max-width: 599px) {
  .binary {
    background-position: 100px 50px; 
  }
}
@media screen and (min-width: 600px) and (max-width: 699px) {
  .binary {
    background-position: 150px 50px; 
  }
}
@media screen and (min-width: 700px) and (max-width: 999px) {
  .binary {
    background-position: -50px -50px; 
  }
}
@media screen and (min-width: 1000px) {
  .binary {
    background-position: 100px -100px; 
  }
}
.featured-image-cont {
  padding-right: 30px;
  width: 200px;
}
@media screen and (max-width: 600px) {
  
.featured-image-cont {
    padding-right: 0px;
  }
}
.featured-text-cont {
  width: 380px;
}
.featured-text-cont p {
  text-align: left;
}



/* ========================== INDIVIDUAL PAGE STYLES ======================== */
.home .title {
	margin-left: auto; 
	margin-right: auto; 
	width: 100%; 
	padding: 100px 50px 130px 50px;
}
.home .title h1:first-child {
  font-family: var(--expanded-black); 
  line-height: 100%;
}
.home .title h1 .title-1 {
  font-size: .8em;
  line-height: 110%;
  text-shadow: 1px 1px 3px var(--blue-darker);  
  width: 100%;
}
.home .title h1 .title-2 {
  display: block;
  float: right;
  padding-top: 20px;
  width: 100%;
}
@media screen and (min-width: 480px) and (max-width: 599px) {
  .home .title { 
    padding: 110px 50px 150px 50px;
  }
  .home .title h1:first-child {
    line-height: 110%;
  }
  .home .title h1 .title-1 {
    font-size: 1.1em;
    line-height: 130%;  
    width: 100%;
  }
}
@media screen and (min-width: 600px) and (max-width: 1059px) {
  .home .title { 
    padding: 120px 50px 250px 50px;
  }
  .home .title h1:first-child {
    line-height: 130%;
  }
  .home .title h1 .title-1 {
    font-size: 1.5em;
    line-height: 130%;
    text-shadow: 2px 2px 5px var(--blue-darker); 
    width: 700px;
  }
  .home .title h1 .title-2 {
    max-width: 700px;
  }
}

@media screen and (min-width: 1060px) {
  .home .title { 
    max-width: 1200px; 
    padding: 120px 100px 340px 100px;
  }
  .home .title h1 .title-1 {
    font-size: 2em; 
    width: 700px;
  }
  .home .title h1 .title-2 {
    max-width: 900px;
  }
}

.testimonials-inner {
  width: 100%;
}
.testimonial:first-child {
  border-bottom: 1px dashed var(--white);
  margin-bottom: 30px;
  padding-bottom: 30px;
}
 .testimonial > p {
  position: relative; 
  text-align: left;
}
.quotation-mark {
  left: -30px;
  mix-blend-mode: lighten;
  position: absolute;  
  top: -20px; 
}
.about .testimonial:first-child {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
.about .quotation-mark {
  left: -80px;
  mix-blend-mode: lighten;
  position: absolute;  
  top: -20px; 
}
.about .testimonial > p {
  margin-left: 100px;
  position: relative; 
  text-align: left;
}
@media screen and (max-width: 399px) {
  .about .quotation-mark {
    display: none;
  }
    .about .testimonial > p {
    margin-left: 0px;
  }
}
@media screen and (min-width: 600px) {
  .testimonials-inner {
    max-width: 900px;
  }
  .testimonial {
    width: 40%;
  }
  .about .testimonial {
    width: 100%;
  }
  .testimonial:first-child {
    border-bottom: none;
  }
}



.head-nerd {
  background-image: url(../images/rain-in-binary-blue-mid.svg); 
  background-position: 120px -400px; 
  background-repeat: no-repeat; 
  background-size: cover;
}
.head-nerd-photo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
}
.head-nerd-bio {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .head-nerd-photo {
    justify-content: flex-start;
    margin-bottom: 0;
    margin-right: 20px;
    width: 30%;
  }
  .head-nerd-bio {
    width: 66%;
  }
}

.nerd-array-cont {
  margin-bottom: 70px;
  position: relative;
}
.nerd-array {

  overflow-y: hidden;
  
}
.nerd-array-fade {
  
  left: 0px;

  position: absolute; 
  width: 100%;
  z-index: 51;
}
.height-400 {
  height: 400px;
}
.nerd-array-fade-button {
  background-color: var(--yellow);
  bottom: 50px; 
  box-shadow: 0px 1px 2px var(--blue-darker);
  color: var(--blue-darker);
  font-size: 1.1em;
  height: 50px; 
  left: 0; 
  margin-left: auto; 
  margin-right: auto; 
  max-width: 300px; 
  position: absolute; 
  right:0; 
  vertical-align: middle;
}
.nerd-array-fade-button.bottom {
  bottom: -30px;
}
.nerd-array-fade-button:hover {
  background-color: var(--blue-darker);
  color: var(--white);
}
.nerd-array-fade-gradient {
  background: transparent;
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
}
.nerd {
  margin-bottom: 20px;
  padding: 24px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .nerd {
    width: 48%;
  }
}
.about .content-int {
  max-width: 900px;
}
.nerd h3, .nerd h4, .nerd p, .nerd strong, .nerd em, .nerd li {
  color: var(--white);
}
.nerd .social {
  background: var(--yellow);
  box-shadow: -1px 1px 3px var(--blue-darker);
  padding: 20px;
  position: absolute;
  right: 0px;
  top: 40px;
  width: 70px;
}
.nerd .skills ul {
  columns: 150px 2;
}
.blog-body {
  max-width: 700px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}
.sidebar { 
  border-top: 1px dotted var(--blue-darker);
  padding: 40px 25px;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .blog-body {
    padding-left: 0px;
    padding-right: 0px;
    width: 58%;
  }
  .sidebar {
    border-left: 1px dotted var(--blue-darker);
    border-top: none;
    width: 27%;
  }
}

/* ------------------------ FOOTER ------------------------ */
.footer {
  background-color: var(--blue-light);
  padding: 16px 30px; 
  width: 100%;
}
