/*============ BOOTSTRAP BREAK POINTS:

Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

=============*/

body{
  overflow-x: hidden;
  font-family: 'Jost', sans-serif !important;
}
html{
  scroll-behavior: smooth;
}
.navbar{
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .1rem;
  box-shadow: 0 .5rem .5rem rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.navbar-brand img{
  height: 5rem;
  padding: 2%;
  position: relative;
  left: 15px;
}
.nav-link{
  color: #A9A9A9 !important;
  margin: 5px;
}
.nav-link.active, .nav-link:hover{
  color: #5b5555 !important;
  background-color: #D3D3D3;
  border-radius: 10px;
}
#carousel{
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.1);
}
.carousel-inner{
  /* so that the carousel doesnt extend below the screen */
  max-height: 36rem !important;
}
/* scrolling speed of the carousel */
.carousel-item-next,
.carousel-item-prev,
.carousel-item-active{
  transition: transform: 2.2s ease;
}
.container{
  margin: 4% auto;
}
h2{
  padding: 1.2rem 0;
}
.p-bio{
  font-size: 1.1em;
  line-height: 2em;
}
h4{
  padding: 1.2rem 0 0;
}
hr.solid{
  border-top: 2px solid #bbb;
  border-radius: 2px;
}
.tImgContainer{
  overflow: hidden;
  display: inline-block;
  box-shadow: 5px 5px 7px;
}
#tripletImages{
  max-width: 300px;
  transition:
        transform 550ms cubic-bezier(.5, 0, .5, 1),
        opacity 250ms linear;
}
#tripletImages:hover,
#tripletImages:focus{
  position: relative;
  z-index: 1;
  transform: scale(1.4);
  opacity: 1;
}
footer{
  width: 100%;
  color: #FFF;
}
.fixed{
  background-image: url('../img/dboat.jpg');
  position: fixed;
}
.fixed-background{
  padding: 7rem 0;
}
.fa{
  padding: 15px;
  /* font-size: 25px; */
  color: #FFF;
  text-decoration: none;
}
.fa:hover,
.fa:focus{
  color: #D3D3D3;
  text-decoration: none;
}
.fab{
  font-size: 1.4em;
  padding: .8em 0.7em;
}
#madeWith{
  position: relative;
  top: 30px
}
.socket{
  background-color: #202020;
}
.socket a{
  color: #FFF;
}
@media (max-width: 1200px){
  .carousel-caption{
    display: none;
  }
  #tripletImages{
    max-width: 250px;
  }
  h2{
    font-size: 1.7em;
  }
}
@media (max-width: 1000px){
  .fa{
    font-size: 25px;
    padding: 10px;
  }
  #tripletImages{
    max-width: 200px;
  }
}

/*-- Bootstrap Mobile Gutter Fix --*/
.row, .container-fluid {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
/*-- Fixed Background Image --*/
.fixed-background {
  position: relative;
  width: 100%;
}
.fixed-wrap {
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1 !important;
}
.fixed {
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}
