@charset "UTF-8";

:root {
	--gux: 1.5rem;
	--guy: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
	:root {
		scroll-behavior: smooth;
	}
}

body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: black;
	background-color: #ffffff;
	scrollbar-width: none;
	/* for Firefox */
	overflow-y: scroll;
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-ms-overflow-style: none;
	/* for Internet Explorer, Edge */
}

body::-webkit-scrollbar {
	display: none;
	/* for Chrome, Safari, and Opera */
}


a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	opacity: 1;
	color: inherit;
}

p {
	margin-bottom: 0;
	margin-top: 0;
}

.hoverHand:hover {
	cursor: pointer;
}

.snapScrollWrapper {
	scroll-snap-type: y mandatory;
	height: 100vh;
	height: -webkit-fill-available;
	overflow-y: scroll;
}

section {
	padding-top: 50px;
	padding-bottom: 50px;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	min-height: 100vh;
}

/* 
section:not(:last-of-type) {
	min-height: 100vh;
}
*/

/* section:last-of-type {
	padding-bottom: 0px;
} */




/* END RANDOM / MISC */
/* /////////////////// */
/* NAVIGATION & MENU */

nav {
	position: fixed;
	top: 2%;
	left: 2%;
	z-index: 5000;
}

@media (min-width: 768px) {
	nav>.menuWrapper {
		display: flex;
		flex-direction: row;
		background-color: #393838;
		color: white;
		justify-content: space-around;
		border: none;
		border-radius: 40px 10px;
		font-weight: 400;
		padding: 10px;
		margin-left: 30px;
		max-height: 44px;
	}

	nav>#dropDownList {
		display: none;
	}
}

@media (min-width: 992px) {
	nav {
		right: 2%;
		left: initial;
	}

	nav>.menuWrapper {
		margin-right: 50px;
	}
}

@media (max-width: 767px) {
	nav>.menuWrapper {
		display: none;
	}

	nav>#dropDownList {
		flex-direction: column;
		background-color: #393838;
		color: white;
		justify-content: space-around;
		border: none;
		border-radius: 40px 10px;
		font-weight: 400;
		padding: 10px;
		margin-left: 30px;
		display: flex;
	}
}

#menu_button {
	width: 39px;
	overflow: hidden;
}

#menu_checkbox {
	display: none;
}

#menu_label {
	position: relative;
	display: block;
	height: 29px;
	cursor: pointer;
}

#menu_label:before,
#menu_label:after,
#menu_text_bar {
	position: absolute;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: black;
}

#menu_label:before,
#menu_label:after {
	content: '';
	transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) left;
}

#menu_label:before {
	top: 0;
}

#menu_label:after {
	top: 12px;
}

#menu_text_bar {
	top: 24px;
}

#menu_text_bar:before {
	content: 'MENU';
	position: absolute;
	top: 5px;
	right: 0;
	left: 0;
	color: rgb(97, 97, 97);
	font-size: 12px;
	font-weight: bold;
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	text-align: center;
}

#menu_checkbox:checked+#menu_label:before {
	left: -39px;
}

#menu_checkbox:checked+#menu_label:after {
	left: 39px;
}

#menu_checkbox:checked+#menu_label #menu_text_bar:before {
	animation: moveUpThenDown 0.8s ease 0.2s forwards, shakeWhileMovingUp 0.8s ease 0.2s forwards, shakeWhileMovingDown 0.2s ease 0.8s forwards;
}

@keyframes moveUpThenDown {
	0% {
		top: 0;
	}

	50% {
		top: -27px;
	}

	100% {
		top: -14px;
	}
}

@keyframes shakeWhileMovingUp {
	0% {
		transform: rotateZ(0);
	}

	25% {
		transform: rotateZ(-10deg);
	}

	50% {
		transform: rotateZ(0deg);
	}

	75% {
		transform: rotateZ(10deg);
	}

	100% {
		transform: rotateZ(0);
	}
}

@keyframes shakeWhileMovingDown {
	0% {
		transform: rotateZ(0);
	}

	80% {
		transform: rotateZ(3deg);
	}

	90% {
		transform: rotateZ(-3deg);
	}

	100% {
		transform: rotateZ(0);
	}
}

.fadeIn {
	animation: fadeInAnimation ease 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.fadeOut {
	animation: fadeOutAnimation ease 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

@keyframes fadeOutAnimation {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}


/* END NAV & MENU */
/* /////////////////// */
/* INTRO SECTION */


#introSection {
	padding: 0px;
	background-color: #eaeff0;
	overflow: hidden;
}

#introSection .row,
#introSection .container {
	min-height: 100vh;
}

#introSection .row>div:first-of-type h1 {
	text-align: center;
	font-family: 'Caveat', 'sans-serif';
}

#introSection .row>div:first-of-type h2 {
	text-align: center;
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}

#introSection .row>div:first-of-type {
	text-align: left;
	display: flex;
	flex-direction: column;
	position: relative;
}

#introSection>.container>.row>div:last-of-type {
	display: none;
}

@media (min-width:992px) {
	#introSection>.container>.row>div:last-of-type {
		display: block;
		flex: 0 0 auto;
		width: 58.33333333%;
	}
}

#introSection img {
	width: 40%;
	height: auto;
	margin-top: auto;
	margin-bottom: 0rem;
	margin-left: auto;
	margin-right: auto;
}

#introSection .row>div:first-of-type>div {
	margin-top: 0rem;
	margin-bottom: auto;
}

#introSection .row>div:last-of-type {
	background-image: url("https://res.cloudinary.com/ellary/martins-mangservice/background-design-square_rj7fsk");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

@media (min-width: 992px) {
	#introSection>.container {
		margin-left: calc((100vw - 960px) / 2);
		margin-right: 0px;
		width: 100%;
		max-width: 100%;
	}
}

@media (min-width: 1200px) {
	#introSection>.container {
		margin-left: calc((100vw - 1140px) / 2);
		margin-right: 0px;
		width: 100%;
		max-width: 100%;
	}
}

@media (min-width: 1400px) {
	#introSection>.container {
		margin-left: calc((100vw - 1320px) / 2);
		margin-right: 0px;
		width: 100%;
		max-width: 100%;
	}
}


/* END INTRO */
/* /////////////////// */
/* FOUR ROW CHECKLIST */


#fourColumnSection>.fourColumnsWrapper>div:not(:first-of-type) {
	padding-left: 1.5rem;
}

#fourColumnSection>.fourColumnsWrapper>div:not(:last-of-type) {
	padding-right: 1.5rem;
}

#fourColumnSection>.fourColumnsWrapper>div>span {
	color: darkgray;
	font-size: .9em;
}

#fourColumnSection>.fourColumnsWrapper>div:not(:last-of-type) {
	border-right: #0E37C7 solid 1px;
}

#fourColumnSection h3 {
	text-align: center;
	font-weight: 600;
	margin-bottom: .8rem;
}

#fourColumnSection ul li {
	padding-left: 1.5rem;
	background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='green' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z' clip-rule='evenodd'/></svg>");
	background-position: left;
	background-size: 1rem 1rem;
	background-repeat: no-repeat;
	padding-bottom: 12px;
	padding-top: 12px;
}

#fourColumnSection ul {
	padding-left: 0rem;
	margin-top: 0;
	margin-bottom: 1rem;
	list-style-type: none;
}

#fourColumnSection>.fourColumnsWrapper>p {
	margin-bottom: 0px;
	text-align: center;
}

#fourColumnSection .fullWidthWrapper {
	padding: 2rem 2rem 0rem;
}

#fourColumnSection .fullWidthWrapper>ul {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

#fourColumnSection .fullWidthWrapper>ul:last-of-type {
	margin-bottom: 0rem;
}

#fourColumnSection .fullWidthWrapper ul.appearingList>li.appearing {
	margin-top: .5rem;
	margin-bottom: .5rem;
	margin-left: .8rem;
	margin-right: .8rem;
}

#fourColumnSection .fullWidthWrapper ul:first-of-type>li:not(.appearing) {
	font-weight: bold;
	margin: 1rem;
}

#fourColumnSection .fullWidthWrapper li.appearing.show {
	animation-duration: 1s;
	animation-name: appearingShow;
	animation-fill-mode: forwards;
}

#fourColumnSection .fullWidthWrapper li.appearing.hide {
	animation-duration: 1s;
	animation-name: appearingHide;
	animation-fill-mode: forwards;
}

@keyframes appearingShow {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes appearingHide {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@media (max-width:767px) {

	/* #fourColumnSection > .row > div > span {
		display: none;
	} */
	#fourColumnSection .fullWidthWrapper {
		display: none;
	}

	#fourColumnSection>.fourColumnsWrapper>div:not(:last-of-type) {
		border-right: none;
	}

	#fourColumnSection ul li {
		padding-top: .3rem;
		padding-bottom: .3rem;
	}

	#fourColumnSection h3 {
		margin-bottom: .2rem;
	}

	#fourColumnSection>h2:first-of-type {
		display: none;
	}

	#fourColumnSection ul>li:last-of-type {
		display: none;
	}
}

@media (min-width:768px) {
	#fourColumnSection>h2:last-of-type {
		display: none;
	}
}

@media (max-width:991px) {
	#fourColumnSection ul.appearingList {
		display: none;
	}
}


/* END FOUR COLUMN */
/* /////////////////// */
/* INSPIRATION SECTION */


#inspirationSection>.inspoBoxesWrapper {
	position: relative;
	padding-top: .5rem;
	padding-bottom: .5rem;
}

#inspirationSection>.inspoBoxesWrapper>div {
	overflow: hidden;
}

#inspirationSection>.inspoBoxesWrapper>div>div {
	scroll-behavior: smooth;
	overflow: auto;
	flex-wrap: nowrap;
	flex-direction: row;
	padding-bottom: 1rem;
	max-height: 40vh;
}

#inspirationSection {
	padding-right: 0px;
	padding-left: 0px;
}

#inspirationSection .inspCardsWrapper>div {
	display: flex;
	justify-content: center;
}

#inspirationSection .inspCardsWrapper .card {
	height: 100%;
	width: 85%;
	background-color: transparent;
	border: none;
}

#inspirationSection .inspCardsWrapper .card.imageCard {
	border: none;
	overflow: hidden;
	flex-direction: row;
}

#inspirationSection .inspCardsWrapper .card.imageCard>img {
	object-fit: cover;
	max-width: 100%;
	height: auto;
}

#inspirationSection .inspCardsWrapper .card.quoteCard>div:not(.quoteSource):first-of-type {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
	overflow: hidden;
}

#inspirationSection .inspCardsWrapper .card.quoteCard>div>p.superQuotation:first-of-type {
	font-size: 2rem;
	padding-left: 1.5rem;
}

#inspirationSection .quoteText {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.15rem;
	letter-spacing: 0.1rem;
	padding: 0 1.5rem;
}

#inspirationSection .inspCardsWrapper .card.quoteCard>div>p.superQuotation:last-of-type {
	font-size: 2rem;
	padding-right: 1.5rem;
	margin-left: auto;
}

#inspirationSection>.rightLeft {
	font-size: xx-large;
	margin-top: .5rem;
	color: #0E37C7;
	display: flex;
	justify-content: center;
}

#inspirationSection>.rightLeft>div {
	cursor: pointer;
	margin-left: 3rem;
	margin-right: 3rem;
}

#inspirationSection .quoteSource p {
	margin-bottom: 0px;
	text-align: center;
	margin-bottom: 2rem;
}

@media (min-width: 1300px) {
	#inspirationSection .quoteText {
		font-size: 1.2rem;
		font-weight: 800;
		line-height: 1.5rem;
		letter-spacing: 0.1rem;
		padding: 0 3rem;
	}

	#inspirationSection .superQuotation {
		font-size: 3rem;
	}
}


/* END INSPIRATION */
/* /////////////////// */
/* CONTACT SECTION */

#lastSection {
	padding-bottom: 0px !important;
	padding-right: 0px !important;
	padding-left: 0px !important;
}

#contactSection {
	margin-top: auto;
	margin-bottom: auto;
}

/* #contactSection h3 {
	text-align: center;
} */

/* @media (max-width: 992px) {
	#contactSection h3 {
		font-size: calc(1rem + 0.6vw);
	}
} */

#contactSection>.row>div {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}


#contactSection>.row>div>img {
	width: 100%;
	max-width: 550px;
	height: auto;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	box-shadow: rgba(0, 0, 0, 0.24) 0px -2px 35px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px -2px 35px;
	-moz-box-shadow: rgba(0, 0, 0, 0.24) 0px -2px 35px;
}

@media (max-width: 992px) {
	#contactSection>.row>div>img {
		max-width: 350px;
	}
}

@media (max-width: 767px) {
	#contactSection>.row>div>img {
		max-width: 270px;
	}

	#contactSection>.row>div:last-of-type h2 {
		display: none;
	}

	/* #contactSection>.row>div:last-of-type {
		margin-top: auto;
		margin-bottom: auto;
		padding-top: 2rem;
		padding-bottom: 2rem;
	} */
}

#contactSection .contactInfo {
	margin-top: 2rem;
	font-size: calc(1.2rem + .6vw) !important;
	text-align: center;
}

#contactSection .contactInfo>p:first-of-type {
	font-size: calc(1.8rem + .6vw) !important;
}

#contactSection .contactInfo>p,
#contactSection .contactInfo>a {
	margin-top: .5rem;
}

/* #contactSection > .row > div:last-of-type {
	display: none;
} */

#contactSection>.row>div:last-of-type {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
}

/* #contactSection > p {
	font-size: small;
	font-weight: 200;
	text-align: center;
} */

/* @media (min-width: 768px) {
	#contactSection > .row > div:last-of-type {
		display: flex;
		flex-direction: column;
		justify-content: space-evenly;
	}
} */

/* @media (max-width: 992px) {
	#contactSection > p {
		display: none;
	}
} */


/* END CONTACT */
/* /////////////////// */
/* FOOTER */

footer {
	margin-top: auto;
	background-color: #0E37C7;
	color: white;
}

footer>.container {
	padding-top: 1rem;
	padding-bottom: 1rem;
	text-align: center;
}

footer p:last-of-type {
	font-size: .9rem;
	margin-top: .5rem;
}

@media (max-width:575px) {
	footer p {
		font-size: .7rem;
	}

	footer p:last-of-type {
		font-size: .7rem;
		margin-top: .2rem;
	}
}













.ms-4 {
	margin-left: 1.5rem;
}

.mx-4 {
	margin-right: 1.5rem;
	margin-left: 1.5rem;
}

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

.container,
.container-fluid {
	width: 100%;
	padding-right: var(--gux, 0.75rem);
	padding-left: var(--gux, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--guy));
	margin-right: calc(-0.5 * var(--gux));
	margin-left: calc(-0.5 * var(--gux));
}

.row>* {
	box-sizing: border-box;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--gux) * 0.5);
	padding-left: calc(var(--gux) * 0.5);
	margin-top: var(--guy);
}

.col {
	flex: 1 0 0%;
}

.col-10 {
	flex: 0 0 auto;
	width: 83.33333333%;
}

.col-12 {
	flex: 0 0 auto;
	width: 100%;
}

.row-cols-1>* {
	flex: 0 0 auto;
	width: 100%;
}

h3,
h2,
h1 {
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
}

h2 {
	text-align: center;
	font-weight: 800;
}

h1 {
	font-size: calc(1.375rem + 1.5vw);
}

h2 {
	font-size: calc(1.325rem + 0.9vw);
}

h3 {
	font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 768px) {
	.d-md-none {
		display: none !important;
	}
}

.d-none {
	display: none !important;
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}

	.col-md-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.row-cols-md-2>* {
		flex: 0 0 auto;
		width: 50%;
	}

	.row-cols-md-4>* {
		flex: 0 0 auto;
		width: 25%;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}

	.col-lg-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-lg-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	h3 {
		font-size: 1.75rem;
	}
}

@media (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}
}

img {
	vertical-align: middle;
}

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 1px solid rgba(0, 0, 0, 0.125);
	border-radius: 0.25rem;
}