html {
	box-sizing: border-box;
	font-family: Roboto, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	overflow-x: hidden;
}
*,
*::before,
*::after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}
body {
	margin: 0;
	color: #000;
	background-color: #fff;
	overflow-y: auto;
	overflow-x: hidden;
	position: relative;
	overflow-x: hidden;
}
.section {
	padding: 100px 0;
}
.section-lazy-load {
	opacity: 0;
	visibility: hidden;
	transition: all 0.6s ease-out;
}
.slide-left.section-lazy-load {
	position: relative;
	left: -100%;
}
.slide-bottom.section-lazy-load {
	position: relative;
	top: 50px;
}
.visible {
	opacity: 1 !important;
	visibility: visible !important;
	left: 0 !important;
	top: 0 !important;
}
ul {
	list-style-type: none;
	padding-left: 0;
	margin-left: 0;
}
li {
	list-style: none;
}
.container {
	width: 100%;
	min-height: 200px;
	background-color: #fff;
}
.menu-container {
	width: 100%;
	background: #fff;
}
.desktop-menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 45px;
	height: 96px;
}
.desktop-logo img {
	width: 167px;
	height: 35px;
	display: block;
	object-fit: contain;
}
.desktop-nav li {
	position: relative
}
.desktop-nav .underline_dash {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	background: #000;
	width: 0;
	transition: width .3s ease
}
.desktop-nav li:hover .underline_dash {
	width: 100%
}
.desktop-nav li.active .underline_dash {
	width: 100%
}
.desktop-nav li {
    color: #111111;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0px;
    text-transform: uppercase;
}
.desktop-nav {
	display: flex;
	gap: 40px;
}
.desktop-nav a {
	text-decoration: none;
    color: #111111;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0px;
    text-transform: uppercase;
}
.mobile-menu {
	display: none;
}
.mobile-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
	position: relative;
	padding: 0 25px;
	height: 100px;
    width: 100dvw;
}
.mobile-logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.mobile-logo img {
	width: 167px;
	height: 35px;
	display: block;
	display: block;
}
.burger-icon {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	width: 12px;
    height: 14px;
	background: none;
	border: none;
	cursor: pointer;
}
.burger-icon span {
	display: block;
	height: 2px;
	background: #000;
	border-radius: 2px;
}
.mobile-nav {
	display: none;
	flex-direction: column;
	padding: 0 1rem 1rem;
}
.mobile-nav.open {
	display: flex;
	padding: 1em 25px 20px;
	background: #fff;
}
.mobile-nav li {
	border-bottom: 1px solid rgb(234, 234, 234);
	height: 47px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}
.mobile-nav a {
	text-decoration: none;
	color: #231f20;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
}
.image-layout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100dvw;
	position: relative;
	height: 84dvh;
	overflow: hidden;
}
.image-stack {
    width: 100dvw;
    height: auto;
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    align-content: flex-end;
	gap: 20px;
}
.img-studio {
	width: 1536px;
	height: 288px;
	object-fit: contain;
	animation: slideRight .6s ease-out forwards;
}
.img-agency {
	width: 1762px;
	height: 288px;
	object-fit: contain;
	animation: slideLeft .6s ease-out forwards;
}
@keyframes slideRight {
	from { transform: translateX(-20px); }
	to   { transform: translateX(30px); }
}
@keyframes slideLeft {
	from { transform: translateX(20px); }
	to   { transform: translateX(-30px); }
}
.img-01 {
	width: 580px;
	height: 776px;
	object-fit: contain;
    position: absolute;
    top: 6%;
    right: -18%;
    transform: translate(-50%, 0);
}
.arrow {
	object-fit: contain;
    position: absolute;
	width: 179px;
    right: 5em;
    bottom: 1em;
    height: 171px;
	object-fit: contain;
}
.hero-text {
	font-family: Roboto, sans-serif;
	text-align: center;
}
.hero-heading {
	color: #231f20;
	font-size: 35px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	margin: 0;
}
.hero-accent {
	color: #cf0819;
}
.contact-text {
	font-family: 'Poppins', sans-serif;
	text-align: center;
	margin: .5rem auto 8.6em;
}
.contact-label {
	color: #111111;
	font-size: 16px;
	font-weight: 700;
}
.contact-highlight {
	color: #c30c19;
}
.contact-links {
	color: #686868;
	font-family: Roboto, sans-serif;
	font-size: 16px;
	margin-left: .5rem;
}
.contact-link {
	color: inherit;
	text-decoration: none;
	position: relative;
	margin: 0 .25rem;
}
.contact-link:after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: #231f20;
	transition: width .3s ease;
}
.contact-link:hover:after {
	width: 100%;
}
.projects-wrapper {
	font-family: Roboto, sans-serif;
	max-width: 1140px;
	height: auto;
	width: 100dvw;
	margin: auto;
	padding: 0 0 100px;
}
.projects-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}
.project-card {
	text-align: left;
}
.project-number {
	display: block;
	color: #231f20;
	font-family: 'Poppins Bold', sans-serif;
	font-size: 62px;
	line-height: 65px;
	font-weight: 700;
	letter-spacing: -0.62px;
	text-transform: uppercase;
    -webkit-text-stroke: 1px #231f20;
    -webkit-text-fill-color: transparent;
}
.project-number:after {
	content: "";
	display: block;
	clear: both;
	width: 0;
	height: 0;
}
.project-title {
	margin-top: 1rem;
	color: #231f20;
	font-family: 'Poppins Bold', sans-serif;
	font-size: 25px;
	line-height: 31px;
	font-weight: 700;
	text-transform: uppercase;
}
.project-desc {
	margin-top: .5rem;
	color: #686868;
	font-family: Roboto, sans-serif;
	font-size: 16px;
	line-height: 27px;
	font-style: italic;
	font-weight: 300;
	letter-spacing: .5px;
}
.mobile-arrow {
	margin: 40px auto;
	visibility: hidden;
	opacity: 0;
	width: 42px;
	height: 40px;
	object-fit: contain;
	display: none;
}
.about-us {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 100px 0 80px;
	gap: 10em;
}
.about-us__media {
	position: relative;
	width: 48%;
}
.about-us__media img {
	display: block;
	width: 100%;
	height: auto;
	z-index: 1;
}
.about-us__media img.about {
	width: 996px;
	height: auto;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}
.about-us__content {
	width: 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    align-content: flex-start;
}
.about-us__content .nested {
	max-width: 664px;
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    align-content: flex-start;
	gap: 40px;
}
.about-us__title {
	color: #231f20;
	font-family: 'Poppins Bold', sans-serif;
	font-size: 62px;
	line-height: 47px;
	letter-spacing: -0.62px;
	text-transform: uppercase;
}
.about-us__description {
	color: #686868;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 27px;
	font-weight: 300;
}
.about-us__button {
	display: inline-block;
	color: #231f20;
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	line-height: 58px;
	height: 58px;
	font-weight: 700;
	background-color: transparent;
	border: 1px solid #231f20;
	border-radius: 0;
	padding: 0 64px;
	text-transform: uppercase;
	cursor: pointer;
	text-decoration: none;
}
.about-us__button:hover {
	background-color: #231f20;
	color: #ffffff;
}
.works-sec {
	position: relative;
	display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.works-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1140px;
    margin: auto;
	position: relative;
	margin: 80px 0 0;
}
.works-item {
	position: relative;
	width: 365px;
	height: 365px;
	background-color: rgba(21,21,21,1);
	overflow: hidden;
}
.works-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	visibility: visible;
	opacity: 1;
}
.works-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(21,21,21,0.8);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	text-align: center;
}
.works-item:hover .works-overlay {
	opacity: 1;
	visibility: visible;
}
.works-item:hover img {
	display: none;
}
.works-title {
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 19px;
	line-height: 29px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.works-desc {
	color: #fff;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 22px;
	font-style: italic;
	font-weight: 200;
	letter-spacing: 0.5px;
	text-transform: lowercase;
}
.works {
	position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}
.sotd-sec {
	position: relative;
	display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
	background-color: #F9F5F1;
	width: 100dvw;
}
.sotd-sec .content {
	position: relative;
	display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
	background-color: #F9F5F1;
	width: 100dvw;
	padding: 200px 0 0;
}
.sotd-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	padding: 24px;
	width: 100dvw;
	height: auto;
	max-width: 1140px;
}
.sotd-item {
	display: flex;
	flex-direction: column;
}
.sotd-title {
	margin: 0;
	color: #231f20;
	font-family: 'Poppins', sans-serif;
	font-size: 32px;
	line-height: 36px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}
.sotd-description {
	margin: 8px 0 0;
	color: #686868;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 27px;
	font-style: italic;
	font-weight: 300;
	letter-spacing: 0.5px;
	text-transform: none;
}
.sotd-divider {
	margin-top: 15px;
	margin-bottom: 15px;
	height: 1px;
	background-color: #000;
	width: 100%;
}
.ongoing .about-us__content,
.ongoing .about-us__content .nested {
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    align-content: flex-end;
}
.ongoing .about-us__title,
.ongoing .about-us__description {
	text-align: end;
}
.ongoing .about-us__content {
	position: relative;
}
.ongoing .about-text {
    transform: translateY(-200px);
}
.news-section {
	position: relative;
	display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
	width: 100dvw;
}
.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(358px, 1fr));
	gap: 32px;
	max-width: 1140px;
	padding: 100px 0 0;
}
.news-item {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	transition: transform 0.3s ease;
}
.news-item:hover {
	transform: translateY(-4px);
}
.news-item .lazy-load {
	width: 359px;
	height: 324px;
	object-fit: contain;
	display: block;
	margin-bottom: 16px;
}
.news-title {
	margin: 0 0 8px;
	color: #231f20;
	font-family: 'Poppins', sans-serif;
	font-size: 32px;
	line-height: 36px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0px;
	text-transform: uppercase;
}
.news-date {
	margin: 0;
	line-height: 30px;
	text-align: left;
	font-size: 15px;
	letter-spacing: 0.5px;
	font-family: 'Roboto', sans-serif;
	color: #686868;
	font-style: italic;
}
.footer-section {
	background-color: #F9F5F1;
	padding: 150px 24px 20px;
	font-family: 'Roboto', sans-serif;
	display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: column;
	width: 100dvw;
	position: relative;
	gap: 40px;
}
.footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin: 0 auto 32px;
}
.footer-col {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 275px;
}
.footer-title {
    display: inline-block;
    padding-right: 50px;
    border-bottom: 1px solid #000;
    margin-bottom: 10px;
	font-family: "Poppins Black", sans-serif;
    font-size: 21px;
    letter-spacing: 0px;
    line-height: 29px;
    font-weight: 700;
    text-transform: uppercase;
    color: #231f20;
    font-style: normal;
}
.footer-title.send {
	font-size: 32px;
	line-height: 36px;
	border-bottom: none;
}
.footer-link {
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    letter-spacing: 0px;
	line-height: 28px;
    font-weight: 300;
    text-transform: none;
    font-style: italic;
	color: #959292;
	text-decoration: none;
}
.footer-link:hover {
	color: #231f20;
}
.footer-text {
	font-family: 'Roboto', sans-serif;
	font-size: 17px;
	letter-spacing: 0px;
	line-height: 28px;
	font-weight: 300;
	text-transform: none;
	font-style: italic;
	color: #959292;
}
.footer-form .email-form {
	display: flex;
	align-items: center;
	padding-bottom: 8px;
	margin-top: 8px;
	width: 100%;
	position: relative;
}
#email-input {
	flex: 1;
	border: none;
	outline: none;
    background-color: rgba(255, 255, 255, 0);
    border-color: rgba(0, 0, 0, 1);
    border-width: 1px;
    border-style: solid;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top: none;
    border-left: none;
    border-right: none;
    color: #111111;
    font-family: 'Poppins';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0px;
    text-transform: uppercase;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}
#email-btn {
	background: none;
	border: none;
	width: 16px;
	height: 10px;
	cursor: pointer;
	color: #231f20;
    right: 0;
    position: absolute;
    top: 10%;
}
#email-btn img {
	width: 100%;
	height: auto;
	object-fit: contain;
}
#form-message {
	margin-top: 12px;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-style: italic;
	color: #231f20;
}
.footer-bottom {
	border-top: 1px solid #231f20;
	padding: 32px 0 0;
	text-align: center;
	width: 100dvw;
}
.footer-bottom .footer-text {
	font-family: "Roboto", sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    line-height: 23px;
    font-weight: 300;
    text-transform: lowercase;
    font-style: italic;
}
a,
a:hover,
a:active,
a:focus {
	color: inherit;
    text-decoration: none;
}
.about-us__media img.about-text,
.sotd-sec img.about-text,
.ongoing img.about-text,
.news-section img.about-text,
footer img.about-text,
.works-sec img.about-text {
    position: absolute;
    z-index: 0;
	width: 983px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 6.3 / 1;
	margin: 0 0 0 -20px;
}
.back-to-top {
	position: fixed;
	bottom: 65px;
	right: 25px;
    width: 52px;
    height: 53px;
	border-color: rgba(35, 31, 32, 1);
    border-width: 1px;
    border-style: solid;
	display: none;
	align-items: center;
	justify-content: center;
	align-content: center;
	cursor: pointer;
	border-radius: 50%;
	z-index: 1000;
	transition: opacity 0.3s;
}
.back-to-top:hover {
	opacity: 0.8;
}
.back-to-top img {
	width: 14px;
    height: 21px;
    object-fit: fill;
}
@media (max-width: 1840px) {
	.ongoing img.about-text,
	.about-us__media img.about {
        width: 48dvw !important;
    }
	.about-us__media img.about-text,
	.sotd-sec img.about-text,
	.ongoing img.about-text,
	.news-section img.about-text,
	footer img.about-text,
	.works-sec img.about-text {
		width: 80dvw;
	}
	.about-us__media img.about-text,
	.about-us__media img.about {
		width: 100dvw;
	}
	.about-us {
		gap: 4em;
	}
	.img-studio {
		width: 80dvw;
		height: 37dvh;
	}
	.img-agency {
		width: 90dvw;
		height: 40dvh;
	}
	.img-01 {
		right: -24%;
	}
	.arrow {
		bottom: 3em;
	}
}
@media (max-width: 1740px) {
	.img-studio {
		width: 80dvw;
		height: 34dvh;
	}
	.img-agency {
		width: 90dvw;
		height: 37dvh;
	}
	.img-01 {
		right: -26%;
	}
    .image-layout {
        height: 100dvh;
    }
	.arrow {
		bottom: 0;
	}
}
@media (max-width: 1640px) {
    .image-layout {
        height: 80dvh;
    }
	.arrow {
		bottom: 5em;
		right: 2em;
		width: 110px;
		height: 105px;
	}
	.img-studio {
		width: 80dvw;
		height: 31dvh;
	}
	.img-agency {
		width: 90dvw;
		height: 34dvh;
	}
	.img-01 {
		width: 415px;
		height: 555px;
		right: -20%;
	}
}
@media (max-width: 1500px) {
	.about-us__content .nested {
		max-width: 94%;
	}
	.img-studio {
		width: 80dvw;
		height: 28dvh;
	}
	.img-agency {
		width: 90dvw;
		height: 31dvh;
	}
	.img-01 {
		right: -22%;
	}
	.arrow {
		bottom: 6em;
	}
	.ongoing .about-text {
		transform: translateY(-140px);
	}
}
@media (max-width: 1300px) {
	.news-grid {
		padding: 160px 30px 0;
	}
	.arrow {
		bottom: 9em;
	}
	.img-studio {
		width: 80dvw;
		height: 25dvh;
	}
	.img-agency {
		width: 90dvw;
		height: 28dvh;
	}
	.img-01 {
		width: 365px;
		height: 488px;
		right: -20%;
	}
}
@media (max-width: 1200px) {
	.ongoing .about-text {
		transform: translateY(-100px);
	}
	.about-us__media img.about-text,
	.news-section img.about-text,
	.works-sec img.about-text {
		aspect-ratio: 6.3 / 1;
	}
	.image-stack {
		align-items: flex-start;
		align-content: flex-start;
		padding: 0 40px;
	}
	.img-studio {
		width: 80dvw;
		height: 22dvh;
	}
	.img-agency {
		width: 90dvw;
		height: 25dvh;
	}
	.img-01 {
		right: -22%;
	}
	.arrow {
		width: 8em;
		bottom: 10em;
	}
	.about-us__title {
		font-size: 46px;
		width: 88dvw;
	}
	.works-item {
		width: auto;
		height: auto;
	}
	.section {
		padding: 0 30px;

	}
}
@media (max-width: 1180px) {
	.img-studio {
		width: 80dvw;
		height: 20dvh;
	}
	.img-agency {
		width: 90dvw;
		height: 24dvh;
	}
}
@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.news-grid {
		grid-template-columns: repeat(2, 1fr);
	}
    .ongoing .about-text {
        transform: translate(-45px, -90px);
    }
	.about-us__media img.about {
		width: 90dvw !important;
		margin: auto;
	}
	.works-grid {
		grid-template-columns: repeat(2, 1fr);
		margin: auto;
	}
	.about-us {
		flex-direction: column;
		gap: 20px
	}
    .about-us__content .nested,
	.about-us__content,
	.about-us__media {
        width: 100dvw;
        max-width: 100dvw;
    }
	.about-us__content ,
	.about-us__description {
		width: 90dvw;
		max-width: 90dvw;
	}
	.projects-list {
		grid-template-columns: repeat(2, 1fr);
	}
	.img-studio {
		width: 80dvw;
		height: 18dvh;
	}
	.img-agency {
		width: 90dvw;
		height: 22dvh;
	}
	.section {
		padding: 100px 30px;
	}
}
@media (max-width: 900px) {
	.img-studio {
		width: 80dvw;
		height: 17dvh;
	}
	.img-agency {
		width: 90dvw;
		height: 17dvh;
	}
}
@media (max-width: 768px) {
	.footer-grid {
		margin: 0;
	}
	.news-grid {
		grid-template-columns: repeat(1, 1fr);
	}
    .ongoing img.about-text {
        width: 100dvw !important;
    }
	.ongoing .about-text {
        transform: translate(-28px, -90px);
    }
	.works-grid {
		padding: 0 30px;
	}
	.img-studio {
		width: 80dvw;
		height: 16dvh;
	}
	.img-agency {
		width: 90dvw;
		height: 12dvh;
	}
	.desktop-menu {
		display: none;
	}
	.mobile-menu {
		display: block;
        position: fixed;
        width: 100dvw;
		z-index: 2;
	}
}
@media (max-width: 650px) {
	.footer-bottom {
		width: 100%;
	}
	.footer-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.works-grid {
		margin: 0;
	}
	.project-number {
		font-size: 39px;
	}
	.hero-heading {
		display: flex;
		flex-direction: column;
		font-size: 27px;
	}
	.contact-link {
		margin: 0 .1rem;
	}
	.hero-text {
		margin: 10px 0;
	}
	.contact-text {
		display: flex;
		flex-direction: column;
		margin: 40px 0 40px;
	}
	.menu-container {
		width: 100dvw;
		background: #fff;
		top: 0;
		position: static;
		height: auto;
		left: 0;
		height: 100px;
	}
	.img-01,
	.arrow {
		visibility: hidden;
		opacity: 0;
	}
	.mobile-arrow {
		visibility: visible;
		opacity: 1;
		display: block;
	}
	.img-studio,
	.img-agency	{
		width: 100dvw;
        height: auto;
        aspect-ratio: 16 / 2;
		z-index: 0;
	}
	.image-stack {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		align-content: center;
	}
	@keyframes slideRight {
		from { transform: translateX(-50px); }
		to   { transform: translateX(0); }
	}
	@keyframes slideLeft {
		from { transform: translateX(50px); }
		to   { transform: translateX(0); }
	}
	.image-layout {
		height: 30dvh;
		margin: 10px 0 0;
	}
}
@media (max-width: 600px) {
	.works-grid {
		grid-template-columns: 1fr;
	}
	.projects-list {
		grid-template-columns: 1fr;
	}
}