@charset "utf-8";
body {
    font-family: "Poppins", sans-serif;
    color: #000000;
    font-weight: 300;
    margin: 0px;
    padding: 0px;
    font-size: 18px;
    line-height: 26px;
    background-color: #000000;
}
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */


/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	15;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}
.imgfade {
	opacity: 1.0;
	transition: opacity .2s ease-in-out;
	-moz-transition: opacity .2s ease-in-out;
	-webkit-transition: opacity .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out;
}
.imgfade:hover {
	opacity: 0.6;
	transition: opacity .2s ease-in-out;
	-moz-transition: opacity .2s ease-in-out;
	-webkit-transition: opacity .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    z-index: 0;
    border: 1px solid #eeeeee;
}
.video-container iframe, .video-container object, .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    z-index: 0;
    background-color: undefined;
}
.pink {
    background-color: #d06ba9;
}
.magentamid {
    background-color: #C94297;
}
.yellow {
    background-color: #e8c272;
}
.blue {
    background-color: #55b8c1;
}
.green {
    background-color: #2b6063;
}
.brown {
    background-color: #b48f84;
}
.silver {
    background-color: #566777;
}
.white {
	background-color: #FFF;
}
.black {
    background-color: #000000;
}
.grey {
    background-color: #172838;
}
.greylt {
    background-color: #F5F6F7;
}
.greylt2 {
    background-color: #EAEDEE;
}
.greylt3 {
    background-color: #233342;
}
.text-white {
	color: #FFF;
}
.link-white {
	color: #FFF;
	text-decoration: none;
}



.link-button-col1 {
    color: #000000;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    padding-top: 15px;
    padding-right: 25px;
    padding-bottom: 15px;
    padding-left: 25px;
    background-color: #FFFFFF;
    border-radius: 12px;
}
.link-button-col1:hover {
    background-color: #000000;
    color: #FFF;
}


.link-button-col2 {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    padding-top: 15px;
    padding-right: 25px;
    padding-bottom: 15px;
    padding-left: 25px;
    border-radius: 12px;
}
.link-button-col2:hover {
    background-color: #000000;
    color: #FFF;
}



.link-button {
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    padding-top: 15px;
    padding-right: 25px;
    padding-bottom: 15px;
    padding-left: 25px;
    border-radius: 12px;
}
.link-button:hover {
    background-color: #000000;
    color: #FFF;
}



.link-button-tel {
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    padding: 15px 25px;
    background-color: #b78a25;
    border-radius: 48px;
}

/* Insert the phone icon */
.link-button-tel::before {
    content: "";
    display: inline-block;
    width: 15px;     /* adjust to match your icon size */
    height: 18px;
    background-image: url('/images/button-tel.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px; /* spacing between icon + number */
    vertical-align: middle;
}

.link-button-tel:hover {
    background-color: #323d47;
    color: #FFF;
}






.link-button-white {
    color: #566777;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
    text-transform: none;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    cursor: pointer;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    transition: background-color 0.3s ease;
    background-color: #FFFFFF;
}
.link-button-white:hover {
    background-color: #000000;
    color: #FFFFFF;
}



 *::-webkit-input-placeholder {
 color: #666666;
}
*:-moz-placeholder {
    /* FF 4-18 */
    color: #666666;
}
*::-moz-placeholder {
    /* FF 19+ */
    color: #666666;
}
*:-ms-input-placeholder {
    /* IE 10+ */
    color: #666666;
}
.link-rotate {
	-webkit-transition: -webkit-transform .8s ease-out;
	-ms-transition: -ms-transform .8s ease-out;
	transition: transform .8s ease-out;
}
.link-rotate:hover {
	transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
}
.link-translate {
	-webkit-transition: -webkit-transform .8s ease-out;
	-ms-transition: -ms-transform .8s ease-out;
	transition: transform .8s ease-out;
}
.link-translate:hover {
	-ms-transform: translate(20px, 0px); /* IE 9 */
	-webkit-transform: translate(20px, 0px); /* Chrome, Safari, Opera */
	transform: translate(20px, 0px);
}
.link-scale {
	-webkit-transition: -webkit-transform .8s ease-out;
	-ms-transition: -ms-transform .8s ease-out;
	transition: transform .8s ease-out;
}
.link-scale:hover {
	-ms-transform: scale(1.1, 1.1); /* IE 9 */
	-webkit-transform: scale(1.1, 1.1); /* Chrome, Safari, Opera */
	transform: scale(1.1, 1.1);
}
.link-opacity {
	opacity: 1;
	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
}
.link-opacity:hover {
	opacity: 0.5;
}

.img-left {
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
}
.img-right {
	float: right;
	margin-bottom: 15px;
	margin-left: 15px;
}

.video-wrap {
	width: 60%;
	margin-right: 20%;
	margin-left: 20%;
}
.test {
    background-image: url(/images/bgd-logo-icon.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    margin-right: auto;
    margin-left: auto;
    background-color: #2a2a2a;
    background-attachment: fixed;
    border-color: #FF0004;
}


.overlay {
	background: transparent;
	position: relative;
	width: 100%;
	height: 460px; /* your iframe height */
	top: 460px;  /* your iframe height */
	margin-top: -460px;  /* your iframe height */
}




.back-to-top {
	background: none;
	margin-bottom: 20px;
	margin-right: 20px;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 70px;
	padding-top: 15px;
	padding-bottom: 15px;
	z-index: 100;
	display: none;
	text-decoration: none;
	text-align: center;
	color: #FFF;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	background-color: rgba(255,255,255,0.5);
}
.back-to-top:hover {
	background-color: rgba(0,0,0,1);
	-webkit-transition: background 0.2s linear;
	-moz-transition: background 0.2s linear;
	-ms-transition: background 0.2s linear;
	-o-transition: background 0.2s linear;
	transition: background 0.2s linear;
}


 .fade-in-move-up {
            opacity: 0;
            transform: translateY(20px); /* Start 20px below the final position */
            animation: fadeInMoveUpAnimation 2s forwards; /* Adjust the duration (2s) as needed */
        }

        @keyframes fadeInMoveUpAnimation {
            to {
                opacity: 1;
                transform: translateY(0); /* End at the final position */
            }
        }


 @-webkit-keyframes spin1 {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@-moz-keyframes spin1 {
0% {
-moz-transform: rotate(0deg);
}
100% {
-moz-transform: rotate(360deg);
}
}
@-o-keyframes spin1 {
0% {
-o-transform: rotate(0deg);
}
100% {
-o-transform: rotate(360deg);
}
}
@-ms-keyframes spin1 {
0% {
-ms-transform: rotate(0deg);
}
100% {
-ms-transform: rotate(360deg);
}
}
@-keyframes spin1 {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.spin {
	-webkit-animation: spin1 2s infinite linear;
	-moz-animation: spin1 2s infinite linear;
	-o-animation: spin1 2s infinite linear;
	-ms-animation: spin1 2s infinite linear;
	animation: spin1 2s infinite linear;
	display: block;
}
.showSingle {
	cursor: pointer;
}
.cnt {
}



**DESKTOP** {
}
h1 {
    font-size: 50px;
    font-weight: 600;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 55px;
    margin-left: 0px;
    padding: 0px;
    line-height: 58px;
    letter-spacing: -1px;
    text-transform: none;
}
h2 {
    font-size: 50px;
    font-weight: 600;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
    padding: 0px;
    line-height: 58px;
    text-transform: none;
    letter-spacing: -1px;
}

h3 {
    font-size: 36px;
    font-weight: 600;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    padding: 0px;
    line-height: 42px;
    text-transform: none;
}


h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    padding: 0px;
    margin-top: 0px;
    line-height: 30px;
}
h5 {
    font-size: 22px;
    margin: 0px;
    padding: 0px;
    line-height: 28px;
    font-weight: 600;
}
h6 {
    font-size: 18px;
    font-weight: 400;
    padding: 0px;
    line-height: 20px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
    text-transform: uppercase;
}
.gridContainer {
    width: 92%;
    max-width: 1200px;
    margin: auto;
    clear: none;
    float: none;
    padding-top: 0%;
    padding-right: 4%;
    padding-bottom: 0%;
    padding-left: 4%;
}
.gridContainerMobile {
    width: 96%;
    max-width: 1200px;
    margin: auto;
    clear: none;
    float: none;
    padding-top: 0%;
    padding-right: 2%;
    padding-bottom: 0%;
    padding-left: 2%;
}


.container_header{
  width:96%;
  margin:0;
  padding:20px 2%;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.0) 100%
  );
}

.header-logo {
    width: 275px;
    clear: none;
    padding: 0%;
    margin-top: 0px;
    margin-left: 0px;
    display: block;
    float: left;
}

.header-content {
    width: 60%;
    clear: none;
    padding: 0%;
    margin-top: 10px;
    margin-left: 0px;
    display: block;
    float: right;
    text-align: right;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    color: #FFFFFF;
}
.header-content a {
    color: #FFFFFF;
    font-weight: 500;
}

.header-content a:hover {
    color: #FFFFFF;
}

.container_banner{
    position: relative;
    width: 100%;
    min-height: 700px;
    overflow: hidden;
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner-video{
  position:absolute;
  right:0;
  bottom:0;

  width:100%;
  height:100%;

  object-fit:cover;
  object-position:right bottom;

  
  z-index:1;
}

/* Dark overlay for contrast 
.banner-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
}*/

/* Make sure the header include + banner content sit ABOVE the video */
.container_banner .container_header,
.container_banner .gridContainer,
.container_banner .banner-content{
  position:relative;
  z-index:2;
}

.banner-content {
    width: 100%;
    margin-top: 0;
    text-align: left;
    color: #fff;
    padding-top: 0px;
}

.banner-content-left {
    width: 55%;
    margin-right: 0%;
    float: left;
    padding-top: 80px;
}

.banner-content-left.content {
    padding-top: 80px;
    width: 55%;
    margin-right: 0%;
    float: left;
}

.banner-content-right {
    width: 45%;
    float: left;
}

.banner-content h4 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.banner-content h1 {
    font-size: 56px;
    line-height: 60px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.banner-content h6 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: none;
}





.container_banner_sub {
    width: 100%;
    min-height: 500px;
    background-position: right bottom;
    background-size: cover;
    background-repeat: no-repeat;
}



.banner-content-sub {
    width: 55%;
    margin-top: 0px;
    position: relative;
    text-align: left;
    color: #fff;
    padding-top: 30px;
}


.banner-content-sub h4 {
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.banner-content-sub h1 {
    font-size: 46px;
    line-height: 50px;
    font-weight: 500;
    margin-bottom: 25px;
    text-transform: none;
    letter-spacing: 0px;
}


.banner-content-sub h6 {
    display: block;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 0px;
    text-transform: none;
}




.container {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}


.container_intro {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: url(/images/intro-bgd.jpg);
    background-position: left center;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
}


.intro {
    width: 60%;
    clear: none;
    padding: 0%;
    float: left;
    margin-left: 40%;
}


.intro-columns1 {
    width: 100%;
    margin-bottom: 40px;
    float: left;
}
.intro-columns1.zerobm {
    margin-bottom: 0px;
}

.intro-columns2 {
    width: 44%;
    margin-right: 6%;
    clear: none;
    margin-top: 0px;
    margin-left: 0px;
    display: block;
    float: left;
    border-top: 1px solid #666666;
    padding-top: 20px;
}

.intro-columns2.last {
    margin-right: 0%;
    position: relative;
    width: 50%;
}


.intro-columns2 h2,
.intro-columns2 h3 {
    font-size: 26px;
    line-height: 30px;
    letter-spacing: -1px;
    margin-bottom: 30px;
}
.intro-columns2.full {
    width: 100%;
    margin-right: 0%;
    clear: none;
    margin-top: 0px;
    margin-left: 0px;
    display: block;
    float: left;
    border-top: 1px solid #666666;
    padding-top: 20px;
}


.intro-columns3 {
    width: 30%;
    margin-right: 5%;
    clear: none;
    margin-top: 0px;
    margin-left: 0px;
    display: block;
    float: left;
    border-top: 1px solid #666666;
    padding-top: 20px;
}

.intro-columns3.last {
    margin-right: 0%;
    position: relative;
    width: 30%;
}


.intro-columns3 h2,
.intro-columns3 h3 {
    font-size: 26px;
    line-height: 30px;
    letter-spacing: -1px;
    margin-bottom: 30px;
}


.expertise-columns1 {
    width: 25%;
    margin-right: 5%;
    float: left;
    clear: none;
}

.expertise-columns2 {
    width: 70%;
    clear: none;
    float: left;
}


.quotes {
    font-size: 20px;
    line-height: 28px;
}

.content {
	width: 100%;
	float: left;
}

.content li {
    clear: none;
    margin-left: -15px;
    list-style-image: url(/images/bullet.png);
    margin-bottom: 8px;
}
.content ul {
    margin-top: 0px;
    margin-bottom: 0px;

}

.columns-wrap {
    width: 100%;
    float: left;
}
.columns1 {
    width: 100%;
    float: left;
    margin-bottom: 40px;
}
.columns1-wrap {
    width: 100%;
    float: left;
    margin-bottom: 40px;
}
.columns1-wrap.zerobm {
    margin-bottom: 0px;
}


.columns1-special {
    width: 92%;
    float: left;
    padding-left: 4%;
    padding-top: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
    border-left: 1px solid #D16CAA;
}





.columns1-pad {
    width: 84%;
    float: left;
    margin-bottom: 40px;
    padding-left: 8%;
    padding-top: 8%;
    padding-right: 8%;
    padding-bottom: 8%;
}
.columns1.zerobm {
	margin-bottom: 0px;
}
.columns1 li {
	clear: none;
	margin-left: -10px;
	list-style-image: url(/images/bullet.png);
	margin-bottom: 8px;
}


.columns1_form {
	width: 100%;
	float: left;
	margin-bottom: 15px;
}

.columns2_form {
    width: 48.5%;
    margin-right: 3%;
    clear: none;
    padding: 0%;
    margin-top: 0px;
    margin-left: 0px;
    display: block;
    float: left;
    margin-bottom: 15px;
}

.columns2_form.last {
    margin-right: 0%;
    position: relative;
    width: 48.5%;
}

.columns2 {
    width: 45%;
    margin-right: 5%;
    clear: none;
    padding: 0%;
    margin-top: 0px;
    margin-left: 0px;
    display: block;
    float: left;
}

.columns2.last {
    margin-right: 0%;
    position: relative;
    width: 50%;
}



.columns2 img {
    display: block;
}
.columns2-text {
    width: 42%;
    margin-right: 0%;
    clear: none;
    padding-top: 4%;
    padding-right: 4%;
    padding-left: 4%;
    padding-bottom: 4%;
    margin-top: 0px;
    margin-left: 0px;
    display: block;
    float: left;
}
.columns2-center {
	width: 48.5%;
	margin-right: 3%;
	clear: none;
	padding: 0%;
	margin-bottom: 0px;
	margin-top: 0px;
	margin-left: 0px;
	display: block;
	float: left;
}


.columns2 ul {
    padding-top: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
	
}
.columns2 li {
    clear: none;
    margin-left: -15px;
    list-style-image: url(/images/bullet.png);
    margin-bottom: 5px;
}
.columns2 li.ticks  {
    clear: none;
    margin-left: -8px;
	list-style-image: url(/images/bullet-tick.png);
	margin-bottom: 12px;
}


.columns2-right {
    width: 48.5%;
    margin-right: 0%;
    clear: none;
    padding: 0%;
    margin-bottom: 0%;
    margin-top: 0px;
    margin-left: 0px;
    float: right;
    text-align: center;
}









.columns2-wide {
    width: 65%;
    clear: none;
    padding: 0%;
    float: left;
    margin-right: 4%;
}



.columns2-wide-sidebar {
    width: 26%;
    clear: none;
    float: left;
}


.columns2-callback {
    width: 48%;
    margin-right: 0%;
    clear: none;
    padding: 0%;
    margin-bottom: 0%;
    margin-top: 0px;
    margin-left: 0px;
    display: block;
    float: left;
    text-align: right;
}



.container_step {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: url(/images/intro-bgd2.png);
    background-position: left center;
    background-repeat: no-repeat;
}


.columns2-step {
    width: 45%;
    margin-right: 5%;
    clear: none;
    padding: 0%;
    margin-top: 0px;
    margin-left: 0px;
    display: block;
    float: right;
}





.columns-table {
    display: table;
    width: 100%;
    padding: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
}



.columns2-table {
    display: table;
    width: 100%;
    margin-bottom: 40px;
}

.columns2-table-cell {
    display: table-cell;
    width: 39%;
    position: relative;
    background-color: #FFFFFF;
    padding-left: 4%;
    padding-top: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
    border-left: 1px solid #D16CAA;
}

.columns2-table-cell.mid {
    display: table-cell;
    width: 6%;
    position: relative;
    background-color: #F5F6F7;
    padding-top: 0%;
    padding-right: 0%;
    padding-bottom: 0%;
    padding-left: 0%;
    border-left-width: 0px;
}


.columns2-table-cell ul {
	padding-top: 0px;
	padding-bottom: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}
.columns2-table-cell li {
    margin-left: -15px;
    list-style-image: url(/images/bullet_white.png);
}



.columns3 {
    width: 30%;
    margin-right: 5%;
    clear: none;
    float: left;
}
.columns3.last {
	margin-right: 0%;
    clear: none;
    float: left;
}
.columns3 img {
    margin-bottom: 10px;
}
.columns3 ul {
	clear: none;
	list-style-image: url(/images/bullet_tick-green.png);
	margin-top: 0px;
	padding-top: 0px;
}
.columns3 li {
	clear: none;
	margin-left: -10px;
	list-style-image: url(/images/bullet_tick-green.png);
	margin-bottom: 8px;
}



.columns3-table {
    display: table;
    width: 100%;
    margin-bottom: 40px;
}

.columns3-table-cell {
    display: table-cell;
    width: 22%;
    position: relative;
    background-color: #FFFFFF;
    padding-left: 4%;
    padding-top: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
    border-left: 1px solid #D16CAA;
}

.columns3-table-cell.mid {
    display: table-cell;
    width: 5%;
    position: relative;
    background-color: #F5F6F7;
    padding-top: 0%;
    padding-right: 0%;
    padding-bottom: 0%;
    padding-left: 0%;
    border-left-width: 0px;
}


.columns3-table-cell ul {
	padding-top: 0px;
	padding-bottom: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}
.columns3-table-cell li {
    margin-left: -15px;
    list-style-image: url(/images/bullet_white.png);
}



.container_teasers {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: url(/images/home-bgd.png);
    background-position: left top;
    background-size: cover;
    background-repeat: no-repeat;
}


.columns3-teasers {
    float: left;
    width: 30.333%;
    margin-right: 1.5%;
    margin-left: 1.5%;
    border: 1px solid #FFFFFF;
    box-sizing: border-box; /* Include padding and borders in width calculation */
    margin-bottom: 3%;
    background-color: rgba(255,255,255,0.1);
    color: #FFFFFF;
    min-height: 550px;
}
.columns3-teasers h4 {
    padding-left: 8%;
    padding-right: 4%;
    padding-top: 4%;   
}

.columns3-teasers p {
    padding-left: 8%;
    padding-right: 8%;
   
}
.columns3-teasers p.text  {
    min-height: 150px;
   
}

/* Remove the margin on the last child to avoid exceeding 100% */
.columns3-teasers:last-child {
    margin-right: 0;
}


.columns3-team {
    float: left;
    width: 30.333%;
    margin-right: 1.5%;
    margin-left: 1.5%;
    background-color: #F2F2F2;
    margin-bottom: 40px;
    padding-bottom: 40px;
    position: relative; /* required for overlay positioning */
}

/* Image */
.columns3-team img.js-bio-open {
    display: block;
    width: 100%;
    height: 260px;          /* fixed height for reliable overlay */
    object-fit: cover;
    margin-bottom: 20px;
    cursor: pointer;
}

/* Dark overlay */
.columns3-team:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 260px;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;   /* keeps image clickable */
    z-index: 1;
}

/* Plus icon */
.columns3-team:before {
    content: "+";
    position: absolute;
    top: 130px;             /* vertically centred in image */
    left: 50%;
    font-size: 52px;
    line-height: 1;
    color: #fff;
    font-weight: 300;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;   /* keeps image clickable */
    z-index: 2;             /* ABOVE overlay */
}

/* Hover state */
.columns3-team:hover:after,
.columns3-team:hover:before {
    opacity: 1;
}







.columns3-blog {
    width: 31.333%;
    clear: none;
    margin-right: 1%;
    float: left;
    margin-left: 1%;
}


.columns3-blog img {
    width: 100%;
    margin-bottom: 10px;
}



.columns-container {
    width: 100%; /* Full browser width */
    text-align: center; /* Center the inline-block elements */
}




.columns4 {
    width: 22%;
    float: left;
    clear: none;
    margin-right: 4%;
    padding-top: 2%;
}


.columns4.last {
    margin-right: 0%;
    margin-bottom: 0px;
    padding-right: 0px;
}



.columns4-table {
    display: table;
    width: 100%;
    padding: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 4%;
}


.columns4-table-cell {
    display: table-cell;
    position: relative;
    width: 17.50%;
    vertical-align: top;
	/*border-radius: 20px;*/
	padding-left: 3%;
    padding-top: 3%;
    padding-right: 3%;
    padding-bottom: 3%;
}


.columns4-table-cell h4 {
    min-height: 60px;

}



.columns4-table-cell.mid {
    position: relative;
    width: 2%;
    border-radius: 0px;
	padding-left: 0%;
    padding-top: 0%;
    padding-right: 0%;
    padding-bottom: 0%;

}
.columns4-team {
    width: 21%;
    float: left;
    clear: none;
    margin-right: 2%;
    margin-left: 2%;
    margin-bottom: 30px;
}
.columns4-team img {
    margin-bottom: 10px;
}



.container_footer {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 100px;
    background-repeat: repeat-x;
    display: block;
}




.footer {
    width: 100%;
    float: left;
    font-size: 16px;
    line-height: 18px;
    color: #FFFFFF;
}
.footer-col1 {
    width: 40%;
    float: left;
    clear: none;
    margin-right: 10%;
    line-height: 28px;
}


.footer-col2 {
    width: 50%;
    float: left;
    clear: none;
    padding-right: 0%;
}


.footer h5 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 18px;
}

.footer a {
    text-decoration: none;
    color: #999999;
}
.footer a:hover {
    color: #FFFFFF;
    text-decoration: none;
}


/*
==============================================
SlideInDown
==============================================
*/

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
	animation-duration: 1.1s;
	-webkit-animation-duration: 1.1s;
	animation-timing-function: ease-in-out;
	-webkit-animation-timing-function: ease-in-out;
	visibility: visible !important;
}
}
 @-webkit-keyframes slideInDown {
 0% {
 -webkit-transform: translate3d(0, -100%, 0);
 transform: translate3d(0, -100%, 0);
 visibility: visible;
}
 100% {
 -webkit-transform: translate3d(0, 0, 0);
 transform: translate3d(0, 0, 0);
}
}
 @keyframes slideInDown {
 0% {
 -webkit-transform: translate3d(0, -100%, 0);
 transform: translate3d(0, -100%, 0);
 visibility: visible;
}
 100% {
 -webkit-transform: translate3d(0, 0, 0);
 transform: translate3d(0, 0, 0);
}
}
/*
==============================================
fadeIn
==============================================
*/

.fadeIn {
	animation-name: fadeIn;
	-webkit-animation-name: fadeIn;
	animation-duration: 1.1s;
	-webkit-animation-duration: 1.1s;
	animation-timing-function: ease-in-out;
	-webkit-animation-timing-function: ease-in-out;
	visibility: visible !important;
}
 @keyframes fadeIn {
 0% {
 transform: scale(1);
 opacity: 0.0;
}
 100% {
 transform: scale(1);
 opacity: 1;
}
}
 @-webkit-keyframes fadeIn {
 0% {
 transform: scale(1);
 opacity: 0.0;
}
 100% {
 transform: scale(1);
 opacity: 1;
}
}





.text-center {
	text-align: center;
}
.text-center2 {
	text-align: center;
}


.hide-mobile {
	display: inline-block;
}
.hide-tablet {
	display: block;
}
.hide-desktop {
	display: none;
}
.hide-desktop-tablet {
	display: none;
}
.hide-tablet-mobile {
	display: block;
}
.hide-tabletsm-mobile {
    display: inline-block;
}


.form_text {
    font-family: 'Source Sans Pro', sans-serif;
    width: 92%;
    padding-right: 4%;
    padding-left: 4%;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0px;
    border: 0px solid #49A2DB;
    background-color: #FFFFFF;
    height: 60px;
    border-radius: 8px;
}
.form_textarea {
    font-family: 'Source Sans Pro', sans-serif;
    width: 94%;
    border: 0px solid #49A2DB;
    padding-top: 2%;
    padding-right: 4%;
    padding-bottom: 4%;
    padding-left: 2%;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0px;
    background-color: #FFFFFF;
    border-radius: 8px;
}

.form_select {
    font-family: 'Source Sans Pro', sans-serif;
    width: 100%;
    padding-right: 4%;
    padding-left: 4%;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: px;
    border: 0px solid #49A2DB;
    background-color: #FFFFFF;
    height: 60px;
    border-radius: 8px;
}

.columns1_form {
	width: 100%;
	float: left;
	margin-bottom: 15px;
}

.columns2_form {
    width: 48.5%;
    margin-right: 3%;
    clear: none;
    padding: 0%;
    margin-top: 0px;
    margin-left: 0px;
    display: block;
    float: left;
    margin-bottom: 15px;
}

.columns2_form.last {
    margin-right: 0%;
    position: relative;
    width: 48.5%;
}


.alert{
    padding: 18px 18px;
    border-radius: 0px;
    border: 1px solid;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 30px;
}
.alert-success{background:#ecfdf5; border-color:#a7f3d0; color:#065f46;}
.alert-error{background:#fef2f2; border-color:#fecaca; color:#7f1d1d;}	
	
/* Honeypot */
.hp-wrap {
    position: absolute;
    left: -999em;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Move/clip reCAPTCHA badge: bottom-left, hide blue box text */
.grecaptcha-badge{
  position: fixed !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 70px !important;     /* show icon + Privacy/Terms only */
  height: 60px !important;
  overflow: hidden !important;
  z-index: 1000 !important;
}

input[required],
textarea[required],
select[required] {
  background-color: #ffffff;
}




/* Tablet Layout: 1200px to 700px. Inherits styles from: Desktop Layout. */

@media only screen and (max-width: 1200px) {




**TABLET** {
}
	
h1 {
    font-size: 42px;
    line-height: 48px;
}
h2 {
    font-size: 40px;
    line-height: 34px;
}
    
    
h3 {
    font-size: 32px;
    line-height: 38px;
}    
    
  
    
h4 {
    font-size: 24px;
    line-height: 30px;
}
h5 {
    font-size: 20px;
    line-height: 26px;
}
h6 {
    font-size: 16px;
   line-height: 20px;
}
	
.gridContainer {
	width: 88%;
	clear: none;
	float: none;
	padding-right: 6%;
	padding-left: 6%;
	padding-top: 0px;
	padding-bottom: 0px;
}
.gridContainerMobile {
	width: 100%;
	clear: none;
	float: none;
	padding: 0px;
}
.zeroMargin_tablet {
	margin-left: 0;
}
	

.container_header {

}
	
	
		
	
.container_banner {
    min-height: 650px;
}		

.banner-content {
    width: 100%;
    margin-top: 0px;
}

    
.banner-content-left {
    width: 50%;
    margin-right: 5%;
    clear: none;
    margin-top: 0px;
    margin-left: 0px;
    float: left;
    padding-top: 100px;
}
    
    
.banner-content-left.content {
    padding-top: 100px;
    width: 60%;
}    

.banner-content-right {
    margin-right: 0%;
    width: 45%;
    clear: none;
    float: left;
}



.banner-content h4 {

}
.banner-content h1 {
    font-size: 42px;
    line-height: 46px;
}


.banner-content h6 {
    font-size: 18px;
    line-height: 22px;
}   
    
    
    
    
    
    

.banner-overlay {
    position: absolute;
    top: -20px;
    right: -160px;
    width: 640px;
    height: 666px;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}
    
    
.banner-content-sub {
    width: 75%;
}    


	
.container {
    padding-top: 60px;
    padding-bottom: 60px;

}
	
	
.container-fullwidth {
    width: 90%;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 5%;
    padding-right: 5%;
}	
	
	
.content {
    margin-top: 0%;
}
	
	
.columns2-table-cell {
	width: 45%;
	padding: 5%;
}
	
	
.container_step {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    background-position: left center;
    background-repeat: no-repeat;
    margin-right: 0px;
    position: relative; /* Position context for the overlay */
}

.columns2-step {
    width: 100%;
    margin-right: 5%;
    clear: none;
    padding: 0%;
    margin-top: 0px;
    margin-left: 0px;
    display: block;
    float: left;
    position: relative; /* Ensures it's above the overlay */
    z-index: 2; /* Makes sure the columns2-step is above the overlay */
}
	
	
	
	
	
	
	
.columns4-table-cell h4 {
    min-height: 80px;

}	
	
.hide-mobile {
	display: inline-block;
}	
	
.hide-tablet {
	display: none;
}
.hide-tablet-mobile {
	display: none;
}
.hide-tabletsm-mobile {
    display: inline-block;
}
	
	
}
	

    

	
    








/* Tablet Layout: 700px to 481px. Inherits styles from: Desktop Layout. */
@media only screen and (max-width: 800px) {
**TABLET SMALL** {
}
	
h1 {
    font-size: 38px;
    line-height: 44px;
}

    
h2 {
    font-size: 36px;
    line-height: 40px;
}
    
    
h3 {
    font-size: 28px;
    line-height: 32px;
}      
    
    
h4 {
    font-size: 24px;
    line-height: 30px;
}
h5 {
    font-size: 20px;
    line-height: 26px;
}
h6 {
    font-size: 16px;
   line-height: 20px;
}
	
	
.gridContainer {
    width: 84%;
    clear: none;
    float: none;
    padding-right: 8%;
    padding-left: 8%;
    padding-top: 0px;
    padding-bottom: 0px;
}
.gridContainerMobile {
	width: 100%;
	clear: none;
	float: none;
	padding: 0px;
}	
    
    
    
    
	
	
.container_header {
    position: relative;
    z-index: 5;
    padding-left: 4%;
    padding-right: 4%;
}

.header-logo {
    position: relative;
    z-index: 6;
    width: 200px;
}
    

    

.header-content {
    display: none;
    
}
    
       
    

.container_banner{
    position: relative; /* ensures overlay positions correctly */
    min-height: 500px;
  }

  .container_banner:after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: rgba(0,0,0,0.45); /* adjust strength */
    z-index: 2; /* above video */
    pointer-events:none; /* doesn't block clicks */
  }

  /* Make sure your content sits above the overlay */
  .container_banner .container_header,
  .container_banner .gridContainer,
  .container_banner .banner-content{
    position: relative;
    z-index: 3;
  }  
    

 .banner-content {
    padding-bottom: 50px;
    position: relative;
    z-index: 2;
}

    
.banner-content-left {
    width: 80%;
    margin-right: 0%;
    padding-top: 50px;
}
    
.banner-content-left.content {
    padding-top: 30px;
    width: 80%;
}    
    

.banner-content-right {
    margin-right: 0%;
    width: 100%;
    display: none;
}



.banner-content h4 {

}
.banner-content h1 {
    font-size: 38px;
    line-height: 42px;
}


.banner-content h6 {
    font-size: 18px;
    line-height: 22px;
}    
    
    


.banner-overlay {
    position: absolute;
    top: 150px;
    right: -200px;
    width: 500px;
    height: 520px;
}
    
    
    
.container_banner_sub {
    width: 100%;
    min-height: 400px;
}



.banner-content-sub {
    width: 100%;
}


.banner-content-sub h4 {

}

.banner-content-sub h5 {
    font-size: 38px;
    line-height: 44px;
    font-weight: 500;
}


.banner-content-sub h6 {

}    
    
	
.intro {
    width: 100%;
    margin-left: 0%;
}

.intro-columns1 {
    margin-bottom: 0px;
}    

.intro-columns2 {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 40px;
}

.intro-columns2.last {
    margin-right: 0%;
    width: 100%;
    padding-top: 20px;
}


.intro-columns2 h2,
.intro-columns2 h3 {
    font-size: 26px;
    line-height: 30px;
    letter-spacing: -1px;
    margin-bottom: 10px;
}
    
    
.intro-columns3 {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 40px;
}

.intro-columns3.last {
    margin-right: 0%;
    width: 100%;
    padding-top: 20px;
}


.intro-columns3 h2,
.intro-columns3 h3 {
    font-size: 26px;
    line-height: 30px;
    letter-spacing: -1px;
    margin-bottom: 10px;
}    
	
	
.container {
    padding-top: 40px;
    padding-bottom: 40px;
}
	
	
.container-fullwidth {
    width: 84%;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 8%;
    padding-right: 8%;
}	
		

	
	
.columns2 {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 40px;
}

.columns2.last {
    margin-right: 0%;
    position: relative;
    margin-bottom: 0px;
    width: 100%;
    float: left;
}
	
.columns2-wide {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 30px;
}
.columns2-wide-sidebar {
	width: 100%;
	margin: 0px;
}
	
	
.columns2-callback {
    width: 100%;
    float: left;
    text-align: left;
}
	
	
.columns2 ul {
    margin-top: 0px;
    margin-bottom: 0px;
	
}	

	
.columns2_form {
    width: 100%;
    margin-right: 0%;
    float: left;
}

.columns2_form.last {
    width: 100%;
    margin-right: 0%;
    float: left;
}	
	

.expertise-columns1 {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 0px;
}

.expertise-columns2 {
    width: 100%;
}	
	
.columns2-table-cell {
	display: block;
	width: 88%;
	padding-top: 6%;
	padding-right: 6%;
	padding-bottom: 6%;
	padding-left: 6%;
}
    
    
.columns2-table-cell.mid {
	display: block;
	width: 100%;
    height: 40px;
	padding-top: 0%;
	padding-right: 0%;
	padding-bottom: 0%;
	padding-left: 0%;
}   
    
.columns3-table-cell {
    display: block;
	width: 88%;
	padding-top: 6%;
	padding-right: 6%;
	padding-bottom: 6%;
	padding-left: 6%;
}

.columns3-table-cell.mid {
    display: block;
	width: 100%;
    height: 40px;
	padding-top: 0%;
	padding-right: 0%;
	padding-bottom: 0%;
	padding-left: 0%;
}    
	
    

.columns3 {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 40px;
}
.columns3.last {
	width: 100%;
    margin-right: 0%;
    margin-bottom: 0px;
}
    
    
.columns3-team {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 40px;
}    
	
	
	
.container_teasers {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: url(/images/home-bgd.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}


.columns3-teasers {
    float: left;
    width: 99%;
    margin-right: 0%;
    margin-left: 0%;
    border: 1px solid #FFFFFF;
    box-sizing: border-box; /* Include padding and borders in width calculation */
    margin-bottom: 40px;
}
	
.columns3-teasers img {
    width: 100%;
}	
	
.columns3-teasers h4 {
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 5%;   
}

.columns3-teasers p {
    padding-left: 5%;
    padding-right: 5%;
   
}
.columns3-teasers p.text  {
    min-height: 0px;
   
}

/* Remove the margin on the last child to avoid exceeding 100% */
.columns3-teasers:last-child {
    margin-right: 0;
}
	
	
	
.columns4-table {
	padding-bottom: 6%;
}

.columns4-table-cell {
    display: block;
    width: 83%;
    padding-top: 8%;
    padding-right: 8%;
    padding-bottom: 8%;
    padding-left: 8%;
}

.columns4-table-cell.mid {
    display: block;
    width: 100%;
    padding-top: 2%;
    padding-right: 0%;
    padding-left: 0%;
    padding-bottom: 2%;
}
	
	
.columns4-table-cell h4 {
    min-height: 0px;

}	
	
	

.columns5 {
    width: 100%;
    float: left;
    clear: none;
    margin-right: 0%;
    padding-top: 2%;
	margin-bottom: 40px;
}


.columns5.last {
    width: 100%;
	margin-right: 0%;
    margin-bottom: 0px;
    padding-right: 0px;
}	
	
	
.columns1-special {
    width: 88%;
    float: left;
    padding-left: 6%;
    padding-right: 6%;
    padding-top: 6%;
    padding-bottom: 6%;
}	
	
	
.footer-col1 {
    width: 100%;
    float: left;
    clear: none;
    margin-right: 0%;
    line-height: 28px;
    margin-bottom: 40px;
}


.footer-col2 {
    width: 100%;
    float: left;
    clear: none;
    padding-right: 0%;
}
	
	
.text-center {
	text-align: left;
}
.text-center2 {
	text-align: center;
}	
	
.columns2-enquiry {
    text-align: left;
    width: 100%;
    margin-top: 20px;
}
	
		

.hide-tabletsm-mobile {
	display: none;
}
	
	
.columns2_form {
    width: 100%;
    margin-right: 0%;
	margin-bottom: 15px;
}

.columns2_form.last {
    width: 100%;
}	
	
	
.form_text {

}
.form_textarea {
    width: 92%;
    padding-left: 4%;
}

.form_select {

}	
		
	
	
	
	
}	
	


    
 @media only screen and (max-width: 481px) {
**MOBILE** {
}
/* Mobile Layout: 480px and below. */
 

h1 {
    font-size: 34px;
    line-height: 38px;

}
h2 {

}
     
     
h3 {

}
    
     
h4 {

}
h5 {

}
h6 {

}
	 

.gridContainer {
    width: 80%;
    clear: none;
    float: none;
    padding-top: 0%;
    padding-right: 8%;
    padding-bottom: 0%;
    padding-left: 8%;
    margin-left: 0px;
}
.gridContainerMobile {
	width: 100%;
	padding: 0px;
}

     
.container_header {
    width: 86%;
    padding-left: 8%;
}     


		 
	 
.container_banner {
    background-position: center center;

}		 


.banner-content-left {
    width: 100%;
     padding-top: 20px;
}
     
.banner-content-left.content {
    padding-top: 0px;
    width: 100%;
}         
     

	 
.container_banner_sub {
}	 
	 
	 
.banner-content-sub {

}
     
     


.banner-content-sub h4 {

}

.banner-content-sub h5 {

}	 
	 
	 

.content {
	width: 100%;
	padding: 0%;
	margin: 0px;
}
.columns-wrap {
	margin-bottom: 0px;
}
.columns2 {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
}
	 
	 
.columns2-table-cell {
	width: 84%;
	padding-right: 8%;
	padding-left: 8%;
}
     
.columns3-table-cell {
	width: 84%;
	padding-right: 8%;
	padding-left: 8%;
}	     
	 
		 

.columns3 {
    clear: none;
    width: 100%;
}
     
     
 .athla-stack-table,
  .athla-stack-table tbody,
  .athla-stack-table tr,
  .athla-stack-table td{
    display:block;
    width:100% !important;
    box-sizing:border-box;
  }

  /* More comfortable padding on mobile */
  .athla-stack-table td{
    padding:18px 18px !important;
  }

  /* keep the header row as a single full-width bar */
  .athla-stack-table tr:first-child td{
    display:block;
    width:100% !important;
  }

  /* turn each pair into one “card-like” row */
  .athla-stack-table tr{
    margin:0 0 14px 0;
  }

  /* label cell styling */
  .athla-stack-table tr td:first-child{
    font-weight:700;
    padding-bottom:8px !important;
  }

  /* content cell spacing */
  .athla-stack-table tr td:last-child{
    padding-top:4px !important;
  }
     
	 
	 
	 
.hide-mobile {
	display: none;
}
.hide-tablet {
	display: block;
}
.hide-desktop {
	display: block;
}
.hide-tabletsm-mobile {
	display: none;
}
.hide-desktop-tablet {
	display: block;
}	
	 
	 
	 
}
