/* default */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body */
body {
  font-family: "ROBOTO", sans-serif;
}

.nav{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  background-color: #1e1f26;
  text-align: center;
  padding: 0;
}
.slider {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40vh;
  position: relative;
  background-color: #1e1f26;
  text-align: center;
  padding: 0;
}

.nav h1,
.slider h1 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 4vw;
  margin: 0;
  padding-bottom: 30px;
  letter-spacing: 0.5rem;
  color: #03dac6;
  transition: all 0.3s ease;
  z-index: 3;
}
h1:hover {
  transform: translate3d(0, -10px, 22px);
  color: #ff0266;
}

.slider h2 {
  font-size: 3vw;
  letter-spacing: 0.3rem;
  font-family: "ROBOTO", sans-serif;
  font-weight: 300;
  color: #faebd7;
  z-index: 4;
}
h3.span {
  font-size: 2vw;
  letter-spacing: 0.7em;
  font-family: "ROBOTO", sans-serif;
  font-weight: 300;
  color: #faebd7;
  z-index: 4;
}
span:hover {
  color: #ff0266;
  font-weight: 500;
  font-size: 2.2vw;
}

a {
  text-decoration: none;
}

.nav-container {
  display: flex;
  flex-direction: row;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 75px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  background: #1e1f26;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-container--top-first {
  position: fixed;
  top: 75px;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-container--top-second {
  position: fixed;
  top: 0;
}
.nav-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  color: #03dac6;
  letter-spacing: 0.1rem;
  transition: all 0.5s ease;
  font-size: 6vw;
}

.nav-tab:hover {
  color: #1e1f26;
  background: #03dac6;
  transition: all 0.5s ease;
}

.nav-tab-slider {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #03dac6;
  transition: left 0.3s ease;
}
.background {
  position: absolute;
  height: 150vh;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: auto;
}
@media (min-width: 800px) {
  .nav h1,
  .slider h1 {
    font-size: 5vw;
  }

  .nav h2,
  .slider h2 {
    font-size: 3vw;
  }

  .nav-tab {
    font-size: 3vw;
  }
}

@media (min-width: 360px) {
  .nav h1,
  .slider h1 {
    font-size: 8vw;
  }

  .nav h2,
  .slider h2 {
    font-size: 2vw;
    letter-spacing: 0.2vw;
  }

  .nav-tab {
    font-size: 1.2vw;
  }
}

.background {
  position: absolute;
  height: 100vh;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
.loader span {
  color: #faebd7;
  text-shadow: 0 0 0 #faebd7;
  -webkit-animation: loading 1s ease-in-out infinite alternate;
  animation: loading 1s ease-in-out infinite alternate;
}

@-webkit-keyframes loading {
  to {
    text-shadow: 20px 0 70px #ff0266;
    color: #ff0266;
  }
}
@keyframes loading {
  to {
    text-shadow: 20px 0 70px #ff0266;
    color: #ff0266;
  }
}
.loader span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.loader span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.loader span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.loader span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.loader span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.loader span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.loader span:nth-child(8) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.loader span:nth-child(9) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.loader span:nth-child(10) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.loader span:nth-child(11) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.loader span:nth-child(12) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.loader span:nth-child(13) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.loader span:nth-child(14) {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}
.loader span:nth-child(15) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.loader span:nth-child(16) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.loader span:nth-child(17) {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.loader span:nth-child(18) {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}
.loader span:nth-child(19) {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}
.loader span:nth-child(20) {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}
.loader span:nth-child(21) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.loader span:nth-child(22) {
  -webkit-animation-delay: 2.1s;
  animation-delay: 2.1s;
}
/* contact form style start */

form {
  max-width: 600px;
  text-align: center;
  margin: 20px auto;
}

form input, form textarea {
  border: 0;
  outline: 0;
  padding: 1em;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  display: block;
  width: 100%;
  margin-top: 1em;
  font-family: 'Merriweather', sans-serif;
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  resize: none;
}
form input:focus, form textarea:focus {
  -moz-box-shadow: 0 0px 2px #e74c3c !important;
  -webkit-box-shadow: 0 0px 2px #e74c3c !important;
  box-shadow: 0 0px 2px #e74c3c !important;
}
form #input-submit {
  color: white;
  background: #03dac6;
  cursor: pointer;
}
form #input-submit:hover {
  -moz-box-shadow: 0 1px 1px 1px rgba(170, 170, 170, 0.6);
  -webkit-box-shadow: 0 1px 1px 1px rgba(170, 170, 170, 0.6);
  box-shadow: 0 1px 1px 1px rgba(170, 170, 170, 0.6);
}
form textarea {
  height: 126px;
}

.half {
  float: left;
  width: 48%;
  margin-bottom: 1em;
}

.right {
  width: 50%;
}

.left {
  margin-right: 2%;
}

/* Clearfix */
.cf:before,
.cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.cf:after {
  clear: both;
}
/* style for gallery */
main {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 100vw;
	min-height: 150vh;
	overflow-x: hidden;
}
p {
	line-height: 1;
}
a {
	color: crimson;
	text-decoration: none;
}
img {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}
#gallery {
	position: relative;
  background-color: #1e1f26;
	left: calc(-1 * var(--adjust-size));
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
	max-width: 100vw;
	padding: 20px;
	-webkit-perspective: 0;
	perspective: 0;
}

/* Full portfolio gateway and gallery */
.full-portfolio-gateway {
	position: relative;
	padding: 60px 20px 80px;
	background: #1e1f26;
	text-align: center;
	overflow: hidden;
}
.full-portfolio-gateway::before,
.full-portfolio-gateway::after {
	position: absolute;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	content: "";
	filter: blur(90px);
	opacity: 0.2;
	pointer-events: none;
}
.full-portfolio-gateway::before {
	top: -150px;
	left: 12%;
	background: #03dac6;
}
.full-portfolio-gateway::after {
	right: 10%;
	bottom: -180px;
	background: #ff0266;
}
.full-portfolio-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-width: min(330px, 90vw);
	padding: 18px 30px;
	border: 1px solid #03dac6;
	border-radius: 999px;
	background: linear-gradient(120deg, rgba(3, 218, 198, 0.12), rgba(255, 2, 102, 0.08));
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.3), 0 0 30px rgba(3, 218, 198, 0.08);
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: clamp(0.9rem, 2vw, 1.08rem);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 200ms ease, box-shadow 200ms ease, color 200ms ease, transform 200ms ease;
}
.full-portfolio-button i {
	color: #ff0266;
	transition: transform 200ms ease;
}
.full-portfolio-button:hover,
.full-portfolio-button:focus-visible {
	background: #03dac6;
	box-shadow: 0 18px 55px rgba(3, 218, 198, 0.22);
	color: #07110f;
	transform: translateY(-3px);
}
.full-portfolio-button:hover i,
.full-portfolio-button:focus-visible i {
	transform: translateX(5px);
}
.full-portfolio-gateway__link {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-areas: "eyebrow action" "title action";
	align-items: center;
	gap: 10px 28px;
	max-width: 1050px;
	margin: 0 auto;
	padding: clamp(24px, 5vw, 48px);
	border: 1px solid rgba(3, 218, 198, 0.42);
	background: linear-gradient(125deg, rgba(3, 218, 198, 0.08), rgba(255, 2, 102, 0.06));
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
	color: #fff;
	overflow: hidden;
	text-decoration: none;
	transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.full-portfolio-gateway__link::after {
	position: absolute;
	top: 0;
	left: -100%;
	width: 65%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
	content: "";
	transform: skewX(-20deg);
	transition: left 650ms ease;
}
.full-portfolio-gateway__link:hover,
.full-portfolio-gateway__link:focus-visible {
	border-color: #03dac6;
	box-shadow: 0 26px 80px rgba(3, 218, 198, 0.12);
	color: #fff;
	transform: translateY(-4px);
}
.full-portfolio-gateway__link:hover::after,
.full-portfolio-gateway__link:focus-visible::after {
	left: 150%;
}
.full-portfolio-gateway__eyebrow {
	grid-area: eyebrow;
	color: #03dac6;
	font-family: "Poppins", sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.24em;
}
.full-portfolio-gateway__title {
	grid-area: title;
	font-family: "Raleway", sans-serif;
	font-size: clamp(2.2rem, 7vw, 5.8rem);
	font-weight: 200;
	letter-spacing: 0.08em;
	line-height: 0.95;
}
.full-portfolio-gateway__action {
	grid-area: action;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px 18px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	font-family: "Poppins", sans-serif;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.full-portfolio-gateway__action i {
	color: #ff0266;
	transition: transform 220ms ease;
}
.full-portfolio-gateway__link:hover .full-portfolio-gateway__action i,
.full-portfolio-gateway__link:focus-visible .full-portfolio-gateway__action i {
	transform: translateX(4px);
}
.full-portfolio-section {
	position: relative;
	min-height: 78vh;
	padding: clamp(80px, 10vw, 135px) clamp(20px, 5vw, 80px);
	background: radial-gradient(circle at 12% 18%, rgba(3, 218, 198, 0.14), transparent 35%), #08090d;
	color: #fff;
	scroll-margin-top: 70px;
}
.full-portfolio-section__header {
	max-width: 780px;
	margin: 0 auto 55px;
	text-align: center;
}
.full-portfolio-section__eyebrow {
	margin: 0 0 18px;
	color: #03dac6;
	font-family: "Poppins", sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.24em;
}
.full-portfolio-section__header h2 {
	margin: 0 0 20px;
	font-family: "Raleway", sans-serif;
	font-size: clamp(3rem, 8vw, 7rem);
	font-weight: 200;
	letter-spacing: 0.04em;
	line-height: 1;
}
.full-portfolio-section__header > p:last-child {
	max-width: 620px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.66);
	font-family: "Raleway", sans-serif;
	font-size: 1rem;
	line-height: 1.7;
}
.full-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
	max-width: 1280px;
	margin: 0 auto;
}
.full-portfolio-placeholder {
	grid-column: 1 / -1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	padding: 45px 25px;
	border: 1px dashed rgba(3, 218, 198, 0.36);
	background: rgba(255, 255, 255, 0.018);
	text-align: center;
}
.full-portfolio-placeholder i {
	margin-bottom: 20px;
	color: #03dac6;
	font-size: 3rem;
}
.full-portfolio-placeholder h3 {
	margin: 0 0 10px;
	font-family: "Poppins", sans-serif;
	font-size: 1.25rem;
}
.full-portfolio-placeholder p {
	margin: 0;
	color: rgba(255, 255, 255, 0.55);
	font-family: "Raleway", sans-serif;
	font-size: 0.9rem;
	line-height: 1.6;
}
.full-portfolio-item {
	position: relative;
	min-height: 320px;
	padding: 0;
	border: 0;
	background: #15161c;
	cursor: zoom-in;
	overflow: hidden;
}
.full-portfolio-item img {
	width: 100%;
	height: 100%;
	margin: 0;
	border-radius: 0;
	aspect-ratio: auto;
	object-fit: cover;
	transition: filter 250ms ease, transform 450ms ease;
}
.full-portfolio-item:hover img,
.full-portfolio-item:focus-visible img {
	filter: brightness(0.72);
	transform: scale(1.035);
}
.full-portfolio-item span {
	position: absolute;
	left: 18px;
	bottom: 16px;
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 220ms ease, transform 220ms ease;
}
.full-portfolio-item:hover span,
.full-portfolio-item:focus-visible span {
	opacity: 1;
	transform: translateY(0);
}
body.fullres-viewer-open {
	overflow: hidden;
}
.fullres-viewer {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	z-index: 10000;
}
.fullres-viewer.is-open {
	display: flex;
}
.fullres-viewer__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background: rgba(2, 3, 5, 0.96);
	backdrop-filter: blur(10px);
}
.fullres-viewer__panel {
	position: relative;
	display: flex;
	flex-direction: column;
	width: min(1260px, 100%);
	max-height: calc(100vh - 40px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: #0b0c10;
	box-shadow: 0 35px 100px rgba(0, 0, 0, 0.72);
}
.fullres-viewer__header,
.fullres-viewer__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 18px;
}
.fullres-viewer__header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.fullres-viewer__header p {
	margin: 0 0 3px;
	color: #03dac6;
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.22em;
}
.fullres-viewer__header h2 {
	margin: 0;
	font-family: "Poppins", sans-serif;
	font-size: 1rem;
}
.fullres-viewer__close {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	background: transparent;
	color: #fff;
	cursor: pointer;
	font-size: 1.6rem;
	line-height: 1;
}
.fullres-viewer__stage {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) 48px;
	align-items: center;
	min-height: 0;
	padding: 10px;
}
.fullres-viewer__stage img {
	width: 100%;
	height: min(72vh, 850px);
	margin: 0;
	border-radius: 0;
	background: #050609;
	aspect-ratio: auto;
	object-fit: contain;
	pointer-events: auto;
}
.fullres-viewer__nav {
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.72);
	cursor: pointer;
	font-size: 1.8rem;
}
.fullres-viewer__nav:hover,
.fullres-viewer__nav:focus-visible,
.fullres-viewer__close:hover,
.fullres-viewer__close:focus-visible {
	color: #03dac6;
	border-color: #03dac6;
}
.fullres-viewer__footer {
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	color: rgba(255, 255, 255, 0.68);
	font-family: "Raleway", sans-serif;
	font-size: 0.78rem;
}
.fullres-viewer__footer a {
	color: #03dac6;
	font-weight: 700;
}
@media (max-width: 700px) {
	.full-portfolio-gateway__link {
		grid-template-columns: 1fr;
		grid-template-areas: "eyebrow" "title" "action";
	}
	.full-portfolio-gateway__action {
		justify-self: start;
		margin-top: 10px;
	}
	.fullres-viewer {
		padding: 0;
	}
	.fullres-viewer__panel {
		height: 100%;
		max-height: none;
		border: 0;
	}
	.fullres-viewer__stage {
		grid-template-columns: 38px minmax(0, 1fr) 38px;
		padding: 6px 0;
	}
	.fullres-viewer__stage img {
		height: 70vh;
	}
	.fullres-viewer__footer {
		flex-wrap: wrap;
		justify-content: center;
	}
}

#gallery figure:nth-child(7n) {
	--duration: 1s;
	--pin-color: crimson;
}
#gallery figure:nth-child(7n + 1) {
	--duration: 1.8s;
	--pin-color: hotpink;
}
#gallery figure:nth-child(7n + 2) {
	--duration: 1.3s;
	--pin-color: magenta;
}
#gallery figure:nth-child(7n + 3) {
	--duration: 1.5s;
	--pin-color: orangered;
}
#gallery figure:nth-child(7n + 4) {
	--duration: 1.1s;
	--pin-color: darkorchid;
}
#gallery figure:nth-child(7n + 5) {
	--duration: 1.6s;
	--pin-color: deeppink;
}
#gallery figure:nth-child(7n + 6) {
	--duration: 1.2s;
	--pin-color: mediumvioletred;
}
#gallery figure:nth-child(3n) {
	--angle: 3deg;
}
#gallery figure:nth-child(3n + 1) {
	--angle: -3.3deg;
}
#gallery figure:nth-child(3n + 2) {
	--angle: 2.4deg;
}
#gallery figure:nth-child(odd) {
	--direction: alternate;
}
#gallery figure:nth-child(even) {
	--direction: alternate-reverse;
}
#gallery figure {
	--angle: 3deg;
	--count: 5;
	--duration: 1s;
	--delay: calc(-0.5 * var(--duration));
	--direction: alternate;
	--pin-color: red;

	position: relative;
	display: inline-block;
	margin: var(--adjust-size);
	padding: 0.5rem;
	border-radius: 5px;
	box-shadow: 0 7px 8px rgba(0, 0, 0, 0.4);
	width: 100%;
	height: auto;
	text-align: center;
	background-color: ghostwhite;
	background-image: url("https://images.unsplash.com/photo-1629968417850-3505f5180761?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wzMjM4NDZ8MHwxfHJhbmRvbXx8fHx8fHx8fDE2OTMzMjQ3ODJ8&ixlib=rb-4.0.3&q=80&w=500");
	background-size: cover;
	background-position: center;
	background-blend-mode: multiply;

	transform-origin: center 0.22rem;
	will-change: transform;
	break-inside: avoid;
	overflow: hidden;
	outline: 1px solid transparent;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
#gallery.active figure {
	animation-duration: var(--duration), 1.5s;
	animation-delay: var(--delay),
		calc(var(--delay) + var(--duration) * var(--count));
	animation-timing-function: ease-in-out;
	animation-iteration-count: var(--count), 1;
	animation-direction: var(--direction), normal;
	animation-fill-mode: both;
	animation-name: swing, swingEnd;
}
#gallery figure:after {
	position: absolute;
	top: 0.22rem;
	left: 50%;
	width: 0.7rem;
	height: 0.7rem;
	content: "";
	background: var(--pin-color);
	border-radius: 50%;
	box-shadow: -0.1rem -0.1rem 0.3rem 0.02rem rgba(0, 0, 0, 0.5) inset;
	filter: drop-shadow(0.3rem 0.15rem 0.2rem rgba(0, 0, 0, 0.5));
	transform: translateZ(0);
	z-index: 2;
}
#gallery figure img {
	aspect-ratio: 1 /1;
	width: 100%;
	object-fit: cover;
	object-position: center 15%;
	display: block;
	border-radius: 5px;
	margin-bottom: 10px;
	-webkit-user-drag: none;
	user-select: none;
	z-index: 1;
}
figure figcaption {
	font-size: 14px;
	font-weight: 400;
  color: #000000;
	z-index: 1;
}
figure h2 {
	color: crimson;
	font-size: 22px;
}
figure p {
	font-size: 17px;
}
figure small {
	font-size: 12px;
}
figure > div {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
@keyframes swing {
	0% {
		transform: rotate3d(0, 0, 1, calc(-1 * var(--angle)));
	}
	100% {
		transform: rotate3d(0, 0, 1, var(--angle));
	}
}
@keyframes swingEnd {
	to {
		transform: rotate3d(0, 0, 1, 0deg);
	}
}
#info {
	position: relative;
	text-align: center;
	z-index: 1;
}
#info a {
	font-size: 1.1rem;
}
/*
@media (orientation: landscape) {
	#gallery {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}
}
*/
@media (min-width: 800px) {
	#gallery {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}
}
/* style for text Carousel */
* {
  box-sizing: border-box;
}

body {
  background: #121314;
}

body > ul {
  position: absolute;
  top: 50%;
  width: 800px;
  height: 200px; 
  left: 50%;
  margin-left: -400px;
  margin-top: -130px;
}

ul > li {
  width: 25%;
  list-style-type: none;
  position: absolute;
  top: 0;
  padding: 20px;
  height: 200px; 
  opacity: 0;
  padding-top: 40px;
  text-align: center;
  transition: 1s opacity; 
}

.active {
  opacity: 1;
}

p {
  font-family: sans-serif;
  font-size: 13px;
  color: #646566;
  line-height: 1.5em;
}

strong { 
  color: #fff;
  font-weight: 700;
  font-size: 60px; 
  line-height: 100px; 
}
/* style for service section */
.section-services {
	padding-top: 50px;
	padding-bottom: 50px;
  position: relative;
	font-family: "Poppins", sans-serif;
	background-color: #211f24;
	color: #fff;
}

.section-services .header-section {
	margin-bottom: 50px;
}

.section-services .header-section .title {
	position: relative;
	margin-bottom: 50px;
	padding-bottom: 100px;
	text-transform: uppercase;
	font-weight: 700;
}

.section-services .header-section .title:before {
	content: "";
	position: absolute;
	bottom: 50;
	left: 50%;
	transform: translateX(-50%);
	width: 140px;
	height: 1px;
	background-color: #f70037;
}

.section-services .header-section .title:after {
	content: "";
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	width: 45px;
	height: 3px;
	background-color: #f70037;
}

.section-services .header-section .title span {
	color: #f70037;
}

.section-services .header-section .description {
	color: #6f6f71;
}

.section-services .single-service {
	margin-top: 50px;
	background-color: #24252a;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
}

.section-services .single-service .part-1 {
	padding: 40px 40px 25px;
	border-bottom: 2px solid #1d1e23;
}

.section-services .single-service .part-1 i {
	margin-bottom: 25px;
	font-size: 50px;
	color: #f70037;
}

.section-services .single-service .part-1 .title {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.8em;
}

.section-services .single-service .part-2 {
	padding: 30px 40px 40px;
}

.section-services .single-service .part-2 .description {
	margin-bottom: 22px;
	color: #6f6f71;
	font-size: 14px;
	line-height: 1.8em;
}

.section-services .single-service .part-2 a {
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}

.section-services .single-service .part-2 a i {
	margin-right: 10px;
	color: #f70037;
}
/* timeline here */
