@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", Helvetica, Arial, sans-serif;
}

p {
  line-height: 1.55;
  color: #333;
  font-size: 400;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
}

h1 {
  font-size: 62px;
}

h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

.titi {
	color: #fff;
}

.titi img {
	position: absolute;
	right: -50px;
	top: -10px;
	width: 60px
}

/* ==================================================
  Preloader
  ================================================== */

#preloader {
  background-color: #fff;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 9999;
}

#preloader > img {
  left: 38%;
  position: absolute;
  width: 25%;
  top: 30%;
}

.info {
	padding-top: 60px;
}

/* ==================================================
  General
  ================================================== */

a {
  transition: 0.5s;
}

/* ==================================================
  Elements
  ================================================== */

#successMessage {
	font-weight: 600;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.box {
    max-width: 500px;
    margin: 10% auto 50px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.box img {
	width: 50%;
	margin-bottom: 25px;
}
.box h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}
.box textarea {
	border-radius: 5px;
    width: 100%;
    min-height: 140px;
	padding: 10px 15px;
}
.box button {
    margin-top: 10px;
    padding: 10px 20px;
    background: #d41203;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
	text-transform: uppercase;
	font-weight: 600;
}

.btn {
  background-color: #d41203;
  border: 2px solid #d41203;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 800;
  color: #fff;
  padding: 15px 20px;
  border-radius: 50px;
}

.btn:hover {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn:focus {
  color: #fff;
}

.btn-ghost {
  border: 3px solid #fff;
  background-color: transparent;
}

.btn-ghost:hover {
  background-color: #fff;
  color: #d41203;
}

section {
  padding: 85px 0;
}

.card {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  margin: 0;
  overflow: hidden;
}

a:hover {
  text-decoration: none !important;
}

#chatbot {
	position: relative;
	width: 64px;
	height: 64px;
	position: fixed;
	bottom: 32px;
	right: 32px;
	cursor: pointer;
	/* 	box-shadow: inset 0 0 0 2px red; */
	/* 	filter: drop-shadow(0 6px 12px hsl(200 100% 50% / 0.6)); */
	/* 	cursor: pointer; */
	/* 	transform: scale(3); */
	/* 		box-shadow: inset 0 0 0 2px red; */
}
.robot-layer {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(
		calc(-50% + var(--offset-x, 0px)),
		calc(-50% + var(--offset-y, 0px))
	);
	transition: transform 0.1s ease-out;
	will-change: transform;
}
#chatbot:hover #hair {
	transform: translate(
			calc(-50% + var(--offset-x, 0px)),
			calc(-50% + var(--offset-y, 0px))
		)
		rotate(-270deg);
	transition: 0.3s ease-out;
}

.greeting-bubble {
	position: fixed;
	bottom: 33px;
	right: 105px;
	background: #fff;
	padding: 12px 18px;
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	opacity: 0;
	transform: translateX(10px);
	pointer-events: none;
	transition: all 0.3s ease;
	z-index: 999;
	white-space: nowrap;
	font-size: 14px;
	color: #333;
}

.greeting-bubble::after {
	content: "";
	position: absolute;
	right: -8px;
	top: 65%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 8px solid #fff;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
}

.chat-button:hover .greeting-bubble {
	opacity: 1;
	transform: translateX(0);
}

.chat-window {
	position: fixed;
	bottom: 32px;
	right: 32px;
	width: 380px;
	height: 550px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	opacity: 0;
	transform: translateY(20px) scale(0.95);
	pointer-events: none;
	transition: all 0.3s ease;
	z-index: 1001;
	overflow: hidden;
	overscroll-behavior: contain;
}

.chat-window.active {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: all;
}

.chat-window.expanded {
	width: calc(380px + 32px);
	height: 100dvh;
	right: 0;
	bottom: 0;
	border-radius: unset;
}

@media (max-width: 480px) {
	.chat-window,
	.chat-window.expanded {
		width: 100vw;
		height: 100dvh;
		right: 0;
		bottom: 0;
		border-radius: unset;
	}
}

.chat-header {
	background: linear-gradient(135deg, #d41203 0%, #9A0B00 100%);
	color: #fff;
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.chat-header h3 {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	text-transform: uppercase;
}

.expand-button,
.close-button {
	background: rgba(255, 255, 255, 0);
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.expand-button:hover,
.close-button:hover {
	background: rgba(255, 255, 255, 0.1);
}

.expand-button svg,
.close-button svg {
	width: 24px;
	height: 24px;
	fill: #fff;
}

@media (max-width: 480px) {
	.expand-button {
		visibility: hidden;
	}
}

.chat-messages {
	flex: 1;
	padding: 20px;
	overflow-y: auto;
	background: #f8f9fa;
	display: flex;
	flex-direction: column;
	gap: 15px;
	overscroll-behavior: contain;
}

.chat-messages::-webkit-scrollbar {
	width: 6px;
}

.chat-messages::-webkit-scrollbar-thumb {
	background: #ddd;
	border-radius: 3px;
}

.message {
	display: flex;
	align-items: flex-end;
	gap: 10px;
	animation: ani-message-show 0.3s ease;
}
@keyframes ani-message-show {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.message.grouped {
	margin-top: -10px;
}
.message.grouped .ai-avatar {
	visibility: hidden;
}

.message.user {
	justify-content: flex-end;
}
.message.ai {
	justify-content: flex-start;
}

.ai-avatar {
	width: 36px;
	height: 36px;
	/* 	border-radius: 50%; */
	background-image: url("../img/seri.png");
	background-size: contain;
	background-position: center;

	background-repeat: no-repeat;
}

.message-bubble {
	max-width: 75%;
	padding: 12px 16px;
	word-wrap: break-word;
	line-height: 1.5;
	font-size: 14px;
}
.message.user .message-bubble {
	border-radius: 16px 16px 4px 16px;
	background: #d41203;
	color: #fff;
}
.message.ai .message-bubble {
	background: #fff;
	color: #333;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.message.ai:not(.grouped) .message-bubble {
	border-radius: 16px 16px 16px 4px;
}
.message.ai:not(.grouped) + .ai.grouped .message-bubble,
.message.ai.grouped + .ai.grouped .message-bubble {
	border-radius: 4px 16px 16px 4px;
}
.message.ai.grouped:not(:has(+ .ai.grouped)) .message-bubble {
	border-radius: 4px 16px 16px 16px;
}

.chat-input-area {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px;
	/* border-top: 1px solid #eee; */
	background: #fff;
	box-shadow: 0 0 12px rgb(226 233 240);
}

.chat-input-group {
	display: flex;
	flex: 1;
	align-items: flex-end;
	/* 	border: 1px solid #e0e0e0; */
	/* 	background: #f5f5f5; */
	/* 	border-radius: 12px; */
}
.chat-input {
	flex: 1;
	padding: 8px 16px;
	border: none;
	outline: none;
	background: none;
	font-size: 16px;
	min-height: 40px;
	max-height: 160px;
	line-height: 24px;
	resize: none;
	overflow: auto;
	transition: all 0.2s ease;
}

.send-button {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 50%;
	margin: 4px;
	background-color: #00000020;
	transition: all 0.2s ease;
}

.send-button.active {
	background-color: #d41203;
	cursor: pointer;
}

.send-button svg {
	width: 16px;
	height: 16px;
	fill: #fff;
}

.typing-indicator {
	display: flex;
	gap: 4px;
	padding: 12px 16px;
}

.typing-indicator span {
	width: 8px;
	height: 8px;
	background: #999;
	border-radius: 50%;
	animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
	animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes typing {
	0%,
	60%,
	100% {
		transform: translateY(0);
	}

	30% {
		transform: translateY(-10px);
	}
}

.menu-cards-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
	width: 100%;
}

.menu-cards-container {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 5px 44px;
	flex: 1;
	scrollbar-width: none;
}

.menu-cards-container::-webkit-scrollbar {
	display: none;
}

.card {
	min-width: 200px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 15px;
	flex-shrink: 0;
}

.card .title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	font-weight: 600;
	color: #333;
	font-size: 15px;
}

.card-title-img {
	font-size: 20px;
}

.card-button {
	margin: 8px 0;
	padding: 8px 12px;
	background: #f0f0f0;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.card-button:hover {
	background: #e0e0e0;
}

.card-button a {
	text-decoration: none;
	color: #333;
	font-size: 14px;
}

.scroll-button {
	position: absolute;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid #ddd;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scroll-button.right-button {
	right: 0;
}

.scroll-button.visible {
	display: flex;
}

.scroll-button:hover {
	background: #fff;
}

.scroll-button svg {
	width: 16px;
	height: 16px;
	fill: #333;
}

.ai-fx,
.ai-fx:before,
.ai-fx:after {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	pointer-events: none;
}
.chat-window.expanded .ai-fx,
.chat-window.expanded .ai-fx:before,
.chat-window.expanded .ai-fx:after {
	border-radius: unset;
}
@media (max-width: 480px) {
	.ai-fx,
	.ai-fx:before,
	.ai-fx:after {
		border-radius: unset;
	}
}
.ai-fx {
	animation: ani-ai-fx 2.5s linear infinite alternate;
}
@keyframes ani-ai-fx {
	0% {
		box-shadow: inset 0px 0px 0px 0px #d41203, inset 0px 0px 30px 10px #f3a61c;
	}
	50% {
		box-shadow: inset 0px 0px 15px 5px #d41203, inset 0px 0px 15px 5px #f3a61c;
	}
	100% {
		box-shadow: inset 0px 0px 30px 10px #d41203, inset 0px 0px 0px 0px #f3a61c;
	}
}
.ai-fx:before,
.ai-fx:after {
	content: "";
	z-index: 100;
	mask-image: linear-gradient(
			to bottom,
			black 0px,
			transparent var(--mask-border),
			transparent var(--mask-border),
			transparent 100%
		),
		linear-gradient(
			to top,
			black 0px,
			transparent var(--mask-border),
			transparent var(--mask-border),
			transparent 100%
		),
		linear-gradient(
			to right,
			black 0px,
			transparent var(--mask-border),
			transparent var(--mask-border),
			transparent 100%
		),
		linear-gradient(
			to left,
			black 0px,
			transparent var(--mask-border),
			transparent var(--mask-border),
			transparent 100%
		);
	background-image: conic-gradient(
		from var(--fx-angle) at 50% 50%,
		transparent 10%,
		/* transparent 33%, */ var(--fx-color) 50%,
		/* transparent 66%, */ transparent 80%
	);
	--mask-border: 0px;
	/* mix-blend-mode: soft-light; */
	mix-blend-mode: lighten;
}
.ai-fx:before {
	--mask-border: 60px;
	animation: ani-ai-rotate-1 3s linear infinite;
}
.ai-fx:after {
	--mask-border: 40px;
	animation: ani-ai-rotate-2 2s linear infinite;
}
@property --fx-angle {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
}
@property --fx-color {
	syntax: "<color>";
	initial-value: #0ff;
	inherits: false;
}
@keyframes ani-ai-rotate-1 {
	0% {
		--fx-angle: 0deg;
		--fx-color: #ff0;
	}
	25% {
		/* --fx-color: #f00; */
	}
	50% {
		--fx-color: #f0f;
	}
	75% {
		/* --fx-color: #f00; */
	}
	100% {
		--fx-angle: 360deg;
		--fx-color: #ff0;
	}
}
@keyframes ani-ai-rotate-2 {
	/* 	to {
		--fx-angle: -360deg;
	} */
	0% {
		--fx-angle: 0deg;
		--fx-color: #ff0;
	}
	25% {
		/* 		--fx-color: #0f0; */
	}
	50% {
		--fx-color: #0ff;
	}
	75% {
		/* 		--fx-color: #f0f; */
	}
	100% {
		--fx-angle: -360deg;
		--fx-color: #ff0;
	}
}


.ai-fx.removing:before {
	animation: none;
	box-shadow: none;
	transition: box-shadow 0.3s ease-out;
}
.ai-fx.removing:after {
	animation: none;
	box-shadow: none;
	transition: box-shadow 0.3s ease-out;
}

.scrolltop {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #d41203;
  color: #fff;
  text-align: center;
  font-size: 24px;
}

.scrolltop:hover,
.scrolltop:active,
.scrolltop:focus {
  color: #fff !important;
  opacity: .75;
}

/* ==================================================
  Hero Styling
================================================== */
.about h2 {
	text-transform: uppercase;
}

.brochure {
	position: absolute;
	margin: 15px 20% 0 20%;
}

.brochure span {
	display: inline-block;
	margin-right: 15px;
	font-style: italic;
	font-weight: 600;
	color: #F29B00;
}

.serv {
	padding: 0 5px;
}

.serv a, .brochure a {
	border: 1px solid #d41203;
	border-radius: 5px;
	background: #d41203;
	color: #fff;
	padding: 10px 15px;
	font-weight: bold;
	text-transform: uppercase;
}

.serv a:hover, .brochure a:hover {
	border: 1px solid #d41203;
	background: transparent;
	color: #d41203;
}

.facebtn {
	border: 1px solid #1877F2 !important;
	background: #1877F2 !important;
}

.facebtn:hover {
	color: #fff !important;
}

.recru {
	border: none !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #d41203 !important;
	padding: 0 !important;
	font-style: italic;
	text-transform: inherit !important;
}

.srv {
	width: 100%;
	display: block;
	margin-bottom: 30px;
}

.srv img {
	width: 100%;
}

.faq-container {
	margin-bottom: 50px;
}

.faq-item {
  border: 1px solid #EFEFEF;
  border-radius: 5px;
  margin-bottom: 20px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
  background: #d41203;
  color: #fff;
  transition: all 0.8s ease;
}

.faq-item.active .faq-question {
  color: #fff;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  text-transform: uppercase;
  color: #d41203;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.faq-question:focus {
  background: none;
  border: none;
  outline: none;
}

.faq-question .icon {
  transition: transform 0.3s ease;
  font-weight: bold;
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
  background: #f7f7f7;
  color: #333;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
}

.faq-answer p {
  margin: 10px 20px;
}

.faq-answer ul > li, .servlisting li {
  list-style: none;
  margin-bottom: 15px;
}

.faq-answer ul > li > i, .servlisting li > i {
  color: #d41203;
  margin-right: 15px;
}

.faq-item.active .faq-answer {
  padding: 10px 20px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
  content: "–";
}

.servdivide {
	margin: 2rem 0;
}

.log-size {
	position: relative;
	width: 300px;
	margin-top: 210px;
	z-index: 3;
}

.part-size {
	width: 250px;
	position: absolute;
	top: 50px;
	right: 150px;
	z-index: 3;
}

#slide-window {
  position: relative;
  width:100%;
  height:100vh;
  overflow:hidden;
}

#slides {
  height:100%;
  position:absolute;
  margin:0;
  padding:0;
  transform: translate3d(0,0,0);
  transition: all 0.8s ease;
}

.slide {
  list-style:none;
  position: relative;
  float: left;
  margin:0;
  padding:0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: 50% 50%;
  color:#fff;
  opacity: 1;
  visibility: visible;
  transition: background-position 1.2s ease;
}

.slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  z-index: 2;
}

.slide.parallax-move {
  background-position: 40% 50%;
}

.slide-content h2 {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease;
}

.slide-content a {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.slide-content h2.show-h2 {
  opacity: 1;
  transform: translateX(0);
}

.slide-content a.show-a {
  opacity: 1;
  transform: translateY(0);
}

.slide-content h2.hide-h2 {
  opacity: 0;
  transform: translateX(-50px);
}

.slide-content a.hide-a {
  opacity: 0;
  transform: translateY(30px);
}

.slide-content {
  position: absolute;
  text-align: left;
  bottom: 45%;
  left: 10%;
  z-index: 10;
}

.slide-title {
  color: #000;
  font-size: 50px;
  margin: 0 0 50px;
  font-family: 'Quicksand', sans-serif;
  text-transform: uppercase;
}

.slide-title span {
  color: #F29B00;
  font-weight: 600;
}

.slide-content a {
  border: 2px solid #000;
  background: transparent;
  color: #000;
  padding: 10px 15px;
  text-transform: uppercase;
  transition: all 0.6s ease;
}

.slide-content a:hover {
  border-color:#d41203;
  background:#d41203;
  color:#fff;
}

.slide-nav {
  position: absolute;
  z-index: 9;
  top: 50%;
  padding: 10px 12px;
  background: rgba(212,18,3,1);
  cursor: pointer;
  color: #fff;
  opacity: 0.5;
  transition: all 0.4s ease;
}

.slide-nav:hover { opacity: 1; }
#left { left: 3%; }
#right { right: 3%; }

.vid {
  position: absolute; 
  top: -100px; 
  left: 0px; 
  min-width: 100%; 
  min-height: 100%;
  z-index: -1;
}

.hero {
  display: table;
  position: relative;
  padding: 0;
  color: #fff;
  width: 100%;
  height: 100vh;
}
/*
.hero:after {
  content: '';
  z-index: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 104%;
  left: 0;
  top: 0;
}
*/
.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.hero-brand {
  margin-bottom: 30px;
  display: inline-block;
}

.hero-brand img {
	width: 300px;
}

.hero-brand:hover {
  opacity: .75;
}

.hero h1 {
	margin: 0 0 70px 0;
	font-size: 27px;
	font-style: italic;
	font-weight: bold;
}

.tagline {
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  font-size: 26px;
  margin: 45px 0 75px 0;
  color: #fff;
}

/* ==================================================
  Header Styling
================================================== */
#header {
  background: #1A1A1A;
  height: 70px;
}

#header #logo {
  margin: 0 40px 0 0;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 2px 0;
  line-height: 1;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin-top: -20px;
  max-height: 40px;
}

#header .social-nav {
  margin-top: 15px;
}

#header .social-nav a {
  font-size: 24px;
  margin-left: 10px;
  color: #fff;
}

#header .social-nav a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.conts {
	display: inline-block;
	margin: 10px 0 0 50px;
	padding: 0;
	font-size: 14px;
}

.conts > li {
	list-style: none;
	margin-bottom: 5px;
}

.conts > li > a {
	color: #f3a61c;
}

.conts > li > a:hover {
	color: #f3a61c;
}

.conts i {
	margin-right: 3px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
  margin: 0;
}

/* Nav Meu Styling */

.nav-menu a {
  padding: 22px 15px 18px 15px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  outline: none;
  text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu .menu-active > a {
  color: #d41203;
}

.nav-menu ul {
  margin: 4px 0 0 15px;
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.08);
}

.nav-menu ul li {
  background: #1A1A1A;
  border-top: 1px solid #f4f4f4;
}

.nav-menu ul li:first-child {
  border-top: 0;
}

.nav-menu ul li:hover {
  background: #d41203;
  transition: 0.3s;
}

.nav-menu ul li a {
  color: #fff;
  font-size: 13px;
  transition: none;
  padding: 10px 15px;
}

.nav-menu ul li a:hover {
  color: #fff;
}

.nav-menu ul ul {
  margin: 0;
}

.fa-facebook {
	font-size: 14px;
	border: 1px solid #fff;
	border-radius: 50%;
	padding: 5px 8px;
}

.fa-linkedin {
	font-size: 14px;
	border: 1px solid #fff;
	border-radius: 50%;
	padding: 5px 7px;
}

.lang {
	border-left: 1px solid #fff;
	padding: 5px 0;
}

.oth {
	display: none;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 8px 10px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 15px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #d41203;
}

#mobile-nav ul .menu-item-active {
  color: #d41203;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/* ==================================================
  Stats Styling
================================================== */

.stats-row {
  margin-top: 40px;
}

.stats-row1 {
  margin-top: 65px;
  margin-bottom: 10px;
}

.stats-col .circle {
  display: inline-block;
  width: 160px;
  height: 160px;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #666;
  border: 6px solid #d41203;
  border-radius: 50%;
  padding: 55px 25px 0 25px;
  position: relative;
}

.stats-col .circle .stats-no {
  color: #fff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  top: -25px;
  right: -15px;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  font-size: 18px;
  background-color: #E04F00;
  position: absolute;
  border-radius: 50%;
  font-weight: 700;
}

/* ==================================================
  Parallax Styling
  ================================================== */

.block {
  color: #fff;
  height: 200px;
  overflow: hidden;
  padding-top: 85px;
}

.block h2 {
  text-transform: inherit;
  margin-bottom: 15px;
}

.block p {
  color: #fff;
  margin-bottom: 45px;
}

/* ==================================================
  Features Styling
  ================================================== */

.features {
  padding-bottom: 45px;
}

.features h2 {
  color: #d41203;
}

.feature-col {
  display: table;
  padding-bottom: 45px;
}

.feature-col > div > div {
  display: table-cell;
  vertical-align: middle;
}

.feature-col > div > div:last-child {
  padding-left: 20px;
}

.feature-col .feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  background: #d41203;
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: 70px;
  border-radius: 50%;
  display: inline-block;
}

.feature-col h3 {
  color: #d41203;
}

.feature-col p {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #999;
}

/* ==================================================
  Call-to-action Styling
  ================================================== */

.cta {
  background-color: #d41203;
  padding: 25px 0;
}

.cta h2 {
  margin-bottom: 5px;
}

.cta h2,
.cta p {
  color: #fff;
}

.cta p {
  margin-bottom: 0;
  opacity: .75;
}

.cta .btn-ghost {
  position: relative;
  top: 13px;
}

/* ==================================================
  Portfolio Styling
  ================================================== */

.portfolio {
  background-color: #edf6ff;
  padding-bottom: 0;
}

.portfolio h2 {
  color: #d41203;
  margin-bottom: 25px;
}

.portfolio-grid {
  margin-top: 65px;
}

.portfolio-grid .row {
  margin: 0;
}

.portfolio-grid .row > div {
  padding: 0;
}

.portfolio-grid .row > div .card img {
  width: 100%;
}

.portfolio-grid .row > div .card .portfolio-over {
  position: absolute;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.portfolio-grid .row > div .card .portfolio-over > div {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.portfolio-grid .row > div .card .portfolio-over .card-title {
  color: #fff;
  font-size: 30px;
}

.portfolio-grid .row > div .card .portfolio-over .card-text {
  color: #fff;
  opacity: .75;
  padding: 0 45px;
}

.portfolio-grid .row > div .card:hover .portfolio-over {
  opacity: 1;
  visibility: visible;
}

/* ==================================================
  Team Styling
  ================================================== */

.team {
  padding: 40px 0;
  color: #d41203;
}

.team h2 {
  text-transform: uppercase;
}

.carousel {
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.carousel-window {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.cslide {
  min-width: 25%;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cslide:hover .team-over, .cslide:hover .card-title-wrap {
  opacity: 1;
  visibility: visible;
}

.cslide .team-over a {
	border: 1px solid #fff;
	background: transparent;
	color: #fff;
	padding: 10px 15px;
	line-height: 10;
}


.cslide .team-over {
  padding-top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cslide .card-title-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2px 0;
  background-color: #d41203;
  z-index: 10;
  text-align: center;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cslide .card-title-wrap .card-title,
.cslide .card-title-wrap .card-text {
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  display: block;
  margin: 0;
}

.cslide .card-title-wrap .card-title {
  font-size: 24px;
  color: #333;
}

.cslide .card-title-wrap .card-text {
  font-size: 18px;
  color: #999;
}

.prev, .next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #d41203 !important;
  font-size: 45px;
  font-weight: bold;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.prev { left: -65px; }
.next { right: -50px; }

.prev:hover,
.next:hover {
  color: #f3a61c !important;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .cslide {
    min-width: calc(100% / 3);
  }
}

@media (max-width: 480px) {
  .cslide {
    min-width: 100%;
  }
}

/* ==================================================
  Contact Section
  ================================================== */

#contact {
  background: #f7f7f7;
  padding: 80px 0;
}

#contact h2 {
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  color: #d41203;
}

#contact .info i {
  font-size: 32px;
  color: #d41203;
  float: left;
}

#contact .info p {
  padding: 0 0 10px 50px;
  line-height: 24px;
}

#contact .form #sendmessage {
  color: #d41203;
  border: 1px solid #d41203;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  border-radius: 0;
  box-shadow: none;
}

#contact .form button[type="button"] {
  background: #d41203;
  border: 1px solid #d41203;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .form button[type="button"]:hover {
  background: transparent;
  border: 1px solid #d41203;
  color: #d41203;
}

/* ==================================================
  Footer Styling
  ================================================== */

.site-footer {
  background-color: #111;
  padding: 0;
}

.site-footer h2,
.site-footer p {
  color: #fff;
}

.site-footer p {
  opacity: .75;
  line-height: 2.0925;
}

.site-footer h2,
.site-footer .btn {
  margin-bottom: 25px;
}

.site-footer .social-nav a {
  color: #fff;
  opacity: .25;
}

.site-footer .social-nav a:hover {
  opacity: 1;
}

.site-footer .bottom {
  background-color: #000;
  padding: 20px 0;
}

.site-footer .bottom .list-inline,
.site-footer .bottom p {
  margin: 0;
}

.site-footer .bottom .list-inline {
  position: relative;
  top: 5px;
}

.site-footer .bottom .list-inline a {
  color: #fff;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  margin-right: 15px;
}

.site-footer .bottom .list-inline a:hover {
  color: #d41203;
}

.site-footer .credits {
  color: #ddd;
}

.site-footer .credits a {
  color: #d41203;
}

/* ==================================================
  Responsive Styling
  ================================================== */

@media screen and (max-device-width: 767px) and (orientation: portrait) {
  #header {
    height: 50px;
  }

  #header #logo {
    margin: 0 !important;
  }

  #header #logo h1 {
    padding: 2px 0;
    font-size: 26px;
  }

  #header #logo img {
    max-height: 30px;
	margin-top: 0 !important;
  }

  #nav-menu-container {
    display: none;
  }

  #mobile-nav-toggle {
    display: inline;
  }
	
  #notshow, #chatbot {
    display: none !important;
  }
	
.box {
    margin: 45% auto 50px auto !important;
}
	
.box img {
	width: 45% !important;
	margin-bottom: 20px !important;
}
	
  .conts {
    margin: 15px 0 0 50px !important;
  }
	
  .conts > li {
    margin-bottom: 0 !important;
  }
    
  .block {
    padding-left: 30px;
    padding-right: 30px;
  }
    
  #about {
	padding: 40px 0 100px 0 !important;
  }
    
  #preloader > img {
    width: 65% !important;
    left: 20% !important;
    top: 35% !important;
  }
  
  .oth {
	display: inline-block;
	width: 100%;
  }
  
  .oth a {
	  width: 15% !important;
	  display: inline-block !important;
	  padding: 5px !important;
  }
	
  	.brochure {
		margin: 10px 33% 0 4% !important;
	}
	
  	.brochure span {
		margin: 0 !important;
		text-align: left !important;
	}
	
  	.brochure a {
		position: absolute !important;
		font-size: 0.5rem !important;
		padding: 5px 15px !important;
		margin-top: 5% !important;
	}

  .serv {
	padding: 0 30px;
	margin-bottom: 40px;
	}
	
	.serv ul {
		padding: 0 0 0 20px !important;
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
			
	.srv {
		margin-bottom: 0 !important;
	}
	
	.srv img {
		width: 100%;
	}

  .features {
    padding-bottom: 5px;
  }

  p,
  .block p {
    margin: 0;
  }

  .hero-brand {
    margin-bottom: 35px;
  }

  .tagline {
    margin: 35px 0;
  }

  h1 {
    font-size: 32px;
    margin: 0;
  }

  h2,
  .tagline {
    font-size: 24px;
  }

  h2 {
    margin-bottom: 25px;
  }

  h3 {
    font-size: 14px;
  }
	
  .carousel {
	margin-top: 0 !important;
  }
	
  .prev, .next {
	font-size: 30px !important;
	top: 100% !important;
  }
	
  .prev {
	left: 35% !important;
  }
	
  .next {
	right: 35% !important;
  }
	
  .stats-row {
    margin-top: 20px !important;
  }
	
  .faq-container {
	margin-bottom: 40px !important;
  }
	
  .faq-question {
	font-size: 0.75rem !important;
	padding: 10px 15px !important;
  }
	
  .faq-item {
	margin-bottom: 15px !important;
  }
	
  .faq-answer ul > li {
	margin-bottom: 10px !important;
  }
	
  .log-size {
	width: 150px !important;
	margin-top: 315px !important;
  }
	
  .part-size {
	width: 125px !important;
	right: 25px !important;
	top: 50px !important;
  }
	
.slide-content {
  text-align: center;
  bottom: 45% !important;
  left: 13% !important;
  max-width: 85% !important;
}

.slide-title {
  font-size: 25px !important;
  color: #000 !important;
  margin: 0 0 20px !important;
  max-width: 100% !important;
}

.slide-text {
  color: #fff;
  font-size: 15px;
  margin-top: 5px;
  line-height: 1.55;
}
	
.slide-nav {
	font-size: 1rem;
}
	
.titi img {
	right: 90px;
	top: -5px;
	width: 50px;
}

  .hero {
    padding: 75px 0;
  }
  .vid {
    position: absolute;
    top: -250px;
    left: 0px;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}
  .hero {
  display: table;
  position: relative;
  color: #fff;
  width: 100%;
  height: 100vh !important;
}

/*
.hero:after {
  content: '';
  z-index: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 104%;
  left: 0;
  top: 0;
}
*/

.hero h1 {
	margin: 0 0 70px 0;
	font-size: 20px;
	font-style: italic;
	font-weight: bold;
}

.block h2, .cta h2 {
	font-size: 20px;
}

#contact {
	padding: 30px 0;
}

.info {
    padding-top: 10px;
}

.serv li {
	font-size: 13.5px;
}

  .stats-col {
    margin-bottom: 0 !important;
  }

  .block {
    height: auto;
  }

  .feature-col {
    padding-bottom: 30px;
  }

  .portfolio-grid .card h3.card-title {
    font-size: 18px !important;
  }

  .portfolio-grid .card .card-text {
    font-size: 13px;
  }

  .team .team-over {
    padding-top: 20px;
  }

  .team .card .social-nav {
    margin-bottom: 15px;
    padding: 0;
  }

  .site-footer .social-nav {
    margin-bottom: 35px;
  }

  .site-footer .list-inline {
    text-align: center;
    padding-bottom: 15px;
  }

  .site-footer .list-inline li {
    display: inline-block;
  }
}
@media screen and (max-device-width: 767px) and (orientation: landscape) {
  #header {
    height: 50px;
  }

  #header #logo {
    margin: 10px 0 0 0;
  }

  #header #logo h1 {
    padding: 2px 0;
    font-size: 26px;
  }

  #header #logo img {
    max-height: 30px;
  }

  #nav-menu-container {
    display: none;
  }

  #mobile-nav-toggle {
    display: inline;
  }
    
  .block {
    padding-left: 30px;
    padding-right: 30px;
  }
    
  section,
  .block,
  .cta {
    padding: 35px 0;
  }
    
  #preloader > img {
    width: 35% !important;
    left: 33% !important;
    top: 25% !important;
  }
	
  .carousel {
	margin-top: 0 !important;
  }
	
  .prev, .next {
	font-size: 30px !important;
	top: 100% !important;
  }
	
  .prev {
	left: 35% !important;
  }
	
  .next {
	right: 35% !important;
  }
	
  .log-size {
	width: 150px !important;
	margin-top: 315px !important;
  }
	
  .part-size {
	width: 125px !important;
	right: 25px !important;
	top: 50px !important;
  }
	
.slide-content {
  text-align: center;
  bottom: 45% !important;
  left: 13% !important;
  max-width: 85% !important;
}

.slide-title {
  font-size: 25px !important;
  color: #000 !important;
  margin: 0 0 20px !important;
  max-width: 100% !important;
}

.slide-text {
  color: #fff;
  font-size: 15px;
  margin-top: 5px;
  line-height: 1.55;
}
  
  .oth {
	display: inline-block;
	width: 100%;
  }
  
  .oth a {
	  width: 15% !important;
	  display: inline-block !important;
	  padding: 5px !important;
  }

  .serv {
	padding: 0;
	margin-bottom: 40px;
	}
	
	.serv ul {
		padding: 0 20px;
		margin-top: 10px;
		margin-bottom: 20px;
	}
			
	.srv {
		width: 100%;
		display: inline-block;
		float: left;
		padding: 0 10px;
	}
	
	.srv img {
		width: 100%;
	}

  .features {
    padding-bottom: 5px;
  }

  p,
  .block p {
    margin: 0;
  }

  .hero-brand {
    margin-bottom: 35px;
  }

  .tagline {
    margin: 35px 0;
  }

  h1 {
    font-size: 32px;
    margin: 0;
  }

  h2,
  .tagline {
    font-size: 24px;
  }

  h2 {
    margin-bottom: 25px;
  }

  h3 {
    font-size: 14px;
  }

  .hero {
    padding: 75px 0;
  }
  .vid {
    position: absolute;
    top: -250px;
    left: 0px;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}
  .hero {
  display: table;
  position: relative;
  color: #fff;
  width: 100%;
  height: 153vh !important;
}

/*
.hero:after {
  content: '';
  z-index: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 104%;
  left: 0;
  top: 0;
}
*/

.hero h1 {
	margin: 0 0 70px 0;
	font-size: 20px;
	font-style: italic;
	font-weight: bold;
}

.block h2, .cta h2 {
	font-size: 20px;
}

#contact {
	padding: 30px 0;
}

.info {
    padding-top: 10px;
}

.serv ul {
	padding: 0;
}

.serv li {
	font-size: 13.5px;
}

  .stats-col {
    margin-bottom: 25px;
  }

  .block {
    height: auto;
  }

  .feature-col {
    padding-bottom: 30px;
  }

  .portfolio-grid .card h3.card-title {
    font-size: 18px !important;
  }

  .portfolio-grid .card .card-text {
    font-size: 13px;
  }

  .team .team-over {
    padding-top: 20px;
  }

  .team .card .social-nav {
    margin-bottom: 15px;
    padding: 0;
  }

  .site-footer .social-nav {
    margin-bottom: 35px;
  }

  .site-footer .list-inline {
    text-align: center;
    padding-bottom: 15px;
  }

  .site-footer .list-inline li {
    display: inline-block;
  }
}

@media screen and (max-device-width: 1024px) and (orientation: portrait) {
  #header {
    height: 50px;
  }

  #header #logo {
    margin: 0;
  }

  #header #logo h1 {
    padding: 2px 0;
    font-size: 26px;
  }

  #header #logo img {
    max-height: 30px;
	margin-top: 4px;
  }

  #nav-menu-container {
    display: none;
  }

  #mobile-nav-toggle {
    display: inline;
  }
	
  #notshow {
    margin-left: 30px;
  }
	
.box {
    margin: 40% auto 50px auto;
}
	
.box img {
	width: 45%;
	margin-bottom: 20px;
}
		
  .conts {
    margin: 13px 135px 0 135px;
  }
	
  .conts > li {
	display: inline-block;
    margin-bottom: 0;
  }
    
  .block {
    padding-left: 30px;
    padding-right: 30px;
  }
    
  section,
  .block,
  .cta {
    padding: 60px 0;
  }
    
  #preloader > img {
    width: 45%;
    left: 29%;
    top: 35%;
  }
	
.titi img {
	right: 275px;
	top: -3px;
	width: 50px;
}
	
  .carousel {
	margin-top: 0;
  }
	
  .prev, .next {
	font-size: 30px;
	top: 100%;
  }
	
  .prev {
	left: 40%;
  }
	
  .next {
	right: 40%;
  }
	
  .stats-row {
	margin-top: 25px;
  }
	
  .faq-container {
	margin-bottom: 40px;
  }
	
  .faq-question {
	font-size: 1.1rem;
	padding: 20px;
  }
	
  .faq-item {
	margin-bottom: 25px;
  }
	
  .faq-answer ul > li {
	margin-bottom: 10px;
  }
	
  .log-size {
	width: 190px;
	margin-top: 50%;
  }
	
  .part-size {
	width: 160px;
	right: 55px;
	top: 60px;
  }
	
.slide-content {
  bottom: 45%;
  left: 13%;
  z-index: 10;
  max-width: 85%;
  padding: 10px;
}

.slide-title {
  font-size: 35px;
  font-weight: bold;
  color: #000;
  margin: 0 0 30px;
  padding: 0;
}

.slide-text {
  color: #fff;
  font-size: 15px;
  margin-top: 5px;
  line-height: 1.55;
}
  
  .oth {
	display: inline-block;
	width: 100%;
  }
  
  .oth a {
	  width: 15% !important;
	  display: inline-block !important;
	  padding: 5px !important;
  }
	
  	.brochure {
		margin: 10px 10% 0 10%;
	}

  .serv {
	padding: 0;
	margin-bottom: 40px;
	}
	
	.serv ul {
		padding: 0 20px;
		margin-top: 0;
		margin-bottom: 0;
	}
			
	.srv {
		margin-bottom: 0;
	}
	
	.srv img {
		width: 100%;
	}

  .features {
    padding-bottom: 5px;
  }

  p,
  .block p {
    margin: 1rem;
  }

  .hero-brand {
    margin-bottom: 35px;
  }

  .tagline {
    margin: 35px 0;
  }

  h1 {
    font-size: 32px;
    margin: 0;
  }

  h2,
  .tagline {
    font-size: 24px;
  }

  h2 {
    margin-bottom: 25px;
  }

  h3 {
    font-size: 14px;
  }

  .hero {
    padding: 0;
  }
  .vid {
    position: absolute;
    top: -250px;
    left: 0px;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}
  .hero {
  display: table;
  position: relative;
  color: #fff;
  width: 100%;
  height: 60vh;
}

/*
.hero:after {
  content: '';
  z-index: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 104%;
  left: 0;
  top: 0;
}
*/

.hero h1 {
	margin: 0 0 70px 0;
	font-size: 20px;
	font-style: italic;
	font-weight: bold;
}

.block h2, .cta h2 {
	font-size: 20px;
}

#contact {
	padding: 30px 0;
}

.info {
    padding-top: 10px;
}

.serv li {
	font-size: 13.5px;
}

  .stats-col {
    margin-bottom: 5px;
  }

  .block {
    height: auto;
  }

  .feature-col {
    padding-bottom: 30px;
  }

  .portfolio-grid .card h3.card-title {
    font-size: 18px !important;
  }

  .portfolio-grid .card .card-text {
    font-size: 13px;
  }

  .team .team-over {
    padding-top: 20px;
  }

  .team .card .social-nav {
    margin-bottom: 15px;
    padding: 0;
  }

  .site-footer .social-nav {
    margin-bottom: 35px;
  }

  .site-footer .list-inline {
    text-align: center;
    padding-bottom: 15px;
  }

  .site-footer .list-inline li {
    display: inline-block;
  }
}

@media screen and (max-device-width: 1024px) and (orientation: landscape) {
  #header {
    height: 50px;
  }

  #header #logo {
    margin: 0;
  }

  #header #logo h1 {
    padding: 2px 0;
    font-size: 26px;
  }

  #header #logo img {
    max-height: 30px;
	margin-top: 0;
  }
    
  #header .social-nav {
    display: none !important;
  }

  #nav-menu-container {
    display: none;
  }

  #mobile-nav-toggle {
    display: inline;
  }
	
  #notshow {
    margin-left: 30px;
  }
	
.box {
    margin: 18% auto 50px auto;
}
	
.box img {
	width: 45%;
	margin-bottom: 20px;
}
		
  .conts {
    margin: 13px 255px 0 255px;
  }
	
  .conts > li {
	display: inline-block;
    margin-bottom: 0;
  }
    
  .block {
    padding-left: 30px;
    padding-right: 30px;
  }
    
  section,
  .block,
  .cta {
    padding: 60px 0;
  }
    
  #preloader > img {
    width: 25%;
    left: 38%;
    top: 35%;
  }
	
.mob-align {
	text-align: center!important;
}
	
.titi img {
	right: 142px;
	top: -6px;
	width: 53px;
}
	
  .carousel {
	margin-top: 0;
  }
	
  .prev, .next {
	font-size: 30px;
	top: 100%;
  }
	
  .prev {
	left: 40%;
  }
	
  .next {
	right: 40%;
  }
	
  .stats-row {
	margin-top: 30px;
  }
	
  .faq-container {
	margin-bottom: 45px;
  }
	
  .faq-question {
	font-size: 1.1rem;
	padding: 20px;
  }
	
  .faq-item {
	margin-bottom: 25px;
  }
	
  .faq-answer ul > li {
	margin-bottom: 10px;
  }
	
  .log-size {
	width: 180px;
	margin-top: 25%;
  }
	
  .part-size {
	width: 150px;
	right: 50px;
	top: 60px;
  }
	
.slide-content {
  bottom: 43%;
  left: 10%;
  z-index: 10;
  max-width: 85%;
  padding: 10px;
}

.slide-title {
  font-size: 35px;
  font-weight: bold;
  color: #000;
  margin: 0 0 30px;
  padding: 0;
}

.slide-text {
  color: #fff;
  font-size: 15px;
  margin-top: 5px;
  line-height: 1.55;
}
  
  .oth {
	display: inline-block;
	width: 100%;
  }
  
  .oth a {
	  width: 15% !important;
	  display: inline-block !important;
	  padding: 5px !important;
  }

  	.brochure {
		margin: 5px 10% 0 10%;
	}
	
  .serv {
	padding: 0;
	margin-bottom: 40px;
	}
	
	.serv ul {
		padding: 0 0 0 20px;
		margin-top: 0;
		margin-bottom: 0;
	}
			
	.srv {
		width: 100%;
		display: inline-block;
		float: left;
		padding: 0 10px;
		margin-bottom: 0;
	}
	
	.srv img {
		width: 100%;
	}

  .features {
    padding-bottom: 5px;
  }

  p,
  .block p {
    margin: 1rem;
  }


  .hero-brand {
    margin-bottom: 35px;
  }

  .tagline {
    margin: 35px 0;
  }

  h1 {
    font-size: 32px;
    margin: 0;
  }

  h2,
  .tagline {
    font-size: 24px;
  }

  h2 {
    margin-bottom: 25px;
  }

  h3 {
    font-size: 14px;
  }

  .hero {
    padding: 0;
  }
  .vid {
    position: absolute;
    top: -250px;
    left: 0px;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}
  .hero {
  display: table;
  position: relative;
  color: #fff;
  width: 100%;
  height: 80vh;
}

/*
.hero:after {
  content: '';
  z-index: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 104%;
  left: 0;
  top: 0;
}
*/

.hero h1 {
	margin: 0 0 70px 0;
	font-size: 20px;
	font-style: italic;
	font-weight: bold;
}

.block h2, .cta h2 {
	font-size: 20px;
}

#contact {
	padding: 30px 0;
}

.info {
    padding-top: 10px;
}

.serv li {
	font-size: 13.5px;
}

  .stats-col {
    margin-bottom: 10px;
  }

  .block {
    height: auto;
  }

  .feature-col {
    padding-bottom: 30px;
  }

  .portfolio-grid .card h3.card-title {
    font-size: 18px !important;
  }

  .portfolio-grid .card .card-text {
    font-size: 13px;
  }

  .team .team-over {
    padding-top: 20px;
  }

  .team .card .social-nav {
    margin-bottom: 15px;
    padding: 0;
  }

  .site-footer .social-nav {
    margin-bottom: 35px;
  }

  .site-footer .list-inline {
    text-align: center;
    padding-bottom: 15px;
  }

  .site-footer .list-inline li {
    display: inline-block;
  }
}