/*
CTC Separate Stylesheet
Updated: 2021-06-23 13:56:08
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/*
font-family: 'Montserrat', sans-serif;
font-family: 'PT Serif', serif;
*/

:root {
	--obi-green: #82a24d; /* var(--obi-green) */
	--obi-darkgreen: #6f8b41; /* var(--obi-darkgreen) */
	--obi-black: #1a1a1a; /* var(--obi-black) */
	--obi-darkgray: #262626; /* var(--obi-darkgray) */
	--obi-darkblue: #0e3d54; /* var(--obi-darkblue) */
	--obi-darkerblue: #07202c; /* var(--obi-darkblue) */
	--obi-body: #e3e8e8; /* var(--obi-body) */
}

* {
	font-family: 'Montserrat', sans-serif;
}

html, body {
  height: 100%;
}

body {
	background: var(--obi-body);
}

.obiter-page-wrap {
  min-height: 100%;
  /* equal to footer height */
  margin-bottom: -400px;
  overflow: hidden;
}

.obiter-page-wrap:after {
  content: "";
  display: block;
}

.obiter-page-wrap:after {
  height: 400px;
}

.obiter-footer-holder {
  background-color: var(--obi-darkblue);
  /*border-top: solid 3px var(--obi-green);*/
  padding: 0px 0px 0px 0px;
  height: auto;
  min-height: 400px;
  overflow: hidden;
  position: relative;
  /*-webkit-box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.2);
  box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.2);*/
}

.obiter-footer-holder * {
}

.home-header-carousel {
    margin: 0px;
}

.home-header-slick {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.home-header-item {
	display: inline-block;
	position: relative;
	width: 100%;
	height: 600px;
	vertical-align: top;
}

.home-header-item:after {
	display: block;
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	mix-blend-mode: multiply;
}

.home-header-item:before {
	display: block;
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 110px;
	background-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent);
	z-index: 10;
}

.home-header-item.blue-overlay:after {
	background: rgba(10, 48, 66,0.77);
	mix-blend-mode: normal;
}

.home-header-item.green-overlay:after {
	background: rgba(41, 52, 24,0.77);
	mix-blend-mode: normal;
}

.home-header-item.red-overlay:after {
	background: rgba(77, 0, 25,0.77);
	mix-blend-mode: normal;
}

.home-header-item.purple-overlay:after {
	background: rgba(46, 0, 77,0.77);
	mix-blend-mode: normal;
}

img.home-header-background-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 0px;
}

.homepage-header-item-container {
    position: relative;
    z-index: 10;
    height: 100%;
}

.home-header-text {
    position: absolute;
    bottom: 80px;
}

.home-header-text * {
    color: #FFF;
    text-shadow: 0 0 3px rgba(0,0,0,0.7), 0 0 5px rgba(0,0,0,0.5);
}

.home-header-text h1 {
    font-size: 50px;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0px;
}

.home-header-text a.home-header-link-btn {
	display: inline-block;
	text-decoration: none;
	color: var(--obi-green);
	font-size: 18px;
	font-weight: 600;
	line-height: 1em;
	padding: 5px 0px 5px 3px;
	margin: 10px 0px 0px 0px;
	transition: all ease 0.3s;
}

.home-header-text a.home-header-link-btn i.fas {
	margin: 0px 10px 0px 0px;
	color: inherit;
}

.home-header-text a.home-header-link-btn:hover {
	color: #FFF;
	padding: 5px 0px 5px 7px;
}

.home-header-item {
	display: inline-block;
	position: relative;
	width: 100%;
	/*height: 650px;*/
	height: -moz-calc(100vh - 460px);
    height: -webkit-calc(100vh - 460px);
    height: calc(100vh - 460px);
	min-height: 600px;
	vertical-align: top;
}

ul.slick-dots {
    text-align: center;
    position: absolute;
    bottom: 0px;
    width: 100%;
    padding: 0px;
}

ul.slick-dots li {
    list-style-type: none;
    display: inline-block;
}

ul.slick-dots li button {
    display: block;
    letter-spacing: 30px;
    color: transparent;
    border: none;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    margin: 0px 7px;
    background: rgba(255,255,255,0.4);
    overflow: hidden;
    outline: none;
    transition: all ease 0.3s;
    line-height: 0em;
    padding: 0px;
}

ul.slick-dots li.slick-active button {
    background: rgba(255,255,255,1.0);
}

.navbar-brand a img {
    height: 40px;
    transition: all ease 0.3s;
}

header#masthead.scroll-nav-masthead .navbar-brand a img {
    height: 30px;
}

header#masthead {
    margin-bottom: 0;
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    z-index: 10000;
    width: 100%;
    transition: all ease 0.3s;
}

header#masthead.scroll-nav-masthead {
    background: var(--obi-darkblue);
    padding-top: 5px;
   	padding-bottom: 5px;
   	border-bottom: solid 1px var(--obi-green);
}

body:not(.theme-preset-active) #masthead .navbar-nav > li {
    margin: 0px 0px 0px 35px;
}

body:not(.theme-preset-active) #masthead .navbar-nav > li:first-child {
    margin: 0px 0px 0px 0px;
}

body:not(.theme-preset-active) #masthead .navbar-nav > li > a {
    color: rgba(255,255,255,1.0);
    padding: 10px 2px 5px 2px;
    font-weight: 600;
    font-size: 16px;
    transition: all ease 0.3s;
    border-bottom: solid 2px transparent;
    text-shadow: 0 0 3px rgba(0,0,0,0.7), 0 0 5px rgba(0,0,0,0.5);
    letter-spacing: 0.25px;
}

body:not(.theme-preset-active) #masthead .navbar-nav > li > a:hover {
    color: rgba(255,255,255,1.0);
    font-weight: 600;
    border-bottom: solid 2px #FFF;
}

body:not(.theme-preset-active) #masthead .navbar-nav > li:last-child a {
    color: #FFF;
    padding: 5px 10px 4px 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all ease 0.3s;
    border-bottom: none;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.2);
    background: var(--obi-darkgreen);
    text-shadow: none;
    position: relative;
    top: 4px;
    border-radius: 3px;
}

body:not(.theme-preset-active) #masthead .navbar-nav > li:last-child a:hover {
    color: #FFF;
    font-weight: 600;
    border-bottom: none;
    background: var(--obi-green);
}

body:not(.theme-preset-active) #masthead.scroll-nav-masthead .navbar-nav > li > a {
    font-size: 14px;
    padding: 7px 0px 3px 0px;
    font-weight: 500;
}

body:not(.theme-preset-active) #masthead.scroll-nav-masthead .navbar-nav > li > a:hover {
    border-bottom: solid 1px var(--obi-green);
    font-weight: 500;
}

body:not(.theme-preset-active) #masthead.scroll-nav-masthead .navbar-nav > li:last-child a {
    padding: 5px 8px 4px 8px;
    font-weight: 600;
    font-size: 15px;
    top: 0px;
    color: #FFF;
    background: var(--obi-darkgreen);
}

body:not(.theme-preset-active) #masthead.scroll-nav-masthead .navbar-nav > li:last-child a:hover {
    font-weight: 600;
    background: var(--obi-green);
}

ul.dropdown-menu {
    background: var(--obi-darkblue);
    border-radius: 0px;
    border: solid 1px #FFF;
    padding: 5px 0px;
    -webkit-box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 20%);
}

ul.dropdown-menu li a.dropdown-item {
    color: #FFF;
    transition: all ease 0.2s;
    font-weight: 500;
}

ul.dropdown-menu li a.dropdown-item:hover {
    color: #FFF;
    font-weight: 500;
    background: var(--obi-darkerblue);
}

#masthead .navbar-toggler {
    color: #DDD;
    border-color: transparent;
    font-size: 24px;
    border: none;
    transition: all ease 0.3s;
    text-shadow: 0 0 3px rgba(0,0,0,0.7), 0 0 5px rgba(0,0,0,0.5);
}

#masthead .navbar-toggler:hover,
#masthead .navbar-toggler:active,
#masthead .navbar-toggler:focus {
	color: #FFF;
    outline: none;
    border: none;
}

.about-us-widget-item-text,
.about-us-widget-item-image-holder {
	display: none;
}

.about-us-widget-item-text:first-child {
	display: block;
}

.about-us-widget-item-image-holder:first-child {
	display: block;
}

.about-us-widget-left {
    width: 400px;
    background: var(--obi-darkblue);
    padding: 20px 30px;
    position: relative;
}

.about-us-widget-left {
    width: 400px;
    background: var(--obi-darkblue);
    padding: 40px 25px;
    position: relative;
}

.about-us-widget-left:before {
	display: block;
    width: 100vw;
    height: 100%;
    content: '';
    position: absolute;
    right: 0;
    top: 0px;
    background: var(--obi-darkblue);
    background-image: linear-gradient(to right, var(--obi-darkerblue) , var(--obi-darkblue));
}

.about-us-widget-left .about-us-widget-item-text {
	position: relative;
	z-index: 10;
}

.about-us-widget {
	margin: 0px;
	background: var(--obi-darkerblue);
}

.about-us-widget-right {
    width: -moz-calc(100% - 400px);
    width: -webkit-calc(100% - 400px);
    width: calc(100% - 400px);
    position: relative;
}

.about-us-widget-container {
	display: flex;
	height: 400px;
}

body.home .site-content {
	display: none;
}

.below-home-carousel {
    background: #FFF;
    box-shadow: 0px 0px 2px 1px rgb(0 0 0 / 20%);
    margin: 0px;
    padding: 20px 15px;
    position: relative;
    z-index: 100;
}

.below-home-carousel h1 {
    margin: 0px;
    text-align: center;
    line-height: 1em;
    padding: 0px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--obi-darkblue);
}

.about-us-widget-all-images {
	width: 100%;
	height: 100%;
}

.about-us-widget-item-image-holder {
	width: 100%;
	height: 100%;
}

.about-us-widget-item-image-holder img.about-us-widget-item-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-us-widget-all-buttons {
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	display: flex;
}

.about-us-widget-item-button {
	display: block;
	width: 33.3%;
	border: none;
	background:  var(--obi-darkgreen);
	padding: 20px 10px;
	color: #FFF;
	font-size: 20px;
	border-right: solid 1px rgba(255,255,255,0.1);
	border-top: solid 1px rgba(255,255,255,0.1);
	transition: all ease 0.3s;
	font-weight: 500;
}

.about-us-widget-item-button:last-child {
	border-right: none;
}

.about-us-widget-item-button:hover {
	background: var(--obi-green);
}

.about-us-widget-item-button:active,
.about-us-widget-item-button:focus,
.about-us-widget-item-button:focus-visible {
	border: none;
	outline: none;
}

.about-us-widget-item-text h1 {
	color: #FFF;
	font-weight: 700;
	line-height: 1.2em;
	margin: 0px 0px 30px 0px;
	padding: 0px;
	font-size: 40px;
}

.about-us-widget-item-text p {
	color: rgba(255,255,255,0.8);
	font-weight: 400;
	line-height: 2.0em;
	margin: 0px 0px 30px 0px;
	padding: 0px;
	font-size: 16px;
}

.obi-link-btn,
a.obi-link-btn {
	display: inline-block;
	background: var(--obi-black);
	text-decoration: none;
	transition: all ease 0.3s;
	padding: 7px 15px;
	font-size: 18px;
	font-weight: 500;
	color: #FFF;
	border-radius: 3px;
	border: none;
}

.obi-link-btn:hover,
a.obi-link-btn:hover,
.obi-link-btn:active,
a.obi-link-btn:active,
.obi-link-btn:focus,
a.obi-link-btn:focus {
	background: var(--obi-darkgray);
	text-decoration: none;
    border-color: none !important;
    box-shadow: none !important;
}

.obi-link-btn-green,
a.obi-link-btn-green {
	background: var(--obi-darkgreen);
}

.obi-link-btn-green:hover,
a.obi-link-btn-green:hover,
.obi-link-btn-green:active,
a.obi-link-btn-green:active,
.obi-link-btn-green:focus,
a.obi-link-btn-green:focus {
	background: var(--obi-green) !important;
}

.services-widget {
    margin: 0px;
}

.above-services-widget {
    text-align: center;
    background: #FFF;
    box-shadow: 0px 0px 2px 1px rgb(0 0 0 / 20%);
    overflow: hidden;
    padding: 40px 15px;
}

.above-services-widget h1 {
    margin: 0px;
    padding: 0px;
    line-height: 1em;
    font-weight: 600;
}

.above-services-widget h1 span {
    display: block;
}
.above-services-widget h1 span.above-catchy-headline {
    margin: 0px;
    text-align: center;
    line-height: 1em;
    padding: 0px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--obi-darkblue);
}

.above-services-widget h1 span.catchy-headline {
    margin: 0px;
    text-align: center;
    line-height: 1em;
    padding: 30px 0px 10px 0px;
    font-size: 60px;
    letter-spacing: 0.5px;
    color: var(--obi-green);
    font-weight: 700;
}

.above-services-widget h1 span.below-catchy-headline {
    margin: 0px;
    text-align: center;
    line-height: 1em;
    padding: 0px;
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--obi-darkblue);
}

.services-widget-content {
	display: flex;
	letter-spacing: 0px;
	background: var(--obi-darkgray);
	width: 100%;
	position: relative;
}

.services-widget-content:before {
	display: block;
	content: '';
	background: var(--obi-darkgray);
	position: absolute;
	top: 0px;
	left: -50px;
	width: -moz-calc(100vw + 100px);
    width: -webkit-calc(100vw + 100px);
    width: calc(100vw + 100px);
    height: 100%;
	-moz-box-shadow:    inset 0 0 50px #000000;
  	-webkit-box-shadow: inset 0 0 50px #000000;
  	box-shadow:         inset 0 0 50px #000000;
}

.services-widget-content .container {
	display: flex;
	letter-spacing: 0px;
	width: 100%;
	/*max-width: 1920px;*/
	/*max-width: 1700px;*/
	padding: 0px;
	height: 430px;
}

a.services-widget-item {
    display: inline-block;
    width: 33.3%;
    position: relative;
    text-decoration: none;
    background: #222;
}

a.services-widget-item img.services-widget-item-image {
	position: absolute;
	top: 0px;
	left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    /*filter: blur(1px);*/
    transition: all ease 0.3s;
}

a.services-widget-item img.services-widget-item-image:hover {
    opacity: 0.8;
    /*filter: blur(0px);*/
}

a.services-widget-item span.services-widget-item-text {
	/*position: absolute;
	top: 0px;
	left: 0px;
    width: 100%;
    height: 100%;
    color: #FFF;
    text-align: center;
    font-weight: 600;
    font-size: 24px;
    text-shadow: 0 0 7px rgb(0 0 0 / 70%), 0 0 15px rgb(0 0 0 / 50%);
    padding: 30px 30px 30px 30px;
    display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;*/

	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	text-align: center;
	color: #FFF;
	font-size: 20px;
	font-weight: 600;
	padding: 30px;
	text-shadow: 0 0 7px rgb(0 0 0 / 70%), 0 0 15px rgb(0 0 0 / 50%);
	background-image: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.7));
	pointer-events: none;
	letter-spacing: 0.5ps;
	line-height: 1.4em;
}

.bottom-widget {
	padding: 35px 15px 50px 15px;
    margin: 0px;
    background: #FFF;
}

.bottom-widget .bottom-widget-items-container {
	display: flex;
	padding: 0px;
}

a.bottom-widget-item {
    display: inline-block;
    width: -moz-calc(33.3% - 10px);
    width: -webkit-calc(33.3% - 10px);
    width: calc(33.3% - 10px);
    margin: 0px 15px 0px 0px;
    position: relative;
    height: 400px;
    overflow: hidden;
    text-decoration: none;
}

a.bottom-widget-item:last-child {
    margin: 0px 0px 0px 0px;
}

.bottom-widget-item-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0px;
	left: 0px;
	transition: all ease 0.5s;
}

.bottom-widget-item-image:hover {
	width: -moz-calc(100% + 10px);
    width: -webkit-calc(100% + 10px);
    width: calc(100% + 10px);
    height: -moz-calc(100% + 10px);
    height: -webkit-calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
}

.bottom-widget-item span.bottom-widget-item-text {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	text-align: center;
	color: #FFF;
	font-size: 24px;
	font-weight: 600;
	padding: 30px 15px 40px 15px;
	text-transform: uppercase;
	text-shadow: 0 0 7px rgb(0 0 0 / 70%), 0 0 15px rgb(0 0 0 / 50%);
	background-image: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.7));
	pointer-events: none;
}

.green-band {
	position: relative;
	margin: 0px;
	padding: 40px 15px;
	background: var(--obi-green);
	-webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.4);
	-moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.4);
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.4);
	z-index: 10;
}

.green-band h4 {
	color: #FFF;
	font-weight: 500;
	text-align: center;
	line-height: 1.8em;
	font-size: 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.obiter-footer-content {
	margin: 0px;
}

.obiter-footer-container {
	display: flex;
	padding: 50px 15px;
}

.obiter-footer-left {
    width: 500px;
}

img.obiter-footer-logo {
	height: 50px;
	margin: 0px 0px 30px 0px;
}

.obiter-footer-news-teaser {
	margin: 0px 0px 30px 0px;
}

.obiter-footer-news-teaser h4 {
	color: #FFF;
	font-style: italic;
	font-weight: 600;
	font-size: 20px;
	margin: 0px 0px 15px 0px;
}

.obiter-footer-news-teaser ul {
	padding: 0px 0px 0px 25px;
	margin: 0px;
}

.obiter-footer-news-teaser ul li {
	color: var(--obi-green);
	margin: 0px 0px 15px 0px;
	line-height: 1.4em;
}

.obiter-footer-news-teaser ul li:last-child {
	margin: 0px 0px 0px 0px;
}

.obiter-footer-news-teaser ul li a {
	color: var(--obi-green);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: all ease 0.3s;
}

.obiter-footer-news-teaser ul li a:hover {
	color: #FFF;
}

.obiter-footer-social {
	margin: 0px;
}

.obiter-footer-social a {
	font-size: 30px;
	display: inline-block;
	margin: 0px 20px 0px 0px;
	color: rgba(255,255,255,0.7);
	transition: all ease 0.3s;
}


.obiter-footer-social a:hover {
	color: rgba(255,255,255,1.0);
}

.obiter-footer-right {
	width: -moz-calc(100% - 400px);
    width: -webkit-calc(100% - 400px);
    width: calc(100% - 400px);
    position: relative;
}

.obiter-footer-right:before {
	display: block;
	content: '';
	width: 100vw;
	height: 100vh;
	background: var(--obi-darkerblue);
	position: absolute;
	top: -30vh;
	left: 80px;
	transform: skewX(-10deg);
}

.obiter-footer-right .wpcf7 {
	width: 570px;
	float: right;
	position: relative;
	z-index: 10;
}

.obiter-footer-right .wpcf7 label {
	width: 100%;
	color: #FFF;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.obiter-footer-right .wpcf7 label .form-control {
	border-radius: 2px;
	margin: 3px 0px 0px 0px;
}

.obiter-footer-bottom {
	width: 100%;
    background: #c8d0d0;
    position: relative;
    z-index: 100;
    text-align: center;
    padding: 25px;
    webkit-box-shadow: 0px -2px 10px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px -2px 10px 0px rgba(0,0,0,0.3);
	box-shadow: 0px -2px 10px 0px rgba(0,0,0,0.3);
}

.obiter-footer-bottom * {
	color: var(--obi-darkblue);
}

.obiter-footer-bottom p {
	margin: 0px;
	font-weight: 600;
	font-size: 17px;
}

.obiter-footer-bottom p span {
	display: inline-block;
	margin: 0px 30px;
}

body.page-template-obi-fullwidth header.entry-header,
body.single-obiter-product header.entry-header,
body.single-obiter-news-item header.entry-header,
body.single-job header.entry-header {
	top: 0px;
	left: 0px;
	width: 100%;
	height: 250px;
	position: relative;
	-moz-box-shadow:    inset 0px 0px 10px rgba(0,0,0,0.7);
	-webkit-box-shadow: inset 0px 0px 10px rgba(0,0,0,0.7);
	box-shadow:         inset 0px 0px 10px rgba(0,0,0,0.7);
	background-color: rgba(7,32,44,0.9);
}

body.page-template-obi-fullwidth header.entry-header:after,
body.single-obiter-product header.entry-header:after,
body.single-obiter-news-item header.entry-header:after,
body.single-job header.entry-header:after {
	display: block;
	content: '';
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	position: absolute;
	/*background: rgba(0,0,0,0.3);*/
}

body.page-template-obi-fullwidth header.entry-header .container,
body.single-obiter-product header.entry-header .container,
body.single-obiter-news-item header.entry-header .container,
body.single-job header.entry-header .container {
	top: 0px;
	left: 0vw;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

body.page-template-obi-fullwidth header.entry-header .obi-post-thumbnail img,
body.single-obiter-product header.entry-header .obi-post-thumbnail img,
body.single-obiter-news-item header.entry-header .obi-post-thumbnail img,
body.single-job header.entry-header .obi-post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.page-template-obi-fullwidth header.entry-header h1.entry-title,
body.single-obiter-product header.entry-header h1.entry-title,
body.single-obiter-news-item header.entry-header h1.entry-title,
body.single-job header.entry-header h1.entry-title {
	color: #FFF;
	bottom: 0px;
	left: 0px;
	width: 100%;
	padding: 30px 15px 20px 15px;
	border-bottom: none;
	margin: 0px;
	position: absolute;
	text-shadow: 0 0 7px rgb(0 0 0 / 70%), 0 0 15px rgb(0 0 0 / 50%);
	font-size: 28px;
}

#content.site-content {
    padding: 30px 0px 50px 0px;
}

.entry-content .wp-caption {
	padding: 0px;
	max-width: 100%;
	background: transparent;
	border: none;
}

.entry-content img,
.entry-content .wp-caption img {
	border: solid 1px #CCC;
}

.entry-content .wp-caption .wp-caption-text {
    font-size: 12px;
    line-height: 1.2em;
    margin: 0;
    padding: 10px;
    font-weight: 500;
    color: #444;
}

.entry-content h1 {
	font-size: 45px;
	font-weight: 700;
	color: var(--obi-darkblue);
}

.entry-content h2 {
	font-size: 30px;
	font-weight: 700;
	color: var(--obi-darkblue);
}

.entry-content h3 {
	font-size: 21px;
	font-weight: 700;
	color: var(--obi-green);
}

.entry-content h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--obi-darkblue);
}

.entry-content h5 {
	font-size: 16px;
	font-weight: 700;
	color: var(--obi-darkgray);
}

.entry-content h6 {
	font-size: 16px;
	font-weight: 700;
	color: rgba(0,0,0,0.4);
}

.entry-content ul,
.entry-content ol {
	font-size: 17px;
	font-weight: 600;
	color: var(--obi-darkgray);
}

.entry-content ul li,
.entry-content ol li {
	color: var(--obi-darkgray);
}

.entry-content ul li::marker,
.entry-content ol li::marker {
	color: rgba(0,0,0,0.4);
	font-weight: 700;
}

.entry-content p {
	font-size: 17px;
	font-weight: 500;
	color: var(--obi-darkgray);
	font-family: 'PT Serif', serif;
	line-height: 1.6em;
}

.entry-content blockquote {
	background: #FFF;
	padding: 20px;
	-webkit-box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.2);
    box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 20%);
    border-left: solid 5px var(--obi-darkblue);
}

.entry-content blockquote p:last-child {
	margin: 0px;
}

.obi-product {
    margin: 0px 0px 50px 0px;
}

.obi-product-left {
    width: 350px;
    float: left;
}

.obi-product-right {
    width: -moz-calc(100% - 400px);
    width: -webkit-calc(100% - 400px);
    width: calc(100% - 400px);
    float: right;
}

.obi-product-left img.obi-product-image {
    width: 100%;
    height: 240px;
    object-fit: contain;
    background: #FFF;
    padding: 10px;
    border: none;
    -webkit-box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.2);
    box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 20%);
}

p.obi-product-number {
	color: #777;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin: 0px;
}

h1.obi-product-name {
	color: var(--obi-darkblue);
	font-family: 'Montserrat', sans-serif;
	font-size: 40px;
	font-weight: 700;
	margin: 0px 0px 5px 0px;
	padding: 0px;
}

p.obi-product-purity {
	color: #777;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin: 0px;
}

.obi-product-details {
	margin: 20px 0px 0px 0px;
}

.obi-product-details-item {
	margin: 0px 0px 5px 0px;
	font-size: 16px;
}

.obi-product-details-label {
	width: 240px;
	display: inline-block;
	font-weight: 700;
}

.obi-product-details-data {
	width: -moz-calc(100% - 250px);
    width: -webkit-calc(100% - 250px);
    width: calc(100% - 250px);
	display: inline-block;
	font-weight: 500;
}

a.obiter-product-doc-link {
	color: var(--obi-darkgreen);
    display: inline-block;
    width: 100%;
    margin: 0px 0px 10px 0px;
    font-size: 18px;
    font-weight: 500;
    transition: color ease 0.3s;
    text-decoration: none;
}

a.obiter-product-doc-link:hover {
	color: var(--obi-green);
}

.obi-product-docs h4 {
	color: var(--obi-darkblue);
	font-size: 20px;
	font-weight: 700;
	border-bottom: solid 2px rgba(0,0,0,0.1);
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 15px 0px;
}

.obi-product-variations table,
.obi-product-variations table tbody,
.obi-product-variations table tbody tr {
	width: 100%;
}

.table th {
    border-bottom: 2px solid rgba(0,0,0,0.3);
}

.table td {
    border-top: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-weight: 500;
    color: #555;
}

.table td.obi-product-sku {
	color: var(--obi-darkgray);
	font-weight: 700;
}

/*body.single-obiter-product #content.site-content {
	padding-top: 100px;
}

body.single-obiter-product header.entry-header {
	display: none;
}

body.single-obiter-product header#masthead {
    background: var(--obi-darkblue);
    border-bottom: solid 1px var(--obi-green);
}*/

.obiter-product-request {
	background: #FFF;
	-webkit-box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.2);
    box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 20%);
    display: flex;
}

.obiter-product-request-left {
	width: 350px;
	background: var(--obi-darkerblue);
/*	display: flex;
	flex-direction: column;*/
	position: relative;
}

.obiter-product-request-right {
	width: -moz-calc(100% - 350px);
    width: -webkit-calc(100% - 350px);
    width: calc(100% - 350px);
    padding: 30px;
}

.obiter-product-request .obiter-product-request-left h1.request-a-quote-title {
	margin: 0px 0px 0px 0px;
	background: var(--obi-darkblue);
	color: #FFF;
	text-align: center;
	font-size: 25px;
	padding: 25px 10px 25px 10px;
	font-weight: 600;
	text-transform: uppercase;
}

.obiter-product-request .obiter-product-request-left .request-a-quote-description {
	padding: 30px;
}

.obiter-product-request .obiter-product-request-left .request-a-quote-description p {
	margin: 0px 0px 15px 0px;
	color: #FFF;
	font-size: 17px;
	font-weight: 500;
}

.obiter-product-request .obiter-product-request-left .request-a-quote-description p:last-child {
	margin: 0px 0px 0px 0px;
}

.obiter-product-request .obiter-product-request-left .request-a-quote-description a {
	color: var(--obi-green);
	transition: all ease 0.3s;
	text-decoration: none;
	font-family: 'PT Serif', serif;
	font-weight: 600;
	font-style: italic;
	cursor: pointer;
}

.obiter-product-request .obiter-product-request-left .request-a-quote-description a:hover {
	color: #FFF;
}

.obiter-product-request .obiter-product-request-left img.request-a-quote-logo {
	border: none;
	width: 150px;
	position: absolute;
	bottom: 30px;
	left: 30px;
}

.obiter-product-request .obiter-product-request-right p.request-a-quote-intro {
	font-size: 13px;
	font-family: 'Montserrat', sans-serif;
}

.obiter-product-request .obiter-product-request-right label {
	width: 100%;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.5px;
	color: var(--obi-darkblue);
	text-transform: uppercase;
	margin-bottom: 15px;
}

.obiter-product-request .obiter-product-request-right span.request-a-quote-field-instructions {
	font-size: 12px;
	font-family: 'Montserrat', sans-serif;
	color: rgba(0,0,0,0.7);
	line-height: 1.4em;
	display: inline-block;
}

.obiter-product-request .obiter-product-request-right .request-quote-permission {
	border: none;
	margin-bottom: 20px;
}

.obiter-product-request .obiter-product-request-right label .wpcf7-list-item-label {
	text-transform: none;
	color: rgba(0,0,0,0.7);
}

.obi-products-holder {
	width: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

a.obi-product-item {
	background: #FFF;
	-webkit-box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.2);
    box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 20%);
    display: block;
    padding: 20px;
    width: -moz-calc(50% - 30px);
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    margin: 15px;
    border: none;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: top ease 0.2s;
    top: 0px;
}

a.obi-product-item:hover {
	top: -2px;
}

a.obi-product-item:after {
	display: block;
    content: '';
    width: 300px;
    height: 100%;
    position: absolute;
    /* transform: rotate(45deg); */
    transform: skewX(-35deg);
    background: var(--obi-darkblue);
    top: 0px;
    left: -150px;
    border-right: solid 10px #AAA;
}

img.attachment-medium.obi-product-item-image {
	width: 200px;
	height: 100%;
	object-fit: contain;
	padding: 10px;
	-webkit-box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.2);
    box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 20%);
    border: none;
    display: block;
    float: left;
    z-index: 10;
    position: relative;
    background: #FFF;
	max-height: 170px;
}

.obi-product-item-text {
	width: -moz-calc(100% - 230px);
    width: -webkit-calc(100% - 230px);
    width: calc(100% - 230px);
    display: block;
    float: right;
    z-index: 10;
    position: relative;
}

.obi-product-item-title {
	font-size: 21px;
	font-weight: 700;
	color: var(--obi-darkblue);
	display: block;
	line-height: 1.4em;
	margin: 0px 0px 15px 0px;
}

.obi-product-item-number,
.obi-product-item-cas {
	display: block;
	font-weight: 700;
	font-size: 16px;
	color: rgba(0,0,0,0.9);
}

.obi-product-item-number span,
.obi-product-item-cas span {
	display: inline-block;
	margin: 0px 5px 0px 0px;
	color: rgba(0,0,0,0.5);
	font-weight: 500;
}

.obi-product-search-filter {
	display: block;
	height: 46px;
}

.obi-product-search-filter input {
	width: -moz-calc(100% - 50px);
    width: -webkit-calc(100% - 50px);
    width: calc(100% - 50px);
    display: inline-block;
    outline: none;
    padding: 10px 15px;
    height: 100%;
    border-radius: 3px 0px 0px 3px;
    line-height: 1em;
}

.obi-product-search-filter button {
    width: 50px;
    display: inline-block;
    border: none;
    outline: none;
    padding: 0px 5px 0px 5px;
    background: #555;
    border-radius: 0px 3px 3px 0px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    height: 100%;
    /*height: -moz-calc(100% - 2px);
    height: -webkit-calc(100% - 2px);
    height: calc(100% - 2px);*/
    position: relative;
    top: 1px;
    border: solid 1px #CCC;
    border-left: none;
    transition: background ease 0.3s;
}

.obi-product-search-filter button:hover {
    background: #888;
}

.form-req {
	color: #cc0000;
}

.obi-news-list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

a.obi-news-item {
    background: #FFF;
    -webkit-box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.2);
    box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 20%);
    display: block;
    padding: 20px;
    width: -moz-calc(50% - 30px);
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    margin: 15px;
    border: none;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: top ease 0.2s;
    top: 0px;
}

a.obi-news-item:hover {
	top: -2px;
}

img.obi-news-item-thumbnail {
    width: 200px;
    height: 100%;
    object-fit: cover;
    -webkit-box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.2);
    box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 20%);
    border: none;
    display: block;
    float: left;
    z-index: 10;
    position: relative;
    background: #FFF;
}

.obiter-news-item-text {
    width: -moz-calc(100% - 230px);
    width: -webkit-calc(100% - 230px);
    width: calc(100% - 230px);
    display: block;
    float: right;
    z-index: 10;
    position: relative;
}

.obiter-news-item-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--obi-darkblue);
    display: block;
    line-height: 1.4em;
    margin: 0px 0px 15px 0px;
}

.obiter-news-item-excerpt {
    display: block;
    font-size: 16px;
    color: rgba(0,0,0,0.5);
    font-weight: 500;
}

.news-list-pagination-links {
	margin: 25px 0px 0px 0px;
}

.news-list-pagination-links ul {
	width: 100%;
	text-align: center;
	display: block;
}

.news-list-pagination-links ul li {
	display: inline-block;
}

.news-list-pagination-links ul li .wpv-filter-pagination-link,
.news-list-pagination-links ul li a.wpv-filter-pagination-link {
	padding: 10px 13px;
	border: none;
	background: rgba(0,0,0,0.1);
	transition: all ease 0.3s;
	text-decoration: none;
	font-size: 14px;
	line-height: 1em;
	border: solid 1px #999;
	color: #555;
}

.news-list-pagination-links ul li a.wpv-filter-pagination-link:hover {
	background: rgba(255,255,255,1.0);
	color: var(--obi-darkblue);
	border: solid 1px var(--obi-darkblue);
}

.news-list-pagination-links ul li.wpv_page_current .wpv-filter-pagination-link {
	background: rgba(255,255,255,1.0);
	border: solid 1px var(--obi-darkblue);
	color: var(--obi-darkblue);
}

.product-search-field {
	width: -moz-calc(100% - 330px);
    width: -webkit-calc(100% - 330px);
    width: calc(100% - 330px);
	height: 100%;
	float: left;
}

.product-category-field {
	width: 300px;
	height: 100%;
	float: right;
}

.product-category-field select {
	height: 100%;
}

.above-bottom-widget {
    margin: 0px;
	padding: 0px;
	background: #FFF;
}

h1.featured-news-widget-title {
    margin: 0px 0px 0px 0px;
    padding: 33px 0px 0px 0px;
	text-align: center;
    line-height: 1em;
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--obi-darkblue);
}

.obi-featured-products-holder {
	width: 100%;
    display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: start;
}

.obi-featured-product-item {
    background: #FFF;
	box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.2);
	width: 220px;
    height: 370px;
	margin: 15px;
	padding: 10px 10px 30px 10px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.obi-featured-product-item:after {
    display: block;
    content: '';
    width: 300px;
    height: 100%;
    position: absolute;
    transform: rotate(70deg);
    /* transform: skewX(-35deg); */
    background: var(--obi-darkblue);
    top: -225px;
    left: -70px;
    border-right: solid 10px #AAA;
}

img.obi-featured-product-image {
    width: 100%;
    height: 130px;
    object-fit: contain;
    padding: 10px 10px 10px 10px;
    box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.2);
    border: none;
    display: block;
    z-index: 10;
    position: relative;
    background: #FFF;
}

h1.obi-featured-product-title {
    font-size: 16px;
    text-align: center;
    margin: 15px 0px 10px 0px;
    padding: 0px;
    color: var(--obi-darkblue);
	font-weight: 600;
}

p.obi-featured-product-detail {
    font-size: 12px;
    text-align: center;
    margin: 0px 0px 10px 0px;
}

p.obi-featured-product-detail strong {
	display: block;
}

.obi-featured-product-link-holder {
	width: 100%;
    display: block;
    position: absolute;
    bottom: 0px;
	left: 0px;
	text-align: center;
	padding: 10px 10px 15px 10px;
}

.obi-featured-product-link-holder a.obi-featured-product-request-link {
	font-size: 14px;
    display: inline-block;
}

.obiter-footer-careers {
    position: relative;
	z-index: 10;
	padding: 0px 0px 0px 200px;
	height: 100%;
}

.obiter-footer-careers h2 {
    color: #FFF;
	font-size: 30px;
}

.obi-job-listings-holder {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	margin: 50px 0px;
}

a.obi-job-listing-item {
    background: #FFF;
    display: inline-block;
    padding: 15px 20px;
	margin: 15px;
    border-radius: 3px;
    box-shadow: 2px 2px 5px 0px rgb(0,0,0,0.1);
	color: var(--obi-darkblue);
/* 	width: 300px; */
	width: -moz-calc(33.3% - 30px);
    width: -webkit-calc(33.3% - 30px);
    width: calc(33.3% - 30px);
	text-decoration: none;
	position: relative;
	top: 0px;
	transition: all ease 0.3s;
	border: solid 1px transparent;
}

a.obi-job-listing-item:hover {
	text-decoration: none;
	top: -2px;
/* 	border: solid 1px var(--obi-green); */
}

a.obi-job-listing-item span.obi-job-listing-title {
    display: block;
	font-weight: 600;
	font-size: 22px;
	margin: 0px 0px 10px 0px;
}

a.obi-job-listing-item span.obi-job-listing-excerpt {
    display: block;
	font-weight: 400;
	font-size: 16px;
}

.active-team-members-holder {
	display: flex;
	flex-wrap: wrap;
}

.active-team-member-item {
    width: -moz-calc(50% - 30px);
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    background: #FFF;
    padding: 20px;
    border-radius: 3px;
	box-shadow: 2px 2px 5px 0px rgb(0,0,0,0.1);
	margin: 15px;
}

img.active-team-member-item-photo {
	display: block;
	float: left;
	width: 180px;
	height: 220px;
	object-fit: cover;
	border-radius: 3px;
}

.team-member-text {
	width: -moz-calc(100% - 210px);
    width: -webkit-calc(100% - 210px);
    width: calc(100% - 210px);
	float: right;
}

.active-team-member-item .team-member-text h2.team-member-name {
	margin: 0px 0px 0px 0px;
	padding: 0px;
	font-size: 22px;
	color: var(--obi-darkblue);
}

.active-team-member-item .team-member-text h3.team-member-position {
	margin: 0px 0px 10px 0px;
	padding: 0px;
	font-size: 16px;
	color: var(--obi-green);
	font-weight: 500;
}

.active-team-member-item .team-member-text p.team-member-bio {
	font-size: 14px;
	line-height: 1.8em;
	font-family: 'Montserrat', sans-serif;
	color: #555;
	font-weight: 300;
	margin: 0px;
}

.download-items-holder {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	margin: 0 auto;
	max-width: 1000px;
}

a.download-item-btn {
	font-size: 16px;
    background: #FFF;
    border-radius: 3px;
    padding: 10px 15px;
    flex-basis: -moz-calc(33.3% - 20px);
    flex-basis: -webkit-calc(33.3% - 20px);
    flex-basis: calc(33.3% - 20px);
    display: inline-block;
    margin: 10px;
    text-align: center;
    background: var(--obi-darkgreen);
    color: #FFF;
    text-decoration: none;
    transition: all ease 0.3s;
    font-weight: 500;
    display: inline-flex;
    align-content: center;
    vertical-align: middle;
    flex-direction: column;
    justify-content: center;
}

a.download-item-btn:hover {
	background: var(--obi-green);
	color: #FFF;
	text-decoration: none;
}

ul.obiter-footer-job-list {
	margin-bottom: 30px;
}

ul.obiter-footer-job-list li {
    color: var(--obi-green);
    margin: 0px 0px 15px 0px;
    line-height: 1.4em;
}

a.obiter-footer-job-item {
    color: var(--obi-green);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all ease 0.3s;
}

a.obiter-footer-job-item:hover {
    color: #FFF;
}


/* -------------------------------------------------------------------- */
@media (min-width: 1400px) {

	.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1300px;
	}

}

/* -------------------------------------------------------------------- */
@media (max-width: 1400px) {

	.home-header-item {
    height: 500px;
	min-height: unset;
	}

	.obiter-footer-right .wpcf7 {
    width: 450px;
	}

	.services-widget-content .container {
    max-width: 100%;
	}

}

/* -------------------------------------------------------------------- */
@media (max-width: 1199px) {

    .navbar-collapse {
	background: var(--obi-darkerblue);
	padding: 15px;
	margin: 10px 0px 10px 0px;
	border: solid 1px var(--obi-green);
	}

	body:not(.theme-preset-active) #masthead .navbar-collapse .navbar-nav li {
    margin: 0px 0px 0px 0px;
    text-align: center;
	}

	body:not(.theme-preset-active) #masthead .navbar-collapse .navbar-nav li a {
    border-bottom: none;
	}

	body:not(.theme-preset-active) #masthead .navbar-collapse .navbar-nav li a:hover {
    border-bottom: none;
    background: rgba(0,0,0,0.3);
	}

	body:not(.theme-preset-active) #masthead .navbar-collapse .navbar-nav li:last-child a:hover {
    background: var(--obi-green);
	}

	.about-us-widget-container {
    height: 375px;
	}

	.about-us-widget-left {
    padding: 25px 25px;
	}

	.about-us-widget-item-text h1 {
    margin: 0px 0px 15px 0px;
    font-size: 33px;
	}

	.about-us-widget-item-text p {
    line-height: 1.7em;
    margin: 0px 0px 20px 0px;
	}

	.obi-link-btn, a.obi-link-btn {
    font-size: 16px;
	}

	.about-us-widget-item-button {
    padding: 10px 10px;
    font-size: 18px;
	}

	.bottom-widget-item span.bottom-widget-item-text {
    font-size: 18px;
	}

	a.bottom-widget-item {
    height: 300px;
	}

	.bottom-widget-item span.bottom-widget-item-text {
    padding: 30px 15px 20px 15px;
	}

	.obiter-footer-left {
    width: 340px;
	}

	.obiter-footer-right {
    width: -moz-calc(100% - 340px);
    width: -webkit-calc(100% - 340px);
    width: calc(100% - 340px);
	}

	.obiter-footer-right:before {
    left: 50px;
	}

	.navbar-nav .dropdown-menu {
    padding: 0px;
    margin: 0px;
	}

	body:not(.theme-preset-active) #masthead .navbar-collapse .navbar-nav li a.dropdown-item {
    font-size: 16px;
    padding: 5px 5px;
    color: rgba(255,255,255,0.7);
	}

	body:not(.theme-preset-active) #masthead .navbar-collapse .navbar-nav li a.dropdown-item:hover {
    color: rgba(255,255,255,1.0);
    background: rgba(0,0,0,0.1);
	}

	body.page-template-obi-fullwidth header.entry-header {
    height: 200px;
	}

	.obiter-product-request-left {
    width: 250px;
	}

	.obiter-product-request .obiter-product-request-left h1.request-a-quote-title {
    font-size: 20px;
    padding: 15px 10px 15px 10px;
	}

	.obiter-product-request .obiter-product-request-left .request-a-quote-description p {
    font-size: 15px;
	}

	.obiter-product-request .obiter-product-request-left img.request-a-quote-logo {
    width: 130px;
	}

	.obiter-product-request-right {
    width: -moz-calc(100% - 250px);
    width: -webkit-calc(100% - 250px);
    width: calc(100% - 250px);
	}

	.obi-product-left {
    width: 270px;
	}

	a.obiter-product-doc-link {
    font-size: 16px;
	}

	.obi-product-left img.obi-product-image {
    height: 180px;
	}

	.obi-product-right {
    width: -moz-calc(100% - 320px);
    width: -webkit-calc(100% - 320px);
    width: calc(100% - 320px);
	}

	h1.obi-product-name {
    font-size: 36px;
	}

	p.obi-product-number {
    font-size: 18px;
	}

	p.obi-product-purity {
    font-size: 18px;
    font-weight: 500;
	}

	.obi-products-holder {
    display: block;
	}

	a.obi-product-item {
    width: 100%;
    margin: 25px 0px 0px 0px;
	}

	.obi-news-list {
	display: block;
	}

	a.obi-news-item {
    width: 100%;
    margin: 25px 0px 0px 0px;
	}
	
	.obiter-footer-careers {
    padding: 0px 0px 0px 125px;
	}
	
	img.active-team-member-item-photo {
	width: 120px;
    height: 150px;
	}
	
	.team-member-text {
    width: -moz-calc(100% - 140px);
    width: -webkit-calc(100% - 140px);
    width: calc(100% - 140px);
	}
	
	.active-team-member-item .team-member-text h2.team-member-name {
    font-size: 16px;
	}
	
	.active-team-member-item .team-member-text h3.team-member-position {
    margin: 3px 0px 10px 0px;
    font-size: 13px;
	}
	
	.active-team-member-item .team-member-text p.team-member-bio {
    font-size: 13px;
    line-height: 1.5em;
    font-weight: 400;
	}

}

/* -------------------------------------------------------------------- */
@media (max-width: 991px) {


	.home-header-item {
    height: 400px;
	}

	.home-header-text h1 {
    font-size: 32px;
	}

	.below-home-carousel {
    padding: 15px 15px;
	}

	.below-home-carousel h1 {
    font-size: 17px;
	}

	.about-us-widget-left {
    width: 280px;
	}

	.about-us-widget-right {
    width: -moz-calc(100% - 280px);
    width: -webkit-calc(100% - 280px);
    width: calc(100% - 280px);
	}

	.about-us-widget-item-text h1 {
    font-size: 26px;
	}

	.about-us-widget-item-text p {
    line-height: 1.7em;
    margin: 0px 0px 20px 0px;
    font-size: 15px;
	}

	.obi-link-btn, a.obi-link-btn {
    font-size: 15px;
	}

	.about-us-widget-item-button {
    padding: 8px 7px;
    font-size: 15px;
	}

	.obiter-footer-container {
    display: block;
	}

	.obiter-footer-left {
    width: 100%;
    float: none;
    position: relative;
    z-index: 10;
	}

	.obiter-footer-right {
    width: 100%;
    float: none;
    padding: 100px 0px 0px 0px;
	}

	.obiter-footer-right:before {
    width: 200vw;
    height: 100vh;
    top:  10px;
    left: -50vw;
    transform: skewX(0deg) skewY(-5deg);
	}

	.obiter-footer-right .wpcf7 {
    width: 100%;
    float: none;
	}

	.green-band h4 {
    font-size: 16px;
	}

	.green-band {
    padding: 20px 15px;
	}

	img.obiter-footer-logo {
    height: 40px;
	}

	.obiter-footer-social a {
    font-size: 24px;
	}

	.obiter-footer-news-teaser ul li {
    margin: 0px 0px 10px 0px;
	}

	.obiter-footer-news-teaser ul li a {
    font-size: 15px;
	}

	.obiter-footer-news-teaser h4 {
    font-size: 18px;
	}

	.obiter-footer-bottom {
    padding: 15px;
	}

	.obiter-footer-container {
    padding: 40px 15px 30px 15px;
	}

	.above-services-widget h1 span.above-catchy-headline {
    font-size: 17px;
	}

	.above-services-widget h1 span.catchy-headline {
    padding: 15px 0px;
    font-size: 40px;
	}

	.above-services-widget h1 span.below-catchy-headline {
    font-size: 15px;
	}

	.above-services-widget {
    padding: 20px 15px;
	}

	a.services-widget-item span.services-widget-item-text {
    font-size: 15px;
    padding: 10px;
	}

	.services-widget-content .container {
    height: 140px;
	}

	.bottom-widget {
    padding: 25px 15px;
	}

	a.bottom-widget-item {
    height: 200px;
	}

	.bottom-widget-item span.bottom-widget-item-text {
	padding: 30px 10px 15px 10px;
    font-size: 15px;
	}

	.entry-content h1 {
    font-size: 34px;
	}

	.entry-content h2 {
    font-size: 27px;
	}

	.obi-product-details-item {
    font-size: 15px;
	}

	.obi-product-details-label {
    width: 200px;
	}

	.obi-product-details-data {
    width: -moz-calc(100% - 205px);
    width: -webkit-calc(100% - 205px);
    width: calc(100% - 205px);
	}
	
	h1.featured-news-widget-title {
    padding: 24px 0px 0px 0px;
    font-size: 21px;
	}
	
	.obiter-footer-careers {
    padding: 0px 0px 30px 0px;
    text-align: center;
	}
	
	a.obi-job-listing-item {
	width: -moz-calc(50% - 30px);
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
	}
	
	.active-team-member-item {
    width: 100%;
	margin: 0px 0px 15px 0px;
	}
	
	a.download-item-btn {
    flex-basis: -moz-calc(50% - 20px);
    flex-basis: -webkit-calc(50% - 20px);
    flex-basis: calc(50% - 20px);
	}
	
	ul.obiter-footer-job-list li {
    text-align: left;
	}
	
	.obiter-footer-careers {
    text-align: left;
	}
	
	ul.obiter-footer-job-list {
    padding-left: 20px;
	}

}

/* -------------------------------------------------------------------- */
@media (max-width: 767px) {

	header#masthead .navbar-brand a img {
    height: 30px;
	}

	header#masthead {
    /*background: var(--obi-darkblue);*/
    padding-top: 5px;
   	padding-bottom: 5px;
   	/*border-bottom: solid 1px var(--obi-green);*/
	}

	.home-header-text {
    bottom: 50px;
	}

	.home-header-text h1 {
    font-size: 28px;
	}

	.home-header-text a.home-header-link-btn {
    font-size: 16px;
    margin: 3px 0px 0px 0px;
	}

	.about-us-widget {
    margin: 0px;
    background: var(--obi-darkerblue);
    background-image: linear-gradient(var(--obi-darkerblue) , var(--obi-darkblue));
    min-height: 250px;
    transition: all ease 0.2s;
	}

	.about-us-widget-container {
    height: auto;
    display: block;
    width: 100%;
    text-align: center;
	}

	.about-us-widget-left {
    width: 100%;
    background: transparent;
    padding: 20px 0px;
    min-height: 240px;
    transition: all ease 0.2s;
	}

	.about-us-widget-left:before {
    display: none;
	}

	.about-us-widget-right {
    width: 100%;
    padding: 0px 0px 20px 0px;
	}

	.about-us-widget-item-image-holder {
	display: none !important;
	}

	.about-us-widget-all-buttons {
    position: relative;
    margin: 0px;
    padding: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    display: flex;
	}

	.about-us-widget-item-button {
    padding: 8px 7px;
    font-size: 15px;
    margin: 0px 10px;
    border-radius: 3px;
    border: solid 1px rgba(255,255,255,0.2);
    border-right: solid 1px rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.1);
	}

	.about-us-widget-item-button:last-child {
    border: solid 1px rgba(255,255,255,0.2);
    border-right: solid 1px rgba(255,255,255,0.2);
	}

	.about-us-widget-item-button:hover,
	.about-us-widget-item-button:active,
	.about-us-widget-item-button:focus,
	.about-us-widget-item-button:focus-visible {
	border-right: solid 1px rgba(255,255,255,0.4);
    border: solid 1px rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.0);
	}

	.obiter-footer-bottom p {
    font-size: 14px;
	}

	.obiter-footer-bottom p span {
    display: block;
    margin: 0px 0px 0px 0px;
	}

	.bottom-widget .bottom-widget-items-container {
    display: block;
	}

	a.bottom-widget-item {
    width: 100%;
    margin: 0px auto 10px auto;
    height: 300px;
	}

	.services-widget-content .container {
    display: block;
    height: auto;
    line-height: 0px;
	}

	a.services-widget-item {
    width: 33.3%;
    height: 200px;
	}

	a.services-widget-item span.services-widget-item-text {
    font-size: 16px;
    padding: 12px 10px 30px 10px;
	}

	body.page-template-obi-fullwidth header.entry-header {
    height: 170px;
	}

	body.page-template-obi-fullwidth header.entry-header h1.entry-title {
    font-size: 22px;
	}

	.entry-content h1 {
    font-size: 27px;
	}

	.entry-content h2 {
    font-size: 22px;
	}

	.entry-content h3 {
    font-size: 18px;
	}

	.entry-content p {
    font-size: 16px;
	}

	.entry-content ul, .entry-content ol {
    font-size: 16px;
	}

	#content.site-content {
    padding: 10px 0px 40px 0px;
	}

	.page-content, .entry-content, .entry-summary {
    margin: 5px 0px 0px 0px;
	}

	.obiter-product-request {
    display: block;
	}

	.obiter-product-request-left {
    width: 100%;
	}

	.obiter-product-request-right {
    width: 100%;
	}

	.obiter-product-request .obiter-product-request-left img.request-a-quote-logo {
    display: none;
	}

	.obi-product-left {
    width: 100%;
    float: none;
	}

	.obi-product-right {
    width: 100%;
    float: none;
    text-align: center;
	}

	.obi-product-details-label,
	.obi-product-details-data {
    width: 100%;
	}

	.obi-product-details-item {
	margin-bottom: 20px;
	}

	img.attachment-medium.obi-product-item-image,
	img.obi-news-item-thumbnail {
    width: 140px;
	}

	a.obi-product-item:after {
    transform: skewX(-25deg);
    left: -220px;
	}

	.obi-product-item-text,
	.obiter-news-item-text {
    width: -moz-calc(100% - 160px);
    width: -webkit-calc(100% - 160px);
    width: calc(100% - 160px);
	}

	.obi-product-item-title,
	.obiter-news-item-title {
    font-size: 20px;
	}

	.obi-product-item-number,
	.obi-product-item-cas,
	.obiter-news-item-excerpt {
    font-size: 14px;
	}
	
	.obi-product-search-filter {
    display: block;
    height: auto;
	}
	
	.product-search-field {
    width: 100%;
    float: none;
	height: 40px;
	}
	
	.product-category-field {
    width: 100%;
    float: none;
	height: 40px;
	margin-top: 10px;
	}
	
	.obi-product-search-filter button {
    top: 2px;
	}
	
	.obiter-footer-careers h2 {
    font-size: 25px;
	}
	
	a.obi-job-listing-item {
	width: 100%;
	margin: 15px 0px;
	}

}

/* -------------------------------------------------------------------- */
@media (max-width: 500px) {

	.below-home-carousel {
    padding: 10px 25px;
	}

	.below-home-carousel h1 {
    font-size: 15px;
	}

	.home-header-item {
    height: 300px;
	}

	.home-header-text h1 {
    font-size: 22px;
	}

	.homepage-header-item-container {
    padding: 0px 25px;
	}

	.about-us-widget-item-button {
    font-size: 13px;
    margin: 0px 6px;
	}

	.green-band h4 {
    font-size: 15px;
    line-height: 1.4em;
	}

	a.bottom-widget-item {
    height: 200px;
	}

	a.services-widget-item {
    width: 100%;
    height: 200px;
	}

	.above-services-widget h1 span.above-catchy-headline {
    font-size: 15px;
	}

	.above-services-widget h1 span.catchy-headline {
    font-size: 20px;
	}

	a.obi-news-item {
    padding: 10px;
	}

	img.attachment-medium.obi-product-item-image,
	img.obi-news-item-thumbnail {
    width: 100%;
   	float: none;
   	margin: 0px 0px 15px 0px;
   	max-height: 170px;
	}

	.obi-product-item-text, .obiter-news-item-text {
    width: 100%;
    float: none;
	}

	a.obi-product-item:after {
    transform: skewY(-15deg);
    left: 0px;
    border-bottom: solid 10px #AAA;
    border-right: none;
    width: 100%;
    top: -206px;
	}
	
	a.download-item-btn {
    flex-basis: 100%;
	margin: 0px 0px 10px 0px;
	}

}

/* -------------------------------------------------------------------- */
@media (max-width: 399px) {

	img.active-team-member-item-photo {
    float: none;
    margin: 0 auto 15px auto;
	}
	
	.team-member-text {
    width: 100%;
	float: none;
	}
	
	.active-team-member-item .team-member-text h2.team-member-name,
	.active-team-member-item .team-member-text h3.team-member-position {
    text-align: center;
	}
	
	.active-team-member-item .team-member-text p.team-member-bio {
    text-align: justify;
	}
	
}