:root {

    --footerbgcolor: #0718B4;
    
    --navpadding: 1.6em;
    --sectionpadding: 6em;

    --clienticonsize: 120px;
}


/*
.navbar,
.navbar-brand,
.navbar-brand a,
.navbar-brand img
.hero,
.hero-osbond,
.hero-osbond-text 
{
    border: 1px solid red;
}
*/

.text-center {
    text-align: center !important;
}

.navbar {
    padding: var(--navpadding);
}
.navbar-brand {
    
}

.navbar-brand a.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    height: 100%;
}
.hero-osbond {
    /*background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../");
    /* Set a specific height */
    min-height: 600px;
    height: 50%;

    /* Position and center the image to scale nicely on all screens */
    background-position-x: center;
    background-position-y: 80%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.hero-osbond-text {
    /* Place text in the middle of the image */
    text-align: center;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}
@media (max-width: 1310px) {
    .hero-osbond-text {
        width: 100%;
    }
}

.hero-osbond-text h1 {
    display: none;
}
.hero-osbond-text h2 {
    color: white;
    font-size: 4rem;
}

.osbond-button  {
    border:2px solid white;
    border-radius: 25px;
    padding: .5em 1em;
    font-size: 1.2em;
    background-color: transparent;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: background-color .5s;
    transition: color .5s;
}
.osbond-button:hover {
    background: white;
    color: black;
}

.osbond-content, .osbond-client {
    padding-top: var(--sectionpadding);
    padding-bottom: var(--sectionpadding);
    text-align: center;
}

.osbond-content .column {
}

.osbond-content figure {
    margin: 0 auto;
    max-height: 120px;
}
.osbond-content figure img {
    max-height: 120px;
}
.osbond-content figure.iso, .osbond-content figure.iso img {
    max-height: none !important;
    height: auto;
    margin: 20px 0;
} 
.osbond-content figure.iso img {
    border: 1px solid grey;
}

.osbond-content h3 {
    display: block;
    margin-top: 20px;
    font-size: 1.6em;
    line-height: 1.3;
    word-break: break-word
}

.osbond-about {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 300px;
    padding-top: var(--sectionpadding);
    padding-bottom: var(--sectionpadding);
    color: white;
}
.osbond-about p {
    margin: 0 20px;
}

.osbond-about h2,
.osbond-client h2,
.osbond-iso h2 {
    text-align: center;
    font-size: 2.4em;
}

.osbond-about p {
    
    font-size: 1.2em;
    line-height: 1.4;
    margin-bottom: 40px;
}

.osbond-client .container,
.osbond-about .container {
   text-align: center;
}

.clients {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.client {
    display: block;
    padding: 0 20px;

}
.client figure {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client img {
    display: block;
    max-width: 140px;
    max-height: 80px;
    height: auto; /* maintain aspect ratio*/
    margin: auto; /*optional centering of image*/
}

/** ARTICLE AND PRODUCT PAGE **/
.osbond-content h1 {
    font-size: 3rem;
    margin-bottom: .4em;
    text-align: left;
}

.osbond-breadcrumb {
    background-color: #0718B4;
    padding: .6em !important;
}
.osbond-breadcrumb li, 
.osbond-breadcrumb a {
    color: white!important;
}
.osbond-breadcrumb li.is-active a {
    color: yellow !important;
}

.osbond-article {
    display: flex;
}

.osbond-article-inside h3 {
    font-size: 1.8em;
    margin-bottom: .8em;
    font-weight: bold;
    text-align: left;
}

.osbond-article-inside p {
    text-align:justify;
    font-size: 1.1em;
    line-height: 1.5;
    margin-bottom: 1.2em;
}

@media (min-width: 960px) {
    .osbond-article-inside {

        max-width: 800px;
        margin: 0 auto;
    }
}

@media (min-width: 530px) and (max-width: 959px) {
    .osbond-article-inside {
       padding: 0 40px;
    }
}

.osbond-widget {
    background: #EEEEEE;
}

.osbond-widget h3 {
    display: block;
    width: 100%;
    background-color: #333333;
    color: white;
    text-transform: uppercase;
    padding: 10px 0;
    margin: 0;

}

.product-page-detail p {
    margin-bottom: 30px;
}

.product-page-detail h1 {
    font-size: 3.6em;
    text-align: center;
    margin-bottom: 0;
}
.product-page-detail h2 {
    font-size: 1.3em;
    margin-bottom: 40px;
}

.product-page-detail p,
.product-page-detail ul {
    font-size: 1.7em;
}

.product-page-detail aside {
    text-align: left;
}

.osbond-widget a  {
    display: block;
    text-align: center;
    color: #333333;
    transition: background-color .5s;
    transition: color .3s;
    padding: 18px 0;
    font-size: 1.2em;
}
.osbond-widget a:hover {
    background-color:#666666;
    color: white;
}

/** FOOTER **/
.osbond-footer {
    background-color: var(--footerbgcolor);
    padding: 40px 0;
    color: white;
}

.osbond-footer hr {
    height: 1px;
}

.footer-logo {
    width: 230px;
    text-align: center;
}
.footer-logo h3 {
    margin-top: 10px;
    font-size: 1.3em;
    font-weight: bold;
}
.footer-logo p {
    font-size: .75em;
}

.footer-column {
    display: flex;
    justify-content:space-between;
    align-items: center;
}

.footer-menu a {
    font-weight: bold;
    font-size: 1.2em;
    color: white;
    transition: color .5s;
}
.footer-menu a:hover {  
    color: yellow;
}

.footer-address h4 {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom:10px;
}
.footer-address p,
.footer-address address {
    font-size: .9em;
}
.footer-address a {
    color: white;
}
.footer-address a:hover {
    text-decoration: underline;
}

.product-detail-list li:first-child {
    font-weight: bold;
    text-align: center;
    background-color: #666;
}
.product-detail-list li:first-child  a {
    color: white;
    cursor: none;
}
.product-detail-list li:first-child:hover {
    background-color: #666;
    cursor: pointer;
}

.product-detail-list li {
    padding: 0 30px;
    border-bottom: 1px solid #ededed;
}
.product-detail-list li:hover {
    background-color:aliceblue;
    cursor: pointer;
}
.product-detail-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
}

.product-detail-list span:last-child {
    text-align: right;
}

.product-search{
    width: 40%;
    padding:40px;
    margin: 0 auto;
}
.product-search input[type="text"] {
    margin-bottom: 20px;
}


/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

 [type="search"] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
  }
  

  .search-overlay {
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 110;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.96);
    visibility: hidden;
    opacity: 0;
    transform: scale(1.09);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    box-sizing: border-box;
  }
  .search-overlay p {
    padding-top: 15px;
  }
  .search-overlay .event-summary p {
    padding-top: 0;
  }
  .search-overlay .event-summary {
    margin-bottom: 0;
    margin-top: 20px;
  }
  body.admin-bar .search-overlay {
    top: 32px;
  }
  .search-overlay__top {
    background-color: rgba(0, 0, 0, 0.12);
  }
  .search-overlay__icon {
    margin-right: 10px;
    font-size: 1.8rem;
    color: #F95738;
  }
  @media (min-width: 960px) {
    .search-overlay__icon {
      font-size: 2.5rem;
    }
  }
  .search-overlay--active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }
  .search-overlay__section-title {
    margin: 30px 0 1px 0;
    font-weight: 400;
    color: #0D3B66;
    font-size: 2rem;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
  }
  .search-overlay__close {
    position: absolute;
    top: 13px;
    right: 16px;
    font-size: 2.1rem;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #fff;
    color: #F95738;
    line-height: 0.7;
  }
  @media (min-width: 530px) {
    .search-overlay__close {
      top: 18px;
      font-size: 2.1rem;
    }
  }
  @media (min-width: 960px) {
    .search-overlay__close {
      top: 26px;
      font-size: 2.8rem;
    }
  }
  .search-overlay__close:hover {
    opacity: 1;
  }
  .search-overlay .one-half {
    padding-bottom: 0;
  }

  


@media only screen and (max-width: 768px) {
    .navbar {
        padding: .5em;
    }
    .hero-osbond {
        min-height: 360px;
    }
    .hero-osbond-text {
        width: 80%;
    }
    .hero-osbond-text h2 {
        font-size: 1.8rem;
        margin-top: 30px;
    }
    .osbond-button  {
        font-size: 1.2em;
        padding: .3em .8em; 
    }
    .osbond-content {
        padding: 20px;
    }
    .osbond-content figure img {
        max-height: 60px;
    }
    .osbond-content h3 {
        margin-top:10px;
        font-size: 1.1em;
        font-weight: bold;
    }
    
    .osbond-client {
        padding: 40px;
    }
    .clients {
        margin-top: 20px;
    }
    .clients, .client {
        display: inline-block;
    }

    .product-page-detail h1 {
        font-size: 2.2em;
    }
    .product-page-detail p, .product-page-detail ul {
        font-size: .94em;
    }

    .footer-logo {
        width: 100%;
    }
    .footer-menu {
        display: none;
    }
    .footer-column, .osbond-footer p {
        display: block;
        text-align: center;
    }

    .product-detail-list li {
        padding: 0;
    }
    .product-detail-list li:first-child {
        padding: 0 20px;
    }
    .product-search{ 
        width: 100%;
        padding: 0;
    }

    .product-detail-list span:first-child {
        width: 260px;
        text-align: left;
    }
}

.osbond-iso{
    padding-top:40px;
}
.osbond-iso-icon {
    margin-top: 40px;
    text-align: center;
}

.osbond-iso-icon li {
    display: inline-block;
}

.osbond-iso-icon small {
    display: none;
    font-size: .7em;
    max-width: 180px; 
}