body { padding-top: 56px; }
.left-aligned { margin-left: auto; }
.bg-dark { background-color: #343a40 !important; }
.bg-hero { background-color: #45b06cff; }

html, body {
  height: 100%;
  width: 100%;
  font-family: 'poppins', sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: #222;
  background-color: rgb(220, 191, 153);
}

/* CALLOUT */
.bd-callout { padding:1.25rem; margin-top:1.25rem; margin-bottom:1.25rem; border:1px solid #e9ecef; border-left-width:.25rem; border-radius:.25rem }
.bd-callout h4 { margin-bottom:.25rem }
.bd-callout p:last-child { margin-bottom:0 }
.bd-callout code { border-radius:.25rem }
.bd-callout+.bd-callout { margin-top:-.25rem }
.bd-callout-info { border-left-color:#5bc0de }
.bd-callout-warning { border-left-color:#f0ad4e }
.bd-callout-danger { border-left-color:#d9534f }

/* footer */
footer a {color:#222; font-weight: bold; text-decoration: none; }
footer a:hover { color: rgb(121, 169, 241); text-decoration: underline; }

.page-footer {
  padding-top: 2rem;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgb(183, 131, 63) !important;
}


/*---Firefox Bug Fix --*/
.carousel-item {
transition: -webkit-transform 0.5s ease !important;
transition: transform 0.5s ease !important;
transition: transform 0.5s ease, -webkit-transform 0.5s ease !important;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
/*--- 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;
}

.navbar {
  padding: 0.8rem;
  background-color: rgb(183, 131, 63) !important;
}

.navbar-nav li {
  padding-right: 20px;
}

.nav-link {
  font-size: 1.1em;
}

.carousel-inner img {
  width: 100%;
  height: 100%;
}
.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* bottom: initial; */
}

.carousel-caption h1 {
  font-size: 500%;
  text-transform: uppercase;
  text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.8);
  font-weight: bold;
  color: #fff;
}

.carousel-caption h3 {
  font-size: 200%;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
  font-weight: 500;
  color: #fff;
  padding-bottom: 1rem;
}
.btn-primary {
  background-color: rgb(121, 197, 214);
  border: 1px solid rgb(82, 133, 145);
}

.btn-primary:hover {
  background-color: rgb(82, 133, 145);
  border: 1px solid rgb(121, 197, 214);
}
.jumbotron {
  padding: 1rem;
  border-radius: 0%;
}

.padding {
  padding-bottom: 2rem;
}
.welcome {
  width: 75%;
  padding-top: 2rem;
  margin: 0px auto;
}
.welcome hr {
  border-top: 2px solid #333;
  width: 95%;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}

.socail a {
  font-size: 4.5em;
  padding: 3rem;
}
hr-light, hr-dark {
  border-top: 1px solid #333;
  width: 75%;
  margin-top: 0.8rem;
  margin-bottom: 1rem;
} 
hr-light-100 {
  width: 100%;
  border-top: 1px solid #333;
  margin-top: 0.8rem;
  margin-bottom: 1rem;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #fff;
  z-index: 2;
}

.flip-card-back {
  background-color: #f8f9fa;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
/*
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) { ... }
*/