@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}
html {
	scroll-behavior: smooth;
}
body {
	position: relative;
	min-height: 100vh;
	background-color: #111 !important;
	color: #fff !important;
	font-size: clamp(1.125rem, 2vw, 1.25rem);
}

pre {
	color: #fff !important;
}

a {
	text-decoration: none !important;
}

ul {
	margin: 0 !important;
	padding: 0 !important;
}

th {
	text-transform: uppercase;
}

::-webkit-scrollbar {
	width: 7px;
}

::-webkit-scrollbar-thumb {
	background-color: hsl(0, 0%, 12%);
	border-radius: 5px;
}

::-webkit-scrollbar-horizontal {
	height: 10px;
}

::-webkit-scrollbar-thumb:horizontal {
	background-color: #ccc;
	border-radius: 5px;
}

@keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fade-out {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes slide-to-left {
	from {
		transform: translateX(-4rem);
	}
	to {
		transform: translateX(0rem);
	}
}

::view-transition-old(root) {
	animation: fade-out 350ms cubic-bezier(0, 0, 0.2, 1),
		slide-to-right 350ms cubic-bezier(0, 0, 0.2, 1);
}

::view-transition-new(root) {
	animation: fade-in 350ms cubic-bezier(0, 0, 0.2, 1),
		slide-to-left 350ms cubic-bezier(0, 0, 0.2, 1);
	mix-blend-mode: normal;
}

@keyframes fade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes reveal {
	from {
		background-position-x: 200%;
	}
	to {
		background-position-x: 0%;
	}
}

p {
	animation: fade linear;
	animation-timeline: view();
	animation-range: entry 20% cover 20%;
}

.huge-heading,
.banner h1 {
	background: linear-gradient(90deg, #fff, transparent);
	background-size: 200%;
	animation: reveal both linear;
	animation-timeline: view();
	background-repeat: no-repeat;
	animation-range: entry 50% cover 50%;
	background-clip: text;
	-webkit-background-clip: text;
}

.content {
	max-width: 1200px;
	margin: auto;
	padding: 0px 30px;
}

.navbar {
	position: fixed !important;
	z-index: 999 !important;
	width: 100%;
	padding: 25px 0 !important;
	background: #11111195;
	transition: all 0.3s ease;
}

.navbar.sticky {
	padding: 15px 0 !important;
	-webkit-box-shadow: -2px 1px 21px -6px #000;
	-moz-box-shadow: -2px 1px 21px -6px #000;
	box-shadow: -2px 1px 21px -6px #000;
}

.navbar .content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.navbar .logo a {
	color: #fff;
	font-size: 30px;
	font-weight: 600;
	text-decoration: none;
}

.navbar .menu-list {
	display: inline-flex;
}

.menu-list li {
	list-style: none;
}

.menu-list li a {
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	transition: color 500ms;
}

.icon {
	color: #ffffff;
	font-size: 20px;
	cursor: pointer;
	display: none;
}

.icon.cancel-btn {
	position: absolute;
	right: 30px;
	top: 20px;
	color: crimson;
}

.social-icons {
	display: none;
}

.menu-list li a.btn.btn-danger.hire-me {
	text-align: center;
	border-radius: 40px;
	transition: color 0.5s, background-color 0.5s;
}

/* NAVBAR RESPONSIVE */

@media (max-width: 868px) {
	body.disabledScroll {
		overflow: hidden;
	}

	.icon {
		display: block;
		transition: transform 0.3s ease;
	}

	.icon:hover {
		transform: rotate(90deg);
	}

	.icon.hide {
		display: none;
	}

	.navbar .menu-list {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		min-height: 100vh;
		max-width: 400px;
		background: #fff;
		display: block;
		text-align: center;
		transition: all 0.3s ease;
		-webkit-box-shadow: -2px 1px 21px -6px #000;
		-moz-box-shadow: -2px 1px 21px -6px #000;
		box-shadow: -2px 1px 21px -6px #000;
	}

	.navbar .menu-list.active {
		left: 0%;
	}

	.navbar .menu-list li {
		margin-top: 45px;
	}

	.navbar .menu-list li a {
		font-size: 23px;
		color: #000 !important;
		margin-left: 0;
	}

	.menu-list li a:hover {
		color: #8d011c !important;
	}

	.menu-list li:nth-child(2) {
		margin-top: 20%;
	}

	.menu-list li a.btn.btn-danger.hire-me {
		color: crimson !important;
		background-color: #fff !important;
		border: none !important;
	}

	.social-icons {
		display: block;
		position: absolute;
		bottom: 20px;
		width: 100%;
	}
	.social-icons a {
		margin: 0 1rem;
	}
}

/*  */
/*  */
/*  */
/*  */

main {
	padding-bottom: 8rem !important;
}

.gallery {
	display: grid;
	gap: 1.2em;
	margin-bottom: 5rem;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 200px);
}

.gallery > div {
	border-radius: 25px;
}

.gallery > div > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.one {
	grid-column: span 2;
	grid-row: span 2;
}

.two,
.three {
	grid-row: span 1;
}

/*  */
/* SLIDER */
/*  */

.gallery-container {
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.gallery-container > a > img {
	transition: transform 0.5s ease;
}

.gallery-container:hover > a > img {
	transform: scale(1.4);
}

.project-cell-text {
	font-weight: 400;
	color: whitesmoke;
	background-image: linear-gradient(0deg, rgb(0, 0, 0), hsla(0, 0%, 0%, 0.036));
	background-image: linear-gradient(0deg, rgb(0, 0, 0), hsla(0, 0%, 0%, 0.036));
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0.9rem 1.9rem !important;

	width: 100%;
	text-align: left;
}

.project-cell-text h6 {
	text-transform: uppercase;
	font-size: 25px;
	font-weight: 600;
	line-height: 35px;
	margin: 0;
}

.gallery-container img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.works-single-header {
	padding-top: 2rem;
}

/* RESPONSIVE */

/* MY-PROJECTS */

.my-projects {
	z-index: 20;
	text-align: center;
	padding: 4rem 40px 0;
	position: relative;
}

.my-projects-text {
	margin-bottom: 80px;
}

.my-projects h2 {
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 30px;
	font-size: 160px;
	font-weight: 600;
	line-height: 170px;
}

.my-projects-text p {
	max-width: 480px;
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
	font-size: 20px;
}

@media (max-width: 576px) {
}

@media (max-width: 992px) {
	.works-single-header {
		font-size: 25px !important;
		padding-top: 0.7rem !important;
	}

	main {
		padding: 2rem 1rem !important;
	}

	.gallery {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, 200px);
	}

	.one {
		grid-column: span 2;
		grid-row: span 2;
		height: 100%;
	}

	.three {
		grid-column-start: auto;
		grid-row: auto;
	}

	.four {
		grid-column: auto;
		grid-column-start: auto;
		grid-row: auto;
	}

	.hidden-slider {
		display: block;
	}
}

section {
	padding-top: 6rem;
}

.pt-8 {
	padding-top: 8rem !important;
}

.pb-6 {
	padding-bottom: 6rem !important;
}

.pb-4 {
	padding-bottom: 4rem !important;
}

.mt-44 {
	margin-top: 44px !important;
}

.mt-55 {
	margin-top: 55px !important;
}

/*  */
/*  */
/*  */
/*  */
/*  */
.overheader {
	color: #41ead4;
	letter-spacing: 4px;
	text-transform: uppercase;
	margin-bottom: 40px;
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
}

.top-section {
	text-align: center;
	padding-top: 100px;
}

.banner h1 {
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 30px;
	font-size: 160px;
	font-weight: 600;
	line-height: 170px;
}

.hero-image {
	max-width: 100%;
	vertical-align: middle;
	display: inline-block;
	margin-top: -150px;
}

.hero-wrapper {
	max-width: 1920px;
	margin-right: auto;
	margin-left: auto;
}

.lowercase-span {
	text-transform: lowercase;
	font-family: Playfair Display, sans-serif !important;
	font-style: italic;
	font-weight: 400;
}

.hero-section {
	z-index: 10;
	margin-bottom: 240px;
	padding-top: 110px;
	padding-left: 40px;
	padding-right: 40px;
	position: relative;
}

.hero-block-text {
	display: flex;
	flex-direction: column;
}

.hero-block-row {
	display: flex !important;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.hero-block-row h2 {
	font-size: 100px;
	font-weight: 700;
	line-height: 1;
}

.hero-cell-wrapper {
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	grid-template-rows: auto auto;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-auto-columns: 1fr;
	display: grid;
}

.hero-cell {
	text-align: center;
	border: 1px solid #fff;
	border-radius: 40px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 50px;
	display: flex;
}

.hero-cell p {
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 26px;
	margin-top: 1rem;
}

/* HOW IT WORKS */

.how-it-works {
	position: relative;
	z-index: 20;
	padding: 8rem 2rem;
}

.huge-heading {
	font-weight: 600;
	font-size: 220px;
	line-height: 220px;
}

.upercase-span {
	text-transform: capitalize;
	font-family: Playfair Display, sans-serif;
	font-style: italic;
	font-weight: 400;
}

.huge-margin {
	margin: 40px 0;
	text-align: right;
}

.gradient-medium {
	z-index: -1;
	width: 100%;
	position: absolute;
	top: 0%;
	bottom: auto;
	left: 0%;
	right: 0%;
}

@media screen and (max-width: 1400px) {
	.hero-cell-wrapper {
		width: 100%;
		grid-template-columns: 1fr 1fr;
	}
}

.gradient-top {
	z-index: -5;
	width: 100%;
	position: absolute;
	top: -20%;
	bottom: auto;
	left: 0%;
	right: 0%;
}

.gradient-top-works {
	position: absolute;
	width: 100%;
	height: 100%;
	top: -20%;
	left: 0;
	right: 0;
	z-index: -5;
	opacity: 0.15;
}

.gradient-top-contact {
	z-index: -5;
	position: absolute;
	top: 0;
	bottom: auto;
	left: 0%;
	right: 0%;
	width: 100%;
}

.images {
	height: 166px;
}

.images img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.recent-post,
.images {
	overflow: hidden;
}

.recent-post > div {
	padding: 1rem;
}

.recent-post:hover {
	border-radius: 5px;
	transition: transform 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.418);
}

.recent-post .images img {
	border-radius: 5px;
}

.recent-post:hover .images img {
	transform: scale(1.4);
}

.special-image {
	filter: blur(5px);
}

.custom-pagination .pagination a {
	color: #8d011c; /* Renk seÃ§imi */
	margin: 0 5px; /* Aralara boÅŸluk eklemek iÃ§in */
	font-size: 18px; /* Font boyutu */
	text-decoration: none;
}

.pagination > strong {
	color: floralwhite;
	padding: 0 0.4rem;
	background-color: #640619;
	font-size: 18px !important;
}

.recent-title {
	padding: 0.3rem 0.8rem;
}

.recent-title p:nth-child(1) {
	font-size: 16px;
	font-weight: 400;
	color: #fff !important;
	margin: 8px 0 0 0;
}

.recent-title p:nth-child(2) {
	font-size: 12px;
	font-weight: 600;
	color: #fff !important;
	margin: 8px 0 0 0;
}

.recent-title small,
.last-post-title small {
	font-weight: 500;
	font-size: 9px;
	color: #696969;
}

.social-media {
	margin: 0 !important;
}

.social-media button {
	width: 100px !important;
	height: 80px !important;
	border-radius: 0px !important;
	border-color: hsl(0, 0%, 91%) !important;
	transition: color 500ms;
}

.editing-service {
	z-index: 20;
	position: relative;
	padding: 0 2rem;
	max-width: 1920px;
	margin: 0 auto;
}

.editing-service h6 {
	text-transform: uppercase;
	margin-top: 15px;
	margin-bottom: 15px;
	font-size: 30px;
	font-weight: 600;
	line-height: 40px;
}

.service-card {
	padding: 4rem;
	margin: 0 auto;
}

.service-card p {
	font-size: 20px;
}

.editing-service .row {
	margin: 0 0 140px 0 !important;
}

.editing-service .row h3 {
	margin-top: 0;
	margin-bottom: 30px;
	font-size: 72px;
	font-weight: 600;
	line-height: 82px;
}

.m0 {
	margin: 0 !important;
}

.p0 {
	padding: 0 !important;
}

.editing-service-text {
	margin-top: 0;
	margin-bottom: 20px;
	font-weight: 500;
}

.editing-service .row img {
	width: 100%;
	max-height: 650px;
	object-fit: cover;
}

/* */
/* featured post */
/*  */

.featured-post {
	position: relative;
}

.featured-post img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.featured-post-title {
	padding: 0.6rem 1.2rem;
	background-color: #fff;
	position: absolute;
	margin: 4rem 1rem 0;
	bottom: -40px !important;
	left: 0;
	width: 90%;
	text-align: center;
}

.featured-post-title p {
	font-size: 15px;
	font-weight: 600;
	color: #000;
	margin: 0;
}

.featured-post-title small {
	font-weight: 500;
	font-size: 9px;
	color: hsla(0, 0%, 0%, 0.664);
}

/*  */
/* category-container */
/*  */

.categories {
	padding-bottom: 8rem !important;
}

.category-container a {
	width: 100%;
	color: #fff;
}

.category-works {
	display: inline-block;
}

.category-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.category-title h4 {
	font-size: 15px;
}
.category-title p {
	font-size: 11px;
}

.category-title h4,
.category-title p {
	margin: 0;
	padding: 10px 5px;
}

.category-container a:hover .category-title {
	border-radius: 5px;
	transition: all 0.3s ease;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

/*  */
/* show */
/*  */

.last-post-title {
	padding: 1rem 0;
}

.aside-recent a:hover .last-post-title p {
	color: crimson !important;
}

.last-post-title p {
	margin: 0 !important;
	color: #fff !important;
}

.works-single-container {
	padding-bottom: 3rem;
}

.works-single-container img {
	width: 100%;
	height: 100%;
	max-height: 700px;
	object-fit: cover;
	padding: 2rem 0 !important;
}

@media (max-width: 1200px) {
	.works-single-container img {
		width: 100%;
	}
}

.works-single-container p {
	text-align: justify;
}

.contact-form {
	padding: 2rem 0 5rem 0;
}

.contact-form label {
	font-size: 13px;
}

.btn-light.py-2.px-4 {
	font-size: 13px;
}

input[type="email"],
input[type="text"],
input[type="password"],
textarea {
	background: transparent !important;
	color: white !important;
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
	outline: none !important;
	border: 2px solid white !important;
}

.contact-left-container {
	z-index: 20;
	text-align: left;
	background-color: rgba(0, 0, 0, 0.35);
	border-radius: 2px;
	border: 1px solid hsla(0, 0%, 5%, 0.12);
	/* display: flex;  */
	/* flex-direction: column; */
	/* justify-content: center;  */
	/* align-items: center;  */
	padding: 40px;
	margin: 40px 40px 0 0;
}

/* .contact-left-text {
	display: flex;
	flex-direction: column;
	width: 40%;
} */
/* 
.contact-left-text p{
	margin: 0 auto !important;
	text-align: left;
}  */

.contact-left-container h5 {
	font-family: Playfair Display, sans-serif;
	font-style: italic;
	font-weight: 500;
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 40px;
	font-weight: 600;
	line-height: 50px;
}

.paragraph-semi-bold {
	font-weight: 600;
}

.contact-link {
	color: #fff;
	margin-bottom: 0;
	text-decoration: none;
	transition: color 0.3s;
}

.contact-text h1 {
	text-transform: uppercase;
	margin-top: 140px;
	margin-bottom: 10px;
	font-size: 120px;
	font-weight: 600;
}

.footer-section {
	z-index: 20;
	padding-bottom: 100px;
	padding-left: 40px;
	padding-right: 40px;
	position: relative;
}

.footer-section .contact {
	justify-content: space-between;
	align-items: center;
	margin-bottom: 100px;
	padding-top: 130px;
	display: flex;
}

.footer-section .contact .row {
	margin: 0 auto !important;
}

.footer-section .contact .row h2 {
	font-size: 220px;
	font-weight: 600;
	line-height: 220px;
}

.footer-section .contact-box {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footer-section .contact-btn {
	padding: 0.8rem 1.2rem;
}

.footer-section .footer {
	border-top: 1px solid #302f2f;
	padding-top: 80px;
}

.footer-section .footer .row .col-md-3 {
	display: flex !important;
	margin: 0 auto !important;
	justify-content: center !important;
}

.footer-section .footer .row .col-md-3 a {
	color: #fff;
}

.footer-section .footer .row .col-md-3 li {
	list-style: none;
}

.footer-section .footer .row .col-md-3 h2 {
	font-weight: 700;
}

@media (max-width: 992px) {
	.footer-section .footer .row .col-md-3 {
		display: inline !important;
		text-align: start;
		margin-bottom: 3rem !important;
		margin-left: 3rem !important;
	}
}

.gradient-bottom {
	z-index: -1;
	width: 100%;
	height: 100%;
	position: absolute;
	top: auto;
	bottom: 0%;
	left: 0%;
	right: 0%;
}

.video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

footer {
	z-index: 21;
	background-color: hsla(0, 0%, 0%, 0.22);
	color: #fff;
	text-align: center;
	padding: 10px 0;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.copyright {
	font-size: 14px;
}

.about {
	margin-bottom: 120px;
}

.about .overheader {
	padding: 70px 40px 40px;
	margin: 0;
}

.about h1 {
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 30px;
	font-size: 160px;
	font-weight: 600;
	line-height: 170px;
	padding-bottom: 60px;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-me-text p {
	padding: 0.8rem 2rem 0.8rem 0;
}

.about-me-text h3 {
	padding-bottom: 0.8rem;
}

.active {
	background-color: #dc3545;
	color: #fff !important;
	padding: 5px 10px;
	transition: all 0.3s ease;
	border-radius: 5px;
}

.hero-cell-wrapper rect {
	display: none !important;
}

.see-more-works {
	color: #dc3545;
}

@media (max-width: 1500px) {
	.huge-heading {
		font-size: 140px;
		line-height: 140px;
	}
}

@media (max-width: 1200px) {
	.banner h1 {
		font-size: 120px;
		line-height: 120px;
		margin-bottom: 80px;
	}

	.huge-heading {
		font-size: 120px;
		line-height: 120px;
	}

	.editing-service-text {
		font-weight: 300;
	}

	.editing-service .row h3 {
		font-size: 36px;
		line-height: normal !important;
	}

	.editing-service h6 {
		font-size: 22px;
		line-height: normal !important;
	}

	.service-card p {
		font-size: 1rem;
		font-weight: 300;
	}

	.footer-section .contact .row h2 {
		font-size: 120px;
		line-height: 120px;
	}

	.hero-cell {
		padding: 30px;
	}

	.about-me-text {
		padding: 1rem !important;
	}
}
@media (max-width: 992px) {
	.overheader {
		margin-bottom: 25px;
	}

	.banner h1 {
		font-size: 80px;
		line-height: normal !important;
	}

	.hero-block-row h2 {
		font-size: 70px;
	}

	.my-projects h2 {
		font-size: 100px;
		line-height: 100px;
	}

	.huge-heading {
		font-size: 100px;
		line-height: 100px;
	}

	.editing-service .row h3 {
		font-size: 28px;
	}

	.editing-service h6 {
		font-size: 19px;
	}

	.footer-section .contact .row h2 {
		font-size: 100px;
		line-height: 100px;
	}

	.contact-text {
		font-size: 14px;
	}

	.contact-text h1 {
		margin-top: 110px;
		font-size: 70px;
	}

	.about h1 {
		font-size: 120px;
	}

	.about .overheader {
		padding: 40px 20px 20px;
		margin: 0;
	}
}

@media (max-width: 768px) {
	.top-section {
		padding-top: 45px;
	}

	.gradient-top {
		height: 100%;
	}

	.overheader {
		padding-top: 30px;
	}

	.service-card {
		padding: 2rem 0px !important;
	}

	.footer-section .contact {
		padding-top: 50px;
	}

	.two,
	.three {
		height: 100%;
		object-fit: cover;
	}

	.my-projects {
		padding: 0rem 40px 0;
	}

	.hero-block-text {
		padding-top: 3rem;
	}
	.my-projects h2 {
		font-size: 70px;
		line-height: 70px;
	}

	.my-projects-text p {
		font-size: 16px;
	}

	.huge-heading {
		font-size: 77px;
		line-height: 70px;
	}

	.contact-left-container {
		margin: 40px 40px;
	}

	.contact-form {
		padding: 2rem 2rem 5rem;
	}

	.about h1 {
		font-size: 90px;
		line-height: 140px;
		padding-bottom: 45px;
	}

	.about-me-text p {
		padding: 1rem 0 !important;
	}

	.about-me-text {
		padding: 2rem !important;
	}
}

@media (max-width: 576px) {
	.banner h1 {
		font-size: 55px;
		margin-bottom: 136px;
	}

	.footer-section .contact .row h2 {
		font-size: 55px;
		line-height: normal !important;
	}

	.contact-text {
		margin-bottom: 2rem;
	}

	.contact-text h1 {
		margin-top: 70px;
		font-size: 50px;
	}

	.contact-text-p {
		padding: 2rem;
	}

	.project-cell-text {
		padding: 0.5rem !important;
	}

	.project-cell-text h6 {
		font-size: 18px;
		line-height: 20px;
	}

	.project-cell-text p {
		font-size: 14px;
	}

	.hero-section {
		margin-bottom: 120px;
	}

	.banner .overheader {
		padding-top: 0px;
	}

	.about h1 {
		font-size: 60px;
		line-height: 60px;
		padding-bottom: 20px;
	}
}

@media (max-width: 478px) {
	.huge-heading {
		font-size: 48px;
		line-height: 48px;
	}

	.hero-cell {
		padding: 7px;
	}

	.hero-cell p {
		font-size: 13px;
		font-weight: 400;
		line-height: 17px;
		margin-top: 12px;
		padding: 0.5rem;
	}

	.my-projects h2 {
		font-size: xx-large;
		line-height: 61px;
	}

	.huge-heading {
		font-size: 40px;
		line-height: 40px;
	}

	.gallery {
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(3, 200px);
	}

	.two {
		grid-column-start: auto;
		grid-row: auto;
	}

	.one {
		grid-row: span 1;
		grid-column: span 1;
	}
}

.panel {
	background-color: aliceblue;
	color: #000;
}

pre {
	color: #000 !important;
}

.singlePostVideo {
	width: 100%;
	max-height: 700px;
	height: auto;
}

.mobile-only {
	display: none;
}

@media (max-width: 768px) {
	.desktop-only {
		display: none;
	}

	.mobile-only {
		display: block;
	}
}
