@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;600;800&display=swap');
body {
    background-image: url('../assets/img/background.jpg');
    background-repeat: repeat-y;
    background-attachment: fixed;
    background-size: cover;
    
    font-size: 18px;
    font-family: Raleway;
    
    overflow-x: hidden;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */

    word-break: break-word;
}
button {
    transition: transform .2s, background .3s !important;
}
button:hover {
    transform: scale(1.02, 1.02);
}
button:focus {
    outline: none;
}
button:active {
    transform: scale(0.97,0.97);
}
p {
    margin: 0;
}
a {
    cursor: pointer;
    color: #212529;
}
a:hover {
    color: #b8850b;
}
.navbar {
    -webkit-box-shadow: 0px 5px 16px -8px #000000; 
    box-shadow: 0px 5px 16px -8px #000000;
    
    border-bottom: 2px solid #b8850b;
}
.nav-item {
    font-size: 1.2rem;
    margin-left: 2rem;
}
.logo {
    margin-top: 10rem;
    margin-bottom: 15rem;
}
.section {
    background: #ffffff;
    padding: 3rem 6rem;
    margin-bottom: 5rem;
}
.flyer-button {
    width: 100%;
    background: #ededed;
    color: #b8850b;
    border: 2px solid #adadad;
    padding: 1rem;
    transition: background .3s;
}
.flyer-button:hover {
    background: #dfdfdf;
}
.object {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    padding: 1rem;
    background: #ededed;
}
.object-image {
    max-height: 220px;
    object-fit: cover;
}
.object-button {
    width: 100%;
    background: #212529;
    color: #b8850b;
    border: none;
    padding: 1rem;
    transition: background .3s;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-decoration: none;
    text-align: center;
    -webkit-border-radius:0px;
    border-radius: 0px;
}
.object-button:hover {
    background: #3a3b3d;
}
.footer-fixed {
    background: #ffffff;
}
.footer-sticky {
    -webkit-box-shadow: 0px -3px 16px -8px #000000; 
    box-shadow: 0px -3px 16px -8px #000000;

    border-top: 2px solid #b8850b;
    border-bottom: none;
}
.footer-icon{
    margin: auto;
    margin-top: 4px;
}
.text-justify {
    text-align: justify;
}
.color-gold {
    color: #b8850b;
}
.color-white {
    color: #ffffff;
}
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}
@media screen and (max-width: 601px) {
    body {
    }
    .section {
        padding: 2rem;
    }
}

/* ARROW BOUNCE PLUGIN */

.gg-arrow-down {
    transform: scale(2, 2);
}
.arrow {
  text-align: center;
  margin: auto;
  width: 1rem;
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

/* FIX IOS BORDER RADIUS */
textarea,
a,
input[type="text"],
input[type="button"],
input[type="submit"] {
     -webkit-appearance: none;
     border-radius: 0;
}