body {
    padding-top: 126px;
	background: url("../img/bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
    background-attachment: fixed;
}
@media (max-width: 991px) {
    .nav-link {
        text-align: center;
        display: block;
    }
    .navbar-nav > li > .form-inline	{
        text-align: center;
        display: block;
    }
    #myForm {
        justify-content: center;
    }
}
#card{
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,.08);
      transition: 
      .3s transform cubic-bezier(.155,1.105,.295,1.12),
      .3s box-shadow,
      .3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12),
      .3s -moz-transform cubic-bezier(.155,1.105,.295,1.12);
    padding: 14px 80px 18px 36px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
	background: rgba(246,246,217,0.8) !important;
}
@media only screen and (max-width: 992px) {
  .navbar {
    background: rgb(246,246,217) !important;
    transition: background 200ms linear;
    color: #000;
  }
}
.navbar.scroled {
  background: rgb(246,246,217) !important;
  transition: background 200ms linear;
}
.nav-item {
    margin: 0 5px;
    font-size: large;
    font-weight: 600;
}
/*.nav-itemScroll {
    margin: 0 5px !important;
    font-size: medium   !important;
    font-weight: 400 !important;
}*/
nav, .nav-item, .navbar-brand, img {
    transition: .7s all;
    -webkit-transition: .7s all;
    -moz-transition: .7s all;
    -o-transition: .7s all;
}
.loader {
    display: none;
    position: absolute;
    height: 300px;
    width: 300px;
    background: #fff;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    animation: aniani02 3.5s linear;
    -webkit-animation: aniani02 3.5s linear;
    -moz-animation: aniani02 3.5s linear;
}
.line-1 {
    position: absolute;
    height: 300px;
    width: 300px;
    border-radius: 50%;
    border-left: 4px solid #8A5300;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    animation: ani01 2s linear;
    -webkit-animation: ani01 2s linear;
    -moz-animation: ani01 2s linear;
}
@keyframes ani01 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
.line-2 {
    position: absolute;
    height: 280px;
    width: 280px;
    border-radius: 50%;
    border-top: 4px solid #006607;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    animation: ani02 2s linear;
    -webkit-animation: ani02 2s linear;
    -moz-animation: ani02 2s linear;
}
@keyframes ani02 {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0);
    }
}
@keyframes aniani02 {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
    90% {
        transform: scale(0.8);
        opacity: 0;
    }
}
.loader img {
    position: absolute;
    height: 260px;
    border-radius: 50%;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.inner {
    overflow: hidden;
}
.inner > img:hover {
    transition: 1s ease;
    transform: scale(1.1);
}
form {
    -moz-appearance: none;
    -webkit-appearance: none;
}
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  border-radius: 50%;
  background-color: #a36338;
  color: #fff;
}
.ribbon {
    position: absolute;
    top: 10px;
    left: 2px;
    width: 25%;
    height: 30px;
    text-align: center;
    z-index: 1;
    color: #fff;
    font-weight: 600;
    background-color: #ec1010;
    line-height: 30px;
    border-radius: 30px;
    border-bottom-left-radius: 0;
    transition: 0.25s transform ease;
}
.ribbon::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    width: 10px;
    height: 15px;
    background-color: #9a3008;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
.ribbon::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    width: 10px;
    height: 8px;
    z-index: -1;
    background-color: #ec1010;
}