/* CALL TO ACTION HEADER */

/* general */
.cta-container {
	display: flex;
	max-width: 800px;
	max-height: 200px;
	margin: 20px 0;
}

.cta-item {
	margin: 0 10px;
}

.cta-text {
	font-family: 'Cabin Sketch', cursive;
	font-size: 20px;
	color: red;
}

.cta-arrow path {
	fill: red;
}

.cta-img {
	box-shadow: 0px 0px 5px 5px red;
}

a:hover > .cta-img {
	box-shadow: 0px 0px 8px 8px #f26611;
}

/* specific */

.cta-book {
	width: 45%;
	display: flex;
}

.cta-book-text {
	display: inline-block;
	float: right;
}

.cta-book-arrow {
	width: 35%;
	transform: scaleX(-1) rotate(-26deg);
	margin: -5px 20px 0 0;
	float: right;
}

.cta-book-img {
	width: 80%;
	transform: rotate(16deg);
	margin: 10px 0px 0px 0px;
}

.cta-channel {
	width: 55%;
}

.cta-channel-text {
	float: right;
	display: block;
	transform: rotate(16deg);
}

.cta-channel-arrow {
	width: 15%;
	transform: rotate(-10deg);
	float: left;
	margin: -5px 0 0 10px;
}

.cta-channel-img {
	width: 70%;
	margin: 30px 0 0 0;
	float: left;
}

/* responsive */
/* hide when screen too small */
@media only screen and (max-width:700px) and (max-height:750px){
	.cta-container {
		display: none;
	}
}
@media only screen and (max-width:400px){
	.cta-container {
		display: none;
	}
}

/* increase font size if screen space grows
   (that requires fiddling margins a little, so everything looks good) */
@media only screen and (min-width:500px){
	.cta-text {
		font-size: 25px;
	}
}
@media only screen and (min-width:650px){
	.cta-item {
		margin: 0 20px;
	}
	.cta-text {
		font-size: 30px;
	}
	.cta-book-img {
		width: 75%
	}
	.cta-channel-arrow {
		margin-top: -10px;
	}
}
@media only screen and (min-width:800px){
	.cta-text {
		font-size: 35px;
	}
	.cta-book-arrow {
		margin-right: 30px;
	}
}
