﻿@charset "utf-8";

	p.TextStyle1 {margin: 0px !important;
    padding: 20px !important;
    }
    p.TextStyle3 {padding: 20px !important;}
	h3 {font-size: 35px;
	line-height: 160% !important;
	border-left: 0px !important;
	/*padding: 0px !important;*/
    margin: 0px !important;
	}
	div.section img {
	width: 100%;
	}
    table {
    margin: 0px !important;
    table-layout: fixed !important;
    }
    table td {
    text-align: center !important;
    }
	.tag {
	opacity: 0;
	transform: translate(0, 5vh);
	transition: all 1.5s;
	}
	.tag.visible {
	opacity: 1;
	transform: translate(0, 0);
	}
	.section {
	margin-bottom: 80px;
	}
	.tabs {
	position: relative;
	display: flex;
	min-height: 520px;
	border-radius: 0px;
	overflow: hidden;
	}
	.tabby-tab {
	flex: 1;
	}
	.tabby-tab label {
	display: block;
	box-sizing: border-box;
	/* tab content must clear this */
	height: 80px;
	padding: 30px 10px 10px 10px;
	text-align: center;
	background: #8d8d8e;
	cursor: pointer;
	transition: background 0.5s ease;
	color: white;
	}
	.tabby-tab label:hover {
	background: #c2c2c3;
	}
	.tabby-content {
	position: absolute;
	color: white;
	left: 0; bottom: 0; right: 0;
	/* clear the tab labels */
	top: 80px;
	padding: 20px;
	border-radius: 0px;
	background: #4c4c4c;
	transition: 
	opacity 0.8s ease,
	transform 0.8s ease;
	/* show/hide */
	opacity: 0;
	transform: opacity(0.1);
	transform-origin: top left;
	}
	.tabby-content img {
	float: left;
	margin-right: 20px;
	border-radius: 0px;
	}
	.tabby-content h3 {
	font-size: 35px;
	line-height: 160%;
	border-left: 0px !important;
	}
	/* MAKE IT WORK ----- */
	.tabby-tab [type=radio] { display: none; }
	[type=radio]:checked ~ label {
	background: #4c4c4c;
	z-index: 2;
	font-weight: 700;
	}
	[type=radio]:checked ~ label ~ .tabby-content {
	z-index: 1;
	/* show/hide */
	opacity: 1;
	transform: scale(1);
	}
	[type=radio]:checked ~ label ~ .tabby-content {
	z-index: 1;
	/* show/hide */
	opacity: 1;
	transform: scale(1);
	}
	/* BREAKPOINTS ----- */
	@media screen and (max-width: 767px) {
	.tabs { min-height: 710px;}
	}
	@media screen and (max-width: 480px) {
	.tabs { min-height: 710px; }
	.tabby-tab, .tabby-tab2 label { 
	height: 60px;
	}
	.tabby-content { top: 60px; }
	.tabby-content img {
	float: none;
	margin-right: 0;
	margin-bottom: 20px;
	}
	}
	/* 3 COLUMNS */
	/* container */
	.responsive-three-column-grid {
	display:block;
	}
	/* columns */
	.responsive-three-column-grid > * {
	padding:1rem;
	}
	/* tablet breakpoint */
	@media (min-width:768px) {
	.responsive-three-column-grid {
	display: grid;
	grid-auto-rows: 1fr;
	grid-template-columns: 1fr 1fr 1fr;
	}
	}
	/* 2 COLUMNS */
	/* container */
	.responsive-two-column-grid {
	display:block;
    align-items: center;
    align-content: center
	}
	/* columns */

	/* tablet breakpoint */
	@media (min-width:768px) {
	.responsive-two-column-grid {
	display: grid;
	grid-auto-rows: 1fr;
	grid-template-columns: 1fr 1fr;
	}
	}

.only-desktop-padding {
    padding: 20px;
}
@media screen and (min-width: 768px) {
    .only-desktop-padding {
        padding-left: 60px;
    }
}