@import url("https://fonts.googleapis.com/css?family=Raleway:400,900");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

body {
  background: #333;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100vh;
  line-height: 24px;
}

.header {
  position: fixed;
  top: 0px;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
  height: 65px;
}

.header img {
  margin: 10px 0 0 2rem;
}

.header-text {
  text-transform: uppercase;
  color: #333;
  font-size: 1.2em;
  position: relative;
  right: 2rem;
  top: 23px;
  display: none;
  float: right;
  font-weight: 900;
}

.footer {
  width: 100%;
  background-color: #111;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
  min-height: 65px;
  height: 65px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.footer-text {
  text-transform: lowercase;
  color: #fff;
  font-size: 0.6em;
  font-weight: 400;
}

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

.d-flex {
  display: flex;
}

.rounded {
  border-radius: 0px;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  flex: 1 1 auto;
}

.main {
  padding: 80px 0rem;
}

.item {
  margin: 1rem;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 0, 0, 1);
  box-sizing: border-box;
}

.item img {
  display: block;
}

.img-holder img {
  max-width: 1200px;
  margin: 30px 0;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.55);
}

.responsive-image {
  max-width: 100%;
  transition: transform 0.35s;
}

@media screen and (min-width: 600px) {
  .header-text {
    display: block;
  }
  .grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .item {
    width: calc(100% / 2 - 2rem);
  }
}

@media screen and (min-width: 1000px) {
  .main {
    padding: 120px 1rem;
  }
  .item {
    width: calc(100% / 4 - 2rem);
  }
}

.item .item-overlay {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  z-index: 888;
}

.item:hover .item-overlay {
  opacity: 1;
}

.item-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 20%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  font-size: 0.9em;
  z-index: 999;
}

.item-details h1 {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
  font-size: 1.8em;
}

.item-details p {
  color: #fff;
  font-size: 1.2em;
  padding: 0 10px;
}

.item:hover .item-details {
  top: 50%;
  left: 50%;
  opacity: 1;
  font-size: 0.8em;
}

.item:hover img {
  -ms-transform: scale(1.2); /* IE 9 */
  -webkit-transform: scale(1.2); /* Safari */
  transform: scale(1.2);
}

/* CV */
.resume-left {
  width: 20%;
  margin-right: 1rem;
}
.resume-right {
  width: 80%;
  margin-left: 1rem;
}
.resume-highlights {
  background: white;
  height: 250px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0;
}

.highlight {
  width: 33.3%;
  background: lightblue;
  border: 1px solid red;
  margin: 0 0.75rem;
}

.cv-info {
  background: #fff;
}

.title {
  text-align: center;
}

.label {
  padding: 0.15rem 0.75rem;
  background: #005a58;
  display: inline-block;
  border-radius: 9999px;
  font-size: 13px;
}

.cv-photo {
  width: 140px;
  height: 140px;
}

.cv-photo img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 9999px;
  border: 3px solid red;
}

.card {
  padding: 1rem 0.75rem;
  background: #fff;
  margin-bottom: 1rem;
}

/* // SHAPES */
.shape {
  position: absolute;
  z-index: -1;
}
.shape1 {
  top: 200px;
  left: 100px;
}
