:root {
    --bs-body-color: #fff;
    --bs-body-color-rgb: 255,255,255;
    --bs-body-bg: #152030;
    --bs-body-bg-rgb: 21,32,48;
    --bs-border-radius: 3px;
    --bs-border-radius-lg: 4px;
    --bs-border-width: 2px;
    --bs-body-line-height: 1.5;
    --bs-primary-rgb: 181,154,90;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    color: var(--bs-body-color);
    line-height: var(--bs-body-line-height);
}

.btn-outline-primary {
    --bs-btn-color: #b59a5a;
    --bs-btn-border-color: #b59a5a;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #b59a5a;
    --bs-btn-hover-border-color: #b59a5a;
    --bs-btn-focus-shadow-rgb: 181,154,90;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #b59a5a;
    --bs-btn-active-border-color: #b59a5a;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #b59a5a;
    --bs-btn-disabled-border-color: #b59a5a;
}

.btn-primary {
    --bs-btn-bg: #b59a5a;
    --bs-btn-border-color: #b59a5a;
    --bs-btn-hover-bg: #b59a5a;
    --bs-btn-hover-border-color: #b59a5a;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-bg: #b59a5a;
    --bs-btn-active-border-color: #b59a5a;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-bg: #b59a5a;
    --bs-btn-disabled-border-color: #b59a5a;
}

.btn:hover {
    text-decoration: none;
}

.logo {
    position: absolute;
    z-index: 1;
    top: 30px;
    right: 30px;
}

.logo > img {
    vertical-align: middle;
    width: 120px;
}

.hero {
    position: relative;
}

.hero > picture {
    display: block;
    opacity: .325;
    height: 100vh;
    min-width: 360px;
    overflow: hidden;
}

.hero > div {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.hero > div > .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-weight: 700;
}

.feature {
    margin-bottom: 1.5rem;
    font-size: 16px;
}

@media (min-width: 992px) {
    .feature {
        margin-bottom: 3rem;
    }
}

.img-icon {
    background-color: rgb(var(--bs-primary-rgb));
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    margin-right: auto;
    margin-left: auto;
}

.card-title {
    font-size: 20px;
    line-height: 24px;
    text-align: center;
}

@media (min-width: 992px) {
    .img-icon {
        margin-left: 0;
    }

    .card-title {
        text-align: left;
    }
}
