/*-------------------- General --------------------*/
.col-md-4, .col-md-8 {
  padding: 0;
}

a:link,
a:visited,
a:active {
  text-decoration: none;
}

.container {
  max-width: 1100px;
}

/*-------------------- Reusable --------------------*/

.link {
  color: #3DC9C5;
}

.link,
.link:visited {
  color: #3DC9C5;
  transition: all 0.15s;
}

.link:hover {
  color: #1BA7A3;
}

.right-margin {
  margin-right: 15px;
}

.small-text {
  font-size: 15px;
  margin-top: 10px;
}

.red-text{
  color: #f45b69;
}

.blue-text {
  color: #2cb8e2;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 6px solid #2cb8e2;
  margin: 8px 0 0 6px;
}

.separator {
  width: 100%;
  max-width: 1850px;
  margin: 0 auto;
  height: 40px;
  /* background-color: #fcfcfc; */
}

.page-footer {
  font-family: 'Open Sans', sans-serif;
  color: #888888;
  letter-spacing: 0.5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 10px;
}

/* .bg-grey {
  background-color: #fafafa;
  width: 100%;
  max-width: 1850px;
  margin: 0 auto;
} */

/*-------------------- Landing Page --------------------*/

#home {
  display: flex;
  min-height: 300px;
  margin: 0 auto;
  max-width: 2050px;
  flex-direction: column;
}

.first-name {
  color: #2cb8e2;
}

.last-name {
  color: #454545;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.menu-name,
.menu-item {
  display: inline;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #454545;
  font-size: 1.1em;
  padding: 17px 5px 5px 5px;
  border-top: 3px solid transparent;
  transition-property: color, border-color;
  transition-duration: 0.1s;
}

.menu-items {
  display: flex;
}

.menu-item {
  margin-left: 20px;
}

.menu-name:hover,
.menu-item:hover,
a:focus .menu-name,
a:focus .menu-item {
  color: #3DC9C5;
  border-color: #3DC9C5;
}

.landing-kicker {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 1.5em;
  color: #777777;
  margin-top: 130px;
}

.landing-text {
  text-align: center;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 5em;
  color: #454545;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  line-height: 120%;
}

.landing-subtext {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  color: #454545;
  font-size: 1.2em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  max-width: 350px;
  line-height: 160%;
}

.landing-subtext:last-child {
  margin-bottom: 60px;
}

.margin-bottom--large {
  margin-bottom: 60px;
}

.me {
  margin-right: 40px;
  text-align: right;
}

.me-img {
  border-radius: 3px;
  margin-bottom: 20px;
  width: 360px;
  -webkit-box-shadow: -11px 10px 10px -6px rgba(204,204,204,1);
  -moz-box-shadow: -11px 10px 10px -6px rgba(204,204,204,1);
  box-shadow: -11px 10px 10px -6px rgba(204,204,204,1);
}

.about-link {
  display: inline-block;
}

#work {
  position: relative;
  /* background-color: #fcfcfc; */
  max-width: 1850px;
  /* height: calc(100% - 30px); */
  max-height: 900px;
  margin: 0 auto;
}

.work-entry-container {
  border-radius: 10px;
  margin: 15px;
  transition-property: box-shadow, transform;
  transition-duration: 0.2s;
  box-shadow: 0px 4px 15px rgba(51, 51, 51, 0.2);
}

.work-entry-content {
  padding: 15px;
}

.work-entry-container:hover,
a:focus .work-entry-container {
  box-shadow: 0px 8px 40px rgba(51, 51, 51, 0.2);
  transform: translateY(-10px);
}

.work-header {
  color: #4a4a4a;
  margin: 5px 0 40px 0;
  font-size: 2em;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1.1px;
}

.experience-header {
  color: #4a4a4a;
  margin: 20px 0 25px 0;
  font-size: 2em;
  font-family: 'Merriweather Caption', serif;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1.1px;
  width: 100%;
}

.work-entry {
  position: relative;
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7f7f7;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.experience-tag {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: #aaaaaa;
}

.work-entry-tag {
  display: inline-block;
  color: #ffffff;
  padding: 3px 9px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.3px;
  background-color: #3DC9C5;
  border-radius: 20px;
  margin: 0 0 2px 0;
}

.work-entry-tag-blue {
  display: inline-block;
  color: #ffffff;
  padding: 2px 7px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.3px;
  background-color: #3DC9C5;
  border-radius: 20px;
  margin: 0;
}

.project-title-container {
  display: flex;
  align-items: center;
  margin: 10px 0 2px 20px;
}

.shopify-logo {
  width: 80px;
}

.cl-logo {
  width: 200px;
}

.inno-logo {
  width: 80px;
}

.pivotal-logo {
  max-width: 70%;
  max-height: 60px;
  transition: all 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.project-pic {
  width: 150px;
}

.project-pic-2 {
  padding-top: 8px;
  width: 170px;
}

.project-pic,
.inno-logo,
.shopify-logo {
  transition: all 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.experience-title,
.experience-title-blue {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.3em;
  color: #4a4a4a;
  margin: 0 15px 0 0;
  padding: 0;
  transition: color 0.3s;
}

.experience-desc {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #4a4a4a;
  padding-bottom: 10px;
}

.footer {
  color: #555555;
  font-size: 16px;
  text-align: center;
  font-family: 'Open Sans', serif;
  font-weight: 300;
  padding-top: 50px;
  padding-bottom: 30px;
}

@media (max-width: 767px) {
  .separator {
    height: 20px;
  }

  .work-entry-container {
    border-radius: 10px;
    margin: 30px 0;
    transition: box-shadow 0.1s;
    box-shadow: 0px 4px 15px rgba(51, 51, 51, 0.2);
  }

  .work-entry {
    margin: 0;
  }

  .landing-text {
    font-size: 3.5em;
  }

  .landing-subtext {

  }

  .shopify-logo {
    max-width: 210px;
  }

  .work-entry-container:hover .shopify-logo {
    max-width: 250px;
  }
}
