@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');

html,
body {
  color: #222;
}

.nav-link {
  font-size: 1.1rem !important;
}

.carousel-inner img {
  width: 100%;
  /* height: calc(100vh - 75px); */
  object-fit: contain;
}

.contact_info_content {
  text-align: center;
}

#climb {
  top: 0;
  bottom: auto; 
  color: white;
}

#happy {
  top: 0;
  bottom: auto; 
  color: black;
}

#list {
  display: inline-block;
  vertical-align: center;
}

#list2 {
  display: inline-block;
  vertical-align: center;
}

.welcome {
  width: 75%;
}

.welcome hr {
  width: 90%;
}

hr.light {
  background: #777;
  width: 80%;
}

table {
  border: 1px solid black;
  width: 100%;
  text-align: center;
}




/*---Media Queries --*/
@media (max-width: 992px) {
}

@media (max-width: 768px) {
  .carousel-caption {
    transform: translateY(-80%);
  }
  .carousel-caption h1 {
    font-size: 4rem;
    font-weight: bold;
  }
  .welcome .display-4 {
    font-size: 3rem;
  }
  .social a i {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .social a i {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .carousel-caption {
    left: 5%;
    right: 5%;
  }
  .carousel-caption h1 {
    font-size: 3rem;
  }
  .welcome {
    width: 100%;
  }
  footer h4 {
    display: inline-block;
    width: 60%;
  }
  footer h4.border-top {
    border-top: 0 !important;
  }
}

@media (max-width: 400px) {
  .carousel-caption {
    transform: translateY(-20%);
    left: 1%;
    right: 1%;
  }
  .welcome .display-4 {
    font-size: 2.5rem;
  }
}

/*---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;
}

/*
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) { ... }
*/
