@charset "utf-8";

/* ------------------- */
/* TEMPLATE        -- */
/* ----------------- */

/* body { 
	height: 100%;
	background-color: #333; 
	color: whitesmoke; 
	font-size: 16px; 
	font-family: 'Lato';
} 
h1 { font-size: 32px; }
h2 { font-size: 26px; }
h3 { font-size: 18px; }
p { margin: 0 0 15px; line-height: 24px; color: gainsboro; }
a { color: red; text-decoration: none; border-bottom: 1px dotted; }
a:hover { color: tomato; }

.container { 
	max-width: 960px; 
	height: 100%;
	margin: 0 auto; 
	padding: 20px;
} */

/* ------------------- */
/* PEN STYLES      -- */
/* ----------------- */

/* MAKE IT CUTE ----- */
    
/* p.TextStyle1 {margin: 0px !important;} */
p.TextStyle1 {margin-bottom: 0px !important;}
    
h3 {font-size: 35px;
        line-height: 160% !important;
        border-left: 0px !important;
        padding-left: 0px !important;
}
    
div.section img {
        width: 100%;
    }
    
.container {
       /* padding-bottom: 20px; */
    }
    
.tag {
  opacity: 0;
  transform: translate(0, 5vh);
  transition: all 1.5s;
}

.tag.visible {
  opacity: 1;
  transform: translate(0, 0);
}
    
.section {
        margin: 0;
    }
    
.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: 796px; }
	.tabby-tab, .tabby-tab label { 
		height: 140px;
	}
	.tabby-content { top: 140px; }
	.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;
}

/* columns */
.responsive-two-column-grid > * {
     /* padding:1rem; */
}

/* tablet breakpoint */
@media (min-width:768px) {
    .responsive-two-column-grid {
        display: grid;
        grid-auto-rows: 1fr;
        grid-template-columns: 1fr 1fr;
    }
}