:root{
    --color-primary: #1B262C;
    --color-secondary: #C1A055;
    --color-text: #252525;
    --color-accent: #EAC164;
}
body{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color:var(--color-text);
}
.color-gold{
    color:var(--color-secondary);
}
.bg-gold{
    background-color:var(--color-secondary);
}
.color-accent{
    color:var(--color-accent);
}
.bg-accent{
    background-color:var(--color-accent);
}

.logo-white{
    filter:invert(1);
}

.seperator{
    width:60px;
    border-top: 10px dotted #EAC164;
    padding-top: 15px;
    padding-bottom: 15px;
    display:inline-block;
}

.font-300{
    font-weight:300;
}
.text-justify{
    text-align: justify;
}
h1, .h1{
    font-size: 85px;
    font-weight: 600;
}
h2, .h2{
    font-size: 55px;
    font-weight: 600;
}
h3, .h3{
    font-size:45px;
}
h4, .h4{
    font-size: 35px;
    font-weight: 400;
}

h5, .h5{
    font-size: 18px;
    font-weight: bold;
}
h6, .h6{
    font-size: 13px;
    font-weight: 400;
}
p{
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
}
.btn{
    padding: 10px 35px 10px 35px;
    border-radius: 0;
    font-size: 20px;
}
.section-with-padding{
    padding:100px 0;
}

.img-fill-container{
    position:relative;
}
.img-fill-container.height-150{
    aspect-ratio: 2/3;
}
.img-fill-container.height-100{
    aspect-ratio: 1/1;
}
.img-fill-container img{
    height:100%;
    width:100%;
    object-fit:cover;
    object-position:center;
}
.hero {
    height: 100vh;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
}

.hero h4 {
    padding: 0px 0px 0px 0px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.hero .fa-chevron-down {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}
.card-24k {
    box-shadow: 0px 10px 20px -14px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s;
    text-align: center;
}

.card-24k:hover {
    box-shadow: 0px 15px 25px -14px rgba(0, 0, 0, 0.5);
}

.card-24k img {
    width: 85px;
}
footer .logo {
    width: 200px;
    filter: invert(1);
}

footer h6 {
    border-left: 3px solid #C1A055;
    padding-left: 10px;
    line-height: 1.2em;
}
footer a{
    text-decoration:none;
    color:#C1A055;
    font-size: 16px;
    font-weight:600;
}
footer a:hover{
    color:#C9C9C9;
}
footer p{
    color:#C9C9C9;
    font-weight:400;
    font-size: 16px;
}
footer i{
    position: relative;
    display: block;
    border: 1px solid #C1A055;
    width: 40px;
    height: 40px;
    font-size: 21px;
    text-align: center;
    padding: 8px;
}
@media screen and (max-width: 992px) {
    h1, .h1{
        font-size:45px;
    }
    h2, .h2{
        font-size:35px;
    }
    h3, .h3{
        font-size:28px;
    }
    .hero{
        height:70vh;
    }
    footer h6 {
        border-left:none;
        border-bottom: 3px solid #C1A055;
        padding-bottom:1rem;
    }
}