
html, body{
    height: 100%;
    width: 100%;
    background-color: #92faec;
    font-family: "Poppins", sans-serif;
    color: #2f2f2f;
  }
  h1, h2, p{
    margin:0;
  }
  p{
    font-size: 1.2rem;
  }
  .navbar{
    padding: .8rem;
  }
  .navbar-brand img{
    width: 80px;
    height: auto;
  }
  .navbar-nav li{
    padding-right: 20px;
  }
  .nav-link{
    font-size: 1.1rem !important;
  }
  hr{
      padding-top: 1px;
      padding-bottom: 1px;
  }

/* Responsive iFrame */

.responsive-iframe-container {
    position: relative;
    padding-bottom:55%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    }
    
.responsive-iframe-container iframe,
.vresponsive-iframe-container object,
.vresponsive-iframe-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    }

.calendar-sm{
      display: none;
    }

/*---Media Queries --*/
@media (max-width: 992px) {

}

@media (max-width: 768px) {
.navbar{
  padding: .5rem;  }

p{
  font-size: .8rem;  }

}

@media (max-width: 576px) {
.navbar-brand img{
  width: 50px;
  height: auto;
}
.calendar-md{
  display: none;
}
.calendar-sm{
  display: initial;
}
.responsive-iframe-container {
  position: relative;
  padding-bottom: 125%;
  padding-top: 30px;
  height: auto;
  overflow: hidden;
  }
}


/*---Firefox Bug Fix --*/
.carousel-item {
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
/*--- Fixed Background Image --*/
figure {
  position: relative;
  width: 100%;
  height: 60%;
  margin: 0!important;
}
.fixed-wrap {
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#fixed {
  background-image: url('img/mac.png');
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}
/*--- Bootstrap Padding Fix --*/
[class*="col-"] {
    padding: 1rem;
}
