@font-face {
	font-family: Encode Sans;
	src: url('/fonts/EncodeSans-VariableFont_wdth,wght.ttf');
	font-stretch: normal condensed;
}


@keyframes dropdown {
	from {
		opacity: 0;
		transform: scale3d(1, 1, 1)
	}

	50% {
		opacity: 0.5;
		transform: scale3d(1.05, 1.05, 1.05)
	}

	to {
		opacity: 1;
		transform: scale3d(1, 1, 1)
	}
}

html {
	scroll-behavior: smooth;
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

body {
	position: initial !important;
	min-height: initial !important;
	min-width: 360px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	background-image: url("/pdtech/images/PD_Tech_Background.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	font-family: 'Encode Sans', sans-serif;
	font-size: 15px;
	font-weight: 400;
	text-decoration: none;
	line-height: 1.2;
	margin: 0;
	padding: 0;
}

#scroll-top {
	border-radius: 50%;
	position: fixed;
	bottom: 60px;
	right: 30px;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	font-size: 16px;
	background-color: black;
	border: none;
	color: white;
	text-decoration: none;
	display: none;
	opacity: 25%;
	transition: 0.3s;
	z-index: 99;
}

#scroll-top:hover {
	opacity: 100%;
}

#main {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1240px;
	margin: auto;
	min-height: 100%;
	background: #f0f0f0 url("/pdtech/images/PD_Tech_Wallpaper.png");
	overflow: visible;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

h2, h5, h6 {
	margin-top: 0;
	font-weight: 500;
}

h1 {
	font-family: 'Encode Sans', sans-serif;
	font-weight: bold;
	font-stretch: condensed;
	color: #5f5f5f;
	font-size: 2rem;
	margin-top: 0;
	margin-bottom: 0.5rem;
}

h2 {
	margin-bottom: 2rem;
}

h2, h5 {
	font-size: 1.125rem;
}

h6 {
	font-size: inherit;
	line-height: inherit;
	margin-bottom: 1rem;
}

a {
	text-decoration: inherit;
	color: inherit;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

table {
	caption-side: bottom;
	border-collapse: collapse;
}

thead, tbody, tr, td, tfoot {
	border-color: inherit;
	border-style: solid;
	border-width: 0;
}

article {
	border: 1px solid #a6a6a6;
	border-radius: 0.25rem;
	padding: 15px;
}

.prevent-select {
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */
}

.trademark {
	font-family: 'Encode Sans', sans-serif;
	font-weight: bold;
	font-stretch: condensed;
	color: #5f5f5f;
}

.shadow {
	text-shadow: 0 0 20px rgba(100, 0, 95, 0.3);
}

.highlight_tm {
	color: #Fc081b;
}

.floatingmenu {
	position: fixed;
	top: 0;
	width: 100%;
	max-width: 1240px;
	z-index: 5;
}

.floatingmenu:after {
	height: 20px;
	width: 100%;
	max-width: 1240px;
	content: "";
	position: fixed;
	top: 64px;
	background: #f0f0f0 url("/pdtech/images/PD_Tech_Wallpaper.png");
	z-index: 5;
}

.movefloatingmenu {
	transform: translate(0, 60px);
}

.frame {
	max-width: 1110px;
	margin: auto;
	padding-left: 65px;
	padding-right: 65px;
}

header, nav, footer {
	background: #c2ac6c url("/pdtech/images/PD_Tech_Wallpaper.png");
}

#page-content {
	flex-grow: 1;
}

img.banner {
	padding-top: 20px;
	padding-bottom: 20px;
	width: 100%;
	box-sizing: border-box;
}

nav {
	border-bottom: 4px solid #c2ac6c;
}

div.menu, div.footer {
	display: flex;
}

div.menu {
	flex-direction: row;
}

.burger-icon {
	float: right;
	margin-left: 20px;
	height: 44px;
	width: 25px;
	cursor: pointer;
	margin-top: 16px;
}

.burger-icon > span {
	display: block;
	height: 2px;
	background-color: #5f5f5f;
	margin: 5px 0;
	transition: background-color 0.3s ease-in, opacity 0.3s ease-in, transform 0.3s ease-in;
	transition-delay: 0.2s;
}

#offcanvas-overlay {
	background: rgba(0, 0, 0, 0.7);
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9999;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	visibility: hidden;
	opacity: 0;
}

#offcanvas-inner {
	padding-right: 20px;
	border-left: 4px solid #c2ac6c;
	top: 0;
	background: #c2ac6c url("/pdtech/images/PD_Tech_Wallpaper.png");
	color: #0f0f0f;
	width: 276px;
	height: 100%;
	position: fixed;
	top: 0px;
	overflow: inherit;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	z-index: 10000;
	right: -300px;
}

#offcanvas-overlay.overlay-show {
	visibility: visible;
	opacity: 1;
}

#offcanvas-inner.offcanvas-show {
	right: 0px;
}

.offcanvas-show span.ham-top, .active span.ham-top {
	transform: translate(0, 7px) rotate(-45deg);
}

.offcanvas-show span.ham-middle, .active span.ham-middle {
	opacity: 0;
}

.offcanvas-show span.ham-bottom, .active span.ham-bottom {
	transform: translate(0, -7px) rotate(45deg);
}

@media screen and (min-width: 950px) {
	div.footer {
		flex-direction: row;
	}

	.burger-icon {
		display: none;
	}

	.menu-main {
		display: block;
	}
}

@media screen and (max-width: 950px) {
	div.footer {
		flex-direction: column;
	}

	.burger-icon {
		display: block;
	}

	.menu-main {
		display: none;
	}
}

div.translate, div.navigate, div.contact {
	flex-grow: 1;
}

.flags {
	display: flex;
	flex-flow: row wrap;
}

.flag {
	flex-basis: 0;
	flex-grow: 0;
	width: 24px;
	height: 20px;
	cursor: pointer;
	margin-right: 2px;
}

.translate-info {
	font-size: 12px;
	color: #5f5f5f;
}

#google_translate_element, .skiptranslate {
	display: none;
}

.ggl {
	width: 42px;
	height: 16px;
	padding-right: 3px;
	position: relative; top: 5px;
}

.menu-main, .menu-sub, .menu-off, .menu-off-sub {
	font-size: 18px;
}

.menu-main, .menu-sub, .menu-off {
	list-style-type: none;
}

.menu-off-sub {
	list-style-type: circle;
}

.menu-main {
	float: right;
	margin: 0;
}

.menu-off, .menu-off-sub {
	padding-left: 20px;
}

.menu-sub {
	display: none;
	position: absolute;
	padding: 10px;
	border: 4px solid #c2ac6c;
	background: #c2ac6c url("/pdtech/images/PD_Tech_Wallpaper.png");
	box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
	z-index: 10;
}

.menu-main li:hover, .menu-off li:hover {
	color: black;
}

.menu-dropdown:hover span {
	cursor: pointer;
}

.menu-dropdown:hover .menu-sub {
	animation: dropdown 300ms;
	display: block;
}

.menu-item {
	padding: 0 10px;
	line-height: 60px;
}

.menu-off-dropdown {
	padding: 18px 10px;
	user-select: none;
}

.menu-off-dropdown .menu-child {
	padding: initial;
}

.menu-main .menu-item {
	float: left;
}

.menu-child {
	line-height: 30px;
}

.menu-off .menu-item, .menu-off-dropdown {
	border-bottom: 1px solid #a6a6a6;
}

section {
	margin: 30px 0;
}

.tabs {
	display: flex;
	flex-wrap: wrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.tab-button {
	flex-basis: 0;
	flex-grow: 1;
	border: 1px solid #a6a6a6;
	background-color: rgba(160, 160, 160, 0.2);
	border-radius: 0.25rem;
	box-sizing: border-box;
	padding: 8px 16px;
	display: block;
	width: 100%;
	text-align: center;
	cursor: pointer;
}

.tab-button:hover, .tab-active {
	background-color: rgba(240, 240, 240, 0.2);
}

article.show {
	display: block;
}

article.hide {
	display: none;
}

figure {
	display: table;
	margin: 0 0 1rem;
}

.fig-right {
	float: right;
	margin-left: 10px;
	max-width: 430px;
}

.fig-left {
	float: left;
	margin-right: 10px;
	max-width: 430px;
}

.fig-centre {
	margin-left: auto;
	margin-right: auto;
}

figcaption {
	font-size: 8pt;
	display: table-caption;
	caption-side: bottom;
}

figure img {
	display: table-row;
	width: 100%
}

.video-player {
	display: block;
	padding: 0px;
	margin: 0px auto;
	max-width: 640px;
}

video {
	width: 100%;
}

.video-caption {
	text-align: center;
	font-size: 8pt;
}

.flex-article {
	display: flex;
	flex-flow: row wrap;
}

.flex-content {
	flex: 10 1 50%;
	padding-right: 20px;
}

.flex-images {
	flex: 1 1 400px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lt-options {
	display: flex;
	flex-flow: row wrap;
}

.options-table {
	flex: 1 1 460px;
	font-size: 10pt;
	text-align: center;
	margin: 5px;
}

.options-table tbody {
	background-color: rgba(200, 200, 200, 0.2);
}

.options-table thead {
	background-color: rgba(160, 160, 160, 0.2);
}

.options-table tfoot {
	font-size: 8pt;
	text-align: left;
}

.opt-white-text {
	color: #ffffff;
}

.opt-blk {
	background-color: #000000;
}

.opt-wht {
	background-color: #ffffff;
}

.opt-dgn {
	background-color: #144e17;
}

.opt-spk {
	background-color: #f5afdb;
}

.opt-nvy {
	background-color: #171e73;
}

.opt-slv {
	background-color: #b6afa7;
}

.opt-brn {
	background-color: #493638;
}

.opt-byw {
	background-color: #fdf002;
}

.opt-tan {
	background-color: #533631;
}

.opt-cbl {
	background-color: #1abdfb;
}

.opt-egn {
	background-color: #28ac2c;
}

.opt-crs {
	background-color: #fc1f93;
}

.opt-mrn {
	background-color: #9a2c47;
}

.opt-gld {
	background-color: #bb9709;
}

.opt-sbl {
	background-color: #1a1ad9;
}

.opt-red {
	background-color: #fe2b25;
}

.opt-ppl {
	background-color: #5e3496;
}

.opt-org {
	background-color: #ff8000;
}

.heading-center {
	text-align: center;
}

.tos-in-1 {
	padding-left: 30px;
}

.tos-in-2 {
	padding-left: 60px;
}

.tos-in-3 {
	padding-left: 90px;
}

.lost {
	font-size: 14pt;
	text-align: center;
}

.compass {
	margin: 10px auto;
	display: block;
}

footer {
	border-top: 4px solid #c2ac6c;
	padding-top: 15px;
}

table.contact {
	width: 350px;
	height: 103px;
	margin-left: auto;
	margin-right: auto;
	font-size: 14px;
	text-align: left;
}

table.contact thead {
	margin-bottom: 2px;
	height: 2rem;
	vertical-align: top;
}

table.contact tbody {
	vertical-align: top;
}

address {
	font-style: normal;
}

#no-spam:hover {
	transition: 0.3s;
	color: white;
}

div.copyright {
	flex-grow: 1;
	text-align: center;
	font-size: 12pt;
}

img.copyrightlogo {
	width: 336px;
	height: 120px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}

/*!
 * Image Slide Show
 */

@keyframes rotate-down {
  0%    { transform: rotateX(0deg) scale3d(1, 1, 1); }
  20%   { transform: rotateX(0deg) scale3d(var(--rotate-shrink), var(--rotate-shrink), var(--rotate-shrink)); }
  80%   { transform: rotateX(-90deg) scale3d(var(--rotate-shrink), var(--rotate-shrink), var(--rotate-shrink)); }
  100%  { transform: rotateX(-90deg) scale3d(1, 1, 1); }
}

@keyframes rotate-up {
  0%    { transform: rotateX(0deg) scale3d(1, 1, 1); }
  20%   { transform: rotateX(0deg) scale3d(var(--rotate-shrink), var(--rotate-shrink), var(--rotate-shrink)); }
  80%   { transform: rotateX(90deg) scale3d(var(--rotate-shrink), var(--rotate-shrink), var(--rotate-shrink)); }
  100%  { transform: rotateX(90deg) scale3d(1, 1, 1); }
}

@keyframes rotate-right {
  0%    { transform: rotateY(0deg) scale3d(1, 1, 1); }
  20%   { transform: rotateY(0deg) scale3d(var(--rotate-shrink), var(--rotate-shrink), var(--rotate-shrink)); }
  80%   { transform: rotateY(90deg) scale3d(var(--rotate-shrink), var(--rotate-shrink), var(--rotate-shrink)); }
  100%  { transform: rotateY(90deg) scale3d(1, 1, 1); }
}

@keyframes rotate-left {
  0%    { transform: rotateY(0deg) scale3d(1, 1, 1); }
  20%   { transform: rotateY(0deg) scale3d(var(--rotate-shrink), var(--rotate-shrink), var(--rotate-shrink)); }
  80%   { transform: rotateY(-90deg) scale3d(var(--rotate-shrink), var(--rotate-shrink), var(--rotate-shrink)); }
  100%  { transform: rotateY(-90deg) scale3d(1, 1, 1); }
}

#cube-gallery {
	--gallery-size: 400px;
	--image-size: 320px;
	--face-move: 160px;
	--rotate-shrink: 0.86
}

@media screen and (max-width: 600px) {
	#cube-gallery {
		--gallery-size: 300px;
		--image-size: 240px;
		--face-move: 120px;
	}
}

@media screen and (max-width: 560px) {
	#cube-gallery {
		--gallery-size: 260px;
		--image-size: 210px;
		--face-move: 105px;
	}
}

@media screen and (max-width: 520px) {
	#cube-gallery {
		--gallery-size: 220px;
		--image-size: 180px;
		--face-move: 90px;
	}
}

#cube-gallery {
	height: var(--gallery-size);
	width: var(--gallery-size);
	display: flex;
	justify-content: center;
	align-items: center;
	perspective: 800px;
	perspective-origin: 50%;
	margin: auto;
}

#cg-images {
	display: none;
}

.cube-contain {
	height: var(--image-size);
	width: var(--image-size);
	transform-style: preserve-3d;
	animation-duration: 2s;
	animation-fill-mode: forwards;
}

.cube-contain img {
	height: var(--image-size);
	width: var(--image-size);
	position: absolute;
}

.front {
	transform: translateZ(var(--face-move));
}

.top {
	transform: rotateX(90deg) translateZ(var(--face-move));
}

.rotate-down {
	animation-name: rotate-down;
}

.bottom {
	transform: rotateX(-90deg) translateZ(var(--face-move));
}

.rotate-up {
	animation-name: rotate-up;
}

.left {
	transform: rotateY(-90deg) translateZ(var(--face-move));
}

.rotate-right {
	animation-name: rotate-right;
}

.right {
	transform: rotateY(90deg) translateZ(var(--face-move));
}

.rotate-left {
	animation-name: rotate-left;
}

/*!
 * Image Slide Show
 */


/*!
 * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
	--fa-style-family-classic: 'Font Awesome 6 Free';
	--fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free';
	--fa-style-family-brands: 'Font Awesome 6 Brands';
	--fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands';
}

@font-face {
	font-family: 'Font Awesome 6 Free';
	font-style: normal;
	font-weight: 900;
	font-display: block;
	src: url("/fonts/fa-solid-900.woff2") format("woff2"), url("/fonts/fa-solid-900.ttf") format("truetype");
}

@font-face {
	font-family: 'Font Awesome 6 Brands';
	font-style: normal;
	font-weight: 400;
	font-display: block;
	src: url("/fonts/fa-brands-400.woff2") format("woff2"), url("/fonts/fa-brands-400.ttf") format("truetype");
}

.fas,
.fab,
.fa-solid,
.fa-brands {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: var(--fa-display, inline-block);
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
}

.fas::before,
.fab::before,
.fa-solid::before,
.fa-brands::before {
	content: var(--fa);
}

.fas,
.fa-solid {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
}

.fab,
.fa-brands {
	font-family: 'Font Awesome 6 Brands';
	font-weight: 400;
}

.fa-home {
	--fa: "\f015";
}

.fa-phone-flip {
	--fa: "\f879";
}

.fa-envelope {
	--fa: "\f0e0";
}

.fa-angle-up {
	--fa: "\f106";
}

.fa-angle-down {
	--fa: "\f107";
}

.fa-whatsapp {
	--fa: "\f232";
}
/*!
 * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 */