/* your styles go here */
body {
    max-height: 100vh;
    overflow: hidden;
}

:root {
    --primary-color: #bca45c;
    --primary-dark-color: #d3b354;
}

.bg-trans {
    background-color: transparent !important;
}

.pt-200 {
    padding-top: 200px;
}

h1 span {
    color: var(--primary-dark-color) !important;
}

.page-holder .overlay {
    background-color: rgba(0, 0, 0, 0.617);
}

@media screen and (min-width:768px) {
    .header {
        display: flex;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }
}

@media screen and (max-width:767px) {
    .header{
        display: flex;
        justify-content: space-around;
    }
    .header li {
        display: list-item;
        margin: 0;
    }
    .header li:not(:last-child) {
        margin-bottom: 15px;
    }
}


.header>ul {
    display: inline-block;
    margin-bottom: 0;
    padding: 0 15px;
}

.social-link {
    position: relative;
    width: 40px;
    height: 40px;
    transition: all 0.8s ease-in-out;
    flex-shrink: 0;
}

.social-link-amazon img {
    border: 5px solid #ff9900;
    border-radius: 50px;
    padding: 5px;
}

.btn-primary {
    background-color: #bca45c;
    border-color: #bca45c;
}


.slogan strong {
    color: var(--primary-color);
    font-weight: 800;
}


.footer-top,
.footer-bottom {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 5px;
}

.footer-top i {
    margin-right: 5px;
}

.footer-top a {
    transition: all .5s ease-in-out;
    text-decoration: none;

}

.footer-top a:hover {
    color: var(--primary-color) !important;

}


.footer-bottom p {
    margin: 0;
    padding-top: 15PX;
}