/* 
Client: Precision Roll Grinders
Author: Luke Hoang
Version: 0.0.1
Style CSS
Date: 7-26-2019

/*


/* common color */

.color{
    color: #009ddc; /* main theme */
    color: #f3f3f3; /* Alt background*/
    color: #3f3f3f; /* font color + footer*/
}
.font{
    font-family: bebas-neue-by-fontfabric, sans-serif;
    font-weight: 400;
    font-style: normal;

    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;

    font-family: proxima-nova, sans-serif;
    font-style: normal;
    font-weight: 400;

    font-family: proxima-nova-extra-condensed, sans-serif;
    font-style: normal;
    font-weight: 800;
}



/********************************************

				General

********************************************/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 0;
    font-size: 16px;
    letter-spacing: 0;
    vertical-align: baseline;
    transition: all .25s;
}
html{
    margin-right: 0 !important;
}
body, html, input {
    overflow-x: hidden;
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #3f3f3f; /* TODO: update new color */
    -moz-osx-font-smoothing: grayscale;
}
/* body{
    opacity: 0;
    transition: opacity .25s ease-in;
    -webkit-transition: opacity .25s ease-in;
} */
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

li {
    margin-left: 25px;
}
ul li{
    list-style: none;
}
ul.list_style_initial li {
    list-style-type: initial;
}
img {
    max-width: 100%;
}
.clearfix:after {
    display: block;
    content: '';
    clear:both;
}
.wrapper {
    width: 100%;
}
.container {
    width: 100%;
    padding: 0 20px;
    margin: auto;
    max-width: 1400px;
}
.flex {
    display: flex;
}
.flex_container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex_wrap {
    display: -webkit-flex; /* Safari */
    -webkit-flex-wrap: wrap; /* Safari 6.1+ */
    display: flex;   
    flex-wrap: wrap;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.hidden {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity .25s ease;
}
.display_none {
    display: none !important;
    transition: all .25s;
}
.mb-0{
    margin-bottom: 0 !important;
}
.text_align_center {
    text-align: center;
}
.color_blue{
    color: #009ddc !important;
}
.color_white{
    color: #fff !important;
}
.text_blue{
    color: #009ddc;
    font-weight: 600;
}
.a_underline{
    text-decoration: underline;
}
.bg_alt {
    background: #f3f3f3;
}
.bg_blue {
    background: #009ddc;
}
.w-50{
    width: calc(50% - 10px);
    float: left;
}
.w-30{
    width: calc(30% - 10px);
    float: left;
}
.w-33{
    width: calc(33% - 10px);
    float: left;
}
.w-20{
    width:  calc(20% - 10px);
    float: left;
}
/* .copy a:hover {
    text-decoration: underline;
    transition: all .25s;
}
.copy a.btn:hover {
    text-decoration: none;
}
.copy a.cta_learn_more:hover {
    text-decoration: none;
} */
a.cta_learn_more{
    text-transform: uppercase;
    font-family: bebas-neue, sans-serif !important;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.5px;
}
a.cta_learn_more span{
    font-family: bebas-neue, sans-serif !important;
    position: relative;
    top: -14px;
}
a.cta_learn_more span::after {
    content: "\2014";
    color: #009ddc;
    font-size: 2rem;
    position: absolute;
    top: 5px;
    left: 5px;
}
a.cta_learn_more:hover span::after {
    content: "\002B";
    color: #009ddc;
    font-size: 2rem;
    position: absolute;
    top: 5px;
    left: 5px;
}
.blocker {
    z-index: 9999 !important;
}
.compensate-for-scrollbar {
    margin-right: 0 !important;
}
/* Back to top */
.back_to_top {
    color: #fff;
    background-color: #009ddc;
    padding: 10px 15px;
    position: fixed;
    bottom: 45px;
    right: 15px;
    transition: 1s;
    z-index: 9999;
}
.back_to_top:hover > .icon{
    transform: translateY(-2px);
    transition: all .25s;
}
.btn_request_a_quote_mobile {
    font-family: bebas-neue, sans-serif !important;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    visibility: hidden;
    color: #fff;
    background-color: #009ddc;
    padding: 10px 15px;
    position: fixed;
    bottom: 0;
    right: 0;
    transition: 1s;
    z-index: 9999;
    width: 100%;
    text-align: center;
    box-shadow: 2px 0 24px 0 #687f90;
}
.btn_request_a_quote_mobile span{
    letter-spacing: 2px;
}
.btn_load_more{
    width: 100%;
    max-width: 150px;
    background: #009ddc;
    color: #fff;
    border: 2px solid #009ddc;
    border-radius: 25px;
    text-transform: uppercase;
    font-family: bebas-neue-by-fontfabric, sans-serif;
    font-style: normal;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 0;
    font-weight: 600;
    text-align: center;
    padding: 18px 30px;
    margin: 45px 0 25px;
    display: block;
}
.btn.btn_load_more:hover{
    background: #fff;
    color: #009ddc;
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }

/********************************************

				Table

********************************************/


table {
    border-collapse: collapse;
    width: 100% !important;
}

th, td {
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}
/********************************************

				Modal

********************************************/
.modal-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 99999;
}
.modal-wrapper .overlay{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.831);
}
.modal{
    background: #009ddc;
    border-radius: 0;
    display: block;
    position: relative;
    padding: 45px;
}
.modal h2{
    font-family: bebas-neue, sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.5px;
    text-align: center;
}
.modal p{
    text-align: center;
    color: #fff;
}

.modal .btn {
    background: #fff;
    color: #009ddc;
    border: 2px solid #fff;
    border-radius: 25px;
    padding: 10px 28px;
    margin: 5px 3px 15px;
    font-family: bebas-neue, sans-serif !important;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.5px;
    text-align: center;
    display: block;
    width: 100%;
    cursor: pointer;
}
.modal .btn:hover{
    background: none;
    color: #fff;
}
.modal .btn_modal_close {
    position: absolute;
    top: -11px;
    right: -15px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #01305E;
    cursor: pointer;
    z-index: 999;
    background: #fff;
    border-radius: 50%;
    padding: 0px 10px;
}


/* Whitepaper Modal */
#modal_whitepaper .modal{
    max-width: 1000px;
}
#modal_whitepaper .container {
    display: flex;
    max-width: 1200px;
    position: relative;
    padding: 35px 0;
    flex-direction: column;
    align-items: flex-start;
}
#modal_whitepaper h2{
    width: 100%;
    text-align: center;
}
#modal_whitepaper h2 span{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    margin: auto;
    display: block;
}
#modal_whitepaper h2 span#whitepaper--title{
    font-size: 2rem;
}
#modal_whitepaper h2 span#whitepaper--sub-title{
    font-size: 1.4rem;
}

#modal_whitepaper p,
#modal_whitepaper label{
    color: #fff;
}
#modal_whitepaper form{
    width: 90%;
    padding: 3em 1.5em;
    display: flex;
    flex-direction: column;
    padding: 25px 1.5em 0px;
    margin: auto;
}
#modal_whitepaper input,
#modal_whitepaper select,
#modal_whitepaper textarea{
    width: 100%;
    margin: 10px auto;
    padding: 10px;
    border-radius: 25px;
    color: #959595;
    font-family: sans-serif;
    font-weight: 400;
    font-style: normal;
}
#modal_whitepaper input:focus,
#modal_whitepaper select:focus,
#modal_whitepaper textarea:focus,
#modal_whitepaper button:focus{
    outline: none;
}
#modal_whitepaper .row{
    height: 100%;
}
#modal_whitepaper .row>div:first-child{
    margin: 0 5px;
    display: flex;
    justify-content: space-between;
}
#modal_whitepaper .row>div>div>div{
    display: flex;
    align-items: center;
}
#modal_whitepaper .row>p{
    font-size: .8rem;
    text-align: right;
    margin: 0 10px;
}
#modal_whitepaper .row:last-child{
    height: 100%;
    display: flex;
    align-items: center;
}
#modal_whitepaper button{
    padding: 10px 65px;
    background: #fff;
    color: #009ddc;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    font-size: 1rem;
    border-radius: 25px;
    float: right;
    cursor: pointer;
    border: 2px solid #fff;
}
#modal_whitepaper button:hover{
    background: #009ddc;
    color: #fff;
    border: 2px solid #fff;
}



#modal_whitepaper .btn.btn_request{
    padding: 5px 30px;
}

#modal_whitepaper .recaptcha_term p{
    color: #fff;
    font-size: 12px;
}

@media (max-width: 992px){
    #modal_whitepaper form {
        width: 100%;
        padding: 25px 0em 0px;
    }
    #modal_whitepaper h2 {
        font-size: 1.7rem;
    }
  
}

@media (max-width: 768px){
    #modal_whitepaper .modal {
        padding: 20px;
    }
    #modal_whitepaper button {
        margin-top: 10px;
        width: 100%;
    }
    #modal_whitepaper h2 {
        font-size: 1.5rem;
    }
    #modal_whitepaper .recaptcha_term{
        text-align: center;
        margin: auto;
    }
}



/********************************************

				Logo - brand

********************************************/


.navigation_desktop .brand {
    justify-content: flex-start;
    align-items: center;
    z-index: 1003;
    background: #fff;
    height: 88px;
}
.navigation_desktop .brand .logo{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 5px auto 0;
}
.navigation_desktop .brand .logo img{
    height: 75px;
}
.navigation_desktop .bg-fff {
    height: 88px;
    width: 30%;
    margin-left: -30%;
    background: #fff;
    z-index: 99;
}
.navigation_desktop .nav>ul>li>svg{
    cursor: pointer;
}
.navigation_desktop .quote {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #009ddc;
    margin-left: 30px;
    margin-right: -2px;
}
.navigation_desktop .quote a{
    height: 100%;
    display: flex;
    padding: 0 35px;
    align-items: center;
}
.navigation_desktop .quote span{
    color: #fff;
    font-family: bebas-neue-by-fontfabric, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 1rem;
    letter-spacing: .5px;
    border-bottom: 2px solid #009ddc;
}
.navigation_desktop .quote:hover span {
    border-bottom: 2px solid #fff;
}
/********************************************

            NAVIGATION

********************************************/
.navigation_desktop .nav {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.navigation_desktop .nav>ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.navigation_desktop .nav>ul>li {
    padding: 10px 15px;
}
.navigation_desktop .nav>ul>li>a {
    text-transform: uppercase;
    color: #01305E;
}
.navigation_desktop .nav>ul>li>a:hover {
    border-bottom: 2px solid #01305E;
}

.navigation_desktop .nav>ul>li>a.active {
    color: black;
}
.navigation_desktop .menu_icon {
    z-index: 995;
    position: absolute;
    right: 0;
    top: 0;
    height: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 45px;
    width: 610px;
}
.navigation_desktop .menu_icon span{
    color: #fff;
    font-family: bebas-neue-by-fontfabric, sans-serif;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 5px;
}
.navigation_desktop .menu_icon img{
    width: 25px;
    height: 15px;
    margin-right: 5px;
}
.navigation_desktop .menu_icon>div{
    position: relative;
    height: 100%;
    width: 100%;
}
.navigation_desktop .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #009ddc;
    height: 100%;
    width: 90px;
    cursor: pointer;
    position: absolute;
    left: 246px;
}
.navigation_desktop .icon .text_menu{
    border-bottom: 2px solid #009ddc;
}
.navigation_desktop .icon:hover .text_menu{
    border-bottom: 2px solid #fff;
}
.navigation_desktop .btn_close {
    font-size: 1.3rem;
}
.navigation_desktop .search {
   z-index: 1002;
    position: absolute;
    top: 32px;
    right: 325px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 288px;
}
.navigation_desktop .search .input{
    position: relative;
    width: 100%;
}
.navigation_desktop .search input{
    border: 1px solid #fff;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.199);
    height: 26px;
    padding-left: 25px;
    color: #fff;
    margin-left: 25px;
}
.navigation_desktop .search input:focus{
    outline: none;
}
.navigation_desktop .search .input .btn_search_desktop{
    font-weight: 600;
    color: #fff;
    left: 31px;
    top: 6px;
    padding: 0;
    position: absolute;
    cursor: pointer;
}
.slide_out{
    right: 0 !important;
}

/* MOBILE */
.navigation_mobile {
    position: absolute;
    top: 0;
    right: 0;
    width: 610px;
    background: #009ddc;
    z-index: 900;
    height: auto;
    display: none;
    transition: all 0s;
}
.navigation_mobile .search {
    display: none;
    z-index: 1002;
    padding: 5px 0;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 288px;
}
.navigation_mobile .search .input{
    position: relative;
    width: 100%;
}
.navigation_mobile .search input{
    border: 1px solid #fff;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.199);
    height: 26px;
    padding-left: 25px;
    color: #fff;
    margin-left: 25px;
}
.navigation_mobile .search input:focus{
    outline: none;
}
.navigation_mobile .search .input .btn_search_mobile{
    font-weight: 600;
    color: #fff;
    left: 31px;
    top: 6px;
    padding: 0;
    position: absolute;
    cursor: pointer;
}
.navigation_mobile .wrapper {
    height: 100%;
    position: relative;
}
.navigation_mobile .flex {
    flex-direction: column;
    align-items: flex-start;
}
.navigation_mobile .nav{
    padding-top: 90px;
    width: 80%;
}

.navigation_mobile a,
.navigation_mobile li.dropdown_mobile{
    font-size: 1.7rem;
}
.navigation_mobile .dropdown_content_mobile{
    display: none;
    transition: all 0s;
    position: absolute;
    right: 0;
    width: 100%;
    height: 80%;
    background: #009ddc;
    z-index: 999;
    top: 88px;
}

/* UPPER */
.navigation_mobile .upper>ul{
    cursor: pointer;
}
.navigation_mobile .upper li {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
}
.navigation_mobile .upper>ul li{
    position: relative;
    display: inline-block;
    font-size: 3.8rem;
}
.navigation_mobile .upper>ul li a{
    font-size: 3.8rem;
}
.navigation_mobile .upper li.dropdown_mobile span{
    font-size: 1.5rem;
    position: absolute;
    top: 20px;
    right: -30px;
}
.navigation_mobile .upper li.dropdown_mobile:hover span{
    right: -35px;
}
.navigation_mobile .upper .nav_link_general{
    position: relative;
}
.navigation_mobile .upper .nav_link_general::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    -webkit-transition: width .25s;
    transition: width .25s;
}
.navigation_mobile .upper .nav_link_general:hover::after{
    width: 100%;
}
.navigation_mobile .upper .dropdown_content_mobile li{
    margin: 5px;
    margin-left: 35px;
    border-bottom: 2px solid #fff;
}
.navigation_mobile .upper .dropdown_content_mobile li.dropdown_mobile{
    margin: 5px;
    margin-left: 25px;
    font-size:3.5rem;
    cursor: pointer;
    border-bottom: none;
}
.navigation_mobile .upper .dropdown_content_mobile li.dropdown_mobile .back_icon{
    font-size:1.5rem;
    position: relative;
    top: -10px;
    left: -5px;
}
.navigation_mobile .upper .dropdown_content_mobile li.dropdown_mobile:hover .back_icon{
    left: -10px;
}
.navigation_mobile .upper .dropdown_content_mobile li a{
    display: block;
}
.navigation_mobile .upper .dropdown_content_mobile li:hover a{
    transform: translateX(15px);
}

.navigation_mobile .upper .dropdown_content_mobile .sub_nav_flex{
    display: flex;
}
.navigation_mobile .upper .dropdown_content_mobile .sub_nav_flex ul{
    margin: 15px;
}

/* LOWER */
.navigation_mobile .lower li{
    cursor: pointer;
    color: #fff;
    border-bottom: 2px solid #fff;
}
.navigation_mobile .lower li:last-child{
    border-bottom: none;
}
.navigation_mobile .lower li a{
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 20px 0;
}
.navigation_mobile .lower li a:hover{
    transform: translateX(15px);
}

/* SOCIAL */
.navigation_mobile .social{
    display: flex;
    bottom: 5px;
    left: 5px;
}
.navigation_mobile .social li{
    cursor: pointer;
    padding: 15px 0;
    color: #fff;
    display: flex;
    align-items: center;
}
.navigation_mobile .social li a.language{
    font-size: .8rem;
    border-bottom: 2px solid transparent;
}
.navigation_mobile .social li a.language:hover{
    border-bottom: 2px solid #fff;
}
.navigation_mobile .social li a{
    font-size: 1.1rem;
    font-weight: 800;
}



/********************************************

            Footer

********************************************/
footer {
    background: #3F3F3F;
    color: #fff;
}
footer .subscribe {
    background: #009ddc;
}
/* Subscribe section */
footer .subscribe form {
    padding: 10px 0 25px;
    display: flex;
    justify-content: center;
}
footer .subscribe input {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 25px;
    padding: 20px;
    color: #fff;
    height: 26px;
    max-width: 400px;
    width: 88%;
}
footer .subscribe input:focus{
    outline: none;
}
footer .subscribe input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1; /* Firefox */
}
footer .subscribe input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff;
}
footer .subscribe input::-ms-input-placeholder { /* Microsoft Edge */
    color: #fff;
}
footer .subscribe button{
    width: 35%;
    max-width: 130px;
    background: #fff;
    color: #009ddc;
    border: 2px solid #fff;
    border-radius: 25px;
    text-transform: uppercase;
    font-family: bebas-neue-by-fontfabric, sans-serif;
    font-style: normal;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 0;
    font-weight: 600;
    text-align: center;
    margin-left: 30px;
}
footer .subscribe button:hover{
    background: #009ddc;
    color: #fff;
}
footer .subscribe h1{
    text-transform: uppercase;
    font-family: bebas-neue-by-fontfabric, sans-serif;
    font-style: normal;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding-top: 25px;
}
/* Main section */

footer .main div>a:hover{
    text-decoration: underline;
    color: #fff;
}
footer .main li{
    line-height: 15px;
}
footer .main li>a:hover{
    color: #fff;
}
footer .main .flex{
    justify-content: space-between;
}
footer .main .divider{
    background: rgba(172, 172, 172, 0.3);
    margin: 45px 0;
}
footer .main .divider::after{
    content: "";
    border: 1px solid rgba(172, 172, 172, 0);
}
footer .main .col{
    padding: 35px;
    line-height: 1.5;
    width: 15%;
}
footer .main .col-1{
	line-height: 18px;	
}
footer .main .col h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    text-transform: uppercase;
    display: inline;
}
footer .main .col p{
    margin: 10px 0;
}
footer .main .col-1{
    padding-top: 49px;
    padding-left: 0;
}
footer .main .col-1 p>a:hover{
    text-decoration: underline;
}
footer .main .two-cols {
    display: flex;
    justify-content: space-between;
    width: 35%;
    padding: 35px 25px;
}
footer .main .two-cols>div{
    margin: 5px;
    width: calc(50% - 10px);
}
footer .main li{
    margin: 7px 10px 0 0;
    color: #ACACAC;
    text-transform: capitalize;
}
footer .main a.empty_line{
    font-size: 1.5rem;
    pointer-events: none;
}
footer .main .three-cols {
    display: flex;
    justify-content: space-between;
    width: 50%;
    padding: 35px 25px;
}
footer .main .three-cols>div{
    margin: 5px;
    width: calc(33% - 10px);
}
footer .main .col-4{
    width: 19%;
    padding-top: 40px;
}

footer .main .col-4 p{
    display: inline;
}



/* copyright section */

footer .footer_copyright {
    background: #5C5C5C;
}
footer .footer_copyright p {
    padding: 10px 0;
}
footer .footer_copyright .container.flex{
    justify-content: space-between;
    align-items: center;
}
footer .footer_copyright .left.flex{
    flex-direction: column;
}
footer .footer_copyright .left.flex>div{
    display: flex;
}
footer .footer_copyright .left.flex a:hover{
    text-decoration: underline;
}
footer .footer_copyright .social{
    line-height: 0;
    margin: 15px 2px 0px;
}
footer .footer_copyright .social img{
    max-width: 26px;
    max-height: 26px;
    margin-right: 10px;
}
footer .footer_copyright .right.flex {
    justify-content: center;
    align-items: center;
}
footer .footer_copyright .right h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin: 0 15px;
}
footer .footer_copyright .walzen,
footer .footer_copyright .praxair{
    margin: 0 15px;
}


/********************************************

    Shared CSS

********************************************/

/********************************************

    Common Block Hero 1 // With Slider

********************************************/
.common_block_hero_1 {
    margin-top: -95px;
    background: #f3f3f3;
}
.common_block_hero_1 .container {
    max-width: 1950px;
    margin: auto;
    padding: 0;
    height: 800px;
    position: relative;
}
.common_block_hero_1 .custom_container {
    max-width: 1950px;
    margin: auto;
    padding: 0;
    position: relative;
    bottom: -60px;
}
.common_block_hero_1 .sub-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}
.common_block_hero_1 .overlay {
    background: rgb(1,4,3);
    background: linear-gradient(90deg, rgba(1,4,3,1) 0%, rgba(110,110,110,0.05926120448179273) 100%);
    height: 100%;
    width: 100%;
    z-index: 0;
    position: absolute;
}
.common_block_hero_1 .gallery-top {
    max-width: 100%;
    height: 100%;
    margin: 0;
}
.common_block_hero_1 .gallery-top .swiper-slide {
    background-size: cover;
    background-position: center;
    height: 100% !important;
    max-height: 815px;
}
.common_block_hero_1 .gallery-thumbs {
    position: absolute;
    bottom: -13px;
    right: -9%;
    z-index: 100;
}

.common_block_hero_1 .gallery-thumbs .swiper-slide {
    height: 200px;
    width: 320px !important;
    background-size: cover;
    background-position: center;
}
.common_block_hero_1 .gallery-thumbs .swiper-slide:first-child{
    display: none;
}
.common_block_hero_1 .gallery-thumbs .swiper-slide-thumb-active {
    transform: scale(1.1);
}
.common_block_hero_1 .copy-container{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}
.common_block_hero_1 .pagination-container{
    position: absolute;
    top: 0;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 999;
}
.common_block_hero_1 .swiper-pagination{
    left: -50px;
    top: calc(50% - 20px);
    display: flex;
    flex-direction: column;
}
.common_block_hero_1 .swiper-pagination::before{
    font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f144";
    font-size: 2rem;
    text-align: left;
    margin-left:-11px;
    color: #fff;
    cursor: pointer;
}
.common_block_hero_1 .swiper-pagination:hover::before,
.common_block_hero_1 .swiper-pagination.autoplay:hover::before{
    color: #009ddc;
}
.common_block_hero_1 .swiper-pagination.autoplay::before{
    font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f28b";
    font-size: 2rem;
    text-align: left;
    margin-left:-11px;
    color: #fff;
    cursor: pointer;
}
.common_block_hero_1 .swiper-pagination-bullet {
    margin: 5px 0;
    width: 10px;
    height: 10px;
    opacity: 1;
    border: 1px solid #fff;
    background: none;
}
.swiper-pagination-bullet-active {
    background: #fff !important;
}
.common_block_hero_1 .title{
    max-width: 600px;
    margin: 25px 0;
    z-index: 1;
}
.common_block_hero_1 .soybean_slide .title {
    max-width: 800px;
}
.common_block_hero_1 .title h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 7rem;
    text-transform: uppercase;
    line-height: .83;
    margin-top: 88px;
}
.common_block_hero_1 .watch_video_icon{
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
}
.common_block_hero_1 .watch_video_icon:hover .icon{
    color: #009ddc;
}
.common_block_hero_1 .watch_video_icon .icon{
    font-size: 2.2rem;
    transition: all 0s;
}
.common_block_hero_1 .watch_video_icon span{
    margin-left: 15px;
    font-size: 1.5rem;
}

.common_block_hero_1 .swiper-slide .virtual_value_slide .title h2{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .83;
}
.common_block_hero_1 .copy {
    max-width: 500px;
    z-index: 1;
}
.common_block_hero_1 .copy h2{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 2rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0px 0 25px;
    position: relative;
}
.common_block_hero_1 .copy h2::before {
    display: inline-block;
    margin: 0 20px 8px 0;
    height: 3px;
    content: " ";
    width: 140px;
    border-top: 2px solid #009ddc;
    position: absolute;
    top: -14px;
}
.common_block_hero_1 .copy p{
    color: #fff;
    max-width: 600px;
    line-height: 1.5;
}
.common_block_hero_1 .scroll-fill{
    height: 45px;
    width: 100%;
    background: #009ddc;
    position: absolute;
    bottom: 0;
    z-index: 98;
    right: 0;
}
.common_block_hero_1 .scroll{
    height: 45px;
    width: 100%;
    background: #009ddc;
    position: absolute;
    bottom: 0;
    z-index: 99;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin: 0px;
}
.common_block_hero_1 .scroll svg{
    color: #fff;
    position: relative;
    top: 0px;
    left: 20px;
}
.common_block_hero_1 .scroll a:hover svg{
    top: 5px;
    transition: all .25s ease;
}
.common_block_hero_1 .scroll span{
    color: #fff;
    font-family: bebas-neue-by-fontfabric, sans-serif;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 35px;
}



/********************************************

    Common Block Hero 2 // Without slider

********************************************/
.common_block_hero_2 {
    margin-top: -88px;
    background: #f3f3f3;
}
.common_block_hero_2 .container {
    max-width: 1950px;
    margin: auto;
    padding: 0;
    height: 500px;
    position: relative;
}
.common_block_hero_2 .sub-container {
    max-width: 1200px;
    margin: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 25px;
}
.common_block_hero_2 .overlay {
    background: rgb(1,4,3);
    background: linear-gradient(90deg, rgba(1,4,3,1) 0%, rgba(110,110,110,0.05926120448179273) 100%);
    height: 100%;
    width: 100%;
    /* z-index: -1; */
    position: absolute;
}
.common_block_hero_2 .gallery-top {
    max-width: 100%;
    height: 100%;
    margin: 0;
}
.common_block_hero_2 .gallery-top .swiper-slide {
    background-size: cover;
    background-position: center;
    height: 100% !important;
    max-height: 500px;
}
.common_block_hero_2 .title{
    max-width: 600px;
    margin: 25px 0;
}
.common_block_hero_2 .title h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 7.5rem;
    text-transform: uppercase;
    line-height: .83;
}
.common_block_hero_2 .copy {
    max-width: 500px;
}
.common_block_hero_2 .copy h2{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 2rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0px 0 25px;
    position: relative;
}
.common_block_hero_2 .copy h2::before {
    display: inline-block;
    margin: 0 20px 8px 0;
    height: 3px;
    content: " ";
    width: 140px;
    border-top: 2px solid #009ddc;
    position: absolute;
    top: -14px;
}
.common_block_hero_2 .copy p{
    color: #fff;
    max-width: 600px;
    line-height: 1.5;
}


/*********************************************

    SIDEBAR

*********************************************/

.sidebar{
    position: absolute;
    right: 0;
    top: 0;
    width: 340px;
    height: 100%;
    background: #F3F3F3;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.fill_space{
    background: #F3F3F3;
    width: 100%;
    height: 100%;
    position: absolute;
    right: -100%;
    top: 0;
    z-index: -1;
    overflow-x: hidden;
}
.sidebar .card{
    margin: 40px 0 0 40px;
    background: #fff;
    z-index: 3;
}
.sidebar .card:first-child{
    margin-top: 50px;
}
.sidebar .card  + ul{
    margin-top: 20px;
}
.sidebar .card .latest_content {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    background: #F3F3F3;
    padding-bottom: 15px;
    text-align: center;
    border-bottom: 3px solid #009ddc;
    font-size: 2.5rem;
}
.sidebar .card .top {
    background-position: center;
    background-size: cover;
    height: 200px;
    width: 350px;
    cursor: pointer;
}
.sidebar .card .bottom{
    background: #fff;
    padding: 5px 25px;
}
.sidebar .card .bottom h2{
    margin-top: 5px;
    text-align: left;
}
.sidebar .card .bottom p{
    margin-top: 5px;
    text-align: left;
}
.sidebar .card .bottom p>a{
    font-size: 0.9rem;
}
.sidebar .card .bottom .cta {
    padding: 5px;
    margin: 20px 0 15px;
    background: #009ddc;
    color: #fff;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    font-size: 1rem;
    border-radius: 25px;
    float: left;
    cursor: pointer;
    border: 2px solid #009ddc;
    width: 100px;
    text-align: center;
    letter-spacing: .7px;
}
.sidebar .card .bottom .cta:hover {
    color: #009ddc;
    background: #fff;
}
   
/* Sidebar Category: used for Blogs/Case Studies directory layout */

.sidebar_category ul{
    margin-left: 15px;
}
.sidebar_category li{
    margin-top: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.sidebar_category li a{
    text-align: left;
    width: 100%;
    margin-left: 15px;
    padding: 2px 15px 2px 0;
    border-bottom: 2px solid transparent;
}
/* .sidebar_category ul li:hover
{
    color: #fff;
    background: #009ddc;
} */
.sidebar_category li .image{
    width: 100px;
    height: 75px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}




/********************************************

				Forms

********************************************/




/********************************************

				GLOBAL CONTACT FORM

********************************************/
.footer_contact_form{
    position: relative;
}
.footer_contact_form .container {
    display: flex;
    max-width: 1200px;
    position: relative;
    padding: 35px 0;
    flex-direction: column;
    align-items: flex-start;
}
.footer_contact_form .image_container {
    transform: translateY(70px);
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.footer_contact_form .left .image{
    background-size: cover;
    background-position: center;
    height: 550px;
    width: 550px;
}
.footer_contact_form .right.copy{
    width: 100%;
    max-width: 900px;
    padding: 0;
    margin: auto;
    text-align: center;
}
.footer_contact_form .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.footer_contact_form .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 25px 0;
}
.footer_contact_form .copy ul{
    margin: 0;
    padding: 0;
}
.footer_contact_form .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}

.footer_contact_form h2 {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    font-size: 2rem;
}

.footer_contact_form .image_container {
    transform: translateY(0px);
    box-shadow: none;
    background: #009ddc;
    width: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
    right: -100px;
    top: -315px;
}
.footer_contact_form p,
.footer_contact_form label{
    color: #fff;
}
.footer_contact_form form{
    width: 90%;
    padding: 3em 1.5em;
    display: flex;
    flex-direction: column;
}
.footer_contact_form input,
.footer_contact_form select,
.footer_contact_form textarea{
    width: 100%;
    margin: 10px auto;
    padding: 10px;
    border-radius: 25px;
    color: #959595;
    font-family: sans-serif;
    font-weight: 400;
    font-style: normal;
}
.footer_contact_form input:focus,
.footer_contact_form select:focus,
.footer_contact_form textarea:focus{
    outline: none;
}
.footer_contact_form select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
}
.footer_contact_form select::-ms-expand {
    display: none;
}
.footer_contact_form .state {
    position: relative;
    padding: 0px;
    margin: 12px 0;
}
.footer_contact_form .state:after {
    content: '\f0dc';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #959595;
    right: 7px;
    top: 20px;
    padding: 0;
    position: absolute;
    pointer-events: none;
}
.footer_contact_form textarea{
    border-radius: 15px;
}
.footer_contact_form .row{
    height: 100%;
}
.footer_contact_form .row>div:first-child{
    margin: 0 5px;
    display: flex;
    justify-content: space-between;
}
.footer_contact_form .row>div>div>div{
    display: flex;
    align-items: center;
}
.footer_contact_form .row>p{
    font-size: .8rem;
    text-align: right;
    margin: 0 10px;
}
.footer_contact_form .row:last-child{
    height: 100%;
    display: flex;
    align-items: center;
}
.footer_contact_form button{
    padding: 10px 65px;
    background: #fff;
    color: #009ddc;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    font-size: 1rem;
    border-radius: 25px;
    float: right;
    cursor: pointer;
    border: 2px solid #fff;
}
.footer_contact_form button:hover{
    background: #009ddc;
    color: #fff;
    border: 2px solid #fff;
}

.footer_contact_form input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance:    none;
    appearance:none;
    margin: 5px 10px 5px 0;
    width: 20px;
    height: 20px;
    background: none;
    border: 2px solid #FFF;
    border-radius: 50%;
    cursor: pointer;
    color: #009ddc;
    padding: 1px;
}
.footer_contact_form input[type="radio"]:hover,
.footer_contact_form input[type="radio"]:checked {
    background: #fff;
    box-shadow: inset 0 0 0 3px #009ddc;
}
.footer_contact_form input[type="radio"]:focus { outline: 0; }



.footer_contact_form .image_container{
    position: static;
    width: 100%;
    display: none;
    transition: all 0s;
}
.footer_contact_form form {
    padding: 25px 1.5em 0px;
    margin: auto;
}
.footer_contact_form .btn_toggle_form{
    position: absolute;
    top: 20px;
    right: 25px;
    cursor: pointer;
    z-index: 9999;
}
.footer_contact_form .btn_toggle_form .icon{
    color: #fff;
    font-size: 2rem;
}
.footer_contact_form .btn_toggle_form.rotate{
    transform: rotate(45deg);
}
.footer_contact_form .btn.btn_request{
    padding: 5px 30px;
}
.footer_contact_form .copy p{
    margin: 20px 0 10px;
}
.footer_contact_form .row>div.recaptcha_term{
    margin-top: 15px;
}




/********************************************

			White Paper Form

********************************************/
#white_paper_form input[type="email"] {
    width: 70%;
    padding: 10px;
    border-radius: 25px;
    /* background: #009ddc; */
    border: 2px solid #009ddc;
}
#white_paper_form .btn{
    width: 35%;
    height: 44px;
    max-width: 130px;
    background: #009ddc;
    color: #fff;
    border: 2px solid #009ddc;
    border-radius: 25px;
    text-transform: uppercase;
    font-family: bebas-neue-by-fontfabric, sans-serif;
    font-style: normal;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 0;
    font-weight: 600;
    text-align: center;
    margin-left: 30px;
}
#white_paper_form .btn:hover{
    background: #fff;
    color: #009ddc;
}

.btn.btn_request{
    width: 100%;
    max-width: 150px;
    background: #fff;
    color: #009ddc;
    border: 2px solid #fff;
    border-radius: 25px;
    text-transform: uppercase;
    font-family: bebas-neue-by-fontfabric, sans-serif;
    font-style: normal;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 0;
    font-weight: 600;
    text-align: center;
    padding: 18px 0;
}
.btn:hover{
    background: #009ddc;
    color: #fff;
}



/********************************************

            breadcrumb
            
********************************************/
.breadcrumbs_section .container{
    max-width: 1200px;
    padding-top: 15px;
}
.breadcrumb-wrapper{
    width: 100%;
    padding: 0;
}
.breadcrumb { 
    list-style: none; 
    overflow: hidden; 
    font: 18px Helvetica, Arial, Sans-Serif;
    padding: 0;
}
.breadcrumb li { 
    float: left; 
    margin-left: 0px;
}
.breadcrumb li a {
    /* color: white;
    text-decoration: none; 
    padding: 10px 0 10px 55px;
    background: #009ddc;
    position: relative; 
    display: block;
    float: left;
    transition: all 0s; */
    text-decoration: none;
    padding: 10px 0 10px 55px;
    padding-left: 55px;
    position: relative;
    display: block;
    float: left;
    transition: all 0s;
    color: #acacac;
}
.breadcrumb li a:after { 
    content: " "; 
    display: block; 
    width: 0; 
    height: 0;
    border-top: 50px solid transparent;           /* Go big on the size, and let overflow hide */
    border-bottom: 50px solid transparent;
    /* border-left: 30px solid #009ddc; */
    border-left: 30px solid #fff;
    position: absolute;
    top: 50%;
    margin-top: -50px; 
    left: 100%;
    z-index: 2; 
}	
.bg_alt .breadcrumb li a:after { 
    border-left: 30px solid #f3f3f3;
}
.breadcrumb li a:before { 
    content: " "; 
    display: block; 
    width: 0; 
    height: 0;
    border-top: 50px solid transparent;           /* Go big on the size, and let overflow hide */
    border-bottom: 50px solid transparent;
    /* border-left: 30px solid white; */
    border-left: 30px solid #d7d7d7;
    position: absolute;
    top: 50%;
    margin-top: -50px; 
    margin-left: 1px;
    left: 100%;
    z-index: 1; 
}	
.breadcrumb li:last-child a:before { 
    border-left: 30px solid #fff;
}
.bg_alt .breadcrumb li:last-child a:before { 
    border-left: 30px solid #f3f3f3;
}
.breadcrumb li:first-child a {
    padding-left: 0px;
}
.breadcrumb li:last-child a {
    cursor: context-menu;
}
/* .breadcrumb li:nth-child(2) a       { background:        #009ddc; }
.breadcrumb li:nth-child(2) a:after { border-left-color: #009ddc; }
.breadcrumb li:nth-child(3) a       { background:        #009ddc; }
.breadcrumb li:nth-child(3) a:after { border-left-color: #009ddc; }
.breadcrumb li:nth-child(4) a       { background:        #009ddc; }
.breadcrumb li:nth-child(4) a:after { border-left-color: #009ddc; }
.breadcrumb li:nth-child(5) a       { background:        #009ddc; }
.breadcrumb li:nth-child(5) a:after { border-left-color: #009ddc; } */

.breadcrumb li:not(:last-child) a:hover { 
    /* background: #008dc5;  */
    text-decoration: underline;
}
/* .breadcrumb li:not(:last-child) a:hover:after { border-left-color: #008dc5 !important; } */



/********************************************

           GENERAL CONTENT

********************************************/
/* General 1 */
.general_1 .gallery-top .swiper-slide {
    max-height: 500px;
}
.general_1 .container {
    height: 500px;
}
.general_1 .title {
    max-width: 900px;
}


/* General 2 */
.general_2 .container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    position: relative;
    padding-top: 0px;
}
.general_2 .image_container {
    transform: translateY(70px);
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.general_2 .left .image{
    background-size: cover;
    background-position: center;
    height: 550px;
    width: 550px;
}
.general_2 > .container > .copy{
    max-width: 800px;
    margin: 35px 0;
    min-height: 1300px;
}
.general_2 .copy h1{
    color: #009ddc;
    text-transform: uppercase;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    font-size: 2.5rem;
    margin: auto;
}
.general_2 h2 {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    font-size: 1.5rem;
    margin-top: 35px;
}
.general_2 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 25px 0;
}
.general_2 .copy ul{
    margin: 0;
    padding: 0;
}
.general_2 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}
.general_2 .copy a{
    color:#009ddc;
}
/* .general_2 .copy a:hover{
   border-bottom: 1px solid #009ddc;
   transition: all .25s;
} */

.general_2 .container>.copy .call_out_container {
    padding: 75px 0;
    margin: 75px 0;
    position: relative;
}
.general_2 .container>.copy .call_out_container::before {
    content: '';
    background: #009ddc;
    width: 1000px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
}
.general_2 .container>.copy .call_out_container::after {
    content: '';
    background: #009ddc;
    width: 500px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -100px;
}
.general_2 .container>.copy .call_out {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.general_2 .container>.copy .call_out h1 {
    font-size: 2.5rem;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0px;
    text-align: left;
}
.general_2 .container .call_out p {
    margin: 25px 0 0;
}
.general_2 .container>.copy .call_out .copy {
    width: 90%;
    max-width: 650px;
    padding: 0;
    margin: 0;
    text-align: left;
    color: #fff;
}

.general_2 .container>.copy .col_img {
    width: 100%;
}
.general_2 .container>.copy .col_img:after {
    clear:both;
    display:block;
    content:'';
}
.general_2 .container>.copy .col_img > img {
    float: left;
    width: 100%;
    max-width: 400px;
    margin: 0px 25px 15px 0px;
}




/********************************************

            Home Page

********************************************/

/* 
Home 1: Common hero block 1 
*/

/********************************************

            Home 2

********************************************/
.home_2 .container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    padding-top: 60px;
}
.home_2 .image_container {
    transform: translateY(70px);
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.home_2 .left .image{
    background-size: cover;
    background-position: center;
    height: 550px;
    width: 550px;
}
.home_2 .right.copy{
    width: calc(100% - 610px);
    margin: 0 25px;
    transform: translateY(30px);
}
.home_2 .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.home_2 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 25px 0;
}
.home_2 .copy ul{
    margin: 0;
    padding: 0;
}
.home_2 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}

/********************************************

            Home 3

********************************************/
.home_3 .slide_home_3 {
    width: 100%;
    transform: translateY(100px);
}
.home_3 .slide_home_3 .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.home_3 .slide_home_3 .swiper-slide .copy {
    max-width: calc(100% - 600px);
    height: 500px;
    background: #009ddc;
    padding: 55px;
    margin-left: 15px;
}
.home_3 .slide_home_3 .swiper-slide .copy p {
    color: #fff;
}
.home_3 .slide_home_3 .image_container {
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
    margin: 15px 15px 15px 0;
}
.home_3 .slide_home_3 .swiper-slide .image {
    background-size: cover;
    background-position: center;
    width: 800px;
    height: 600px;
}

.home_3 .swiper-button-group {
    width: 930px;
    height: 100px;
    position: absolute;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    bottom: 60px;
    right: 0;
}
.home_3 .swiper-button-group>div{
    position: relative;
    height: 100px;
    width: 100%;
}
.home_3 .swiper-button-prev-home_3 {
    background-image: url('https://f9157246696ffc9e492f-4eb068aabaa74a53b03ce712cadc3e31.ssl.cf5.rackcdn.com/134.svg') !important;
    bottom: 15px;
    transform: scale(1.2);
    left: 0px;
}
.home_3 .swiper-button-next-home_3 {
    background-image: url('https://f9157246696ffc9e492f-4eb068aabaa74a53b03ce712cadc3e31.ssl.cf5.rackcdn.com/133.svg') !important;
    bottom: 15px;
    left: 50px;
    transform: scale(1.2);
}

.home_3 .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.home_3 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    margin: 25px 0;
}
.home_3 a.cta_learn_more {
    color: #fff;
}
.home_3 a.cta_learn_more span::after {
    color: #fff;
}


/********************************************

            Home 4

********************************************/

.home_4 .row{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 150px 0;
}
.home_4 .col{
    text-align: center;
    padding: 0 25px;
    max-width: 450px;
}
.home_4 h1{
    font-size: 2rem;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    line-height: .9;
    margin-bottom: 2px;
}
.home_4 h2{
	font-size: .8rem;
    font-weight: 100;
    font-style: normal;
    line-height: .9;
    text-transform: none;
    margin-bottom: 20px;
    color: #888888;
}
.home_4 h3{
    text-transform: uppercase;
    font-size: 1.5rem;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 10px;
}
.home_4 h3.color_blue{
    margin-bottom: 0px;
}
.home_4 p {
    line-height: 1.5;
}

/********************************************

            Home 5

********************************************/
.home_5 .container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    padding-top: 0;
    padding: 35px 0;
}
.home_5 .image_container {
    transform: translateY(-80px);
}
.home_5 .left .image{
    background-size: cover;
    background-position: center;
    height: 300px;
    width: 550px;
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.home_5 .copy{
    margin: 0 20px;
    transform: translateY(-40px);
}
.home_5 .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.home_5 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 15px 0;
}
.home_5 .copy ul{
    margin: 0;
    padding: 0;
}
.home_5 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}
.home_5 .col{
    margin: 0 15px;
}

/********************************************

            Home 6

********************************************/
.home_6 .row{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 0 75px 0;
    align-items: center;
}
.home_6 .col{
    text-align: center;
    padding: 0 25px;
    max-width: 550px;
}
.home_6 h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    line-height: .9;
    margin-bottom: 2px;
    font-size: 1.6rem;
}
.home_6 h1.title {
    font-size: 3.5rem;
    padding: 75px 0 0;
}
.home_6 h2{
	font-size: .8rem;
    font-weight: 100;
    font-style: normal;
    line-height: .9;
    text-transform: none;
    margin-bottom: 20px;
    color: #888888;
}
.home_6 h3{
    text-transform: uppercase;
    font-size: 1.5rem;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 10px;
}
.home_6 h3.color_blue{
    margin-bottom: 0px;
}
.home_6 p {
    line-height: 1.5;
    margin-bottom: 10px;
}


/********************************************

            Home Virtual Value

********************************************/
.home_virtual_value{
    background-image: url('https://f9157246696ffc9e492f-4eb068aabaa74a53b03ce712cadc3e31.ssl.cf5.rackcdn.com/253.png');
    margin-top: 135px;
    background-size: cover;
    background-position: center;
}
.home_virtual_value .container{
    padding: 75px 0;
}
.home_virtual_value .copy{
    margin: auto;
    max-width: 700px;
}
.home_virtual_value h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    line-height: .9;
    margin-bottom: 2px;
    font-size: 3.5rem;
    color: #fff;
}
.home_virtual_value h2{
    font-family: bebas-neue, sans-serif;
	font-size: 2.2rem;
    font-weight: 100;
    text-transform: uppercase;
    font-style: normal;
    line-height: .9;
    text-transform: none;
    color: #fff;
    margin-bottom: 20px;
}
.home_virtual_value p {
    line-height: 1.5;
    color: #fff;
    margin: auto;
    margin-bottom: 10px;
    max-width: 550px;
}





/********************************************

            About Us Page

********************************************/

/* 
About 1: Common hero 1
*/


/********************************************

            About 2

********************************************/

.about_2 .container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    padding-top: 60px;
}
.about_2 .image_container {
    transform: translateY(70px);
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.about_2 .left .image{
    background-size: cover;
    background-position: center;
    height: 550px;
    width: 550px;
}
.about_2 .right.copy{
    width: calc(100% - 610px);
    margin: 0 25px;
    transform: translateY(30px);
}
.about_2 .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.about_2 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 25px 0;
}
.about_2 .copy ul{
    margin: 0;
    padding: 0;
}
.about_2 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}

/********************************************

            About 3

********************************************/

.about_3 .slide_home_3 {
    width: 100%;
    transform: translateY(100px);
}
.about_3 .slide_home_3 .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.about_3 .slide_home_3 .swiper-slide .copy {
    max-width: calc(100% - 600px);
    height: 500px;
    background: #009ddc;
    padding: 55px;
    margin-left: 15px;
}
.about_3 .slide_home_3 .swiper-slide .copy p {
    color: #fff;
}
.about_3 .slide_home_3 .image_container {
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
    margin: 15px 15px 15px 0;
}
.about_3 .slide_home_3 .swiper-slide .image {
    background-size: cover;
    background-position: center;
    width: 800px;
    height: 600px;
}

.about_3 .swiper-button-group {
    width: 930px;
    height: 100px;
    position: absolute;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    bottom: 60px;
    right: 0;
}
.about_3 .swiper-button-group>div{
    position: relative;
    height: 100px;
    width: 100%;
}
.about_3 .swiper-button-prev-home_3 {
    background-image: url('https://f9157246696ffc9e492f-4eb068aabaa74a53b03ce712cadc3e31.ssl.cf5.rackcdn.com/134.svg') !important;
    bottom: 15px;
    transform: scale(1.2);
    left: 0px;
}
.about_3 .swiper-button-next-home_3 {
    background-image: url('https://f9157246696ffc9e492f-4eb068aabaa74a53b03ce712cadc3e31.ssl.cf5.rackcdn.com/133.svg') !important;
    bottom: 15px;
    left: 50px;
    transform: scale(1.2);
}

.about_3 .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    text-transform: uppercase;
    line-height: .9;
    font-size: 2.8rem;
}
.about_3 .copy p{
    color: #fff;
    margin: 25px 0;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
    padding-left: 35px;
    line-height: 1.2;
}
.about_3 a.cta_learn_more {
    color: #fff;
}
.about_3 a.cta_learn_more span::after {
    color: #fff;
}

.about_3 .copy p a,
.about_3 .copy p{
    letter-spacing: 1px;
    font-size: 1.2rem;
}
.about_3 .copy p.location{
    cursor: pointer;
}
.about_3 .copy p.location::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f3c5";
    position: absolute;
    left: 5px;
    top: 4px;
    font-size: 1.6rem;
    cursor: pointer;
}
.about_3 .copy p.location::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 33px;
    width: 25px;
    height: 5px;
    border-radius: 50%;  
    background: #fff;   
    font-size: 1.6rem;
    cursor: pointer;
    opacity: 0;
}
.about_3 .copy p.location:hover::before{
    top: 7px;
    transition: all .5s;
    color: #ffbb00;
    z-index: 99;
}
.about_3 .copy p.location:hover::after{
    opacity: 1;
    transition: all .5s;
}
.about_3 .copy p.tel::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f879";
    position: absolute;
    left: 2px;
    top: -5px;
    font-size: 1.6rem;
}



/********************************************

            About 4

********************************************/


.about_4 .container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    padding-top: 130px;
}
.about_4 .image_container {
    transform: translateY(70px);
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.about_4 .left .image{
    background-size: cover;
    background-position: center;
    height: 550px;
    width: 550px;
}
.about_4 .right.copy{
    width: calc(100% - 655px);
    margin: 0 25px;
    transform: translateY(70px);
}
.about_4 .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.about_4 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 25px 0;
}
.about_4 .copy ul{
    margin: 0;
    padding: 0;
}
.about_4 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}


/********************************************

            About 5

********************************************/
.about_5 .container {
    padding: 150px 20px 75px;
}
.about_5 h1.title{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
    width: 100%;
    max-width: 970px;
    margin: auto;
}
.about_5 .card{
    width: 100%;
    max-width: 900px;
    margin: 45px auto 0;
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.about_5 .card .video_bg{
    width: 100%;
    height: 400px;
    background-position: center;
    background-size: cover;
    position: relative;
}
.about_5 .video_bg .overlay{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(4, 4, 4, 0.3);
}
.about_5 .video_bg .icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: #fff;
    font-size: 6.5rem;
    transition: all 0s;
}
.about_5 .card a:hover .icon{
   color: #009ddc;
}
.about_5 .card a:hover .overlay{
    background-color: rgba(4, 4, 4, 0.1);
}




/********************************************

           CONTACT

********************************************/



/* contact_2 */
.contact_2 .container {
    position: relative;
    padding-top: 0px;
}
.contact_2 h2 {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    font-size: 2rem;
}
.contact_2 .image_container {
    transform: translateY(0px);
    box-shadow: none;
    background: #009ddc;
    width: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
    right: 0px;
    top: -315px;
}
.contact_2 .right.copy {
    width: calc(100% - 650px);
    margin: 0;
    transform: translateY(0px);
    padding: 75px 0;
}
.contact_2 p,
.contact_2 label{
    color: #fff;
}
.contact_2 form{
    width: 90%;
    padding: 3em 1.5em;
    display: flex;
    flex-direction: column;
}
.contact_2 input,
.contact_2 select,
.contact_2 textarea{
    width: 100%;
    margin: 10px auto;
    padding: 10px;
    border-radius: 25px;
    color: #959595;
    font-family: sans-serif;
    font-weight: 400;
    font-style: normal;
}
.contact_2 input:focus,
.contact_2 select:focus,
.contact_2 textarea:focus{
    outline: none;
}
.contact_2 select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
}
.contact_2 select::-ms-expand {
    display: none;
}
.contact_2 .state {
    position: relative;
    padding: 0px;
    margin: 12px 0;
}
.contact_2 .state:after {
    content: '\f0dc';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #959595;
    right: 7px;
    top: 20px;
    padding: 0;
    position: absolute;
    pointer-events: none;
}

.contact_2 textarea{
    border-radius: 15px;
}
.contact_2 .row{
    height: 100%;
}
.contact_2 .row>div{
    margin: 0 5px;
}
.contact_2 .row>div>div{
    display: flex;
    align-items: center;
}
.contact_2 .row>p{
    font-size: .8rem;
    text-align: right;
    margin: 0 10px;
}
.contact_2 .row:last-child{
    height: 100%;
    display: flex;
    align-items: center;
}
.contact_2 button{
    padding: 10px 65px;
    background: #fff;
    color: #009ddc;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    font-size: 1rem;
    border-radius: 25px;
    float: right;
    cursor: pointer;
    border: 2px solid #fff;
}
.contact_2 button:hover{
    background: #009ddc;
    color: #fff;
    border: 2px solid #fff;
}

.contact_2 input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance:    none;
    appearance:none;
    margin: 5px 10px 5px 0;
    width: 20px;
    height: 20px;
    background: none;
    border: 2px solid #FFF;
    border-radius: 50%;
    cursor: pointer;
    color: #009ddc;
    padding: 1px;
}
.contact_2 input[type="radio"]:hover,
.contact_2 input[type="radio"]:checked {
    background: #fff;
    box-shadow: inset 0 0 0 3px #009ddc;
}
.contact_2 input[type="radio"]:focus { outline: 0; }
.contact_2 .row>div.recaptcha_term{
    margin-top: 15px;
}
.row>div.recaptcha_term p{
    font-size: .8rem;
}
.row>div.recaptcha_term p a{
    font-size: .8rem;
}

/* contact_3 */

.contact_3 .container {
    max-width: 1200px;
    padding: 105px 20px 75px;
}
.contact_3  h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
    color: #009ddc;
}
.contact_3 .copy {
    display: flex;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    margin: 25px 0;
}
.contact_3 .copy > div{
    width: 100%;
    /* margin: 0 15px; */
}
.contact_3 .copy p,
.contact_3 p{
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    margin: 15px 0;
}
.contact_3 .copy ul{
    margin: 0;
    padding: 0;
}
.contact_3 .copy .col>ul>li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
    color: #fff;
}
.contact_3 .copy .col>ul>ul>li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
    color: #fff;
    margin-left: 70px;
}
.contact_3 .copy > div {
    width: auto;
}
.contact_3 .copy p {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #3f3f3f;
    position: relative;
    padding-left: 35px;
    line-height: 1.2;
}
.contact_3 .copy p a,
.contact_3 .copy p{
    font-size: 1.3rem;
}
.contact_3 .copy p.location::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f3c5";
    position: absolute;
    left: 5px;
    top: 7px;
    font-size: 1.5rem;
}
.contact_3 .copy p.location::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 33px;
    width: 25px;
    height: 5px;
    border-radius: 50%;  
    background: #3f3f3f;   
    font-size: 1.6rem;
    cursor: pointer;
    opacity: 0;
}
.contact_3 .copy p.location:hover::before{
    top: 10px;
    transition: all .5s;
}
.contact_3 .copy p.location:hover::after{
    opacity: 1;
    transition: all .5s;
}
.contact_3 .copy p.tel::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f879";
    position: absolute;
    left: 4px;
    top: -2px;
    font-size: 1.3rem;
}
.contact_3 .copy p.tel:hover::before{
    transform: rotate(20deg);
    transition: all .5s;
}
.contact_3 .copy p.fax::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f02f";
    position: absolute;
    left: 4px;
    top: -2px;
    font-size: 1.3rem;
}
/* .contact_3 .copy p.fax:hover::before{
    transform: rotate(20deg);
    transition: all .5s;
} */
.contact_3 a.cta_learn_more {
    color: #009ddc;
    padding-left: 35px;
    font-size: 1.3rem;
}







/********************************************

            Career 1

********************************************/
.career_1 .container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    padding: 35px 20px 75px;
}
.career_1 .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.career_1 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 25px 0 0;
}
.career_1 .copy ul{
    margin: 0;
    padding: 0;
}
.career_1 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}



/********************************************

           CAREER 2

********************************************/

.career_2 .container {
    max-width: 1200px;
    padding: 75px 20px;
}
.career_2  h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
    color: #009ddc;
    margin: 25px 0;
}
.career_2 .copy {
    display: flex;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    margin: 25px 0;
}
.career_2 .copy > div{
    width: 25%;
    margin: 0 15px;
}
.career_2 .copy p,
.career_2 p{
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    margin: 15px 0;
}
.career_2 .copy ul{
    margin: 0;
    padding: 0;
}
.career_2 .copy .col>ul>li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
    color: #fff;
}
.career_2 .copy .col>ul>ul>li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
    color: #fff;
    margin-left: 70px;
}
.career_2 .copy p {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #3f3f3f;
    position: relative;
    padding-left: 35px;
    line-height: 1.2;
}
.career_2 .copy p a,
.career_2 .copy p{
    font-size: 1.3rem;
}
.career_2 .copy p.location::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f3c5";
    position: absolute;
    left: 5px;
    top: 7px;
    font-size: 1.5rem;
}
.career_2 .copy p.location::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 33px;
    width: 25px;
    height: 5px;
    border-radius: 50%;  
    background: #3f3f3f;   
    font-size: 1.6rem;
    cursor: pointer;
    opacity: 0;
}
.career_2 .copy p.location:hover::before{
    top: 10px;
    transition: all .5s;
}
.career_2 .copy p.location:hover::after{
    opacity: 1;
    transition: all .5s;
}
.career_2 .copy p.tel::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f879";
    position: absolute;
    left: 4px;
    top: -2px;
    font-size: 1.3rem;
}
.career_2 .copy p.tel:hover::before{
    transform: rotate(20deg);
    transition: all .5s;
}
.career_2 .copy p.fax::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f02f";
    position: absolute;
    left: 4px;
    top: -2px;
    font-size: 1.3rem;
}
.career_2 a.cta_learn_more {
    color: #009ddc;
    padding-left: 35px;
    font-size: 1.3rem;
}
.career_2 .map {
    width: 100%;
    margin: 35px 0
}
.career_2 .mapouter {
    position: relative;
    text-align: right;
    height: 300px;
    width: 100%;
}

.career_2 .gmap_canvas {
    overflow: hidden;
    background: none!important;
    height: 300px;
    width: 100%;
}


/********************************************

           CAREER 3

********************************************/


.career_3 .container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    padding-top: 35px;
}
.career_3 .image_container {
    transform: translateY(70px);
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.career_3 .left .image{
    background-size: cover;
    background-position: center;
    height: 550px;
    width: 550px;
}
.career_3 .right.copy{
    width: calc(100% - 610px);
    margin: 0 25px;
    transform: translateY(30px);
}
.career_3 .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.career_3 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 25px 0;
}
.career_3 .copy ul{
    margin: 0;
    padding: 0;
}
.career_3 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}





/********************************************

           CAREER 4

********************************************/
.career_4 .container {
    max-width: 1200px;
    padding: 140px 20px 95px;
}
.career_4  h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.career_4 .copy {
    display: flex;
    justify-content: space-between;
    width: 90%;
    text-align: left;
    margin: 25px auto;
}
.career_4 .copy > div{
    width: 100%;
    /* margin: 0 15px; */
}
.career_4 .copy p,
.career_4 p{
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    margin: 15px 0;
}
.career_4 .copy ul{
    margin: 0;
    padding: 0;
}
.career_4 .copy .col>ul>li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
    color: #fff;
}
.career_4 .copy .col>ul>ul>li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
    color: #fff;
    margin-left: 70px;
}
.career_4 .copy .col>ul>li>ul>li{
    list-style: inherit;
}




/********************************************

            career 5

********************************************/
.career_6 .container {
    display: flex;
    max-width: 1200px;
    padding-top: 0;
    padding: 35px 0;
}
.career_6 .image_container {
    transform: translateY(-80px);
}
.career_6 .left .image{
    background-size: cover;
    background-position: center;
    height: 300px;
    width: 550px;
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.career_6 .copy{
    margin: 0 25px;
    transform: translateY(-40px);
}
.career_6 .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.career_6 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 15px 0;
}
.career_6 .copy ul{
    margin: 0;
    padding: 0;
}
.career_6 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}
.career_6 .col{
    width: 50%;
    margin: 0 15px;
}








/********************************************

           Jobs Listing

********************************************/

.jobs{
    position: relative;
}
.jobs .container {
    display: flex;
    max-width: 1200px;
    position: relative;
    padding: 35px 20px;
    flex-direction: column;
    align-items: flex-start;
}
.jobs .image_container {
    transform: translateY(0px);
    box-shadow: none;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    right: -100px;
    top: -315px;
    position: static;
    width: 100%;
    /* display: none; */
    transition: all 0s;
}
.jobs .image_container .jobs_wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.jobs .image_container .jobs_wrapper .box_item{
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-top: 2px solid #009ddc;
    position: relative;
    padding-left: 15px;
}
.jobs .image_container .jobs_wrapper .box_item:first-child{
    margin: 35px 0px 0px;
}
.jobs .image_container .jobs_wrapper .box_item>a{
    width: 100%;
}
.jobs .image_container .jobs_wrapper .box_item h3{
    font-size: 1.5rem;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    width: 100%;
    margin: auto;
    font-weight: 400;
    padding: 25px 0 0;
    color: #009ddc;
   
}
.jobs .image_container .jobs_wrapper .box_item:last-child{
    border-bottom: 2px solid #009ddc;
    margin-bottom: 15px;
}
.jobs .image_container .jobs_wrapper .box_item .icon{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #009ddc;
    font-size: 1.5rem;
    transition: all 0s !important;
}
.jobs .image_container .jobs_wrapper .box_item .icon:hover{
    color: #777777;
}
.jobs .left .copy{
    width: 100%;
    max-width: 600px;
    padding: 0;
    margin: 50px auto 0;
}
.jobs .left .copy h3>.icon{
   float: right;
}
.jobs .right.copy{
    width: 100%;
    max-width: 900px;
    padding: 0;
    margin: auto;
    text-align: center;
}
.jobs .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.jobs .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 20px 0 10px;
}
.jobs .copy ul{
    margin: 0;
    padding: 0;
}
.jobs .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}

.jobs h2 {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    font-size: 2rem;
}
.jobs .salary{
    width: 100%;
}
.jobs .location{
    width: 100%;
    font-weight: 800;
}
.jobs .description{
    width: 90%;
    padding: 10px 0 25px;
}
.jobs .color_white{
    color: #3f3f3f !important;
}
.jobs .right.copy h2 {
    color: #009ddc !important;
}
.jobs .btn.btn_request{
    background: #009ddc;
    color: #fff;
    border: 2px solid #009ddc;
    padding: 5px 30px;
}
.jobs .btn.btn_request:hover{
    background: #fff;
    color: #009ddc;
}
.jobs .btn_toggle_job{
    position: absolute;
    top: 20px;
    right: 25px;
    cursor: pointer;
    z-index: 9999;
}
.jobs .btn_toggle_job .icon{
    color: #009ddc;
    font-size: 2rem;
}


/********************************************

           REQUEST A QUOTE

********************************************/
/* request_2 */
.request_2 .container {
    position: relative;
    padding-top: 0px;
}
.request_2 .copy{
    max-width: 900px;
    margin: 0;
}
.request_2 .copy h1 {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    font-size: 2rem;
    margin: 0;
}
.request_2 h2 {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    font-size: 1.5rem;
    margin-top: 35px;
}
.request_2 .image_container {
    transform: translateY(0px);
    box-shadow: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
}
.request_2 .right.copy {
    width: calc(100% - 650px);
    margin: 0;
    transform: translateY(0px);
    padding: 90px 0;
}
.request_2 p,
.request_2 label{
    color: #3f3f3f;
}
.request_2 form{
    width: 90%;
    padding: 0 35px;
    display: flex;
    flex-direction: column;
}
.request_2 input,
.request_2 select,
.request_2 textarea{
    width: 100%;
    margin: 10px auto;
    padding: 10px;
    border-radius: 25px;
    color: #959595;
    font-family: sans-serif;
    font-weight: 400;
    font-style: normal;
    border: 2px solid #959595;
}
.request_2 input:focus,
.request_2 select:focus,
.request_2 textarea:focus{
    outline: none;
    border: 2px solid #009ddc;
}
.request_2 select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
}
.request_2 select::-ms-expand {
    display: none;
}
.request_2 .state:after {
    top: 22px;
}
.request_2 textarea{
    border-radius: 15px;
}
.request_2 .row{
    height: 100%;
}
.request_2 .row>div{
    margin: 0 5px;
}
.request_2 .row>div>div{
    display: flex;
    align-items: center;
}
.request_2 .row>p{
    font-size: .8rem;
    text-align: right;
    margin: 0 10px;
}
.request_2 .row:last-child{
    height: 100%;
    display: flex;
    align-items: center;
}
.request_2 button{
    padding: 10px 65px;
    background: #009ddc;
    color: #fff;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    font-size: 1rem;
    border-radius: 25px;
    float: right;
    cursor: pointer;
    border: 2px solid #009ddc;
}
.request_2 button:hover{
    background: #fff;
    color: #009ddc;
    border: 2px solid #009ddc;
}

.request_2 input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance:    none;
    appearance:none;
    margin: 5px 10px 5px 0;
    width: 20px;
    height: 20px;
    background: none;
    border: 2px solid #3f3f3f;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    padding: 1px;
}
.request_2 input[type="radio"]:hover,
.request_2 input[type="radio"]:checked {
    background: #3f3f3f;
    box-shadow: inset 0 0 0 3px #fff;
}
.request_2 input[type="radio"]:focus { outline: 0; }





/********************************************

           INDUSTRIES

********************************************/
.industries_1 .title {
    max-width: 1000px;
    margin: 25px 0;
    width: 100%;
}

.industries_2 .container{
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    top: -100px;
    z-index: 99;
}
.industries_2 .industry {
    height: 450px;
    width: 25%;
    overflow: hidden;
    position: relative;
}
.industries_2 .bg {
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    cursor: pointer;
}
.industries_2 .industry:hover .bg{
    transform: scale(1.05);
}
.industries_2 .industry:hover .overlay{
    background: linear-gradient(180deg, rgba(1,4,3,0.3528186274509804) 0%, rgba(31,31,31,0) 96%, rgba(110,110,110,0) 100%);
}
.industries_2 .industry .overlay {
    background: rgb(1,4,3);
    background: linear-gradient(180deg, rgba(1,4,3,0.9528186274509804) 0%, rgba(31,31,31,0.40940126050420167) 96%, rgba(110,110,110,0.05926120448179273) 100%);
    height: 100%;
    width: 100%;
    position: absolute;
}
.industries_2 .industry h1 {
    position: absolute;
    top: 50%;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    color: #fff;
    font-size: 3rem;
    padding: 0 25px;
    text-align: center;
    transform: translateY(-50%);
    width: 100%;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}
.industries_2 .industry a {
    position: absolute;
    bottom: 15px;
    left: 25px;
    color: #fff;
 }


 
/********************************************

           INDUSTRY

********************************************/

/* industry 1 */
.industry_1.common_block_hero_2 .title {
    max-width: 77%;
    /* margin: 65px 0 0; */
    z-index: 1;
}
.industry_1.common_block_hero_2 .title h1 {
    line-height: .9;
}


/* industry 2 */
.industry_2 .container {
    max-width: 1200px;
    padding: 20px 20px 75px;
}
.industry_2  h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
    padding: 25px 0 15px;
}
.industry_2  .sub-title{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 1.6rem;
    text-transform: uppercase;
    line-height: .9;
}
.industry_2 .copy {
    display: flex;
    /* justify-content: space-between; */
    width: 90%;
    text-align: center;
    margin: 0 auto 25px auto;
}
.industry_2 .copy > div{
    width: 100%;
    margin: 0 25px;
}
.industry_2 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 15px 0;
}
.industry_2 .copy ul {
    margin: 0;
    padding: 0;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    text-align: left;
    max-width: 80%;
    margin: auto;
}
.industry_2 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}



/* industry 3 */
.industry_3 .container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    padding-top: 0;
}
.industry_3 .image_container {
    transform: translateY(-65px);
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.industry_3 .left .image{
    background-size: cover;
    background-position: center;
    height: 550px;
    width: 550px;
}
.industry_3 .right.copy{
    width: 100%;
    margin: 0px 25px;
    transform: translateY(0px);
}
.industry_3 .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.industry_3 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 10px 0 0;
}
.industry_3 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}


/* industry 4 */
.industry_4 .container {
    max-width: 1200px;
    padding: 75px 20px;
}
.industry_4  h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.industry_4 .copy {
    display: flex;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    margin: 25px 0;
}
.industry_4 .copy > div{
    width: 100%;
    /* margin: 0 15px; */
}
.industry_4 .copy p,
.industry_4 p{
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    margin: 15px 0;
}
.industry_4 .copy ul{
    margin: 0;
    padding: 0;
}
.industry_4 .copy .col>ul>li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
    color: #fff;
}
.industry_4 .copy .col>ul>ul>li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
    color: #fff;
    margin-left: 70px;
}
.industry_4 .copy .col>ul>li>ul>li{
    list-style: inherit;
}


/* industry 5 */
.industry_5 .container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    padding: 0px 20px;
}
.industry_5 .image_container {
    transform: translateY(35px);
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.industry_5 .left .image{
    background-size: cover;
    background-position: center;
    height: 550px;
    width: 550px;
}
.industry_5 .right.copy{
    width: calc(100% - 610px);
    margin: 0 25px;
    transform: translateY(30px);
}
.industry_5 .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    text-transform: uppercase;
    line-height: .9;
    font-size: 3.8rem;
}
.industry_5 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 25px 0;
}
.industry_5 .copy ul{
    margin: 0;
    padding: 0;
}
.industry_5 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}

/* industry 6 */
.industry_6 .container {
    max-width: 1060px;
    padding: 75px 20px 75px;
}
.industry_6  h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
    margin: 0 0 25px 0;
}
.industry_6  .sub-title{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 1.6rem;
    text-transform: uppercase;
    line-height: .9;
}
.industry_6 .copy {
    display: flex;
    width: 100%;
    text-align: left;
    margin: 0;
}
.industry_6 .copy > div{
    width: 100%;
    margin: 0 25px;
}
.industry_6 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 15px 0;
}
.industry_6 .copy ul{
    margin: 0;
    padding: 0;
}
.industry_6 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}




/* industry soy bean */
.industry_soy_bean .container {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    padding: 75px 20px;
}
.industry_soy_bean .image_container {
    /* transform: translateY(35px); */
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.industry_soy_bean .left .image{
    background-size: cover;
    background-position: center;
    height: 550px;
    width: 550px;
}
.industry_soy_bean .right.copy{
    width: calc(100% - 610px);
    margin: 0 25px 0 35px;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.industry_soy_bean .right > span{
    background-color: #009ddc;
    color: #fff;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    line-height: .9;
    font-size: 1.5rem;
    padding: 5px 10px;
    margin-bottom: 10px;
}
.industry_soy_bean .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    text-transform: uppercase;
    line-height: .9;
    font-size: 3.8rem;
}
.industry_soy_bean .right h4{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    text-transform: uppercase;
    line-height: .9;
    font-size: 1.5rem;
    margin-left: 150px;
    margin-top: 30px;
    max-width: 350px;
}
.industry_soy_bean .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 25px 0;
}
.industry_soy_bean .copy ul{
    margin: 0;
    padding: 0;
}
.industry_soy_bean .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}
.industry_soy_bean .right .inner{
    display: flex;
}
.industry_soy_bean .right .inner .innerLeft{
    width: 150px;
}
.industry_soy_bean .right .inner .innerLeft img{
    margin-right: 15px;
    margin-top: -30px;
}

.industry_soy_bean .right .inner .innerRight{
    width: 70%;
}

.industry_soy_bean .right .inner .innerRight .btn{
       
    background: #009ddc;
    color: #fff;
    border: 2px solid #009ddc;
    border-radius: 25px;
    text-transform: uppercase;
    font-family: bebas-neue-by-fontfabric, sans-serif;
    font-style: normal;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 0;
    font-weight: 600;
    text-align: center;
    padding: 18px 30px;
    margin-top: 25px;
    display: block;
    max-width: 200px;
    
}
.industry_soy_bean .right .inner .innerRight .btn:hover{
    background-color: #fff;
    color: #009ddc;
}




/********************************************

		Calculator

********************************************/
.calculators{
    position: relative;
}
.calculators .container {
    display: flex;
    max-width: 1200px;
    position: relative;
    padding: 35px 20px;
    flex-direction: column;
    align-items: flex-start;
}
.calculators .image_container {
    transform: translateY(0px);
    box-shadow: none;
    background: #009ddc;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    right: -100px;
    top: -315px;
    position: static;
    width: 100%;
    display: none;
    transition: all 0s;
}
.calculators .image_container .calculators_wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.calculators .image_container .calculators_wrapper .box_item{
    width: 100%;
    /* margin: 5px; */
    display: flex;
    align-items: center;
    /* padding: 8px 25px; */
    border-radius: 25px;
}
.calculators .image_container .calculators_wrapper .box_item:first-child{
    margin: 35px 0px 0px;
}
.calculators .image_container .calculators_wrapper .box_item h3{
    font-size: 1.5rem;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    width: 100%;
    max-width: 900px;
    margin: auto;
    font-weight: 400;
    padding: 25px 0;
    border-top: 2px solid #fff;
}
.calculators .image_container .calculators_wrapper .box_item:last-child h3{
    border-bottom: 2px solid #fff;
    margin-bottom: 15px;
}
.calculators .image_container .calculators_wrapper .box_item:hover h3{
    padding-left: 15px;
}
.calculators .image_container .calculators_wrapper .box_item h3 .icon{
    float: right;
}
.calculators .left .copy{
    width: 100%;
    max-width: 600px;
    padding: 0;
    margin: 50px auto 0;
}
.calculators .left .copy h3>.icon{
   float: right;
}
.calculators .right.copy{
    width: 100%;
    max-width: 900px;
    padding: 0;
    margin: auto;
    text-align: center;
}
.calculators .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.calculators .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 25px 0;
}
.calculators .copy ul{
    margin: 0;
    padding: 0;
}
.calculators .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}

.calculators h2 {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    font-size: 2rem;
}


.calculators p,
.calculators label{
    color: #fff;
}
/* .calculators form{
    width: 90%;
    padding: 3em 1.5em;
    display: flex;
    flex-direction: column;
}
.calculators input,
.calculators select,
.calculators textarea{
    width: 100%;
    margin: 10px auto;
    padding: 10px;
    border-radius: 25px;
    color: #959595;
    font-family: sans-serif;
    font-weight: 400;
    font-style: normal;
}
.calculators input:focus,
.calculators select:focus,
.calculators textarea:focus{
    outline: none;
}
.calculators select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
}
.calculators select::-ms-expand {
    display: none;
}
.calculators .state {
    position: relative;
    padding: 0px;
    margin: 12px 0;
}
.calculators .state:after {
    content: '\f0dc';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #959595;
    right: 7px;
    top: 20px;
    padding: 0;
    position: absolute;
    pointer-events: none;
}
.calculators textarea{
    border-radius: 15px;
}
.calculators .row{
    height: 100%;
}
.calculators .row>div:first-child{
    margin: 0 5px;
    display: flex;
    justify-content: space-between;
}
.calculators .row>div>div>div{
    display: flex;
    align-items: center;
}
.calculators .row>p{
    font-size: .8rem;
    text-align: right;
    margin: 0 10px;
}
.calculators .row:last-child{
    height: 100%;
    display: flex;
    align-items: center;
} */
.calculators button{
    padding: 10px 65px;
    background: #fff;
    color: #009ddc;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    font-size: 1rem;
    border-radius: 25px;
    float: right;
    cursor: pointer;
    border: 2px solid #fff;
}
.calculators button:hover{
    background: #009ddc;
    color: #fff;
    border: 2px solid #fff;
}

/* .calculators input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance:    none;
    appearance:none;
    margin: 5px 10px 5px 0;
    width: 20px;
    height: 20px;
    background: none;
    border: 2px solid #FFF;
    border-radius: 50%;
    cursor: pointer;
    color: #009ddc;
    padding: 1px;
}
.calculators input[type="radio"]:hover,
.calculators input[type="radio"]:checked {
    background: #fff;
    box-shadow: inset 0 0 0 3px #009ddc;
}
.calculators input[type="radio"]:focus { outline: 0; }



.calculators form {
    padding: 25px 1.5em 0px;
    margin: auto;
} */
.calculators .btn_toggle_calculator{
    position: absolute;
    top: 20px;
    right: 25px;
    cursor: pointer;
    z-index: 9999;
}
.calculators .btn_toggle_calculator .icon{
    color: #fff;
    font-size: 2rem;
}
.calculators .btn_toggle_calculator.rotate{
    transform: rotate(45deg);
}
.calculators .btn.btn_request{
    padding: 5px 30px;
}
.calculators .copy p{
    margin: 20px 0 10px;
}
.calculators .row>div.recaptcha_term{
    margin-top: 15px;
}




/* industry 7 */
.industry_7 .container {
    display: flex;
    max-width: 1200px;
    padding-top: 0;
    padding: 35px 0;
}
.industry_7 .image_container {
    transform: translateY(-80px);
    width: 100%;
    /* margin: 0 25px; */
}
.industry_7 .left .image{
    background-size: cover;
    background-position: center;
    height: 300px;
    width: 100%;
    /* max-width: 550px; */
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.industry_7 .copy{
    margin: 0 25px;
    transform: translateY(-40px);
}
.industry_7 .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    text-transform: uppercase;
    line-height: .9;
    font-size: 2rem;
}
.industry_7 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 15px 0;
}
.industry_7 .copy ul{
    margin: 0;
    padding: 0;
}
.industry_7 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}
.industry_7 .col{
    margin: 0 15px;
}
.industry_7 .container:first-child {
    align-items: flex-start;
    padding: 0;
}
.industry_7 .image{
    cursor: pointer;
}
.industry_7 h1.title{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3.5rem;
    margin: 75px auto 75px;
    padding-top: 0;
}




/********************************************

           SERVICES

********************************************/
.services_1 .title {
    max-width: 1000px;
    margin: 95px 0 25px;
    width: 100%;
}
.services_1 .container {
    max-width: 1950px;
    margin: auto;
    padding: 0;
    height: 600px;
    position: relative;
}

/* services 2 */

.services_2 .container{
    max-width: 1200px;
    padding: 75px 20px 200px;
    display: flex;
    justify-content: space-around;
}
.services_2 .category {
    width: 33%;
}
.services_2 .service {
    display: inline-block;
    margin-bottom: 3px;
    position: relative;
}
.services_2 h1.title {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    max-width: 200px;
    margin-bottom: 8px;
    line-height: 1;
}
.services_2 .service h1 {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    display: inline;
}


/* Services 3 */
.services_3 {
    margin-top: -220px;
}
.services_3 .container{
    margin: 75px auto;
}
.services_3 .slide_home_3 {
    width: 100%;
}
.services_3 .slide_home_3 .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.services_3 .slide_home_3 .swiper-slide .copy {
    max-width: calc(100% - 600px);
    height: 500px;
    background: #009ddc;
    padding: 55px;
    margin-left: 15px;
}
.services_3 .slide_home_3 .swiper-slide .copy p {
    color: #fff;
}
.services_3 .slide_home_3 .image_container {
    margin: 15px 15px 15px 0;
    /* box-shadow: 0px 0px 15px 0px rgb(156, 156, 156); */
}
.services_3 .slide_home_3 .swiper-slide .image {
    background-size: cover;
    background-position: center;
    width: 800px;
    height: 600px;
}

.services_3 .swiper-button-group {
    width: 930px;
    height: 100px;
    position: absolute;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    bottom: 60px;
    right: 0;
}
.services_3 .swiper-button-group>div{
    position: relative;
    height: 100px;
    width: 100%;
}
.services_3 .swiper-button-prev-home_3 {
    background-image: url('https://f9157246696ffc9e492f-4eb068aabaa74a53b03ce712cadc3e31.ssl.cf5.rackcdn.com/134.svg') !important;
    bottom: 15px;
    transform: scale(1.2);
    left: 0px;
}
.services_3 .swiper-button-next-home_3 {
    background-image: url('https://f9157246696ffc9e492f-4eb068aabaa74a53b03ce712cadc3e31.ssl.cf5.rackcdn.com/133.svg') !important;
    bottom: 15px;
    left: 50px;
    transform: scale(1.2);
}

.services_3 .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.services_3 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    margin: 25px 0;
}
.services_3 a.cta_learn_more {
    color: #fff;
}
.services_3 a.cta_learn_more span::after {
    color: #fff;
}




/********************************************

            Testimonials

********************************************/

.industry_testimonial p {
    line-height: 1.5;
}

.industry_testimonial h1 {
    font-size: 3rem;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    line-height: .9;
    margin-bottom: 15px;
}

.testimonial .copy{
    width: 90%;
    max-width: 650px;
    padding: 0 25px;
    margin: auto;
    text-align: center;
    color: #fff;
}
.testimonial .swiper-wrapper{
    display: flex;
    align-items: center;
}
.testimonial.swiper-container::after{
    content: '';
    background: rgb(0,157,220);
    background: linear-gradient(90deg, rgba(0,157,220,0.8) 0%, rgba(0,157,220,1) 50%, rgba(0,157,220,1) 100%);
    height: 100%;
    width: 10%;
    position: absolute;
    right: 0px;
    top: 0;
    z-index: 12;
}
.testimonial.swiper-container::before{
    content: '';
    background: rgb(0,157,220);
    background: linear-gradient(90deg, rgba(0,157,220,1) 0%,  rgba(0,157,220,1) 50%, rgba(0,157,220,0.8) 100%);
    height: 100%;
    width: 10%;
    position: absolute;
    left: 0px;
    top: 0;
    z-index: 12;
}
.testimonial .reviewee{
    width: 100%;
    max-width: 500px;
    margin: auto;
}
.testimonial .testimonial-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E") !important;
    z-index: 22;
    transform: translateY(-35px);
}
.testimonial .testimonial-prev:hover{
    left: 5px;
}
.testimonial  .testimonial-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
    z-index: 22;
    transform: translateY(-35px);
}
.testimonial .testimonial-next:hover{
    right: 5px;
}


/********************************************

           SERVICES

********************************************/

/* Service 1 */
.service_1.common_block_hero_2 .title {
    max-width: 77%;
    margin: 65px 0 0;
    z-index: 2;
}
.service_1.common_block_hero_2 .title h1 {
    line-height: .9;
}

/* service 2 */
.service_2 .container {
    max-width: 1200px;
    position: relative;
    padding: 20px 0 0;
}
.service_2 .image_container {
    transform: translateY(70px);
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.service_2 .left .image{
    background-size: cover;
    background-position: center;
    height: 550px;
    width: 550px;
}
.service_2  .container>.copy{
    max-width: 800px;
    margin: 50px 0;
    min-height: 1300px;
    flex-direction: column;
    margin-bottom: 0;
}
.service_2 .container>.copy h1{
    color: #009ddc;
    text-transform: uppercase;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    font-size: 2.5rem;
    margin: 0;
}
.service_2 .container .call_today h1{
    color: #009ddc;
    text-transform: uppercase;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    font-size: 2.5rem;
    margin: 0;
}
.service_2 h2 {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    font-size: 1.5rem;
    margin-top: 35px;
}
.service_2 .container>.copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 25px 0;
}
.service_2 .container>.copy ul{
    margin: 0;
    padding: 0;
}
.service_2 .container>.copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}
.service_2 .container>.copy a{
    color:#009ddc;
}
/* .service_2 .container>.copy a:hover{
   border-bottom: 1px solid #009ddc;
   transition: all .25s;
} */
.service_2 .container>.copy .testimonial_container{
    padding: 75px 0;
    margin: 75px 0;
    position: relative;
}
.service_2 .container>.copy .testimonial_container::after{
    content: '';
    background: #009ddc;
    width: 500px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -100px;
}
.service_2 .container>.copy .testimonial_container::before{
    content: '';
    background: #009ddc;
    width: 1000px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
}
.service_2 .container>.copy .testimonial .copy{
    width: 90%;
    max-width: 550px;
    padding: 0;
    margin: 0;
    text-align: left;
    color: #fff;
}
.service_2 .container>.copy .testimonial .swiper-wrapper{
    display: flex;
    align-items: center;
}
.service_2 .container>.copy .testimonial.swiper-container::after{
    content: '';
    background: rgb(0,157,220);
    background: linear-gradient(90deg, rgba(0,157,220,0.8) 0%, rgba(0,157,220,1) 20%, rgba(0,157,220,1) 100%);
    height: 100%;
    width: 20%;
    position: absolute;
    right: 0px;
    top: 0;
    z-index: 12;
}
.service_2 .container>.copy .testimonial.swiper-container::before{
  display: none;
}
.service_2 .container>.copy .testimonial h1 {
    font-size: 3rem;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    line-height: .9;
    margin-bottom: 0px;
    text-align: left;
}
.service_2 .container .testimonial p{
    margin: 25px 0 0;
}
.service_2 .container>.copy .testimonial p.reviewee{
    width: 100%;
    max-width: 500px;
    margin: 0;
    text-align: left;
}
.service_2 .container>.copy .testimonial .swiper-button-group {
    width: 82px;
    height: 100px;
    position: absolute;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    bottom: -31px;
    right: 0;
}
.service_2 .container>.copy .testimonial .testimonial-prev {
    background-image: url('https://f9157246696ffc9e492f-4eb068aabaa74a53b03ce712cadc3e31.ssl.cf5.rackcdn.com/134.svg') !important;
    bottom: 15px;
    transform: scale(1.2);
    left: 0px;
}
.service_2 .container>.copy .testimonial .testimonial-prev:hover{
    left: 0;
}
.service_2 .container>.copy .testimonial  .testimonial-next {
    background-image: url('https://f9157246696ffc9e492f-4eb068aabaa74a53b03ce712cadc3e31.ssl.cf5.rackcdn.com/133.svg') !important;
    bottom: 15px;
    left: 50px;
    transform: scale(1.2);
}
.service_2 .container>.copy .testimonial .testimonial-next:hover{
    right: 0;
}

.service_2 .call_today .sub-title {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 1.6rem;
    text-transform: uppercase;
    line-height: .9;
}


/* service 3 */
.service_3 .container {
    padding-top: 0;
}
.service_3 .image_container {
    transform: translateY(-65px);
}
.service_3 .right.copy {
    width: 100%;
    margin: 50px 25px;
    transform: translateY(0px);
}
.service_3 .copy p {
    margin: 10px 0 0;
}


/* service 5 */
.service_5 .container {
    padding-top: 30px;
}
.service_5 .image_container {
    transform: translateY(35px);
}
.service_5 .copy h1 {
    font-size: 3.8rem;
}

/* service 6 */
.service_6 h1{
    margin: 25px 0;
}
.service_6 .container {
    max-width: 1060px;
}
.service_6 .sub-title a {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 1.6rem;
    text-transform: uppercase;
    line-height: .9;
}




/********************************************

           BLOG DIRECTORY

********************************************/
.blog_2 .container {
    max-width: 1200px;
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    min-height: 1200px;
}
.blog_2 .image_container {
    transform: translateY(70px);
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.blog_2 .left .image{
    background-size: cover;
    background-position: center;
    height: 550px;
    width: 550px;
}
.blog_2 .right.copy{
    width: calc(100% - 610px);
    margin: 0 25px;
    transform: translateY(30px);
}
.blog_2 .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.blog_2 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 25px 0;
}
.blog_2 .copy ul{
    margin: 0;
    padding: 0;
}
.blog_2 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}
.blog_2 .blog{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 75px 0;
    position: relative;
    width: 100%;
    max-width: 745px;
}
.blog_2 .blog .bg{
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 200px;
    z-index: 4;
    border: 2px solid #f3f3f3;
    cursor: pointer;
    position: relative;
}
.blog_2 .blog .bg .overlay{
    height: 100%;
    width: 100%;
    /* background: rgba(1, 4, 3, 0.241); */
}
.blog_2 .blog .bg img
{
    position: absolute;
    height: 70%;
    top: 15px;
    right: 15px;
}
.blog_2 .blog .bg:hover{
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.blog_2 .blog .bg:hover .overlay{
    /* background: rgba(1, 4, 3, 0); */
    transition: all .25s;
}
.blog_2 .blog .title{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    margin-top: 35px;
    background: #f3f3f3;
    color: #009ddc;
    border: 2px solid #f3f3f3;
    z-index: 3;
    position: absolute;
    min-height: 100%;
    width: 88%;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 223px;
    padding-right: 25px;
}
.blog_2 .blog a{
    font-size: 1.6rem;
    line-height: 1.1;
}
.blog_2 .blog span{
   color: #3f3f3f;
}
.blog_2 .blog .cta_learn_more{
    font-size: 1rem;
    color: #3F3F3F;
}



/********************************************

           BLOG POST

********************************************/

.blog_detail_2 .container {
    max-width: 1200px;
    position: relative;
    padding-top: 0px;
    padding: 20px 20px 35px;
    min-height: 600px;
}
.blog_detail_2 .image_container {
    transform: translateY(70px);
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.blog_detail_2 .left .image{
    background-size: cover;
    background-position: center;
    height: 550px;
    width: 550px;
}
.blog_detail_2 .copy{
    max-width: 800px;
    flex-direction: column;
    margin: 25px 0 0;
    min-height: 1052px;
}
.blog_detail_2 .copy h1{
    color: #009ddc;
    text-transform: uppercase;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    font-size: 2.5rem;
    margin: auto;
}
.blog_detail_2 h2 {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    font-size: 1.5rem;
    margin-top: 35px;
}
.blog_detail_2 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 25px 0;
}
.blog_detail_2 .copy ul{
    margin: 0;
    padding: 0;
}
.blog_detail_2 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}
.blog_detail_2 .copy a{
    color:#009ddc;
}
/* .blog_detail_2 .copy a:hover{
   border-bottom: 1px solid #009ddc;
   transition: all .25s;
} */
.blog_detail_2 .copy h1.title{
    margin: 0;
}
.blog_detail_2 .copy h4.post_date{
    font-size: 1.2rem;
    margin: 0px 0 35px 0;
}
.blog_detail_2 .copy .body {
    line-height: 1.5;
}
.blog_detail_2 .copy .divider{
    width: 33%;
    height: 3px;
    background: #009ddc;
    margin: 0 0 35px;
}
.blog_detail_2 .copy .body img{
    width: 100% !important;
    height: auto !important;
    margin-bottom: 35px;
    /* box-shadow: 0px 0px 15px 0px rgb(156, 156, 156); */
    border: 2px solid #f3f3f3;
    /* display: none; */
}
.blog_detail_2 .copy .body img:first-child{
    width: auto !important;
}

/********************************************

           CASE STUDY

********************************************/
.case_study_2 .container {
    max-width: 1200px;
    position: relative;
    padding-top: 0px;
    padding: 20px 0 35px;
    min-height: 600px;
}
.case_study_2 .image_container {
    transform: translateY(70px);
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.case_study_2 .left .image{
    background-size: cover;
    background-position: center;
    height: 550px;
    width: 550px;
}
.case_study_2 .copy{
    max-width: 800px;
    flex-direction: column;
    margin: 25px 0 0;
    min-height: auto;
}
.case_study_2 .copy h1{
    color: #009ddc;
    text-transform: uppercase;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    font-size: 2.5rem;
    margin: auto;
}
.case_study_2 h2 {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    font-size: 1.5rem;
    margin-top: 35px;
}
.case_study_2 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 25px 0;
}
.case_study_2 .copy ul{
    margin: 0;
    padding: 0;
}
.case_study_2 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}
.case_study_2 .copy a{
    color:#009ddc;
}
/* .case_study_2 .copy a:hover{
   border-bottom: 1px solid #009ddc;
   transition: all .25s;
} */
.case_study_2 .copy h1.title{
    margin: 0;
}
.case_study_2 .copy h4.post_date{
    font-size: 1.2rem;
    margin: 0px 0 35px 0;
}
.case_study_2 .copy .body {
    line-height: 1.5;
}
.case_study_2 .copy .divider{
    width: 33%;
    height: 3px;
    background: #009ddc;
    margin: 0 0 35px;
}
.case_study_2 .copy .body img{
    width: 100% !important;
    height: auto !important;
    margin-bottom: 35px;
    /* box-shadow: 0px 0px 15px 0px rgb(156, 156, 156); */
    border: 2px solid #f3f3f3;
    /* display: none; */
}
.case_study_2 .copy .body img:first-child{
    width: auto !important;
}

/********************************************

           WHITE PAPER

********************************************/
.white_paper_2 .container,
.white_paper_2 .copy {
    min-height: auto;
 }
 


/********************************************

           EQUIPMENT FOR SALE

********************************************/
.equipment_1 .container {
    display: flex;
    max-width: 1200px;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
}
.equipment_1 .image_container {
    transform: translateY(70px);
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.equipment_1 .left .image{
    background-size: cover;
    background-position: center;
    height: 550px;
    width: 550px;
}
.equipment_1 .copy{
    width: 100%;
    max-width: 745px;
    margin: 35px 0;
}
.equipment_1 .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.equipment_1 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 25px 0;
}
.equipment_1 .copy ul{
    margin: 0;
    padding: 0;
}
.equipment_1 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}
.equipment_1 .blog{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
    width: 100%;
    max-width: 745px;
}
.equipment_1 .blog .bg{
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 200px;
    z-index: 4;
    border: 2px solid #f3f3f3;
    cursor: pointer;
    position: relative;
}
.equipment_1 .blog .bg a{
    width: 100%;
    height: 100%;
    position: absolute;
}
.equipment_1 .blog .bg .overlay{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.equipment_1 .blog .bg:hover .overlay{
    background: rgba(0, 0, 0, 0.301);
}
.equipment_1 .blog .bg .overlay .enlarge{
    opacity: 0;
    font-size: 3.5rem;
    color: #fff;
}
.equipment_1 .blog .bg .overlay:hover .enlarge,
.equipment_1 .blog .bg:hover .enlarge
{
    opacity: 1;
}
.equipment_1 .blog .bg:hover{
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.equipment_1 .blog .bg:hover .overlay{
    /* background: rgba(1, 4, 3, 0); */
    transition: all .25s;
}
.equipment_1 .blog .bg-bottom{
    position: absolute;
    bottom: -55px;
    width: 65px;
    height: 50px;
}
.equipment_1 .blog .bg-bottom:nth-child(3){
    left: calc(65px + 5px);
}
.equipment_1 .blog .bg-bottom:nth-child(4){
    left: calc(65px * 2 + 10px);
}
.equipment_1 .blog .bg-bottom:nth-child(5){
    left: calc(65px * 3 + 15px);
}
.equipment_1 .blog .bg-sub{
    background-position: center;
    background-size: cover;
    width: 65px;
    height: 50px;
    z-index: 4;
    border: 2px solid #f3f3f3;
    cursor: pointer;
    position: relative;
}
.equipment_1 .blog .bg-sub a{
    width: 100%;
    height: 100%;
    position: absolute;
}
.equipment_1 .blog .bg-sub .overlay{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.equipment_1 .blog .bg-sub:hover .overlay{
    background: rgba(0, 0, 0, 0.301);
}
.equipment_1 .blog .bg-sub .overlay .enlarge{
    opacity: 0;
    font-size: 1.5rem;
    color: #fff;
}
.equipment_1 .blog .bg-sub .overlay:hover .enlarge,
.equipment_1 .blog .bg-sub:hover .enlarge
{
    opacity: 1;
}
.equipment_1 .blog .bg-sub:hover{
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.equipment_1 .blog .bg-sub:hover .overlay{
    /* background: rgba(1, 4, 3, 0); */
    transition: all .25s;
}
.equipment_1 .blog .title{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    background: #f3f3f3;
    color: #009ddc;
    border: 2px solid #f3f3f3;
    z-index: 3;
    position: absolute;
    min-height: 100%;
    width: 88%;
    right: 0;
    top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 25px 15px 235px;
}
.equipment_1 .blog a{
    font-size: 1.6rem;
}
.equipment_1 .blog span{
   color: #3f3f3f;
   font-family: proxima-nova, sans-serif;
}
.equipment_1 .blog .cta_learn_more{
    font-size: 1rem;
    color: #3F3F3F;
}
.equipment_1 .sidebar .card:not(:first-child) .latest_content{
    border-bottom: none;
}
.equipment_1 .sidebar .card:not(:first-child) .latest_content a{
    font-size: 2rem;
    position: relative;
}

.equipment_1 .sidebar .card:not(:first-child) .latest_content a::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #009ddc;
    -webkit-transition: width .25s;
    transition: width .25s;
}
.equipment_1 .sidebar .card:not(:first-child) .latest_content:hover a::after{
    width: 100%;
}


.equipment_1 select{
    width: 100%;
    margin: 10px auto;
    padding: 10px;
    border-radius: 25px;
    color: #959595;
    font-family: sans-serif;
    font-weight: 400;
    font-style: normal;
    border: 2px solid #009ddc;
}
.equipment_1 select:focus{
    outline: none;
}
.equipment_1 select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
}
.equipment_1 select::-ms-expand {
    display: none;
}
.equipment_1 .filter_by {
    width: 100%;
    position: relative;
    padding: 0px;
    margin-top: 25px;
    max-width: 450px;
}
.equipment_1 .filter_by:after {
    content: '\f0dc';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #959595;
    right: 7px;
    top: 22px;
    padding: 0;
    position: absolute;
    pointer-events: none;
}


/********************************************

           LOCATION

********************************************/
.location_2 .container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    position: relative;
    padding-top: 0px;
}
.location_2 .image_container {
    transform: translateY(70px);
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.location_2 .left .image{
    background-size: cover;
    background-position: center;
    height: 550px;
    width: 550px;
}
.location_2 .copy{
    max-width: 800px;
    margin: 50px 0;
    min-height: 1300px;
}
.location_2 .copy h1{
    color: #009ddc;
    text-transform: uppercase;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    font-size: 2.5rem;
    margin: auto;
}
.location_2 h2 {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    font-size: 1.5rem;
    margin-top: 35px;
}
.location_2 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 25px 0;
}
.location_2 .copy ul{
    margin: 0;
    padding: 0;
}
.location_2 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}
.location_2 .copy a{
    color:#009ddc;
}
/* .location_2 .copy a:hover{
   border-bottom: 1px solid #009ddc;
   transition: all .25s;
} */


/* Jobs */
.location_2 .jobs_wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.location_2 .jobs_wrapper .box_item{
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-top: 2px solid #009ddc;
    position: relative;
}
.location_2 .jobs_wrapper .box_item:first-child{
    margin: 35px 0px 0px;
}
.location_2 .jobs_wrapper .box_item>a{
    width: 100%;
}
.location_2 .jobs_wrapper .box_item h3{
    font-size: 1.5rem;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    width: 100%;
    margin: auto;
    font-weight: 400;
    padding: 25px 0 0;
    color: #009ddc;
   
}
.location_2 .jobs_wrapper .box_item:last-child{
    border-bottom: 2px solid #009ddc;
    margin-bottom: 15px;
}
.location_2 .jobs_wrapper .box_item .icon{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #009ddc;
    font-size: 1.5rem;
    transition: all 0s !important;
}
.location_2 .jobs_wrapper .box_item .icon:hover{
    color: #777777;
}
.location_2 .jobs_wrapper h2 {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    font-size: 2rem;
}
.location_2 .jobs_wrapper .salary{
    width: 100%;
}
.location_2 .jobs_wrapper .location{
    width: 100%;
    font-weight: 800;
}
.location_2 .jobs_wrapper .description{
    width: 90%;
    padding: 10px 0;
    margin: 0 0 20px 0;
}
.location_2 .jobs_wrapper .color_white{
    color: #3f3f3f !important;
}
.location_2 .jobs_wrapper .right.copy h2 {
    color: #009ddc !important;
}


/********************************************

           CALCULATOR

********************************************/
/* calculator_1 */
.calculator_1 .gallery-top .swiper-slide {
    max-height: 500px;
}
.calculator_1 .container {
    height: 500px;
}
.calculator_1 .title {
    max-width: 900px;
}


/* calculator_2 */
.calculator_2 .container {
    display: flex;
    max-width: 1200px;
    position: relative;
    flex-direction: column;
    /* align-items: flex-start; */
    padding: 20px;
}
.calculator_2 .image_container {
    transform: translateY(70px);
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.calculator_2 .left .image{
    background-size: cover;
    background-position: center;
    height: 550px;
    width: 550px;
}
.calculator_2 .copy{
    width: 100%;
    max-width: 745px;
    margin: 35px 0;
    min-height: 1300px;
}
.calculator_2 .copy h1{
    color: #009ddc;
    text-transform: uppercase;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    font-size: 2.5rem;
    margin: auto;
}
.calculator_2 h2 {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    font-size: 1.5rem;
    margin-top: 35px;
}
.calculator_2 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 25px 0;
}
.calculator_2 .copy ul{
    margin: 0;
    padding: 0;
}
.calculator_2 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}
.calculator_2 .copy a{
    color:#009ddc;
}
/* .calculator_2 .copy a:hover{
   border-bottom: 1px solid #009ddc;
   transition: all .25s;
} */
.calculator_2 .container .container{
    padding: 20px 0;
}
.calculator_2 .container>.wrap-title{
    position: relative;
    padding-bottom: 25px;
}
.calculator_2 .container>.wrap-title::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: #009ddc;
}
.calculator_2 .container>.wrap-title h3{
    color: #009ddc;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
}
.calculator_2 .wrap-title h3{
    color: #009ddc;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
}
.calculator_2 .wrap-title h4{
    font-size: 1.2rem;
}
.calculator_2 h5{
    color: #009ddc;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    margin: 25px 0px;
}
.calculator_2 .wrap-title button.btn{
    margin: 0px 15px 15px 0;
    padding: 5px 25px;
    background: #009ddc;
    color: #fff;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    border: 2px solid #009ddc;
}
.calculator_2 .wrap-title button.btn:hover{
    background: #fff;
    color: #009ddc;
}
.calculator_2 .wrap-title button.btn:focus{
    outline: none;
}
.calculator_2 .wrap-title a.btn{
    display: none;
}
.calculator_2 #capture{
    margin-top: 25px;
}
.calculator_2 input.yellow_black{
    background: #ffffc1;
}
.calculator_2 input.green_black{
    background: #67bd73;
}
.calculator_2 tr:nth-child(even) {
    background-color: transparent;
}
.calculator_2 .table td, .table th {
    padding: 0;
    vertical-align: middle;
    background-color: transparent !important;
}




/********************************************

           SEARCH RESULTS

********************************************/
.search_results_2 .container {
    max-width: 1200px;
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    min-height: 1200px;
}
.search_results_2 .container .flex{
    flex-direction: column;
    margin-bottom: 25px;
    margin-top: 25px;
}
.search_results_2 .image_container {
    transform: translateY(70px);
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.search_results_2 .left .image{
    background-size: cover;
    background-position: center;
    height: 550px;
    width: 550px;
}
.search_results_2 .right.copy{
    width: calc(100% - 610px);
    margin: 0 25px;
    transform: translateY(30px);
}
.search_results_2 .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.search_results_2 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 25px 0;
}
.search_results_2 .copy ul{
    margin: 0;
    padding: 0;
}
.search_results_2 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}
.search_results_2 .blog{
    /* margin: 75px 0; */
    position: relative;
    width: 100%;
    max-width: 745px;
}
.search_results_2 .blog .bg{
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 200px;
    z-index: 4;
    border: 2px solid #f3f3f3;
    cursor: pointer;
    position: relative;
}
.search_results_2 .blog .bg .overlay{
    height: 100%;
    width: 100%;
    /* background: rgba(1, 4, 3, 0.241); */
}
.search_results_2 .blog .bg img
{
    position: absolute;
    height: 70%;
    top: 15px;
    right: 15px;
}
.search_results_2 .blog .bg:hover{
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.search_results_2 .blog .bg:hover .overlay{
    /* background: rgba(1, 4, 3, 0); */
    transition: all .25s;
}
.search_results_2 .blog .title {
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 25px;
    color: #009ddc;
}
.search_results_2 .blog h5{
    font-size: 1rem;
    color: #464646;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 10px;
}
.search_results_2 .blog a{
    font-size: 1.6rem;
    line-height: 1.1;
}
.search_results_2 .blog .url{
    color: #4aad23;
    margin-bottom: 10px;
    line-height: 1;
    cursor: pointer;
}
.search_results_2 .blog .url a{
    line-height: 1;
    font-size: 1rem;
}
.search_results_2 .blog .url a:hover{
    text-decoration: underline;
}
.search_results_2 .blog span{
   color: #3f3f3f;
}
.search_results_2 .blog .cta_learn_more{
    font-size: 1rem;
    color: #3F3F3F;
}
.search_results_2 select{
    width: 100%;
    margin: 10px auto;
    padding: 10px;
    border-radius: 25px;
    color: #959595;
    font-family: sans-serif;
    font-weight: 400;
    font-style: normal;
    border: 2px solid #009ddc;
}
.search_results_2 select:focus{
    outline: none;
}
.search_results_2 select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
}
.search_results_2 select::-ms-expand {
    display: none;
}
.search_results_2 .filter_by {
    width: 100%;
    max-width: 450px;
    position: relative;
    padding: 0px;
    margin-top: 25px;
}
.search_results_2 .filter_by:after {
    content: '\f0dc';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #959595;
    right: 7px;
    top: 22px;
    padding: 0;
    position: absolute;
    pointer-events: none;
}



/********************************************

          VIRTUAL VALUE

********************************************/
.btn_file{
    height: 0;
    overflow: hidden;
    width: 0 !important;
    padding: 0 !important;
}
.btn_file + label {
    /* background: #f15d22; */
    background: #3F3F3F;
    border: none;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    margin-bottom: 1rem;
    outline: none;
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s;
    vertical-align: middle;
}
.btn_file + label:hover{
    background: #fff;
    color: #3F3F3F;
}
.btn_file + label + span {
    color: #fff;
}

.virtual_value_2 {padding:75px;}
.virtual_value_1 .container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    padding-top: 15px;
}
.virtual_value_1 .image_container {
    transform: translateY(70px);
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
}
.virtual_value_1 .left .image{
    background-size: cover;
    background-position: center;
    height: 550px;
    width: 550px;
}
.virtual_value_1 .left .video_bg{
    height: 550px;
    width: 100%;
    position: relative;
    transition: all 0s;
    background-size: cover;
    background-position: center;
}
.virtual_value_1 .left .video_bg .overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    transition: all 0s;
}
.virtual_value_1 .left .video_bg>a{
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all 0s;
}
.virtual_value_1 .left .video_bg>a:hover{
    color: #009ddc;
    transition: all 0s;
}
.virtual_value_1 .left .video_bg>a .icon{
    width: 100px;
    height: 100px;
    transition: all 0s;
}
.virtual_value_1 .right.copy{
    width: calc(100% - 655px);
    margin: 0 25px;
    transform: translateY(70px);
}
.virtual_value_1 .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.virtual_value_1 .copy p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 25px 0;
}
.virtual_value_1 .copy ul{
    margin: 0;
    padding: 0;
}
.virtual_value_1 .copy ul li{
    font-size: 1rem;
    line-height: 1.6;
    list-style: inherit;
}



/********************************************

          APPLICATION ENGINEERING

********************************************/
.engineering_1 .col-container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.engineering_1 .col-container .col{
width: 45%;
}
.engineering_1 .col-container .col p{
text-align: left;
}



.engineering_2 .image_container {
    transform: translateY(-30px);
}
.engineering_2 .right.copy {
    transform: translateY(0px);
}
.engineering_2 .container {
    padding-top: 0;
}
.engineering_2 .right.copy h2{
       font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 1.5rem;
    text-transform: uppercase;
    line-height: .9;
    margin-bottom: 10px;
}


.engineering_3 .image_container {
    transform: translateY(0px);
}
.engineering_3 .right.copy {
    transform: translateY(0px);
}
.engineering_3  .right.copy.align-right {
    text-align: right;
}
.engineering_3 .container {
    padding-top: 0;
}
.engineering_3 .right.copy h2{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 1.5rem;
    text-transform: uppercase;
    line-height: .9;
    margin-bottom: 10px;
}



.engineering_4 .image_container {
    transform: translateY(0px);
}
.engineering_4 .right.copy {
    transform: translateY(0px);
}
.engineering_4  .right.copy.align-right {
    text-align: right;
}
.engineering_4 .container {
    padding-top: 0;
}
.engineering_4 .right.copy h2{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 1.5rem;
    text-transform: uppercase;
    line-height: .9;
    margin-bottom: 10px;
}



.engineering_5{
    margin-top: 35px;
    margin-bottom: 75px;
}
.engineering_5 .image_container {
    transform: translateY(0px);
}
.engineering_5 .right.copy {
    transform: translateY(0px);
}
.engineering_5  .right.copy.align-right {
    text-align: right;
}
.engineering_5 .container {
    padding-top: 0;
}
.engineering_5 .right.copy h2{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #009ddc;
    font-size: 1.5rem;
    text-transform: uppercase;
    line-height: .9;
    margin-bottom: 10px;
}

/********************************************

            Engineering Values

********************************************/
.engineering_values{
    margin: 25px 0 60px;
}
.engineering_values .slide_home_3 {
    width: 100%;
}
.engineering_values .image_container {
    transform: translateY(0px);
}
.engineering_values .slide_home_3 .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.engineering_values .slide_home_3 .swiper-slide .copy {
    max-width: calc(100% - 345px);
    height: 300px;
    background: #009ddc;
    padding: 55px;
    margin-left: 15px;
}
.engineering_values .slide_home_3 .swiper-slide .copy p {
    color: #fff;
}
.engineering_values .slide_home_3 .image_container {
    box-shadow: 0px 0px 15px 0px rgb(156, 156, 156);
    margin: 15px 15px 15px 0;
}
.engineering_values .slide_home_3 .swiper-slide .image {
    background-size: cover;
    background-position: center;
    width: 360px;
    height: 345px;
}

.engineering_values .swiper-button-group {
    width: 100%;
    max-width: calc(100% - 360px);
    height: 100px;
    position: absolute;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    bottom: 40px;
    left: 0;
}
.engineering_values .swiper-button-group>div{
    position: relative;
    height: 100px;
    width: 100%;
}
.engineering_values .swiper-button-prev-home_3 {
    background-image: url('https://f9157246696ffc9e492f-4eb068aabaa74a53b03ce712cadc3e31.ssl.cf5.rackcdn.com/134.svg') !important;
    bottom: 15px;
    transform: scale(1.2);
    right: 75px;
    left: auto;
}
.engineering_values .swiper-button-next-home_3 {
    background-image: url('https://f9157246696ffc9e492f-4eb068aabaa74a53b03ce712cadc3e31.ssl.cf5.rackcdn.com/133.svg') !important;
    bottom: 15px;
    right: 30px;
    transform: scale(1.2);
}

.engineering_values .copy h1{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 2.2rem;
    text-transform: uppercase;
    line-height: 1;
}
.engineering_values .copy h2{
    font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 1.3rem;
    text-transform: uppercase;
    line-height: 1;
    margin: 10px 0 25px;
}
.engineering_values .copy p{
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    margin: 25px 0;
}
.engineering_values a.cta_learn_more {
    color: #fff;
}
.engineering_values a.cta_learn_more span::after {
    color: #fff;
}




/* 

WHITEPAPER LANDING PAGE

*/
.whitepaper-landing-page--1 .container {
    position: relative;
}
.whitepaper-landing-page--1 .right.copy {
    max-width: 500px;
    padding-bottom: 130px;
    margin-top: 4em !important;
}
.whitepaper-landing-page--1 .right.copy h1{
    max-width: 340px;
}
.whitepaper-landing-page--1 .image_container {
    position: absolute;
    right: 0;
    z-index: 9;
    top: -25px;
    box-shadow: none;
}
.whitepaper-landing-page--1 .left .image {
    height: auto;
   
    width: 600px;

    background: #009ddc;
}
.whitepaper-landing-page--1 #modal_whitepaper form {
    padding: 25px 1.5em;
}
.whitepaper-landing-page--1 #modal_whitepaper h2{
   font-family: bebas-neue, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: .9;
}
.whitepaper-landing-page--1 #modal_whitepaper .recaptcha_term p span,
.whitepaper-landing-page--1 #modal_whitepaper .recaptcha_term p a{
    font-size: 13px;
}



.whitepaper-landing-page--2 .container {
   align-items: start;
}
.whitepaper-landing-page--2 .copy{
   margin-top: 4em !important;
}


.whitepaper-landing-page--3 h1 {
    max-width: 600px;
    margin: auto;
    margin-bottom: 15px;
}
.whitepaper-landing-page--3 .container {
    padding: 75px 20px 135px;
}

.whitepaper-landing-page--4 .btn {
    background: #009ddc;
    color: #fff;
    border: 2px solid #009ddc;
    border-radius: 25px;
    text-transform: uppercase;
    font-family: bebas-neue-by-fontfabric, sans-serif;
    font-style: normal;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 0;
    font-weight: 600;
    text-align: center;
    padding: 18px 30px;
    margin-top: 25px;
    display: block;
    max-width: 200px;
}
.whitepaper-landing-page--4 .btn:hover{
    background: #fff;
    color: #009ddc;
    border: 2px solid #009ddc;
}
.whitepaper-landing-page--4 .container{
align-items: center;
}
.whitepaper-landing-page--4 .right.copy{
margin-top: 0 !important;
    padding: 50px 0;
}
.whitepaper-landing-page--4 .left .image {
    height: 600px;
}

