html {
    font-family: "proxima nova",sans-serif;
}

.fadein {
    opacity:0;
}

.fadein.left {
    margin: 0 -50px 0 50px;
}

.fadein.right {
    margin: 0 50px 0 -50px;
}


/************************************** 
** Text Treatments
***************************************/
h1 {
    font-size: 5vw;
    text-transform: uppercase;
    font-weight: 800;
    line-height: .9;
}

h2 {
    font-size: 3.5vw;
    text-transform: uppercase;
    font-weight: 800;
    line-height: .9;
}

h2.subheading {
    font-size: 2.5vw;
    text-transform: none;
    font-weight: 200;
    line-height: 1.1;
}

h3 {
    font-size: 3vw;
    font-weight: 200;
}

h4 {
    font-size: 2.5vw;
    font-weight: 500;
}

h4.subheading {
    font-size: 2vw;
    text-transform: none;
    font-weight: 200;
    padding-bottom: 2rem;
}

p {
    font-size: 1vw;
    line-height: 1.6;
}

@media screen and (max-width: 991px) {
    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 40px;
    }

    h2.subheading {
        font-size: 35px;
    }

    h3, #hero h3 {
        font-size: 25px!important;
    }

    h4 {
        font-size: 40px;
    }

    h4.subheading {
        font-size: 30px;
    }

    p {
        font-size: 16px!important;
    }
}

span.break {
    display: block;
}

.navbar-desktop {
    display: flex;
    gap: 1.5em;
    align-items: center;
    justify-content: flex-end;
}

.navbar-desktop > a {
    font-family: 'proxima-nova-condensed';
    color: #004A8C;
    font-weight: bold;
    text-decoration: none;
}

.navbar-nav li.nav-item {
    display: flex;
}

.navbar-nav li > a {
    font-family: 'proxima-nova-condensed';
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: none;
    padding: 15px;
}

nav .offcanvas {
    background: #001245;
}

.btn-close {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

nav .navbar-toggler {
    display: none;
}

@media screen and (max-width: 991px) {
    .navbar-desktop {
        display: none;
    }

    nav .navbar-brand {
        width: 70%;
    } 
    
    nav .navbar-toggler {
        display: initial;
    }
}

.jump-nav {
    font-size: 1.3vw;
    font-weight: bold;
    margin-top: 30px;
    line-height: 2;
    list-style: none;
    /* list-style-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' fill='%23E73A43'%3e%3cpath d='M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z'/%3e%3c/svg%3e"); */
}

.jump-nav li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.jump-nav li:before {
    content: '';
    display: inline-block;
    height: 25px;
    width: 35px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' fill='%23E73A43'%3e%3cpath d='M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z'/%3e%3c/svg%3e");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    margin-left: -35px;
  }

.jump-nav a {
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 991px) {
    #hero .row [class*=col]:first-child {
        flex-basis: fit-content;
    }

    .jump-nav {
        font-size: 20px;
    }
}

section {
    scroll-margin-top: 125px;
}


/************************************** 
** Color Treatments
***************************************/

.white-bg {
    background: #fff;
}

.fade-bg {
    background-image: linear-gradient(0deg, #E9EDEF, 20%, transparent);
}

.fade-bg.spray {
    /* background: url(../img/blue-paint-spray.png) no-repeat 50% 60%, linear-gradient(0deg, #E9EDEF, 20%, transparent); */
}

.gray-bg {
    background: #E9EDEF;
}

.dark-blue-bg, .darkblue-bg {
    background: #001245;
}

.red-bg {
    background: #E73A43;
}

.white-text {
    color: #fff;
}

.dark-blue-text, .darkblue-text {
    color: #004A8C;
}

.red-text {
    color: #E73A43;
}

@media(min-width: 992px){
    .red-text#applications-head{
        padding-bottom: 10%;
    }
}


/************************************** 
** Image & Chart Treatments
***************************************/

img {
    max-width: 100%;
}

img.thumb {
    max-width: 250px;
}

.carousel-item .chart {
    padding: 0rem 4rem 4rem;
}

.chart {
    padding: 0rem 4rem 4rem;
    max-width: 100%;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
	filter: invert(1) grayscale(100);
}

.carousel-indicators [data-bs-target] {
	background-color: #212529;
}

@media screen and (max-width: 991px) {
    .carousel-item .chart {
        padding: 0rem 0rem 4rem;
    }

    .chart {
        padding: 0rem 1rem 1rem;
    }
}

.chart h5 {
    text-align: center;
    font-size: 2vw;
    color: #212529;
    font-weight: 500;
}

@media screen and (max-width: 991px) {
    .chart h5 {
        font-size: 20px;
    }
}


/************************************** 
** Tab Treatments
***************************************/
.icon-tabs button {
    background: transparent!important;
    border: 0px!important;
}

.icon-tabs button:not(.active) img {
    opacity: .4;
    transition: opacity .4s ease;
}

.icon-tabs button:not(.active) img:hover {
    opacity: 1;
    transition: opacity .4s ease;
}

.icon-tabs .nav-tabs {
    border-bottom: 0!important;
}

.icon-tabs .tab-content h3 {
    font-weight: 900;
    text-transform: uppercase;
}

#challenges-tabs li.nav-item {
    width: 20%;
}

#challenges-tabs-content h3 {
    padding-top: 1em;
    color: #e73a43;
    text-align: center;
}

#challenges-tabs-content p {
    padding-top: .25em;
    color: #011245;
    text-align: center;
    font-weight: 200;
    font-size: 1.75vw;
    line-height: 1.1;
}

#composition-tabs li.nav-item,
#versusothers-tabs li.nav-item {
    width: 25%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

#composition-tabs button img {
    margin-bottom:1em;
}

#composition-tabs button {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1vw;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
}

#composition-tabs-content {
    color: #fff;
    padding: 2.75em;
}

#features-tabs {
    justify-content: center;
}

#features-tabs li.nav-item {
    max-width: 115px;
}

#features-tabs-content img {
    max-width: 300px;
}

#features-tabs-content .tab-pane.active {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#features-tabs-content .tab-pane h3 {
    text-align: center;
}

#versusothers-tabs-content h3 {
    color:#004A8C;
    text-align: center;
}

.carousel-indicators [data-bs-target]:first-child,
.carousel-indicators [data-bs-target]:last-child {
    box-sizing: inherit!important;
}


/************************************** 
** Button Treatments
***************************************/
.btn.sq {
    background-color: #E73A43;
    color: #fff;
    display: inline-flex;
    padding: .5vw 1.5vw;
    border-radius: 0px;
}

.btn.cir {
    background-color: #E73A43;
    color: #fff;
    display: inline-flex;
    padding: .5vw 1.5vw;
    border-radius: 100px;
}

.btn.cir.dark-blue,
.btn.cir.darkblue {
    background-color: #001245;
    color: #fff;
}

@media screen and (max-width: 991px) {
    .btn.cir,.btn.sq {
        padding: .6em 2em;
    }
}


/************************************** 
** Layout Treatments
***************************************/

.row {
    --bs-gutter-x: 0rem;
}

section > .row:not(.bottom-decoration) > [class*=col] {
    padding: 3vw;
}

@media screen and (min-width: 992px) {

    section > .row:not(.bottom-decoration) > [class*=col]:not(:last-child):first-child {
        padding: 3vw 3vw 3vw 8vw;
    }
    
    section > .row > [class*=col]:nth-child(2) {
        padding: 3vw 8vw 3vw 3vw;
    }

}

@media screen and (max-width: 991px) {
    section > .row:not(.bottom-decoration) > [class*=col]:not(:last-child):first-child {
        padding: 3em;
    }
    
    section > .row > [class*=col]:nth-child(2) {
        padding: 3em;
    }

}


/************************************** 
** Header
***************************************/
header > .row {
    background: #fff;
    height: 100px;
    padding: 0 2vw;
    box-shadow: #0000002e 0px 5px 10px;
}


/************************************** 
** Hero
***************************************/
#hero {
    padding-top: 2em;
}

#herovideo {
    position: absolute;
    width: 100%;
    top: 100px;
    z-index: -1;
    object-fit: fill;
}

#hero h3 {
    font-size: 2vw;
    text-transform: uppercase;
    font-weight: 900;
}

#hero .gradient-bg {
    background-image: linear-gradient(0deg, #0b0943 40%, transparent 100%);
}

#hero .bottom-decoration {
    padding: 0!important;
}

#hero .bottom-decoration img {
    position: absolute;
    left: 0;
    width: 100vw;
}

.blaze-prev{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: transparent;
    border: none;
    outline: none;
}

.blaze-prev::before{
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.blaze-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background: transparent;
    border: none;
    outline: none;
}

.blaze-next::before{
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* #hero:after {
    background: url(../img/paint-drip-01.png) no-repeat top center;
    background-size: cover;
    content: "";
    display: block;
    position: absolute;
    margin-top: -24%;
    z-index: -1;
    width: 100%;
    aspect-ratio: 2 / 1;
} */

@media screen and (max-width: 991px) {

    #herovideo {
        display: none;
    }

    #hero {
        background: url(../img/banner.png) no-repeat center center;
        background-size: cover;
    }

}


/************************************** 
** State of the Market
***************************************/
#market [class*=col] {
    padding-top: 10vw;
}

#namarket [class*=col]:first-child {
    background: url(../img/na-color-splash.png) no-repeat bottom left;
    background-size: 75%;
    padding-bottom: 17vw;
}

@media screen and (max-width: 991px) {
    #namarket [class*=col]:first-child {
        background: none;
    }
}

.border-left {
    border-width: 2px;
    border-style: solid;
    border-image: linear-gradient(0deg, transparent 10%, #e73a43 10%, #e73a43 90%, transparent 90%) 1;
    border-right: 0px;
}

@media screen and (max-width: 991px) {
    .border-left {
        border: 0!important;
    }
}

#productrecovery .row:first-child [class*=col]:first-child {
    padding-right: 0!important;
}

#productrecovery .row:first-child [class*=col]:first-child h3,
#productrecovery .row:first-child [class*=col]:first-child p {
    padding-right: 3vw;
}

#productionprocess .row:first-child [class*=col]:last-child {
    padding-left: 0!important;
    padding-right: 0!important;
    padding-bottom: 0!important;
}

#productionprocess .row:first-child [class*=col]:last-child p,
#productionprocess .row:first-child [class*=col]:last-child .pad {
    padding-left: 3vw;
    padding-right: 8vw;
}

@media screen and (max-width: 991px) {
    #productrecovery .row:first-child [class*=col]:first-child h3,
    #productrecovery .row:first-child [class*=col]:first-child p,
    #productionprocess .row:first-child [class*=col]:last-child p,
    #productionprocess .row:first-child [class*=col]:last-child .pad {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.money-pipe {
	background: url('../img/money-pipe.png') no-repeat right bottom;
	background-size: 100%;
}

@media screen and (min-width: 768px) {
	.money-pipe {
		background-size: 60%;
	}
}

@media screen and (min-width: 992px) {
	.money-pipe {
		background-size: 80%;
	}
}

@media screen and (min-width: 1400px) {
	.money-pipe {
		background-size: 540px auto;
	}
}

.icon-button-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8rem;
}

.recovery-white-paper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 1.5rem 0;
}


.icon-button-block img {
    margin-bottom: 2em;
}

table thead tr th {
    text-transform: uppercase;
}

table thead tr th:not(:first-child) {
	min-width: 100px;
    text-align: center;
    border-top: 0px;
    border-left: #707070 solid 1px;
    border-bottom: 0px;
    border-right: 0px;
}

table thead tr th:first-child {
    text-align: left;
    border-top: 0px;
    border-left: 0px;
    border-bottom: 0px;
    border-right: 0px;
}

table tbody tr th {
    text-align: left;
    border-top: #707070 solid 1px;
    border-left: 0px;
    border-bottom: 0px;
    border-right: 0px;
    font-weight: normal;
}

table th {
    background: transparent!important;
}

table td {
    background: transparent!important;
	text-align: left;
	vertical-align: middle;
    border-top: #707070 solid 1px;
    border-left: #707070 solid 1px;
    border-bottom: 0px;
    border-right: 0px;
}

table td span {
	display: flex;
    flex-direction: column;
	width: 100%;
	gap: 5px;
	align-items: center;
	font-size: 10px;
}

table td span img {
	width: 24px;
	height: 24px;
}

#gflo .list-container {
    max-height: 300px;
    overflow-y: auto;
    margin: 2em 0em 3em;
}

/* Let's get this party started */
#gflo .list-container::-webkit-scrollbar {
    width: 12px;
}
 
/* Track */
#gflo .list-container::-webkit-scrollbar-track {
  width: 2px;
    border-radius: 10px;
    background-image: linear-gradient(90deg, transparent 40%, #fff 40%, #fff 60%, transparent 60%);
}
 
/* Handle */
#gflo .list-container::-webkit-scrollbar-thumb {
  width:12px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #fff; 
}
#gflo .list-container::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(255,0,0,0.4); 
}

#gflo ul {
    /* columns: 2; */
    line-height: 2.25;
    padding-left: 3em;
}

#gflo li {
    margin: 0px 15px 0 0;
    font-size: 14px;
}

#gflo li::marker {
    color: #E73A43;
}

@media screen and (max-width: 991px) {
    #gflo ul {
        columns: 1;
    }
}


fieldset {
    border: 0;
    padding: 0;
    margin: 0;
    max-width: 100%!important;
}

fieldset.form-columns-2 .hs-form-field {
    width: 50%;
    float: left;
}

fieldset>div {
    margin-bottom: 12px !important;
}

fieldset label {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 7px;
}

fieldset.form-columns-1 .input {
    margin-right: 8px;
}

.hs-form select:not(.primary), .hs-form input[type="text"], .hs-form input[type="email"], .hs-form input[type="tel"], .hs-form input[type="number"], .hs-form textarea, .hbspt-form select:not(.primary), .hbspt-form input[type="text"], .hbspt-form input[type="email"], .hbspt-form input[type="tel"], .hbspt-form input[type="number"], .hbspt-form textarea, .cta-content select:not(.primary), .cta-content input[type="text"], .cta-content input[type="email"], .cta-content input[type="tel"], .cta-content input[type="number"], .cta-content textarea {
    display: block;
    width: 100% !important;
    height: 44px;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    padding: .375rem .75rem;
    border: 1px solid #C7CCD1;
    border-radius: 0;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.hs-form input[type="submit"], .hbspt-form input[type="submit"], .cta-content input[type="submit"] {
    font-family: "proxima-nova",sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff !important;
    margin: 20px 15px 24px 0;
    padding: 10px 24px;
    border-radius: 0;
    border-color: transparent;
    transition: background-color .24s ease-in-out;
    white-space: normal;
}

input[type="submit"] {
    background-color: #e73a43;
    color: #fff !important;
    border-color: transparent;
}

input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus, input[type="submit"]:active:hover, input[type="submit"]:active:focus {
    color: #fff !important;
    background-color: #d41a24;
    border-color: transparent;
}

.hs-form .legal-consent-container ul li label span p, .hbspt-form .legal-consent-container ul li label span p, .cta-content .legal-consent-container ul li label span p {
    font-size: 14px !important;
    font-weight: normal!important;
}

.hs-form .legal-consent-container ul, .hbspt-form .legal-consent-container ul, .cta-content .legal-consent-container ul {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

.hs-form .legal-consent-container ul li label, .hbspt-form .legal-consent-container ul li label, .cta-content .legal-consent-container ul li label {
    position: relative;
    font-size: 14px;
}

.hs-form .legal-consent-container ul li label span, .hbspt-form .legal-consent-container ul li label span, .cta-content .legal-consent-container ul li label span {
    display: inline-block;
    padding-left: 24px;
    margin: 0;
}

.hs-form .legal-consent-container ul li label input, .hbspt-form .legal-consent-container ul li label input, .cta-content .legal-consent-container ul li label input {
    top: 5px;
    position: absolute;
}

.modal {
    --bs-modal-width: 90vw!important;
}

.modal-content {
    border-radius: 0px!important;
}

.modal-header {
    border-bottom: 0!important;
}