:root {
    --primary-color: #2A2109;
    --secondary-color: #DFBE63;
    --tertiary-color: #B6C596;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.header {
    background-color: var(--primary-color);
    height: 100px;
}

.navbar-nav {
    gap: 20px;
}

.navbar-nav .nav-link {
    color: #FEFDFB;
    font-size: 18px;
    font-weight: 400;
}

.userMenuWrapper {
    background: var(--secondary-color);
    border-radius: 12px;
    color: #292D32;
}

.userMenuWrapper i {
    color: #292D32;
    font-size: 18px;
    font-weight: 400;
}

.userMenuWrapper .btn-link {
    color: #292D32;
    text-decoration: none;
    font-size: 18px;
}

.language-selector a {
    color: #FEFDFB;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
}

.home-hero {
    background-image: url('../images/home-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

.login-hero {
    background-image: url('../images/login-hero.jpg');
    background-size: cover;
    background-position:  top center;
    background-repeat: no-repeat;
    height: 645px;
    margin-top: -100px;
    text-align: center;
    vertical-align: middle;
}

.content-wrapper {
    background-color: #FEFDFB;
    padding-top: 50px;
    padding-bottom: 50px;
}

.content-top {
	background-image: url('../images/content-top.png');
	background-size: 100%;
	background-position: top center;
	background-repeat: no-repeat;
	height: 34px;
	margin-top: -14px;
}

.content-bottom {
	background-image: url('../images/footer-top.png');
	background-size: 100%;
	background-position: top center;
	background-repeat: no-repeat;
	height: 34px;
	margin-bottom: -20px;
}

footer {
    background-color: var(--primary-color);
    color: #fff;
}

.f20 {
    font-size: 20px;
}

.f22 {
    font-size: 22px;
}

.fw700 {
    font-weight: 700;
}

.list-unstyled {
    padding: 0;
    margin: 0;
}

.footerlinks a {
    color: #FEFDFB;
    text-decoration: none;
}

.login-wrapper input[type="submit"] {
    background-color: var(--secondary-color);
    color: #000;
    font-size: 22px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
}

.forgot-password {
    color: #000;
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #000;
    font-weight: 700;
    font-size: 22px;
}

table.tca {
    border-radius: 24px;
    box-shadow: 0px 0px 30px 1px #0000000A;
}

table.tca th,
table.tca tr.heading td {
    background-color: #FCFCFC;
    border-bottom: 1px solid #F4F4F4;
}

table.tca th {
    padding: 10px;
}

table.tca td {
    padding: 8px;
}

.buttonv2 {
    font-weight: 400;
    font-size: 12px;
    padding: 5px 20px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    margin-left: 8px;
    margin-right: 8px;
}

.buttonv2-green {
    background-color: #DFFDCA;
    color: #2A2109;
    text-decoration: none;
}

.buttonv2-yellow {
    background-color: #FFFF99;
    color: #2A2109;
    text-decoration: none;
}

.buttonv2-pink {
    background-color: #FFCFF6;
    color: #2A2109;
    text-decoration: none;
}

.itemBox {
    margin-bottom: 10px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.bg-tertiary {
    background-color: var(--tertiary-color);
}