@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap");
/* Color Theme Swatches in Hex */
:root {
  --primary-color: #04ADBF;
  --secondary-color: #A0A603;
  --dark-color:  #025959;
  --light-color: #F2E0C9;
  --success-color: #61c26e;
  --error-color: #be3e3e;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  overflow: auto;
  padding: 0 40px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.grid {
  display: -ms-grid;
  display: grid;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  color: #333;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
}

img {
  width: 100%;
}

.navbar {
  height: 16vh;
  padding: 0 3rem;
}

.navbar .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar a {
  padding: 10px;
  margin: 0 5px;
  border-bottom: 2px rgba(51, 51, 51, 0.1) solid;
  -webkit-transition: border-bottom 0.6s;
  transition: border-bottom 0.6s;
}

.navbar a:hover {
  border-bottom: 2px #333 solid;
}

.navbar .logo {
  color: var(--primary-color);
}

.portfolio .grid {
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -ms-grid-columns: (minmax(250px, auto))[3];
      grid-template-columns: repeat(3, minmax(250px, auto));
}

.portfolio .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.portfolio-item-wrapper {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 350px;
          flex: 1 1 350px;
}

.item-bg {
  height: 350px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.item-text {
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  text-align: center;
  padding: 20px;
  font-weight: 600;
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.item-text:hover {
  color: var(--primary-color);
}

.logo-wrapper {
  color: #fff;
  width: 50%;
  padding: 1rem;
}

.img-darken {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-filter: brightness(8%);
          filter: brightness(8%);
}

.profile .grid {
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.profile-img-wrapper > img {
  width: 400px;
}

.profile-content-wrapper p {
  text-align: justify;
}

footer {
  height: 20vh;
  padding: 3rem;
}

footer .grid {
  -ms-grid-columns: 4fr 2fr 4fr;
      grid-template-columns: 4fr 2fr 4fr;
  gap: 10px;
}

footer .social a {
  margin: 0 8px;
}
