@keyframes slideIn {
    0% {
        height: 110vh;
    }
    50%{
        height: 85vh;
    }
    100% {
        height: 90vh;
    }
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
body {
    opacity: 0;
    animation: fadeIn 1s forwards;
  background-color: #F2E8D0;
  height: 100vh;
  position: relative; }
  body:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1; }
  body.offcanvas-menu:before {
    opacity: 1;
    z-index: 1002;
    visibility: visible; }


p {
  color: #000000;
  font-weight: 300;
    font-size: 1.3rem;
}
.headerText{
    color: lightgray;
}
.slide{
    animation: 1s 0s 1 slideIn;
}
.btn-primary, .bg-primary{
    background-color: #CCB581!important; ;
    border-color: #CCB581 ;
}
.btn-primary:hover{
    background-color: #a0811c!important;
    border-color: #a0811c ;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Agrandir", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a, a:hover {
    text-decoration: none !important; }

.headerBgMain {

    z-index: -1;
    background-attachment: fixed;
    height: 90vh;
  width: 100%;
  background-image: url("../img/temp-bg.jpeg");
    background-size: cover;
  background-position: center center;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
  background-repeat: no-repeat;

}
.nav-item{
    margin: 1.7rem;
}

    @media (max-width: 400px) {
        .logo {
            width: 75%;
        }
    }

/* Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  padding: 0px 0; }
  @media (min-width: 768px) {
    header {
      padding: 30px 0; } }
  header .navbar-brand {
      color: #FFF;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 800;
    font-size: 3rem; }
    header .navbar-brand.absolute {
      position: absolute; }
      @media (max-width: 991.98px) {
          .nav-item{
              margin: 0rem;
          }
        header .navbar-brand.absolute {
          position: relative; } }
    header .navbar-brand span {
      color: #ffffff; }
      @media (max-width: 768px) {
          .navbar-brand{
              color: black!important;
          }
          .nav-link{
              color: black!important;
          }
        header .navbar-brand span {
          color: #ced4da; } }
  header .navbar {
    background: #F2E8D0 !important;
    padding-top: .5rem;
    padding-bottom: .5rem; }
    @media (min-width: 768px) {
      header .navbar {
        padding-top: 0;
        padding-bottom: 0;
        background: none !important;
        position: relative; } }
    header .navbar .nav-link {
      padding: 1.7rem 1rem;
      outline: none !important;
      font-size: 1.4rem;
      color: rgba(255, 255, 255, 0.8) ; }
      @media (max-width: 1199.98px) {
        header .navbar .nav-link {
          padding: .5rem 0rem; } }
      header .navbar .nav-link.active {
        color: #ffffff ; }
    header .navbar .dropdown-menu {
      font-size: 14px;
      border-radius: 4px;
      border: none;
      -webkit-box-shadow: 0 2px 30px 0px rgba(0, 0, 0, 0.2);
      box-shadow: 0 2px 30px 0px rgba(0, 0, 0, 0.2);
      min-width: 13em;
      margin-top: -10px; }
      header .navbar .dropdown-menu:before {
        bottom: 100%;
        left: 10%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-bottom-color: #fff;
        border-width: 7px; }
        @media (max-width: 991.98px) {
          header .navbar .dropdown-menu:before {
            display: none; } }
      header .navbar .dropdown-menu .dropdown-item:hover {
        background: #007bff;
        color: #fff; }
      header .navbar .dropdown-menu .dropdown-item.active {
        background: #007bff;
        color: #fff; }
      header .navbar .dropdown-menu a {
        padding-top: 7px;
        padding-bottom: 7px; }
    header .navbar .cta-btn a {
      background: #007bff;
      color: #fff !important;
      text-transform: uppercase;
      font-size: .8rem;
      padding: 15px 20px !important;
      line-height: 1;
      font-weight: bold;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
      header .navbar .cta-btn a:hover {
        background: #fff;
        color: #007bff !important;
        -webkit-box-shadow: 2px 0 30px -5px rgba(0, 0, 0, 0.2);
        box-shadow: 2px 0 30px -5px rgba(0, 0, 0, 0.2); }
