/* --- Components --- */
:root {
	--main-blue: #0095cc;
	--main-green: #00ad00;
	--main-black: #212121;
	--main-grey: #95989A;
}

a {
	color: var(--main-blue) !important;
}

p {
	font-size: 1.2em;
}

.full-width {
	width: 100%;
}

.banner-margin {
	margin-top: 180px;
}

.button {
	border: 1px solid var(--main-blue);
	color: var(--main-blue) !important;
	padding: 15px 30px;
	display: inline-block;
	width: fit-content;
	color: var(--main-blue);
	-webkit-transition: 0.25s;
	transition: 0.25s;
}

.button:hover,
.button:focus {
	box-shadow: inset 0 -3.5em 0 0 var(--main-blue);
	border-color: var(--main-blue);
	color: #fff !important;
	text-decoration: none;
}

.up:hover,
.up:focus {
	box-shadow: inset 0 -3.5em 0 0 var(--main-blue);
}

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

.dot {
	width: 12px;
	height: 12px;
	border-radius: 6px;
	background: var(--main-green);
	display: flex;
	margin: 0 3px;
}

.align-right {
	justify-content: flex-start;
}

#spanBar {
	width: 60%;
	height: 10px;
	background-color: var(--main-blue);
}

.section-space {
	width: 100%;
	height: 10px;
}

.screen-frame {
	border: 1px solid #95989A;
	border-radius: 8px;
}

.top-image {
	margin-top: 15px;
}

.switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 25px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked+.slider {
	background-color: #2196F3;
}

input:focus+.slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

.grey-box {
	background-color: #EBEDEE;
	padding: 32px 0px;
}

.img-treatment {
	border-radius: 8px;
	-webkit-box-shadow: 4px 4px 20px -2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 4px 4px 20px -2px rgba(0, 0, 0, 0.1);
	box-shadow: 4px 4px 20px -2px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 767px) and (max-width: 991px) {
	.section-space {
		height: 0px;
	}

	.top-image {
		margin-top: -35px;
	}
}

@media only screen and (min-width: 992px) {
	.section-space {
		height: 100px;
	}

	.align-right {
		justify-content: flex-end;
	}

	.top-image {
		margin-top: -35px;
	}
}

/* --- Banner --- */
.header {
	background-size: cover;
	width: 100%;
	padding-bottom: 20px;
	position: relative;
}

.homepage {
	background: url("../images/video-placement.jpg");
	background-size: cover;
}

.listflo {
	background: url("../images/listflo/lists-page.jpg");
	height: 400px;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.listflo:after {
	content: '';
	background: rgba(0, 0, 0, 0.6);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.montajj {
	background: url("../images/montajj/montajj-dashboard.jpg");
	height: 400px;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.montajj:after {
	content: '';
	background: rgba(0, 0, 0, 0.6);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.project-banner {
	height: 400px;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.project-banner:after {
	content: '';
	background: rgba(0, 0, 0, 0.6);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.freshbooks {
	background: url("../images/freshbooks/freshbooks-dashboard.jpg");
	height: 400px;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.freshbooks:after {
	content: '';
	background: rgba(0, 0, 0, 0.6);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.home-link {
	z-index: 999;
	position: relative;
}

.logo {
	padding: 10px 20px;
	width: 25%;
	background: rgba(255, 255, 255, .5);
	display: inline-block;
	vertical-align: top;
	min-width: 168px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	backdrop-filter: blur(10px);
}

.logo img {
	width: 100%;
}

.billboard {
	background: rgba(255, 255, 255, 0.7);
	padding: 15px;
	font-family: sans-serif;
	font-size: 20px;
	color: #222222;
	border-radius: 10px;
}

.billboard h1 {
	font-size: 2.6rem;
}

@media only screen and (min-width: 768px) {
	.header {
		padding-bottom: 70px;
	}
}

/* --- Section Headers --- */
.header-wrap {
	display: flex;
	flex-direction: row;
}

.productProd {
	font-family: sans-serif;
	font-size: 50px;
	color: var(--main-blue);
	font-weight: bold;
	margin: 0;
	line-height: 90px;
	display: flex;
	vertical-align: top;
}

.productDesign {
	color: var(--main-green);
	font-size: 12px;
	-ms-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	margin: 13px;
	display: flex;
}

.productAbout {
	font-family: sans-serif;
	font-size: 50px;
	color: var(--main-green);
	font-weight: bold;
	margin: 0;
	line-height: 90px;
	display: flex;
	vertical-align: top;
}

.productMe {
	color: var(--main-blue);
	font-size: 27px;
	-ms-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	margin: 13px;
	display: flex;
}

@media only screen and (min-width: 768px) {
	.productProd {
		font-size: 100px;
	}

	.productDesign {
		font-size: 20px;
		margin: 5px;
	}
}

/* --- Project Section  Style --- */
.message-wrap {
	background: #F7F7F7;
	margin: 16px 0px;
	padding: 1rem;
}

.product-slider-wrapper {
	width: 100%;
	background: var(--main-black);
	border-radius: 10px;
	overflow: hidden;
	padding: 5px;
}

.wrap-left {
	margin-right: auto;
	padding-right: auto;
}

.wrap-right {
	margin-left: auto;
	padding-left: auto;
}

.product-Slider {
	position: relative;
	margin: auto;
	border-radius: 5px;
	overflow: hidden;
}

.mySlides {
	display: none;
}

.fadeSlide {
	-webkit-animation-name: fader;
	-webkit-animation-duration: 1.5s;
	animation-name: fader;
	animation-duration: 1.5s;
}

@-webkit-keyframes fader {
	from {
		opacity: .4
	}

	to {
		opacity: 1
	}
}

@keyframes fader {
	from {
		opacity: .4
	}

	to {
		opacity: 1
	}
}

.product-slider-nav {
	display: flex;
	justify-content: space-between;
	padding: 4px 16px;
	align-items: baseline;
}

.product-slider-nav p {
	width: 80%;
}

.product-slider-nav-controls {
	padding: 5px;
}

.product-slider-nav-controls>.prev {
	margin-right: 24px;
}

@media only screen and (min-width: 767px) and (max-width: 991px) {}

@media only screen and (min-width: 991px) {
	.wrap-left {
		margin-right: -30px;
		padding-right: 30px;
	}

	.wrap-right {
		margin-left: -30px;
		padding-left: 30px;
	}

	.product-slider-nav-controls>.prev {
		margin-right: 16px;
	}
}

/* --- About Section  Style --- */
.resume-link {
	color: var(--main-blue);
}

.profile-mug {
	margin-top: -30px;
}

.list-item {
	margin: 5px 0;
}

/* --- Contact Section  Style --- */
.social-link {
	display: flex;
	flex-direction: column;
	margin: 24px 0;
	color: var(--main-blue);
}

.envelop {
	display: flex;
	float: right;
	max-width: 250px;
}

/* --- Case Study Page --- */
.quick-work-link {
	background: #F7F7F7;
	border-radius: 10px;
	overflow: hidden;
}

.quick-work-link img {
	border: 1px solid #dbddde;
	border-radius: 10px;
}

.quick-work-link p {
	margin: 3px 10px;
}

.daylight {
	display: block;
}

.nighttime {
	display: none;
}

/* --- Night Shift --- */
.nightshift-toggle {
	position: absolute;
	top: 50px;
	color: #fff;
	right: 0px;
	display: flex;
	align-items: baseline;
	margin: 10px 20px;
	z-index: 999;
}

@media only screen and (min-width: 991px) {
	.nightshift-toggle {
		top: 0px;
		right: 70px;
	}
}

.nightshift-toggle p {
	margin-left: 8px;
	font-size: .9rem;
}

.nightshift {
	background-color: #2d2d2d;
}

.nightshift p,
.nightshift li,
.nightshift h4,
.nightshift h3,
.nightshift h2 {
	color: #ffffff;
}

.nightshift .message-wrap {
	background-color: #181818;
}

.nightshift .billboard {
	background-color: rgba(0, 0, 0, 0.6);
}

.nightshift .billboard h1 {
	color: #fff;
}

.nightshift .daylight {
	display: none;
}

.nightshift .nighttime {
	display: block;
}

.nightshift .project-template h1,
.nightshift .project-template h2,
.nightshift .project-template h3,
.nightshift .project-template h4,
.nightshift .project-template h5,
.nightshift .project-template h6 {
	color: #fff;
}

.nightshift .project-template .quick-work-link {
	background: #000;
}

.nightshift .case-card {
	background-color: #2e3946;
}

/* --- Navigation Menu --- */
.hamContainer {
	width: 20px;
	height: 20px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

#line1,
#line2,
#line3,
#line4 {
	background: #fff;
	height: 3px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.hamLine1 {
	opacity: 1.0;
	margin-top: 8.25%;
}

.hamLine1x {
	opacity: 0;
	margin-top: 8.25%;
	margin-left: 100%;
}

.hamLine2 {
	width: 100%;
	opacity: 1.0;
	margin: 16.5% 0;
}

.hamLine2x {
	width: 100%;
	opacity: 1.0;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	margin: 16.5% 0;
}

.hamLine3 {
	width: 100%;
	opacity: 1.0;
	margin: 16.5% 0;
	position: absolute;
	top: 24.75%;
}

.hamLine3x {
	width: 100%;
	opacity: 1.0;
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	margin: 16.5% 0;
	position: absolute;
	top: 24.75%;
}

.hamLine4 {
	opacity: 1.0;
	margin-bottom: 8.25%;
}

.hamLine4x {
	opacity: 0;
	margin-bottom: 8.25%;
	margin-right: 100%;
}

.hiddenBlock {
	display: none;
}

.unhiddenBlock {
	display: block;
}

.menuContainer {
	margin: 13px 20px 0 20px;
	width: 24px;
	height: 20px;
	z-index: 9999;
	position: absolute;
	top: 0;
	right: 10px;
}

@media (max-width: 279px) {
	.menuContainer {
		margin: 31px 20px 15px 20px;
	}
}

#navigationMenu {
	height: 100vh;
	font-size: 2em;
	position: fixed;
	background: #000000;
	width: 100vw;
	z-index: 9999;
}

#navigationMenu a {
	color: #ffffff;
}

#navigationMenu a:hover {
	color: #ffffff;
}

.navSettings {
	height: 32px;
	width: 100%;
	margin: 20px 0px 0 20px;
	color: #fff;
}

.navSettings.project-link {
	margin-left: 50px;
}

.case-card {
	display: flex;
	flex-direction: column;
	align-content: end;
	background: #E8F0FA;
	padding: 24px 24px 0 24px;
	border-radius: 16px;
	flex-wrap: wrap-reverse;
	margin: 16px;
}

.case-card-image {
	width: 50%;
	display: flex;
}