/* Global Styles */
@keyframes float {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0);
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

:root {
	--primary-color: #669933;
	--primary-color-light: #cee0bb;
	--secondary-color: #6b66ff;
	--accent-color: #66c7ff;
	--dark-color: #2d3436;
	--light-color: #f9f9f9;
	--gray-color: #dfe6e9;
	--text-color: #333;
	--shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	--transition: all 0.3s ease;
}

/* Отключение анимаций для пользователей с настройкой "prefers-reduced-motion" */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* Отключение тяжелых анимаций на слабых устройствах */
@media (max-width: 768px) and (max-height: 1024px) {
	/* Упрощенные переходы для мобильных */
	* {
		transition-duration: 0.15s !important;
	}

	/* Отключение сложных анимаций */
	.floating,
	.floating-slow,
	.heartbeat {
		animation: none !important;
	}

	/* Упрощение hover эффектов */
	.btn:hover {
		animation: none !important;
		transform: translateY(-1px) !important;
	}

	.social-icon:hover {
		animation: none !important;
		transform: translateY(-2px) !important;
	}

	/* Отключение параллакса на мобильных */
	.parallax-bg {
		background-attachment: scroll !important;
		transform: none !important;
	}

	/* Упрощение карточек */
	.advantage-card:hover,
	.coach-card:hover,
	.service-card:hover,
	.rent-image:hover {
		transform: none !important;
	}

	.advantage-card:hover .advantage-icon {
		transform: scale(1.05) !important;
	}

	/* Отключение сложных эффектов изображений */
	.coach-card:hover .coach-image img,
	.service-card:hover .service-image img,
	.gallery-item:hover img,
	.carousel-slide:hover img,
	.rent-image:hover img {
		transform: none !important;
		filter: none !important;
	}

	/* Упрощение анимации заголовков */
	.section-title span {
		animation: none !important;
	}

	/* Отключение градиентной анимации в футере */
	.footer::before {
		animation: none !important;
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: "Roboto", sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--light-color);
	overflow-x: hidden;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 15px;
}

p {
	margin-bottom: 15px;
}

a {
	text-decoration: none;
	color: var(--primary-color);
	transition: var(--transition);
}

a:hover {
	color: var(--secondary-color);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.btn {
	display: inline-block;
	background-color: var(--primary-color);
	color: white;
	padding: 12px 30px;
	border-radius: 50px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	border: none;
	cursor: pointer;
	transition: var(--transition);
	text-align: center;
	line-height: 1.2;
}

.btn-subtitle {
	display: block;
	font-size: 10px;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
	margin-top: 2px;
	opacity: 0.9;
}

.btn:hover {
	background-color: var(--secondary-color);
	color: white;
	transform: translateY(-3px);
	box-shadow: var(--shadow);
	animation: pulse 1s infinite ease-in-out;
}

.btn-outline {
	background-color: transparent;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	padding: 10px 25px;
}

.btn-outline:hover {
	background-color: var(--primary-color);
	color: white;
}

.section {
	padding: 80px 0;
	position: relative;
}

.section:nth-child(odd) {
	background-color: var(--light-color);
}

.section:nth-child(even) {
	background-color: white;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: var(--dark-color);
	position: relative;
	padding-bottom: 15px;
	overflow: hidden;
	transform: translateZ(0);
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background-color: var(--primary-color);
	transition: width 0.5s ease;
}

.section-title:hover::after {
	width: 120px;
}

.section-description {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 40px;
	font-size: 1.1rem;
	color: #666;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 20px 0;
	z-index: 1000;
	transition: all 0.4s ease;
}

.navbar-scrolled {
	padding: 10px 0;
	background-color: rgba(255, 255, 255, 0.98);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.navbar-scrolled .navbar-logo a img {
	height: 35px;
}

.navbar-scrolled .navbar-menu ul li a {
	font-size: 0.85rem;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar-logo a {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
}

.navbar-logo a img {
	height: 40px;
	width: auto;
	transition: all 0.3s ease;
}

.navbar-logo a:hover img {
	filter: brightness(1.2) drop-shadow(0 0 10px var(--primary-color-light));
	transform: scale(1.05);
}

.navbar-menu ul {
	display: flex;
	list-style: none;
}

.navbar-menu ul li {
	margin-left: 30px;
}

.navbar-menu ul li a {
	color: var(--dark-color);
	font-weight: 500;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
}

.navbar-menu ul li a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: var(--transition);
}

.navbar-menu ul li a:hover::after {
	width: 100%;
}

.menu-toggle {
	display: none;
	cursor: pointer;
}

.menu-toggle .bar {
	display: block;
	width: 25px;
	height: 3px;
	background-color: var(--dark-color);
	margin: 5px 0;
	transition: var(--transition);
}

/* Hero Section with Parallax */
.hero-section {
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-top: 70px; /* Navbar height */
	overflow: hidden;
}

.parallax-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/hero-bg.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	filter: brightness(0.7);
	z-index: -1;
}

.hero-content {
	max-width: 800px;
	padding: 0 20px;
	position: relative;
	z-index: 1;
	color: white;
}

.hero-content h1 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	animation: fadeIn 1.5s ease-out;
}

.hero-content p {
	font-size: 1.3rem;
	margin-bottom: 30px;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
	animation: fadeIn 1.5s ease-out 0.5s both;
}

/* About Section */
.about-content {
	display: flex;
	align-items: center;
	gap: 40px;
}

.about-text {
	flex: 1;
}

.about-text h3 {
	font-size: 1.8rem;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.about-image,
.about-video {
	flex: 1;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.about-video .video-container {
	max-width: 100%;
	margin: 0;
	border-radius: 10px;
	box-shadow: none;
}

.about-video .video-player {
	border-radius: 10px;
	min-height: 250px;
}

/* Video Section */
.video-section {
	background-color: white;
}

.video-container {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	transition: var(--transition);
}

.video-container:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-player {
	width: 100%;
	height: auto;
	min-height: 300px;
	display: block;
	background-color: #000;
	border-radius: 15px;
}

.video-player:focus {
	outline: 3px solid var(--primary-color);
	outline-offset: 2px;
}

/* Стили для браузеров, не поддерживающих видео */
.video-player p {
	padding: 40px 20px;
	text-align: center;
	color: white;
	background-color: var(--dark-color);
	margin: 0;
	font-size: 1.1rem;
	border-radius: 15px;
}

.video-player p a {
	color: var(--primary-color);
	text-decoration: underline;
	transition: var(--transition);
}

.video-player p a:hover {
	color: var(--secondary-color);
	text-decoration: none;
}

/* Адаптивные стили для видео */
@media screen and (max-width: 768px) {
	.video-container {
		max-width: 100%;
		margin: 0 10px;
		border-radius: 10px;
	}
	
	.video-player {
		min-height: 200px;
		border-radius: 10px;
	}
	
	.video-container:hover {
		transform: none;
	}
}

@media screen and (max-width: 480px) {
	.video-container {
		margin: 0 5px;
	}
	
	.video-player {
		min-height: 180px;
	}
}

/* Advantages Section */
.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.advantage-card {
	background-color: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: var(--shadow);
	transition: var(--transition);
	text-align: center;
}

.advantage-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
	width: 70px;
	height: 70px;
	background-color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: white;
	font-size: 1.8rem;
	transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
	transform: scale(1.15) rotate(10deg);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	background-color: var(--secondary-color);
}

.advantage-card h3 {
	font-size: 1.3rem;
	margin-bottom: 15px;
	color: var(--dark-color);
}

/* Coaches Section */
.coaches-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.coach-card {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

.coach-image {
	height: 400px;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.coach-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.coach-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 80%, transparent 100%);
	color: white;
	padding: 30px 20px 20px;
	transform: translateY(100%);
	transition: transform 0.4s ease;
}

.coach-card:hover .coach-overlay,
.coach-card:active .coach-overlay {
	transform: translateY(0);
}

.coach-overlay h3 {
	font-size: 1.4rem;
	margin-bottom: 8px;
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.coach-overlay h4 {
	font-size: 1rem;
	color: var(--primary-color);
	font-weight: 500;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
	margin-bottom: 0;
}

/* Мобильная версия - показываем overlay при тапе */
@media (max-width: 768px) {
	.coach-card:hover .coach-overlay {
		transform: translateY(100%);
	}

	.coach-card.active .coach-overlay {
		transform: translateY(0);
	}
}

/* Services Section */
.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 40px;
}

/* Адаптивные стили для Services Section */
@media screen and (max-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 25px;
	}
}

@media screen and (max-width: 768px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

.service-card {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
	background-color: rgba(255, 107, 107, 0.05);
}

.service-image {
	height: 200px;
	overflow: hidden;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.service-card:hover .service-image img {
	transform: scale(1.05);
}

.service-info {
	padding: 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.service-info h3 {
	font-size: 1.3rem;
	margin-bottom: 10px;
	color: var(--dark-color);
}

.service-info p {
	margin-bottom: 20px;
	font-size: 0.95rem;
	flex-grow: 1;
}

.service-info .btn {
	margin-top: auto;
}

/* Gallery Section */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 15px;
	margin-top: 40px;
}

.gallery-item {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow);
	height: 250px;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.gallery-item:hover img {
	transform: scale(1.05);
	filter: brightness(1.1) contrast(1.1);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.carousel-container {
	position: relative;
	max-width: 100%;
	margin: 40px auto;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.carousel-slide {
	min-width: 100%;
	position: relative;
	overflow: hidden;
}

.carousel-slide img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	transition: transform 0.5s ease, filter 0.3s ease;
}

.carousel-slide:hover img {
	transform: scale(1.02);
	filter: brightness(1.1);
}

.carousel-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.7);
	border: none;
	cursor: pointer;
	font-size: 1.2rem;
	color: var(--dark-color);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	z-index: 5;
	opacity: 0.7;
}

.carousel-button:hover {
	background-color: white;
	color: var(--primary-color);
	opacity: 1;
}

.carousel-button-prev {
	left: 20px;
}

.carousel-button-next {
	right: 20px;
}

.carousel-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.carousel-dot.active {
	background-color: var(--primary-color);
	transform: scale(1.2);
}

.carousel-dot:hover {
	background-color: white;
}

@media screen and (max-width: 768px) {
	.carousel-slide img {
		height: 350px;
	}

	.carousel-button {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.carousel-button-prev {
		left: 10px;
	}

	.carousel-button-next {
		right: 10px;
	}
}

/* Rent Section */
.rent-images {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 30px;
	margin-top: 40px;
	justify-items: center;
}

.rent-image {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	max-width: 100%;
}

.rent-image:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.rent-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: var(--transition);
}

.rent-image:hover img {
	transform: scale(1.02);
}

/* Map Section */
.map-container {
	height: 400px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
	margin-top: 30px;
}

/* Contact Section */
.contact-form-container {
	max-width: 600px;
	margin: 0 auto;
}

.contact-form {
	background-color: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: var(--shadow);
}

.form-group {
	margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px;
	border-radius: 5px;
	border: 1px solid #ddd;
	font-size: 1rem;
	transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: var(--primary-color);
	outline: none;
	box-shadow: 0 0 0 2px var(--primary-color);
}

.contact-form .btn {
	width: 100%;
	margin-top: 10px;
}

.form-benefits {
	margin-top: 20px;
	margin-bottom: 15px;
	text-align: center;
}

.benefit-item {
	font-size: 0.9rem;
	color: #555;
	margin-bottom: 8px;
	line-height: 1.4;
}

.benefit-item:last-child {
	margin-bottom: 0;
}

.privacy-notice {
	margin-top: 15px;
	font-size: 0.85rem;
	color: #666;
	text-align: center;
	line-height: 1.4;
}

.privacy-notice a {
	color: var(--primary-color);
	text-decoration: underline;
	transition: var(--transition);
}

.privacy-notice a:hover {
	color: var(--secondary-color);
	text-decoration: none;
}

/* Social Media Section */
.social-icons {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 30px;
}

.social-icon {
	width: 60px;
	height: 60px;
	background-color: var(--light-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dark-color);
	font-size: 1.8rem;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.social-icon:hover {
	background-color: var(--primary-color);
	color: white;
	transform: translateY(-5px) rotate(10deg);
	animation: float 2s infinite ease-in-out;
}

/* Footer */
.footer {
	background-color: var(--dark-color);
	color: white;
	padding: 40px 0 30px;
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
	animation: gradientMove 3s linear infinite;
	background-size: 200% auto;
}

@keyframes gradientMove {
	0% {
		background-position: 0% 0%;
	}
	100% {
		background-position: 200% 0%;
	}
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
}

.footer-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	text-align: center;
}

.footer-address,
.footer-phone {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1rem;
}

.footer-address i,
.footer-phone i {
	color: var(--primary-color);
	font-size: 1.1rem;
	width: 20px;
	text-align: center;
}

.footer-phone a,
.footer-address a {
	color: white;
	text-decoration: none;
	transition: var(--transition);
}

.footer-phone a:hover,
.footer-address a:hover {
	color: var(--primary-color);
}

.footer-copyright {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
}

.footer-copyright p {
	margin: 0;
	font-size: 0.9rem;
	opacity: 0.8;
}

/* Адаптивные стили для футера */
@media screen and (min-width: 768px) {
	.footer-info {
		flex-direction: row;
		gap: 40px;
	}

	.footer-content {
		gap: 30px;
	}
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
	.section-title {
		font-size: 2.2rem;
	}

	.hero-content h1 {
		font-size: 2.8rem;
	}

	.hero-content p {
		font-size: 1.1rem;
	}
}

@media screen and (max-width: 768px) {
	.hero-content h1 {
		font-size: 2.3rem;
	}

	.section {
		animation: none !important; /* Ensure smoother experience on mobile */
	}

	.navbar-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background-color: white;
		flex-direction: column;
		transition: var(--transition);
		z-index: 999;
	}

	.navbar-menu.active {
		left: 0;
	}

	.navbar-menu ul {
		flex-direction: column;
		align-items: center;
		padding-top: 50px;
	}

	.navbar-menu ul li {
		margin: 15px 0;
	}

	.menu-toggle {
		display: block;
	}

	.menu-toggle.active .bar:nth-child(1) {
		transform: rotate(-45deg) translate(-5px, 6px);
	}

	.menu-toggle.active .bar:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.active .bar:nth-child(3) {
		transform: rotate(45deg) translate(-5px, -6px);
	}

	.section {
		padding: 60px 0;
	}

	.about-content {
		flex-direction: column-reverse;
	}

	.about-text,
	.about-image {
		flex: auto;
		width: 100%;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.hero-content p {
		font-size: 1rem;
	}
}

@media screen and (max-width: 576px) {
	.section-title {
		font-size: 1.8rem;
	}

	.hero-content h1 {
		font-size: 2rem;
	}

	.hero-content p {
		font-size: 0.95rem;
	}

	.btn {
		padding: 10px 25px;
		font-size: 0.9rem;
	}

	.advantages-grid,
	.services-grid,
	.coaches-grid {
		grid-template-columns: 1fr;
	}

	.rent-images {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
