/*
 * Valt Hent - Fluximi One (http://www.kukola.fi/valthent)
 * Copyright 2015-2017 Valtteri Hentinen. All rights reserved.
 * 
 */


/* ---------------------------------- Global Rules ---------------------------------- */
html,
body {
    height: 100%;
	font-family: 'Raleway', sans-serif;
	overflow-x: hidden;
}
/* Default background color on sections */
section {
	background-color: #FDFDFD;
}
/* Cool color transitions on links */
a {
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

/* I don't like the numbers in Raleway */
.number-font {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#scroll-progress {
  position: fixed;
  top: 0;
  width: 0%;
  height: 4px;
  background: #20A88D;
  z-index: 10000;
}

/* ---------------------------------- Navigation ---------------------------------- */
.navbar-default {
	padding-top: 14px;
	padding-bottom: 14px;
	background: linear-gradient(180deg, rgba(7, 11, 17, 0.86) 0%, rgba(7, 11, 17, 0.48) 100%);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}
.navbar-default .navbar-nav > li > a {
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	color: #FFF;
	outline: 0;
}
.navbar-default .navbar-nav > li > a:visited {
	color: #FFF;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
	color: #20A88D;
}
.navbar-default .container-fluid {
	padding-left: 28px;
	padding-right: 28px;
}
.navbar-default .nav-link {
	position: relative;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
	padding-left: 0.95rem !important;
	padding-right: 0.95rem !important;
}
.navbar-default .nav-link::after {
	content: "";
	position: absolute;
	left: 0.95rem;
	right: 0.95rem;
	bottom: 0.35rem;
	height: 2px;
	background: #20A88D;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.25s ease;
}
.navbar-default .nav-link:hover::after,
.navbar-default .nav-link:focus::after {
	transform: scaleX(1);
}
.navbar-default .navbar-nav > .active > a:hover {
	color: #20A88D;
	background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus {
	color: #20A88D;
	background-color: transparent;
}
.navbar-default .navbar-toggler {
	border-color: rgba(255, 255, 255, 0.35);
	padding: 0.5rem 0.65rem;
	box-shadow: none;
}
.navbar-default .navbar-toggler:focus {
	box-shadow: 0 0 0 0.18rem rgba(32, 168, 141, 0.25);
}
.navbar-default .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navigation changes after scrolled down */
.navbar-default.scrolled {
	background: rgba(255,255,255,0.92);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	-webkit-box-shadow: 0px 8px 15px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 8px 15px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 8px 15px 0px rgba(0,0,0,0.15);
}
.navbar-default.scrolled .navbar-brand {
	font-size: 30px;
	color: #000;
}
.navbar-default.scrolled .navbar-nav > li > a {
	color: #000;
}
.navbar-default.scrolled .navbar-nav > .active > a,
.navbar-default.scrolled .navbar-nav > .active > a:hover,
.navbar-default.scrolled .navbar-nav > .active > a:focus {
	color: #20A88D;
	background-color: transparent;
}
.navbar-default.scrolled .navbar-brand span {
	color: #111;
}
.navbar-default.scrolled .navbar-toggler {
	border-color: rgba(0, 0, 0, 0.18);
}
.navbar-default.scrolled .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2817,17,17,0.88%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* logo/brand styling */
.navbar-default .navbar-brand {
	font-size: 35px;
	font-weight: bold;
	color: #FFF;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
	color: #20A88D;
}
.navbar-default .navbar-brand span {
	font-size: 18px;
	font-weight: 400;
	color: #FFF;
}

/* Dropdown menu styles */
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}
.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}
.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}
.dropdown-submenu.pull-left {
    float: none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}


/* ---------------------------------- Header Section ---------------------------------- */
header {
	height: 100vh;
	min-height: 100vh;
	padding-bottom: 100px;
	overflow: hidden;
	background-color: transparent;
}
header .container {
	position: relative;
}
/* Fullscreen background video */
video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
	background-color: #000;
	transition: 1s opacity;
}
#header-container {
	z-index: 300;
}
#vid-overlay {
	position: absolute;
	top: 0;
	background-image: url(../img/overlay.png);
	background-repeat: repeat;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
	z-index: 200;
}
.h-text {
	position: absolute;
	top: 45%;
	width: 100%;
	color: #FFF;
	z-index: 600;
}
.h-text h1 {
	font-size: 70px;
	text-transform: uppercase;
	font-weight: bold;
}
.h-text h2 {
	font-size: 24px;
}


/* Arrow link */
.arrow-link {
	position:absolute;
	top: 90%;
	width: 100%;
	color: #FFF;
	outline: 0;
	text-align: center;
	z-index: 9999;
}
.arrow-link:hover,
.arrow-link:focus {
	color: #FFF;
}

@-webkit-keyframes levitate {
	0%   { top: 90%; }
	50% { top: 94%; }
	100% { top: 90%; }
}
@-moz-keyframes levitate {
	0%   { top: 90%; }
	50% { top: 94%; }
	100% { top: 90%; }
}
@-o-keyframes levitate {
	0%   { top: 90%; }
	50% { top: 94%; }
	100% { top: 90%; }
}
@keyframes levitate {
	0%   { top: 90%; }
	50% { top: 94%; }
	100% { top: 90%; }
}
.arrow-link {
	-webkit-animation: levitate 2s infinite; /* Safari 4+ */
	-moz-animation:    levitate 2s infinite; /* Fx 5+ */
	-o-animation:      levitate 2s infinite; /* Opera 12+ */
	animation:         levitate 2s infinite; /* IE 10+, Fx 29+ */
}

section {
	min-height: 100vh;
}
section:not(.parallax) {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ------------- Section Titles and H1, H2 Title Adjustments -------------- */
.sec-titles {
	margin-top: 35px;
	margin-bottom: 40px;
}
#features-sec {
	padding-top: 80px !important;
	padding-bottom: 80px !important;
}
#features-sec #features-wrap {
	width: 100%;
}
#features-sec .sec-titles {
	margin-top: 0;
	margin-bottom: 50px;
}
#features-sec .row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	width: 100%;
}
.h1-a {
	margin-bottom: 0px;
	letter-spacing: 0.05em;
}
.h2-a {
	margin-top: 0px;
	font-weight: normal;
	font-size: 25px;
}
hr.hr-1 {
	border: 0;
	height: 3px;
	width: 82px;
	margin-top: 28px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	background: linear-gradient(90deg, rgba(32, 168, 141, 0.2) 0%, rgba(32, 168, 141, 1) 50%, rgba(32, 168, 141, 0.2) 100%);
	border-radius: 999px;
	opacity: 0.95;
}

.hr-compact {
	margin-top: 14px;
	margin-bottom: 16px;
}


/* Up Arrow */
#up-arrow {
	position: fixed;
	right: 30px;
	bottom: 25px;
	background-color: rgba(0,0,0,0.30);
	-moz-border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
	border-radius: 4px 4px 4px 4px;
	padding-top: 6px;
	padding-right: 13px;
	padding-left: 13px;
	padding-bottom: 7px;
	z-index: 9999;
}
#up-arrow:hover {
	background-color: rgba(32,168,141,0.80);
}
#up-arrow i {
	font-size: 24px;
	color: #FFFFFF;
}

/*-- ------------------------ Welcome Section --------------------------------------- */
#about-sec {
	background-color: #F7F7F7;
	padding: 80px 0;
}
#about-sec .container {
	width: 100%;
}
.main-description h3 {
	font-family: 'Droid Serif', serif;
	color: #20A88D;
	font-weight: bold;
	font-size: 18px;
	font-style: italic;
}
.main-description p {
	font-size: 16px;
	font-weight: 400 !important;
	line-height: 1.8;
	margin-bottom: 14px;
}
.lower {
	background-color: #F7F7F7;
}
.about-icon {
	color: #909090;
}
.tag-line {
	font-family: 'Droid Serif', serif;
	color: #20A88D;
	font-weight: bold;
	font-size: 16px;
	font-style: italic;
}
.lower h3 {
	text-transform: uppercase;
	font-weight: bold;
}
.lower p {
	font-size: 16px;
}


/* ----------------- Info Section ----------------- */
#info-sec {
	background-color: #FFFFFF;
	padding: 80px 0 !important;
}
#info-sec .container-fluid {
	padding: 0 40px;
}

/* Floating orbit container for animated items around iPhone */
.floating-orbit-container {
	position: relative;
	width: 100%;
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 40px auto;
}

.orbit-center {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	max-width: 200px;
}

.orbit-center img {
	width: 100%;
	height: auto;
}

/* Floating animation keyframes */
@keyframes float-bounce {
	0%, 100% {
		transform: translateY(0px) scale(1);
		opacity: 0.9;
	}
	50% {
		transform: translateY(-20px) scale(1.02);
		opacity: 1;
	}
}

/* Individual floating items positioned in orbit */
.floating-item {
	position: absolute;
	width: 220px;
	animation: float-bounce 4s ease-in-out infinite;
	transition: all 0.3s ease;
}

.floating-item:hover {
	transform: scale(1.05);
	z-index: 20;
}

/* Position items around the center using polar coordinates */
.float-item-1 {
	left: 5%;
	top: 10%;
	animation-delay: 0s;
}

.float-item-2 {
	left: 10%;
	top: 60%;
	animation-delay: 0.8s;
}

.float-item-3 {
	left: 35%;
	bottom: 5%;
	animation-delay: 1.6s;
}

.float-item-4 {
	right: 35%;
	bottom: 5%;
	animation-delay: 2.4s;
}

.float-item-5 {
	right: 10%;
	top: 60%;
	animation-delay: 3.2s;
}

.float-item-6 {
	right: 5%;
	top: 10%;
	animation-delay: 4s;
}
.info-item-l, .info-item-r {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 32px;
	margin-bottom: 16px;
	padding: 16px 0;
}
.info-text {
	margin-top: 0;
	width: auto;
}
.info-item-l .info-text {
	float: none;
	margin-right: 0;
	text-align: center;
}
.info-item-l .info-text .item-title {
	display: block;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 8px;
}
.info-item-l .info-text .item-description {
	display: block;
	font-size: 13px;
	line-height: 1.5;
	opacity: 0.85;
}
.feat-icon-l, .feat-icon-r {
	width: 90px;
	height: 90px;
	color: #FFFFFF;
	text-align: center;
	font-size: 38px;
	padding-top: 18px;
	background-image: url(../img/icon-diamond-bg.png);
	background-size: contain;
}
.feat-icon-l {
	position: static;
	display: none;
}
.iphone {
	display: block;
	margin: 0 auto;
}
.info-item-r .info-text {
	float: none;
	margin-left: 0;
	text-align: center;
}
.info-item-r .info-text .item-title {
	display: block;
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 8px;
}
.info-item-r .info-text .item-description {
	display: block;
	font-size: 13px;
	line-height: 1.5;
	opacity: 0.85;
}
.feat-icon-r {
	position: static;
	display: none;
}

/* Styles for floating card items */
.floating-item .info-item-l,
.floating-item .info-item-r {
	padding: 20px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(32, 168, 141, 0.12);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.floating-item:hover .info-item-l,
.floating-item:hover .info-item-r {
	box-shadow: 0 12px 32px rgba(32, 168, 141, 0.2);
	background: rgba(255, 255, 255, 1);
}

/* Responsive adjustments for tablet */
@media (max-width: 1199px) {
	.floating-orbit-container {
		height: 700px;
	}
	
	.floating-item {
		width: 180px;
	}
}

/* Responsive adjustments for mobile */
@media (max-width: 991px) {
	.floating-orbit-container {
		height: auto;
		flex-direction: column;
	}
	
	.orbit-center {
		position: relative;
		transform: none;
		margin-bottom: 40px;
	}
	
	.floating-item {
		position: relative;
		left: auto !important;
		right: auto !important;
		top: auto !important;
		bottom: auto !important;
		width: 100%;
		max-width: 350px;
		margin: 15px auto;
		animation: none;
	}
	
	.floating-item:hover {
		transform: scale(1) translateY(-5px);
	}
}

/* ----------------- Gallery Section and Image Overlay ---------------- */
#gallery-sec {
	background-color: #FFF;
	padding-top: 60px !important;
	padding-bottom: 60px !important;
	display: block;
}
#gallery-sec > .col-lg-12 {
	margin-bottom: 40px;
}
.glr-item {
	padding: 0;
	width: 25%;
	height: 25%; 
	overflow: hidden;
	float: left;
}
.img-wrap {
	position: relative;
}
.img-wrap img {
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.img-wrap:hover img {
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.img-wrap .img-wrap-overlay {
	background: rgba(0,0,0,0.7);
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	-webkit-transition: all 0.7s ease-in-out 0s;
	-moz-transition: all 0.7s ease-in-out 0s;
	transition: all 0.7s ease-in-out 0s;
	z-index: 100;
}
.img-wrap:hover .img-wrap-overlay {
	opacity: 1;
}
.fill {
    width: 100%;
    height: 100%;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
.img-wrap-details {
	position: absolute;
	text-align: center;
	padding-left: 1em;
	padding-right: 1em;
	width: 100%;
	top: 50%;
	left: 50%;
	opacity: 0;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.img-wrap:hover .img-wrap-details {
	top: 50%;
	left: 50%;
	opacity: 1;
	z-index: 200;
}
.img-wrap-details i {
	color: #fff;
}
.fadeOverlay {
	top: 80%;
}




/* ---------------------- About Section ---------------------- */
.circle-bg {
	margin: 0 auto 16px;
	background-color: #20a88d;
	color: #fff;
	width: 56px;
	height: 56px;
	padding-top: 14px;
	padding-right: 12px;
	padding-left: 12px;
	padding-bottom: 12px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.p-size {
	font-size: 16px;
}
#image-r {
	margin: 0 auto;
}


/* ---------------------- 3D Vertical Cube ---------------------- */
.fluximi-3d-vcube {
	perspective: 1200px;
	width: 100%;
	height: 500px;
	margin: 0 auto;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fluximi-3d-vcube .cube-face {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transform-style: preserve-3d;
	backface-visibility: hidden;
}

#cube-sec {
    margin: 0;
    padding: 80px 0 !important;
    background: #0f0f0f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Left text column */
.cube-sec-label {
    display: inline-block;
    font-size: 0.72em;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #667eea;
    border: 1px solid #667eea;
    border-radius: 30px;
    padding: 4px 16px;
    margin-bottom: 22px;
}

.cube-sec-title {
    font-size: 2.4em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.cube-sec-desc {
    font-size: 1em;
    opacity: 0.68;
    margin-bottom: 36px;
    line-height: 1.75;
}

.cube-sec-text {
	max-width: 480px;
}

.cube-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cube-features-list li {
    padding: 12px 16px;
    margin-bottom: 6px;
    border-radius: 8px;
    opacity: 0.42;
    transition: opacity 0.35s ease, background 0.35s ease, transform 0.35s ease;
    cursor: default;
    font-size: 0.92em;
    line-height: 1.55;
}

.cube-features-list li.active {
    opacity: 1;
    background: rgba(102, 126, 234, 0.14);
    transform: translateX(6px);
}

.cube-features-list li .fa {
    width: 20px;
    margin-right: 8px;
    color: #667eea;
}

.cube-features-list strong {
	display: inline-block;
	margin-right: 8px;
	color: #fff;
}

.cube-status {
	margin-top: 22px;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.62);
}

.cube-status span {
	color: #fff;
	font-weight: 700;
}

/* Right viz column */
.cube-sec-viz {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* cube-wrapper override inside cube-sec */
#cube-sec .cube-wrapper {
    --cube-lift: 0px;
    --cube-scale: 1;
    perspective: 1200px;
    width: min(75vw, 460px);
    height: min(75vw, 460px);
    margin: 0 auto;
    position: relative;
    transform: translateY(var(--cube-lift)) scale(var(--cube-scale));
    transition: transform 140ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

#cube-sec #three-cube-host,
#cube-sec #three-cube-gl {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: filter 120ms ease;
}

#cube-sec #three-cube-gl {
    z-index: 2;
    pointer-events: none;
}

#cube-sec #face-templates {
    display: none;
}

#cube-sec .cube-face {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

#cube-sec .face-content {
    text-align: center;
    color: #111;
    padding: 36px 28px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e8e8e8;
}

#cube-sec .face-icon {
    font-size: 3.2em;
    margin-bottom: 14px;
    color: #667eea;
    opacity: 0.85;
}

#cube-sec .face-tag {
    font-size: 0.76em;
    letter-spacing: 0.04em;
    opacity: 0.5;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#cube-sec .face-content h3 {
    font-size: 1.75em;
    margin-bottom: 12px;
    font-weight: 700;
}

#cube-sec .face-content p {
    font-size: 0.88em;
    line-height: 1.75;
    opacity: 0.8;
    max-width: 320px;
}

#cube-sec .face-cap {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102,126,234,0.10) 0%, rgba(118,75,162,0.10) 100%);
    border-radius: 14px;
    border: 1px solid rgba(102,126,234,0.15);
}

.cube-scroll-hint {
    margin-top: 18px;
    font-size: 0.8em;
    opacity: 0.35;
    color: #fff;
    letter-spacing: 0.06em;
}

#cube-sec .cube-wrapper.is-hover { cursor: grab; }
#cube-sec .cube-wrapper.is-active { cursor: grabbing; }

@media (max-width: 991px) {
    .cube-sec-text { margin-bottom: 10px; text-align: center; }
    .cube-sec-title { font-size: 1.9em; }
    .cube-features-list { display: none; }
}

@media (max-width: 576px) {
    #cube-sec { padding: 60px 0; }
    #cube-sec .cube-wrapper { width: min(90vw, 360px); height: min(90vw, 360px); }
}

/* ---------------------- Parallax Full Width Images ---------------------- */
.parallax {
	position: relative;
	height: 280px;
	background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	overflow: hidden;
	display: flex;
	align-items: center;
}
/* Background Images */
.p-image1 {
	background-image: url(../img/pexels-photo-55787.jpeg);
}
.p-image2 {
	background-image: url(../img/pexels-photo-160107.jpeg);
}
.p-image3 {
	background-image: url(../img/pexels-photo-97906.jpeg);
}
/* Text content on images */
.p-cont1 {
	color: #fff;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
	margin: 0 auto;
	padding-top: 0.5%;
}
.p-cont1 .h1-a {
	margin-top: 30px;
	margin-bottom: 30px;
}
#devices {
	margin-top: 1%;
}
#devices img {
	margin-left: 14%;
}
.p-cont2 {
	color: #fff;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
	margin: 0 auto;
}


/* Team Section */
.t-bg {
	margin: 16px auto;
	padding: 20px;
	background: #fafafa;
	border-radius: 8px;
}
.t-bg h4 {
	color: #20A88D;
	margin-top: -4px;
	margin-bottom: 15px;
}
.t-bg img {
	width: 100px;
	height: 100px;
	margin: 0 auto 12px;
	border-radius: 50%;
	object-fit: cover;
}
.btn-social {
	color: #20A88D;
}
.bio {
	margin-left: 5%;
	margin-right: 5%;
	display: none;
}

/* ---------------------- Contact Section ---------------------- */
#contact-sec {
	padding: 80px 0 !important;
	background: linear-gradient(180deg, #ffffff 0%, #f5f7f9 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}
#contact-sec .container {
	width: 100%;
}
.contact-text {
	margin:45px auto;
}
.contact-form {
	max-width: 960px;
	margin: 0 auto;
}
.contact-form form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}
.contact-form form > .col-6 {
	width: auto;
	padding: 0;
}
.mail-message-area {
	width:100%;
	padding:0 15px;
}
.mail-message {
	width: 100%;
	background:rgba(255,255,255, 0.8) !important;
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	transition: all 0.7s;
	margin:0 auto;
	border-radius: 0;
}
.form {
	width: 100%;
	padding: 10px;
	background:#fff;
	border:1px solid rgba(0, 0, 0, 0.075);
	margin-bottom:25px;
	color:#727272 !important;
	font-size:15px;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}
.form:hover {
	border:1px solid #488fa1;
	color: #20A88D;
}
.form:focus {
	color: white;
	outline: none;
	border:1px solid #20A88D;
}
.textarea {
	height: 200px;
	max-height: 200px;
	max-width: 100%;
	font-size: 16px;
}
.form-btn {
	width: 180px;
	display: block;
	height: auto;
	padding: 10px;
	color: #fff;
	font-size: 16px;
	background: #20A88D;
	border: none;
	border-radius: 3px;
	outline: none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	margin: auto;
	-moz-box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
	-webkit-box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
	box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
}
.form-btn:hover {
	background: #FFF;
	color: #20A88D;
	border: none;
}
.form-btn:active {
	opacity: 0.9;
}
input {
    position: relative;
}


/* ---------------------- Owl Carousel Custom Styles ---------------------- */
#slider {
	/* enable the hand cursor for some browsers */
	cursor: hand;
}
#slider .owl-carousel {
	margin: 0;
}
#slider .owl-carousel .item {
	height: 150px;
	width: 150px; 
	background: #20A88D; 
	padding: 0;
}
#slider .owl-carousel .item h4 {
	color: #FFF;
	font-weight: 400;
	margin-top: 0rem;
}
.slider-row {
	margin: 0 auto;
	max-width: 100%;
	width: 100%;
}


/* ---------------------- Footer Section ---------------------- */
footer {
	background-color: #2D2D2D;
	color: #FFFFFF;
	font-size: 16px;
	padding-top: 1.4%;
}
.footer-col {
	margin-bottom: 4%;
}
/* Newsletter form */
.newsletter {
	margin-top: 20px;
	width: 100%;
}
.newsletter .email {
	background-color: #E1E1E1;
	color: #222;
	padding: 7px;
	border: none;
	-moz-border-radius: 3px 0px 0px 3px;
	-webkit-border-radius: 3px 0px 0px 3px;
	border-radius: 3px 0px 0px 3px;
	width: 66%;
}
.newsletter .submit {
	background-color: #20A88D;
	padding: 7px;
	border: none;
	-moz-border-radius: 0px 3px 3px 0px;
	-webkit-border-radius: 0px 3px 3px 0px;
	border-radius: 0px 3px 3px 0px;
	width: 25%;
}
.newsletter .submit:hover {
	background-color: #6ECC60;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.social-links {
	color: #D0D0D0;
	font-size: 40px;
	margin-right: 10px;
}
.social-links:hover {
	color: #20A88D;
}
#f-email {
	color: #fff;
}
#f-email:hover {
	color: #20A88D;
}
.footer-list {
	margin-bottom: 15px;
}
.footer-list li {
	padding-bottom: 5px;
}

/* Newest Blog Posts or News*/
.post {
	width: 100%;
}
.post .post-source {
	color: #FFF;
}
.post .post-source:hover {
	color: #FFF;
	text-decoration: none;
}
.post .post-info {
	margin-top: 15px;
	font-style: italic;
	font-size: 12px;
	text-align: right;
	color: #8B8B8B;
}
.post-divider {
	width: 100%;
	border-bottom: dashed #4B4B4B 1px;
	margin-top: 15px;
	margin-bottom: 15px;
}
.post-author {
	color: #20A88D;
}
.post-author:hover {
	color: #FFF;
	text-decoration: underline;
}
.footer-links-list li a {
	color: #FFF;
	text-decoration: underline;
}
.footer-links-list li a:hover {
	color: #20A88D;
	text-decoration: underline;
}

.copy {
	background-color: #111;
	width: 100%;
	color: #FFF;
	font-size: 12px;
	padding-top: 10px;
	padding-bottom: 10px;
}

/* ---------------------------------- Bootstrap Gallery Modals ---------------------------------- */
.modal {
	overflow: scroll !important;
	text-align: center;
	padding: 0 !important;
}
.modal:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -4px;
}
.modal-dialog {
	display: inline-block;
	text-align: left;
	vertical-align: middle;
}
.modal-content {
	background-color: transparent !important;
	border: none !important;
	border-radius: 0;
	outline: 0;
	-webkit-box-shadow: none !important;
			box-shadow: none !important;
}
.modal-item {
	-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .7);
			box-shadow: 0 3px 9px rgba(0, 0, 0, .7);
	margin: 0 auto;
}
.x-btn {
	position: fixed;
	right: -15%;
	top: -15%;
	background-color: transparent;
}

/* ---------------------------------- Media Queries ---------------------------------- */
@media only screen and (min-width: 1500px) {
	.container {
		width: 1460px;
	}
	.h-text h1 {
		font-size: 55px;
	}
}
/* Animated overlay on images */
@media only screen and (max-width: 1400px) {
	.overlay {
		width: 92.5% !important;
	}
}
@media only screen and (min-width: 1400px) {
	.container {
		width: 1360px;
	}
	.h-text h1 {
		font-size: 50px;
	}
	.p-cont1 h1, .p-cont2 h1 {
		font-size: 55px;
	}
}
@media only screen and (min-width: 1250px) {
	.info-text {
		width: auto;
	}
}
@media only screen and (max-width: 1199px) {
	.overlay {
		width: 90% !important;
	}
	.ol-text {
		font-size: 20px !important;
	}
}
@media only screen and (max-width: 991px) {
	.navbar-default .navbar-nav > li > a {
		font-size: 16px;
	}
	.navbar-default {
		background: rgba(10, 14, 20, 0.94);
	}
	.navbar-default .container-fluid {
		padding-left: 16px;
		padding-right: 16px;
	}
	.navbar-default .navbar-collapse {
		margin-top: 12px;
		padding: 14px 10px;
		background: rgba(255, 255, 255, 0.06);
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 14px;
	}
	.navbar-default .nav-link::after {
		left: 0.75rem;
		right: auto;
		width: 24px;
		bottom: 0.2rem;
	}
	header {
		height: 60vh;
		min-height: 60vh;
	}
	video {
		min-height: 60%;
	}
	#vid-overlay {
		min-height: 60%;
	}
	.h-text {
		top: 15%;
		width: 100%;
	}
	.h-text h1 {
		font-size: 40px;
	}
	.arrow-link {
		display: none;
	}
	.main-description {
		text-align: center;
	}
	.main-description h1 {
		font-size: 42px;
	}
	.info-item-l, .info-item-r {
		margin-top: 5px;
	}
	.info-text {
		margin-top: 2px;
		width: auto;
	}
	.info-item-l .info-text,
	.info-item-r .info-text {
		margin-left: 0;
		margin-right: 0;
	}
	.btn-social {
		font-size: 20px;
	}
	.bio {
		margin: 0;
	}
	.contact-form form {
		grid-template-columns: 1fr;
	}
}
@media only screen and (max-width: 767px) {
	.h-text h1 {
		font-size: 34px;
	}
	.h-text h2 {
		font-size: 20px;
	}
	.about-icon {
		font-size: 40px !important;
	}
	.h1-a {
		margin-top: 0px;
		margin-bottom: 10px;
		font-weight: bold;
		font-size: 24px;
	}
	hr.hr-1 {
		width: 64px;
		margin-top: 16px;
		margin-bottom: 14px;
	}
	.hr-compact {
		margin-top: 10px;
		margin-bottom: 12px;
	}
	#info-sec .info-item {
		height: auto;
	}
}