body {
	background-color: #1f0800;
}

.row {
	display: flex;
	flex-wrap: wrap;
}

.row .col {
	flex: 1;
}

.portfolio-layout {
	display: flex;
	flex-wrap: wrap;
}

.left {
	width: 35%;
	background-color: rgba(125, 193, 45, 0.8);
	background-image: url(/ui/images/animation/left-bg.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
	box-shadow: 0px 0px 30px 0px #000;
	min-height: 100vh;
}

.left .header img {
	width: 100%;
}

.left .info {
	color: #fff;
	flex: 1;
    box-sizing: border-box;
    padding: 18px 34px;
}

.left .info .title {
    font-size: 3em;
    margin: 0;
    font-weight: 100;
}

.left .services {
	background-color: rgba(0, 0, 0, 0.4);
    padding: 18px 0;
    box-sizing: border-box;
}

.left .services h3 {
    width: 100%;
    color: #fff;
    margin: 0 0 5px;
    padding: 0 34px;
    font-weight: 400;
}

.left .services ul {
	color: #fff;
	padding: 0 34px;
	margin: 0;
	list-style: none;
}

.left .services ul li {
	display: flex;
}

.left .services ul li:before {
	content: "-";
	margin-right: 4px;
}

.left .services .divider {
	width: 3px;
	min-width: 3px;
	background-color: #f4f774;
	height: calc(100%);
}

.right {
	width: 65%;
	color: #fde3a8;
	overflow: hidden;
}

#portfolio-carousel {
	position: relative;
}

.right .item {
    box-sizing: border-box;
    padding: 50px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.right .container {
	width: 78%;
	margin: 0 auto;
	box-sizing: border-box;
}

.right .info {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    box-sizing: border-box;
    align-items: flex-start;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.right .info h2 {
    font-size: 2em;
    font-weight: 100;
    margin: 0;
}

.right .image-section img {
    width: 76%;
    box-sizing: border-box;
    margin: 0 auto;
}

.right .image-section video {
    width: 76%;
    display: block;
    box-sizing: border-box;
    margin: 0 auto;
    background: url(/ui/images/animation/mac.png);
    padding: 2.45% 8% 4.6% 8%;
    background-size: 100% 100%;
}

.right .info .image-wrapper {
	width: 28%;
    padding: 10px;
    box-sizing: border-box;
}

.right .info .image-wrapper img {
	width: 100%;
}

.right .info .description {
    width: 72%;
    padding-left: 25px;
    box-sizing: border-box;
}

.right .owl-stage-outer {
	position: relative;
}

.right .owl-dots {
	display: none;
}

.right .owl-nav {
	position: fixed;
    top: 50%;
    width: 65%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    pointer-events: none;
}

.right .owl-nav button {
	outline: none;
	pointer-events: all;
}



.right .owl-nav button span {
	font-size: 6em;
	padding: 25px;
}

@media (max-width: 992px) {
	.left {
		width: 100%;
	}

	.right .owl-nav {
		width: 100%;
	}

	.right .owl-nav button span {
		padding: 15px;
	}

	.right {
		width: 100%;
	}

	.right .image-section img {
		width: 100%;
	}

	.right .info {
		text-align: center;
	}

	.right .info .image-wrapper {
		display: none;
	}

	.right .info .description {
		width: 100%;
		padding: 0;
	}

	.row {
		flex-direction: column;
	}
}