/**
*** SIMPLE GRID
*** (C) ZACH COLE 2016
**/

@import url(https://fonts.googleapis.com/css?family=Lato:400,300,300italic,400italic,700,700italic);
@import url(https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap);

a{
  text-decoration: none;
}
a:hover, a.footer-nav:hover{
  text-decoration: underline;
}
a.footer-nav{
  white-space: nowrap;
  padding: 0px 10px;
  color:#555;
  text-decoration: none;
}

.bold{
  font-weight: 900;
}

a.footer-nav.active{
  text-decoration: line-through;
}
/* image Hover content relevant styles */
.img__wrap {
  position: relative;
}

.img__description{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;

  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;

  visibility: visible;
  opacity: 1;

  overflow-wrap: anywhere;

  /* transition effect. not necessary */
  transition: opacity .2s, visibility .2s;
}
.img__description h1{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: #ffffff;
  font-size:1.75rem;
  line-height:1.75rem;
  margin:0;
  letter-spacing: .1rem;
}
.img__description span{
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  font-style: italic;
  padding-top:.4rem;
  line-height: 1.1rem;
}

.img__description span.project{
  display: block;
  font-style: normal;
  font-weight: 900;
  font-size: .6rem;
  line-height: .1rem;
  text-transform: uppercase;
  color: #fff;
  padding-top:.1rem;
  
}

.img__wrap:hover .img__description {
  visibility: hidden;
  opacity: 0;
}

/* UNIVERSAL */

.default{
  background-color: rgba(0,0,0, .4);
  color: rgba(0,0,0, .4);
}
.bsi-blue{
  background-color: rgba(0,59,92, .4);
  color: rgba(0,59,92, .4);
}
.bb-yel{
  background-color: rgba(255,197,80, .2);
  color: rgba(255,197,80, .2);
}
.dt-blue{
  background-color: rgba(0, 163, 224, .2);
  color: rgba(0, 163, 224,.2);
}
.apres-black{
  background-color: rgba(100, 0, 0,.4);
  color: rgba(100, 0, 0,.4);
}
.zip-grn{
  background-color: rgba(108, 179, 62,.2);
  color: rgba(108, 179, 62,.2);
}
.sterling-yel{
  background-color: rgba(255, 230, 0,.2);
  color: rgba(255, 230, 0,.2);
}

.sss-color{
  background-color: rgba(61, 81, 45,.4);
  color: rgba(61, 81, 45,.4);
}

.healthplus{
  background-color: rgba(205, 119, 7,.4);
  color: rgba(205, 119, 7,.4);
}

.hmp{
  background-color: rgba(157, 66, 16,.3);
  color: rgba(157, 66, 16,.3);
}


.inset{
  margin: 0 3rem;
}

.iframe-container{
  position: relative; 
  overflow: hidden; 
  width: 100%; 
  padding-top: 56.25%;
}

.i-frame{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.project-title{
  margin: 0;
  font-weight: 900;
  font-size: 4rem;
  line-height: 4rem;

}
.project{
  font-style: italic;
  font-size: 3rem;
  margin:1.5rem 0;
  line-height: 3rem;
}

.list{
  padding:0;
  color:#ff0000;

}

.list li{
  padding:.5rem 0;
  font-size: 1.15rem;
  list-style:none;
  line-height: 1.15rem;
}

.list-sm li{
  padding:.15rem 0;
}

.header{
  padding:1rem 0 4rem 0;
}

.me-header strong{
  color:#DB4080;
}

.footer{
  padding-top:4rem;
}

.others{
  padding: 1rem;
}

.others p, .others h4{
  line-height: 1rem;
  margin:.75rem 0;
}


html,
body {
  /*height: 100%;*/
  width: 100%;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  font-size: 100%;
  /*background-color: rgba(90, 15, 15, 0);*/
}

body::after {
  content: "";
  background: url(../img/bg-4.gif);
  background-repeat:round;
  /*background-size:cover;*/
  opacity: 0.05;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}

/* ROOT FONT STYLES */

* {
  font-family: 'Cormorant Garamond', serif;
  color: #444444;
  line-height:0; /*1.5;*/
}

/* TYPOGRAPHY */

h1 {
  font-size: 2.5rem;
  line-height: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.375rem;
  line-height: 1.375rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  font-size: 1.15rem;
  font-weight: 200;
  line-height: 1.8;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-heavy {
  font-weight: 700;
}

/* POSITIONING */

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.justify {
  text-align: justify;
}

/* ==== GRID SYSTEM ==== */

.container {
  width: 100%;/*90%*/
  margin-left: auto;
  margin-right: auto;
}

.row {
  position: relative;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.row [class^="col"] {
  float: left;
  margin: .5%; /*0.5rem 2%;*/
  min-height: 0.125rem;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 99%;/*96%*/
}

.col-1-sm {
  width: 4.33%;
}

.col-2-sm {
  width: 12.66%;
}

.col-3-sm {
  width: 21%;
}

.col-4-sm {
  width: 29.33%;
}

.col-5-sm {
  width: 37.66%;
}

.col-6-sm {
  width: 49%;/*46%*/
}

.col-7-sm {
  width: 54.33%;
}

.col-8-sm {
  width: 62.66%;
}

.col-9-sm {
  width: 71%;
}

.col-10-sm {
  width: 79.33%;
}

.col-11-sm {
  width: 87.66%;
}

.col-12-sm {
  width: 99%/*96%*/;
}

.row::after {
	content: "";
	display: table;
	clear: both;
}

.hidden-sm {
  display: none;
}

@media only screen and (min-width: 33.75em) {  /* 540px */
  .container {
    width: 100%;
    /*width: 80%;*/
  }
}

@media only screen and (min-width: 55em) {  /* 720px */
  .col-1 {
    width: 4.33%;
  }

  .col-2 {
    width: 12.66%;
  }

  .col-3 {
    width: 24%;/*21%*/
  }

  .col-4 {
    width: 32.3%/*29.33%;*/
  }

  .col-5 {
    width: 37.66%;
  }

  .col-6 {
    width: 49%;/*46%*/
  }

  .col-7 {
    width: 54.33%;
  }

  .col-8 {
    width: 62.66%;
  }

  .col-9 {
    width: 71%;
  }

  .col-10 {
    width: 79.33%;
  }

  .col-11 {
    width: 87.66%;
  }

  .col-12 {
    width: 99%;/*96%*/
  }

  .hidden-sm {
    display: block;
  }
}

@media only screen and (min-width: 60em) { /* 960px */
  .container {
    width: 100%;
    /*ORIGINAL*/
    /*width: 75%;*/
    /*max-width: 60rem;*/
  }

}