body {
	background-color: #09001b;
}

.row {
	display: flex;
}

.row .col {
	flex: 1;
}

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

.left {
	width: 35%;
	background-color: #210065;
	/*background-image: url(/ui/images/web/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 .technologies {
	background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 14px;
    box-sizing: border-box;
    align-items: center;
}

.left .technologies .col {
	padding: 14px 14px;
}

.left .technologies .col img {
	width: 100%;
}

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

#portfolio-carousel {
	position: relative;
}

.right .item {
    box-sizing: border-box;
    padding: 110px 25px 60px;
    min-height: 100vh;
}

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

.right .info {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
	box-sizing: border-box;
	align-items: center;
}

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

.image-slide {
	position: relative;
	margin-bottom: 70px;
}

.image-slide .image {
	height: 282px;
	position: relative;
}

.image-slide .image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.image-slide .image:hover .overlay {
	background: rgba(0, 0, 0, 0.5);
}

.image-slide .image .overlay svg {
	height: 60px;
    width: 60px;
    color: #fff;
    filter: drop-shadow(0px 0px 2px #75008c);
}

.image-slide .image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: 100%;
}

.image-slide .owl-nav {
    position: absolute !important;
    height: calc(100% + 2px) !important;
    width: 100% !important;
}

.image-slide .owl-prev, 
.image-slide .owl-next {
    background-color: #1a001f !important;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.image-slide .owl-prev:hover, 
.image-slide .owl-next:hover {
	opacity: 0.9;
}

.image-slide .owl-nav button span {
    font-size: 3em !important;
    padding: 16px !important;
}

.image-slide .owl-dots {
	display: block !important;
	margin-top: 18px;
	position: absolute;
}

.image-slide .owl-dot.active, .image-slide .owl-dot:hover {
    opacity: 1;
}

.image-slide .owl-dot {
    outline: none;
    opacity: 0.3;
    margin: 0 8px 0 0;
    transition: opacity 0.3s;
}

.image-slide .owl-dot span {
	display: block;
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.right .info .description {
    width: 100%;
    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 .image-wrapper {
		display: none;
	}

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

	.image-slide .owl-nav {
		opacity: 0;
		pointer-events: none;
	}

	.row {
		flex-direction: column;
	}
}