.loader-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #111;
  display:flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid #Fff;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}
@keyframes loader {
  0% { transform: rotate(0deg);}
  25% { transform: rotate(180deg);}
  50% { transform: rotate(180deg);}
  75% { transform: rotate(360deg);}
  100% { transform: rotate(360deg);}
}
@keyframes loader-inner {
  0% { height: 0%;}
  25% { height: 0%;}
  50% { height: 100%;}
  75% { height: 100%;}
  100% { height: 0%;}
}

.reels h2 {
  padding-bottom: 24px;
}

.reels a {
  text-align: center;
  margin: 0 auto 20px;
}

.portfolio .btn-xl {
  margin-top: 24px;
}

.about img {
  width: 100%;
  padding-bottom: 48px;
}

.about h2 {
  margin-bottom: 50px !important;
}

.about h3 {
  font-size: 24px !important;
  margin-bottom: 40px !important;
}

.about p {
  margin-bottom: 0.75rem;
}

.about a {
  color: #fec503;
}

.aboutButton {
  background-color: rgba(0,0,0,0);
  border: 1px solid #fed136;
  padding: 8px 24px;
  margin: 0 12px 0 0;
  font-size: 18px;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
}

.about a:hover {
  background-color: #fec503;
  border: 1px solid #fec503;
  color: white;
  text-decoration: none;
}

.flex-wrap a {
  margin-top: 16px;
}

.modal-body .btn-primary {
  margin-top: 24px;
}

#portfolioContainer {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 100%;
}

.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.video-responsive iframe{
    left:10%;
    top:0;
    height:80%;
    width:80%;
    position:absolute;
}
