* {
	margin: 0;
	padding: 0;
}

body {
	background-color: #5d84e4;
	font-family: Helvetica;
	color: white;
	height: 100vh;
	width: 100vw;
}


.header-main-container {
	width: 100%;
	min-height: 1024px;
}

.full-bg {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.flexbox {
	display: flex;
}

.flex-row {
	flex-direction: row;
}

.flex-column {
	flex-direction: column;
}

.align-items-center {
	align-items: center;
}

.align-self-center {
	align-self: center;
}

.margin-align-center {
	margin: auto;
}

.justify-content-center {
	justify-content: center;
}

.justify-space-between {
	justify-content: space-between;
}

.justify-space-around {
	justify-content: space-around;
}

.bold-text {
	font-weight: bold;
}

.fill {
	min-width: inherit;
	min-height: inherit;
}

.full-width {
	width: 100vw;
}

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

.accent-box {
	padding: 2em;
	background-color: rgba(93, 132, 228, 0.5);
	box-shadow: inset 0 0 10px #000000;
	border-radius: 5px;
}

nav {
	min-height: 60px;
	/*background-color: #5d84e4;*/
}

footer {
	background-color: #fdfdfd;
	min-height: 200px;
}

.bg-image {
	background-image: url('../../../media/template/landing/background01.webp');
}

.nav-left {
	margin-left: 1em;
}

.nav-right {
	margin-right: 1em;
}

.nav-site-link {
	font-size: 20px;
	font-weight: 600;
	color: white;
	text-decoration: none;
}

.nav-site-link:active {
	color: white;
}

.nav-site-link:hover {
	color: white;
}

.nav-contact {
	padding: 0.5em 1em 0.5em 1em;
	border-radius: 10px;
	background-color: #d96283;
	font-weight: bold;
	border: 3px solid rgba(0,0,0,0.3);
	box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.nav-contact:hover {
	background-color: #f5777d;
	box-shadow: inset 0 0 10px rgba(255,255,255,0.5);
	border: 3px solid rgba(255,255,255,0.3);
}

.nav-contact > a {
	color: #FFFFFF;
	text-decoration: none;
}

.nav-contact > a:active {
	color: #FFFFFF;
}

.nav-contact > a:visited {
	color: #FFFFFF;
}

.crmbl-logo-container {
	padding: 1em;
	background-color: #f5777d;
	border-radius: 50%;
	margin: 2em;
	overflow: hidden;
	width: min-content;
}

.crmbl-logo {
	max-height: 150px;
	width: auto;
	border-radius: 50%;
}

.footer-text {
	color: #f5777d;
	font-size: 18px;
	width: min-content;
	margin: 0 2em 0 2em;
}

.footer-text > h2 {
	width: min-content;
	text-align: center;
}

.footer-text > p {
	width: fit-content;
	align-self: center;
}

.footer-site-name {
	color: #5d84e4;
	min-width: 300px;
}

.footer-site-name > a {
	color: #5d84e4;
	text-decoration: none;
}

.footer-site-name > a:visited {
	color: #5d84e4;
}

.footer-site-name > a:active {
	color: #5d84e4;
}

.crmbl-cms-text {
	color: white;
	font-size: 12px;
	background-color: #5d84e4;
	padding: 0.25em 0.5em 0.25em 0.5em;
	border-radius: 25px;
}

.crmbl-cms-link {
	color: white;
	text-decoration: none;
}

.crmbl-cms-link:hover {
	color: white;
}

.crmbl-cms-link:active {
	color: white;
	margin-left: 0.5em;
}

.contact-text {
	width: fit-content;
	color: #333333;
	font-size: initial;
	margin: 0 2em 0 2em;
}

.footer-items {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
}

.footer-contact {
	padding: 0.5em 1em 0.5em 1em;
	font-size: 18px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #f5777d;
	text-align: center;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.footer-contact-title {
	border-top: 2px solid #f5777d;
	border-left: 2px solid #f5777d;
	border-right: 2px solid #f5777d;
	background-color: #FFFFFF;
	color: #5d84e4;
	padding: 0 0.5em 0 0.5em;
	font-size: 14px;
	font-weight: bold;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.footer-contact > a {
	text-decoration: none;
	color: white;
}

.footer-contact > a:visited {
	color: white;
}

.footer-contact > a:active {
	color: white;
}


/* Mobile Styles */
/* For screens no wider than 767px */
@media only screen and (max-width: 767px) {
    /* Your mobile styles here */
    body {
        background-color: var(--article-bg-color);
    }

	.crmbl-logo-container {
		padding: 0.5em;
	}

	.footer-text {
		margin-bottom: 2em;
	}

	.crmbl-logo {
		max-height: 125px;
		width: auto;
	}

	.contact-text {
		margin: 2em auto 2em auto;
	}

	#contact-text {
		width: 100%;
		background-color: rgba(93, 132, 228, 0.3);
	}

}
  
  /* Tablet Styles */
  /* For screens between 768px and 1023px */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    /* Your tablet styles here */
    body {
        background-color: var(--article-bg-color);
    }

	.footer-text {
		min-width: 384;
	}
}
  
  /* Desktop Styles */
  /* For screens wider than 1024px */
@media only screen and (min-width: 1024px) {
    /* Your desktop styles here */
    body {
        background-color: var(--article-bg-color);
    }
}