:root {
  --primary-color: #56666c;
  --primary-color-light: #93A6AC;
  --primary-font: 'Open Sans', sans-serif;
  --font-color: #555555;
}
html, body {
  font-family: var(--primary-font);
  font-size: 16px;
  color: var(--font-color);
}
a, 
a:hover {
  color: var(--font-color);
  text-decoration: none!important;
}
h1 {
  font-size: 42px;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}
button{
  cursor: pointer;
}
main {
  margin-top: 120px;
}

.cursor-pointer {
  cursor: pointer;
}

.custom-container {
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1200px;
}

.btn {
  font-weight: bold;
  border-radius: 0;
  padding: 10px 30px;
  width: 100%;
  max-width: 200px;
}
.btn--sm {
  max-width: 170px;
  padding: 8px 20px;
  font-size: 14px;
}
.btn--white {
  color: #ffffff;
  border: 2px #ffffff solid;
}
.btn--white:hover {
  color: var(--primary-color);
  background: #fff
}

.btn--white-green {
  color: var(--primary-color);
  border: 2px var(--primary-color) solid;
  background: transparent!important;
}
.btn--white-green:hover {
  color: #ffffff;
  border: 2px var(--primary-color) solid;
  background: var(--primary-color)!important;
}
.btn--green--bare {
  color: var(--primary-color);
  border: 2px transparent solid;
}
.btn--green--bare:hover {
  color: #fff;
  background: var(--primary-color);
  border: 2px var(--primary-color) solid;
}

.col50 {
  width: 100%;
  max-width: 600px;
}
.col50--left {
  margin-left: auto;
}
.col50--right {
  margin-right: auto;
}

/* removing outline on form inputs */
.form-control:focus {
  border-color: rgba(0, 0, 0, .15);
  outline: none;
  box-shadow: none;
}
.button:active, button:active, .button:focus, button:focus, .button:hover, button:hover{
  border:none !important;
  outline:none !important;
}

/* removing outline on form .BTNs */
.btn:active, .btn:focus, .btn:active:focus {
  outline: none!important;
  box-shadow: none!important;
}

/* Project list common css */
.project-list {
  display: grid;
  grid-template: 1fr / repeat(4, 1fr);
  grid-gap: 30px;
}

.project-list__item .card-title {
  font-size: 18px;
  color: var(--primary-color);
  margin: 0;
}
.project-list__item .card-body {
  background: #f7f7f7;
  font-size: 14px;
  /*display: grid;
  grid-template: 1fr auto auto 1fr / 1fr;*/
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px 1.25rem;
  justify-content: space-between;
  align-content: center;
}
.project-list__item .card-body .btn {
  margin: auto;
}

/* Inner page banner common css */
.inner-page-banner {
  display: grid;
  grid-template: 1fr / repeat(2, 1fr);
}

.inner-page-banner__text {
  display: flex;
  align-items: center;
  justify-content: end;
  color: var(--primary-color-light);
  text-transform: uppercase;
  background: var(--primary-color);
  padding: 100px 0;
}
.inner-page-banner__text h2,
.inner-page-banner__text p {
  padding: 0 30px;
}
.inner-page-banner__text p {
  color: #fff;
  size: 16px;
  text-transform: none;
}

.inner-page-banner__image {
  background-size: cover;
  background-position: center center;
}

@media (max-width: 991.98px) {
  /* Project list common css */
  .project-list {
    grid-template: 1fr / repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  html, body {
    font-size: 14px;
  }
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 28px;
  }
  main {
    margin-top: 100px;
  }

  .project-list {
    grid-template: 1fr / 1fr;
  }
  
  /* Project list common css */
  .project-list__item .card-body .btn {
    padding: 10px;
  }

  /* Inner page banner common css */
  .inner-page-banner {
    grid-template: 140px auto / 1fr;
  }
  .inner-page-banner__text {
    grid-row: 2;
    padding: 20px 0;
  }
  .inner-page-banner__image {
    grid-row: 1;
  }
}