body{
    font-family: "Poppins";
    margin: 0;
    overflow-x: hidden;
}

p{
  line-height: 190%;
}

a{
  cursor: pointer;
}

.alertCard{
  background: white;
  padding: 1.2em;
  border-radius: 12px;
  text-align: center;
}

.btnClear{
  width: auto;
  font-weight: 500;
  font-size: 24px;
  vertical-align: middle;
  transition: all ease .3s;
  padding: .3em 0;
  align-self: flex-start;
}

.ctaArrow{
  background: none;
  color: white;
  width: auto;
  font-weight: 600;
  font-size: 24px;
  vertical-align: middle;
  transition: all ease .3s;
  padding: .3em 0;
  border: none;
}

.bArrow{
   vertical-align: middle;
  transition: all ease .3s;
}

.ctaArrow:hover{
    .bArrow{
              -moz-transform: translateX(8px);
            -ms-transform: translateX(8px);
            -o-transform: translateX(8px);
            transform: translateX(8px);
        }
}


.black{
   background: black;
}

.whiteText{
  color: white;
}



.btnClear img{
  margin-left: .5em;
}

button > * {
  vertical-align: middle;
}

.whiteText{
  color: white;
}

.blackText{
  color:black;
}

  .caseStudy{
    color: #000;
    font-family: Poppins;
    font-size: 1em;
    font-style: normal;
    font-weight: 400;
    line-height: 133%; /* 37.24px */
    letter-spacing: 0.17px;
    margin-bottom: .5em;
  }


/* NEWS */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-column-gap: 24px;
  padding: 24px;
}

.newsCard{
  transition: box-shadow .3s;
  margin-top: 1em;
  display: flex;
  flex-direction: column;
   text-decoration:none;
  color: black;
  border-radius: 10px;
  background: #F1F0EA;
  
}

.newsCard:hover {
  box-shadow: 0 0 18px rgba(33,33,33,.4);
  transform: translateY(-7px);
  transition: transform 0.2s ease-in-out;
  color: #0170D9;
}



.articleThumb{
  height: 300px;
  width: 100%;
  object-fit: cover;
  background: blue;
  border-radius: 10px 10px 0 0;
}

.NewsCardTitle{
  padding: 2em;
  font-size: 18px;
  line-height: 1.5em;
  
}


/* HOMEPAGE SLOGAN */

.sloganTop{
background: linear-gradient(90deg, #000 0%, #505E30 86.33%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.sloganMid{
background: linear-gradient(90deg, #0170D9 0%, #FFA0FF 72.86%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.sloganBottom{
background: linear-gradient(90deg, #FAA800 0%, #ED4A1C 90%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}


/* Home video carousel */
        .vidSliderContainer {
            display: block;
            overflow: hidden;
            width: 100%; 
   
            position: relative;
        }

        .vidSlider {
            display: flex;
            transition: transform 0.5s;
        }

        .vSlides {
            flex: 0 0 100%;
            width: 25%;
            display: flex;
            position: relative;
        }

        .vSlides video {
            width: 100%; 
            object-fit: cover;
          border-radius: 12px;
        }


        .casePlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border: none;
      display: flex;
    width: 82px;
    height: 82px;
    background:rgb(255, 255, 255, 0.3);
    border-radius: 100%;
    text-align: center;
          align-items: center;
      justify-content: center;
    transition: all 0.3s ease;
          z-index: 50;
    }



        /* Styling for slide markers */
        .slide-markers {
            text-align: center;
            margin-top: 16px;
          display: flex;
            column-gap: 8px;
        }

        .slide-markers button {
            background: rgba(0, 0, 0, .2); 
            height: 8px; /* Adjust the height as needed */
            border: none;
            border-radius: 8px;
            cursor: pointer;
            flex-grow: 4;
        }

        .slide-markers button.active {
            background: black;
        }



#homehero{
    height: auto;
    width: 100%;
    padding: 120px 0 2em 0;
    display: flex;
}

    
#heroWrapper{
    max-width: 1440px;
    display: flex;
    margin: 0 auto;
    align-items: center;
    padding: 0 20px;
      gap: 5em;
}

.homeTextHalf{
   flex-grow: 1;
}

.halftext{
    flex: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.halftext h3{
  padding: 1em 0;
}


#slogan{
    line-height: 100%;
  margin-bottom: .5em;
}

.ctaSection{
  width: 100%;
  background: white;
  padding: 4em 2em ;
  margin: 0 auto;
  text-align: center;
}


 @media (min-width: 300px) and (max-width: 900px)
{
    .videoHalf{
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
  
    .homeTextHalf{
      flex-grow: 1;
    }
  
  #heroWrapper{
    display: flex;
    flex-direction: column;
    gap: 2em;
    }
  
          .vSlides video {
            height: 50vh;
        }
  
}
 
}




 @media (min-width: 901px) and (max-width: 1200px)
{

  .videoHalf{
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  }

      .homeTextHalf{
      flex-grow: 1;
    }
  
      #heroWrapper{
        display: flex;
    flex-direction: row;
    }
  
    #slogan{
    font-size: 42px !important;
      color: black;
      }
  
     .slide-markers button:hover {
            background: #0170d9;
        }
  
}

 @media (min-width: 1201px)
{
  .videoHalf{
  display: flex;
  flex-direction: column;
  flex-grow: 2;
  }

      .homeTextHalf{
      flex-grow: 1;
    }
  
    #heroWrapper{
        display: flex;
    flex-direction: row;
    }
  
  #slogan{
    font-size: 70px;
}
  
     .slide-markers button:hover {
            background: #0170d9;
        }
}


/* SPACING */
.techHeroBlock{
  margin-top: 2em;
}



/* COLOURS */

.warmgrey{
  background: #EBE9E1;
}

.boddLightGrey{
  background: #F8F7F6;
}

.boddBlue{
  background: #0170D9;
}

.boddPink{
  background: #FFA0FF;
}

.boddDarkGrey{
  background: #3B3A38;
}


.boddYellow{
  background: #FAA800;
}

.white{
  background: #ffffff;
}


/* profile grid */
  
  .gridContainer {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap to new rows */
  justify-content: left;
  padding-left: 16px;
  max-width:1440px;
  margin: 0 auto;
  /* Other styles for container */
}

.profileBox {
  width: calc(25% - 16px); /* 50% width minus the gap between items */
/*   min-height: 100px; */
  margin-right: 16px;
  display: flex;
  flex-direction: column;
  margin-bottom: 32px; /* Add a small gap between rows */
  /* Other styles for box */
  
}

.profileBox img{
  width: 100%;
  margin-bottom: 1em;
}



@media (max-width: 768px) {
  .profileBox {
    width: calc(50% - 16px); /* Full width for mobile devices */
    margin-right: 16px;
  }
}



/* BUTTONS */
button{
    align-self: flex-start;
    all: unset;
    cursor: pointer;
  }

  .playButton{
    display: flex;
    width: 82px;
    height: 82px;
    background:rgb(255, 255, 255, 0.3);
    border-radius: 100%;
    text-align: center;
          align-items: center;
      justify-content: center;
    transition: all 0.3s ease;
  }


.watchBtn{
  box-shadow: inset 0px 0px 0px 1px #0170d9;
  border-radius: 4px;
  padding: 0 1em;
  text-align: left;
  line-height: 50px;
  font-size: 18px;
  font-weight: 600;
  color: #0170d9;
  width: 95px;
}



.caseVideoContainer{
height: 50vh;
position: relative;
}

.caseVideoContainer > video{
 width: 100%;
 height: 50vh;
 object-fit: cover;
  border-radius: 8px;
}
  





 /* HOVERS */

@media (hover: hover) {

  #contactBtn:hover, .primaryBtn:hover{
    color: #FFFFFF !important;
    background: #014E98;
    transition: all 0.5s ease;
  }

  #loginBtn:hover{
    box-shadow: inset 0px 0px 0px 3px black;
    color: black;
    background: rgba(0, 0, 0, 0.05);
  }
  
    .watchBtn:hover{
    box-shadow: inset 0px 0px 0px 3px #0170D9;
    background: rgba(1, 112, 217, 0.10);
  }




  .btnClear:hover{
    background: rgb(255, 255, 255, 0.2);
    transition: all ease .3s;
    border-radius: 4px;
    padding: .3em .5em;
  }

  .playButton:hover{
    background: white;
    transition: all 0.3s ease;
  }
  
  .footerLink:hover, .finePrint{
    color: white;
    opacity: 1;
    text-decoration: none;  
}
  
}


/* disable TEAM MEMBER MODAL */

.team-popup{
 display: none !important; 
}

.view-button{
  visibility: hidden !important;
}

 
/* VIDEO */


/* The Modal (background) */
.modal {
  display: none; 
    position: fixed; /* Stay in place */
    z-index: 99; /* Sit on top */
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,1); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    display:flex;
    flex-direction: column;
    position: relative;
    background-color: #000000;
    margin: auto;
    width: 100%;
    height: 100%;
    -webkit-animation-name: videofade;
    -webkit-animation-duration: 0.4s;
    animation-name: videofade;
    animation-duration: 0.4s
  }
  
  /* Add Animation */
  @-webkit-keyframes videofade {
    from {opacity:0}
    to {opacity:1}
  }
  
  @keyframes videofade {
    from {opacity:0}
    to {opacity:1}
  }
  
  /* The Close Button */
  .close {
    opacity: 0.6;
  }
  

  
  .modal-header {
   display: flex;
    justify-content: flex-end;
  padding: 1em;
    height: 50px;
  }
  
  .modal-body {
    
   flex-grow: 1;
  
    display: flex;
      align-items: center;
    
  }
  
  
  .modalVideo{
    width: 100%;
  }


/* CAROUSEL */
.glider__viewport {
  position: relative;
  display: flex;
  width: 100vw;
  margin: 0 auto;
  overflow: hidden;
}
.glider {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: center;
  font-size: 0;
}
.glider__slides,
.glider__slides--dupe {
  display: flex;
  will-change: transform;
  animation-duration: 50s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.glider__slides {
  animation-name: glider_one;
}
.glider__slides--dupe {
  animation-name: glider_two;
}
@keyframes glider_one {
  0% {
    transform: translateX(0%);
  }
  25% {
    transform: translateX(-50%);
  }
  25.01% {
    transform: translateX(150%);
  }
}
@keyframes glider_two {
  0% {
    transform: translateX(0%);
  }
  75% {
    transform: translateX(-150%);
  }
  75.01% {
    transform: translateX(50%);
  }
}

.glider__slides img,
.glider__slides--dupe img{
  height: 250px;
}

.carouselAssetBound{
  overflow-x: hidden;
}

.partner{
  flex: 0 0 25%;
}

.partner img{
  display: block;
  width: 100%;;
}


.sidePadding{
  padding-left: 20px;
  padding-right: 20px;
}


/* TYPOGRAPHY */


h1{
  font-weight: 600;
  font-size: 60px;
  margin-bottom: 0;
  line-height: 100%;
}

h2{
  font-weight: 600;
  font-size: 48px;
  line-height: 113%;
  margin: 0 0 .4em 0;

}

h3{
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    margin-top: 0;
}

h4{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: .3em;
}


#industryCol{
    max-width: 1440px;
    margin:0 auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
}


.textAlignLeft{
  text-align: left;
}


/* MOB ALIGNMENT */
@media (min-width: 300px) and (max-width: 640px){

    .mobTextAlignCentre{
      text-align: center;
    }

    .mobFlexAlignCentre{
      align-self: center !important;
     }
  
}

.textAlignCentre{
  text-align: center;
}

.genericList{
  list-style-type: disc;
}

/* NAV */

#visibleNav{
  top: 0;
  left: 0;
  position: fixed;
  transition: all 0.4s ease;
}


/* SHOW HIDE NAV */
.hide {
  opacity: 0;
  transition: all 0.4s ease;
}



/* TERMS AND CONDITIONS */
.conditions-text-block {
  max-width: 1440px;
  margin: 0 auto;
  padding: 7em 24px 2em 24px;
}

.conditions-text-block p{
  margin-bottom: 2.5em;
}

.conditions-text-block H2{
  margin-bottom: 1em;
}

.conditions-text-block H3{
  margin-bottom: 0.5em;
}



body.hidden-scrolling{
	overflow-y: hidden;
}
*{
	margin:0;
	box-sizing: border-box;
}
.navContainer{
	max-width: 1440px;
	margin:auto;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}
/*header*/
.header{
	position: fixed;
	width: 100%;
	left:0;
	top:0;
	z-index: 99;
  transition: transform 0.3s ease-in-out;
}
.header-main{
	background-color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-radius: 0 0 8px 8px;
  height: 90px;
}

.logo{
  line-height: 15px;
  margin-left: 20px;
  width: 60px;
}

.header .nav-menu{
	padding: 0 20px;
}
.header .menu > .menu-item{
	display: inline-block;

	position: relative;
}
.header .menu > .menu-item > a{
	display: block;
	padding: 12px 0;
	font-size: 24px;
	text-transform: capitalize;
	font-weight: 600;
  margin-left: 30px;
	transition: all 0.3s ease;
}


.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
	color: #0170D9;
}
.header .menu > .menu-item > .sub-menu{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 360px;
	position: absolute;
	left:0;
	top: 130%;
	background-color: #ffffff;
	padding: 10px 0;
	transform: translateY(-20px);
	transition: all 0.3s ease;
	opacity:0;
	visibility: hidden;
  border-radius: 8px;
}

@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
 }

}
.header .menu > .menu-item > .sub-menu > .menu-item{
	display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
	display: block;
	padding: 10px 20px;
	font-size: 24px;
	font-weight: 600;
	color: #000000;
	transition: all 0.3s ease;
	text-transform: capitalize;
}
.header .open-nav-menu{
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.header .open-nav-menu span{
	display: block;
	height: 3px;
	width: 24px;
	background-color: #000000;
    position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
	content: '';
	position: absolute;
	left:0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	box-sizing: border-box;
}
.header .open-nav-menu span:before{
	top:-7px;
}
.header .open-nav-menu span:after{
	top:7px;
}
.header .close-nav-menu{
	height: 40px;
	width: 40px;
	background-color: #ffffff;
	margin:0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}
.header .close-nav-menu img{
	width: 16px;
}
.header .menu-overlay{
	position: fixed;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity:0;
	transition: all 0.3s ease;
}






#contactBtn{
  color: #FFFFFF !important;
  background: #0170D9;
  border-radius: 4px;
    height: 50px;
  padding: 0 1em;
  margin-left: 8px;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
}

.primaryBtn{
  color: #FFFFFF !important;
  background: #0170D9;
  border-radius: 4px;
    height: 50px;
  padding: 0 1em;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
 
}



#loginBtn{
  box-shadow: inset 0px 0px 0px 1px black;
  border-radius: 4px;
  padding: 0 1em;
  text-align: left;
  line-height: 50px;
  gap: 10px;
  font-size: 18px;
}





#loginBtn img{
  margin-right: .5em;
}

a { color: inherit; } 



@media(max-width: 991px){
  
  #hideLogin{
  display:none;
}
  
	.header .menu-overlay.active{
	visibility: visible;
	opacity: 1;
}
	.header .nav-menu{
		position: fixed;
		right: -320px;
		visibility: hidden;
		width: 320px;
		height: 100%;
		top:0;
		overflow-y: auto;
		background-color: white;
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.3s ease;
    
	}
	.header .nav-menu.open{
		visibility: visible;
		right: 0px;
	}
	.header .menu > .menu-item{
		display: block;
		margin:0;
    padding: 0 1em;
	}
	.header .menu > .menu-item-has-children > a{
		display: flex;
		justify-content: space-between;
		align-items: center;
    
	}
	.header .menu > .menu-item > a{
		padding: 12px 0px;
		border-top: 1px solid #333333;
    margin-left: 0;
	}
	.header .menu > .menu-item:first-child > a{
	    border-top: 1px solid #333333;	
	}
	
	
	.header .menu > .menu-item > .sub-menu{
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top:auto;
		max-height: 0;
		overflow: hidden;
	}
	.header .menu > .menu-item > .sub-menu > .menu-item > a{
		padding: 12px 0 12px 1em;
    font-weight: 500;

	}
	.header .close-nav-menu,
	.header .open-nav-menu{
		display: flex;
	}
  
  #cross{
    width: 24px;
    
  }
  
  
  #contactBtn{
    margin-left: 0;
    border-top: 0;
    margin-top: 1em;
  }
  
  .header-main{
    height: 70px;
  }
  
  .logo{
    width: 40px;
  }
}

/* END NAV */

.contactWrapper{
  width: 100%;
  display: flex;
  flex-direction: row;
  padding-bottom: 0;
  margin: 2em 0;
}

.contactDetailsHalf{
  width: 50%;
  height: auto;
  display: flex;
  justify-content: flex-end;
  order: 1;
}


.formBlock{
  padding: 0 1em;
  height: auto;
  width: 720px;
  order: 2;
}

.contactDetails{
  width: 720px;
  padding: 2em;
  height: auto;
  display:flex;
  flex-direction: column;
}

.contactDetails p{
  margin-bottom: 3em;
}

.contactDetails img{
  width: 36px;
}

.link{
  color: #0170D9;
  text-decoration: underline;
  cursor: pointer;
}

.test{
  background: #ED4A1C;
  width: 500px;
  height: 100px;
}

#esgHero{
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/esgHero.jpg');
  background-size: cover;
  background-position: center;
  }


#techstrip{
        width: 100%;
        background: black;
        color: white;
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 4em 0;
        overflow-x: hidden;
      }

      .centredWrapper{
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 4em 6em 0em 6em;
      }

#turntableImg{
  width: 50%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  order: 1;
}

#turntableImg img{
  width: 100%;
  max-width: 720px;
}

#rapidtext{
  order: 2;
}

.roundedHalfImg{
object-fit: contain;
}



/* WORM */

.wormWrapper{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#worm{
  z-index: 1;
  width: 100%;

}

#wormMob{
  z-index: 1;
  width: 100%;
}

#compellingStatement{
  text-align: center;
  z-index: 2;
  font-size: 48px;
  position: absolute;
  color: white;
}




@media screen and (min-width: 900px) {
  
  #compellingStatement{
     padding: 0 5em; 
  }
  
  #wormMob{
      display: none;
  }
  
    #worm{
      display: block;
  }
  
  
  
}


@media screen and (min-width: 700px) and (max-width: 899px) {
  
  #compellingStatement{
     padding: 0 3em; 
  }
  

  #wormMob{
      display: none;
  }
  
    #worm{
      display: block;
  }

}

@media screen and (max-width: 699px) {
  
  #compellingStatement{
     padding: 0 2em; 
     font-size: 28px;
    line-height: 1.3em;
  }
  
  #wormMob{
      display: block;
  }
  
    #worm{
      display: none;
  }

  
}

/* END WORM */


      /* TECH IMAGE CAROUSEL */

     @media screen and (max-width: 768px) {
    
    .slider {
      display: flex;
        margin: auto;
        width: 100%;
       justify-content: flex-end;
       overflow: hidden;
    }
      
      .productImgSlider {
        animation: scroll 20s linear infinite;
        display: flex;
    /* change width to the width of asset */
      width: 1442px;
    }
  
  
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
          /* change translateX to the width of asset */
            transform: translateX(1442px);
        }
    }

  }

  @media screen and (min-width: 769px) {
    .slider {
      display: flex;
        margin: auto;
        width: 100%;
       justify-content: flex-end;
       overflow: hidden;
    }
      
      .productImgSlider {
        animation: scroll 40s linear infinite;
        display: flex;
    /* change width to the width of asset */
      width: 2885px;
    }
  
  
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
 
            transform: translateX(2885px);
        }
    }

  }
      
      .imgStatement{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
      }

     #headtotoe{
      background: url(https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/uniform-zip-jacket.png);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center center;
      height: 100vh;
    }

    #compelling{
/*       background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 77.94%), linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/imgStatement.jpg); */
background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%), url(https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/imgStatement.jpg), lightgray 50% / cover no-repeat;      
background-repeat: no-repeat;
      background-size: cover;
      background-position: center center;
      height: 60vh;
    }

    #boostEsg{
      background: url(https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/treeBG.jpg);
      background-repeat: no-repeat;
      background-size: cover;
    }

    #boostEsg .imgStatementText{
      padding: 9em !important;
    }

    #boostEsg .imgStatementText button{
      margin-top: 1em;
    }



      .imgStatementText{
        text-align: center;
        color: white;
        margin: auto;
        padding: 20em 6em;
        max-width: 1440px;
      }


      .centredTextBlock{
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 1em 3em 1em;
      }

      .centredTextBlock h2{
        margin-bottom: .5em;
      }

      .esgStatement{
        font-size: 2em;
      }

      .marginBottom{
        margin-bottom: 3em!important;
      }

.paddingBottom{
  padding-bottom: 3em;
}


#contactHero{
background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/officeFront.jpg');
background-size: cover;
background-position: center;
}


#bookingHero{
background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('//8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/raw_assets/public/bodd_theme/images/booking-banner.png');
background-size: cover;
background-position: center;
}

#dataHero{
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/dataLeadershipHero.jpg');
  background-size: cover;
  background-position: center;
  }



      .secondaryHero{
        width: 100%;
      }

 

      .secondaryHeroText{
        margin: 0 auto;
        width: 80vw;
        height: auto;
        color: white;
        text-align: center;
        padding: 10em 0;
      }

      #companyHero{
        /* height: 90vh; */
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/teamworking.jpg');
background-size: cover;
background-position: center;
      }




.contained{
max-width: 1440px;
display: flex;
margin: 0 auto;
flex-direction: row;
}



.textgroupFull{
    margin: 0 auto;
    padding: 8em 8em 2em 8em;
    text-align: center;
    gap: 1em;
    max-width: 1440px;
}

    



  .tileButton{
    margin: 20px;
  }

.greyGroup{
    width: 100%;
    text-align: center;
    background: #EBE9E1;
    padding-top: 3em;
    padding-bottom: 1em;
    overflow-x: hidden;
}

.carouselAssetHolder{
  width: 100%;
  text-align: center;
  overflow-x: hidden;
}

.testimonials{
    width: 100%;
}



#testiTitleGroup{
    text-align: left;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

#testiTitleGroup > img {
  width: 60px;
}


.quote{
    font-size: 38px;
    margin-bottom: 1em;
}

#quoteGroup{
    flex: 65%;
    display:flex;
    flex-direction: column;
    padding: 0 2em;
    border-left: 1px solid #000000;
}

#testimonialWrapper{
    max-width: 1440px;
    margin: 0 auto;
    padding: 4em 0;
    display: flex;
}

#quoterGroup{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
}

#quoteLogo{
    width: 80px;
    height: 40px;
    
}

#quoterText{
    display:flex;
    flex-direction: column;
}


.heroHeading{
    font-size: 60px;
    font-weight: 600;
    color: white;
    text-align: center;
    width: auto;
    padding: 0 .2em;
    margin-bottom: .3em;
}







/* VIDEO HOLDER */

.homeHeroVideoholder{
      width: 100%;
  background: black;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  justify-content: center;
    align-items: flex-end;
    height: 100vh;
  }
  
  .homeHeading{
  color: white;
  display: flex;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  max-width: 1000px;
  padding: 0 2em 7em 2em;
}

@media screen and (min-width: 768px) {
  
  .industryHero{
    width: 100%;
     z-index: 1;
     color: white;
     opacity: .5;
   display: flex;

 }


 .industryHeading{
  color: white;
  display: flex;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;

}


 .videoHolder{
  width: 100%;
  background: black;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  justify-content: center;
  align-items: center;
}
  
    
  

}

@media screen and (max-width: 767px) {
  
  .industryHero{
    height: 70vh;
     z-index: 1;
     color: white;
     opacity: .5;
   display: flex;

 }


 .industryHeading{
  color: white;
  display: flex;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  padding: 0 2em;
}



 .videoHolder{
  width: 100%;
  background: black;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  justify-content: center;
  align-items: center;
}

}



/* UNIFORM LOGO HOLDER */
.logoHolder {
    display: flex;
    width 100%;
    flex-direction: row;
    justify-content: center;
    background: black;
    gap: 3em;
    padding: 3em 1em;
}

@media only screen and (max-width: 750px) {
      .logoHolder {
        flex-direction: column;
        margin: 0 auto;
        align-items: center;

      }
}



.fullwidth{
  width: 100%;
}

.doubleImgHolder{
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  flex-direction: row;
  justify-content: space-between;
}

.halfhalfImg, .specList{
  width: 49%;
}

.specList{
  /* background: orange; */
  padding: 0 20px;
}

.techIcon{
  width: 48px !important;
  height: 48px !important;;
  margin-right: 1em;
}

.techSpecRow{
  display: flex;
  flex-direction: row;
  padding: 1em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.specList p{
  padding-bottom: 2em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.paddingTopBottom{
  padding-top: 5em;
  padding-bottom: 5em;
}

.specText{

  display: flex;
  gap: .6em;
  flex-direction: column;
}

.specTitle{
font-weight: 600;
font-size: 14px;
line-height: 120%;
text-transform: uppercase;
}

.specValue{
font-weight: 500;
font-size: 16px;
line-height: 145%;
opacity: 0.7;
}

#boddHubImg{
  width: 100%;
  max-width: 720px;
  object-fit: contain;
}

.full{
  width: 100%;
  background:black;
  color: white;
  text-align: center;
}


#gradL{
  position: absolute;
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  height: 200px;
  width: 110px;
  top: 0;
  left: 0;
  z-index: 2;
}

#gradR{
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  height: 200px;
  width: 110px;
  top: 0;
  right: 0;
  z-index: 2;
}




/* TEXT IMG BLOCK */

.fullwrapper{
    width: 100%;
    display: flex;
flex-wrap: wrap;
  }
  
  .textWrapper{
    height:100%;
    width: 50%;
    display: flex;
  }
  



  .textRight{
    justify-content: flex-start;
    order: 2;
  }
  
  .textLeft{
    justify-content: flex-end;
    order: 1;
  }
  
  .imgRight{
    order: 2;
  }

  .imgLeft{
    order: 1;

  }

  .imgHalf{
    width: 50%;
  }


  
  .imgHalf img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .containedImg{
    width: 50%;
    padding: 1em;
    position: relative;
  }

  .containedLeft{
    display: flex;
    justify-content: flex-end;
  }

    #uniformStats{
    padding: 4em 1em 1em 1em;
    width: 100%;
      max-width: 720px;
    }

    #omnichannel{
      padding: 4em 3em 1em 1em;
      width: 100%;
        max-width: 800px;
      }
  
.containedImgLeft{
  width: 100%;
  max-width: 720px;
  padding: 3em 6em 3em 1em;
}

.containedImgRight{
  width: 100%;
  max-width: 720px;
  padding: 3em 0 3em 1em;
}


.textBlockHalf{
  display: flex;
  flex-direction: column;
  justify-content:center;
  width: 49%;
  padding: 0 1em;
}

.esgIcon {
  filter: invert(100%);
  width: 40px;
  height: 40px;
}


  .textblock{
    width: 720px;
    margin: 9em 4em;
    height: auto;
  }

  .textblock button{
    margin-top: .7em;
  }

  .textblockList{
    margin-top: 2em;
    list-style-type: disc;
  }

  .textblockList li{
    margin: 0 0 1em 1em;
  }

  .iconPoints{
    display: flex;
    flex-direction: column;
    gap: 1em;
  }

  .iconText{
    display: flex;
    flex-direction: row;

  }



  .iconText p{
    padding-top: .4em;
    margin-left: 1em;
    text-align: left;
  }


    
  #boschLogo{
    width: 13em;
    margin-bottom: 1em; 
  }
  
#boschSection{

    background: #ED4A1C;
    color: white;
    height: 100%;
}

/* FORM ELEMENTS */
input{
  border: 1px solid #81807C;
border-radius: 4px;
  height: 60px;
  width: 100%;
  font-size:20px;
  padding: 0 1em;
}

form label{
  margin-top: 2em;;
  font-weight: 400;
font-size: 14px;
}

select{
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  border: 1px solid #81807C;
  border-radius: 4px;
    height: 60px;
    width: 100%;
    font-size:20px;
    padding: 0 1em;

}

textarea{
  border: 1px solid #81807C;
border-radius: 4px;
  height: 150px;
  width: 100%;
  font-size:20px;
  font-family: Arial, Helvetica, sans-serif;
  padding: 1em !important;
      -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

form div{
  margin-bottom: 2em;
}


.hs-fieldtype-radio{
  margin-top: 2em;
}

form ul{
  margin-top: -2em !important;
   }

   hs-button primary large{
    width: 300px;
  }

.hs-form-radio-display{
display: flex;
flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: inherit;
  margin-top: 0px;
}

.multi-container{
padding-top: 2em;
}










/* ACCORDION */
 .tabs {
	display: flex;
	flex-wrap: wrap; 
  background: white;
  margin-top: 3em;
  box-shadow: inset 1px 0px 0px 0px GREY;
}

/* styles labels into rows */
.tabs label {
	order: initial;
   width: 100%;
	display: block;
    padding: .5em 32px;
	cursor: pointer;
    font-size: 24px;
    color: gray;
  font-weight: 600;
  
}

/* hidden unselected tabs */
.tab {
  order: initial;
  flex-grow: 1;
	width: 100%;
	display: none;
  box-shadow: inset 0px 0px 0px red;
  height: 100px;
  transition-property: all;
  transition-duration: 1s;
  padding: 0 32px 20px 32px;
  
}


.tab p{
  padding-top: .5em;
}
/* hides all circle inputs */
.tabs input[type="radio"] {
	display: none;
}

/* changes selected label style */
.tabs input[type="radio"]:checked + label {
    color: #000000;
  box-shadow: inset 4px 0px 0px #0170D9;
  transition: box-shadow 0.3s;
  padding: .5em 32px 0em 32px;
}

/* shows the selected tab */
.tabs input[type="radio"]:checked + label + .tab {
    
display: block;
  height: auto;
  box-shadow: inset 4px 0px 0px #0170D9;
}


.tabs label:hover{
  box-shadow: inset 4px 0px 0px black;
  transition: all 400ms ease;
  color: black;
}

/* FOOTER DESKTOP */

footer{
    width: 100%;
    background-color: #000000;
    padding: 3em 0;
    color: white;
}

.socialLinks{
  display: flex;
  flex-direction: row;
  gap: .7em;
  margin: 1.5em 0;
}


.logoCTA{
    display: flex;
    flex: 50%;

    flex-direction: column;
    gap: 1em;
    padding-left: 20px;
}

.footerLinks{

    flex: 50%;
    flex-direction: row;
    display: flex;
    gap: 4em;
    padding-left: 20px;
}

.footerLink, .finePrint a{
    color: white;
    opacity: .75;
    text-decoration: none;  
}



  .linkGroup{
    gap: .75em;
    display: flex;
    flex-direction: column;

  }

  .linkHeading{
    font-weight: 600;
  }

  #footerContact{
    font-size: 48px;
    font-weight: 600;
  }

  #footerContact img{
    height: 34px;
  }



/* INDUSTRY GRID*/

@media screen and (max-width: 767px) {
    #imgQuarterGroup{
      flex: 0;
      display: none;
    }

    #imgQuarterGroup > div{
      border-radius: 10px;
    }

    #UniformBottomL{
      background: url(https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/uniformHero.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      flex: 1;
    }

    #UniformBottomR{
      background: url(https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/uniform-grid-bottomR.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      flex: 0;
    }
  
      .industryImgHalf{
      display: flex;
      gap: 0em;
      height: 40vh;
      border-radius: 0;
    }
  
      .uniformGroup{
      display: flex;
      flex-direction: column-reverse;
      gap: 0em;
    }
  
      #UniformTopHalf{
      width: 100%;
        height: 40vh;
      object-fit: cover;
      border-radius: 10px 10px 0 0;
      flex: 1;
      background: url(https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/uniform-fire-suspender.png);
      background-repeat: no-repeat;
      background-size: cover;
  }
  
        #WellnessTopHalf{
      width: 100%;
      height: 40vh;
      object-fit: cover;
      border-radius: 10px 10px 0 0;
      background: url(https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/wellnessHero.jpg);
      background-repeat: no-repeat;
      background-size: cover;
  }
  
      .uniformTextBlock{
        text-align: center;
        background: #0170D9;
        border-radius: 0 0 10px 10px ;
        color: white;
        flex-direction: column;
        flex: 1;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center; 
        padding: 2em 0;
    }
  
      .wellnessTextBlock{
      text-align: center;
      background: #FFA0FF;
      padding:  2em;
      border-radius: 0 0 10px 10px ;
      color: white;
      flex-direction: column;
      height: auto;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
    .retailGroup{
  display: flex;
  flex-direction: column-reverse;
  }
  

  #retailTile{
    flex:100%;
    background: #FAA800;
    border-radius: 0px 0px 10px 10px;
    padding: 1.5em;
       color: white;
      text-align: center;
  }

  #retailGridImg{
    width: 100%;
    background: url(https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/retailHero.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center center;
    height: 40vh;
    margin:0;
    border-radius: 10px 10px 0px 0px ;

  }
  
  
  
  
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
    #imgQuarterGroup{
        flex: 0;
        display: none;
      }

    #imgQuarterGroup > div{
      border-radius: 10px;
    }

    #UniformBottomL{
      background: url(https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/uniform-grid-bottomL.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      flex: 1;
    }

    #UniformBottomR{
      background: url(https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/uniform-grid-bottomR.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      flex: 0;
    }
  
      .industryImgHalf{
      flex: 1;
      display: flex;
      border-radius: 10px;
      flex-direction: column;
      gap: 1em;
      height: 726px;
    }
  
      .uniformGroup{
      display: flex;
      flex-direction: row;
      gap: 1em;
    }
  
      #imgQuarterGroup{
      flex: 1;
      width: 100%; 
      display: flex;
      gap: 0em;
      border-radius: 10px;
    }
  
        .uniformTextBlock{
        text-align: center;
        background: #0170D9;
        border-radius: 10px ;
        color: white;
        flex-direction: column;
        flex: 1;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center; 
    }
  
        #UniformTopHalf{
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
        flex: 1;
        background: url(https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/uniform-fire-suspender.png);
        background-repeat: no-repeat;
        background-size: cover;
  }
  
          .wellnessTextBlock{
      text-align: center;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url(https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/wellnessHero.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      padding: 4em 2em;
      border-radius: 10px;
      color: white;
      flex-direction: column;
      height: auto;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
    #retailTile{
    flex:49%;
       height: 726px;
    background: #FAA800;
    border-radius: 10px;
    color: white;
      text-align: center;
    flex-direction: column;
    display: flex;
      justify-content: center;
      padding: 0 2em;
  }
  
    #retailGridImg{
    flex:49%;
    background: url(https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/retailHero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 726px;
    border-radius: 10px;

  }
  
    .retailGroup{
  display: flex;
  flex-direction: row;
      gap:1em;
  }
  
}

@media screen and (min-width: 1081px) {
  
    #imgQuarterGroup{
      flex: 1;
      width: 100%; 
      display: flex;
      flex-direction: row;
      gap: 1em;
      border-radius: 10px;
    }

    #imgQuarterGroup > div{
      border-radius: 10px;
    }

    #UniformBottomL{
      background: url(https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/uniform-grid-bottomL.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      flex: 1;
    }

    #UniformBottomR{
      background: url(https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/uniform-grid-bottomR.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      flex: 1;
    }
  
    .industryImgHalf{
      flex: 1;
      display: flex;
      border-radius: 10px;
      flex-direction: column;
      gap: 1em;
      height: 726px;
    }
    
    .uniformGroup{
      display: flex;
      flex-direction: row;
      gap: 1em;
    }
  
      .uniformTextBlock{
      text-align: center;
    background: #0170D9;
    border-radius: 10px;
    color: white;
    flex-direction: column;
    flex: 1;
    height: 726px;
    display: flex;
    justify-content: center;
    align-items: center;
        transition: all ease .3s;
        box-shadow: 0;
  }
  
    #retailTile{
    flex:49%;
       height: 726px;
    background: #FAA800;
    border-radius: 10px;
    color: white;
    flex-direction: column;
    display: flex;
      text-align: center;
      justify-content: center;
      padding: 0 2em;
              transition: all ease .3s;
        box-shadow: 0;
  }

  #retailGridImg{
    flex:49%;
    background: url(https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/retailHero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 726px;
    border-radius: 10px;

  }
  
  .retailGroup{
  display: flex;
  flex-direction: row;
    gap: 1em;
  }

  
        .wellnessTextBlock{
      text-align: center;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url(https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/wellnessHero.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      padding: 0 2em;
      border-radius: 10px;
      color: white;
      flex-direction: column;
      height: 726px;
      display: flex;
      justify-content: center;
      align-items: center;
        transition: all ease .3s;
        box-shadow: 0;
  }
  
  .uniformTextBlock:hover{
    box-shadow: -258px 0px 250px -110px rgba(255, 160, 255, 0.60) inset;
     transition: all ease .3s;
  }
  
    #retailTile:hover{
    box-shadow: -258px 0px 250px -110px rgba(255, 160, 255, 0.60) inset;
     transition: all ease .3s;
  }
  
   .wellnessTextBlock:hover{
box-shadow: -258px 0px 750px -110px rgba(255, 160, 255, 0.80) inset;
     transition: all ease .3s;
  }
  
    #UniformTopHalf{
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    flex: 1;
      background: url(https://8680048.fs1.hubspotusercontent-na1.net/hubfs/8680048/uniform-fire-suspender.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
  
}




.industryIcon{
  width: 48px;
  margin-bottom: 1em;
}




/*TABLET */
@media screen and (min-width: 641px) and (max-width: 900px)
{
  
  
h1{
  font-weight: 600;
  font-size: 42px;
  margin-bottom: 0;
}

h2{
  font-weight: 600;
  font-size: 30px;
  line-height: 113%;
  margin: 0 0 .4em 0;
}

h3{
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
}



label{
    font-size: 20px;
}






  /* IMG TEXT BLOCK TABLET */

  .fullwrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .textWrapper{
    height:auto;
    width: 100%;
    display: flex;
  }
  
  .textRight{
    justify-content: center;
    order: 2;
  }
  
  .textLeft{
    justify-content: center;
    order: 1;
  }
  
  .imgHalf{
    width: 100%;
    order: 2;
    margin: none;
  }

  
  .imgHalf img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
  }
  
  .textblock{
    width: 720px;
    margin: 3em;
    text-align: left;
    height: auto;
  }

 

  .textblock button{
    margin-top: .7em;
  }

    
  #boschLogo{
    width: 9em; 
  }

  .tabs{
    text-align: left;
  }

.containedImg{
  width: 100%;
  position: relative;
}

  #uniformStats{
    margin: 0;
position: static;
top: 0;
-ms-transform: translate(0, 0);
transform: translate(0, 0);
  width: 100%;
    max-width: 100%;
    padding: 1em;
  }


  .centredWrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 4em 2em 0em 2em;
  }

  #turntableImg{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    order: 1;
  }

  #rapidtext .textblock{
    text-align: center;
  }

}


 /* MOBILE */

 @media (min-width: 300px) and (max-width: 640px)
{


  /* TYPOGRAPHY */

  h1{
    font-weight: 600;
    font-size: 42px;
    margin-bottom: .3em;
    line-height: 110%;
  }

    h2{
        font-size: 32px;
        margin: 0 0 .4em 0;
    }

    h3{
      font-weight: 600;
      font-size: 18px;
      line-height: 150%;
  }

  .heroHeading{
    font-size: 42px;
    font-weight: 600;
    color: white;
    text-align: center;
    width: auto;
    padding: 0 .2em;
    margin-bottom: .3em;
}

.contactWrapper{
  flex-direction: column-reverse;
  margin: 2em 0;t
}


  .contactDetailsHalf{
    width: 100%;
    height: auto;

    display: flex;
    justify-content: flex-start;
    order: 2;
  }
  
  
  .formBlock{
    padding: 0 1em;
    height: auto;
    width: 100%;
    order: 1;
  }

 
  .imgStatementText{
    text-align: center;
    color: white;
    margin: auto;
    gap: 2em;
    padding: 10em 2em;
  }

  #boostEsg .imgStatementText{
    padding: 4em 2em !important;
  }

#boostEsg h2{
  margin-bottom: .7em;
}

#selfserveText{
  text-align: center;
}

  #companyHero{
    height: 50vh;
  }

  #headtotoe{
    height: 60vh;
  }
  

  

    #heroWrapper{
        flex-direction: column;

        align-items: flex-start;
    }



   #homehero{
       width: 100%;
       display: flex;
       padding: 110px 0 2em 0;
       height: auto;
   }
   
   .contained{
       width: 100%;
       display: flex;
       margin: 0 auto;
       flex-direction: column;
   }

   .halftext{
       flex: 0;
       display: flex;
       flex-direction: column;
       justify-content: normal;
   }




  .textgroupFull{
    margin: 0 auto;
    padding: 2em;
    text-align: center;
    gap: 1em;
    max-width: 1440px;
}

.mobileMarginBottom{
  margin-bottom: 3em;
}


.doubleImgHolder, .specList{
  display: flex;
  width: 100%;
  flex-direction: column;

}


.halfhalfImg, .specList{
  width: 100%;
  margin-bottom: 1em;
}

.centredWrapper{
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 4em 20px 0em 20px;
}

.textBlockHalf{
  margin-top: 1em;
  text-align: left;
  width: 100%;
}

.textBlockHalf h2{
  text-align: left !important;
  margin-bottom: .5em;
}



.roundedHalfImg{

  object-fit: contain;
}

/* TESTIMONIALS MOB*/

.testimonials{
    width: 100%;
    padding: 3em 0;
  text-align: center;
}


#testiTitleGroup, #testiTitleGroup img{
    margin: 0 auto;
  text-align: center;
}

.quote{
    font-size: 24px;
  text-align: center;
}

#quoteGroup{
    flex: 65%;
    display:flex;
    flex-direction: column;
    padding: 1em 2em 0em 2em;
    border-left: 1px solid #000000;
  text-align: center;
}
  


#testimonialWrapper{
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
  


#quoterGroup{
    background: light#0170D9;
    display:flex;
    flex-direction: column;
    justify-content: space-between;

}

#quoteLogo{
    width: 80px;
    height: 40px;
    margin: 0 auto;
}

#quoterText{
    display:flex;
    flex-direction: column;
  text-align: center;
}

/* TEXT IMG BLOCK MOB */

.fullwrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .textWrapper{
    height:auto;
    width: 100%;
    display: flex;
  }
  
  .textRight{
    justify-content: flex-start;
    order: 1;
  }
  
  .textLeft{
    justify-content: flex-end;
    order: 1;
  }
  
  .imgHalf{
    width: 100%;
    order: 2;
    margin: none;
  }

.columnReverse{
  flex-direction: column-reverse;
}

  .imgHalf img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
  }

  .containedLeft{
    order: 2;
  }
  
  .textblock{
    width: 720px;
    margin: 3em 20px;
    text-align: center;
    height: auto;
  }
   
  .textblock h2, .textblock p{
    margin-bottom: .7em;
  }

  #boschLogo{
    width: 9em; 
  }

  .tabs{
    text-align: left;
  }

  /* MOBILE VECTOR IMG */


  .containedImg{
    width: 100%;
    position: relative;
  }

    #uniformStats{
      margin: 0;
  position: static;
  top: 0;
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
    width: 100%;
      max-width: 100%;
      padding: 1em;
    }


/* END MOBILE VECTOR IMG */




/* FOOTER */
.footerLinks{
    gap: 2em;
    flex-direction: column;

}

}