/*!
Theme Name: Trypillya
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: trypillya
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Trypillya is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root {
	--main-black: #000000;
	--main-white: #ffffff;
	--main-primary: #AF4C1C;
	--main-secondary: #C99E67;
	--main-third: #F7EEE2;
	--speed-fast: 0.2s;
	--speed-slow: 0.4s;
}

* {
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}

html {
	scroll-behavior: initial!important;
	margin-top: 0px!important;
}

.x1, .x2, .x3, .x4, .x5, .x6, .x7, .x8, .x9 {
	opacity: 0;
	transform: translateX(-120px);
}
.x1 {
	transition: transform ease .7s .1s, opacity ease .7s .1s;
}
.x2 {
	transition: transform ease .7s .2s, opacity ease .7s .2s;
}
.x3 {
	transition: transform ease .7s .3s, opacity ease .7s .3s;
}
.x4 {
	transition: transform ease .7s .4s, opacity ease .7s .4s;
}
.x5 {
	transition: transform ease .7s .5s, opacity ease .7s .5s;
}
.x6 {
	transition: transform ease .7s .6s, opacity ease .7s .6s;
}
.x7 {
	transition: transform ease .7s .7s, opacity ease .7s .7s;
}
.x8 {
	transition: transform ease .7s .8s, opacity ease .7s .8s;
}
.x9 {
	transition: transform ease .7s .9s, opacity ease .7s .9s;
}
.ready .visible.x1, 
.ready .visible.x2, 
.ready .visible.x3, 
.ready .visible.x4, 
.ready .visible.x5, 
.ready .visible.x6,
.ready .visible.x7, 
.ready .visible.x8, 
.ready .visible.x9 {
	opacity: 1;
	transform: translateX(0px);
}

.y1, .y2, .y3, .y4, .y5, .y6, .y7, .y8, .y9 {
	opacity: 0;
	transform: translateY(120px);
}
.y1 {
	transition: transform ease .7s .1s, opacity ease .7s .1s;
}
.y2 {
	transition: transform ease .7s .2s, opacity ease .7s .2s;
}
.y3 {
	transition: transform ease .7s .3s, opacity ease .7s .3s;
}
.y4 {
	transition: transform ease .7s .4s, opacity ease .7s .4s;
}
.y5 {
	transition: transform ease .7s .5s, opacity ease .7s .5s;
}
.y6 {
	transition: transform ease .7s .6s, opacity ease .7s .6s;
}
.y7 {
	transition: transform ease .7s .7s, opacity ease .7s .7s;
}
.y8 {
	transition: transform ease .7s .8s, opacity ease .7s .8s;
}
.y9 {
	transition: transform ease .7s .9s, opacity ease .7s .9s;
}
.ready .visible.y1, 
.ready .visible.y2, 
.ready .visible.y3, 
.ready .visible.y4, 
.ready .visible.y5, 
.ready .visible.y6, 
.ready .visible.y7, 
.ready .visible.y8, 
.ready .visible.y9 {
	opacity: 1;
	transform: translateX(0px);
}

#page-preloader {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: 99;
}

.load:after, .loader:after {
	content: "";
	width: 66px;
	height: 66px;
	left: 50%;
	top: 50%;
	margin-left: -33px;
	margin-top: -33px;
	position: absolute;
	border-left: 4px solid #ccc;
	border-top: 4px solid #ccc;
	border-right: 4px solid #fff;
	border-bottom: 4px solid #ccc;
	border-radius: 50%;
	-moz-transform: translateZ(0);
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-moz-animation: load-index .5s infinite linear;
	-webkit-animation: load-index .5s infinite linear;
	animation: load-index .5s infinite linear;
}

@-moz-keyframes load-index {
	0% {
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 2px dotted #ffcc01!important;
	}
	100% {
		-moz-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 6px dotted #4ec9dd!important;
	}
}

@-webkit-keyframes load-index {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 2px dotted #ffcc01!important;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 6px dotted #4ec9dd!important;
	}
}

@keyframes load-index {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 2px dotted #ffcc01!important;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 6px dotted #4ec9dd!important;
	}
}

body {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
  color: var(--main-black);
}

body.overflow {
  overflow: hidden;
  padding-right: 17px;
}

.site#page {
  position: relative;
	overflow: clip;
	background-color: var(--main-third);
	min-height: 100svh;
	display: flex;
	flex-direction: column;
}

.container-fluid {
  padding: 0px 60px;
  max-width: 1366px;
	position: relative;
}

.container-fluid .row {
  margin-left: -15px;
  margin-right: -15px;
}

.container-fluid .row [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

img {
	width: 100%;
	height: auto;
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  display: none;
  width : 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

section.main {
	background-color: var(--main-primary);
	background-image: url(assets/img/main_bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

section.main .main-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100svh;
	position: relative;
	padding: 60px 0px;
}

section.main .main-wrap img {
	height: 350px;
	width: 100%;
	margin-bottom: 60px;
	object-fit: contain;
}

section.main .main-wrap h1 {
	font-size: 4em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-white);
	text-align: center;
	margin-bottom: 0px;
	width: 100%;
}

section.main .main-wrap a.btn-scroll-down {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 40px;
	width: 50px;
	height: 30px;
	background-image: url(assets/img/arrow-down-white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	font-size: 0px;
	line-height: 100%;
	font-weight: 400;
	color: transparent;
	overflow: hidden;
}

section.video {
	padding: 60px 0px;
	background-color: var(--main-secondary);
	background-image: url(assets/img/video_bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

section.video .video-wrap {
	display: flex;
	flex-direction: column;
}

section.video .video-wrap h2 {
	font-size: 3em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-black);
	margin-bottom: 44px;
	text-align: center;
	width: 100%;
}

section.video .video-wrap .img-wrap {
	display: flex;
	width: 100%;
	padding-top: 56.25%;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

section.video .video-wrap .img-wrap iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

section.category {
	padding: 60px 0px;
	background-color: var(--main-third);
	background-image: url(assets/img/category_bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	flex: 1;
}

section.category:nth-child(2n + 2) {
	background-color: var(--main-secondary);
	background-image: url(assets/img/video_bg.png);
}

section.category .category-wrap {
	display: flex;
	flex-direction: column;
}

section.category .category-wrap h2 {
	font-size: 3em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-black);
	margin-bottom: 44px;
	text-align: center;
	width: 100%;
}

section.category .category-wrap ul.category-posts {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 0px;
	margin: 0px;
	list-style: none;
	gap: 44px;
}

section.category .category-wrap ul.category-posts li.post-item {
	display: flex;
	align-items: center;
	width: 100%;
}

section.category .category-wrap ul.category-posts li.post-item a {
	display: flex;
	text-decoration: none;
	width: 100%;
}

section.category .category-wrap ul.category-posts li.post-item a .thumbnail {
	width: 45%;
	display: flex;
}

section.category .category-wrap ul.category-posts li.post-item a .thumbnail .img-wrap {
	width: 100%;
	display: flex;
	padding-top: 55%;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

section.category .category-wrap ul.category-posts li.post-item a .thumbnail .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.category .category-wrap ul.category-posts li.post-item a .caption {
	width: 55%;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding-left: 60px;
}

section.category .category-wrap ul.category-posts li.post-item a .caption p.h2 {
	font-size: 2.25em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-black);
	margin: 0px;
}

section.category .category-wrap ul.category-posts li.post-item a .caption ul.post-tags {
	padding: 0px;
	margin: 0px;
	list-style: none;
	display: flex;
	flex-direction: column;
	margin-top: 26px;
}

section.category .category-wrap ul.category-posts li.post-item a .caption ul.post-tags li {
	font-size: 1.5em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-black);
	margin: 0px;
}

section.category .category-wrap ul.category-posts li.post-item a .caption ul.post-tags li:nth-child(1n + 2) {
	margin-top: 16px;
}

section.category .category-wrap .btn-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 44px;
}

section.category .category-wrap .btn-wrap .btn-archive {
	font-size: 1.5em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-white);
	text-transform: uppercase;
	border: none;
	box-shadow: none;
	padding: 20px 100px;
	border-radius: 200px;
	background-color: var(--main-primary);
	text-decoration: none;
}

footer.footer {
	background-color: var(--main-primary);
	padding: 40px 0px;
}

footer.footer .footer-wrap {
	display: flex;
	align-items: center;
	position: relative;
}

footer.footer .footer-wrap span {
	font-size: 1.5em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-white);
	margin: 0px;
}

footer.footer .footer-wrap span.copyright {
	text-transform: uppercase;
}

footer.footer .footer-wrap span.slogan {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

section.single-page {
	width: 100%;
	height: 100svh;
	padding: 0px;
	margin: 0px;
	position: relative;
}

section.single-page model-viewer,
section.single-page iframe {
	position: absolute;
	z-index: 1;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	outline: none;
	background-color: #343434;
}

section.single-page::before {
	content: '';
	position: absolute;
	z-index: 2;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 20%;
	background: linear-gradient(180deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.6) 60%, rgba(255, 255, 255, 0) 100%);
	user-select: none;
	pointer-events: none;
}

section.single-page::after {
	content: '';
	position: absolute;
	z-index: 2;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 20%;
	background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.6) 60%, rgba(255, 255, 255, 0) 100%);
	user-select: none;
	pointer-events: none;
}

section.single-page .top-section {
	position: absolute;
	z-index: 3;
	left: 0px;
	top: 0px;
	width: 100%;
	display: flex;
	align-items: center;
	padding: 30px 60px 0px;
}

section.single-page .top-section .section-wrap {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

section.single-page .top-section .logo-wrap {
	display: flex;
	height: 88px;
	text-decoration: none;
}

section.single-page .top-section .logo-wrap img {
	width: auto;
	height: 100%;
	object-fit: contain;
}

section.single-page .top-section a.h2 {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 2em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-white);
	margin: 0px;
	text-decoration: none;
}

section.single-page .bottom-section {
	position: absolute;
	z-index: 3;
	left: 0px;
	bottom: 0px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0px 60px 30px;
}

section.single-page .bottom-section .section-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

section.single-page .bottom-section span.copyright {
	font-size: 1.5em;
	line-height: 150%;
	font-weight: 400;
	color: #7c7c7c;
	margin: 0px;
	text-transform: uppercase;
}

section.single-page .bottom-section h1 {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 1.5em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-white);
	margin: 0px;
}

section.single-page .bottom-section .info-wrap {
	display: flex;
	position: relative;
}

section.single-page .bottom-section .info-wrap a.btn-info-open {
	border: 3px solid var(--main-white);
	border-radius: 100%;
	width: 62px;
	min-width: 62px;
	height: 62px;
	font-size: 2.25em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-white);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
}

section.single-page .bottom-section .info-wrap .info-modal {
	position: absolute;
	right: 0px;
	bottom: calc(100% + 20px);
	border: 3px solid var(--main-white);
	background-color: #00000099;
	padding: 30px;
	border-radius: 20px;
	min-width: 450px;
	opacity: 0;
	user-select: none;
	pointer-events: none;
	transition: var(--speed-fast);
}

section.single-page .bottom-section .info-wrap .info-modal.show {
	opacity: 1;
	user-select: auto;
	pointer-events: all;
}

section.single-page .bottom-section .info-wrap .info-modal p {
	font-size: 0.875em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-white);
	margin: 0px;
}

section.single-page > a[rel="prev"] {
	position: absolute;
	z-index: 3;
	left: 52px;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	width: 50px;
	height: 30px;
	background-image: url(assets/img/arrow-down-white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	font-size: 0px;
	line-height: 100%;
	font-weight: 400;
	color: transparent;
	overflow: hidden;
}

section.single-page > a[rel="next"] {
	position: absolute;
	z-index: 3;
	right: 52px;
	top: 50%;
	transform: translateY(-50%) rotate(-90deg);
	width: 50px;
	height: 30px;
	background-image: url(assets/img/arrow-down-white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	font-size: 0px;
	line-height: 100%;
	font-weight: 400;
	color: transparent;
	overflow: hidden;
}

@media screen and (max-width: 1299px) {
	.container-fluid {
		padding: 0px 52px;
	}

	section.main .main-wrap {
		padding: 52px 0px;
	}

	section.main .main-wrap img {
		height: 310px;
		margin-bottom: 52px;
	}

	section.main .main-wrap h1 {
		font-size: 3.5em;
	}

	section.main .main-wrap a.btn-scroll-down {
		bottom: 35px;
		width: 44px;
		height: 26px;
	}

	section.video {
		padding: 52px 0px;
	}

	section.video .video-wrap h2 {
		font-size: 2.625em;
		margin-bottom: 38px;
	}

	section.video .video-wrap .img-wrap {
		border-radius: 18px;
	}

	section.category {
		padding: 52px 0px;
	}

	section.category .category-wrap h2 {
		font-size: 2.625em;
		margin-bottom: 38px;
	}

	section.category .category-wrap ul.category-posts {
		gap: 38px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .thumbnail .img-wrap {
		border-radius: 18px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption {
		padding-left: 52px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption p.h2 {
		font-size: 2em;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption ul.post-tags {
		margin-top: 24px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption ul.post-tags li {
		font-size: 1.375em;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption ul.post-tags li:nth-child(1n + 2) {
		margin-top: 14px;
	}

	section.category .category-wrap .btn-wrap {
		margin-top: 38px;
	}

	section.category .category-wrap .btn-wrap .btn-archive {
		font-size: 1.375em;
		padding: 18px 88px;
		border-radius: 175px;
	}

	footer.footer {
		padding: 35px 0px;
	}

	footer.footer .footer-wrap span {
		font-size: 1.375em;
	}

	section.single-page .top-section {
		padding: 26px 52px 0px;
	}

	section.single-page .top-section .logo-wrap {
		height: 77px;
	}

	section.single-page .top-section a.h2 {
		font-size: 1.75em;
	}

	section.single-page .bottom-section {
		padding: 0px 52px 26px;
	}

	section.single-page .bottom-section span.copyright {
		font-size: 1.375em;
	}

	section.single-page .bottom-section h1 {
		font-size: 1.375em;
	}

	section.single-page .bottom-section .info-wrap a.btn-info-open {
		border-width: 2px;
		font-size: 2em;
		width: 54px;
		min-width: 54px;
		height: 54px;
	}

	section.single-page .bottom-section .info-wrap .info-modal {
		bottom: calc(100% + 18px);
		border-width: 2px;
		border-radius: 18px;
		padding: 26px;
		min-width: 400px;
	}

	section.single-page .bottom-section .info-wrap .info-modal p {
		font-size: 0.75em;
	}

	section.single-page > a[rel="prev"] {
		left: 42px;
		width: 44px;
		height: 26px;
	}

	section.single-page > a[rel="next"] {
		right: 42px;
		width: 44px;
		height: 26px;
	}
}

@media screen and (max-width: 1199px) {
	.container-fluid {
		padding: 0px 42px;
	}

	section.main .main-wrap {
		padding: 42px 0px;
	}

	section.main .main-wrap img {
		height: 250px;
		margin-bottom: 42px;
	}

	section.main .main-wrap h1 {
		font-size: 2.875em;
	}

	section.main .main-wrap a.btn-scroll-down {
		bottom: 28px;
		width: 36px;
		height: 22px;
	}

	section.video {
		padding: 42px 0px;
	}

	section.video .video-wrap h2 {
		font-size: 2.125em;
		margin-bottom: 32px;
	}

	section.video .video-wrap .img-wrap {
		border-radius: 16px;
	}

	section.category {
		padding: 42px 0px;
	}

	section.category .category-wrap h2 {
		font-size: 2.125em;
		margin-bottom: 32px;
	}

	section.category .category-wrap ul.category-posts {
		gap: 32px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .thumbnail .img-wrap {
		border-radius: 16px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption {
		padding-left: 42px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption p.h2 {
		font-size: 1.625em;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption ul.post-tags {
		margin-top: 20px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption ul.post-tags li {
		font-size: 1.25em;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption ul.post-tags li:nth-child(1n + 2) {
		margin-top: 12px;
	}

	section.category .category-wrap .btn-wrap {
		margin-top: 32px;
	}

	section.category .category-wrap .btn-wrap .btn-archive {
		font-size: 1.125em;
		padding: 14px 72px;
		border-radius: 145px;
	}

	footer.footer {
		padding: 28px 0px;
	}

	footer.footer .footer-wrap span {
		font-size: 1.125em;
	}

	section.single-page .top-section {
		padding: 22px 42px 0px;
	}

	section.single-page .top-section .logo-wrap {
		height: 64px;
	}

	section.single-page .top-section a.h2 {
		font-size: 1.5em;
	}

	section.single-page .bottom-section {
		padding: 0px 42px 22px;
	}

	section.single-page .bottom-section span.copyright {
		font-size: 1.125em;
	}

	section.single-page .bottom-section h1 {
		font-size: 1.125em;
	}

	section.single-page .bottom-section .info-wrap a.btn-info-open {
		font-size: 1.625em;
		width: 44px;
		min-width: 44px;
		height: 44px;
	}

	section.single-page .bottom-section .info-wrap .info-modal {
		bottom: calc(100% + 16px);
		border-radius: 16px;
		padding: 22px;
		min-width: 330px;
	}

	section.single-page > a[rel="prev"] {
		left: 32px;
		width: 36px;
		height: 22px;
	}

	section.single-page > a[rel="next"] {
		right: 32px;
		width: 36px;
		height: 22px;
	}
}

@media screen and (max-width: 991px) {
	.container-fluid {
		padding: 0px 32px;
	}

	section.main .main-wrap {
		padding: 32px 0px;
	}

	section.main .main-wrap img {
		height: 190px;
		margin-bottom: 32px;
	}

	section.main .main-wrap h1 {
		font-size: 2.25em;
	}

	section.main .main-wrap a.btn-scroll-down {
		bottom: 22px;
		width: 28px;
		height: 18px;
	}

	section.video {
		padding: 32px 0px;
	}

	section.video .video-wrap h2 {
		font-size: 1.625em;
		margin-bottom: 24px;
	}

	section.video .video-wrap .img-wrap {
		border-radius: 14px;
	}

	section.category {
		padding: 32px 0px;
	}

	section.category .category-wrap h2 {
		font-size: 1.625em;
		margin-bottom: 24px;
	}

	section.category .category-wrap ul.category-posts {
		gap: 24px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .thumbnail .img-wrap {
		border-radius: 14px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption {
		padding-left: 32px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption p.h2 {
		font-size: 1.25em;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption ul.post-tags {
		margin-top: 16px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption ul.post-tags li {
		font-size: 1.125em;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption ul.post-tags li:nth-child(1n + 2) {
		margin-top: 10px;
	}

	section.category .category-wrap .btn-wrap {
		margin-top: 24px;
	}

	section.category .category-wrap .btn-wrap .btn-archive {
		font-size: 1em;
		padding: 12px 55px;
		border-radius: 110px;
	}

	footer.footer {
		padding: 22px 0px;
	}

	footer.footer .footer-wrap span {
		font-size: 1em;
	}

	section.single-page .top-section {
		padding: 18px 32px 0px;
	}

	section.single-page .top-section .logo-wrap {
		height: 50px;
	}

	section.single-page .top-section a.h2 {
		font-size: 1.125em;
	}

	section.single-page .bottom-section {
		padding: 0px 32px 18px;
	}

	section.single-page .bottom-section span.copyright {
		font-size: 1em;
	}

	section.single-page .bottom-section h1 {
		font-size: 1em;
	}

	section.single-page .bottom-section .info-wrap a.btn-info-open {
		font-size: 1.25em;
		width: 34px;
		min-width: 34px;
		height: 34px;
	}

	section.single-page .bottom-section .info-wrap .info-modal {
		bottom: calc(100% + 14px);
		border-radius: 14px;
		padding: 18px;
	}

	section.single-page > a[rel="prev"] {
		left: 24px;
		width: 28px;
		height: 18px;
	}

	section.single-page > a[rel="next"] {
		right: 24px;
		width: 28px;
		height: 18px;
	}
}

@media screen and (max-width: 767px) {
	.container-fluid {
		padding: 0px 24px;
	}

	section.main .main-wrap {
		padding: 24px 0px;
	}

	section.main .main-wrap img {
		height: 145px;
		margin-bottom: 24px;
	}

	section.main .main-wrap h1 {
		font-size: 1.75em;
	}

	section.main .main-wrap a.btn-scroll-down {
		bottom: 20px;
		width: 22px;
		height: 18px;
	}

	section.video {
		padding: 24px 0px;
	}

	section.video .video-wrap h2 {
		font-size: 1.25em;
		margin-bottom: 18px;
	}

	section.video .video-wrap .img-wrap {
		border-radius: 12px;
	}

	section.category {
		padding: 24px 0px;
	}

	section.category .category-wrap h2 {
		font-size: 1.25em;
		margin-bottom: 18px;
	}

	section.category .category-wrap ul.category-posts {
		gap: 18px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .thumbnail .img-wrap {
		border-radius: 12px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption {
		padding-left: 24px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption p.h2 {
		font-size: 1.125em;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption ul.post-tags {
		margin-top: 12px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption ul.post-tags li {
		font-size: 1em;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption ul.post-tags li:nth-child(1n + 2) {
		margin-top: 8px;
	}

	section.category .category-wrap .btn-wrap {
		margin-top: 18px;
	}

	section.category .category-wrap .btn-wrap .btn-archive {
		font-size: 1em;
		padding: 10px 42px;
		border-radius: 80px;
	}

	footer.footer {
		padding: 16px 0px;
	}

	section.single-page .top-section {
		padding: 14px 24px 0px;
	}

	section.single-page .top-section .logo-wrap {
		height: 44px;
	}

	section.single-page .top-section a.h2 {
		font-size: 1em;
	}

	section.single-page .bottom-section {
		padding: 0px 24px 14px;
	}

	section.single-page .bottom-section span.copyright {
		font-size: 0.875em;
	}

	section.single-page .bottom-section h1 {
		font-size: 0.875em;
	}

	section.single-page .bottom-section .info-wrap a.btn-info-open {
		font-size: 1em;
		width: 26px;
		min-width: 26px;
		height: 26px;
		border-width: 1px;
	}

	section.single-page .bottom-section .info-wrap .info-modal {
		bottom: calc(100% + 12x);
		border-radius: 12px;
		padding: 14px;
		border-width: 1px;
	}

	section.single-page > a[rel="prev"] {
		left: 15px;
		width: 22px;
		height: 18px;
	}

	section.single-page > a[rel="next"] {
		right: 15px;
		width: 22px;
		height: 18px;
	}
}

@media screen and (max-width: 575px) {
	.container-fluid {
		padding: 0px 15px;
	}

	section.main .main-wrap {
		padding: 22px 0px;
	}

	section.main .main-wrap img {
		height: 100px;
		margin-bottom: 22px;
	}

	section.main .main-wrap h1 {
		font-size: 1.375em;
	}

	section.main .main-wrap a.btn-scroll-down {
		bottom: 18px;
		width: 20px;
		height: 16px;
	}

	section.video {
		padding: 22px 0px;
	}

	section.video .video-wrap h2 {
		font-size: 1.25em;
		margin-bottom: 16px;
	}

	section.video .video-wrap .img-wrap {
		border-radius: 10px;
	}

	section.category {
		padding: 22px 0px;
	}

	section.category .category-wrap h2 {
		font-size: 1.25em;
		margin-bottom: 16px;
	}

	section.category .category-wrap ul.category-posts {
		gap: 16px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .thumbnail .img-wrap {
		border-radius: 10px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption {
		padding-left: 15px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption p.h2 {
		font-size: 1em;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption ul.post-tags {
		margin-top: 6px;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption ul.post-tags li {
		font-size: 0.875em;
	}

	section.category .category-wrap ul.category-posts li.post-item a .caption ul.post-tags li:nth-child(1n + 2) {
		margin-top: 3px;
	}

	section.category .category-wrap .btn-wrap {
		margin-top: 16px;
	}

	section.category .category-wrap .btn-wrap .btn-archive {
		padding: 6px 36px;
		border-radius: 45px;
		font-size: 0.875em;
	}

	footer.footer {
		padding: 14px 0px;
	}

	footer.footer .footer-wrap {
		flex-direction: column-reverse;
		justify-content: center;
	}

	footer.footer .footer-wrap span {
		font-size: 0.875em;
	}

	footer.footer .footer-wrap span.slogan {
		position: initial;
		top: auto;
		left: auto;
		transform: none;
		margin-bottom: 8px;
	}

	section.single-page .top-section {
		padding: 12px 15px 0px;
	}

	section.single-page .top-section .section-wrap {
		justify-content: space-between;
	}

	section.single-page .top-section .logo-wrap {
		height: 44px;
	}

	section.single-page .top-section a.h2 {
		font-size: 0.875em;
		position: initial;
		left: auto;
		top: auto;
		transform: none;
	}

	section.single-page .bottom-section {
		padding: 0px 15px 12px;
	}

	section.single-page .bottom-section .section-wrap {
		flex-wrap: wrap;
	}

	section.single-page .bottom-section span.copyright {
		font-size: 0.75em;
		order: 2;
		width: 100%;
		text-align: center;
		margin-top: 8px;
	}

	section.single-page .bottom-section h1 {
		font-size: 0.875em;
		position: initial;
		left: auto;
		top: auto;
		transform: none;
	}

	section.single-page .bottom-section .info-wrap a.btn-info-open {
		font-size: 0.875em;
		width: 22px;
		min-width: 22px;
		height: 22px;
	}

	section.single-page .bottom-section .info-wrap .info-modal {
		bottom: calc(100% + 10px);
		border-radius: 10px;
		padding: 10px;
		min-width: 290px;
		width: calc(100% - 30px);
	}

	section.single-page > a[rel="prev"] {
		left: 10px;
		width: 20px;
		height: 16px;
	}

	section.single-page > a[rel="next"] {
		right: 10px;
		width: 20px;
		height: 16px;
	}
}