/* ========================== */
/* Global
/* ========================== */
:root {
  --icofblue: #283781;
  --icofyellow: #dcb93e;
}
html {
scroll-behavior: smooth;
font-size: 62.5%;
}
body {
  margin: 0;
  font-weight: normal !important;
  overflow-x: hidden;
  font-family: 'Nunito Sans', sans-serif;
}
a {
  text-decoration: none !important;
}

/* ========================== */
/* Header
/* ========================== */ 
.header-container {
  width: 100%;
  height: auto;
  margin: 1% 0 0;
}
.icof-banner-logo{
  display: block;
  width: 95% !important;
  height: auto;
  margin: auto;
}

/* NavBar */
.nav-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 0.5em;
  background-color: #fff;
}
.nav-item {
  color: rgb(0, 0, 0) !important;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  height: 4ch !important;
  background-color: #fff !important;
  border-color: #fff !important;
}
.nav-item:hover,.nav-item:focus {
  background-color: var(--icofblue) !important;
  color: var(--icofyellow) !important;
}
@media (min-width: 1000px) {
  .icof-banner-logo {
    width: 50% !important;
  }
  .nav-container {
    gap: 3em;
  }
}

/* ========================== */
/* Carousel
/* ========================== */
.container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 2%;
}
.carousel-item {
  /* height: 37rem; */
  height: 75vh;
  background: rgb(0, 0, 0);
  color: #fff;
  position: relative;

  font-weight: 800 !important;
}
.overlay-image {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  /* opacity: 0.5; */
}
.project-header, .project-subheader {
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 2px black;
  padding-left: 13%;
}
/* ========================== */
/* Project
/* ========================== */
.project {
  width: 100%;
  height: auto;
  position: relative;
}
.project-text {
  padding-top: 2%;
  padding-left: 16%;
  padding-right: 10%;
}
.project-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 3%;
  margin-top: 3%;
}
.project-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: left;
  margin-bottom: 3%;
}
.project-paragraph {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: left;
  margin-bottom: 0%;
  line-height: 1.5em;
}
.project-link, .project-link:hover {
  text-decoration: underline !important;
  color: black;
}
.support-button {
  font-weight: 800 !important;
  font-size: 1.3rem !important;
  border: none;
  /* border: solid black !important; */
  /* border-radius: 0 !important; */
  color: white !important;
  background-color: var(--icofblue) !important;
  /* background-color: black !important; */
  text-align: center !important;
  margin-left: 13%;
  transition: ease-in-out 200ms;
}
.support-button:hover, .support-button:focus {
  /* border: solid rgb(90, 90, 90) !important; */
  /* background-color: rgb(90, 90, 90) !important; */
  /* color: white !important; */
  color: var(--icofyellow) !important;
  font-weight: bolder !important;
  font-size: 1.4rem !important;
  transition: ease-in-out 200ms;
}

/* ========================== */
/* Pictures Grid
/* ========================== */
.pictures-grid {
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: row wrap;
  align-content: center;
  justify-content: center;
}
.picture-item {
  min-width: 20vw;
  max-width: 40vw;
  max-height: 20vh;
  margin: 1%;
  border-radius: 4px;
}
.picture-item:hover{
  color: #424242; 
  -webkit-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -ms-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all .3s ease-in;
  opacity: 1;
  transform: scale(1.15);
  -ms-transform: scale(1.15); /* IE 9 */
  -webkit-transform: scale(1.15); /* Safari and Chrome */
}

/* ========================== */
/* Footer
/* ========================== */
.footer {
  font-family: "Nunito Sans", sans-serif !important;
  font-weight: 500;
  text-align: center;
  font-size: 1.2rem;
  margin-left: 2%;
  margin-right: 2%;
}
.footer-text1 {
  margin-top: 5%;
  margin-bottom: 3%;
}
.footer-text2 {
  font-style: italic;
}
.footer-text3 {
  margin-bottom: 3%;
}
@media (min-width:1000px){
  .footer {
    margin-left: 15%;
    margin-right: 15%;
  }
}