body {
  /* background: #505050; */
  font-family: 'Raleway';
  scroll-behavior: smooth;
  overflow-y: scroll; /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
}
video {
  width: 100%;
  object-fit: fill;
}

ul {
  text-align: center;
  list-style-position: inside;
  color: gray;
  padding-left: 0;
}

ul li {
  margin: 1rem 0;
}
.hide {display: none;}

.horizontal-divider {
  height: 2px;
  background: grey;
  width: 100%;
  margin: 5px 0;
}

.jumbotron {
  width: 100%;
  height: 60vh;
  background: black;
  color: white;
}

.non-jumbotron {
  width: 100%;
  height: 40vh;
  background: white;
  color: black;
}

.grey-box {
  background: grey;
  color: lightgrey;
  width: 140px;
  height: 112px;
  text-align: center;
  padding: 20px;
  text-transform: uppercase;
}

.page {
  /* height: 100%; */
}


/*  FONT size related */

.uppercase {
  text-transform: uppercase
}
.capitalize {
  text-transform: capitalize;
}
.font-smallest {
  font-size: 8px;
}
.font-smaller {
  font-size: 10x;
}
.font-small {
  font-size: 13px;
}
.font-14 {
  font-size: 14px;
}
.font-big {
  font-size: 20px;
}
.font-bigger {
  font-size: 24px;
}
.font-biggest{
  font-size: 30px;
}
.font-gigantic {
  font-size: 40px;
  font-family: 'Baskerville';
}
.bold{
  font-weight: 500;
}
.underline {
  text-decoration: underline;
}

a {
  text-decoration: none;
  color: inherit;
}
/** Padding **/
.p-10-h {
  padding: 0 10%;
}

.p-10-v {
  padding-top: 5%;
  padding-bottom: 5%;
}

.p-1-v {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/** margin **/
.mv-1 {
  margin: 1rem 0;
}

.mt-1 {
  margin-top: 1rem;
}
/********* Border ************/
.border-1 { border: 1px soild grey; }
.border-light-1 { border: 1px solid lightgrey; }

/* Background */
.bg-white {
  background: white;
  color: gray;
}
.bg-grey {
  background: grey;
}
.bg-darkgrey {
  background: #506768;
}
.bg-black {
  background: #031523;
  color: white;
}
.bg-lightgrey {
  background: #e7e7e7;
  color: black;
}
.bg-lightergrey {
  background: #f8f9fa;
  color: gray;
}
/* text colors */
.tx-white {
  color: white;
}
.tx-dark {
  color: #031523;
}
.tx-black {
  color: black;
}
.tx-gold {
  color: #896b23
}

/** Height **/
.height-30 {
  height: 30%;
}
.height-40 {
  height: 40%;
}
.height-50 {
  height: 50%;
}
.height-60 {
  height: 60%;
}
.height-70 {
  height: 70%;
}
.height-100 {
  height: 100%;
}

/** Alignment **/
.center {
  text-align: center;
  margin: 0 auto;
}


/** Elements **/
.btn-top {
  opacity: 0.9;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  height: 4rem;
  width: 4rem;
  border-radius: 2rem;
  border: 1px solid #896b23;
  background: #1f4952;
  color: white;
  font-size: 1.5rem;
  text-align: center;
  padding: 1rem;
  transition: all .2s ease-in-out;
}
.btn-top:hover {
  color: white;
  text-decoration: none;
}

.contact {
  position: relative;
}

.contact video {
  height: -webkit-fill-available
}

.contact .content {
  position: absolute;
  left: 10%;
  top: 10%;
}
/***********************************/
.ish-1 {
  font-family: 'Raleway';
  font-size: 50px;
  margin-top: -10px;
}
.ish-2 {
  font-size: 15px;
  margin-top: -16px;
}
.ish-3 {
  font-size: 60px;
  font-family: 'Baskerville';
}
.ish-4 {
  margin-top: -15px;
  line-height: 4rem;
}
.ish-5 {
  height: 58px;
  overflow-y: hidden;
}
.font-16 {
  font-size: 16px;
}

/************************ CONTENT *********************************/

.project-desc .content {
  text-align: center;
  color: #6b6b6b;
  font-size: 13px;
}
.project-desc * {
  font-size: 13px;
}
.project-desc .title {
  color: var(--primary);
  font-family: 'Raleway medium';
  padding: 20px 0;
  text-align: center;
  margin: 0 auto;
  font-size: 16px;
}
.project-desc .content .font-small {
  line-height: 1rem;
  font-size: 12px;
}
.project-desc .lot-of-text {
  font-size: 12px;
  line-height: 16px;
}