body {
	overflow: initial;
}

.parallax-image-holder {
	width: 100%;
	background-repeat: no-repeat;
    background-position: 50% 50%;
	background-size: cover;
	background-attachment: fixed;
    transition-property: background-position;
}

.projects-holder {
	padding: 50px 0px 100px 0px;
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.projects-holder .item-wrapper {
	width: 46%;
	position: relative;
	height: 400px;
	margin-bottom: 100px;
	perspective: 1000px;
    transform-style: preserve-3d;
}

.projects-holder .item-wrapper .item {
	height: 100%;
}

.projects-holder .item-wrapper:nth-child(2n) {
	transform: translateY(calc(50% + 50px));
}

.projects-holder .item-wrapper:nth-child(2n):last-child {
	margin-bottom: 250px;
}

.projects-holder .item-wrapper .item .small-holder {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-clip-path: polygon(0px 100px, 100px 0px, 100% 0%, 100% 100%, 0% 100%);
	clip-path: polygon(0px 100px, 100px 0px, 100% 0%, 100% 100%, 0% 100%);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	filter: brightness(75%);
}

.projects-holder .item-wrapper .small-holder:hover {
	filter: brightness(100%);
}

.projects-holder .item-wrapper .project-texts {
	position: absolute;
    right: -5%;
    bottom: 50%;
    -webkit-transform: rotate(-90deg) translateX(50%);
    -ms-transform: rotate(-90deg) translateX(50%);
    transform: rotate(-90deg) translateX(50%);
	text-align: left;
	z-index: 3;
	color: #fff;
	/* height: 30px; */
	-webkit-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
	pointer-events: none;
}

.projects-holder .item-wrapper .project-name {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 16px;
}

.projects-holder .item-wrapper .project-subname {
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    padding-right: 25px;
}

html{
    background: #333333;

}

.pulse-container {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.its-pulse {
	background: transparent;
	height: 10%;
	width: 10%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	opacity: 0;
}

.its-pulse .line-inner {
	position: absolute;
	background: #fff;
}

.its-pulse .line-inner:nth-child(1) {
	left: 25px;
	top: 0;
	height: 2px;
	width: calc(100% - 25px);
}

.its-pulse .line-inner:nth-child(2) {
	right: 0;
	top: 0;
	height: 100%;
	width: 2px;
}

.its-pulse .line-inner:nth-child(3) {
	right: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
}

.its-pulse .line-inner:nth-child(4) {
	left: 0;
	bottom: 0;
	height: calc(100% - 25px);
	width: 2px;
}

.its-pulse .line-inner:nth-child(5) {
    left: 0;
    bottom: calc(100% - 27px);
    transform: rotate(-45deg);
    transform-origin: 0 0;
    height: 2px;
    width: 35px;
}

.pulse-1 {
	animation: pulse-1 3s ease-out infinite;
}

.pulse-2 {
	animation: pulse-1 3s ease-out infinite;
	animation-delay: 1500ms;
}

@-webkit-keyframes pulse-1 {
    0%   {
		width: 10%;
		height: 10%;
		opacity: 0.0;
	}
    50%  {
		opacity: 1.0;
	}
    100% {
		width: 25%;
		height: 25%;
		opacity: 0.0;
	}
}

.base-pulse{
	background: transparent;
	border-radius: 600px;
	height: 100px;
	width: 100px;
	position: absolute;
	top: calc(50% - 50px);
	left: calc(50% - 50px);
	/* transform: translate(-50%, -50%); */
	z-index: 1;
	opacity: 0;
	border: 2px solid white;
}

.pulse1 {
	animation: pulse1 3s ease-out infinite;
}

/* .pulse2 {
	animation: pulse1 3s ease-out infinite;
	animation-delay: 500ms;
}

.pulse3 {
	animation: pulse1 3s ease-out infinite;
	animation-delay: 1000ms;
} */

.pulse4 {
	animation: pulse1 3s ease-out infinite;
	animation-delay: 1500ms;
}

@-webkit-keyframes "pulse1" {
    0%   {transform: scale(0.1, 0.1); opacity: 0.0;}
    50%  {opacity: 1.0;}
    100% {transform: scale(1.2, 1.2); opacity: 0.0;}
}


@media (max-width: 1200px) {
	.projects-holder .item-wrapper {
		height: 300px;
	}

	.projects-holder .item-wrapper .project-texts {
		right: -7%;
	}
	
}

@media (max-width: 1024px) {
	.projects-holder .item-wrapper .project-texts {
		right: -8%;
	}
	
}

@media (max-width: 768px) {
	.projects-holder {
		padding: 20px 0px 200px 0px;
	}

	.projects-holder .item-wrapper .project-texts {
		right: -9%;
	}

	.projects-holder .item-wrapper {
		margin-bottom: 50px;
	}
	
}

@media (max-width: 700px) {
	.projects-holder {
		padding: 20px 0px 0px 0px;
	}

	.projects-holder .item-wrapper {
		width: 95%;
	}

	.projects-holder .item-wrapper:nth-child(2n) {
		transform: translateY(0);
	}

	.projects-holder .item-wrapper .project-texts {
		right: -8%;
	}

	.projects-holder .item-wrapper:nth-child(2n):last-child {
		margin-bottom: 50px;
	}
	
}

@media (max-width: 425px) {

	.projects-holder .item-wrapper .project-texts {
		right: -8%;
	}
	
}

@media (max-width: 350px) {

	.projects-holder {
		padding: 0px;
	}

	.projects-holder .item-wrapper .project-texts {
		right: -9%;
	}
}