#main section:first-child {
	margin-top: 60px;
}

#top-sec {
	position: relative;
	overflow: hidden;
}

.top-sec__bg-img {
	position: absolute;
	width: 100%;
	height: 100%;
}

.top-sec__bg-img > * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.title-block {
	padding: 80px 0 60px;
}

.top-sec__btn-block .btn {
    margin: 28px 0 0;
    display: block;
    width: 115px;
    height: 38px;
    line-height: 36px;
    font-size: 21px;
    background-image: url(../images/btn_dark.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #C7C7C7;
    transition: .3s all;
}

.top-sec__btn-block .btn:hover {
	background-image: url(../images/btn_green.png);
	color: #000;
}

#recipes-sec {
	padding: 50px 0;
}

.recipes-title {
	font-size: 42px;
	line-height: 1em;
	color: #fff;
}

.recipes-title.text-shadow {
	text-shadow: 0 5px 5px rgba(0,0,0,.6);
}

.recipe-col {
	margin-bottom: 30px;
}

.recipe-block__thumb {
	display: block;
	margin-bottom: 15px;
	width: 100%;
}

.recipe-block__thumb img {
	display: block;
	max-width: 100%;
}

.recipe-block__cat-date {
	display: block;
	font-size: 16px;
	line-height: 1.625em;
	color: #666;
	margin-bottom: .625em;
}

.recipe-block__title {
	display: block;
	font-size: 20px;
	line-height: 1.5em;
	font-weight: 500;
	margin-bottom: 5px;
	color: #222;
}

.recipes-sec__btn-col {
	text-align: center;
}

.recipes-sec__btn {
	border: none;
	display: inline-block;
	font-size: 22px;
	line-height: 42px;
	height: 44px;
	width: 124px;
	text-align: center;
	background-color: transparent;
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
	padding-bottom: 2px;
	cursor: pointer;
	transition: .3s all;
}

.recipes-sec__btn.green-btn {
	background-image: url(../images/btn_green.png);
	color: #000;
}

.recipes-sec__btn.green-btn:hover {
	background-image: url(../images/btn_dark.png);
	color: #fff;
}

@media screen and (min-width: 576px) {
	#recipes-sec {
		padding: 60px 0;
	}

	.recipes-title {
		font-size: 50px;
	}
	.recipes-sec__main-row {
		columns: 2;
		column-gap: 0;
		margin: 0 -15px;
	}

	.recipe-col {
		display: inline-block;
		padding: 0 15px;
	}
}

@media screen and (min-width: 576px) and (max-width: 767px) {
	.recipe-block__title {
		font-size: 18px;
	}
}

@media screen and (min-width: 768px) {
	.top-sec__bg-img > * {
		object-position: center;
	}

	#recipes-sec {
		padding: 70px 0;
	}

	.recipe-block__cat-date {
		font-size: 14px;
	}
}

@media screen and (min-width: 992px) {
    #main section:first-child {
        margin-top: 100px;
    }

	#recipes-sec {
		padding: 85px 0;
	}

	.recipes-sec__main-row {
		columns: 3;
	}

	.recipe-block__cat-date {
		font-size: 16px;
	}

	.recipe-block__thumb {
		margin-bottom: 20px;
	}
}

@media screen and (min-width: 1200px) {
	.title-block {
		padding: 187px 0 67px;
	}

	.recipes-title {
		font-size: 60px;
	}

	#recipes-sec {
		padding: 100px 0;
	}

	.recipe-block__thumb {
		margin-bottom: 25px;
	}
}

@media screen and (min-width: 1400px) {
}