html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Roboto", sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.5;
	height: 100vh;
	display: flex;
	flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
	color: #446463;
	font-weight: 500;
}

strong {
	color: #446463;
	font-weight: 500;
}

.mt-1 {
	margin-top: 1rem !important;
}

.mt-2 {
	margin-top: 2rem !important;
}

.mt-3 {
	margin-top: 3rem !important;
}

.mb-1 {
	margin-bottom: 1rem !important;
}

.mb-2 {
	margin-bottom: 2rem !important;
}

.mb-3 {
	margin-bottom: 3rem !important;
}

.my-1 {
	margin-top: 1rem !important;
	margin-bottom: 1rem !important;
}

.my-2 {
	margin-top: 2rem !important;
	margin-bottom: 2rem !important;
}

.my-3 {
	margin-top: 3rem !important;
	margin-bottom: 3rem !important;
}

.mr-1-desktop {
	margin-right: 0;
}

.background-light-green {
	background-color: #82A198;
}

.background-green {
	background-color: #446463;;
}

/* navbar */
/*.navbar {
	background-color: #fff;
	padding: 1em;
}*/

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

.navbar {
	background-color: #fff;
	width: 100%;
	margin-bottom: 1rem;
}

.navbar .navbar-header {
	padding: 1rem;
	text-align: center;
	font-weight: 500;
}

.navbar .navbar-body {
	position: relative;
}

.container {
	padding: 0 15px;
	margin-left: auto;
	margin-right: auto;
	clear: both;
	max-width: 960px;
}

.navbar-wrapper {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-top: 15px;
}

.navbar-items {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	list-style: none;
	justify-content: flex-end;
	padding: 3rem 0;
	margin: 0;
}

.navbar-item {
	padding: 1rem;
}

.navbar-link {
	text-decoration: none;
	color: #000;
}

.navbar-link:hover {
	opacity: .6;
}

.navbar-link.current-page {
	color: #446463;
	font-weight: 500;
}


/* navbar side menu */
#navbar-show-btn {
	position: absolute;
	right: 10px;
	top: 10px;
	background-color: transparent;
	border: none;
	width: 40px;
	height: 40px;
	font-size: 20px;
}

#navbar-close-btn {
	position: absolute;
	right: 0;
	background: none;
	border: none;
	margin: 1rem;
	font-size: 25px;
	color: #000;
}
#navbar-collapse {
	display: none;
    background-color: #fff;
    font-family: 'Roboto Slab', sans-serif;
    font-size: 18px;
    font-weight: 400;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    z-index: 2;
    /*-webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);*/
}

#navbar-collapse.open {
	display: block;
}

.navbar-logo {
	width: auto;
	height: 100px;
}

.navbar-logo-wrapper {
	width: 100%;
	height: 100%;
}

.navbar-logo-img {
	width: 100%;
	height: 100%;
}


/* banner */
.banner {
	position: relative;
	height: 180px;
	width: 100%;
}

.banner::before {    
      content: "";
      background-image: url('../images/landscape.jpg');
      background-size: cover;
      background-position: center;
      position: absolute;
      top: 0px;
      right: 0px;
      bottom: 0px;
      left: 0px;
      opacity: 0.3;
}

/*.banner-img {
	height: 100%;
	width: 100%;
	background-position: center;
	background-image: url('../images/landscape.jpg');
}*/

.banner-wrapper {
	height: 100%;
	width: 100%;
}

.banner-logo {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	overflow: hidden;
}

.banner-logo-img {
	width: auto;
	height: auto;
}

main {
	margin-bottom: 5rem;
}

.link {
	font-weight: 500;
	color:#446463;
	text-decoration: none;
}

/*.text-block {
	border: 1px solid #000;
	padding: 1rem;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
}*/

/* flexitems */
	.flex-container-2 {
		display: flex;
		flex-direction: column;
	}

	.flex-item-2 {
		display: flex;
		flex-direction: row;
		text-align: center;
	    margin: .5rem 0;
	    flex: 1 1 0;
	    text-decoration: none;
	    border-radius: 15px;
	    border: 1px solid #446463;
	    -moz-border-radius: 15px;
		-webkit-border-radius: 15px;
	}

	.flex-item-2:hover {
		box-shadow: 0 0 5px #446463;
	}

	.flex-item-2:first-child {
		margin-left: 0;
	}

	.flex-item-2:last-child {
		margin-right: 0;
	}

	.flex-img-2 {
		width: 100px;
		height: auto;
		aspect-ratio: 3/2;
		border-radius: 15px 0px 0px 15px;
		-moz-border-radius: 0px;
		-webkit-border-radius: 15px 0px 0px 15px;
	}

	.flex-label-2 {
	    font-size: 1rem;
	    color: #333;
	    padding: 1rem;
	    display: flex;
	    display: flex;
	    align-items: center;
	    width: 100%;
	    box-sizing: border-box;

	}

	.embedded-video {
		max-width: 100%;
	}


@media (min-width: 900px) {
	.flex-container-2 {
	    flex-direction: row;
	}

	.flex-item-2 {
		flex-direction: column;
		margin: 1rem;
	}

	.flex-img-2 {
		max-width: 100%;
		width: auto;
		border-radius: 15px 15px 0px 0px;
		-moz-border-radius: 0px;
		-webkit-border-radius: 15px 15px 0px 0px;
	}

	.flex-label-2 {
		justify-content: center;
	}

  }


/* footer */
footer {
	position: relative;
	margin-top: auto;
}

.footer {
	font-family: 'Roboto Slab', sans-serif;
	font-weight: 300;
	border-top: 1px solid #446463;

}

.footer .footer-header .logo-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.footer .footer-header .logo-wrapper .logo {
	width: 70px;
	height: 70px;
	margin: 15px;
}

.footer .footer-header .logo-wrapper .logo.cat-collective {
	width: 65px;
}

.footer .footer-header .logo-wrapper .logo .logo-image {
	width: 100%;
}

.footer .footer-header .logo-text {
	text-align: center;
	font-size: 12px;
}

.footer .footer-header .logo-text p {
	margin-top: 0;
}


.footer .footer-body {
	color: #fff;
	background-color: #446463;
}

.footer .footer-row {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 0 -15px;
}

.footer .footer-accordion {
	display: flex;
	flex-direction: column;
	width: 100%;
	border-bottom: solid #fff 1px;
}

.footer .footer-accordion .footer-title {
	font-weight: 500;
	font-size: 20px;
	color: #fff;
	margin: 0;
	padding: 20px 15px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}


.footer .footer-accordion.open .footer-title .icon {
	transform: rotate(180deg);
}

.footer .footer-section {
	display: none;
	padding: 15px;
}

.footer .footer-section .footer-item {
	margin: 8px 0;
}

.footer .footer-item .footer-link {
	text-decoration: none;
	color: #fff;
}

.footer .footer-foot {
	color: #446463;
	background-color: #fff;
	text-align: center;
}

.footer .footer-accordion .footer-section {
	display: none;
}

.footer .footer-accordion.open .footer-section {
	display: block;
}

/* Card */
.card-container {
	display: flex;
	flex-direction: column;
}

.card-block {
	display: flex;
	flex-direction: column;
}

.card {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 50px;
	text-decoration: none;
	background-color: #fff;
	color: #82A198;
	border: 1px solid #82A198;
	border-radius: 5px;
	margin: .25rem 0;
}

.card:hover {
	opacity: .5;
}


.card-img {
	width: 75px;
	height: 50px;
}

.card-btn {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 1em;
	width: 100%;
}

/* End card */

/* Text with image block */
.text-with-image {
	padding: 15px 0;
}

.text-with-image .header {
	color: #446463;
}

.text-with-image-wrapper {
	display: flex;
	flex-direction: column;
}

.text-with-image-wrapper .text-block {


}

.text-with-image-wrapper .text-block .text {

}

.text-with-image-wrapper .image-block {
	display: flex;
	align-items: center;
}

.image {
	width: 100%;
	border-radius: 15px;
	box-shadow: 0px 0px 1px #446463;
}
/* End text with image block */




/* CONTACT PAGE */
.flex-container {
	display: flex;
	flex-direction: column;
}

.flex-item {
	flex-basis: 100%;
}

.contact-item {
	display: block;
}

.maps {
	width: 100%;
}

.maps iframe {
	width: 100%;
	height: 450px;
}

/* CONTACT FORM */
.contact-container {
	margin-bottom: 3rem;
}

#contact-form {
	background: #fff;
	display: flex;
	flex-direction: column;
	max-width: 600px;
	border-radius: 10px;
}

#contact-form h3 {
	margin-bottom: 20px;
}

#contact-form input, #contact-form textarea {
	border: 0;
	margin: 10px 0;
	padding: 20px;
	outline: none;
	background: #f5f5f5;
	font-size: 16px;
}

#contact-form button {
	padding: 15px;
	background: #446463;
	color: #fff;
	font-size: 18px;
	border: 0;
	outline: none;
	cursor: pointer;
	width: 150px;
	margin: 20px auto 0;
	border-radius: 30px;
}
/* END CONTACT FORM */

.shadow {
	box-shadow: 0px 0px 8px #888888;
}

.plain-text-block {
	padding: 15px;
/*	text-align: center;*/
	border-radius: 15px;
	background-color: #82A198;
	color: #fff;
}

.white {
	color: #fff;
}

.text-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
}


@media screen and (min-width: 992px) {
	.mr-1-desktop {
		margin-right: 1rem;
	}

	.navbar {
		margin-bottom: 4rem;
	}

	#navbar-collapse {
		position: relative;
		display: flex;
		width: 100%;
		height: auto;
		font-family: 'Roboto Slab', sans-serif;
		font-weight: 300;
	}

	.navbar-items {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		padding: 0;
	}


	#navbar-show-btn {
		display: none;
	}

	.banner {
		height: 300px;
	}

	main {
		margin-bottom: 10rem;
	}

	.card-container {
		flex-direction: row;
		justify-content: center;
	}

	.card-block {
		margin: 0 .25rem;
	}

	.text-with-image {
		padding: 2rem;
	}

	.text-with-image-wrapper {
		flex-direction: row;
	}

	.text-with-image-wrapper .image-block {
		min-width: 300px;
	}

	.text-block {

	}


	/* CONTACT PAGE */
	.flex-container {
		flex-direction: row;
	}

	/*.flex-text-block {
		padding: 15px;
	}*/

	.flex-item {
		padding: 15px;
	}

	.footer .footer-header .logo-wrapper .logo {
		width: 100px;
		height: 100px;
		margin: 15px;
	}

	.footer .footer-header .logo-wrapper .logo.cat-collective {
		width: 92px;
	}

	.footer .footer-body {
		padding-top: 2rem;
		padding-bottom: 2.5rem;
	}


	.footer .footer-row {
		flex-direction: row;
		justify-content: space-between;
	}

	.footer .footer-accordion {
		margin: 0 15px;
		border: none;
	}
	

	.footer .footer-accordion .footer-title {
		pointer-events: none;
	}

	.footer .footer-accordion .footer-section {
		display: block;
	}

}