/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');


/* -------------------- VARIABLES -------------------- */

:root {
  /*--primary-color: #23408F;*/
  --primary-color: #3264ab;
  --primary-color-light: #d7e0ef;
  --primary-color-select: #2969c3;
  --secondary-color: #00aa82;
  --secondary-color-light: #31bb9a;
  --light-color: #646768;  /*color: #9B9E9F;*/
}


/* -------------------- MISC -------------------- */

html {
  background: white;
  font-size: 14px;
}

body{
  font-family: 'Nunito', sans-serif;
  color: var(--light-color);
}

.subtitle-icon {
  color: var(--primary-color);
  font-size: 30px;
}

.main-nav ul,
.side-nav ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

/*
p ul,
table ul{
padding-left: 40px;
position: relative;
}
p ul li:before,
table ul li:before{
content: "\2022";
color: var(--primary-color);
font-weight: bold;
display: inline-block;
margin-left: 1rem;
position: absolute;
left: 0;
}
*/

.table td, .table th {
  border-top: none;
}

a{
  color: var(--primary-color);
}

a:focus, a:hover {
  text-decoration: none;
}

.h-flex{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.h-flex.center{
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.v-flex{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.v-flex.center{
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.f-right{
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

h2{
  font-weight: 600;
}
h6{
  font-size: 0.9rem;
}
h2, h3, h4, h5, h6{
  color: var(--primary-color);
}


/* -------------------- HEADER -------------------- */

.pre-header{
  background: var(--primary-color-light);
  z-index: 1;
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.pre-header ul{
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.pre-header ul li{
  margin-left: 30px;
}

.pre-header ul li a{
  color: var(--primary-color);
  font-size: 0.9rem;
  padding: 8px 5px;
  display: inline-block;
}

.pre-header ul li a.active{
  font-weight: 600;
}

header{
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 245, 245, 0.8);
  padding: 20px 0px;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@-moz-document url-prefix() {
  header{
    background: rgba(245, 245, 245, 0.96);
}
}

.logo {
  display: inline-block;
}

.logo img{
  max-height: 35px;
}

#slide_content .table {
  width: fit-content;
  margin: auto;
}


/* --- Navigation --- */

.main-nav ul{
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-nav ul li{
  margin-right: 30px;
}

.main-nav ul li:last-child{
  margin-right: 0px;
}

.main-nav ul li a{
  font-size: 1rem;
  font-weight: 300;
  display: inline-block;
  color: var(--light-color);
  position: relative;
}
.main-nav ul li a.active,
.main-nav ul li a:hover{
  color: var(--primary-color);
}
.main-nav ul li a.active{
  font-weight: 600;
}
.main-nav ul li a.active:after{
  content: "";
  display: block;
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 10px;
  bottom: -0.8rem;
  background: var(--primary-color);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}





/* --- Slide Navigation --- */
#slide_nav{
  display: none;
}

#slide_content{
  background-color: white;
}




/* --- Hamburger --- */

.burger-wrapper{
  display: none;
}

.hamburger {
  padding: 10px;
  cursor: pointer;
}

.hamburger-box {
  position: relative;
  width: 30px;
  height: 18px;
}

.hamburger .hamburger-inner,
.hamburger .hamburger-inner:after,
.hamburger .hamburger-inner:before {
  background-color: black;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  position: absolute;
  width: 30px;
  height: 2px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: #000;
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}

.hamburger-inner:before {
  top: -8px;
}

.hamburger-inner:after {
  bottom: -8px;
  width: 10px;
}

.hamburger-inner:after,
.hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger--arrow .hamburger-inner{
  background-color: rgba(0, 0, 0, 0) !important;
}

.hamburger--arrow .hamburger-inner:before {
  -webkit-transform: translate3d(-8px,2px,0) rotate(40deg) scaleX(.7);
  transform: translate3d(-8px,2px,0) rotate(40deg) scaleX(.7);
}

.hamburger--arrow .hamburger-inner:after {
  -webkit-transform: translate3d(-8px,-2px,0) rotate(-40deg) scaleX(.7);
  transform: translate3d(-8px,-2px,0) rotate(-40deg) scaleX(.7);
  width: 30px;
}




.banner {
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  width:100%;
  height:100%;
  position: absolute;
  top: 0;
  left: 0;
}

.tint{
  background: rgba(35, 64, 143, 0.4);
}

.half-banner{
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  width:100%;
  height:50vh;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.half-banner h2{
  color: white;
}

.product-image {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 40vh;
}







/* -------------------- CONTENT -------------------- */

main {
  padding: 30px 0px;
  min-height: 80vh;
}

#headerCarousel{
  /*  border-radius: 5px;*/
  margin-top: -30px;
  overflow: hidden;
  font-size: 18px;
}

#headerCarousel .carousel-item{
  height: calc(100vh - 75px - 35px);
  color: white;
}

#headerCarousel .banner-inner h2{
  color: white;
  font-size: 2.6rem;
}

#headerCarousel .carousel-indicators{
  bottom: 0;
}


#headerCarousel .carousel-control-next,
#headerCarousel .carousel-control-prev{
  font-size: 2rem;
  width: 10%;
}
#headerCarousel .carousel-control-next:focus,
#headerCarousel .carousel-control-prev:focus{
  opacity: .5;
}
#headerCarousel .carousel-control-next:hover,
#headerCarousel .carousel-control-prev:hover{
  opacity: 1;
}


#productCarousel .carousel-control-next,
#productCarousel .carousel-control-prev{
  color: var(--primary-color);
  font-size: 1.6rem;
  width: 10%;
  opacity: 1;
}

#productCarousel .carousel-control-next:hover,
#productCarousel .carousel-control-prev:hover{
  color: var(--primary-color);
}


#productCarousel .carousel-indicators li,
#newsCarousel .carousel-indicators li{
  background-color: #bdbdbd;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 10px;
  /*
  background: var(--primary-color);
  width: 5px;
  */
}
/*
#productCarousel .carousel-indicators li.active,
#newsCarousel .carousel-indicators li.active{
width: 30px;
}
*/
#productCarousel .carousel-indicators li.active,
#newsCarousel .carousel-indicators li.active{
  background-color: var(--primary-color);
}

#productCarousel .carousel-control-next { right: -10%; }
#productCarousel .carousel-control-prev { left: -10%; }


.carousel-indicators{
  bottom: -30px;
}

#newsCarousel .carousel-item{
  padding: 0px 20px;
}

section.page-section{
  margin: 90px 0px;
}


.news-entry{
  min-height: 450px;
}


.box-thumbnail{
  background-size: contain;
  background-position:center center;
  background-repeat:no-repeat;
  width:100%;
  padding-top: 60%;
  border-radius: 5px;
}

.style-form input,
.btn-core,
.anim-btn:before{
  border-radius: 30px;
  padding: 6px 30px;
  border-width: 1px;
  border-style: solid;
  display: inline-block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
}

.ghost-btn{
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.ghost-btn.selected{
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: white;
}

.green-btn{
  background: #558A93;
  color: white;
  border-color: #558A93;
}
.green-btn:hover{
  color: white;
  -webkit-box-shadow: 0 0 20px 0px rgba(85, 138, 147, 0.3);
  box-shadow: 0 0 20px 0px rgba(85, 138, 147, 0.3);
  background: #6da2ab;
  border-color: #6da2ab;
}
.blue-btn{
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}
.ghost-btn:hover,
.blue-btn:hover{
  color: white;
  -webkit-box-shadow: 0 0 20px 0px rgba(41, 75, 168, 0.3);
  box-shadow: 0 0 20px 0px rgba(41, 75, 168, 0.3);
  background: var(--primary-color-select);
  border-color: var(--primary-color-select);
}

.light-blue-btn{
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

.light-blue-btn:hover{
  -webkit-box-shadow: 0 0 20px 0px rgba(174, 190, 214, 0.3);
  box-shadow: 0 0 20px 0px rgba(174, 190, 214, 0.3);
  background: var(--secondary-color-light);
  border-color: var(--secondary-color-light);
  color: white;
}
.anim-btn{
  color: var(--light-color);
  position: relative;
}

.anim-btn span{
  padding: 6px 11px;
  padding-right: 22px;
  margin: 1px;
  display: inline-block;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.anim-btn span .anim-text{
  margin-left: 15px;
  display: inline-block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.anim-btn:hover svg{
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.anim-btn:before{
  content: "\a0";
  position: absolute;
  border-color: var(--light-color);
  padding: 6px 15px;
  left: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  min-width: 0%;
}

.anim-btn:hover svg,
.anim-btn:hover .anim-text{
  color: white;
}
.anim-btn:hover:before{
  background: var(--primary-color);
  border-color: var(--primary-color);
  min-width: 100%;
}
.anim-btn:hover span{
  /*transform: translateX(10px);*/
  padding: 6px 30px;
}



.side-nav{
  position: -webkit-sticky;
  position: sticky;
  top: 160px;
}

.page-custommer-support .side-nav {
  position: relative;
  top: 0;
}

.side-nav.gray{
  background: #F5F5F5;
  padding: 16px 12px;
  border-radius: 5px;
}

.side-nav .slide-target{
  position: absolute;
  width: 3px;
  height: 0px;
  top: 0;
  left: 0;
  background: var(--primary-color);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.side-nav ul li{
  margin-bottom: 10px;
}
.side-nav ul li a{
  display: inline-block;
  color: #8FA6C7;
  padding: 2px 16px;
  font-weight: 600;
}
.side-nav ul > a{
  color: var(--light-color);
  font-weight: 600;
}



.side-nav a.active,
.side-nav a:hover{
  color: var(--primary-color);
}



.hr-separator{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 60px 0px;
}
.hr-separator h5{
  color: var(--primary-color);
  padding: 0px 30px;
  margin: 0;
  text-align: center;
}

.hr-separator:before,
.hr-separator:after{
  content:"";
  display: block;
  min-width: 10%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  background: #DDDDDD;
}

.product-box{
  margin-bottom: 90px;
}

.blue-hr{
  color: var(--primary-color);
  font-weight: 600;
  Padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-color);
}

.chapter-link{
  color: #8FA6C7;
  font-weight: 600;
  padding: 2px 0px;
  display: inline-block;
}



.member-box img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}


.isotope-grid{
  min-height: 50vh;
  margin: 0px -20px;
}

.isotope-item{
  width: 25%;
  padding: 0px 20px 60px 20px;
}

.isotope-item h5{
  color: var(--light-color);
}

.isotope-item span{
  font-weight: 600;
}

.item-thumbnail{
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 100%;
  border-radius: 5px;
}

.file-box{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.file-box a{
  color: var(--light-color);
}
.file-box svg{
  color: var(--primary-color);
}






.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.yt-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}








#popup{
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 100vh;
  z-index: 100;
  background: white;
  display: none;
}





.info-card{
  border-radius: 5px;
  padding: 40px 60px;
  color: var(--primary-color);
  font-weight: 600;
  height: 100%;
}
.info-card p{
  margin: 0;
}

.info-card h2,
.info-card h3,
.info-card h4,
.info-card h5{
  font-weight: 600
}

.rose-card{
  //background: #F0D9D9;
  background: #E7F0F8;
}
.blue-card{
  background: #00aa822e;
}
.gray-card{
  background: #f5f5f5;
  border-radius: 5px;
  padding: 50px 70px;
}


.partner-box img{
  width: 100%;
  height: 100px;
  padding: 0px 20px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.partner-box:hover img{
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}


.home-box .partner-box img{
  padding: 23px 30px;
  -webkit-filter: grayscale(1) contrast(0.7) brightness(1.5);
  filter: grayscale(1) contrast(0.7) brightness(1.5);
}
.home-box .partner-box:hover img{
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.home-box h2{
  text-align: center;
  font-size: 2.5rem;
}



.left-chevrons{
  position: absolute;
  left: -75px;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.right-chevrons{
  position: absolute;
  right: -75px;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.left-chevrons svg,
.right-chevrons svg{
  height: 100%;
  font-size: 5rem;
  color: #d7e0ef;
}


.reset-btn,
.filter-btn {
  font-size: 0.9rem;
  padding: 2px 10px;
}



.filter-title{
  font-size: 1.1rem;
}


/* -------------------- FORM -------------------- */


/* -------------------- FOOTER -------------------- */

.pre-footer{
  background: var(--primary-color);
  color: white;
  padding: 30px 0px;
  position: relative;
  z-index: 1;
}
.pre-footer h3{
  color: white;
}

.main-footer{
  background: var(--primary-color-light);
  color: var(--primary-color);
  padding: 120px 0px;
  position: relative;
}

a.social-link{
  display: inline-block;
  margin-right: 16px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.slide-down{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}

.newsletter-input{
  border-color: white;
  width: calc(100% - 80px);
  border-color: white;
  outline: none;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.newsletter-input::-webkit-input-placeholder {
  color: #8FA6C7;
  opacity: 1;
}

.newsletter-input::-moz-placeholder {
  color: #8FA6C7;
  opacity: 1;
}

.newsletter-input:-ms-input-placeholder {
  color: #8FA6C7;
  opacity: 1;
}

.newsletter-input::-ms-input-placeholder {
  color: #8FA6C7;
  opacity: 1;
}

.newsletter-input::placeholder {
  color: #8FA6C7;
  opacity: 1;
}

.newsletter-submit{
  /*position: absolute;*/
  /*right: 0;*/
  margin: 0 auto;
}

.pre-footer .sub-text{
  position: absolute;
  bottom: -120%;
  left: 0;
  right: 0;
  color: var(--light-color);
  font-size: 0.8rem;
}

.main-footer .bottom-text{
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  color: var(--light-color);
}

.main-footer .bottom-text a{
  color: var(--light-color);
}


.mobile-quote-button-container{
  display: none;
  background: rgba(245, 245, 245, 0.8);
}

.mobile-quote-button{
  margin-top: 5px;
  margin-left: max(30px, 10vw);
}

/* -------------------- BOOTSTRAP 4 MEDIAQUERIES -------------------- */

/* This is the top-down version of bootstrap mediaquery where large desktop is the default (no mediaquery) version */

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
.left-chevrons,
.right-chevrons{
  display: none;
}

.gray-card {
  padding: 40px 30px;
}

section.page-section {
  margin: 40px 0px;
}

#productCarousel .carousel-control-next { right: 0%; }
#productCarousel .carousel-control-prev { left: 0%; }

.product-image {
  height: 40vh;
}

.main-footer{
  text-align: center;
}

.side-nav{
  display: none;
}

.info-card {
  padding: 30px 40px;
}

.member-box img {
  height: 48vh;
}
.main-footer {
  padding: 100px 0px;
}


main.content table {
  overflow-x: scroll;
  display: block;
}

}

/*Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
/* --- SLIDE NAV --- */
#slide_nav{
  height: 100%;
  width: 100%;
  display: block;
  /*background: #262626;*/
  background: #fcfcfc;
  position: fixed;
  top: 0;
  right: 0;
  padding-left: 50vw;
}

#slide_content{
  background: white;
  min-height: 100vh;
  -webkit-box-shadow: -6px 0px 40px rgb(0, 0, 0, 0.2);
  box-shadow: -6px 0px 40px rgb(0, 0, 0, 0.2);
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  -o-transition: 0.3s transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
}

#slide_content.open,
header.open,
.pre-header.open{
  -webkit-transform: translateX(-50vw);
  -ms-transform: translateX(-50vw);
  transform: translateX(-50vw);
}

#slide_nav.open .side-nav-content{
  opacity: 1;
}

.side-nav-content{
  opacity: 0;
  margin-top: 75px;
  font-size: 1rem;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.slide-nav ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.slide-nav ul li a{
  color: var(--light-color);
  display: block;
  padding: 8px 20px;
  border-bottom: 1px solid #eaeaea;
}
.slide-nav ul li a.active{
  color: var(--primary-color);
  font-weight: bold;
}


.logo img{
  /*  height: 34px;*/
}

.burger-wrapper{
  display: inline-block;
}

.left-chevrons,
.right-chevrons{
  width: 20%;
  height: 30%;
}

.isotope-item{
  width: 50%;
}


.half-banner {
  height: 36vh;
}

.hr-separator{
  margin: 30px 0px;
}

.mobile-quote-button-container{
  display: block;
}

header{
  padding-bottom: 5px;
}

}

/*
@media (max-width: 991.98px) {

.main-nav ul li {
margin-right: 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.main-nav ul li a {
font-size: 0.9rem;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}

}*/

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {}




















/* jkcms viewport*/
#jkcms-viewport{
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  background: #000000c2;
  border-top: 1px solid #000000;
  color: #d5d5d5;
  font-family: monospace;
  font-size: 11px;
  font-weight: 100;
  z-index: 9999999999;
  backdrop-filter: blur(10px);
}

.jkcms-elements{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 2px 0px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.jkcms-elements > div{
  padding: 0px 10px;
  border-right: 1px solid gray;
}
.jkcms-elements .jkcms-err-red svg{
  color: rgb(255, 69, 58);
}
.jkcms-elements a{
  color: #d5d5d5;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.jkcms-elements a:hover{
  background: #ffffff30;
}

/******* INDUSTRY *******/
.industry-text {
  background-color: #f5f5f5;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #000;
}
.industry-text-wrapper {
  padding: 2rem;
}
.industry-image {
  background-size: cover;
  background-position: center center;
  min-height: 150px;
  transition: all 0.4s ease;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.industry-row:hover .industry-image {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
@media (min-width: 768px) {
.industry-image {
  min-height: 395px;
}
}
/* Ratio according to mockup: 1.15238095 */
/*
@media (min-width: 768px) {
.industry-image {
min-height: 312px; /* 360px width
}
}
/*@media (min-width: 992px) {
.industry-image {
min-height: 416px; /* 480px width *
}
}
@media (min-width: 1200px) {
.industry-image {
min-height: 495px; /* 570px width *
}
}*/

.btn-custom-green {
  border-radius: 0;
  border: 1px solid #4ca784;
  background-color: transparent;
  text-transform: uppercase;
  color: #4ca784;
  transition: all 0.4s ease;
  font-weight: 600;
}
.btn-custom-green:hover {
  background-color: #4ca784;
  color: #FFF;
  border: 1px solid #4ca784;
}
.industry-row {
  margin-top: 5px;
}
.industry-row:last-child .industry-text {
  background-color: #d3ede6;
}
hr.title-line {
  border: none;
  border-top: 5px solid #4ca784;
  width: 31%;
  margin: 1rem 0;
}
.industry-text-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  max-width: 100%
}
@media (min-width: 1200px) {
.product-title {
  max-width: 60%;
}
}
