/*

1 Reset Css #res
2 Font Face #face 
3 Inputs #input
4 Global Styles #glob
5 Wrappers #wrap
6 Custom CSS #custom
7 Media Query #media

*/

/*================================= 1 Reset Css ( #res ) =================================*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
nav ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a {
  text-decoration: none;
  outline: 0;
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #006db7;
  transition: all 0.5s ease 0s;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ababab;
  margin: 50px auto;
  padding: 0;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  height: auto;
  vertical-align: middle;
  transition: all 0.5s ease 0s;
}
.ie8 img {
  height: auto;
  width: auto\9;
}
.ie8 img.size-large {
  max-width: 60%;
  width: auto;
}
:hover {
  transition: all 0.5s ease 0s;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}

#wp-toolbar ul:after {
  content: none;
}

.last_li,
.last {
  margin-right: 0 !important;
  padding-right: 0 !important;
}
.first_li,
.first {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.clearfix:after,
ul:after,
ol:after,
.full_row:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .clearfix {
  display: block;
}
* html .clearfix {
  height: 1%;
}

/*================================= 2 Font Face ( #face ) =================================*/
/* TypoGraphy */
/*
font-family: 'Athiti', sans-serif;
font-family: 'Teko', sans-serif;
font-family: "Font Awesome 5 Brands" , "Font Awesome 5 free";
*/

/*================================= 3  Inputs ( #input ) =================================*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
::-webkit-input-placeholder {
  color: #343434;
  font-style: normal;
}
:-moz-placeholder {
  color: #343434;
  font-style: normal;
}
::-moz-placeholder {
  color: #343434;
  font-style: normal;
}
:-ms-input-placeholder {
  color: #343434;
  font-style: normal;
}

button::-moz-focus-inner {
  border: 0;
}
:focus {
  outline: none;
}
::-moz-focus-inner {
  border: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="submit"],
input[type="button"] {
  cursor: pointer;
  border: 0;
}
input:focus {
  outline: none;
}
body textarea {
  resize: none;
  height: 110px;
  padding: 5px 10px;
  font-weight: 600;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="date"],
input[type="email"],
input[type="number"],
textarea {
  border-radius: 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  width: 100%;
  height: 40px;
  padding: 5px 15px;
  box-shadow: none;
  -webkit-appearance: none;
  background-color: #eaeaea;
  border: none;
  border-bottom: 1px solid #0055a4 !important;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus {
  background: #f3f3f3;
}

form label {
  color: #000000;
  font-size: 20px;
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.form_row {
  padding-bottom: 25px;
}
.form_row.msg_row {
  padding-bottom: 10px;
}
.form_row.submitrow {
  padding-bottom: 0;
}

input:required {
  box-shadow: none;
}

/*input:required:focus{background-color: rgba(223, 73, 73, 0.2); border: 1px solid #df4949; box-shadow:none} */

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

/*================================= 4 Global Styles (#glob) =================================*/

/* Gobal #GAB */
.x:before {
  position: absolute;
  content: "";
}

/* Vertical Middle */
.x:before /*Parent Before*/ {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.x /* Child class */ {
  display: inline-block;
  vertical-align: middle;
}

/* HR Rules */
hr {
}

/* Image Alignment */
.alignnone,
a img.alignnone {
  margin: 5px 0 40px;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 40px auto;
}
.alignright,
a img.alignright {
  float: right;
  margin: 5px 0 30px 40px;
}
.alignleft,
a img.alignleft {
  float: left;
  margin: 5px 40px 30px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignnone:last-child,
.aligncenter:last-child,
.alignright:last-child,
.alignleft:last-child {
  margin-bottom: 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

p,
.content_row ul li,
.content_row ol li {
  color: #7a7a7a;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 25px;
  letter-spacing: -0.01em;
}

/*p:last-child{margin-bottom:0}*/
p.intro {
  color: #000000;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 30px;
}
/*p.intro:first-child{ margin-top: 0; }*/

p a {
  color: #006db7;
  font-weight: bold;
}
p strong {
  font-weight: 900;
}
p em {
  font-style: italic;
}

p a:hover {
  text-decoration: underline;
}

.content_row ul,
.content_row ol {
  padding-bottom: 25px;
}
.content_row ul li,
.content_row ol li {
  font-size: 20px;
  line-height: 28px;
  color: #7a7a7a;
  position: relative;
  margin-bottom: 0 !important;
}

.content_row ul li {
  padding-left: 55px;
}
.content_row ul li:before {
  content: "•";
  font-weight: bold;
  left: 0;
  position: absolute;
}

.content_row ol {
  counter-reset: section;
}
.content_row ol li {
  padding-left: 55px;
}
.content_row ol > li:before {
  content: "0" counter(section, decimal) ".";
  counter-increment: section;
  padding-right: 5px;
  position: absolute;
  left: 0;
  font-weight: 500;
}

a:focus,
a:hover {
  outline: none;
  text-decoration: none;
}

.visible_tab {
  display: none;
}

/* ================================= 5 Wrappers #wrap ================================= */

body {
  background: #fff;
  font-family: "Athiti", sans-serif;
  line-height: 1;
  color: #343434;
}

.container {
  max-width: 1265px;
  width: 100%;
}
.small_container {
  max-width: 910px;
  margin: 0 auto;
  float: none;
  padding: 0 15px;
}
.site_full {
  max-width: 1850px;
  margin: 0 auto;
  position: relative;
  padding: 0 15px;
}

/* ================================= 6 Custom CSS #custome ================================= */

span.s1 {
  font-size: 100px;
  line-height: 80px;
  color: #000;
  font-family: "Teko", sans-serif;
  letter-spacing: -0.01em;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  padding-bottom: 10px;
}
span.s2 {
  font-size: 35px;
  line-height: 35px;
  color: #000;
  font-family: "Teko", sans-serif;
  letter-spacing: -0.01em;
  font-weight: 700;
  text-transform: uppercase;
}
span.s3 {
  font-size: 17px;
  line-height: 26px;
  color: #000;
  letter-spacing: -0.01em;
  font-weight: 700;
  padding-bottom: 20px;
  display: block;
}

.btn {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  border: 2px solid #ffee3a;
  font-weight: bold;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 0;
  transition: all 0.5s ease 0s;
  margin-bottom: 30px;
}
.btn:hover {
  color: #ffee3a;
  background-color: #000;
  box-shadow: 0px 20px 50px 0px rgb(0 0 0 / 60%);
}

h1 {
  font-size: 24px;
  line-height: 32px;
  padding: 30px 0;
  letter-spacing: -0.01em;
  font-weight: 700;
}

h2 {
  font-size: 45px;
  line-height: 52px;
  font-weight: 700;
  color: #000;
  padding: 30px 0;
  letter-spacing: -0.01em;
}
.home h2 {
  font-size: 20px;
  line-height: 28px;
  color: #0055a4;
  letter-spacing: -0.01em;
  font-weight: 700;
  padding: 30px 0;
}

h3 {
  font-size: 33px;
  line-height: 40px;
  font-weight: 700;
  color: #000;
  padding: 30px 0;
  letter-spacing: -0.01em;
}
h4 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
  padding: 30px 0;
  letter-spacing: -0.01em;
}

.space {
  padding: 30px 0;
}

img {
  max-width: 100%;
}

.white_band {
  background-color: #fff;
}
.gray_band {
  background-color: #ededed;
}
.remove_top_padding {
  padding-top: 0 !important;
}

.sticky.main_header {
  background-color: #000;
}
.sticky .logo a img {
  max-width: 180px;
}
.sticky .main_menu ul li a {
  padding: 30px 0;
}
.main_header {
  position: fixed;
  width: 100%;
  background-color: transparent;
  z-index: 999;
  top: 0;
  transition: all 0.5s ease 0s;
}
.main_header:after {
  content: "";
  background: rgb(0, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 15%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: auto;
  z-index: 1;
}
.main_header .site_full {
  z-index: 9;
}
.main_header .row {
  align-items: center;
}
.logo a {
  display: inline-block;
}
.logo a img {
  max-width: 237px;
  box-shadow: 0px 20px 50px 0px rgba(14, 57, 82, 0.6);
  border-radius: 20px;
}
.main_menu {
  text-align: right;
}
.main_menu ul {
  display: inline-block;
}
.main_menu ul li {
  display: inline-block;
  margin: 0 17px;
}
.main_menu ul li a {
  font-size: 19px;
  line-height: 24px;
  color: #fff;
  font-weight: 700;
  padding: 50px 0;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  transition: all 0.5s ease 0s;
}
.main_menu ul li a:after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: #ffee3a;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.main_menu ul li:hover a:after {
  opacity: 1;
}
.main_menu ul li:hover a {
  color: #ffee3a;
}

.mo_menu {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  width: 100%;
  padding: 7px 15px;
  display: none;
  z-index: 999;
}
.mo_menu img {
  max-width: 90px;
}
.mo_menu ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
.mo_menu ul li {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.mo_menu ul li:last-child {
  text-align: right;
}
.mo_menu ul li a {
  font-size: 17px;
  line-height: 17px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.mm-menu {
  background: #292929;
}
.mm-listview > li > a,
.mm-listview > li > span {
  font-size: 16px;
  line-height: 24px;
}
.mm-navbar .mm-title {
  font-size: 16px;
  line-height: 20px;
  padding-left: 45px;
}
.mm-btn.mm-prev,
.mm-btn.mm-next {
  background-color: transparent !important;
}
.mo-menu i {
  margin-left: 5px;
  transition: all 0.5s ease 0s;
}
.mm-opened .mo_menu i.fa-bars:before {
  content: "\f061" !important;
}

.hero_band {
  position: relative;
  background: black;
}
.hero_band:after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.hero_band video {
  width: 100%;
  min-height: 600px;
  height: 100vh;
  object-fit: cover;
  display: block;
}
.hero_band .hero_band_content_wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: calc(100% - 30px);
  margin: 0 auto;
  max-width: 1265px;
  z-index: 9;
}
.hero_band .hero_band_content {
  max-width: 450px;
  padding-right: 50px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.hero_band h1 {
  color: #fff;
  padding-bottom: 20px;
}
.hero_band span.s1 {
  color: #fff;
}
.hero_band h3 {
  padding-top: 0;
  color: #fff;
}
.hero_band .btn {
  color: #fff;
}
.hero_band .btn:hover {
  color: #ffee3a;
}
.hero_band .hero_mo_img {
  display: none;
}

.proof_band {
  background-image: url(../img/branding-right.jpg);
  background-position: center;
  background-size: 100% 100%;
}
.proof_band ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0;
}
.proof_band ul li {
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  position: relative;
  padding-top: 15px;
}
.proof_band ul li:before {
  content: "";
  height: 8px;
  width: 25px;
  background-color: #0055a4;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50px;
}
.proof_band li p {
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  max-width: 310px;
  margin-bottom: 0;
}

.services_band {
  background-color: #eeeeee;
  position: relative;
}
.services_band h3 {
  padding-top: 10px;
}

.services_band .col-md-6:last-child {
  position: static;
}
.services_band .col-md-6 .service_img {
  position: absolute;
  right: 0;
  height: 100%;
  width: 50%;
  top: 0;
}
.services_band .col-md-6 .service_img:after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 50%;
  background: rgb(238, 238, 238);
  background: linear-gradient(
    90deg,
    rgba(238, 238, 238, 1) 15%,
    rgba(255, 255, 255, 0) 100%
  );
}
.services_band .col-md-6 .service_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact_btn a {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  border: 2px solid #ffee3a;
  font-weight: bold;
  text-transform: uppercase;
  padding: 11px 20px !important;
  border-radius: 0;
}
.contact_btn a:after {
  content: none !important;
}
.contact_btn a:hover {
  color: #ffee3a;
  background-color: #000;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.6);
}

.products_band {
  text-align: center;
}
.products_band .small_container {
  max-width: 750px;
}
.products_band h3 {
  padding-top: 0;
}

.products_band .btn {
  margin: 30px auto 30px;
  display: table;
}
.products_band ul li {
  text-align: left;
  color: #7a7a7a;
  padding-left: 25px;
  color: #7a7a7a;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  padding-left: 25px;
  position: relative;
}
.products_band li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Brands", "Font Awesome 5 free";
  font-weight: 700;
  position: absolute;
  left: 0;
  color: #0b2f40;
  font-size: 15px;
}

.gallary {
  padding-bottom: 60px;
}
.gallary .owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.seo_band span.s1 {
  text-transform: uppercase;
  color: #07222f;
  padding-bottom: 0;
}
.seo_band h3 {
  color: #07222f;
  font-weight: 700;
  padding-top: 10px;
  position: relative;
  padding-bottom: 15px;
}
.seo_band p {
  font-weight: 500;
  max-width: 500px;
}

.plastik {
  background-color: #07222f;
  position: relative;
}
.plastik:after {
  content: "";
  background-image: url(../img/branding.png);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: 90% 100%;
  pointer-events: none;
}
.plastik .btn {
  color: #fff;
}
.plastik .btn:hover {
  color: #ffee3a;
}
.plastik .s1 {
  color: #fff;
  padding-bottom: 10px;
}

.plastik .col-md-6:first-child img {
  width: 100%;
}
.plastik .plastik_img {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 25px;
  align-items: center;
}
.plastik p {
  color: #cce3ed;
}
.plastik .plastik_img h3 {
  padding-left: 20px;
  color: #fff;
}

.plastik .col-md-6 {
  padding: 0 40px;
}
.seo_band .col-md-6 {
  padding: 0 40px;
}
.plastik .row {
  margin: 0 -40px;
  align-items: center;
}
.seo_band .row {
  margin: 0 -40px;
}

.knack_plastik {
  margin-bottom: 30px;
  position: relative;
}
.knack_plastik:last-child {
  margin-bottom: 0px;
}
.knack_plastik .knack_plastik_logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* ================================= footer  ================================= */

footer .pre_footer .row {
  align-items: center;
}
footer .pre_footer {
  background-color: #000;
  padding: 45px 0;
  text-align: center;
}
footer .pre_footer span {
  color: #fff;
  display: inline-block;
  vertical-align: middle;
}
footer .pre_footer span strong {
  color: #0055a4;
}

footer .pre_footer a.btn {
  margin-left: 55px;
  color: #fff;
  margin-bottom: 0;
}
footer .pre_footer a.btn:hover {
  color: #ffee3a;
}

footer .post-footer {
  background-color: #292929;
  padding: 45px 0 30px;
}
footer .post-footer .container {
  max-width: 1560px;
}
.footer_content {
  max-width: 500px;
}
footer .post-footer ul li {
  padding-bottom: 3px;
}
footer .post-footer a {
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
footer .post-footer a:hover {
  color: #ffee3a;
  text-decoration: none;
}
footer .footer_logo {
  margin-bottom: 20px;
}
footer .post-footer a:hover {
  color: #ffee3a;
}
footer .post-footer span.s3 {
  color: #9c9c9c;
  text-transform: uppercase;
  padding-top: 0;
}
footer .post-footer p a {
  font-weight: 500;
}
footer .post-footer p,
footer .post-footer address {
  color: #9c9c9c;
  font-weight: 400;
  display: block;
  font-size: 14px;
  line-height: 22px;
  padding-bottom: 0;
  margin-bottom: 0;
}
footer .post-footer address,
footer .post-footer address p,
footer .post-footer address a {
  font-weight: 700;
}
footer .post-footer p strong {
  font-weight: 400;
  display: block;
  font-size: 14px;
  line-height: 22px;
}

footer .copyright {
  background-color: #292929;
  padding: 30px 0;
  text-align: center;
  position: relative;
}
footer .copyright:after {
  content: "";
  background-color: #0055a4;
  max-width: 1820px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 30px);
}
footer .copyright p {
  color: #9c9c9c;
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 0;
}
footer .copyright a {
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
  text-decoration: underline;
}
footer .copyright a:hover {
  color: #ffee3a;
  text-decoration: none;
}

.page_title {
  padding: 125px 0 0px;
  background-image: url(../img/bg_right_img.jpg);
  background-size: contain;
  background-size: 100% 100%;
}
.page_title_content {
  position: relative;
  padding: 15px 0;
}
.page_title_content:before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #6b8493;
}
.page_title_content:after {
  content: "";
  width: 50px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0055a4;
}
.page_title h1 {
  color: #fff;
  padding: 0;
  text-align: center;
	font-size: 32px;
	line-height: 48px;
}

.knack_plastik {
  padding: 30px 0;
}

.normal_content_band h3 {
  padding-bottom: 15px;
}
.normal_content_band h4 {
  padding-bottom: 15px;
}
.normal_content_band p .alignright {
  margin: 40px 0 30px 40px;
}
.normal_content_band p .alignleft {
  margin: 40px 40px 30px 0px;
}
.normal_content_band p .aligncenter {
  margin: 40px auto;
  display: block;
  text-align: center;
}

.gallery_band {
  padding-bottom: 130px;
}
.gallery_band h2 {
  text-align: center;
}
.gallery_band .owl-nav div {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  border: 2px solid #ffee3a;
  font-weight: bold;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 0;
  transition: all 0.5s ease 0s;
  margin-bottom: 30px;
  height: 45px;
  width: 130px;
  display: flex !important;
  align-items: center;
  text-align: center;
  justify-content: center;
  float: none !important;
  position: absolute;
  bottom: -70px;
  left: 0;
  right: 0;
  margin: 0 auto !important;
  color: transparent;
  transition: all 0.5s ease 0s;
}
.gallery_band .owl-nav div:hover {
  color: transparent;
  background-color: #000;
  box-shadow: 0px 20px 50px 0px rgba(200, 72, 59, 0.2);
}
.gallery_band .owl-nav div:after {
  content: "";
  font-family: "Font Awesome 5 Brands", "Font Awesome 5 free";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  font-size: 22px;
  transition: all 0.5s ease 0s;
}
.gallery_band .owl-nav div:hover:after {
  color: #fff;
}
.gallery_band .owl-nav div.owl-prev {
  right: 140px;
}
.gallery_band .owl-nav div.owl-prev:after {
  content: "\f30a";
}
.gallery_band .owl-nav div.owl-next {
  left: 140px;
}
.gallery_band .owl-nav div.owl-next:after {
  content: "\f30b";
}

.owl-carousel.inner-gallery .owl-item {
  max-height: 600px;
}
.owl-carousel.inner-gallery .owl-item img {
  width: auto;
  max-width: 100%;
  margin: auto;
  display: block;
}

.contact_band {
  padding: 60px 0;
}
.contact_band .row {
  margin: 0 -40px;
}
.contact_band .col-md-6 {
  padding: 0 40px;
}
.contact_band .intro {
  margin-top: 0;
  margin-bottom: 0;
}

.contact_band a[href^="tel:"] {
  font-size: 60px;
  line-height: 55px;
  color: #000;
  font-weight: 700;
  font-family: "Teko", sans-serif;
  margin-bottom: 25px;
  display: block;
}
.contact_band h5 {
  font-size: 45px;
  line-height: 52px;
  color: #000;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 40px;
  margin-bottom: 10px;
}

.contact_band span.s2 {
  font-size: 60px;
  line-height: 55px;
  color: #000;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}
.contact_band span.s2 + p.intro {
  margin-bottom: 25px;
}

.contact_band form {
  padding: 35px 30px 25px;
  border: 2px solid #eaeaea;
}
.contact_band label {
}
.contact_band label sup {
  color: #ff0000;
  position: relative;
  top: 0px;
  left: 2px;
}
.contact_band form .btn {
  border: 2px solid #ffee3a !important;
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 0;
}
.contact_band form .btn:hover {
  box-shadow: 0px 20px 50px 0px rgba(200, 72, 59, 0.2);
}
.contact_band .form-group {
  margin-bottom: 15px;
}

.contact_band .form-group.flex_box {
  display: flex;
  align-items: center;
}
.contact_band .form-group.flex_box label {
  min-width: 70px;
  margin-bottom: 0;
  margin-right: 15px;
  display: inline-table;
}

.sign_off_band .s2 {
  font-size: 43px;
  line-height: 47px;
  text-align: center;
  color: #fff;
  max-width: 650px;
  display: table;
  margin: 0 auto;
}
.sign_off_band .s2 strong {
  color: #0055a4;
}

.sign_off_band {
  padding: 200px 0;
  background-image: url(../img/fabrication-services.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

label.error {
  display: none !important;
}
input.error {
  border-color: #ff0000 !important;
}

.response_msg .error {
  border: 1px solid #ff0000;
  text-align: center;
  padding: 0px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
.response_msg .success {
  border: 1px solid #008000;
  text-align: center;
  padding: 0px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

.btn.focus,
.btn:focus {
  box-shadow: none !important;
}

.brading_left {
  position: relative;
}
.brading_left:before {
  content: "";
  background-image: url(../img/bg_img.png);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: 10% 100%;
  pointer-events: none;
  z-index: 1;
}

.brading_right {
  position: relative;
}
.brading_right:after {
  content: "";
  background-image: url(../img/bg_img.png);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: 10% 100%;
  pointer-events: none;
  transform: rotate(180deg);
  z-index: 1;
}

.brading_left .container,
.brading_right .container,
.brading_left .small_container,
.brading_right .small_container {
  position: relative;
  z-index: 9;
}

.seo_band.brading_right {
  background-position: 100% 100%;
}
.main_menu ul li {
  position: relative;
}
.main_menu ul li:nth-child(4) a::before {
  content: "...";
  color: #ffee3a;
  position: absolute;
  bottom: -9px;
  cursor: pointer;
  width: 100%;
  text-align: center;
  height: 68px;
}
.sticky .main_menu ul li:nth-child(4) a::before {
  bottom: -30px;
}
.main_menu li ul {
  background-color: #000;
  position: absolute;
  bottom: -33px;
  left: 0;
  width: max-content;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s;
}
.sticky .main_menu li ul {
  position: absolute;
  top: 74px;
  bottom: unset;
  transition: all 0.3s;
}
.main_menu li ul a::before,
.main_menu li ul a::after {
  display: none;
}
.main_menu li ul a {
  padding: 20px 0;
}
.main_menu li:nth-child(4):hover ul {
  visibility: visible;
  opacity: 1;
}
#careers {
  position: relative;
}
#careers_anc {
  display: block;
  position: absolute;
  top: -50px;
  background-color: transparent;
  width: 5px;
  height: 5px;
  left: 0;
}

.service-band {
	padding: 80px 20px;
}

.faq-band {
	padding: 40px 20px 80px;
}


.service-band-proof-points {
	padding: 30px 20px 50px;
}


.service-band-proof-points ul li {
	font-weight: 600;
	font-size: 22px;
	padding-left: 40px;
	margin-bottom: 15px !important;
}

.service-band-proof-points ul li::before {
    content: "\f058";
    font-weight: bold;
    left: 0px;
    position: absolute;
	font-family: "Font Awesome 5 Free";
	font-size: 24px;
	color: #0055a4;
}

.faq-item {
	border: 1px solid #aaa;
	margin-bottom: 10px;
	cursor: pointer;
	padding: 15px;	
}

.faq-item:hover {
	background-color: #000;
	color: #fff
}

.faq-question {
	font-weight: 600;
	font-size: 22px;
}

.faq-answer {
	display: none;
	padding: 15px;
	color: #000 !important;
	background-color: #fff;
	font-size: 20px;
	border-top: 1px solid #000;
	margin-top: 15px;
}



.cta-band-style {
	padding: 80px 20px;
	text-align: center;
}

.cta-band-style p {
	margin-top: 20px;
	margin-bottom: 30px;
	font-size: 26px;
	font-weight: 700;
}


.black-style {
	background-color: #000;
	color: #ffee3a;
	border: 1px #000 solid;
	margin: 0px 10px;
}


.black-style:hover {
	background-color: #ffee3a !important;
	color: #000 !important;
}

.black-style-ghost {
	color: #000;
	border: 1px #000 solid;
	margin: 0px 10px;	
}

.gmap-frame {
	width: 100%;
	height: 350px;
	border: 0;
}
 


/* ================================= 7 Media Query #media ================================= */
/********************************* Mobile Potrait #MP ********************************/
@media screen and (max-width: 320px) and (orientation: portrait) {
}

/********************************* Mobile Potrait ********************************/
@media screen and (max-width: 480px) and (orientation: portrait) {
}

/********************************* Mobile landscape ********************************/
@media screen and (max-width: 480px) and (orientation: landscape) {
}

/* ================================= Common For All mobile definitions #mx ================================= */
@media all and (max-width: 767px) {
  #careers_anc {
    top: -40px;
  }
  #pdfs a {
    font-size: 16px !important;
  }
  span.s1 {
    font-size: 60px;
    line-height: 55px;
  }
  span.s2 {
    font-size: 26px;
    line-height: 26px;
  }
  span.s3 {
    font-size: 17px;
    line-height: 26px;
    padding-bottom: 15px;
  }

  .btn {
    display: block;
    text-align: center;
    margin-bottom: 15px;
  }

  h1 {
    font-size: 22px;
    line-height: 32px;
    padding: 15px 0;
    margin-top: 20px;
    padding-bottom: 0;
  }
  h2 {
    font-size: 36px;
    line-height: 42px;
    padding: 15px 0;
  }
  .home h2 {
    font-size: 17px;
    line-height: 25px;
    padding: 15px 0;
  }

  h3 {
    font-size: 26px;
    line-height: 32px;
    padding: 15px 0;
  }
  .plastik .plastik_img h3 {
    font-size: 22px;
    line-height: 28px;
    padding: 15px 0 15px 20px;
  }
  h4 {
    font-size: 20px;
    line-height: 26px;
    padding: 15px 0;
  }

  .space {
    padding: 15px 0;
  }
  .main_page {
    padding-top: 43px;
  }

  .mo_menu {
    display: block;
  }
  .main_header {
    display: none;
  }
  .hero_band {
    background-color: #07222f;
  }
  .hero_band .hero_mo_img {
    display: block;
    width: 100%;
  }
  .hero_band video {
    height: auto;
    width: 100%;
    position: absolute;
    z-index: 10;
    min-height: auto;
  }
  .hero_band .hero_band_content {
    max-width: 100%;
    padding-right: 0;
    position: relative;
    right: 0;
    top: 0;
    transform: none;
  }
  .hero_band .hero_band_content_wrapper {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
    z-index: 9;
  }
  .hero_band .hero_band_content {
    padding: 15px;
    text-align: center;
  }
  .proof_band ul li {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .proof_band ul li:last-child {
    margin-bottom: 0;
  }
  .proof_band ul li:before {
    right: 0;
    margin: 0 auto;
  }
  .proof_band li p {
    max-width: 100%;
  }

  .services_band .col-md-6:last-child {
    position: relative;
  }
  .services_band .col-md-6 .service_img {
    position: relative;
    right: 0;
    height: 100%;
    width: calc(100% + 30px);
    top: 0;
    margin-bottom: 15px;
    margin-left: -15px;
    margin-top: 15px;
  }
  .services_band .col-md-6 .service_img:after {
    content: none;
  }

  .products_band .col-md-6 + .col-md-6 {
    margin-top: 30px;
  }
  .products_band ul li {
    display: table;
    margin: 0 auto;
  }
  .plastik {
    padding-top: 30px;
  }

  .gallary {
    padding-bottom: 95px;
  }
  
  .gallary .owl-nav div{
	font-size: 16px;
    line-height: 20px;
    color: #000000;
    border: 2px solid #ffee3a;
    font-weight: bold;
    text-transform: uppercase;
    padding: 11px 20px;
    border-radius: 0;
    transition: all 0.5s ease 0s;
    margin-bottom: 30px;
    height: 45px;
    width: 130px;
    display: flex !important;
    align-items: center;
    text-align: center;
    justify-content: center;
    float: none !important;
    position: absolute;
    bottom: -70px;
    left: 0;
    right: 0;
    margin: 0 auto !important;
    color: transparent;
    transition: all 0.5s ease 0s;
	}
	.gallary .owl-nav div.owl-prev {
		right: 140px;
	}
	.gallary .owl-nav div.owl-next {
	    left: 140px;
	}
	.gallary .owl-nav div.owl-prev:after {
	    content: "\f30a";
	}
	.gallary .owl-nav div.owl-next:after {
	    content: "\f30b";
	}
	.gallary .owl-nav div:after {
	    content: "";
	    font-family: "Font Awesome 5 Brands", "Font Awesome 5 free";
	    position: absolute;
	    left: 0;
	    right: 0;
	    top: 50%;
	    transform: translateY(-50%);
	    color: #000;
	    font-size: 22px;
	    transition: all 0.5s ease 0s;
	}
  
  .seo_band .col-md-6,
  .plastik .col-md-6 {
    padding: 0 15px;
  }

  .contact_band .row {
    margin: 0 -15px;
  }
  .contact_band .col-md-6 {
    padding: 0 15px;
  }

  .seo_band .row {
    margin: 0 -15px;
  }
  .plastik .row {
    margin: 0 -15px;
  }
  footer .pre_footer a.btn {
    margin: 20px auto 0;
  }
  footer .post-footer .col-md-4 + .col-md-4 {
    margin-top: 30px;
  }
  footer .post-footer {
    padding: 30px 0;
  }
  footer .pre_footer {
    padding: 30px 0;
  }
  .gallary .owl-carousel .owl-stage {
    display: block;
  }
  .cd-top {
    right: 30px;
    bottom: 30px;
  }

  .page_title {
    padding: 30px 0 0px;
  }
  .knack_plastik {
    padding: 15px 0;
  }
  .knack_plastik .knack_plastik_logo {
    max-width: 100px;
  }

  .gallery_band {
    padding-bottom: 100px !important;
  }
  .contact_band {
    padding: 30px 0;
  }
  .contact_band a[href^="tel:"] {
    font-size: 40px;
    line-height: 40px;
  }

  .contact_band h5 {
    font-size: 35px;
    line-height: 35px;
    margin-top: 25px;
  }
  .contact_band span.s2 {
    font-size: 44px;
    line-height: 44px;
  }
  .contact_band .col-md-6 + .col-md-6 {
    margin-top: 30px;
  }
  .contact_band form {
    padding: 30px 20px 15px;
  }
  .sign_off_band {
    padding: 100px 0;
  }
  .sign_off_band .s2 {
    font-size: 36px;
    line-height: 42px;
  }
  .contact_band img {
    display: block;
    margin: 0 auto;
  }

  p.intro {
    font-size: 20px;
    line-height: 26px;
  }

  p,
  .content_row ul li,
  .content_row ol li {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
  }
  .content_row ul,
  .content_row ol {
    padding-bottom: 15px;
  }

  .content_row ul li,
  .content_row ol li {
    padding-left: 30px;
  }

  html * {
    max-height: 1000000px;
  }

  /* Image Alignment */
  .alignnone,
  a img.alignnone,
  .aligncenter,
  div.aligncenter,
  .alignright,
  a img.alignright,
  .alignleft,
  a img.alignleft {
    margin: 15px auto;
    float: none;
    display: block;
    text-align: center;
  }

  .normal_content_band p .alignright {
    margin: 15px auto;
  }
  .normal_content_band p .alignleft {
    margin: 15px auto;
  }
  .normal_content_band p .aligncenter {
    margin: 15px auto;
  }
  .page_title h1 {
		font-size: 20px;
		line-height: 32px;
	}
}

@media only screen and (min-width: 1025px) and (max-width: 1220px) {
  .main_menu ul li {
    margin: 0 14px;
  }
  .main_menu ul li a {
    font-size: 15px;
  }
}

/********************************* ipad portrait #ip ********************************/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  span.s1 {
    font-size: 60px;
    line-height: 50px;
  }
  footer .pre_footer a.btn {
    display: table;
    margin: 30px auto 0;
  }

  .mo_menu {
    display: block;
  }
  .main_header {
    display: none;
  }
  .main_page {
    padding-top: 62px;
  }
  .mo_menu img {
    max-width: 150px;
  }

  .plastik .col-md-6,
  .seo_band .col-md-6 {
    padding: 0 15px;
  }
  .plastik .row,
  .seo_band .row {
    margin: 0 -15px;
  }

  .contact_band .row {
    margin: 0 -15px;
  }
  .contact_band .col-md-6 {
    padding: 0 15px;
  }

  .page_title {
    padding: 50px 0 0px;
  }

  .hidden-tab {
    display: none;
  }

  .visible_tab {
    display: block !important;
  }
  .page_title h1 {
		font-size: 26px;
		line-height: 38px;
	}
}

/********************************* ipad landscape #il ********************************/
@media only screen and (min-width: 1001px) and (max-width: 1024px) {
}

@media only screen and (min-width: 1025px) and (max-width: 1100px) {
}

/* ================================= Small Computer #Sc ================================= */
@media only screen and (min-width: 1300px) {
  .first_col,
  .first_li {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  .last_col,
  .last_li {
    padding-right: 0 !important;
    margin-right: 0 !important;
  }
}

/* ================================= Large Computer #lc ================================= */
@media screen and (min-width: 1450px) {
}

/* IE10 Only CSs */
@media screen and (min-width: 0\0) {
}

/* ie10, ie11+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
}
