@font-face {
    font-family: 'Akzidenz-Grotesk Pro Ext';
    src: local('Akzidenz-Grotesk Pro Ext'), local('Akzidenz-Grotesk-Pro-Ext'),
        url('../fonts/AkzidenzGroteskPro-Ext.woff2') format('woff2'),
        url('../fonts/AkzidenzGroteskPro-Ext.woff') format('woff'),
        url('../fonts/AkzidenzGroteskPro-Ext.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Akzidenz-Grotesk Pro Medium Ext';
    src: local('Akzidenz-Grotesk Pro Medium Ext '), local('Akzidenz-Grotesk-Pro-Medium-Ext-'),
        url('../fonts/AkzidenzGroteskPro-MdEx.woff2') format('woff2'),
        url('../fonts/AkzidenzGroteskPro-MdEx.woff') format('woff'),
        url('../fonts/AkzidenzGroteskPro-MdEx.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Akzidenz-Grotesk Pro Regular';
    src: local('Akzidenz-Grotesk Pro Regular'), local('Akzidenz-Grotesk-Pro-Regular'),
        url('../fonts/AkzidenzGroteskPro-Regular.woff2') format('woff2'),
        url('../fonts/AkzidenzGroteskPro-Regular.woff') format('woff'),
        url('../fonts/AkzidenzGroteskPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Akzidenz-Grotesk Pro Bold';
    src: local('Akzidenz-Grotesk Pro Bold'), local('Akzidenz-Grotesk-Pro-Bold'),
        url('../fonts/AkzidenzGroteskPro-Bold.woff2') format('woff2'),
        url('../fonts/AkzidenzGroteskPro-Bold.woff') format('woff'),
        url('../fonts/AkzidenzGroteskPro-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@keyframes slide {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-100%, 0, 0); /* The image width */
    }
}
@keyframes slideRight {
    0% {
      transform: translate3d(0, 0, 0); /* The image width */

    }
    100% {
        transform: translate3d(100%, 0, 0);
    }
}


body {
    color: #002146;
    font-family: 'Akzidenz-Grotesk Pro Regular';
}

.cut-text { 
    text-overflow: ellipsis;
    overflow: hidden; 
    width: 160px; 
    height: 1.2em; 
    white-space: nowrap;
}

.margin-minus {
    margin-right: -100%;
    transition: all 0.5s ease-out;
}
.animate {
    transition: all 0.5s ease-out;
}
.margin-0 {
    margin-left: 0px;
    transition: all 0.5s ease-out;
}


.header-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: black;
    margin-bottom: 60px;
}
.logo {
    width: 200px;
}
.burger-icon {
    cursor: pointer;
}
.burger-icon span {
    width: 25px;
    height: 3px;
    display: block;
    border-radius: 10px;
    margin-top: 8px;
    background: #fff;
    transition: all 1s cubic-bezier(.77,0,.175,1);
}
.navbar-white .burger-icon span {
    background: #002F65;
}
.navbar-blue .burger-icon span {
    background: #fff;
}
.burger-icon span:nth-child(1) {
    margin-top: 0;
}

@media only screen and (max-width: 767px) {
    .header-menu {
        margin-bottom: 30px;
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100vw;
        background: black;
        z-index: 10000;
        padding: 20px 15px;
        height: 65px;
    }
    .header-menu + * {
        margin-top: 80px;
    }
    #logo {
        width: 100px;
    }
}

/* Navbar 
------------------------*/
.navbar {
    font-family: 'Akzidenz-Grotesk Pro Regular';
    border-bottom: 1px solid rgba(255,255,255, 0.1);
    z-index: 10000;
}
.navbar .logo {
    width: 63px;
}
.navbar ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
a {
    text-decoration: none !important;
}
.navbar li.active a, .navbar li:hover a  {
    border-bottom: 1px solid #fff;
}
.navbar li a {
    color: #fff;
    padding: 2px;
}
.navbar.navbar-white {
    background: #fff;
    z-index: 1000;
}
.navbar.navbar-blue {
    background: #002F65;
}
.navbar.navbar-blue li a{
    color: #fff !important;
}
.navbar.navbar-white li a {
    color: #002F65;
}

.dropdown-menu {
    border-radius: 2px;
}
.dropdown-item {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #002146 !important;
}
.multiple {
    padding: 2px;
    cursor: pointer;
}
.multiple > div {
    padding: 10px 0px;;
}
.multiple ul {
    display: none;
}
.multiple li {
    text-align: left;
    padding: 10px;
}
.multiple li:hover {
    background: #F3F4F8;
}

@media only screen and (max-width: 767px) {
    .navbar {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100vw;
        background: #002F65;
        z-index: 10;
    }
    .navbar li {
        padding: 10px 0px !important;
    }
    .navbar a {
        font-size: 22px;
    }
    .navbar .container {
        display: block;
    }
    .navbar .container > .navbar-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .multiple {
        font-size: 22px;
    }
    .menu {
        height: 100vh;
        display: none;
    }
    .navbar + div{
        margin-top: 92px;
    }
}

@media only screen and (min-width: 768px) {
    .navbar {
        position: fixed;
        width: 100%;
        background: transparent;
    }
    .navbar ul {
        display: flex;
        text-align: center;
    }
    .navbar .menu {
        display: flex;
        align-items: center;
    }
    .navbar li a {
        padding: 10px;
    }
    .multiple {
        padding: 10px;
    }
    .navbar .btn {
        margin-left: 40px;
    }
    .dropdown-menu {
        right: 0px;
        left: auto;
        top: 60px;
        width: 330px;
        margin-top: -4px;
    }
    .burger-icon  {
        display: none;
    }

}

/* Footer Menu
------------------------*/
.tech-demo {
    font-family: 'Akzidenz-Grotesk Pro Medium Ext';
    background: #E31937;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 30px;
    color: #fff;
}

.info {
    color: rgba(255,255,255,0.54);
    margin-bottom: 28px;
    margin-top: 8px;
}
.footer-menu {
    background: #002F65;
    padding: 50px 0px;
    padding-bottom: 0px;
    color: #fff;
}
.footer-menu ul {
    text-align: left;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.footer-menu li {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out 0.1s;
}

.footer-menu .active a, .footer-menu li:hover a {
    color: #E31937;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
}
.copyright {
    text-align: center;
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
}
.footer-menu .line {
    height: 1px;
    opacity: 0.1;
    background: #FFFFFF;
    width: 90%;
    margin-left: 5%;
}
.add-info {
    font-size: 14px;
}
.phone-number {
    font-size: 18px;
    margin-bottom: 0px;
}
@media only screen and (max-width: 767px) {
    .social-media {
        text-align: center;
        padding: 10px 0px;
    }
    .footer-menu {
        padding-top: 26px;
        padding-bottom: 20px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .copyright {
        padding: 20px 0px;
    }
}
@media only screen and (min-width: 768px) {
    .tech-demo {
        padding: 100px 100px;
        font-size: 36px;
        width: 80%;
        margin-left: 10%;
        z-index: 2;
        position: relative;
    }
    .footer-menu  {
        margin-top: -100px;
        z-index: 1;
        padding-top: 150px;
        padding-left: 10%;
        padding-right: 10%;
    }
    .footer-menu li {
       margin-bottom: 16px;
    }
    .copyright {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .footer-menu .line {
        margin-top: 120px;
    }
}
/*Container
-------------------------*/
.own-container {
    padding-left: 15px;
    padding-right: 15px;
}

@media only screen and (min-width: 768px) {
    .own-container {
        padding-left: 30px;
        padding-right: 30px;
    }    
}
/*Button
-------------------------*/
.btn {
    padding: 16px 22px;
    border-radius: 1px;
    font-family: 'Akzidenz-Grotesk Pro Bold';
}
.btn-primary, .btn-secondary:hover {
    color: #E31937;
    background: #fff;
    border: 1px solid #fff;
}
.btn-primary-light {
    color: #E31937;
    background: #fff;
    border: 1px solid #E31937;
}
.btn-primary-line {
    border: 1px solid #E31937;
}
.btn-primary:hover, .btn-secondary {
    background: #E31937;
    color: #fff;
    border: 1px solid #fff;
}
.btn-secondary {
    border: 1px solid #E31937;
}
.btn-submit, .btn-submit:hover, .btn-submit:focus, .btn-submit:active {
    background: transparent;
    color: #fff;
    padding: 0px;
    font-size: 24px;
    margin-top: -30px;
    border: none;
}
.btn-brochure {
    color: #E31937;
    border: 1px solid #C4CADE;
    background: transparent;
}

/*HOME
-------------------------*/
h1 {
    font-family: 'Akzidenz-Grotesk Pro Medium Ext';
    color: white
}
h2 {
    font-family: 'Akzidenz-Grotesk Pro Medium Ext';
}
h3 {
    font-family: 'Akzidenz-Grotesk Pro Medium Ext';
}
h5{
    font-family: 'Akzidenz-Grotesk Pro Ext';
}
.hi-tech-box {
    border: 1px solid #C4CADE;
    padding: 30px 0px;
}
.cover-home h1 {
    font-family: 'Akzidenz-Grotesk Pro Medium Ext';
}
.cover-home h5 {
    font-weight: 400;
    font-size: 38px;
    line-height: 51px;
    color: #FFFFFF;
}
.specialises {
    padding: 30px 0px;
}
.specialises h2 {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 32px;
    color: #002F65;
}
.specialises p {
    font-weight: 400;
    font-size: 18px;
    line-height: 40px;
}
.specialises .btn {
    margin-top: 30px;
}
.services {
    padding: 30px 0px;
}
.services h2 {
    font-size: 36px;
    line-height: 46px;
    color: #002F65;
    margin-bottom: 32px;
}
.services h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    color: #002F65;
    margin-bottom: 6px;
}
.services p {
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    color: #002146;
}

.hi-tech-box{
    padding: 40px 60px;
}
.hi-tech-product button {
    font-family: 'Akzidenz-Grotesk Pro Medium Ext';
    font-size: 24px;
    line-height: 31px;
    color: #002146 !important;
    background-color: transparent !important;
    opacity: 0.5;
    padding: 20px ;
    border:none;
    border-radius:0;
    border-bottom: 1px solid rgba(0, 33, 70, 0.5);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    text-align:left;
}
.hi-tech-product button.active {
    color: #002146;
    border:none;
    border-radius:0;
    border-bottom: 1px solid rgba(0, 33, 70, 0.5);
    background-color: transparent !important;
    font-weight: 500;
    opacity: 1;
}
.hi-tech-product .ic_arrow {
    position:absolute;
    width: 20px;
    right:20px;
}

.hi-tech-product .learn-more {
    font-family: 'Akzidenz-Grotesk Pro Bold';
    font-size: 16px;
    line-height: 24px;
    color: #E31937;
    margin-top: 8px;
}
.advantages .row {
    background: #F3F4F8;
    margin-left: 0px;
    margin-right: 0px;
}
.advantages .first-col {
    padding: 30px 20px;
}
.advantages ul {
    list-style-type: none;
    padding-left: 0px;
}
.advantages h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    color: #002F65;
    margin-bottom: 44px;
}
.advantages h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    color: #002146;
    margin-bottom: 8px;
}
.advantages h3 img {
    width: 20px;
    margin-right: 8px;
}
.advantages p {
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    color: #002146;
}
.home-projects {
    padding: 30px 0px; 
}
.home-projects h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    color: #002F65;
    margin-bottom: 10px;
}

@media only screen and (min-width: 768px) {
    .cover-home {
        height: 640px !important;
    }
    .cover-home h1 {
        font-weight: 500;
        font-size: 48px;
        line-height: 61px;
    }
    .cover-home h5 {
        margin-top: 16px;
        margin-bottom: 32px;
    }
    .specialises {
        /* padding: 80px 0px; */
        display: flex;
        align-items: center;
    }    
    .number-projection-home {
        width: 80%;
        margin-left: 10%;
        padding: 40px !important;
        margin-top: -100px;
    }
    .number-projection-home h6{
        font-family: 'Akzidenz-Grotesk Pro Medium Ext';
    }
    .number-projection-home .number{
        font-family: 'Akzidenz-Grotesk Pro Medium Ext';
    }
    .number-projection-home .label{
        font-family: 'Akzidenz-Grotesk Pro Regular';
    }
    .hi-tech-product {
        padding: 50px 0px;
    }
    .hi-tech-box {
        position: relative; 
    }
    .hi-tech-product .row {
        align-items: center;
    }

    .advantages .first-col {
        padding: 60px 40px;
    }
    .advantages li {
        margin-bottom: 26px;
    }
    .advantages li:last-child {
        margin-bottom: 0px;
    }
    .services {
        padding: 80px 0px;
    }
    .home-projects {
        padding: 80px 0px; 
    }
    .home-projects h2 {
        margin-bottom: 50px;
    }
    .home-projects h2 .btn {
        float: right;
    }
}
@media only screen and (max-width: 767px) {
    .specialises .btn{
        margin-bottom: 20px;
    }
}

/*ABOUT
--------------------------*/   
.projection {
    padding: 30px 0px; 
}
.projection .hi-tech {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #002146;
}

.projection .specialises {
    font-weight: 400;
    font-size: 18px;
    line-height: 40px;
    margin-bottom: 30px;
    padding: 0;
}
.number-projection {
    background: #E31937;
    color: #fff;
    padding: 15px;
}
.number-projection .number {
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
}
.number-projection h6 {
    font-weight: 700;
    font-size: 18px;
    line-height: 40px;
}
.number-projection .label {
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
}
.hi-tech-production {
    padding: 30px 0px; 
    background: #F3F4F8;
}
.hi-tech-production h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    color: #002F65;
    margin-bottom: 24px;
}
.hi-tech-production .subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #002146;
    margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
    .projection {
        padding: 60px 0px;
    }
    /* .projection .hi-tech {
        width: 80%;
    } */
    .number-projection {
        padding: 25px;
    }
    .hi-tech-production {
        padding: 60px 0px; 
        padding-bottom: 220px;
        margin-bottom: -160px;
    }
}

/*PEOPLE
--------------------------*/  
.running-text {
    font-size: 30px;
} 
.running-text-people {
    color: white
}
.dummy {
    margin-top: 100%;
}
#running-text-0 {
   /* display: flex; */
    width: 100%;
    margin: 0 auto;
    white-space: nowrap;
    /* animation: scrollRight 30s linear infinite; */
}
#running-text-1 {
    /* display: flex; */
    width: 100%;    
    margin: 0 auto;
    /* margin-right: -100%; */
    white-space: nowrap;
    /* animation: scrollLeft 30s linear infinite; */
}
#running-text-2 {
    /* display: flex; */
    width: 100%;
    margin: 0 auto;
    white-space: nowrap;
    /* animation: scrollRight 30s linear infinite; */
}
.image-profile {
    border-radius: 10px;
    position: relative;
    background-image: url("./img/Peoples/Bimo.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%; 
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out 0.5s;
    -moz-transition: all 0.3s ease-in-out 0.5s;
    -o-transition: all 0.3s ease-in-out 0.5s;
    -ms-transition: all 0.3s ease-in-out 0.5s;
    transition: all 0.3s ease-in-out 0.5s;
}
.image-profile:hover .person {
    display: flex;
}
.person {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding-top: 10%;
    background: rgba(0,0,0,0.3);
    -webkit-transition: all 0.3s ease-in-out 0.5s;
    -moz-transition: all 0.3s ease-in-out 0.5s;
    -o-transition: all 0.3s ease-in-out 0.5s;
    -ms-transition: all 0.3s ease-in-out 0.5s;
    transition: all 0.3s ease-in-out 0.5s;
}
.hover-shading {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;  
}
.person h4 {
    font-size: 16px;
}
.person h5 {
    font-size: 12px;
}
.people-container .col-6 {
    padding: 10px;
}
@media only screen and (max-width: 767px) {
    .person h4 {
        margin-bottom: 4px;
    }
}
@media only screen and (min-width: 768px) {
    .people-container .col-6 {
        padding: 15px;
    }
    .running-text {
        font-size: 100px;
    }
    .running-text-people {
        margin-top: -40px;
        margin-bottom: 120px;
        line-height: 1;
    }
    .person h4 {
        font-size: 30px;
    }
    .person h5 {
        font-size: 18px;
    }
    .running-text-people #running-text-2 {
        height: 120px;
    }
}


/* Our Works
--------------------------*/  
.our-works-img {
    position: relative;
    border-radius: 10px;
    margin-bottom: 15px;
}
.our-works-img .hover {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,0.3);
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
}
.our-works-img:hover .hover {
    display: flex;
}
.our-works-img h4 {
    font-size: 48px;
}
.our-works-img img {
    border-radius: 10px;
}
.our-works-img.double {
    height: 800px;
}

@media only screen and (max-width: 767px) {
    .our-works .content {
        margin-top: -15px;
        margin-bottom: 20px;
    }
    .our-works .col-6 {
        padding-left: 8px;
        padding-right: 8px;
    }
    .our-works .row-2 {
        padding-left: 8px;
        padding-right: 8px;
    }
    .our-works .col-4 {
        padding-left: 5px;
        padding-right: 5px;
    }
    .our-works .row-3 {
        padding-left: 10px;
        padding-right: 10px;
    }
}



@media only screen and (min-width: 768px) {
    .our-works-img {
        margin-bottom: 30px;
    }
    .our-works .row-3 {
        padding-left: 40px;
        padding-right: 40px;
    }
    .our-works .content {
        margin-bottom: 40px;
        margin-top: -40px;
    }
}



/* Service
--------------------------*/  
.cover-service {
    color: #fff;
}
.cover-service h1 {
    margin-bottom: 30px;
}
.cover-service div div {
    display: flex;
    align-items: center;
}
.cover-service .btn {
    margin-right: 20px;
}
.strategizing {
    background: #F3F4F8;
    padding: 30px 0px;
}
.strategizing h4 {
    font-weight: 500;
    font-size: 36px;
    line-height: 56px;
    color: #002146;
    margin-bottom: 22px;
}
.strategizing p {
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
    color: #002146;
    margin-bottom: 40px;
}
.strategizing ul {
    list-style: none; 
    margin-bottom: 0px;
}
  
.strategizing ul li::before {
    content: "\2022";
    color: #E31937; 
    font-weight: bold; 
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.strategizing li {
    font-weight: 700;
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 16px;
    color: #00499C;
}
.field-insulation {
    padding: 30px 0px;
}
.field-insulation h3 {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 18px;
}
.field-insulation h6 {
    color: #002146;
    opacity: 0.5;
    font-weight: 700;
    font-size: 20px;
    line-height: 38px;
    margin-bottom: 8px;
}
.field-insulation p {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
}
.field-insulation ul {
    padding-left: 24px;
    margin-top: 12px;
}
.field-insulation li{
    color: #00499C;
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
}
.partner-with-us {
    padding: 30px 0px;
    background: url("./img/partner-with-us.png") no-repeat fixed center;
}
.partner-with-us .container {
    height: 400px;
    color: #fff;
    text-align: center;
}
.partner-with-us h6 {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    opacity: 0.8;
    margin-bottom: 20px;
}
.partner-with-us h4 {
    font-weight: 500;
    font-size: 48px;
    line-height: 61px;
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
    .cover-service {
        padding-top: 200px !important;
    }
    .strategizing {
        padding: 60px 0px;
    }
    .field-insulation {
        padding: 60px 0px;
    }
    .field-insulation .row:nth-child(1){
        margin-bottom: 60px;
    }
    .strategizing li {
        float: left;
        width: 50%;
    }
    .spacer {
        clear: both;
    }
    .partner-with-us {
        padding: 60px 0px;
    }
    .partner-with-us h4 {
        width: 50%;
        margin-left: 25%;
    }
}

/* Projects & Products
--------------------------*/
.project-box {
    border: 1px solid #C4CADE;
    margin-bottom: 40px;
    cursor: pointer;
}
.product-box {
    border: 1px solid #C4CADE;
    position: relative;
    min-height: 300px;
    margin-bottom: 20px;
    padding: 10px;
    padding-right: 50%;
}
.product-box h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 8px;
}
.product-box h6 {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
}
.product-box img {
    position: absolute;
    top: 0;
    right: 0px;
    width: 200px;
}
.product-box .learn-more {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #E31937;
    position: absolute;
    bottom: 10px;
    left: 10px;
}
.project-box .top {
    padding: 10px 0px;
    display: flex;
    align-items: center;
}
.projects {
    padding: 30px 0px;
}
.projects .subtitle {
    font-size: 20px;
    line-height: 38px;
    color: #002146;
    margin-bottom: 20px;
}
.project-box .red-strip {
    width: 19px;
    height: 8px;
    background: #E31937;
    display: inline-block;
    margin-right: 10px;
}
.project-box .name {
    display: inline-block;
    margin-bottom: 0px;
}
.place {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #002146;
    width: 80%;
}
.project-box .bottom {
    padding: 20px;
    position: relative;
}
.project-box .arrow_blue {
    position: absolute;
    right: 20px;
    top: 30px;
}
.date {
    font-weight: 400;
    font-size: 21px;
    line-height: 28px;
    color: #002146;
    opacity: 0.6;
    margin-top: 40px;
}

@media only screen and (min-width: 768px) {
    .projects {
        padding: 40px 0px;
    }
    .place {
        width: 70%;   
    }
    .projects .subtitle {
        width: 70%;
        margin-bottom: 40px;
    }
    .product-box {
        padding: 30px;
        padding-right: 50%;
    }
    .product-box .learn-more {
        bottom: 30px;
        left: 30px;
    }
}

/* Product Details
--------------------------*/
.cover-product-details {
    background-color: #F3F4F8 !important;
}
.cover-product-details h1 {
    font-weight: 500;
    font-size: 48px;
    line-height: 61px;
    color: #002F65;
    margin-bottom: 18px;
}
.cover-product-details h6 {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #002F65;
}
.cover-product-details h5 {
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: #002F65;
    margin-bottom: 18px;
    position: relative;
}
.cover-product-details h5:before {
    position: absolute;
    display: block;
    height: 15px;
    width: 200px;
    background-color: #E31937;
    left: -220px;
    top: 3px;
    content: '';
}
.cover-product-details p {
    font-weight: 400;
    font-size: 20px;
    line-height: 38px;
    color: #002146;
    opacity: 0.5;
    margin-bottom: 26px;
}

.section-product-details {
    background: #F3F4F8;
}
.marina-sands, .marina-sands-2 {
    padding: 30px 0px;
}
.section-product-details h2 {
    font-weight: 700;
    font-size: 36px !important;
    line-height: 46px;
}
.owl-carousel {
    position: relative;
}
.owl-carousel #chevron-right {
    position: absolute;
    right: 10px;
    top: 50%;
    background: #fff;
    padding: 10px 15px;
    border-radius: 50%;
}
.owl-carousel #chevron-left {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: rotate(180deg);
    padding: 10px 15px;
    border-radius: 50%;
    background: #fff;
}
.gallery h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    color: #002F65;
    margin-bottom: 30px;
}
.preinsulated-pipe {
    padding: 30px 0px; 
}
.preinsulated-pipe h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    color: #002146;
}
@media only screen and (min-width: 768px) {
    .cover-product-details {
        padding-top: 200px !important;
    }
    .cover-product-details-2 h1 {
        width: 50%;
    }
    .cover-product-details .container {
        position: relative;
    }
    .section-product-details {
        padding: 80px 0px;
    }
    .marina-sands {
        padding-left: 20%;
        padding-right: 20%;
        padding-top: 60px;
        padding-bottom: 100px;
    }
    .marina-sands-2 {
        padding-top: 60px;
        padding-bottom: 100px;
    }
    .marina-sands-2 p {
        padding-right: 50%;
    }
    .gallery {
        padding: 80px 0px;
    }
    .abs-img {
        position: absolute;
        top: -120px;
        right: 0px;
    }
    .preinsulated-pipe {
        padding: 80px 0px; 
    }
}

/* Career
--------------------------*/
.career-openings {
    background: #F3F4F8;
    padding: 20px 0px;
}
.career-box {
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
    padding: 20px 10px;
    margin-bottom: 15px;
}
.career-box p {
    margin-bottom: 0px;
    display: block;
}
.category {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px !important;
    color: #002F65;
    opacity: 0.5;
}
.position {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #002F65;
}
.career-box .row {
    align-items: center;
}
.arrow-right {
    float: right;
}
.years {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #002F65;
}
.label {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #D4D4D4;
    margin-bottom: 10px !important;
}
.career-openings h3 {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    color: #002F65;
    text-align: center;
    margin-bottom: 18px;
}
.career-openings .subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}
.career-openings ul {
    list-style-type: none;
}
.career-openings .active {
    color: #D2232A;
}
.career-openings li {
    color: #001833;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 20px;
    cursor: pointer;
}
.career-benefits {
    padding: 20px;
}
.career-benefits .left h4 {
    color: #002F65;
    opacity: 0.5;
    font-weight: 700;
    font-size: 20px;
    line-height: 38px;
    margin-bottom: 8px;
}
.career-benefits .left h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    color: #002F65;
    margin-bottom: 18px;
}
.career-benefits .left p {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #001833;
}
.career-right h5 {
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    color: #002F65;
    margin-bottom: 12px;
    margin-top: 30px;
}
.career-right p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}
.career-right div div {
    padding-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .career-benefits {
        padding: 80px 0px;
        padding-bottom: 60px;
    }
    .career-openings {
        padding: 80px 0px;
        margin-bottom: -160px;
        padding-bottom: 240px;
    }
    .career-box {
        padding: 20px 30px;
        margin-bottom: 16x;
    }
    .career-openings .subtitle  {
        width: 60%;
        margin-left: 20%;
        margin-bottom: 40px;
    }
}

/*Contact Us
--------------------------*/  
.cover-contact {
    height: 423px;
    background: #002F65;
}
.cover-contact h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    opacity: 0.5;
    margin-bottom: 20px;
    color: #fff;
}
.cover-contact h1 {
    font-size: 46px;
    line-height: 61px;
}
.container-contact {
    padding: 30px 0px;
}
.container-contact h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    color: #002F65;
    margin-bottom: 20px;
}

.container-contact p {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 50px;
}

.box {
    color: #002146;
    border: 1px solid #C4CADE;
    border-radius: 2px;
    padding: 20px;
    padding-top: 35px;
    margin-bottom: 30px;
    background: #fff;
    cursor: pointer;
}

.box:hover {
    background: #002F65;
    box-shadow: 4px 4px 0px rgba(0, 47, 101, 0.2);
}
.box-contact:hover {
    color: #002146;
    border: 1px solid #C4CADE;
    border-radius: 2px;
    padding: 20px;
    padding-top: 35px;
    margin-bottom: 30px;
    background: #fff;
    cursor: pointer;
}
.box-contact:hover p {
    color: #002146 !important;
    opacity: 0.6 !important;
}
.box:hover h3, .box:hover p , .box:hover h5 {
    color: #fff !important;
    opacity: 1;
}

.box .ic_location {
    float: left;
}
.box > div {
    padding: 15px;
    padding-left: 32px;
    padding-top: 0px;
}
.box h5 {
    color: #002146;
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 10px;
}
.box p {
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #002146;
    opacity: 0.6;
}
.box .get-direction {
    font-family: 'Akzidenz-Grotesk Pro bold';
    font-size: 16px;
    line-height: 24px;
    color: #E31937;
}

.alert {
    /* display: none; */
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1000;
    width: 100%;
}
.form-container {
   padding-left: 15px;
}
.form-group input, .form-group input:active, .form-group input:focus, .form-group textarea, .form-group textarea:active, .form-group textarea:focus  {
    border: 1px solid #C4CADE;
    box-shadow: none;
    border-radius: 3px;
    padding: 10px;
    background: transparent;
}
.form-group.error input, .form-group.error select, .form-group.error textarea {
    border: 1px solid #E31937;
}

.form-group.error small {
    color: #E31937 !important;
}

.form-group select {
    height: 46px !important;
}
.form-group {
	position: relative;
	margin-bottom: 40px;
}

.form-group label {
    color: #002F65;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 8px;
}

.form-group .floating-label {
    font-size: 16px;
    color: #cccccc;
    position: absolute;
    pointer-events: none;
    top: 0px;
    transition: all 0.1s ease;
}

@media only screen and (max-width: 767px) {
    .submit-container {
        text-align: center;
    }
    .contact-us .section-bottom {
        margin-top: 40px;
    }
    .container-contact {
        padding-left: 15px;
        padding-right: 15px;
    }
    h2 {
        margin-top: 30px;
    }
}
@media only screen and (min-width: 768px) {
    .cover-contact {
        padding-top: 200px;
    }
    .container-contact {
        padding: 80px 0px;
    }
    .cover-contact h1 {
        width: 80%;
    }
}


/*Loading   
--------------------------*/  

.loading {
    height: 100vh;
    width: 100vw;
    background: black;
    z-index: 1035;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}
.loading img {
    position: absolute;
    top: 50%; right: 50%;
    transform: translate(50%,-50%);
    width: 250px;
}


@media only screen and (max-width: 767px) {
    .loading img {
        width: 200px;
    }
}


/*Helper
--------------------------*/   
img {
    max-width: 100%;
}
.scroll-to-see-more {
    position: fixed;
    right: 60px;
    top: 20%;
    z-index: 1000;
    display: none;
}
.homepage .scroll-to-see-more {
    display: block;
}
.scroll-to-see-more .label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-left: 4px;
}
.scroll-to-see-more .chevron-down {
    background: #4ADEDE;
    width: 30px;
    height: 30px;
    line-height: 35px;
    vertical-align: middle;
    color: black;
    text-align: center;
    border-radius: 50px;
    z-index: 10;
    margin-top: 10px;
}

.scroll-to-see-more .chevron-up {
    background: #4ADEDE;
    width: 30px;
    height: 40px;
    z-index: 10;
    line-height: 30px;
    vertical-align: middle;
    color: black;
    text-align: center;
    border-radius: 50px 50px 0px 0px;
    margin-top: 10px;
    display: none;
}


.d-none {
    display: none;
}
.d-block {
    display: block;
}
.hidden {
    opacity: 0;
}
.visible {
    opacity: 1;
}
.transform-0 {
    transform: rotate(0deg);
}
.top-bar {
    transform: rotate(45deg);
    margin-bottom: -90%;
}
.bottom-bar {
    transform: rotate(-45deg);
}
.transform-75 {
    transform: rotate(75deg);
}
.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}
.delay-4 {
    animation-delay: 0.4s;
}
.delay-5 {
    animation-delay: 0.5s;
}
.delay-6 {
    animation-delay: 0.6s;
}
.delay-7 {
    animation-delay: 0.7s;
}
.delay-8 {
    animation-delay: 0.8s;
}
.delay-9 {
    animation-delay: 0.9s;
}
.delay-10 {
    animation-delay: 1s;
}
.m-0 {
    margin: 0px;
}
.rotate-0 {
    transform: rotate(0deg);
}
.rotate-180 {
    transform: rotate(180deg);
}

@media only screen and (max-width: 767px) {
    .scroll-to-see-more {
        display: none !important;
    }
}
/* override 
----------------------------------*/
@media only screen and (max-width: 767px) {
    .cover {
        padding-top: 50px;
    }
}
.btn-link:hover {
    text-decoration: none;
    color: #4ADEDE;
}
h1, h2, h3, h4 {
    font-weight: 400;
}
@media only screen and (min-width: 1400px) {
    .container {
        max-width: 1280px;
    }
}
@media only screen and (min-width: 1600px) {
    .container {
        max-width: 1440px;
    }
}
@media only screen and (min-width: 1800px) {
    .container {
        max-width: 1660px;
    }
}
.dropdown-toggle::after{
    display: none !important;
}

.wa-float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-wa-float{
	margin-top:16px;
}
@media only screen and (max-width: 767px) {
    .tech-demo { padding: 20px; font-size: 16px; }
    .product-box img { max-width: 40%; }
    .abs-img {
        max-width: calc(100% - 30px);
        margin-left: 15px;
        margin-top: 10px;
    }
    .footer{
        text-align:center;
    }
    .footer-menu ul{
        text-align:center;
        padding: 1rem 0;
    }
    .cover-contact h1{
        font-size:24pt;
        line-height:36pt;
    }
    .cover-home h5 {
        font-weight: 400;
        font-size: 18px;
        line-height: 26px;
        color: #FFFFFF;
    }
}

.carousel-caption{
    right: none;
    left: 5%;
    text-align: left;
}

.carousel-indicators{
    right: none;
    margin-left: 5%;
    
}