@charset "UTF-8";
/* CSS Document */

:root { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: normal) {
  :root { font-family: 'Inter var', sans-serif; }}
 

:root {
	margin: 0;
	padding: 0;
	--white: rgb(242, 240, 218);
	--offwhite: rgb(247,245,232);
	--red: rgba(226, 35, 39, 1);
	--yellow: #E9CD1F;
	--orange: rgb(255, 118, 26);
	--pink: #E53086;
	--blue: rgb(118,203,201);
	--green: #0F8D39;
	--purple: #7f34ae;
	--grey60: #999999;
	--grey30: #505050;
	--grey17: #2d2d2d;
}   


.rectangular-btn {
	background-color: rgba(247,245,232,1);
    color: #000;
    font-weight: 400;
    padding: 4px 16px 5px 16px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.01em;
    border-radius: 6px;
	margin-top: 30px;
    border: var(--offwhite) 2px solid;
    transition: background-color 0.2s, color 0.2s, border 0.2s;
}


.rectangular-btn:hover {
	background-color: rgba(247,245,232,0);
    color: rgba(247,245,232,1);
    transition: background-color 0.2s, color 0.2s, border 0.2s;
}

.rectangular-btn-mobile {
	background-color: rgba(247,245,232,1);
    color: #000;
    font-weight: 400;
    padding: 5px 16px;
    text-align: center;
    display: none;
    font-size: 16px;
    letter-spacing: 0.01em;
    border-radius: 6px;
	margin-top: 10px;
    border: var(--offwhite) 2px solid;
    transition: background-color 0.2s, color 0.2s, border 0.2s;
}

.rectangular-btn.outline {
	border: #000 1px solid;
}

.rectangular-btn.outline:hover {
	background-color: #000;
	transition: background-color 0.2s, color 0.2s, border 0.2s;
}

.rectangular-btn.outline.active {
	border: #000 1px solid;
	background-color: #000;
	color: rgba(247,245,232,1);
}

.w-back .rectangular-btn {
	background-color: #fffdf3;
}



/********************* Header **********************/
header {
	display: block;
	position: relative;
	width: 100%;
	height: 53px;
	background-color: inherit;
	z-index: 50;
}

.homepage header {
	background-color: rgba(242, 240, 218, 0);
    animation: colour-cycle 20s infinite;
}

.header_inner {
	display: flex;
	padding: 15px 40px 15px 40px;
	align-items: flex-end;
	background-color: inherit;
	
}

.navigation, .main {
	display: none;
}

.menu {
	flex-grow: 1;
	justify-content: space-between;
	display: flex;
	background-color: inherit;
}

.menu_items {
	/*margin-left: auto;
	margin-right: 5px;*/
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.1em;
	text-decoration: none;
	color: #000;
	cursor: pointer;
    width: 70px;
    display: inline-block;
}

.home .menu_items {
	color: #efedd1;
}

.dropdown {
	background-color: inherit;
    margin: 0 0 0 auto;
    z-index: 60;
}

.dropdown_content {
    opacity: 0;
	position:absolute;
    display: grid;
    grid-template-columns: 1fr 1fr;
    left: 0;
    top: 0;
    width: 100%;
	z-index: 40;
	padding: 16px 40px 16px 40px;
	background-color: #000;
    transform: translate(0, -50px);
    transition: all ease 0.3s;
    pointer-events: none;
}

.dropdown-list {
    grid-column: 1/span 2;
	background-color: inherit;
	column-width: 150px;
	column-count: 3;
	z-index: 60;
	padding-top: 20px;
	padding-bottom: 15px;
}

.dropdown-list a {
	text-decoration: none;
	display: block;
	color: var(--grey60);
	padding-right: 20px;
	font-size: 0.9em;
	letter-spacing: 0.03em;
	line-height: 2em;
	font-weight: 300;
}

.home .dropdown-list a {
	color: #EFEDD1;
}

.dropdown_content a:hover {
  color: #707070;
}

.mobile-menu-open .dropdown_content {
    opacity: 1;
    transform: translate(0, 0px);
    pointer-events: auto;
}

.game {
    display: inline-block;
}

.X {
    display: none;
	width: 30px;
}

.mobile-menu-open .X {
    display: inline-block;
	color: var(--grey30);
}

.mobile-menu-open .dropdown_content::-webkit-scrollbar {
  width: 0em;
}

.close {
	display: none;
	background-color: inherit;
	font-size: 22px;
	font-weight: 500;
	text-align: left;
	color: #000;
	padding-top: 20px;
}

.home .close {
	color: #EFEDD1;
}

.close:hover a{
	color: #808080;
	}

.menu_right {
	text-align: right;
	flex-grow: 1;
	margin: 0 0 0 auto;
    z-index: 50;    
}

#logo {
	display: flex;
	height: 22px;
	background-color: none;
	flex-grow: 1;
}

#logo_img {
	align-self: center;
	margin: 0px auto;
}

#big-logo {
		display: block;
	}
	
#small-logo {
		display: none;
	}

.dropdown-title {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
	font-weight: 600;
	font-size: 1.5em;
	line-height: 1em;
	letter-spacing: -0.01em;
	color: var(--grey30);
	margin-left: 0px;
}
    
hr.header-line {
	margin: 0px 30px;
	z-index: 50;
	position: relative;
	pointer-events: none;
}

hr.dropdown-line {
	grid-column: 1/span 2;
	border-top: 1px solid var(--grey30);
	margin-top: 10px;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #000;
    padding: 0px;
	margin: 0px;
}

.home hr {
	border-top: 1px solid #efedd1;
}

.multiple-line {
	margin-bottom: 6px;
	border-top:1px solid #AAAAAA;
}

.orange {
	border-top: 1px solid rgb(255, 118, 26);
}

.bar {
    height: 2px;
    display: block;
    position: relative;
    background: var(--grey30);
}

.btmBar {
    transform: translateY(9px) rotate(-45deg);
}

.topBar {
    transform: translateY(11px) rotate(45deg);
}

.menu-btn-container {
	display: flex;
	flex-direction: row;
	grid-column: span 2;
	gap: 20px;
	margin: 40px 0px 20px auto;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.menu-btn {
	background-color: var(--grey17);
	color: var(--grey60);
	border: 2px solid var(--grey17);
	padding: 4px 13px 5px 13px;
	flex: 0 0 auto;
	margin-top: 0px;
}

.menu-btn:hover {
	background-color: var(--grey30);
	color: var(--offwhite);
	border: 2px solid var(--grey30);
}

.menu-btn.outline {
	border: var(--grey60) 2px solid;
	background-color: #000;
}

.menu-btn.outline:hover {
	background-color: var(--grey60);
	color: #000;
}






/******************* Body ******************/
body {
	/*background-image: url("Images/SVG/vector.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top;*/
	z-index: 1;
	font-family: 'Inter', 'acumin-pro', Helvetica, san-serif;
	font-size: 16px;
	margin: 0;
	/*background: #1e1e1e;*/
	
}

.body-content.home, .body-content.homepage {
	padding: 0px;
	position: relative;
	top: -125px;
}

.body-content {
	padding: 1px 50px 0px 50px;
	z-index: 5;
}

.body-game {
	padding-top: 100px;
	padding-bottom: 100px;
}

section {
	justify-content: center;	
}

.content {
	margin: auto;
	margin-top: 0px;
	width: 100%;
	max-width: 1000px;
	/*padding: 1px 100px 0px 100px;*/
}

#block_2 .content {
	display: flex;
	margin: auto;
}

#block_5 .content, #block_9 .content {
	height: 100%;
}

/**** Homepage ****/

.homepage-content {
	/*min-height: 450px;*/
	display: flex;
	flex-direction: column;
	width: 100%;
}

#block_1 {
	/*border: 1px #000 solid;
	border-top: none;*/
	padding-bottom: 0px;
	height: 635px;
	background-color: inherit;
	/*margin-bottom: 50px;*/
	
	background-image: url("Images/header circles.svg");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}

@media (min-width:1000px) {
	#block_1 {
		background-size: contain;
	}
}

#block_2 {
	background-image: url("Images/Friends wide shot small.jpg");
	height: 70vh;
	max-height: 750px;
	background-size: cover;
	background-position: center;
	margin-top: 60px;
	padding: 0 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#block_2 .text-1 {
	margin-top: 0px;
	
}

#block_2 p {
	color: #000;
	text-align: left;
}

#block_3 {
	flex-direction: column;
    justify-content: center;
	padding: 0px;
    height: 635px;
    background-color: inherit;
    background-image: url(Images/ideas-circles-29.svg);
    background-size: 1000px;
    background-position: top center;
    background-repeat: no-repeat;
}

#block_3 p {
	text-align: left;
	padding-bottom: 25px;
}

#block_3 .hero-text p {
	line-height: 1.3em;
}

#block_3 a {
    font-size: 32px;
    color: #E58D10;
    border-bottom: 1px solid #E58D10;
}

#block_3 a:hover {
    color: #efedd1;
    border-bottom: 1px solid #efedd1;
}

#block_3 .text-1 {
	max-width: 480px;
    margin: 50px 50px 0px 50px;
}
/*
#block_3 .hero-img {
	flex:1;
	max-width: 50%;
}*/

#block_4 {
	height: 700px;
}

#content_5 {
	background-image: url("Images/IMG_4865 cropped dark.jpg");
	height: 60vh;
	max-height: 750px;
	min-height: 370px;
	background-size: cover;
	background-position: center;
	margin-top: 60px;	
}

#block_7 {
	padding: 100px 0px;
	background-color: #2b2b2b;
}

#block_7 .content {
	max-width: 750px;
	min-height: 0px;
}

#block_8.homepage-content{
    background-color: #F9EB21;
    border: 20px dashed #FF4A60;
}

#block_8 .content {
    max-width: 750px;
    margin-bottom: 120px
}

#block_8 p {
    color: #000;
    margin-bottom: 10px;
}

#block_8 a {
	color: #000;
	border: 1px solid;
	padding: 10px 15px 12px 15px;
    margin-top: 20px;
	text-align: center;
	flex:0 1 400px;
	
}

#block_8 a:hover, #block_8 a:active {
	background-color: #FF4A60;
	color: #F9EB21;
}

#content_9 {
	background-image: url("Images/Children background Large.jpg");
    background-position: center;
    background-size: cover;
	height: 60vh;
	max-height: 750px;
	min-height: 370px;
}

#content_9 p, #content_9 .announcement {
    color: #000;
}

#content_9 .announcement {
    margin-bottom: 25px;
}

#content_9 .text-2 {
	max-width: 720px;
	margin: 0 auto;
}

#block_9 a{
    border-bottom: 1px solid #000;
    color: #000;
}

#block_9 a:hover {
    border-bottom: 1px solid #888;
    color: #888;
}

.text-1 {
	position: relative;
	margin-top: 140px;
}

.text-2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.hero-img {
	align-items: flex-end;
	justify-content: center;
	height: 100%;
	display: flex;
}

#hero-img-1 {
	
	height: 635px;
	width: 1000px;
	background-image: url("Images/header circles.png");
	background-repeat: no-repeat;
	
}

#hero-img-2 {
	display: flex;
	background-image: url("Images/app mockup 2.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
	height: 350px;
	width: 350px;
}

#hero-img-3 {
	padding-bottom: 70%;
	width: 1000px;
	background-image: url("Images/Ideas.jpg");
	background-size: cover;
	background-position: center;
	
}

.tt-quotes-title {
	padding: 0px 12px 20px 12px;
	text-align: center;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	color: #efedd1;
}

/** List v2 **/


#home-game-list {
	padding: 100px 50px 150px 50px;
}

#game-list-title-block {
	padding-bottom: 10px;
	border-bottom: solid 1px #000;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.game-list-filter-btn {
	background-color: rgba(0,0,0,0);
    color: #000;
    font-weight: 400;
    padding: 3px 12px;
    text-align: center;
    display: inline-block;
    font-size: 18px;
    letter-spacing: 0.01em;
    border-radius: 20px;
    margin: 28px 15px 0px 0px;
    border: #000 2px solid;
    transition: background-color  0.2s, color  0.2s, border  0.2s;
}

.game-list-filter-btn:hover {
	border: #f2f0da 2px solid;
	color: #f2f0da;
	cursor: pointer;
}

.game-list-filter-btn.active {
	background-color: rgba(0,0,0,1);
    color: rgb(118,203,201);
}

.game-list-filter-btn.active:hover {
	border: #000 2px solid;
	background-color: rgba(0,0,0,1);
    color: rgb(118,203,201);
}

.qotd .game-list-filter-btn.active {
	
    color: rgb(225,188,10);
}

.qotd .game-list-filter-btn.active:hover {
    color: rgb(225,188,10);
}

#game-list-content-block {
	display: flex;
	gap: 100px;
	padding-top: 100px;
}

.top-games {
	flex: 0 0 auto;
	margin-top: 20px;
}

.top-games a {
	font-family: 'ivypresto-text', serif;
	font-size: 90px;
	font-weight: 600;
	line-height: 1.2em;
	letter-spacing: -0.01em;
	color: #000;
	text-decoration: none;
	display: block;
	transition: color  0.25s;
}

.top-games a:hover {
	color: var(--white);
	transition: color  0.25s;
}

.tt-list-container {
	flex: 1 1 auto;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	padding-top: 50px;
}

.tt-list-item {
	/*flex: 1 0 200px;*/
	display: none;
	padding-bottom: 25px;
	font-size: 20px;
	font-weight: 300;
	letter-spacing: 0.03em;
	width: 33.333%;
}

.tt-list-item a {
	text-decoration: none;
	color: #000;
	transition: color  0.2s;
}

.tt-list-item a:hover {
	color: var(--white);
	transition: color  0.2s;
}

.show {
	display: block;
}

/*
#tt-list-f:hover {
	color: rgb(255, 118, 26);
}

#tt-list-b:hover {
	color: rgb(118,203,201);
}

#tt-list-w:hover {
	color: rgb(230, 31, 131);
}

#tt-list-c:hover {
	color: rgb(255,0,19);
}

#tt-list-e:hover {
	color: rgb(219,219,33);
}

#tt-list-m:hover {
	color: rgb(42, 165, 56);
}

#tt-list-fa:hover {
	color: #4fa065;
}

#tt-list-ta:hover {
	color: #feca05;
}

#tt-list-10:hover {
	color: #f4e313;
}

#tt-list-12:hover {
	color: #6C2C94;
}

#tt-list-14:hover {
	color: #10aadc;
}

#tt-list-16:hover {
	color: #36956a;
}

#tt-list-lt:hover {
	color: rgb(194,77,71);
}

#tt-list-l:hover {
	color: rgb(249,235,33);
}

#tt-list-wb:hover {
	color: rgb(156, 47, 128);
}

#tt-list-ch:hover {
	color: #B24F98;
}

#tt-list-fam:hover {
	color: #2862B5;
}

#tt-list-ey:hover {
	color: #0F8D39;
}

*/

/**** Game Pages ****/
.home {
	background-color: #1e1e1e;
}

.friends {
	background-color: rgb(255, 118, 26);
}

.blokes {
	background-color: rgba(118,203,201,1.00);
}

.women {
	background-color: #e61f83;
}

.messy {
	background-color: rgb(42, 165, 56);
}

.easter {
	background-color: rgb(219,219,33);
}

.christmas {
	background-color: rgb(255,0,19);
}

.fourth {
	background-color: #00B794;
}

.third {
	background-color: #feca05;
}

.ten {
	background-color: #f4e313;
}

.twelve {
	background-color: #7f34ae;
}

.fourteen {
	background-color: #10aadc;
}

.sixteen {
	background-color: #36956a;
}

.leadership {
    background: rgb(226,103,69);
    background: linear-gradient(180deg, rgba(226,103,69,1) 15%, rgba(255,141,70,1) 30%, rgba(255,141,70,1) 40%, rgba(183,45,61,1) 90%);
}

.leadership .dropdown_content {
	background-color: rgb(226,103,69);
}


.ideas {
	background-color: #F5E9E1;
}

.lockdown {
    background-color: #F9EB21;
}

.wellbeing {
    background: rgb(7,142,75);
    /*background: linear-gradient(180deg, rgba(236,102,27,1) 18%, rgba(230,15,118,1) 40%, rgba(230,15,118,1) 50%, rgba(31,131,103,1) 70%);*/
    background-image: url(Images/TT4WB%20Web%20background%202-05.png);
    background-size: 100% calc(100% - 405px);
    }

.change {
    background-color: #F2D10C;
}

.families {
	background-color: #2862B5;
}

.children {
	background-color: #B24F98;
}

.earlyyears {
	background-color: #0F8D39;
}

.students {
	background-color: #E30B17;
	
}

.qotd, .GD {
	background-color: var(--offwhite);
}

.gametitle {
	padding-top: 66px;
	padding-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
}

.game-subtitle {
	width: 100%;
	max-width: 600px;
	padding: 25px 0px;
}

.game-subtitle-text {
	font-size: 18px;
	line-height: 1.4em;
}

.theme-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	padding-top: 20px;
	padding-bottom: 50px;
}

.theme {
	color: #000;
	min-width:300px;
	max-width: 300px;
	margin: 0px 0px 10px 0px;
	
}

.theme a:hover {
	color: #fff;
}

.theme a:hover .q-link {
	padding-left: 15px;
	transition: padding cubic-bezier(.21,.24,.24,1) 0.5s;
}

.q-link {
	padding-left: 0px;
	transition: padding cubic-bezier(.21,.24,.24,1) 0.5s;
	margin: 15px 0px 10px 0px;
}

.theme a {
	text-decoration: none;
	color: #000;
}

.tt-outline {
	height: 54px;
	margin-top: auto;
	margin-bottom: 5px;
}

.game-nav {
	display: flex;
	padding: 15px 0px 15px 0px;
	justify-content: space-between;
}

.game-nav-items {
	font-size: 16px;
	letter-spacing: 0.15em;	
	opacity: 1;
	cursor: pointer;
	text-decoration: none;
	color: #000;
	margin: 0px 0px;
	transition: cubic-bezier(.21,.24,.24,1) 0.4s;
}

.game-nav-items:hover {
	opacity: 0.5;
	margin: 0px -10px;
	transition: cubic-bezier(.21,.24,.24,1) 0.4s;
}

.arrow-right {
	height: 14px;
	top: 1px;
	position: relative;
	padding-left: 5px;
}

.arrow-left {
	height: 14px;
	top: 1px;
	position: relative;
	padding-right: 5px;
}

.long-theme {
	max-width: 500px;
	padding-top: 50px;
	font-size: 18px;
	letter-spacing: 0.01em;
}

.long-theme:last-child {
	padding-bottom: 50px;
}





/******** NEW HOMEPAGE DESIGN ********/

.homepage {
	background-color: #F2F0DA;
}

.home-section {
	max-width: 1500px;
	margin: auto;
	padding: 0px 50px;
}

.home-section-full {
	margin: auto;
}

.img-text-block {
	display: flex;
	/*justify-content: space-between;
	gap: 100px;*/
}

.img-text-block .text-con {
	color: #000;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	order: 0;
	padding-left: 50px;
	
}

.text-con .text {
	max-width: 750px;
}

.img-text-block h4, .product-card h4, .link-card h4, .home-carousel-slideshow h4 {
	letter-spacing: 0em;
}

#home-hero-block {
	background-color: var(--yellow);
	margin: 0px;
	height: 100vh;
	max-height: 900px;
}

.img-text-block .img-con {
	flex: 1;
	width: 100%;
	min-width: 0px;
	min-height: 0px;
	object-fit: contain;
	object-position: top right;
}

.img-con .slick-slide {
	height: 100%;
	object-fit: cover;
}

.img-con .slick-list, .img-con .slick-track {
	height: 100%;
}

.img-con img {
	width: auto;
	height: 100%;
}

.img-text-block h2  {
	font-family: 'Inter';
	font-weight: 600;
	letter-spacing: -0.02em;
}

.img-text-block .slick-dotted.slick-slider {
	margin-bottom: 0px;
}

.img-text-block .slick-dots {
	bottom: 5px;
	left: 0;
	width: 100%;
}

.img-text-block .slick-dots li, .reviews-dots .slick-dots li {
	margin: 0;
}

.img-text-block .slick-dots li button:before, .reviews-dots .slick-dots li button:before {
	background: #fff;
	opacity: 0.5;
}

#home-pull-background {
	
	animation: colour-cycle 20s infinite;
}

@keyframes colour-cycle {
	0%{background-color: #E22327;}
	20%{background-color: var(--orange);}
	40%{background-color: var(--purple);}
	60%{background-color: var(--blue);}
	80%{background-color: var(--green);}
	90%{background-color: var(--pink);}
	100%{background-color: #E22327;}
}

#home-pull-quote {
	display: flex;
	flex-direction: column;
	padding-top: 125px;
	text-align: center;
	max-height: 900px;
    height: calc(100vh + 72px);
}

.pull-quote {
	color: var(--white);
	max-width: 700px;
	margin: 0 auto;
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#pull-quote-footer {
	flex: 0 0 auto;
	color: var(--white);
}

#pull-quote-footer hr {
	border-top: 1px solid var(--white);
}

#pull-quote-footer-text {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 15px 0px 20px 0px;
	gap: 0px;
}

#pull-quote-footer-text h5 {
	flex: 0 0 auto;
	margin: 0px;
	letter-spacing: 0.04em;
}

#home-product-showcase {
	padding: 0px;
}

.product-carousel {
	display: flex;
	gap: 20px;
	padding: 120px 0px 10px 0px;
	overflow-x: none;
	width: 1090px;
	margin: 0px auto;
	scrollbar-color: #999 #333;
}

@media (max-width:1140px) {
	.product-carousel {
		padding: 120px 25px 10px 25px;
		overflow-x: scroll;
		margin: 0;
		width: auto;
	}
}

.product-carousel::-webkit-scrollbar {
	height: 12px; /* Mostly for horizontal scrollbars */
	
}

.product-carousel::-webkit-scrollbar-thumb { /* Foreground */
	background: #e9cd1f;
	border: 2px solid #ffdd33;
	}

.product-carousel::-webkit-scrollbar-track { /* Background */
	background: #FFDD33;
	margin: 0px 25px;
	
}

.product-card-links {
	width: 100%;
}

.product-carousel a {
	text-decoration: none;
	color: #000;
}

/*.product-card {
	display:block;
	position: relative;
	background-color: var(--white);
	height: 100%;
	border: 2px solid #CCC4A3;
	border-radius: 0.5em;
	width: 380px;
	flex:0 0 auto;
}*/

.product-card img {
	max-width: 350px;
	width: 80vw;
	/*padding: 20px;*/
	border-radius: 0.5em;
	border: 2px solid #999;
}

.product-card h3 {
	font-family: 'Inter', 'acumin pro', sans-serif;
	font-size: 1.75em;
	margin: 10px 20px;
}

.product-card h5 {
	font-family: 'Inter', 'acumin pro', sans-serif;
	font-size: 1.1em;
	letter-spacing: 0em;
	line-height: 1.4em;
	margin: 15px 0px 0px 0px;
}


#home-product-showcase .hero-text {
	padding: 50px 0px 70px 0px;
}

.card-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	padding: 40px 0px;
}

.card-grid a {
	text-decoration: none;
}

.card-grid .wide { 
	grid-column: span 2;
}

.link-card {
	height: 450px;
	
	border-radius: 0.75em;
	padding: 30px;
}

#new-game.link-card {
	background: url(/Images/TT-web-thumb-EY.jpg) center;
	background-size: cover;
}

.link-card .text, .gd-card .text {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 500px;
	margin: 0 auto;
	align-items: flex-start;
}

.link-card h5, .link-card h2, .link-card h4 {
	text-align: center;
	color: #fff;
	text-decoration: none;
}

#new-game h5, #new-game h2, #new-game h4 {
	color: #000;
}

#reviews-card {
	background-color: #2b2b2b;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#reviews-card h4 {
	font-size: 30px;
	font-weight: 300;
}

@media (max-width:1500px) {
	#reviews-card h4 {
		font-size: calc(15px + 1vw);
	}
}

.reviews-slideshow {
	width: 100%;
	min-width: 0px;
}

.reviews-dots {
	width: 40px;
	height: 20px;
	margin: 0 auto;
}

.reviews-dots .slick-dots {
	left: auto;
}

.reviews-dots .slick-dotted.slick-slider {
	margin-bottom: 0px;
}


#ideas-card {
	background-color: #E9CD1F;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#ideas-card img {
	flex: 1 1 auto;
    min-height: 1px;
	width: 100%;
    object-fit: contain;
    object-position: right;
}

#ideas-card .text {
	height: auto;
	flex: 0 0 auto;
	max-width: 400px;
	margin-left: 0;
}

#ideas-card h2, #ideas-card h4 {
	text-align: left;
	color: #000;
}

#home-carousel {
	background-image: url(Images/halftone\ background\ 1.jpg);
	background-size: 1500px;
	background-color: var(--white);
}

#home-carousel .home-section {
	max-width: 5000px;
	padding: 0px;
}

.home-carousel-slideshow.slick-slider .slick-track {
	left: calc(50vw - 700px);
}

.home-carousel-slideshow .slide {
	background-color: #e1bc0a;
	width: 400px;
	padding: 45px 35px;
	margin: 100px 50px 120px 0px;
	border-radius: 20px;
	
	box-shadow: 
		1px 2px 2px hsl(50deg 96% 26% / 0.2),
		2px 4px 4px hsl(50deg 96% 26% / 0.2),
		4px 8px 8px hsl(50deg 96% 26% / 0.2),
		8px 16px 16px hsl(50deg 96% 26% / 0.2),
		1px 1px 32px hsl(50deg 96% 26% / 0.9);
	;
}

.home-carousel-arrows {
	position: relative;
	margin: 0 auto;
    max-width: 1500px;
    padding: 0 50px;
	bottom: 50px;
}



/******** NEW GAME PAGE DESIGN ********/

.game-info-block {
	display: grid;
	padding: 25px 0px;
	grid-template-columns: [y1] 1fr [y2] 1fr [y3];
	grid-template-rows: [x1] auto [x2] auto [x3];
	row-gap: 30px;
	column-gap: 30px;
}

.game-info-general-text {
	font-size: 18px;
}

.game-info-introduction {
 	margin-top: 20px;
}

.game-info-image-link {
	grid-column: y2 / y3;
	grid-row: x1 / x3;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
}

.game-info-link {
	transform: translateX(0);
	transition: ease-in-out 0.3s;
}

.game-info-link:hover {
	transform: translateX(8px);
	transition: ease-in-out 0.3s;
}

.game-info-link a{
	text-decoration: none;
	color:#000;
	font-size: 24px;
	letter-spacing: 0.01em;
}



.game-info-image {
	display: block;
	max-width: 450px;
	margin-top: 40px;
}

.game-info-image img {
	max-width: 100%;
}

.theme-links {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 12px 0px 6px 0;
}

.theme-links span {
	color: #000;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
}

.theme-links span:hover {
	cursor: pointer;
}

.theme-filter:first-child {
	margin: 0px 10px 0px 0px;
}

.theme-filter:last-child {
	margin: 0px 0px 0px 10px;
}

.theme-filter {
	margin: 0px 10px;
}

.theme-filter.active {
	color: #fff;
}

.theme-filter.active::after {
	content: "";
	height: 4px;
	width: 4px;
	background: #fff;
  	border-radius: 50%;
	display: block;
	margin-left: calc(50% - 2px);
	margin-top: 2px;
}

.game-text-block {
	display: flex;
	flex-flow: row wrap;
	padding: 40px 0px;
	gap: 50px 50px;
}

.text-para {
	flex: 1;
}

.text-para.col-1 {
	flex:0 1 500px;
}

.text-para h5 {
	margin-bottom: 10px;
}

.text-para li {
	padding-bottom: 10px;
}

.explore-game-list {
	margin: 80px 0px;
}

.explore-button {
	background-color: rgba(0,0,0,0);
	color: #000;
	font-family: 'Inter', Helvetica, sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	padding: 7px 30px;
	text-align: center;
	display: inline-block;
	font-size: 15px;
	letter-spacing: 0.25em;
	border-radius: 20px;
	margin: 20px 20px 0px 0px;
	border: #000 2px solid;
	transition: background-color ease-in-out 0.25s, color ease-in-out 0.25s;
	
}

.explore-button a, .solid-button a {
	text-decoration: none;
	color: inherit;
	
}

.explore-button a:hover {
	color: #fff;
} 

.explore-button:hover {
	color: #fff;
	background-color: rgba(0,0,0,1);
	transition: ease-in-out 0.25s;
}

.explore-button:active {
	color: #fff;
	background-color: rgba(0,0,0,1);
	transition: ease-in-out 0.25s;
}


.solid-button {
	background-color: rgba(0,0,0,1);
	color: #fff;
	font-family: 'Inter', Helvetica, sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	padding: 7px 30px;
	text-align: center;
	display: inline-block;
	font-size: 15px;
	line-height: 1em;
	margin: 0;
	letter-spacing: 0.25em;
	border-radius: 20px;
	margin: 20px 20px 0px 0px;
	border: #000 2px solid;
	transition: background-color ease-in-out 0.25s, color ease-in-out 0.25s;
}

.solid-button a:hover {
	color: #000;
} 

.solid-button:hover {
	color: #000;
	background-color: rgba(0,0,0,0);
	transition: ease-in-out 0.25s;
}

.solid-button:active {
	color: #000;
	background-color: rgba(0,0,0,0);
	transition: ease-in-out 0.25s;
}

.solid-button.square {
	border-radius: 0.5em;
	padding: 12px 30px;
}

.solid-button.red {
	background-color: var(--red);
	border-color: var(--red);
	margin: 50px 20px 0px 0px;
}

.solid-button.red a:hover {
	color: var(--red);
}

.solid-button.red:hover {
	color: var(--red);
	background-color: rgba(226, 35, 39, 0);
	transition: ease-in-out 0.25s;
}

.solid-button.red:active {
	color: var(--red);
	background-color: rgba(226, 35, 39, 0);
	transition: ease-in-out 0.25s;
}


/**** Slick Slideshow ****/

.slideshow-collection {
	max-width: 1000px;
	width: 100%;
}

.introduction-slideshow {
	max-width: 500px;
	width: 100%;
}

#theme-links .active  {
	color: #fff;
}

.slide-arrows {
	height: 30px;
	margin-top: 15px;
}



/**** Slideshow ****/

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
	max-width: 1000px;
	width: 100%;
	position: relative;
	margin: auto 0px;
}

/* Hide the images by default */
.mySlides {
	display: none;
}

/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 10px 0px 10px 5px;
	color: rgba(0,0,0,0.4);
	/*font-size: 24px;
	font-weight: 500;	*/
	border-radius: 0 3px 3px 0;
	user-select: none;
	height: 50px;
	}

.prev svg, .next svg {
    width: 13px;
    height: 25px;
}

.prev-quote, .next-quote {
	cursor: pointer;
	opacity: 1;
	color: #efedd1;
	padding-bottom: 5px;
}

.arrow-slideshow {
	height: 25px;
	opacity: 1;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  color: rgba(0,0,0,1);
}

.arrow-slideshow:hover {
	opacity: 0.5;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 1px;
  width: 15px;
  margin: 0 1px;
  background-color: rgb(0,0,0);
  /*border-radius: 50%;*/
  display: inline-block;
  transition: opacity 0.1s ease;
  opacity: 0.15;
}

.dot-home {
	background-color: #efedd1;
}

.active, .dot:hover {
	opacity: 1;
}

.change .dot {
    height: 5px;
    width: 5px;
    border-radius: 100%;
    background-color: #3965AE;
}

.slide-text {
	font-size: 5.7vw;
	margin: calc(20px + 5vw) calc(15px + 5vw);
	text-align: center;
}



/**** Ideas Page ****/
.idea-content {
	display: flex;
	flex-direction: column;
}

.idea-gif {
    margin-top: 130px;
    right: 0;
    margin-left: auto;
}

.idea-gif img {
    height: 400px;
}

.idea-title p {
	font-size: 250px;
    line-height: 1.1em;
	font-weight: 600;
	letter-spacing: -0.03em;
	
	margin-bottom: 0px;
}

.idea-subtitle p {
	font-size: 50px;
	font-weight: 600;
	letter-spacing: -0.03em;
	margin-bottom: 100px;
    margin-left: 0.4em;
}

.idea-block {
	padding-bottom: 150px;
	
}

.idea-name {
	font-size: 150px;
	line-height: 150px;
	letter-spacing: -0.02em;
	font-weight: 700;
	padding: 20px 0px;
}

.idea-para p {
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	width: 50%;
	letter-spacing: 0.01em;
	margin-left: auto;
	margin-right: 0px;
	padding: 20px 0px 40px 0px;
}

.idea-tt {
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	padding: 20px 0px 20px 0px;
	display: flex;
	align-content: center;
}

.idea-tt-title {
	font-size: 18px;
	line-height: 12px;
	font-weight: 600;
	display: flex;
	width: 50%;
}

.idea-tt-list {
	font-size: 12px;
	line-height: 12pt;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	display: flex;
}

.idea-tt-list-item {
	margin-right: 20px;
}

.idea-tt-list-item a {
	text-decoration: none;
	color: inherit;
	position: relative;
}

.idea-tt-list-item a:active {
	color: #777777;
}

.idea-tt-list-item a:after {
	content: "";
	width: 0%;
	height: 1px;
	color: #000;
	position: absolute;
	background-color: #000;
	bottom: 0;
	left: 0;
	transition: cubic-bezier(.21,.24,.24,1) 0.5s;
}

.idea-tt-list-item a:hover:after {
	width: 100%;
	transition: cubic-bezier(.21,.24,.24,1) 0.5s;
}

.idea-tt-list-item a:active:after {
	color: #777777;
	background-color: #777777;
}

#idea_2 {
	color: rgb(255, 118, 26);
}

#idea_3 {
	color: rgb(42, 165, 56);
}

#idea_4 {
	color: rgb(230, 31, 131);
}

#idea_submit {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

#idea_submit a {
	background-color: #F5E9E1;
	color: #000;
	border: 1px solid;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	text-decoration: none;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 500;
	flex:0 1 400px;
	
}

#idea_submit a:hover, #idea_submit a:active {
	background-color: #000;
	color: #F5E9E1;
}


/**** Typography ****/
h1 {
	font-family: 'Inter', 'acumin pro', Helvetica, Arial, sans-serif;
	font-size: 70px;
	font-weight: 700;
	letter-spacing: -0.022em;
	margin: 0px;
	line-height: 1em;
}

.h1-outline {
	-webkit-text-stroke: 1px #000;
	color: rgba(0,0,0,0.00);
}
h2 {
	font-family: 'Inter', 'acumin pro', Helvetica, Arial, sans-serif;
	font-weight: 600;
	font-size: 2.5em;
	line-height: 1em;
	margin: 0;
	letter-spacing: -0.01em;
}

h3 {
	font-size: 35px;
	line-height: 1.2em;
	font-weight: 700;
	margin-bottom: 10px;
	margin-top: 10px;
	
}

h4 {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
	margin-top: 10px;
}

h4.serif {
	font-family: "ivypresto-text", serif;
	font-size: 24px;
	margin-top: 0;
	font-weight: 600;
	letter-spacing: 0;
}

h5 {
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.25em;
	margin: 0px auto;
}

h5.serif {
	font-family: "ivypresto-text", serif;
	font-size: 16px;
	font-weight: 200;
	letter-spacing: 0;
}

p {
	font-size: 0.9em;
	line-height: 1.5em;
	margin: 0px;	
}

.serif-h1 {
	font-family: "ivypresto-text", serif;
	font-size: 55px;
	line-height: 1.2em;
	letter-spacing: -0.005em;
}

.serif-h1.bold {
	font-weight: 600;
	padding-bottom: 0.4em;
}

.serif-h1.light {
	font-weight: 300;
}

.serif-h3 {
	font-family: "ivypresto-text", serif;
	font-size: 25px;
	line-height: 1.4em;
	letter-spacing: -0.005em;
}

.serif-h3 ul {
	font-weight: 600;
	padding: 0;
	margin-bottom: 0px;
}

.serif-h3 li {
	font-weight: 300;
	list-style-type: none;
}

.hero-title p {
	font-size: 50px;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 55px;
	text-align: center;
	padding-bottom: 5px;
	color: #efedd1;
}

.hero-text p {
	font-size: 24px;
	font-weight: 300;
	letter-spacing: 0.01em;
	text-align: center;
	color: #efedd1;
}

.hero-text a {
	text-decoration: none;
	border-bottom: 1px solid #6f6f6f;
	color: #6f6f6f;
}

.hero-text a:hover {
	color: #000;
	border-bottom: 1px solid #000;
}

.hero-text-large {
	flex: 0 1 auto;
	font-size: 60px;
	font-weight: 200;
	letter-spacing: 0.01em;
	text-align: center;
	color: #efedd1;
}

.hero-text-large p {
	line-height: 1.3em;
}

sup {
    font-size: 0.55em;
    letter-spacing: 0.08em;
}

.announcement {
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-align: center;
}

/**** Footer ****/

.footer {
	background: #000;
	display: flex;
	flex-direction: column;
	padding: 85px 100px 30px 100px;
}

#f-img {
	display: block;
	max-width: 630px;
	margin: 0px auto;
	width: 130px;
}

.f-content {
	margin: 0px auto;
	width: 100%;
	max-width: 1000px;	
	display: flex;
	color: #f9f2ed;
	justify-content: space-between;
	flex-wrap: nowrap;
}

#f-nav {
	display: flex;	
	margin: 60px auto 30px auto;
}

#f-nav a {
	text-decoration: none;
	color: #f9f2ed;
}

#f-nav a:hover {
	opacity: 0.8;
}

.f-link {
	display: flex;
	padding: 0px 20px;
	letter-spacing: 0.02em;
}

#f-social {
	margin: 0px auto 40px auto;
	width: 100px;
	display: flex;
	justify-content: space-between;
}

#f-social img {
	width: 26px;
}

#f-udc {
	color: #f9f2ed;
	min-width: 100px;
	max-width: 420px;
	margin: 0px auto;
	font-size: 14px;
	line-height: 1.8em;
	text-align: center;
}

#f-udc a {
	color: #f9f2ed;
}

#f-udc a:hover {
	color: #BABABA;
}


.f-line-cont {
	margin: 0px auto;
	width: 100%;
	max-width: 1000px;
}

hr.f-line {
	border-top: 1px solid rgba(249,242,237,0.70);
	margin-bottom: 30px;
}


/*** Signup ***/

#mc_embed_signup {
    font-size: 14px;
    max-width: 500px;
}

#mc_embed_signup form {
    display: block;
    position: relative;
    text-align: left;
    padding: 80px 0px;
}

#mc_embed_signup .indicates-required {
    text-align: right;
    font-size: 11px;
}

#mc_embed_signup .asterisk {
    color: #e85c41;
    font-size: 150%;
    font-weight: normal;
    position: relative;
    top: 5px;
}

#mc_embed_signup .mc-field-group {
    clear: left;
    position: relative;
    width: 100%;
    padding-bottom: 3%;
    min-height: 50px;
}

#mc_embed_signup .mc-field-group label {
    display: block;
    margin-bottom: 3px;
}

#mc_embed_signup .mc-field-group input {
    display: block;
    width: 100%;
    padding: 8px 0;
    text-indent: 2%;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    font-family: acumin-pro, Helvetica, san-serif;
    letter-spacing: 0.02em;
    font-weight: 300;
}

#mc_embed_signup input {
    border: 1px solid #000;
}

#mc_embed_signup .mc-field-group.input-group ul {
    margin: 0;
    padding: 5px 0;
    list-style: none;
}

#mc_embed_signup .mc-field-group.input-group ul li {
    display: block;
    padding-bottom: 15px;
    margin: 0;
}

#mc_embed_signup .mc-field-group.input-group input {
    display: inline;
    width: auto;
    border: none;
}

#mc_embed_signup .mc-field-group.input-group label {
    display: inline;
}

#mc_embed_signup div#mce-responses {
    float: left;
    top: -1.4em;
    padding: 0em .5em 0em .5em;
    overflow: hidden;
    width: 90%;
    margin: 0 5%;
    clear: both;
}

#mc_embed_signup div.response {
    margin: 1em 0;
    padding: 1em .5em .5em 0;
    font-weight: bold;
    float: left;
    top: -1.5em;
    z-index: 1;
    width: 80%;
}

#mc_embed_signup #mce-error-response {
    display: none;
}

#mc_embed_signup #mce-success-response {
    color: #529214;
    display: none;
}

#mc_embed_signup .clear {
    clear: both;
}

#mc_embed_signup .button {
    clear: both;
    background-color: #000;
    border: 0 none;
    transition: all;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    font-weight: 300;
    height: 40px;
    line-height: 32px;
    margin: 0 5px 10px 0;
    padding: 0 22px;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
    white-space: nowrap;
    width: auto;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

#mc_embed_signup .button:hover{
    color: #F9EB21;
}

#mc_embed_signup div.mce_inline_error {
    margin: 0 0 1em 0;
    padding: 5px 10px;
    background-color: #FF4A60;
    font-weight: bold;
    z-index: 1;
    color: #fff;
}

#mc_embed_signup input:focus {
    outline: #FF4A60 solid 4px;
    outline-offset: 0px;
}

#mc_embed_signup h4 {
    margin-bottom: 10px;
}


/***** Social Sharing *****/

.social {
    display: flex;
    flex-direction: row;
    padding: 20px 0px
}

.social-text {
    flex: 2.5;
    padding-right: 40px;
}

.social-text h4 {
    margin: 15px 0;
}

.social-icons {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 5px;
}

.social-icons img {
    width: 40px;
}

svg {
  width: 40px;
  height: 40px;
}

.social-icons svg:hover {
  fill: #FF4A60;
}



/**************** Question of the day ******************/

.qotd .body-content {
	padding: 0;
}

#qotd-section {
	display: flex;
    flex-direction: column;
    padding-top: 0px;
    text-align: center;
    max-height: 900px;
    min-height: calc(70vh + 72px);
}

.qotd .pull-quote {
	max-width: 1000px;
}

.qotd .serif-h1 {
	color: var(--red);
	font-size: 80px;
	margin: 50px 0px;
}

#qotd-footer-text {
	display: flex;
	justify-content: space-around;
	flex-direction: row;
}

#qotd-footer-text h5 {
	letter-spacing: 0.3em;
	margin: 0px 0px 15px 0px;
}

#date {
	margin: 15px 0;
	display: none;
}

.qotd .link-card {
	height: 650px;
}

.qotd .link-card h2, .qotd .link-card h4, .qotd .link-card h5 {
	color: #000;
}

.qotd h4 {
	font-weight: 400;
}

#coaster-card h2, #coaster-card h4 {
	text-align: right;
}

#coaster-card.link-card {
	background-image: url(Images/Product/TT-coaster-mockup-1-wide.jpg);
	background-position: 100% 50%;
	background-size: 130%;

}

#coaster-card .text {
	margin: 30px 30px 0 auto;
	justify-content: flex-start;
	max-width: 400px;
}

#tt-info-card.link-card {
	padding: 30px 50px;
	height: 100%;
	min-height: 0px;

	background-image: url(Images/gradients/Gradient-blue-4-r.jpg);
	background-position: 40% 48%;
	background-size: 110%;
}

#deeper-card.link-card {
	padding: 30px 50px;
	height: 100%;
	min-height: 0px;
	background-image: url(Images/gradients/Gradient-Pink.jpg);
	background-position: 100% 100%;
	background-size: 130%;
}

#tt-info-card h2, #tt-info-card h4, #deeper-card h2, #deeper-card h4  {
	text-align: left;
	margin-bottom: 0px;
	color: var(--offwhite);
	margin-top: 0;
}

.card-col-left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#tt-game-card {
	background-image: url(Images/Product/Friends-wide-web.jpg);
	background-position: 90% 85%;
	background-size: 1700px;
}

#tt-game-card h2, #tt-game-card h4 {
	text-align: left;
}

#tt-game-card .text {
	margin: 100px auto 0 30px;
	justify-content: flex-start;
	max-width: 420px;
}

#partner-card {
	background-color: #9ddfe0;
	padding: 30px 50px;
    height: 100%;
    min-height: 0px;
}

#partner-card .card-grid {
	display: grid;
	grid-template-columns: 340px 1fr 500px 1fr 200px;
	grid-template-rows: 1fr;
	gap: 0px;
}

#partner-card h2 {
	text-align: left;
	margin-bottom: 0px;
	margin-top: 0;
	max-width: 340px;
}

#partner-card h4 {
	text-align: left;
	margin-bottom: 0px;
	margin-top: 0;
	grid-column: 3;
}

#partner-card img {
	max-width: 200px;
	grid-column: 5;
}


/**************** Going Deeper ******************/

.GD .home-section {
	border-bottom: solid 1px #000;
}

#gd-hero-section {
	max-height: 900px;
    min-height: calc(60vh + 72px);
	margin: 50px auto;

}

.gd-card {
	height: 400px;
}

.gd-card.video {
	height: 100%;
}

#gd-hero-img {
	background: url(/Images/Spark.jpg) center;
    background-size: cover;
	height: inherit;
}

#gd-questions .text-con {
	max-width: 350px;
	min-width: 0px;
}

#gd-questions .rectangular-btn {
	margin-top: 0px;
}

.button-container {
	width: 100%;
	max-width: 280px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 50px;
}

.gd-slide-con {
	min-width: 0px;
	width: 100%;
}

.gd-slideshow {
	min-width: 0px;
	width: 100%;
}

.gd-slideshow .slick-list {
	border: solid 1px #000;
}

.gd-slide-con .slick-dots {
	position: relative;
	left: auto;
	z-index: 1;
}

.gd-slide-con .slick-arrow {
	z-index: 10;
}

#gd-grid-section {
	padding: 50px 0px;
	border-bottom: none;
}

.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	padding: 40px 0px;
}

.two-col.wide {
	grid-template-columns: 300px 1fr;
	gap: 100px;
}

.one-col {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 0px;
}

.w-back {
	background-color: #fffdf3;
    border-radius: 10px;
	padding: 25px;
}

.gd-card .text {
	align-items: flex-start;
}

#gd-soul-img {
	background: url(/Images/unsplash-image-z-zOeIMQJCE-2.jpg) center;
    background-size: cover;
}

#gd-peace-img {
	background: url(/Images/gradients/Gradient-blue-4.jpg) center;
    background-size: cover;
}

#gd-mind-img {
	background: url(/Images/Children\ background\ 2.jpg) center;
    background-size: cover;
}

#gd-body-img {
	background: url(/Images/tt4students-web-background.svg) center;
    background-size: cover;
}





/**************** Media Quries ****************/

@media (hover: none) {

}

@media (max-width:1500px) {


	.home-carousel-slideshow.slick-slider .slick-track {
		left: 50px;
	}
}

@media (max-width:1350px) {
	.tt-list-item {
		width: 50%;
	}

	#coaster-card.link-card {
		background-image: url(Images/Product/TT-coaster-mockup-1-wide.jpg);
		background-position: 70% 28%;
		background-size: 1690px;
	
	}

	#partner-card .card-grid {
		grid-template-columns: auto 30px 200px;
		grid-template-rows: auto auto;
	}

	#partner-card h2 {
		margin-bottom: 1em;
	}

	#partner-card h4 {
		grid-column: 1;
		grid-row: 2;
		width: 100%;
		max-width: 500px;
	}

	#partner-card img {
		grid-column: 3;
		grid-row: 1 / 3;
	}
}

@media (max-width: 1300px) {

	/*.img-text-block {
		gap: 50px;
	}*/

	#home-hero-block h1 {
		font-size: calc(10px + 4.5vw);
	}
}

@media (min-width: 1175px) {
	
	.slide-text {
		font-size: 67px;
		margin: 78.75px 40px;
	}
}

@media (max-width: 1175px) {
	
	.theme {
		min-width: 30%;		
		max-width: 45%;
	}

	#tt-game-card {
		background-size: 140%;
	}
	
	#tt-game-card .text {
		margin: 50px auto 0 30px;
	}
}

@media (max-width: 1050px) {

	#home-game-list {
		padding: 100px 50px;
	}

	.top-games a {
		font-size: calc(20px + 7vw);
		line-height: 1.2em;
		letter-spacing: 0em;
	}

	#game-list-content-block{
		flex-direction: column;
		gap: 30px;
	}

	.tt-list-item {
		width: 33.333%;
	}

	.card-grid {
		padding: 20px 0px;
	}
	
	.gd-card.two-col {
		grid-template-columns: 1fr;
	}

	#gd-grid-section .gd-card {
		height: auto;
	}
	.gd-card-img {
		height: 0px;
		padding-bottom: 56.25%;
		align-self: end;
	}
	
}

@media (max-width: 1030px){
	.christmas .theme-links {
		flex-wrap: wrap;
		flex-direction: column;
		height:48px;
		margin: 20px 5px;
	}

	.christmas .theme-filter {
		margin: 0px;
	}

	.christmas .theme-filter:first-child, .christmas .theme-filter:last-child {
		margin: 0px;
	}

	.christmas .theme-filter.active::after {
		display: none;
	}

	.link-card {
		height: 400px;
	}
}

@media (max-width: 1000px){
	
	.header_inner {
	padding: 15px 55px 15px 55px;	
	}
	
	hr.header-line {
		margin: 0px 0px;
	}
	
    .dropdown_content {
        padding: 16px 55px;
    }
	
	h2 {
		font-size: 2.2em;
	}
	
	#block_1 {
		/*padding-top: 50px;*/
		height: 480px;
	}

	#hero-img-1 {
		height: 530px;
		width: 1000px;
		background-position: 50% 50%;
    	background-attachment: fixed;
		/*background-size: cover;
		background-position: center;*/

	}
	
	.hero-text-large {
		padding: 0 80px;
	}
	
	#content_3 {
		margin-top: 0px;
		background-position: 75%;
	}
	
	#content_5 {
		margin-top: 0px;
		background-position: 75%;
	}
	
	.long-theme {
		padding-bottom: 50px;
	}
	
	.footer {
		padding: 85px 50px 30px 50px;
	}

	.img-text-block .text-con {
		margin: 0;
	}
	
	.pull-quote {
		max-width: 550px;
	}

	.serif-h1 {
		font-size: 45px;
	}

	.qotd .link-card {
		height: 650px;
	}

	#coaster-card.link-card {
		background-image: url(Images/Product/TT-coaster-mockup-1-wide.jpg);
		background-position: 55% 10%;
		background-size: 1550px;
	
	}

	.two-col {
		grid-template-columns: 1fr;
	}

	#gd-questions .two-col, #gd-hero-section .two-col {
		gap: 50px;
		padding: 40px 0px;
	}
	
}

@media (max-width:900px){
	#block_3 {
		/*flex-direction: column;
		align-items: center;
		padding: 75px 0px 0px 0px;*/
        height: 70vh;
        min-height: 450px;
	}
	
	#block_3 .text-1 {
		margin: 50px 40px 20px 40px;
	}

	#block_3 .hero-text p {
		line-height: 1.3em;
	}

	#block_3 .hero-img {
		max-width: 100%;
	}

	.home-section {
		padding: 0px 20px;
	}

	.img-text-block {
		flex-direction: column;
		gap: 80px;
	}

	.img-text-block .img-con {
		flex: 1 0 auto;
		height: 60vh;
	}

	.img-text-block .text-con {
		flex: 0 0 auto;
		gap: 5vw;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		order: 1;
		justify-content: flex-start;
		padding: 0px 0px 80px 80px;
	}

	.text-con .text {
		flex: 0 1 400px;
	}

	.img-text-block .solid-button.red {
		margin: 0;
	}

	#home-hero-block {
		height: auto;
		max-height: 1500px;
	}

	#home-hero-block h1 {
		font-size: 60px;
	}

	.qotd .serif-h1 {
		font-size: calc(6.8vw + 18.84px);
	}

	.home-carousel-slideshow .slide {
		width: 300px;
		padding: 45px 35px;
		margin: 80px 40px 100px 0px;

		box-shadow: 
			1px 2px 2px hsl(50deg 96% 26% / 0.2),
			2px 4px 4px hsl(50deg 96% 26% / 0.2),
			4px 8px 8px hsl(50deg 96% 26% / 0.2),
			8px 16px 16px hsl(50deg 96% 26% / 0.2),
			1px 1px 25px hsl(50deg 96% 26% / 0.5);
		;
	}

	.home-carousel-slideshow h2 {
		font-size: 1.8em;
	}

	.home-carousel-slideshow h4 {
		font-size: 18px;
	}

	#tt-info-card.link-card {
	background-position: 60% 38%;
	background-size: 930px;
	}

	#deeper-card.link-card {
	background-position: 80% 100%;
	background-size: 930px;
	}

	
}

@media (max-width:800px){
	
	#hero-img-2 {
		width: 250px;
		height: 250px;
		background-size: contain;
	}
	
	#block_4 {
		height: 570px;
	}
	
	
	.idea-tt-title {
	width: 200px;
	}
	
	.text-1 {
		margin-top: 120px;
	}
	
	#block_2 {
	height: 70vh;
	max-height: 720px;
	background-size: 1100px;
	background-position: 90% 50%;
	}
    
    #block_8 .hero-text{
        padding:0px 20px;
    }

	#content_9 .text-2 {
		margin: 0 5vw;
	}

	.game-info-block {
		display: grid;
		padding: 25px 0px 40px 0px;
		grid-template-columns: [y1] 100% [y2];
		grid-template-rows: auto;
	}
	
	.game-info-introduction {
		 margin-top: 0px;
	}
	
	.game-info-image-link {
		grid-column: y1 / y2;
		grid-row: auto;
	
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: flex-start;
	}

	.game-info-image {
		max-width: 500px;
		margin-top: 80px;
    	margin-bottom: 50px;
	}

	.text-para {
		flex: 0 1 500px;
	}
	
	.card-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	#gd-grid-section .card-grid {
		grid-template-columns: 1fr 1fr;
	}

	.link-card {
		height: 450px;
	}
	
	#shop-link-card {
		height: 200px;
	}

	#reviews-card h4 {
		font-size: calc(10px + 3vw);
	}

	.rectangular-btn.desktop {
		display: none;
	}

	.rectangular-btn-mobile {
		display: inline-block;
	}

	#gd-hero-section {
		margin: 50px auto 0px auto;
	}

	#gd-hero-text-card {
		height: 100%;
		padding-bottom: 50px;
	}

	#gd-hero-img {
		height: 50vh;
		margin-bottom: 20px;
	}

}

@media (max-width: 750px){

	.theme-links {
		flex-wrap: wrap;
		flex-direction: column;
		height:48px;
		margin: 20px 5px;
	}

	.theme-filter {
		margin: 0px;
	}

	.theme-filter:first-child, .theme-filter:last-child {
		margin: 0px;
	}

	.theme-filter.active::after {
		display: none;
	}

	.tt-list-item {
		width: 50%;
	}

	#partner-card .card-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
	}

	#partner-card h2 {
		margin-bottom: 1em;
	}

	#partner-card h4 {
		grid-column: 1;
		grid-row: 2;
		width: 100%;
		max-width: 500px;
	}

	#partner-card img {
		grid-column: 1;
		grid-row: 3;
		margin-top: 40px;
	}
}



@media (max-width:700px) {
	
    .idea-gif {
        margin-top: 100px;
    }

    .idea-gif img {
        height: 300px;
    }
    
	.idea-title p{
		font-size: 170px;
	}
	
	.idea-subtitle p{
		font-size: 40px;
        margin-left: 0.3em;
	}
	
	.idea-name {
    font-size: 120px;
    line-height: 120px;
	}
	
	.idea-para p{
		font-size: 16px;
		line-height: 24px;
		width: 100%;
    	max-width: 450px;
		margin-left: 0px;
    	margin-right: auto;
	}
	
	.idea-tt {
		flex-direction: column;
		padding: 30px 0px;
		
	}
	
	.idea-tt-list {
		padding-top: 15px;
	}
	
	.hero-text-large {
		font-size: 50px;
		padding: 0 60px;
	}
	
	.pull-quote {
		max-width: 425px;
	}

	.serif-h1 {
		font-size: 35px;
		letter-spacing: 0.005em;
	}


	#gd-grid-section .two-col {
		grid-column: span 2;
		gap: 40px;
	}

	.link-card .text, .gd-card .text {
		margin: 0 auto 0 0;
	}
}



@media (max-width: 600px){
	
	.header_inner {
		padding: 15px 40px 15px 40px;	
	}
	
	.body-content {
		padding: 1px 20px 0px 20px;
		
	}
	
	.theme {
		max-width: 400px;
		min-width: 0px;
		margin: 0px 0px 20px 0px;
	}
	
	.game-subtitle {
		padding: 15px 0px;
	}
	
    body.mobile-menu-open {
        height: 100vh;
        overflow: hidden;
        background-size: cover;
    }
    
    .mobile-menu-open .dropdown_content {
        opacity: 1;
        /*transform: translate(0, 20px);*/
        pointer-events: auto;
        overflow: scroll;
		max-height: 100vh;
    }
    
	.dropdown_content {
		/*height: 100%;*/
		left: 0;
    	padding: 16px 20px;
    	width: 100%;
	}
	
	.dropdown-list {
		margin: 0px 20px 40px 20px;
		column-width: 140px;
	}
	
	.dropdown-list a {
        font-size: 1em;
        line-height: 2em;
    }
	
	.close {
		display: block;
		padding-left: 40px;
	}
	
	.slide-block {
		padding-left: 0px;
		padding-right: 0px;
        padding-bottom: 20px;
	}
	
	.slideshow-container {
		margin: auto 0;
		top: -9px;
	}
	
	.dot {
		margin: 26px 1px 0 1px;
	}
	
	.mySlides {
		padding-top: 10px;
	}
    
    .wellbeing-emotions .mySlides {
        padding-top: 40px;
    }
	
	.prev, .next {
		top: 0;
        padding: 14px 0px 10px 5px;
	}
    
    .prev svg, .next svg {
        height: 20px;
    }
	
	.arrow-slideshow {
		height: 20px;
		margin: 0;
	}
	
	.slide-text {
		font-size: 6.5vw;
		margin: calc(20px + 10vw) 4vw;
	}
	
	.q-link {
		margin: 15px 0px 10px 0px;
	}
	
	.game-nav{
		padding: 15px 0px;
	}
	
	h1 {
		font-size: calc(23px + 8vw);
	}

	#home-hero-block h1 {
		font-size: 50px;
	}

	.serif-h3 {
		font-size: 20px;
	}
	
	.img-text-block .text-con {
		padding: 0 0 80px 50px;
	}

	.footer {
		padding: 85px 20px 30px 20px;
	}
	
	#block_2 {
		background-image: url("Images/Friends narrow small.jpg");
		height: 1000px;
		max-height: 810px;
		background-size: 650px;
		background-position: center 40%;
	}
	
	#block_2 .text-1 {
		margin-top: 120px;
	}
	
	#block_2 .content {
		margin-top: 0px;
		justify-content: center;
	}
	
	#block_2 p {
	text-align: center;
	}

	#game-list-content-block {
		padding-top: 60px;
	}

	.tt-list-container {
		justify-content: space-between;
		column-gap: 40px;
		padding-top: 30px;
	}

	.tt-list-item {
		font-size: 16px;
		width: 145px;
	}

	#deeper-card.link-card, #tt-info-card.link-card {
		padding: 30px;
	}

	.qotd .link-card {
		height: calc(440px + 24vw);
	}
	
	#partner-card {
	padding: 30px;
	}


	#coaster-card h2, #coaster-card h4 {
		text-align: left;
		margin-bottom: 0px;
	}
	
	#coaster-card.link-card {
		background-image: url(Images/Product/TT-coaster-mockup-tall.jpg);
		background-position: 50% 00%;
		background-size: 100%;
	
	}
	
	#coaster-card .text {
		margin: auto auto 30px 0;
		justify-content: flex-end;
	}

	#tt-game-card {
		background-image: url(Images/Product/TT-friends-tall.jpg);
		background-size: 100%;
		background-position: 50% 95%;
	}
	
	#tt-game-card .text {
		margin: 20px auto 0 0px;
	}
	
	.X {
		grid-column-start: 2;
	}

	.menu-btn-container {
		grid-row-start: 2;
		margin: 40px 0px 40px auto;
	}

	.dropdown-title {
		grid-row-start: 3;
		margin-left: 20px;
	}

}



@media (max-width:522px) {
	

	.rectangular-btn.menu-btn {
		font-size: 12px;
		letter-spacing: 0.02em;
	}

	#big-logo {
		display: none;
	}
	
	#small-logo {
		display: block;
	}
	
	.hero-title p {
		font-size: 45px;
		letter-spacing: -0.01em;
		line-height: 50px;
		padding-bottom: 5px;
	}

	.hero-text p {
		font-size: 20px;
		letter-spacing: 0.03em;
	}
	
	.hero-text-large {
		padding: 0 20px;
	}
    
    .announcement {
        font-size: 14px;
    }
	
	
	#f-nav {
		margin: 60px auto 10px auto;
		flex-wrap: wrap;
		justify-content: center;	
	}

	.f-link {
		padding: 0px 20px 20px 20px;
	}
	
    .idea-gif {
        margin-top: 60px;
    }

    .idea-gif img {
        height: 250px;
    }
    
	.idea-title p{
		font-size: calc(10px + 30vw);
		margin-bottom: 0px;
	}
	
	.idea-subtitle p{
		font-size: 35px;
    	line-height: 1em;
	}
	
	.idea-name {
		font-size: calc(6px + 22vw);
    	line-height: calc(6px + 22vw);
	}
	
	.idea-tt {
		padding: 30px 0px;
		
	}
	
	.idea-tt-list-item {
		margin-right: 20px;
		margin-top: 10px;
	}
	
	.idea-block {
		padding-bottom: 120px;
	}
	
	#block_2 {
		height: 100vh;
		max-height: 750px;
		background-size: 560px;
		background-position: center 50%;
    }
    
    .lockdown .dot {
        width: 12px;
    }
    
    .social {
        flex-direction: column;
        padding: 30px 0px
    }

    .social-text {
        flex: 1;
        padding-right: 0px;
        padding-bottom: 30px;
        text-align: center;
    }

    .social-icons {
        justify-content: space-around;
        padding: 0px;
    }

	.theme-links, .christmas .theme-links {
		height:66px;
	}

	.serif-h1 {
		font-size: 8vw;
	}

	#game-list-filter-block {
		margin-top: 25px;
	}

	.game-list-filter-btn {
		margin: 10px 5px 0px 0px;
		font-size: 16px;
	}
}

@media (max-width:450px) {

	#home-game-list {
		padding: 50px 20px;
	}

	#home-hero-block h1 {
		font-size: 38px;
	}

	.serif-h3 {
		font-size: 18px;
	}
	
	.img-text-block .text-con {
		padding: 0 0 80px 40px;
	}

	.home-carousel-slideshow .slick-track {
		padding-left: 20px;
	}

	.home-carousel-slideshow.slick-slider .slick-track {
		left: 20px;
	}

	.home-carousel-arrows {
		padding: 0 20px;
		bottom: 40px;
	}
}

@media (max-width:400px) {
	
	.hero-title p {
		font-size: 35px;
		letter-spacing: -0.01em;
		line-height: 35px;
		padding-bottom: 15px;
	}
	
	.hero-text p {
		font-size: 16px;
		line-height: 1.3em;
		letter-spacing: 0.01em;
	}
	
	.hero-text-large {
		font-size: 40px;
	}

	.hero-text-large p {
		line-height: 1.4em;
	}
	
	#block_1 {
		padding-top: 40px;
		height: 370px;
	}
	
	#hero-img-1 {
		height: 200px;
	}
	
	#block_2 {
		max-height: 720px;
		background-size: 500px;
		background-position: center 35%;
}
	
	.text-1 {
		margin-top: 56px;
	}
	
	#hero-img-2 {
		height: 200px;
		background-position: center;
	}
	
	#block_3 a {
		font-size: 28px;
	}
	
	#block_4 {
		height: 440px;
		padding-top: 40px;
	}
    
    #block_8 .content {
        margin-bottom: 70px;
    }
	
	.tt-list-item {
		width: calc(50% - 15px);
	}

	.tt-list-container {
		column-gap: 30px;
	}
	
	.idea-tt-list {
		flex-direction: column;
		padding-top: 10px;
	}
    
    .lockdown .dot {
        width: 7px;
        height: 2px
    }

	.christmas .theme-links {
		height:160px;
	}
	
}



@media (max-width:360px) {
	#pull-quote-footer-text {
		flex-direction: column-reverse;
		gap: 10px;
	}
}
	@media (max-width:320px) {
	.theme-links {
		height:160px;
	}
}
