/************ DEFAULTS LAYOUT ************/
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

.bkg-primary{
  background-color: #1da1f2;
}

.button-primary {
  background-color: #1da1f2;
  border: 1px solid #1da1f2;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.button-primary:hover {
  background-color: #1a8ed6;
  border: 1px solid #1a8ed6;
}

.button-outline-primary {
  border: 1px solid #1da1f2;
}

.button-outline-primary:hover {
  background-color: #1da1f2;
  border: 1px solid #1da1f2;
}

i {
  color: #fff;
}

.brand-name {
  font-family: "Galada", cursive;
  font-weight: 400;
  font-size: 32px;
}

/************ INDEX LAYOUT ************/
#home {
  z-index: 0;
}

#services {
  background-color:#1da1f2;
  z-index: 1;
}

#destinations {
  /* background-color: #333333; */
  background-color: #f26e1d;
}

.city-destination {
  background-color: #cccccc;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.service-card-custom {
  justify-content: center;
  text-align: center;
  height: 150%;
}

/************ CONTACT LAYOUT ***********/

.contact-form {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 9px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 3%;
}

/************  FOOTER LAYOUT ************/

.img-footer {
  background-repeat: no-repeat;
  background-position: bottom center;
  display: block;
  height: 50vh;
  margin-bottom: 0;
  position: relative;
  width: 100%;
  z-index: -1;
}

.footer-context {
  background-color: #1da1f2;
  color: #fff;
  display: block;
  position: absolute;
  text-align: center;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hours-of-operation-list {
  list-style-type: none;
}

.get-in-touch {
  border-left: 1px solid #000;
}

/************  MOBILE LAYOUT ************/

@media only screen and (max-width: 1000px) {
  .get-in-touch {
    border: none;
  }

  .img-footer {
    height: 30vh;
  }

  .footer-context {
    background-color: #1da1f2;
    color: #fff;
    display: block;
    position: absolute;
    text-align: center;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
}

@media only screen and (max-width: 450px) {
  .get-in-touch {
    border: none;
  }

  .img-footer {
    height: 20vh;
  }

  .footer-context {
    background-color: #1da1f2;
    color: #fff;
    display: block;
    font-size: 12px;
    text-align: center;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 1;
  }
}