/*
Template Name    : Katarsis - One Page Portfolio Bootstrap 4
Version          : 1.0.0
Author           : SVYYAT
Author URI       : https://themeforest.net/user/svyyat
Created.         : July 2019
File Description : Main SASS file of the template

// ------------------------------------------ //
//              Table Of Content              //
// ------------------------------------------ //

1. Basic Style
2. Preloader
3. Owl Carousel
4. Logo
5. Menu Button
6. Navbar
7. Home
8. About
9. Services
10. Portfolio
11. Client
12. Blog
13. Blog View
14. Contact
15. Footer
16. Responsive
*/



@import url("https://fonts.googleapis.com/css?family=Poppins:400,600,700&display=swap");



/* ========== Start Basic Style ========== */

* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale; }

*:focus {
	outline: 0 !important;
	-webkit-box-shadow: none !important;
					box-shadow: none !important; }

* a:hover {
	text-decoration: none; }

html {
	margin: 0 !important; }

body {
	font-family: 'Poppins', sans-serif;
	font-size: .875rem;
	font-weight: 400;
	min-width: 320px;
	overflow-x: hidden;
	overflow-y: scroll;
	position: relative;
	padding: 0;
	margin: 0; }

section {
	position: relative;
	padding: 6rem 0; }

section .title-box {
	display: inline-block;
	margin-bottom: 1rem;
	max-width: 380px; }

section .title-box h2 {
	font-size: 3rem;
	font-weight: 700; }

section .title-box h4 {
	font-weight: 600;
	margin-top: 1.438rem;
	margin-bottom: .875rem; }

section .title-box p {
	margin: 0; }

#about:before, #services:before, #portfolio:before, #client:before, #blog:before, #contact:before {
	content: '';
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: -2; }

/* ========== End Basic Style ========== */
/* ========== Start Preloader ========== */

.preloader {
	position: fixed;
	overflow: hidden;
	height: 100vh;
	width: 100%;
	z-index: 3000; }

.preloader p {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 0;
	padding: 25rem 50rem;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			-ms-transform: translate(-50%, -50%);
					transform: translate(-50%, -50%);
	z-index: 4000; }

.welcome {
	position: fixed;
	height: 100vh;
	width: 100%;
	z-index: 2000; }

.welcome-2 {
	position: fixed;
	width: 100%;
	height: 100vh;
	z-index: 1090; }

/* ========== End Preloader ========== */
/* ========== Start Owl Carousel ========== */

section .owl-carousel .owl-nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
			-ms-flex-pack: justify;
					justify-content: space-between;
	height: 28px;
	opacity: 1;
	margin-top: 2rem;
	-webkit-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
	-o-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
	transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1); }

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
	border-radius: 3px;
	position: relative;
	height: 28px;
	width: 28px;
	-webkit-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
	-o-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
	transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1); }

.owl-carousel .owl-nav button.owl-prev {
	left: 0; }

.owl-carousel .owl-nav button.owl-next {
	right: 0; }

.owl-carousel .owl-nav button span {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			-ms-transform: translate(-50%, -50%);
					transform: translate(-50%, -50%);
	-webkit-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
	-o-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
	transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1); }

/* ========== End Owl Carousel ========== */
/* ========== Start Logo ========== */

.logo {
	position: fixed;
	top: 2.5rem;
	left: 2.5rem;
	z-index: 3; }

.logo .brand {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0; }

/* ========== End Logo ========== */
/* ========== Start Menu Button ========== */

.menu-burger {
	cursor: pointer;
	position: fixed;
	top: 2.5rem;
	right: 2.5rem;
	height: 20px;
	width: 20px;
	z-index: 3; }

.menu-burger span {
	display: block;
	position: relative;
	height: 2px;
	width: 100%;
	-webkit-transform: rotate(0);
			-ms-transform: rotate(0);
					transform: rotate(0);
	-webkit-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
	-o-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
	transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1); }

.menu-burger span:nth-child(1) {
	top: 5px; }

.menu-burger span:nth-child(2) {
	top: 12px; }

.menu-burger.open span:nth-child(1) {
	top: 9px;
	-webkit-transform: rotate(45deg);
			-ms-transform: rotate(45deg);
					transform: rotate(45deg); }

.menu-burger.open span:nth-child(2) {
	top: 7px;
	-webkit-transform: rotate(-45deg);
			-ms-transform: rotate(-45deg);
					transform: rotate(-45deg); }

/* ========== End Menu Button ========== */
/* ========== Start Navbar ========== */

.navbar-menu {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: 0%;
	z-index: 2;
	-webkit-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
	-o-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
	transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1); }

.navbar-menu.open {
	width: 400px; }

.navbar-nav {
	position: absolute;
	top: 50%;
	right: 7.5rem;
	-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
					transform: translateY(-50%); }

.navbar-nav .nav-item:not(:last-child) {
	margin-bottom: 1rem; }

.navbar-nav .nav-link {
	font-size: 2rem;
	font-weight: 700;
	padding: 0;
	-webkit-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
	-o-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
	transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1); }

.navbar-footer {
	position: absolute;
	left: 2.5rem;
	bottom: 2.5rem;
	right: 2.5rem;
	z-index: 2; }

.navbar-footer__copyright {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	float: right; }

.navbar-footer__copyright p {
	font-weight: 600;
	margin-bottom: 0; }

/* ========== End Navbar ========== */
/* ========== Start Home ========== */

#home {
	background-color: #000;
	overflow: hidden;
	padding: 0 !important;
	height: 100vh;
	width: 100%; }

#home video{
	width: 100%;
	height: auto;
}

@media (max-width: 1165px) {
	#home video {
		height: 100% !important;
		width: auto !important;
	}
}
	.picture:before {
		content: '';
		/*background-image: url("../img/home.jpg");*/
		background-image: url("../img/tint.png");
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		opacity: .75;
		position: absolute;
		height: 100%;
		width: 100%;
	}

	.video:before {
		content: '';
		background-color: #000;
		opacity: .5;
		position: absolute;
		height: 100vh;
		width: 100%;
	}

	.display-table {
		display: table;
		position: absolute;
		height: 100%;
		width: 100%;
	}

	.display-table-cell {
		display: table-cell;
		vertical-align: middle;
	}

	.home-title {
		display: block;
		float: right;
	}

		.home-title h1 {
			font-size: 5rem;
			font-weight: 700;
		}

		.home-title p {
			font-size: 8pt;
			letter-spacing: 2px;
			/*font-weight: 600;*/
			margin-bottom: 0;
		}

	/* ========== End Home ========== */
	/* ========== Start About ========== */

	.about-text {
		margin-top: 2rem;
		padding-right: 3rem;
	}

		.about-text p {
			margin-bottom: 0;
		}

	.about-social {
		margin-top: 2rem;
	}

		.about-social p {
			display: inline-block;
			margin-bottom: 0;
			margin-right: 2rem;
		}

		.about-social a {
			font-weight: 600;
			text-decoration: none;
			-webkit-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
			-o-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
			transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
		}

			.about-social a:not(:last-child) {
				margin-right: 1rem;
			}

	.about-skill {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		margin-top: 2rem;
	}

	.about-skill__chart {
		margin-right: 1.5rem;
		position: relative;
		height: 71px;
		width: 71px;
	}

		.about-skill__chart .about-skill__counter {
			font-size: 1rem;
			font-weight: 600;
			margin-bottom: 0;
			position: absolute;
			top: 50%;
			left: 50%;
			-webkit-transform: translate(-50%, -50%);
			-ms-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
		}

	.about-skill p {
		margin-bottom: 0;
	}

	/* ========== End About ========== */
	/* ========== Start Services ========== */

	.services-content {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	#services .services-box {
		margin-top: 2rem;
	}

	.services-box h4 {
		font-weight: 600;
		margin-bottom: 1rem;
	}

	.services-box p {
		margin-bottom: 0;
	}

	/* ========== End Services ========== */
	/* ========== Start Portfolio ========== */

	.portfolio-filter {
		margin-top: 2rem;
	}

		.portfolio-filter button {
			font-weight: 600;
			background-color: transparent;
			border: none;
			cursor: pointer;
			padding: 0;
			-webkit-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
			-o-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
			transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
		}

			.portfolio-filter button:not(:last-child) {
				margin-right: 2.5rem;
			}

	#content .col-lg-3 {
		margin-top: 2rem;
	}

	.portfolio-content {
		position: relative;
		overflow: hidden;
	}

	.portfolio-content__image {
		height: auto;
		width: 100%;
	}

		.portfolio-content__image img {
			width: 100%;
		}

	.portfolio-content__info {
		padding: 2rem 1.5rem;
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		-webkit-transform: translateX(-101%);
		-ms-transform: translateX(-101%);
		transform: translateX(-101%);
		-webkit-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
		-o-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
		transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
		z-index: 1;
	}

	.portfolio-content:hover .portfolio-content__info {
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(0%);
	}

	.portfolio-content__info h6 {
		font-size: 1rem;
		font-weight: 600;
		opacity: 0;
		-webkit-transform: translateY(25px);
		-ms-transform: translateY(25px);
		transform: translateY(25px);
		-webkit-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
		-o-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
		transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
		-webkit-transition-delay: .35s;
		-o-transition-delay: .35s;
		transition-delay: .35s;
	}

	.portfolio-content:hover .portfolio-content__info h6 {
		opacity: 1;
		-webkit-transform: translateY(0%);
		-ms-transform: translateY(0%);
		transform: translateY(0%);
	}

	.portfolio-content__info p {
		opacity: 0;
		margin-bottom: 0;
		-webkit-transform: translateY(25px);
		-ms-transform: translateY(25px);
		transform: translateY(25px);
		-webkit-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
		-o-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
		transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
		-webkit-transition-delay: .45s;
		-o-transition-delay: .45s;
		transition-delay: .45s;
	}

	.portfolio-content:hover .portfolio-content__info p {
		opacity: 1;
		-webkit-transform: translateY(0%);
		-ms-transform: translateY(0%);
		transform: translateY(0%);
	}

	.portfolio-content__info a {
		display: block;
		border-radius: 3px;
		opacity: 0;
		position: absolute;
		bottom: 2rem;
		right: 1.5rem;
		height: 28px;
		width: 28px;
		-webkit-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
		-o-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
		transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
		-webkit-transition-delay: .35s;
		-o-transition-delay: .35s;
		transition-delay: .35s;
	}

	.portfolio-content:hover .portfolio-content__info a {
		opacity: 1;
	}

	.portfolio-content__info a span {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		-webkit-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
		-o-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
		transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
	}

	.mfp-fade.mfp-bg {
		opacity: 0;
		-webkit-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
		-o-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
		transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
	}

		.mfp-fade.mfp-bg.mfp-ready {
			opacity: 0.8;
		}

		.mfp-fade.mfp-bg.mfp-removing {
			opacity: 0;
		}

	.mfp-fade.mfp-wrap .mfp-content {
		opacity: 0;
		-webkit-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
		-o-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
		transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
	}

	.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
		opacity: 1;
	}

	.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
		opacity: 0;
	}

	/* ========== End Portfolio ========== */
	/* ========== Start Client ========== */

	.client-content {
		margin-top: 2rem;
	}

	.client-content__name {
		margin-bottom: .25rem;
	}

		.client-content__name h6 {
			font-weight: 600;
			margin-bottom: 0;
		}

	.client-content__proff {
		margin-bottom: 1rem;
	}

		.client-content__proff p {
			font-weight: 600;
			margin-bottom: 0;
		}

	.client-content__text p {
		margin-bottom: 0;
	}

	/* ========== End Client ========== */
	/* ========== Start Blog ========== */

	.blog-content {
		margin-top: 2rem;
	}

	.blog-content__image {
		margin-bottom: 2rem;
	}

	.blog-content__title {
		margin-bottom: 1rem;
	}

		.blog-content__title h4 {
			font-weight: 600;
			margin-bottom: 0;
			text-transform: capitalize;
		}

	.blog-content__text {
		margin-bottom: 1rem;
	}

		.blog-content__text p {
			margin-bottom: 0;
		}

	.blog-content__read a {
		font-weight: 600;
		-webkit-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
		-o-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
		transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
	}

	/* ========== End Blog ========== */
	/* ========== Start Blog View ========== */

	.blog-image {
		background-color: #000;
		position: relative;
		padding: 0 !important;
		height: 100vh;
		width: 100%;
	}

		.blog-image:before {
			content: '';
			background-image: url("../img/blog/1.jpg");
			background-position: center;
			background-repeat: no-repeat;
			background-size: cover;
			opacity: .5;
			position: absolute;
			height: 100%;
			width: 100%;
		}

		.blog-image h1 {
			font-size: 5rem;
			font-weight: 700;
			margin-bottom: 0;
			color: #fff;
			text-transform: capitalize;
		}

	.blog-text {
		border-bottom: 1px solid;
	}

		.blog-text h2 {
			font-weight: 700;
			margin-bottom: 1.5rem;
		}

	.blog-text, .blog-comments {
		margin-bottom: 3rem;
	}

	.blog-comments__client {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		margin-bottom: 1.5rem;
	}

		.blog-comments__client.add {
			margin-left: 2rem;
		}

	.client-img img {
		border-radius: 50%;
		width: 50px;
	}

	.client-comment {
		margin-left: 1rem;
	}

		.client-comment h6 {
			font-weight: 600;
		}

		.client-comment p {
			margin-bottom: .5rem;
		}

		.client-comment a {
			-webkit-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
			-o-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
			transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
		}

	.blog-comments h4, .blog-form h4 {
		font-weight: 600;
		margin-bottom: 2rem;
	}

	/* ========== End Blog View ========== */
	/* ========== Start Contact ========== */

	.contact-info {
		margin-top: 2rem;
	}

		.contact-info p.info {
			font-weight: 400;
			margin-bottom: .5rem;
		}

		.contact-info p {
			font-size: .875rem;
			font-weight: 600;
			margin-bottom: 1.5rem;
		}

	form {
		margin-top: 2rem;
	}

		form textarea {
			min-height: 64px;
		}

		form .form-group {
			margin-bottom: 1rem;
		}

		form .form-control {
			font-size: .875rem;
			font-weight: 400;
			background-color: transparent;
			border: none;
			border-radius: 0;
			padding-top: 0;
			padding-right: 0;
			padding-bottom: .5rem;
			padding-left: 0;
			height: auto;
		}

			form .form-control:focus {
				background-color: transparent;
				-webkit-box-shadow: none;
				box-shadow: none;
			}

		form .btn {
			font-size: .875rem;
			font-weight: 600;
			border: none;
			border-radius: 0;
			padding: 0;
			margin-bottom: 0;
			-webkit-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
			-o-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
			transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
		}

	/* ========== End Contact ========== */
	/* ========== Start Footer ========== */

	footer {
		padding: 1.5rem 0;
	}

	.top a {
		-webkit-transition: all .35s ease;
		-o-transition: all .35s ease;
		transition: all .35s ease;
	}

	.footer-content {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.footer-content__social a {
		font-weight: 600;
		text-decoration: none;
		-webkit-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
		-o-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
		transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
	}

		.footer-content__social a:not(:last-child) {
			margin-right: 1.5rem;
		}

	.footer-content__copyright p {
		margin-bottom: 0;
	}

	/* ========== End Footer ========== */
	/* ========== Start Responsive ========== */

	@media (max-width: 575.98px) {
		section .title-box h2 {
			font-size: 2.5rem;
		}

		.logo {
			top: 2rem;
			left: 2rem;
		}

		.menu-burger {
			top: 2rem;
			right: 2rem;
		}

		.navbar-nav .nav-link {
			font-size: 1.25rem !important;
		}

		.home-title h1 {
			font-size: 3.5rem;
		}

		.about-skill {
			-webkit-box-orient: vertical;
			-webkit-box-direction: normal;
			-webkit-flex-direction: column;
			-ms-flex-direction: column;
			flex-direction: column;
		}

		.about-skill__chart {
			margin-right: 0;
			margin-bottom: 1rem;
		}

		.portfolio-filter {
			text-align: center;
		}

			.portfolio-filter button:nth-child(1) {
				margin-bottom: .5rem;
				margin-right: 0;
				padding: 0 1rem;
			}

			.portfolio-filter button:nth-child(2) {
				margin-bottom: .5rem;
				margin-right: 0;
				padding: 0 1rem;
			}

			.portfolio-filter button:nth-child(3) {
				margin-bottom: .5rem;
				margin-right: 0;
				padding: 0 1rem;
			}

			.portfolio-filter button:nth-child(4) {
				margin-right: 0;
				padding: 0 1rem;
			}

			.portfolio-filter button:nth-child(5) {
				padding: 0 1rem;
			}

		.blog-image h1 {
			font-size: 2.5rem !important;
		}

		footer {
			padding: 1rem 0;
		}

		.footer-content {
			-webkit-box-orient: vertical;
			-webkit-box-direction: normal;
			-webkit-flex-direction: column;
			-ms-flex-direction: column;
			flex-direction: column;
			text-align: center;
		}

		.footer-content__social {
			margin-bottom: .5rem;
		}
	}

	@media (max-width: 991.98px) {
		section .title-box h4 {
			margin-top: 0;
			margin-bottom: .5rem;
		}

		.navbar-menu.open {
			width: 50%;
		}

		.navbar-nav {
			right: auto;
			left: 50%;
			-webkit-transform: translate(-50%, -50%);
			-ms-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
		}

			.navbar-nav .nav-item:not(:last-child) {
				margin-bottom: .5rem;
			}

			.navbar-nav .nav-link {
				font-size: 1.5rem;
			}

		.blog-image h1 {
			font-size: 3.5rem;
		}

		.about-social {
			margin-bottom: 4rem;
		}

		.about-text {
			padding-right: 0;
		}

		.contact-info {
			margin-bottom: 4rem;
		}
	}

	/* ========== End Responsive ========== */