* {
    margin: 0;
    padding: 0;
}

html, body {
    scroll-behavior: smooth;
  }
  
  @media (max-width: 800px) {
    html, body {
    overflow-x: hidden;
    
    }
  }

/* logo */
.navbar-brand img {
    height: 50px;
}

/* index page */
.index-logo {
    margin: auto;
    display: block;
    text-align: center;
}

/* background image */
.bg-img-div {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(255, 255, 255, 0.0)), url("images/wallpaper.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

/* nav bar */
.custom-nav-items a {
    color: white;
}

.custom-nav-items a:hover {
    color: #DEA81C;
}

/* title home */
.custom-h1 h1 {
    font-weight: 500;
}

/* titles */
.gold-text {
    color: #DEA81C;
}

.white-text {
    color: white;
}

.typewriter h1 {
    width: auto;
    display: inline-block;
    overflow: hidden;
    border-right: .15em solid white;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: typing 3.5s steps(100, end),
        blink-caret .75s step-end infinite;
}

@keyframes typing {
    from {
        max-width: 0
    }

    to {
        max-width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: #DEA81C
    }
}


/* cards */

/* section bg */

.brown-bg {
    background-color: #242121;
}

.gold-bg {
    background-color: #DEA81C;
}

.green-bg {
    background-color: #56705B;
}

.ham-icon {
    color: #DEA81C;
}

.home-sec {
    min-height: 100vh;
}

.justify-txt {
    text-align: justify;
}

.gold-btn {
    background-color: #DEA81C;
    border: 0;
}

.gold-btn:hover {
    background-color: #56705B;
}

.custom-card-style {
    padding: 0 !important;
    margin: 0 !important;
    border: 0px !important;
}

.custom-card-style h5 {
    color: #56705B;
    text-align: center;
}

.custom-card-style p {
    color: #DEA81C;
    text-align: center;
    padding: 0;
    margin: 0;
}

.custom-card-style img {
    width: 100%;
    /* height: 40%; */
    object-fit: cover;

}

.custom-card-style a {
    text-decoration: none;
}

.card-spacing {
    border: 10px solid transparent;
    padding: 0;
}

.card-img-top {
    width: 100%;
    max-height: 30vh;
    object-fit: contain;
}