/* Remove the navbar's default rounded borders and increase the bottom margin */ 
body {
  font: 400 15px Lato, sans-serif;
  line-height: 1.8;
  background-color: #000000;
  position: relative;
}


/* Remove the jumbotron's default bottom margin */ 
.jumbotron{
  margin-bottom: 0;
  z-index: 9999;
  background-color: #000000;
  color: #FFD700;
  padding: 5px;
}

.jumbotron h4{
  color:#FFD700;
}

.affix {
  top:0;
  width: 100%;
  z-index: 9999 !important;
}
.navbar {
  margin-bottom: 35px;
  margin-top: 0px;
  border: 0;
  background-color: rgb(124,123,121);
  font-size: 12px !important;
  line-height: 1.42857143 !important;
  letter-spacing: 4px;
  border-radius: 0;
  font-family: Montserrat, sans-serif;
  color: #FFFFFF;
}

.affix ~ .container-fluid {
   position: relative;
   top: 50px;
}

.navbar li a, .navbar .navbar-brand {
  color: #ffd700 !important;
}

.navbar ul h4, .navbar .navbar-brand {
  color: #FFFFFF !important;
}

.navbar-nav li a:hover {
  color: #000000 !important;
  background-color: #fff !important;
}

.navbar-nav li a.active {
  color: #000000 !important;
  background-color: #fff !important;
}

.navbar-default .navbar-toggle {
  border-color: transparent;
  color: #fff !important;
}


/*Social Media*/
.fa {
  padding: 9px;
  font-size: 30px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  margin: 10px 1px;
  border-radius: 45%;
}

.fa:hover {
    opacity: 0.7;
}
.fa-twitter {
  background: #55ACEE;
  color: white;

}
.fa-instagram {
  background: #125688;
  color: white;

}


/*Carousel*/

.carousel-control.right, .carousel-control.left {
  background-image: none;
  color: #FFFFFF;
}

.carousel-indicators li {
  border-color: #FFFFFF;
}

.carousel-indicators li.active {
  background-color: #FFFFFF;
}

.item h4 {
  font-size: 19px;
  line-height: 1.375em;
  font-weight: 400;
  font-style: italic;
  margin: 70px 0;
}

.item span {
  font-style: normal;
}

.carousel-inner .item img,
.carousel-inner .item a img {
  width: 50%;
  margin: auto;
}



.bg-about{
  height: 100%; 
}

.bg-services p{
  color: #FFD700; 
}

.bg-submit{
  color:#000000;
}

.bg-1{
  background-color:#000000;
  color: #FFD700;
}

.bg-1 h2{
  color:#FFD700; 
}

.bg-1 h4{
  color:#FFD700; 
}
.bg-1 img{
  width: 15%;
  margin: auto;
}

.bg-contact p{
  color:#FFD700;
}

.bg-job-app p{
  color:#FFD700;
}

.bg-2{
  background-color:#000000;
  color: #FFD700;
}

.bg-2 h2{
  color:#FFD700;
  text-align: center; 
}

.bg-store h1{
  color:#FFFFFF;
}

.responsive {
  width: 100%;
  max-width: 550px;
  height:auto;
}

.responsive2 {
  width: 100%;
  max-width: 300px;
  height:auto;
}

/*Checkout page*/


.rows {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; 
  flex-wrap: wrap;
  margin: 0 -16px;
}

.col-25 {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
}

.col-50 {
  -ms-flex: 50%; /* IE10 */
  flex: 50%;
}

.col-75 {
  -ms-flex: 75%; /* IE10 */
  flex: 75%;
}

.col-25,
.col-50,
.col-75 {
  padding: 0 16px;
}

.bg-checkout {
  background-color: #f2f2f2;
  padding: 5px 20px 15px 20px;
  border: 1px solid lightgrey;
  border-radius: 3px;
}

input[type=text] {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

label {
  margin-bottom: 10px;
  display: block;
}

.icon-container {
  margin-bottom: 20px;
  padding: 7px 0;
  font-size: 24px;
}

.btn {
  background-color: #4CAF50;
  color: white;
  padding: 12px;
  margin: 10px 0;
  border: none;
  width: 100%;
  border-radius: 3px;
  cursor: pointer;
  font-size: 17px;
}

.btn:hover {
  background-color: #45a049;
}

span.price {
  float: right;
  color: grey;
}

span.span{
  text-align: center;
}



/* Add a gray background color and some padding to the footer */
footer {
  margin-bottom: -10px; 
  background-color: rgb(124,123,121);
  color: #FFFFFF;
  padding: 0px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}


.slideanim {visibility:hidden;}

.slide {
  animation-name: slide;
  -webkit-animation-name: slide;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  visibility: visible;
}

  /* Hide the carousel text when the screen is less than 600 pixels wide */
@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(70%);
  } 
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70%);
  } 
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other (and change the direction - make the "cart" column go on top) */


@media (max-width: 800px) {
  .row {
    flex-direction: column-reverse;
  }
  .col-25 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-4 {
    text-align: center;
    margin: 25px 0;
  }
  .btn-lg {
      width: 100%;
      margin-bottom: 35px;
  }
}
@media screen and (max-width: 480px) {
  .logo {
      font-size: 150px;
  }
}