
/* Global Setup */
* {
    box-sizing: border-box;
    overscroll-behavior: none;
    -webkit-tap-highlight-color: transparent;
}

body,
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
	font-size: var(--base-text-size);
}

body {
    color: var(--body-text-color);
    min-height: 100vh;
    font-family: var(--body-font-family);
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
}
body,
button,
p,
ul {
    margin: 0;
    padding: 0;
}

button,
select {
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

a,
button,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

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

.header-logo {
	width: 100%;
	max-width: 100%;
}


.mobile-menu {
	opacity: 0;
	display: none;
}
.fadeIn {
	animation: fadeIn 0.5s ease forwards;
}

.fadeOut {
	animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		display: block;
	}
	100% {
		opacity: 1;
		display: block;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	98% {
		opacity: 0.02;
	}
	100% {
		opacity: 0;
		display: none;
	}
}





/* Typography */
h1 {
	font-size: 2rem;
	position: relative;
	margin: 40px 0px 60px;
}
h2 {
	font-size: 1.8rem;
	position: relative;
	margin: 40px 0px 60px;
}
h3 {
	font-size: 1.5rem;
	position: relative;
	margin: 40px 0px 60px;
}
h4 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
}
h5 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
}
h6 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.h1:after,
.h2:after,
.h3:after {
	content:"";
	display: block;
	position: absolute;
	left: 0px;
	bottom: -10px;
	width: 120px;
	height: 4px;
	background-color: var(--highlight);
}
.display-1 {
	font-size: 5.5rem;
}
.display-2 {
	font-size: 5rem;
}
.display-3 {
	font-size: 4rem;
}
.display-4 {
	font-size: 3.5rem;
}
.lead {
	font-size: 1.3rem;
	line-height: 1.5;
}
p {
    font-size: 1rem;
    line-height: var(--body-line-height);
}
.text-intro p,
.section-body-text p {
	margin-bottom: 1.3rem;
}
.content p a:not(.btn),
.content p a:not(.btn):visited {
	font-weight: 500;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.2s linear;
}
.content p a:not(.btn):hover,
.content p a:not(.btn):visited:hover {
	border-bottom: 1px solid var(--border-color);
}

a.btn,
a.btn:visited {
	display: inline-block;
	padding: 0.7rem 1rem;
	border: 1px solid var(--border-color);
	background-color: transparent;
	text-decoration: none;
	transition: all 0.2s linear;
}
a.btn:hover,
a.btn:visited:hover {
	background-color: var(--border-color);
}
.section-body ul {
	padding-left: 1rem;
	font-size: 1rem;
	cursor: default;
}
.section-body ul li::marker {
	color: var(--hightlight);
	font-size: 1.2rem;
}

button {
    font-size: 12px;
}

nav button {
    font-size: 1.2rem;
}


.text-intro {
    font-size: 1.3rem;
    line-height: 1.5;
}
.section-header {
    font-size: 1.3rem;
	font-weight: 400;
	transition: background-color 0.2s ease;
}
.title {
	transition: all 0.2s linear;
}
.address
.point,
.email,
.links {
    font-size: 1rem;
}
.social-icons {
	font-size: 1.3rem;
}
section:not(.home) .text-intro {
	border-bottom: 1px solid var(--border-color);
}

@media (min-width: 1025px) {
    body {
        font-size: 1rem;
    }
    p {
        font-size: 1rem;
    }
	h1 {
		font-size:3.2rem;
		position: relative;
		margin: 40px 0px 60px;
	}
	h2 {
		font-size: 2.6rem;
		position: relative;
		margin: 40px 0px 60px;
	}
	h3 {
		font-size: 2rem;
		position: relative;
		margin: 40px 0px 60px;
	}
	h4 {
		font-size: 1.8rem;
		margin-bottom: 1rem;
	}
	h5 {
		font-size: 1.6rem;
		margin-bottom: 1rem;
	}
	h6 {
		font-size: 1.6rem;
		margin-bottom: 1rem;
	}
    section {
        font-size: 0.9rem;
    }
    .section-header {
        font-size: 1.3rem;
		font-weight: 400;
    }
    .section-header .number {
        font-weight: bold;
    }
	
	.address {
		font-size: 1.3rem;
	}
    .point-header {
        font-size: 24px;
    }
    .email {
        font-size: 24px;
    }
    .links {
        font-size: 20px;
    }
	.address-icon,
    .point-number,
    .point-title {
        font-size: 1.4rem;
    }
	.address-content {
		font-size: 1.2rem;
		line-height: 1.4;
	}
    .point-content li {
        font-size: 16px;
        line-height: 19px;
    }
	.section-body ul {
		padding-left: 1.1rem;
		font-size: 1.1rem;
		cursor: default;
	}
	.section-body ul li::marker {
		color: var(--highlight);
		font-size: 1.4rem;
	}
}



/* Mobile Styles */

@media (max-width: 1024px) {
    header {
        align-items: center;
        display: flex;
        height: var(--header-height);
        justify-content: space-between;
        padding: 0 20px;
        width: 100%;
    }

    .main-header {
        border-bottom: 1px solid var(--border-color);
        position: fixed;
        z-index: 2;
    }

    .language-toggle {
        display: none;
    }
	.site-title {
		position: absolute;
		left: 70px;
		pointer-events: none;
	}
	.site-title h1 {
		color: #FFF;
		font-size: 1rem;
		line-height: var(--header-height);
		margin: 0px;
	}
    .home-prompt {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: calc(100% - 120px);
    }

    nav {
        height: calc(100vh - var(--header-height));
        position: absolute;
        top: var(--header-height);
        width: 100%;
        z-index: 1;
    }

    .menu-open main {
        height: 100vh;
        overflow: hidden;
    }

    .menu-open footer {
        display: none;
    }

    .menu-open nav {
		animation: fadeIn 0.5s ease forwards;
    }

    nav button {
		color: #dadadd;
        border-bottom: 1px solid var(--border-color);
        display: block;
        height: 100px;
        padding-left: 20px;
        width: 100%;
        text-align: inherit;
    }

    section {
        border-top: 1px solid var(--border-color);
        color: var(--body-text-color);
        display: none;
        padding-top: var(--header-height);
    }

    section.active {
        border-top: none;
        display: block;
    }

    .logo {
        height: 38px;
        width: 38px;
    }

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

    section:not(.home) .animation {
    }

    section:not(.home) .animation svg {
        display: block;
        padding: 40px 0 60px;
        width: 65%;
        height: auto;
        margin: auto;
    }

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

    .home .top {
        align-items: stretch;
        display: flex;
        flex: 1;
        min-height: 350px;
    }

    .home .top > div {
        flex: 1;
    }

    .home .top > div:first-child {
        border-right: 1px solid var(--border-color);
    }

    .home .details {
        display: none;
    }

    .home .animation {
        align-items: center;
        align-content: center;
        border-bottom: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        overflow: hidden;
        padding: 30px;
    }

    .home .animation svg path {
        transform-origin: center;
        opacity: 0;
    }

    .home .animation.left svg {
        flex: 1;
    }

    .home .animation.right svg {
        flex: 0 50%;
        margin: -1px;
    }

    section .animation {
        border-bottom: 1px solid var(--border-color);
    }

    section .animation canvas {
        display: block;
    }

    section:not(.home) .text-intro {
        padding: 100px 28px;
    }

    section .section-body {
        display: flex;
        flex: 1;
    }

    section .static-image-container {
        border-right: 1px solid var(--border-color);
        padding: 20px;
    }

    section .static-image-container svg {
        width: 50px;
    }

    section .section-body-text {
        padding: 50px 40px;
    }

    section .email,
    section .links {
        align-items: center;
        display: flex;
        height: 80px;
    }
	section .social-icons {
		display: flex;
		align-items: center;
		line-height: 1.6;
		font-size: 1.4rem;
		padding: 0.1rem 1rem 1rem 1.7rem;
	}
	section .social-icons a {
        padding-right: 1rem;
    }
	section .social-icons a:hover {
		color: #FFF;
	}
    section .email {
        border-bottom: 1px solid var(--border-color);
        padding-left: 28px;
    }
	
    section .links a {
        display: block;
        flex: 1;
        height: 100%;
        line-height: 80px;
        padding-left: 28px;
    }

    section .links a:first-child {
        border-right: 1px solid var(--border-color);
    }
	
	section .address {
		position: relative;
		display: flex;
		margin: 1rem 0rem;
	}
    section .point {
        position: relative;
        display: flex;
        border-top: 1px solid var(--border-color);
    }
	section .address-icon {
		padding: 0.1rem 1rem 1rem 1.7rem;
		text-align: center;
		flex-shrink: 0;
	}
    section .point-number {
        width: 25%;
        padding: 45px 0;
        text-align: center;
        flex-shrink: 0;
        border-right: 1px solid;
    }
	section .address-content {
		flex-grow: 1;
	}
    section .point-content {
        padding-left: 45px;
        flex-grow: 1;
    }
    section .point-content .point-title {
        position: relative;
        padding: 45px 0;
        padding-right: 70px;
    }
    section .point-content ul {
        margin-left: 18px;
        padding-bottom: 45px;
        display: none;
    }
    section .point-content li {
        margin-bottom: 15px;
    }
    section .point-toggle {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        cursor: pointer;
    }
    section .point-toggle .icon {
        position: absolute;
        top: 50%;
        right: 40px;
        padding: 30px;
        margin: -30px;
    }
    section .point-toggle .line1,
    section .point-toggle .line2 {
        background: #fff;
        position: absolute;
        transform: translate(-50%, -50%);
    }
    section .point-toggle .line1 {
        width: 24px;
        height: 1px;
    }
    section .point-toggle .line2 {
        width: 1px;
        height: 24px;
    }

    section .point.is-active {
    }
    section .point.is-active .point-content ul {
        display: block;
    }
    section .point.is-active .point-toggle .line2 {
        display: none;
    }

    #panel3 .text-intro {
        border: 0;
    }
    #panel3 .section-body {
        display: block;
    }

    footer {
        border-top: 1px solid var(--border-color);
        padding: 56px 28px;
    }

    footer p {
        margin-bottom: 0px;
    }

    /*
	 * Hamburger menu adapted from https://github.com/jonsuh/hamburgers
	 */
	.hamburger {
		padding: 0px;
		display: inline-block;
		cursor: pointer;
		transition-property: opacity, filter;
		transition-duration: 0.15s;
		transition-timing-function: linear;
		font: inherit;
		color: inherit;
		text-transform: none;
		background-color: transparent;
		border: 0;
		margin: 0;
		overflow: visible;
	}
	.hamburger:hover {
		opacity: 0.7;
	}
	.hamburger.is-active:hover {
		opacity: 0.7;
	}
	.hamburger.is-active .hamburger-inner,
	.hamburger.is-active .hamburger-inner::before,
	.hamburger.is-active .hamburger-inner::after {
		background-color: #FFFFFF;
	}

	.hamburger-box {
		width: 27px;
		height: 18px;
		display: inline-block;
		position: relative;
	}

	.hamburger-inner {
		display: block;
		top: 50%;
		margin-top: -2px;
	}
	.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
		width: 25px;
		height: 2px;
		background-color: #FFFFFF;
		border-radius: 0px;
		position: absolute;
		transition-property: transform;
		transition-duration: 0.15s;
		transition-timing-function: ease;
	}
	.hamburger-inner::before, .hamburger-inner::after {
		content: "";
		display: block;
	}
	.hamburger-inner::before {
		top: -7px; }
	.hamburger-inner::after {
		bottom: -7px;
	}
	
	.hamburger--collapse .hamburger-inner {
		top: auto;
		bottom: 0;
		transition-duration: 0.13s;
		transition-delay: 0.13s;
		transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	.hamburger--collapse .hamburger-inner::after {
		top: -14px;
		transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
	}
	.hamburger--collapse .hamburger-inner::before {
		transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	.hamburger--collapse.is-active .hamburger-inner {
		transform: translate3d(0, -7px, 0) rotate(-45deg);
		transition-delay: 0.22s;
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	.hamburger--collapse.is-active .hamburger-inner::after {
		top: 0;
		opacity: 0;
		transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
	}
	.hamburger--collapse.is-active .hamburger-inner::before {
		top: 0;
		transform: rotate(-90deg);
		transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
}

@media (max-width:680px) {
	.home .top {
		display: block;
	}
	.home .top > div {
        flex: none;
    }

    .home .top > div:first-child {
        border-right: 0px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }
}

/* Desktop Styles */

@media (min-width: 1025px) {
    .main-header {
        align-items: start;
        justify-content: center;
        border-bottom: none;
        border-right: 1px solid var(--border-color);
        height: 100%;
        padding: 23px 0 0;
        width: calc(var(--section-header-width) + 1px);
        box-sizing: border-box;
        z-index: 1;
        position: relative;
    }
    .logo {
        height: 60px;
        width: 60px;
        margin: auto;
    }
    nav {
        display: none;
    }

    .home-prompt {
        position: absolute;
        top: 0;
        left: 0;
        width: var(--section-header-width);
        /* height: calc(100% - 150px); */
        height: 100%;
        cursor: pointer;
    }

    .hamburger {
        display: none;
    }
	.site-title {
		position: absolute;
		bottom: 35px;
		left: var(--section-header-width);
		height: var(--section-header-width);
		display: block;
		transform-origin: left bottom;
		transform: rotate(270deg);
		z-index: 3;
		pointer-events: none;
	}
	.site-title h1 {
		white-space: nowrap;
		color: #FFF;
		font-weight: 300;
		font-size: 32px;
		line-height: var(--section-header-width);
		margin: 0px;
		padding: 0px;
	}

    main {
        position: absolute;
        top: 0;
        left: var(--section-header-width);
        bottom: 0;
        right: 0;
        overflow: hidden;
    }

    nav.is-active {
        display: none;
    }

    section {
        position: absolute;
        display: flex;
        left: 0;
        top: 0;
        min-height: 100%;
        padding-top: 0;
        transform: translateX(100%);
        background: #000;
    }


    section:first-child {
        border-left: none;
    }

    .section-header {
        position: absolute;
        top: 0;
        left: -80px;
        display: block;
        height: 100vh;
        width: var(--section-header-width);
        cursor: pointer;
        box-sizing: border-box;
        background: #000;
        border-left: 1px solid var(--border-color);
    }

    .section-header .title {
        transform: rotate(180deg);
        position: absolute;
        bottom: 35px;
        left: calc(50% - 15px);
        writing-mode: vertical-rl;
        text-orientation: mixed;
    }

    .section-header .number {
        position: absolute;
        top: 35px;
        left: 0;
        right: 0;
        text-align: center;
    }

    .container {
        width: 100%;
        display: flex;
        overflow: auto;
        height: 100vh;
        opacity: 0;
        transition: 0.5s opacity;
    }

    section.active .container {
        opacity: 1;
    }

    section .animation {
		border-right: 1px solid var(--border-color);
        align-items: center;
        border-bottom: 0;
        display: flex;
        flex: 1;
        max-width: 50%;
        justify-content: center;
        padding-right: 80px;
    }
	section .animation.right {
		border: 0px none;
	}
    section .content {
        display: flex;
        flex-direction: column;
        flex: 1;
        overflow-x: hidden;
        overflow-y: auto;
    }

    section .text-intro {
        padding: 75px 55px 75px;
    }

    section .section-body {
        /* border-top: 1px solid var(--border-color); */
        display: flex;
        align-items: start;
        flex-grow: 1;
    }

    section .static-image-container {
        flex: 1;
		align-self: center;
    }

    section .static-image-container svg {
        width: 50%;
        margin: 275px auto 0;
        display: block;
    }

    section .section-body-text {
        /* border-left: 1px solid var(--border-color); */
        flex: 2;
        padding: 100px 55px;
        min-height: 100%;
    }
	
	section .address {
		position: relative;
		display: flex;
		margin: 1.2rem 0rem;
	}
    section .point {
        position: relative;
        display: flex;
        border-bottom: 1px solid var(--border-color);
    }
	section .address-icon {
		padding: 0rem 1rem 0rem 3.5rem;
		text-align: center;
		flex-shrink: 0;
	}
    section .point-number {
        width: 25%;
        padding: 45px 0;
        text-align: center;
        flex-shrink: 0;
        border-right: 1px solid;
    }
	section .address-content {
		flex-grow: 1;
	}
    section .point-content {
        padding-left: 45px;
        flex-grow: 1;
    }
    section .point-content .point-title {
        position: relative;
        padding: 45px 0;
        padding-right: 70px;
    }
    section .point-content ul {
        margin-left: 18px;
        padding-bottom: 45px;
        display: none;
    }
    section .point-content li {
        margin-bottom: 15px;
    }
    section .point-toggle {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        cursor: pointer;
    }
    section .point-toggle .icon {
        position: absolute;
        top: 50%;
        right: 40px;
        padding: 30px;
        margin: -30px;
    }
    section .point-toggle .line1,
    section .point-toggle .line2 {
        background: #fff;
        position: absolute;
        transform: translate(-50%, -50%);
    }
    section .point-toggle .line1 {
        width: 24px;
        height: 1px;
    }
    section .point-toggle .line2 {
        width: 1px;
        height: 24px;
    }

    section .point.is-active {
    }
    section .point.is-active .point-content ul {
        display: block;
    }
    section .point.is-active .point-toggle .line2 {
        display: none;
    }

    #panel3 .section-body {
        display: block;
    }

    #panel1 .section-body,
    #panel4 .section-body {
        flex-direction: row-reverse;
    }

    #panel1 .section-body-text,
    #panel4 .section-body-text {
        border-left: none;
    }

    section:not(.home) .animation {
        padding-right: 0px;
    }

    #panel5 .animation {
        padding: 0;
    }

    section:not(.home) .animation svg {
        width: 100%;
        height: auto;
        max-width: 60vh;
    }

    #panel4 .animation svg {
        width: 90%;
        max-width: 40vh;
    }

    #panel5 .animation {
        width: 100%;
    }

    #panel5 .animation svg {
        max-width: none;
    }

    .home {
        transform: none;
    }

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

    .home .top {
        align-items: stretch;
        display: flex;
        flex: 1;
        min-height: 350px;
    }

    .home .animation {
        align-items: center;
        align-content: center;
        border-bottom: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        overflow: hidden;
        padding: 100px;
    }

    .home .animation svg path {
        transform-origin: center;
        opacity: 0;
    }

    .home .animation.left svg {
        flex: 1;
    }

    .home .animation.right svg {
        flex: 0 50%;
        margin: -1%;
    }

    .home .top > div:first-child {
        border-right: 1px solid var(--border-color);
    }

    .home .details {
        align-items: flex-end;
        border-top: 1px solid var(--border-color);
        display: flex;
        height: 86px;
        padding: 0 0 31px 80px;
    }

    .home .details p {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 100px;
    }
    .home .details p:nth-child(2) {
        margin-right: 0;
        padding: 0;
    }

    #panel5 .content {
        justify-content: flex-end;
    }

    section .email,
    section .links {
        height: 120px;
    }

    section .email {
        padding-left: 0;
    }

    section .links {
        border-bottom: none;
    }

    section .links a,
    section .email a {
        line-height: 120px;
        position: relative;
    }

    section .email a {
        padding-left: 28px;
        flex-grow: 1;
    }

    section .point-header {
        height: 120px;
    }

    section .point-header .number {
        width: 150px;
    }

    footer {
        display: none;
    }
	
	section .social-icons {
		display: flex;
		align-items: center;
		line-height: 1.6;
		font-size: 1.4rem;
		padding: 1rem 1rem 1rem 3.3rem;
	}
    section .email,
    section .links {
        align-items: center;
        display: flex;
        height: 120px;
    }

    section .email {
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        padding-left: 0;
    }

    section .links {
        border-bottom: none;
    }

    section .links a,
    section .email a {
        line-height: 120px;
        position: relative;
        padding-left: 55px;
    }

    section .links a {
        display: block;
        flex: 1;
        height: 100%;
    }

    section .links a:first-child {
        border-right: 1px solid var(--border-color);
    }
	
	section .social-icons a {
		flex-grow: 0;
		padding: 1rem;
		text-align: center;
	}
	
    section .email a {
        flex-grow: 1;
    }
}

#panel8 .section-body-text {
    border-left: 0px solid var(--border-color);
    flex: 2;
    padding: 3rem 55px 2rem;
    min-height: auto;
}

.return-to-home {
	font-size: 1.1rem;
	font-weight: bold;
	text-decoration: none;
	/* color: hsl(var(--hue),22%, 10%);
	background-color: var(--border-color); */
	padding: 0.5rem 1rem;
}
.return-to-home:hover {
	color: #FFF;
}
/* GMAP */
.gmap {
  filter: grayscale(1);
  mix-blend-mode: luminosity;
  padding: 0px;
  margin: 0px;
  width: 100%;
  min-height: 370px;
}

/* Columns */
.columns-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}
.columns-3 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1.7rem;
}
.columns-4 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 1.5rem;
}

@media (max-width: 991px) {
	.columns-2, .columns-3, .columns-4 {
		grid-template-columns: 1fr;
	}
}

/* Utilities */
.text-white {
	color: #FFF;
}
.text-highlight {
	color: var(--highlight);
}
.text-black {
	color: #000;
}
.text-italic {
	font-style: italic;
}

.border {
	border-style: solid;
	border-width: 1px;
}
.border-white {
	border-color: #FFF;
}
.border-highlight {
	border-color: var(--highlight);
}
.border-light {
	border-color: var(--body-text-color);
}


.align-self-center {
	align-self: center;
}
.w-25 {
	width:25%;
}
.w-50 {
	width:50%;
}
.w-75 {
	width:75%;
}
.w-100 {
	width:100%
}

.m-auto {
	margin: auto;
}
.mx-auto {
	margin: 0px auto;
}
.my-auto {
	margin: auto 0px;
}

.mt-0{
	margin-top: 5rem;
}
.mt-1{
	margin-top: 0.5rem;
}
.mt-2{
	margin-top: 1rem;
}
.mt-3{
	margin-top: 1.5rem;
}
.mt-4{
	margin-top: 2rem;
}
.mt-5{
	margin-top: 3rem;
}

.mb-0{
	margin-bottom: 5rem;
}
.mb-1{
	margin-bottom: 0.5rem;
}
.mb-2{
	margin-bottom: 1rem;
}
.mb-3{
	margin-bottom: 1.5rem;
}
.mb-4{
	margin-bottom: 2rem;
}
.mb-5{
	margin-bottom: 3rem;
}

.my-1{
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}
.my-2{
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.my-3{
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}
.my-4{
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.my-5{
	margin-top: 3rem;
	margin-bottom: 3rem;
}

.py-1{
	padding-top: 0.7rem;
	padding-bottom: 0.7rem;
}
.py-2{
	padding-top: 1.2rem;
	padding-bottom: 1.2rem;
}
.py-3{
	padding-top: 2rem;
	padding-bottom: 2rem;
}

p:empty,
.padfix {
	padding: 0px;
	margin: 0px;
	display: none;
}