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

.text-right {
	text-align: right;
}

.text-white {
	color: #fff;
}

.line-height-x2 {
	line-height: 2rem;
}

.hide {
	display: none !important;
}

.ml-10 {
	margin-left: 10rem;
}

.ml-20 {
	margin-left: 20rem;
}
/* 
.mt-3 {
	margin-top: 3rem !important;
}

.mt-4 {
	margin-top: 4rem !important;
} */

.inline {
    display: inline;
}

/* temporary btn class. refactor to use the main2024 eventually! */
.btn {
    text-transform: uppercase;
    background-color: #052f3f;
    font-weight: bold;
    height: 3rem;
    line-height: 1rem;
    color: white;
    text-decoration: none;
    padding: 1rem 4rem;
    transition: all 300ms ease-in-out;
    border-radius: 0;
    white-space: nowrap; /* Prevents text from wrapping */
    display: inline-block; /* Ensures it behaves like a button */
  }

a.opn-btn, a:visited.opn-btn {
	display: block;
    text-transform: uppercase;
    background-color: #052f3f;
    font-weight: bold;
    height: 2rem;
    line-height: 2rem;
    color: white;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
	width: fit-content;
    padding: 1rem 4rem;
    cursor: pointer;
    font-size: 1rem;
    transition: all 300ms ease-in-out; 
}

.opn-btn.btn-invert, a.opn-btn.btn-invert {
    background-color: white;
    color: #052f3f;
    border: 2px solid #052f3f;
}

/* .btn:hover {
    background-color: white;
    border: 2px solid #0B303F;
    color:#0B303F;  
} */

.btn.btn-invert:hover, a.btn.btn-invert:hover {
    background-color: #0B303F;
    border: 2px solid white;
    color:white;  
}

.lh-1-5 {
    line-height: 1.5rem;
}

.h-full {
    height:100%
}