.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-white {
	color: #fff;
}

.line-height-x2 {
	line-height: 2rem;
}

.hide {
	display: none;
}

.ml-10 {
	margin-left: 10rem;
}

.ml-20 {
	margin-left: 20rem;
}

.mt-3 {
	margin-top: 3rem !important;
}

.mt-4 {
	margin-top: 4rem !important;
}


.btn, a.btn, a:visited.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; 
}

.btn.btn-invert, a.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%
}