section.thumbtack {
	.pros {
		display: flex;
		flex-flow: row wrap;
		.pro {
			width: 48%;
			background-color: #f6f6f6;
			margin: 1%;
			border-radius: 10px;
			padding: 10px;
			box-shadow: 0 0 2px #000000;
			.top {
				background-size: cover;
				background-position: center top;
				background-repeat: no-repeat;
				position: relative;
				margin: 0;
				padding: 10px;
				border-radius: 7px;
				.bg {
					position: absolute;
					top: 0;
					right: 0;
					bottom: 0;
					left: 0;
					background-image: linear-gradient(0deg, rgba(255, 255, 255, .9) 25%, rgba(255, 255, 255, .8) 50%, rgba(255, 255, 255, 0.5) 100%);
					border-radius: 7px;
				}
				.image {
					position: relative;
					width: 100px;
					margin: 0 auto;
					img {
						border-radius: 50%;
						box-shadow: 0 0 5px #666666;
						border: solid 2px #ffffff;
						width: 100px;
						max-width: 100px;
						margin: 5px auto 15px auto;
					}
				}
				.details {
					position: relative;
					flex: 1;
					.topdetails {
						display: block;
						overflow: hidden;
					}
					.name {
						border: solid 1px #cccccc;
						background-color: #ffffff;
						border-radius: 10px;
						padding: 10px 20px;
						margin: 0 10px 10px 10px;
						display: block;
						text-align: center;
						font-weight: 700;
						font-size: 110%;
						.tptitle {
							color: #009900;
						}
					}
					.rating {
						border: solid 1px #bbddbb;
						padding: 5px 10px;
						margin: 5px 10px;
						color: #009900;
						font-weight: 700;
						background-color: #ffffff;
						border-radius: 10px;
						display: block;
						text-align: center;
					}
					.pills {
						display: block;
						text-align: center;
						.pill {
							border: solid 1px #bbddbb;
							color: #009900;
							padding: 2px 10px;
							margin: 5px 5px 5px 0;
							border-radius: 10px;
							font-weight: 600;
							display: inline-block;
							background-color: #ffffff;
						}
					}
				}
			}
			.intro {
				font-weight: 600;
				margin-top: 0;
				padding: 5px;
			}
			.review {
				position: relative;
				padding: 10px;
				margin: 5px 5px 15px 5px;
				border-radius: 5px;
				background-color: #dddddd;
				font-weight: 500;
			}
			.review::after {
				content: "";
				position: absolute;
				bottom: 0;
				right: 0;
				width: 0;
				height: 0;
				border: 20px solid transparent;
				border-top-color: #dddddd;
				border-bottom: 0;
				border-right: 0;
				margin-right: 20px;
				margin-bottom: -20px;
			}
			.quote {
				display: block;
				background-image: radial-gradient(circle, #ccffcc 25%, #eeffee 84%);
				padding: 10px;
				margin: 10px 0;
				border-radius: 15px;
				button {
					display: block;
					padding: 10px 20px;
					margin: 5px auto 5px auto;
					border-radius: 5px;
					font-size: 130%;
					border: solid 2px #ffffff;
				}	
			}
			ul {
				margin-left: 10px;
				list-style-type: none;
			}
			ul li::before {
				content: "★";
				padding-right: 5px;
			}
		}
		.toppro {
			.top {
				.image {
					img {
						border: solid 2px #ffffcc;
						box-shadow: 0 0 10px #009900, 0 0 10px #009900;
					}
				}
				.details {
					.name {
						background-color: #fffff0;
					}
				}
			}
		}
	}
	.projects {
		display: flex;
		flex-flow: row wrap;
		.project {
			display: flex;
			flex-flow: row wrap;
			align-content: flex-start;
			width: 31.333%;
			background-color: #f6f6f6;
			margin: 1%;
			border-radius: 10px;
			padding: 15px;
			box-shadow: 0 0 2px #666666;
			background-size: contain;
			background-position: center top;
			background-repeat: no-repeat;
			position: relative;
			p.headline {
				font-size: 130%;
				font-weight: 700;
			}
			img {
				border-radius: 5px;
				box-shadow: 0 0 2px #666666;
				opacity: .7;
				background-color: #ffffff;
			}
		}
	}
	form.ttsearch {
		max-width: 400px;
		margin: 40px auto 20px auto;
		input {
			text-align: center;
		}
	}
	h3 {
		margin: 20px;
		text-align: center;
	}
	.ttcats {
		display: flex;
		flex-flow: row wrap;
		gap: 1%;
		padding: 2%;
		.ttcat {
			width: 32%;
			margin-bottom: 1%;
			background-color: #f6f6f6;
			background-image: linear-gradient(315deg, #f0f0f0 0%, #f9f9f9 50%, #f0f0f0 50%);
    		padding: 0 5px;
    		border-radius: 2px;
    		text-align: center;
    		border: solid 2px #ffffff;
    		box-shadow: 0 0 2px #000000;
    		font-size: 110%;
    		line-height: 130%;
    		.img {
    			width: 120px;
    			height: 120px;
    			background-size: cover;
    			border-radius: 50%;
    			margin: 15px auto 0 auto;
    			border: solid 2px #ffffff;
    			box-shadow: 0 0 5px #000000;
    		}
    		a, a:visited {
    			display: block;
    			font-weight: 600;
    			padding: 10px;
    			font-size: 100%;
    			margin: 0 10px 10px 10px;
    		}
		}
	}
}

.ttframe {
	display: none;
	z-index: 1000;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    max-height: 800px;
    width: 100%;
    height: 100%;
    overflow: auto;
	background-color: #ffffff;
	box-shadow: 0 0 10px #666666;
	div.close {
		position: absolute;
		z-index: 1001;
		top: 15px;
		right: 15px;
		background-color: #ffffff;
		padding: 5px 15px;
		border-radius: 5px;
		box-shadow: 0 0 2px #666666;
		cursor: pointer;
		font-size: 24px;
	}
	iframe {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		width: 98%;
		height: 99%;
		border: 0;
		margin: 1%;
		border-radius: 5px;
	}
}

@media screen and (max-width: 800px) {

	section.thumbtack {
		.pros {
			.pro {
				width: 98%;
				margin: 3% 1%;
			}
		}
		.projects {
			.project {
				width: 48%;
				margin: 3% 1%;
			}
		}
		.ttcats {
			gap: 2%;
			.ttcat {
				width: 49%;	
				margin-bottom: 2%;
				.img {
					width: 130px;
					height: 130px;
				}
			}
		}
	}

}

@media screen and (max-width: 600px) {

	section.thumbtack {
		.projects {
			.project {
				width: 98%;
				margin: 3% 1%;
			}
		}
		.ttcats {
			.ttcat {
				width: 100%;
				font-size: 100%;
				margin-bottom: 5%;
			}
		}
	}

}