#tools {
	position: relative;
	margin-bottom: 50px;
	
	background-image: linear-gradient(to bottom, #000, #000);
	
	color: #FFF;
}

/*--------------------------------------------------------------------------------*/

#tools > .background {
    position: absolute; top: 0; left: 0;
	height: 100%; width: 100%;
}
#tools > .background > .img,
#tools > .background > video {
	position: relative;
    display: block; height: 100%; width: 100%;
	
    pointer-events: none;
}
#tools > .background > .img {
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
}
#tools > .background > video {
	object-fit: cover;
    object-position: center;
}
#tools > .background:after {
	content: '';
	position: absolute; top: 0; left: 0;
	display: block; height: 100%; width: 100%;
	
	background-color: #000;
	
	opacity: .3;
}

/*--------------------------------------------------------------------------------*/

#tools > .content-wrapper {
	position: relative;
	display: flex; min-height: 100vh;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 50px;
	
	text-align: center;
	
	isolation: isolate;
}
@media (min-width: 900px) {
	#tools > .content-wrapper {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}
@media (max-width: 899.99px) {
	#tools > .content-wrapper {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

/*--------------------------------------------------------------------------------*/

#tools > .content-wrapper > .title {
	max-width: 800px;
	
	text-transform: uppercase;
    font-family: "Stretch Pro";
}
#tools > .content-wrapper > .description {
	max-width: 300px;
	
	line-height: 20px;
	font-size: 14px;
}
#tools > .content-wrapper > .hook { font-weight: 700; }
@media (min-width: 900px) {
	#tools > .content-wrapper > .title { font-size: 50px; }
	#tools > .content-wrapper > .hook {
		line-height: 24px;
		font-size: 20px;
	}
}
@media (max-width: 899.99px) {
	#tools > .content-wrapper > .title { font-size: 24px; }
	#tools > .content-wrapper > .hook {
		line-height: 20px;
		font-size: 16px;
	}
}

/*--------------------------------------------------------------------------------*/

#tools > .content-wrapper > .tools {
	display: flex; max-width: 800px;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	row-gap: 10px;
	column-gap: 15px;
}
#tools > .content-wrapper > .tools > .tool {
    position: relative;
	display: block; width: auto; overflow: hidden;
    padding: 15px 30px;
    
	background-color: #FFF;
    border-radius: 100px;
    border: solid 1px rgba(0,0,0,.3);
	
	color: #000;
    
    isolation: isolate;
}
#tools > .content-wrapper > .tools > .tool > .container {
	display: flex;
	flex-direction: row;
	align-items: center;
	column-gap: 15px;
}
#tools > .content-wrapper > .tools > .tool > .container > .icon {
	height: 20px; width: 20px;
}
#tools > .content-wrapper > .tools > .tool > .container > .icon:empty {
	background-image: url("../../images/logo.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
#tools > .content-wrapper > .tools > .tool > .container > .icon > img {
	height: 100%; width: 100%;
	
	object-fit: contain;
	object-position: center;
}
#tools > .content-wrapper > .tools > .tool > .container > .label {
	white-space: nowrap;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
}

/*--------------------------------------------------------------------------------*/

#tools > .content-wrapper > .norms {
	display: flex; max-width: 800px;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	row-gap: 10px;
	column-gap: 15px;
}
#tools > .content-wrapper > .norms > .norm {
	display: block; width: 75px; height: 75px;
}
#tools > .content-wrapper > .norms > .norm > img {
	height: 100%; width: 100%;
	
	object-fit: contain;
	object-position: center;
}

/*--------------------------------------------------------------------------------*/

#tools > .content-wrapper > .load-btn {
	display: flex; height: 150px; width: 150px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 10px;
	padding: 20px;
	
	background-color: #F2F2F2;
	border-radius: 50%;
	
	line-height: 18px;
	font-size: 12px;
	font-weight: 700;
	font-style: italic;
	color: #000;
	
	cursor: pointer;
	
	transition:
		background-color .2s ease-out,
		color			 .2s ease-out;
}
#tools > .content-wrapper > .load-btn:hover {
	background-color: #000;
	color: #FFF;
}
#tools > .content-wrapper > .load-btn:before {
	content: '';
	display: block; height: 50px; width: 50px; transform: rotate(90deg);
	
	background-image: url("../../images/emojis/left.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}