/* General */
body {
    font-family: "Arial", Helvetica, sans-serif;
    font-size: 20px;
}
* {
  box-sizing: border-box;
}

/* Container for flexboxes */
.row {
  display: flex;
  flex-wrap: wrap;
}

/* Create four equal columns */
.column {
  flex: 25%;
  padding: 20px;
}

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {
  .column {
    flex: 100%;
  }
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .row {
    flex-direction: column;
  }
}

/* Top Navigation */
.topnav {
    overflow: hidden;
    background-color: #3b245c;
    font-family: "Arial", Helvetica, sans-serif;
}

.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
}

.topnav a:hover {
    background-color: #555;
    color: #FFFFFF;
    transition: 0.5s;

}

.topnav a.active {
    background-color: white;
    color: #3b245c;
}

/* Brand CEITE */
.brand {
    overflow: hidden;
    text-align: center;
}

.logo {
    padding-left: 0px;
    width: 100%;
    height: 100%;
}




/*body {
    font-family: "Roboto", sans-serif;
    margin: 0px;
    font-size: 20px;
    color: #222;
}

.container {
    display: grid;
    grid-template-columns: 1fr;
}

.nav-wrapper {
    display: flex; 
    justify-content: space-between;
    padding: 20px;
    background-color: #bfbbc5;
}

.left-side {
    display: flex;
}


.img {
    vertical-align: middle;
    border-style: none;
    max-width: 50%;
    max-height 50%;
    padding-top: 0px;
    padding-left: 70px;
}
    
.right-side {
    display: flex;
}

.nav-wrapper > .right-side > div {
    margin-right: 30px;
    font-size: 0.8em;
    text-transform: uppercase;
}

.nav-link-wrapper {
    height: 22px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s;
}

.nav-link-wrapper a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.5s;
}

.nav-link-wrapper:hover {
    border-bottom: 1px solid black;
}

.nav-link-wrapper a:hover {
    color: black;
}

.active-nav-link {
    border-bottom: 2px solid black;
}

.active-nav-link a {
    color: black !important;
}
*/

/*.container {
    display: grid;
    grid-template-columns: 1fr;
}

.img {
    vertical-align: middle;
    border-style: none;
    max-width: 50%;
    max-height 50%;
    padding-top: 0px;
    padding-left: 70px;
}*/

.portfolio-items-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.portfolio-item-wrapper {
    position: relative;
}

.portfolio-img-background {
    height: 280px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-color: #3b245c;
    border: 6px solid #3b245c;

}

.img-text-wrapper {
    font-family: "Arial", Helvetica, sans-serif;
    position: absolute;
    top: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 20%;
    width: 50%;
    text-align: center;
    padding-left: 0px;
    padding-right: 0px;
    font-weight: 700;
    font-size: 25px;
    background-color: #3b245c;

}


  a:link    { color: white; text-decoration: none; }
  a:visited { color: white; text-decoration: none; }
  a:hover   { color: #AD98CB; text-decoration: none; transition: 0.5s; }
  a:active  { color: white; text-decoration: none; }

.img-text-wrapper .subtitle {
    font-family: "Arial", Helvetica, sans-serif;
    transition: 0.5s;
    font-weight: 900;
    color: #FFFFFF;
}

.img-text-wrapper:hover .subtitle {
    font-family: "Arial", Helvetica, sans-serif;
    font-weight: 900;
    color: #bfbbc5;
    transform: scale(1.25);

}

.img-darken {
    transition: 0.5s;
    filter: blur(5px);
}

.botnav {
  overflow: hidden;
  background-color: #3b245c;
}

.botnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

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

.botnav a.active {
  background-color: #3b245c;
  color: #3b245c;
}

.botnav input[type=text] {
  float: left;
  padding-left: 6px;
  border: 8;
  margin-top: 20px;
  margin-right: 16px;
  margin-left: 8px;
  margin-bottom: 20px;
  font-size: 17px;
}

  .botnav a, .botnav input[type=text] {
    float: none;
    display: inherit;
    text-align: center;
    width: 25%;
    margin-left: 36.5%;
    padding: 14px;
  }
  .botnav input[type=text] {
    border: 5px solid #3b245c;
  }

.footer {
    font-family: "Arial", Helvetica, sans-serif;
    color: #FFFFFF;
    height: 100%;
    border-color: #4c4754;
    text-align: center;
    font-size: 18px;
    line-height: 100px;
    background-color: #3b245c;
    font-weight: bold;
        }
    
