@import "websfontkit.css";
/* --------------------------------------
GLOBAL STYLES
-----------------------------------------*/
html{
    overflow-x: hidden;
    width: 100%;
}
body {
  font-size: 16px;
  font-family: 'AvenirBook';
  color: #002a3a;
  line-height: normal;
  background: #fff;
  overflow: hidden;
}
/* Other fixes*/
*,*:before,*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
}
ul, ol {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
}
h1 , h2, h3, h4, h5{
  margin: 0;
  padding: 0;
  font-weight: 400;
}
p{
  margin: 0;
  padding: 0;
}
a{
  color: #00b6c0;
}
a:hover{
  color: #f47521 !important;  
}
/* LINKS */
a{ }
a:hover{ text-decoration: none;}

a {text-decoration:none;}
a:hover {text-decoration:none; }
a:before,a:after { text-decoration:none;}
a:before,a:after,
a:hover:before,a:hover:after {text-decoration:none;}

/* IMG RESPONSIVE */
img{
  display: block;
  max-width: 100%;
  height: auto;
}
/* CONTAINER-FLUID */
.container-fluid{
  padding-right: 60px;
  padding-left: 60px;
}
.textindent{
  padding-left: 40px;
}
/* FORM */
/*---------------------------------------
FORM                 
-----------------------------------------*/
.form-control{
  background: #fff;
  color: #a0a0a0;
  font-size: 16px;
  box-shadow: none;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius:                    0px;
  -webkit-border-radius:            0px;
  -moz-border-radius:               0px;
}
.form-control::-moz-placeholder {
  color: #a0a0a0;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #a0a0a0;
}
.form-control::-webkit-input-placeholder {
  color: #a0a0a0;
}

.form-contact .btn{
  background: #0f613a;
  width: 100%;
  padding: 8px 30px;
  text-transform: uppercase;
  color: #fff;
  border-radius:                    0px;
  -webkit-border-radius:            0px;
  -moz-border-radius:               0px;
}
.form-group{
  padding-bottom: 0;
}
select{ 
   background: #efefef url(../images/bg_dropdown.gif) right 0 no-repeat !important;
   -webkit-appearance: none;
   -moz-appearance:    none;
   appearance:         none;   
   -webkit-border-radius: 0;  /* Safari 3-4, iOS 1-3.2, Android 1.6- */    
   -moz-border-radius: 0;  /* Firefox 1-3.6 */     
   border-radius: 0;  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
}

/*---------------------------------------
HEADER           
-----------------------------------------*/
header{
  background: url(../images/bg-header.png) right 0 no-repeat;
  background-size: 100% 300px;
  height: 300px;
  position: relative;
  z-index: 5000;
}
header .logo{
  position: absolute;
  top: 160px;
  left: 60px;
}
header .logo img{
  width: 400px;
  height: auto;
}
/* MENU */
#menu{
  position: relative;
  z-index: 6000;
  padding: 20px 20px 0 0;
  text-align: right;
}
#menu li{
  position: relative;
}
#menu li a {
  color: #fff;
  display: block;
  font-size: 16px;
}
/* first level */
#menu > li {
  display: inline-block;
  padding-bottom: 17px; /* space between dropdown */
}
#menu > li > a {
  font-size: 16px; 
  margin: 0 3px;
  padding: 0 18px 0 7px;
  border-right: 1px solid #fff;
}
#menu > li > a:hover{
  color: #ffa200;
}
#menu > li:last-child a {
  border-right: none;
}
#menu > li a img{
  width: 24px;
  height: auto;
  display: inline-block;
  transition: filter 0.3s ease; /* Smooth transition */
}
#menu > li a:hover img{
 filter: invert(59%) sepia(100%) saturate(1076%) hue-rotate(345deg) brightness(103%) contrast(101%);
}
/* second level */
#menu > li > ul {
  display: none;
  position: absolute;
  width: 860px;
  padding-top: 25px;
  text-align: left !important;
  right: 0;
}
#menu > li:nth-child(1) > ul,
#menu > li:nth-child(2) > ul {
  left: 0 !important;
}  
#menu > li:nth-child(3) > ul {
  left: -120px !important;
}  
#menu > li:nth-child(4) > ul {
  left: -320px !important;
}  
#menu > li:nth-child(5) > ul {
  left: -560px !important;
}  
#menu li ul > li{
  text-transform: none;
  padding: 5px;
  width: 50%; 
  background: #fff;
  position: relative;
}
#menu li ul > li ul{
  width: auto;
  padding-top: 10px;
  padding-left: 30px;
}
#menu li ul a {
  font-size: 16px;
  font-weight: 400;
  padding: 5px;
  color: #202020;
}
#menu > li:last-child > ul{  
  width: 380px;
}
#menu > li:last-child > ul li{
   width: 100%;
   margin: 0 auto;
  padding: 15px 10px;
}
#menu > li:last-child > ul li a{
   border-left: 2px solid #0099ba;
  padding-left: 15px;  
  margin-left: 20px;
}
body {
  position: relative; /* Ensure body acts as the positioning context */
}
#overlay {
  position: fixed; /* Fixed position to cover the entire viewport */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(72, 72, 72, 0.7); /* Dark gray overlay with 50% opacity */
            opacity: 0; /* Initially hidden */
            pointer-events: none; /* Allow clicks to go through the overlay */
            transition: opacity 0.3s ease; /* Smooth transition for opacity change */
            z-index: 1000;
        }
 #menu {
            position: relative; /* Ensure menu stays above the overlay */
            z-index: 2000; /* Ensure menu is above other content */
            opacity: 1; /* Ensure menu opacity is always 1 */
            transition: opacity 0.3s ease; /* Smooth transition for opacity change */
        }

.wrapperbanner{
  position: relative;
}
.bannersideimg{
  right: -50px;
  position: absolute;

}
.bannersideimg img{
  width: 100%;
  height: auto;
  max-width: 680px;
  position: relative;
  right: 0px;
  top: -20px;
}

/* parallax section */
.parallax-section {
    position: relative;
    height: 500px; /* Adjust height as needed */
    overflow: hidden;
}
.parallax-section div{
  background-repeat: no-repeat !important;
}

.parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-image: url('../images/parallax-example-1920.png'); /* Replace with your image URL */
    background-size: 100% auto;
    background-position: center left;
    background-attachment: fixed; /* This creates the parallax effect */
    z-index: -1; /* Ensure the image stays behind the content */
}
.parallax-image-elephant-resilience {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-image: url('../images/parallax-charity-build-long-term-resilience.png'); /* Replace with your image URL */
    background-size: 100% auto;
    background-position: center left;
    background-attachment: fixed; /* This creates the parallax effect */
    z-index: -1; /* Ensure the image stays behind the content */
}
.parallax-image-charts-volatility {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-image: url('../images/parallax-charity-high-versus-low-volatility-charts.png'); /* Replace with your image URL */
    background-size: 100% auto;
    background-position: center left;
    background-attachment: fixed; /* This creates the parallax effect */
    z-index: -1; /* Ensure the image stays behind the content */
}
.parallax-image-elephant {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-image: url('../images/parallax-elephant-building-a-legacy-1242088782.jpg'); /* Replace with your image URL */
    background-size: 100% auto;
    background-position: center left;
    background-attachment: fixed; /* This creates the parallax effect */
    z-index: -1; /* Ensure the image stays behind the content */
}
.parallax-image-healthcheck {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-image: url('../images/parallax-free-portfolio-healthcheck-offer.jpg'); /* Replace with your image URL */
    background-size: 100% auto;
    background-position: center left;
    background-attachment: fixed; /* This creates the parallax effect */
    z-index: -1; /* Ensure the image stays behind the content */
}
.parallax-image-healthcheck-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-image: url('../images/parallax-free-portfolio-healthcheck-offer-blue.jpg'); /* Replace with your image URL */
    background-size: 100% auto;
    background-position: center left;
    background-attachment: fixed; /* This creates the parallax effect */
    z-index: -1; /* Ensure the image stays behind the content */
}
.parallax-image-asset-health-check {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-color: #005979;
    background-image: url('../images/parallax-charity-asset-health-check-offer.png'); /* Replace with your image URL */
    background-size: 100% auto;
    background-position: left center;
    background-attachment: fixed; /* This creates the parallax effect */
    z-index: -1; /* Ensure the image stays behind the content */
}
.parallax-image-bitcoin-donations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-color: #005979;
    background-image: url('../images/parallax-charity-bitcoin-donations.png'); /* Replace with your image URL */
    background-size: 100% auto;
    background-position: left center;
    background-attachment: fixed; /* This creates the parallax effect */
    z-index: -1; /* Ensure the image stays behind the content */
}
.parallax-image-investment-approach {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-color: #005979;
    background-image: url('../images/parallax-investment-approach-edit.png'); /* Replace with your image URL */
    background-size: 100% auto;
    background-position: left center;
    background-attachment: fixed; /* This creates the parallax effect */
    z-index: -1; /* Ensure the image stays behind the content */
}
.parallax-image-charity-wrong-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-color: #005979;
    background-image: url('../images/parallax-charity-wrong-box-VI.png'); /* Replace with your image URL */
    background-size: 100% auto;
    background-position: left center;
    background-attachment: fixed; /* This creates the parallax effect */
    z-index: -1; /* Ensure the image stays behind the content */
}
.parallax-image-charity-better-legacy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-color: #005979;
    background-image: url('../images/parallax-charity-better-legacy.png'); /* Replace with your image URL */
    background-size: 100% auto;
    background-position: left center;
    background-attachment: fixed; /* This creates the parallax effect */
    z-index: -1; /* Ensure the image stays behind the content */
}
.parallax-image-pension-tip-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-color: #005979;
    background-image: url('../images/parallax-pension-administration-tip-top-condition.png'); /* Replace with your image URL */
    background-size: 100% auto;
    background-position: left center;
    background-attachment: fixed; /* This creates the parallax effect */
    z-index: -1; /* Ensure the image stays behind the content */
}

.parallax-image-pension-windup-process {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-color: #005979;
    background-image: url('../images/parallax-pension-windup-process.png'); /* Replace with your image URL */
    background-size: 100% auto;
    background-position: left center;
    background-attachment: fixed; /* This creates the parallax effect */
    z-index: -1; /* Ensure the image stays behind the content */
}
.parallax-image-pension-challenging-territory {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-color: #fff;
    background-image: url('../images/parallax-pensions-actuarial-challenging-territory.png'); /* Replace with your image URL */
    background-size: 100% auto;
    background-position: left center;
    background-attachment: fixed; /* This creates the parallax effect */
    z-index: -1; /* Ensure the image stays behind the content */
}


.parallax-image-pension-perfect-partner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-color: #fff;
    background-image: url('../images/parallax-charity-bear-peace-of-mind.png'); /* Replace with your image URL */
    background-size: 100% auto;
    background-position: left center;
    background-attachment: fixed; /* This creates the parallax effect */
    z-index: -1; /* Ensure the image stays behind the content */
}

.parallax-image-pensions-dashboard {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-color: #005979;
    background-image: url('../images/parallax-pensions-dashboard.png'); /* Replace with your image URL */
    background-size: 100% auto;
    background-position: left center;
    background-attachment: fixed; /* This creates the parallax effect */
    z-index: -1; /* Ensure the image stays behind the content */
}
.parallax-image-bitcoin {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-color: #005979;
    background-image: url('../images/parallax-bitcoin.png'); /* Replace with your image URL */
    background-size: 100% auto;
    background-position: left center;
    background-attachment: fixed; /* This creates the parallax effect */
    z-index: -1; /* Ensure the image stays behind the content */
}



/*---------------------------------------
BANNER          
-----------------------------------------*/
.banner{
  background: url(../images/bg-header-bottom.png) left bottom no-repeat;
  background-size: 100% 300px;
  min-height: 650px;
  padding-bottom: 180px;
  position: relative;
  z-index: 500;
}
.banner .textcol{
  min-height: 520px;
  padding-left: 40px;
}
.banner .photo{
  position: relative;
  z-index: -2;
}
.banner .photo img{
  width: 100%;
  height: auto;
  position: absolute;
  right: -50px;
  top: -240px;
  
}
.banner .photolow{
  position: relative;
  z-index: -2;
}
.banner .photolow img{
  width: 100%;
  height: auto;
  position: absolute;
  right: -50px;
  top: -180px;
  
}
.banner .photo1{
  position: relative;
}
.banner .photo1 img{
  width: 100%;
  height: auto;
  position: absolute;
  right: -50px;
  top: -240px;
}
.banner .photolow1{
  position: relative;
}
.banner .photolow1 img{
  width: 100%;
  height: auto;
  position: absolute;
  right: -50px;
  top: -160px;
}
.banner h1{
  font-size: 48px;
  color: #005064;
  padding-bottom: 20px;
}
.banner h2{
  font-size: 28px;
  color: #00b6c0;
  padding-bottom: 24px;
}
.banner h3{
  font-size: 24px;
  color: #005064;
  padding-bottom: 16px;
}
.banner h4{
  font-size: 20px;
  color: #005064;
  padding-bottom: 16px;
}
.banner p{
  font-size: 18px;
  color: #333434;
  font-family: 'AvenirBook';
  padding-bottom: 24px;
  line-height: 28px;
}
.banner p a{
  color: #00b6c0;
  position: relative;
}
.banner ul.links li{
  display: inline-block;
  padding: 0 10px 0 5px;
  font-size: 16px;
  font-family: 'AvenirBook';
}
.banner .bottom,
.subcontent .bottom{
  position: absolute;
  bottom: -10px;
  left: 60px;
  color: #fff;
}
.banner .bottom p,
.subcontent .bottom p,
.lntrans p{
  font-size: 18px;
   display: flex;
    align-items:center;
    gap: 10px; /* Adjust the space between the icon and text */
}
.banner .bottom a strong,
.banner .bottom a,
.subcontent .bottom a strong,
.subcontent .bottom a,
.lntrans a strong{
  color: #002a3a;
}
.subcontent .bottom p{
  
}
.subcontent .bottom p img,
.banner .bottom p img,
.lntrans p img{
  width: 40px;
  height: auto;

}
.subcontent .bottom p a{
  display: block;
  padding-right: 10px;
}
.banner .bottom a,
.subcontent .bottom a{
  color: #fff;
}
.lntrans a{
  color: #0099ba;
}
.banner .bottom img,
.subcontent .bottom img,
.lntrans img{
  width: 50px;
  height: auto;
  display: inline-block;
}
.banner .numbers p{
  padding-bottom: 10px;
}
.banner .numbers{
  padding-bottom: 20px;
}

.banner .numbers ul li{
  background: url(../images/bullet.gif) 0 6px no-repeat;
  background-size: 12px auto;
  color: #333434;
  font-size: 18px;
  line-height: 28px;
  border: none;
  display: block;
  padding-left: 35px;
  margin-bottom: 10px;
  font-family: 'AvenirBook';
}
.banner .numbers ul li a{
  color: #00b6c0;
}
.banner .iconcontent img{
  width: 60px;
  height: auto;
  display: inline-block;
  padding-right: 15px;
  margin-bottom: 10px;
}
.banner .iconcontent p{
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 18px;
}
.banner .iconcontent p a{
  color: #005064;
}

/*
.banner .breadcrumb{
  padding-bottom: 16px;
  margin-left: -7px;
}
.banner .breadcrumb ul li{
  font-size: 12px;
  display: inline-block;
  border: none;
  color: #919191;
}
.banner .breadcrumb ul li a{
  color: #919191;
}
.banner .breadcrumb ul li::after{
  content: '>';
}
.banner .breadcrumb ul li:last-child::after{
  content: '';
}
*/

/*---------------------------------------
VIDEOBLK       
-----------------------------------------*/
.videoblk{
  background: #002a3a;
  padding: 60px 0;
  color: #fff;
}
.videoblk h2{
  font-size: 48px;
  padding-bottom: 30px;
  padding: 0 0 30px 20px;
}
.videoblk h1{
  font-size: 60px;
  padding-bottom: 30px;
  padding: 0 0 30px 20px;
}
.videoblk  [class^="col-"] {
  padding: 0 30px;
}
.videoblk p{
  font-size: 18px;
  line-height: 25px;
color: #fff;
}
.videoblk a p span{
  color: #00b6c0;
}
.videoblk  [class^="col-"]  img{
  padding-bottom: 15px;
}
.videoblk .intro p{
  font-size: 38px;
  line-height: 52px;
  padding: 0 0 40px 20px;
}

/*---------------------------------------
VIDEOBLKSIX     
-----------------------------------------*/
.videoblksix{
  background: #002a3a;
  padding: 60px 0;
  color: #fff;
}
.videoblksix h2{
  font-size: 48px;
  padding: 0 0 30px 0;
}
.videoblksix  [class^="col-"] {
  padding: 0 10px;
}
.videoblksix p{
  font-size: 18px;
  line-height: 25px;
}
.videoblksix a p{
  color: #fff;
}
.videoblksix img{
  padding-bottom: 15px;
}
.videocontainer5{
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 logos per row */
  gap: 80px; /* Space between the logos */
  width: 100%; /* Adjust this width as needed */
}
.videocontainer5 .box {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
/*---------------------------------------
HIGHLIGHT      
-----------------------------------------*/
.highlight{
  margin: 0 40px 40px 0;
}
.highlight .wrapper{
  background: url(../images/icon-quotation-open.jpg) 0 20px no-repeat;
  background-size: auto 150px;
  min-height: 160px;
}
.highlight .wrapper .inside{
  padding: 30px 0 0 140px;
}
.highlight .wrapper .inside p{
  color: #084762;
  font-family: 'AvenirBook';
  font-size: 22px;
  line-height: 30px;
  padding-bottom: 15px;
}
.highlight .wrapper .inside em{
  font-family: 'TimesItalic';
  color: #084762;
}
.highlight .bottom{
  padding: 0 0 0 140px;
}
.highlight .bottom p{
  color: #00b6c0;
  font-size: 18px;
  font-family: 'AvenirBook';
  font-weight: 400;
}
.highlight .bottom p a{
  color: #00b6c0;
}
/*---------------------------------------
HIGHLIGHT SINGLE LINE  
-----------------------------------------*/
.highlightsingle{
  margin: 0 40px 40px 0;
}
.highlightsingle .wrapper{
  background: url(../images/icon-quotation-open.jpg) 0 20px no-repeat;
  background-size: auto 160px;
  min-height: 180px;
}
.highlightsingle .wrapper .inside{
  padding: 30px 0 0 140px;
}
.highlightsingle .wrapper .inside p{
  color: #084762;
  font-family: 'AvenirBook';
  font-size: 22px;
  line-height: 30px;
  padding-bottom: 15px;
}
.highlightsingle .wrapper .inside .action a{
  color: #00b6c0;
  font-family: 'AvenirBook';
  font-size: 18px;
  line-height: 20px;
  padding-bottom: 15px;
}
.highlightsingle .wrapper .inside em{
  font-family: 'TimesItalic';
  color: #084762;
}
.highlightsingle .bottom{
  padding: 0 0 0 140px;
}
.highlightsingle .bottom p{
  color: #00b6c0;
  font-size: 18px;
  font-family: 'AvenirBook';
  font-weight: 400;
}
.highlightsingle .bottom p a{
  color: #00b6c0;
}
/*---------------------------------------
HIGHLIGHT SWITCH   
-----------------------------------------*/

.highlightswitch{
  margin: 0 40px 40px 0;
}
.highlightswitch .wrapper{
  background: url(../images/icon-quotation-close.jpg) 0 0 no-repeat;
  background-size: auto 200px;
  margin-top: 10px;
  margin-right: 100px;
  padding: 20px 0 0 180px ;
}
.highlightswitch .wrapper .inside{
  padding: 30px 0 0 140px;
}
.highlightswitch .wrapper .inside p{
  color: #084762;
  font-family: 'AvenirBook';
  font-size: 22px;
  line-height: 30px;
  padding-bottom: 15px;
}
.highlightswitch .wrapper .inside em{
  font-family: 'TimesItalic';
  color: #084762;
}
.highlightswitch .bottom{
  padding: 0 0 0 140px;
}
.highlightswitch .bottom p{
  color: #00b6c0;
  font-size: 18px;
  font-family: 'AvenirBook';
  font-weight: 400;
}
.highlightswitch .bottom p a{
  color: #00b6c0;
}
/*---------------------------------------
SUBSECTION 
-----------------------------------------*/
.subsection .top{
  background: url(../images/bg-subheader-right.png) right 0 no-repeat;
  background-size: 100% 300px;
  height: 300px;
  position: relative;
  z-index: 2000;
}
.subsection .top.style2{
  background: url(../images/bg-subheader-left.png) left 0 no-repeat;
  background-size: 100% 300px;
  height: 300px;
  position: relative;
  z-index: 2000;
}
.subsection .top.style3{
  background: url(../images/bg-subheader-left-dark.png) 0 0 no-repeat;
  background-size: 100% 300px;
  height: 300px;
  position: relative;
  z-index: 2000;
}
.subsection .top h2{
  font-family: 'AvenirMedium';
  font-size: 48px;
  color: #fff;
  padding: 30px 30px 0 50px;
}
.subsection .content{
  position: relative;
  z-index: 1000;
  min-height: 500px;
}
.imgsec{
  position: absolute;
}

.subsection .content .textblk p{
  color: #0099ba;
  font-size: 30px;
  padding-bottom: 15px;
}
.subsection .content .textblk p a{
  font-size: 20px;
  font-family: 'AvenirBook';
  color: #f47521;
}

/* panel 1 */
.panel1.subsection .content{
  top: -200px;
  margin-bottom: -100px;
}
.panel1 .content{
  min-height: 520px;
}
.panel1 .imgsec{
  top: 0;
  left: 30px;
}
.panel1 .imgsec img{
  width: 400px;
  height: auto;
}
.panel1 .textblk{
  width: 100%;
  padding-top: 100px;
}

/* panel 2 */
.panel2.subsection .content{
  top: -180px;
  margin-bottom: -180px;
}
.panel2 .content{
  min-height: 650px;
}
.panel2 .imgsec{
  top: 150px;
  right: -60px;
}
.panel2 .imgsec img{
  width: 650px;
  height: auto;
}
.panel2 .textblk{
  width: 100%;
  padding-right: 650px;
}

/* panel 3 */
.panel3.subsection .content{
  top: -180px;
  margin-bottom: -180px;
}
.panel3 .content{
  min-height: 550px;
}
.panel3 .imgsec{
  top: 0;
  left: -60px;
}
.panel3 .imgsec img{
  width: 400px;
  height: auto;
}
.panel3 .textblk{
  width: 75%;
 padding-left: 375px;
}

/* panel 4 */
.panel4 .content{
  min-height: 380px;
  z-index: 2000;
}
.panel4 .imgsec{
  bottom: 0;
  left: -60px;
  z-index: 5000;
}
.panel4 .imgsec img{
  width: 630px;
  height: auto;
}
.panel4 .textblk{
  width: 80%;
  padding-left: 600px;
  margin-top: -80px;
}
.panel4.pullup .textblk{
  margin-top: -180px !important;
}
.panel4.pullup .imgsec img{
  margin: 0 auto !important;
  left: 0;
}

/* panel 5 */

.panel5 .content{
  min-height: 320px;
  z-index: 2000;
}
.panel5 .imgsec{
  bottom: 0;
  left: -50px;
  z-index: 5000;
}
.panel5 .imgsec img{
  width: 630px;
  height: auto;
}
.panel5 .textblk{
  width: 80%;
  padding-left: 580px;
}

/* panel 6 */
.panel6 .content{
  top: -190px;
  margin-bottom: -180px;
  z-index: 2000;
}
.panel6 .content{
  min-height: 520px;
}
.panel6 .imgsec{
  top: 0px;
  left: 0px;
  z-index: 5000;
}
.panel6 .imgsec img{
  width: 650px;
  height: auto;
}
.panel6 .textblk{
  width: 98%;
  padding-left: 650px;
}

/* panel 7 */
.panel7 .content{
  min-height: 320px;
  z-index: 2000;
}
.panel7 .imgsec{
  bottom: 0;
  z-index: 5000;
}
.panel7 .imgsec img{
  width: 630px;
  height: auto;
}
.panel7 .textblk{
  width: 98%;
  padding-left: 620px;
  padding-right: 100px;
}

/* panel 8 */
.panel8 .content{
  top: -220px;
  margin-bottom: -180px;
  z-index: 2000;
}
.panel8 .content{
  min-height: 480px;
}
.panel8 .imgsec{
  top: 0px;
  left: 0px;
  z-index: 5000;
}
.panel8 .imgsec img{
  width: 640px;
  height: auto;
}
.panel8 .textblk{
  width: 90%;
  padding-left: 650px;
  padding-right: 40px;
  padding-top: 80px;
}

/* panel 9 */
.panel9 .content{
  min-height: 380px;
  z-index: 2000;
}
.panel9 .imgsec{
  bottom: 0;
  left: -60px;
  z-index: 5000;
}
.panel9 .imgsec img{
  width: 630px;
  height: auto;
}
.panel9 .textblk{
  width: 90%;
  padding-left: 600px;
  margin-top: -80px;
}

/*---------------------------------------
ENQUIRYBLK
-----------------------------------------*/
.enquiryblk .colored{
  background: #00b6c0;
  padding: 15px 0;
}
.enquiryblk .space{
  background: #007891;
  padding: 10px;
}
.enquiryblk .colored p{
  color: #013448;
  font-size: 18px;
  padding: 5px 0;
}
.enquiryblk .colored p a{
  color: #002a3a;
}
.enquiryblk .bottom{
  padding-top: 30px;
  padding-bottom: 30px;
}
.enquiryblk .bottom h3{
  color: #0099ba;
  padding-bottom: 20px;
}
.enquiryblk .bottom p{
  color: #005064;
  padding-bottom: 20px;
}
.enquiryblk .bottom p.enquiryform{
  color: #005064;
  font-size: 14px;
  padding-bottom: 20px;
}
.enquiryblk .form .col-md-4{
  padding-right:  30px;
}
.enquiryblk .form p a{
  color: #005064;
}
.enquiryblk .btn-submit{
  background: #007891;
  padding: 10px;
  text-transform: uppercase;
  color: #fff !important;
  line-height: normal;
  font-weight: bold;
  display: block;
  width: 100%;
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  border: none !important;
}
.enquiryblk .btn-submit:hover{
  background: #005f6b;
  color: #ffa044 !important;
}

/*---------------------------------------
LOGOBLK
-----------------------------------------*/
.logoblk{
  background: #005064;
  padding: 50px 0;
}
.logoblk h3{
  color: #fff;
  font-size: 24px;
  font-family: 'AvenirBook';
  padding-bottom: 20px;
}
.scrolling-container {
  overflow: hidden;
  white-space: nowrap;
  height: 140px;
  padding: 30px 0;
  display: flex;
  align-items: center;
  position: relative;
}
.scrolling-content img{
  max-width: none !important;
}
.scrolling-content {
  display: flex;
  animation: scroll 20s linear infinite;
}
.scrolling-content a {
  padding-right: 120px;
  flex-shrink: 0;
  height: 140px;
}

.scrolling-content a img {
  height: 140px;
  width: auto;
  display: block;
}

/* Smooth scrolling animation */
@keyframes scroll {
  100% {
    transform: translateX(0);
  }
  0% {
    transform: translateX(-50%);
  }
}

/***---------------------------------------
SUBCONTENT
-----------------------------------------*/
.subcontent{
  padding: 0 0 30px 0;
  background: url(../images/bg-subcontent-bottom.jpg) 0 bottom no-repeat;
  background-size: 100% 400px;
  padding-bottom: 400px;
  min-height: 650px;
  position: relative;
  margin-bottom: 15px;
}
.subcontent h1{
  color: #084762;
  font-size: 48px;
  padding: 0 0 20px 0;
}
.subcontent h1 span{
  font-size: 20px;
  padding-bottom: 10px;
  display: block;
}
.subcontent h2{
  font-size: 28px;
  color: #00b6c0;
  padding-bottom: 24px;
}
.subcontent h3{
  font-size: 24px;
  color: #005064;
  padding-bottom: 20px;
}
.subcontent h4{
  font-size: 20px;
  color: #005064;
  padding-bottom: 20px;
}
.subcontent ul li{
  display: inline-block;
  font-size: 14px;
  color: #494849;
  border-right: 1px solid #494849;
}
.subcontent ul li a{
  padding: 0 12px 0 7px;
  color: #494849;
  font-family: 'AvenirBook';
}
.subcontent ul li a.active{
  color: #64bdc0;
}
.subcontent ul li:last-child{
  border-right: none;
}
.subcontent ul.years{
  margin-left: -7px;
  padding-bottom: 20px;
}
.subcontent ul.years li{
  font-size: 15px;
}
.subcontent ul.years li a{
  color: #225477;
   font-family: 'AvenirMedium';
}
.subcontent .topheader p{
  color: #00b6c0;
  font-size: 24px;
  line-height: 28px;
  padding-bottom: 24px;
}
.subcontent .misc p{
  color: #333434;
  font-family: 'AvenirBook';
  font-size: 18px;
  padding-bottom: 20px;
  line-height: 28px;
}
/* --------------------------------------
NEW DATE STYLE
-----------------------------------------*/
.subcontent .misc p.dateline{
  font-size: 16px;
  color: #084762;
  text-align: left;
  padding-bottom: 20px;
}
/* --------------------------------------
END NEW DATE STYLE
-----------------------------------------*/
.subcontent .misc p.caption{
  font-size: 10px;
  color: #084762;
  text-align: right;
  padding-bottom: 4px;
}
.subcontent .misc ul.links{
  margin-left: 0;
}
.subcontent .numbers p{
  padding-bottom: 10px;
}
.subcontent .numbers{
  padding-bottom: 30px;
}
.subcontent .numbers ul li{
  background: url(../images/bullet.gif) 0 6px no-repeat;
  background-size: 12px auto;
  color: #333434;
  font-size: 18px;
  line-height: 28px;
  border: none;
  display: block;
  padding-left: 40px;
  margin-bottom: 10px;
  font-family: 'AvenirBook';
}
.subcontent .numbers ul li a{
  color: #00b6c0;
}
.subcontent .bulletflush ul li{
  background: url(../images/bullet.gif) 0px 8px no-repeat;
  background-size: 10px auto;
  color: #333434;
  font-size: 18px;
  line-height: 28px;
  border: none;
  display: block;
  padding-left: 32px;
  margin-bottom: 20px;
  font-family: 'AvenirBook';
}
.subcontent .bulletflush ul li a{
  font-size: 18px;
  color: #00b6c0;
}
.subcontent .photosidetext{
  padding: 30px 0;
}
.subcontent .photosidetext .row{
  border-bottom: 1px solid #64bdc0;
  padding: 30px 0;
  margin: 0 5px;
}
.subcontent .photosidetext h3{
  font-size: 24px;
  padding-bottom: 18px;
}
.subcontent .photosidetext ul.date li,
.subcontent .photosidetext ul.date li a{
  color: #808384;
  margin-left: 0px;
}
.subcontent .photosidetext ul{
  margin-left: -5px;
  padding: 0 0 18px 0;
}
.subcontent .photosidetext ul li{
  display: inline-block;
  padding: 0 10px 0 5px;
  font-size: 12px;
  font-family: 'AvenirBook';
}
.subcontent .photosidetext ul.date li
.subcontent .photosidetext ul.date li a{
  border-right: 1px solid #808384; 
}
.subcontent .photosidetext p{
  color: #494849;
  font-family: 'AvenirBook';
  line-height: 30px;
  padding-bottom: 15px;
  font-size: 18px;
}
.subcontent .photosidetext img{
  padding-bottom: 15px;
}
ul.links{
  margin-left: -10px;
}
ul.links li{
  font-size: 16px;
  padding: 0;
  border-right: 1px solid #64bdc0; 
}
ul.links li a{
  color: #64bdc0;
  margin-left: -5px;
}
.subcontent .photosidetext ul li:last-child,
ul.links li:last-child{
  border-right: none;
}
.subcontent .bottom{
  bottom: 25px;
}
.subcontent .sideimg{
  position: absolute;
  right: -50px;
  top: -20px;
}
.subcontent .contactblk{
  padding: 40px 0;
}
.subcontent .contactblk h2{ 
  color: #00b6c0;
}
.subcontent .contactblk .form{
 padding: 40px 0;
}
.subcontent .contactblk .form img{
  width: auto;
  height: auto;
}
.subcontent .contactblk .form p,
.subcontent .contactblk .form p a{
  color: #9f9f9f;
}
.subcontent .contactblk .btn-submit{
  margin: 20px 0;
  border: none;
  background: none;
  color: #00b6c0;
  font-size: 20px;
}
.subcontent .contactblk .btn-submit span img{ 
  width: 40px;
  height: auto;
  display: inline-block;
}
.subcontent .iconcontent img{
  width: 60px;
  height: auto;
  display: inline-block;
  padding-right: 15px;
  margin-bottom: 10px;
}
.subcontent .iconcontent p{
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 18px;
}
.subcontent .iconcontent p a{
  color: #005064;
}
.breadcrumb{
  padding-bottom: 16px;
}
.breadcrumb ul li{
  font-size: 12px;
  display: inline-block;
  border: none;
  padding-right: 3px;
  color: #919191;
}
.breadcrumb ul li a{
  color: #919191;
  padding: 0 12px 0 5px;
  font-family: 'AvenirBook';
}
.breadcrumb ul li::after{
  content: '>';
}
.breadcrumb ul li:last-child::after{
  content: '';
}



/*---------------------------------------
SUBCONTENTTOP
-----------------------------------------*/
.subcontenttop{
  padding: 0 0 30px 0;
  background-size: 100% 400px;
  min-height: 240px;
  position: relative;
  margin-bottom: 15px;
}
.subcontenttop h1{
  color: #084762;
  font-size: 48px;
  padding: 0 0 20px 0;
}
.subcontenttop h1 span{
  font-size: 20px;
  padding-bottom: 10px;
  display: block;
}
.subcontenttop h2{
  font-size: 28px;
  color: #00b6c0;
  padding-bottom: 24px;
}
.subcontenttop h3{
  font-size: 24px;
  color: #00b6c0;
  padding-bottom: 20px;
}
.subcontenttop h4{
  font-size: 20px;
  color: #084762;
  padding-bottom: 20px;
}
.subcontenttop ul li{
  display: inline-block;
  font-size: 14px;
  color: #494849;
  border-right: 1px solid #494849;
}
.subcontenttop ul li a{
  padding: 0 12px 0 7px;
  color: #494849;
  font-family: 'AvenirBook';
}
.subcontenttop ul li a.active{
  color: #64bdc0;
}
.subcontenttop ul li:last-child{
  border-right: none;
}
.subcontenttop ul.years{
  margin-left: -7px;
  padding-bottom: 20px;
}
.subcontenttop ul.years li{
  font-size: 15px;
}
.subcontenttop ul.years li a{
  color: #225477;
   font-family: 'AvenirMedium';
}
.subcontenttop .topheader p{
  color: #00b6c0;
  font-size: 20px;
  line-height: 28px;
  padding-bottom: 24px;
}
.subcontenttop .misc p{
  color: #333434;
  font-family: 'AvenirBook';
  font-size: 18px;
  padding-bottom: 20px;
  line-height: 28px;
}
.subcontenttop .misc p.caption{
  font-size: 10px;
  color: #084762;
  text-align: right;
  padding-bottom: 4px;
}
.subcontenttop .numbers p{
  padding-bottom: 10px;
}
.subcontenttop .numbers{
  padding-bottom: 30px;
}
.subcontenttop .numbers ul li{
  background: url(../images/bullet.gif) 40px 3px no-repeat;
  background-size: 15px auto;
  color: #333434;
  font-size: 18px;
  line-height: 28px;
  border: none;
  display: block;
  padding-left: 80px;
  margin-bottom: 10px;
  font-family: 'AvenirBook';
}
.subcontenttop .numbers ul li a{
  color: #00b6c0;
}
.subcontenttop .bulletflush ul li{
  background: url(../images/bullet.gif) 0px 8px no-repeat;
  background-size: 10px auto;
  color: #333434;
  font-size: 18px;
  line-height: 28px;
  border: none;
  display: block;
  padding-left: 32px;
  margin-bottom: 20px;
  font-family: 'AvenirBook';
}
.subcontenttop .bulletflush ul li a{
  font-size: 18px;
  color: #00b6c0;
}
.subcontenttop .photosidetext{
  padding: 30px 0;
}
.subcontenttop .photosidetext .row{
  border-bottom: 1px solid #64bdc0;
  padding: 30px 0;
  margin: 0 5px;
}
.subcontenttop .photosidetext h3{
  font-size: 24px;
  padding-bottom: 18px;
}
.subcontenttop .photosidetext ul.date li,
.subcontenttop .photosidetext ul.date li a{
  color: #808384;
}
.subcontenttop .photosidetext ul{
  margin-left: -5px;
  padding: 0 0 18px 0;
}
.subcontenttop .photosidetext ul li{
  display: inline-block;
  padding: 0 10px 0 5px;
  font-size: 12px;
  font-family: 'AvenirBook';
}
.subcontenttop .photosidetext ul.date li{
  border-right: 1px solid #808384; 
}
.subcontenttop .photosidetext p{
  color: #494849;
  font-family: 'AvenirBook';
  line-height: 30px;
  padding-bottom: 15px;
  font-size: 18px;
}
.subcontenttop .photosidetext img{
  padding-bottom: 15px;
}
ul.links{
  margin-left: -10px;
}
ul.links li{
  font-size: 16px;
  padding: 0;
  border-right: 1px solid #64bdc0; 
}
ul.links li a{
  color: #64bdc0;
}
.subcontenttop .photosidetext ul li:last-child,
ul.links li:last-child{
  border-right: none;
}
.subcontenttop .bottom{
  bottom: 25px;
}
.subcontenttop .sideimg{
  position: absolute;
  right: -50px;
  top: -20px;
}
.subcontenttop .contactblk{
  padding: 40px 0;
}
.subcontenttop .contactblk h2{ 
  color: #00b6c0;
}
.subcontenttop .contactblk .form{
 padding: 40px 0;
}
.subcontenttop .contactblk .form img{
  width: auto;
  height: auto;
}
.subcontenttop .contactblk .form p,
.subcontenttop .contactblk .form p a{
  color: #9f9f9f;
}
.subcontenttop .contactblk .btn-submit{
  margin: 20px 0;
  border: none;
  background: none;
  color: #00b6c0;
  font-size: 20px;
}
.subcontenttop .contactblk .btn-submit span img{ 
  width: 40px;
  height: auto;
  display: inline-block;
}
.subcontenttop .iconcontent img{
  width: 60px;
  height: auto;
  display: inline-block;
  padding-right: 15px;
  margin-bottom: 10px;
}
.subcontenttop .iconcontent p{
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 18px;
}
.subcontenttop .iconcontent p a{
  color: #005064;
}
.breadcrumb{
  padding-bottom: 16px;
}
.breadcrumb ul li{
  font-size: 12px;
  display: inline-block;
  border: none;
  padding-right: 3px;
  color: #919191;
}
.breadcrumb ul li a{
  color: #919191;
  padding: 0 12px 0 5px;
  font-family: 'AvenirBook';
}
.breadcrumb ul li::after{
  content: '>';
}
.breadcrumb ul li:last-child::after{
  content: '';
}








/*---------------------------------------
PHOTOQUOTE
-----------------------------------------*/
.photoquote{
  padding: 40px 0 30px 0;
}
.photoquote .photo img{
  width: 300px;
  height: auto;
}
.photoquote .inside{
  background: url(../images/icon-quotation-open.jpg) right 0 no-repeat;
  background-size: auto 200px;
  padding: 80px 160px 0 0 ;
  min-height: 200px;
  margin-right: 180px;
}
.photoquote.switch .inside{
  background: url(../images/icon-quotation-open.jpg) 0 0 no-repeat;
  background-size: auto 200px;
  margin-top: 10px;
  margin-right: 100px;
  padding: 20px 0 0 180px ;
}
.photoquote.switchsml .inside{
  background: url(../images/icon-quotation-open.jpg) 0 0 no-repeat;
  background-size: auto 140px;
  margin-right: 100px;
  margin-top: -10px;
  margin-bottom: -60px;
  padding: 20px 0 0 120px ;
}
.photoquote .inside p{
  font-size: 22px;
  color: #084762;
  line-height: 30px;
  font-family: 'AvenirBook';
}
.photoquote .inside em{
  font-family: 'TimesItalic';
  color: #084762;
}
.photoquote .bottom{
  padding: 30px 0 0 0;
}
.photoquote .bottom p{
  color: #00b6c0;
  font-size: 18px;
  font-family: 'AvenirBook';
  font-weight: 400;
}
.photoquote .bottom p a{
  color: #00b6c0;
}
/*---------------------------------------
PANEL TEXT
-----------------------------------------*/
.paneltext{
  background: #003B4A;
  padding: 80px 0;
}
.paneltext p{
  font-size: 22px;
  font-family: 'AvenirBook';
  font-weight: 200;
  text-align: left;
  padding: 10px 0 100px 0;
  color: #fff;
}
.paneltext p:last-child{
  padding-bottom: 0;
}
.paneltext p a{
  color: #fff;
}
/*---------------------------------------
SIDEICON
-----------------------------------------*/
.sideicon a{
  background: url(../images/bg-sidecurve.png) right top no-repeat;
  background-size: 70% auto;
  border: 1px solid #4398bb;
  color: #005064;
  min-height: 150px;
  width: 100%;
  margin-bottom: 20px;
  font-size: 18px;
  display: inline-flex; /* Use flexbox for the <a> element */
  align-items: center;  
}
.sideicon a span{
   display: flex; /* Use flexbox for the <span> element */
    align-items: center; 
   padding-left: 20px;
}
.sideicon a span img{
  display: inline-block;
  width: 50px;
  margin-right: 10px;
}
/* SIDE */
.sideoverlap{
  position: relative;
  padding-left: 100px;
  top: -168px;
}
.sideoverlap .imgover{
  position: absolute;
  right: 20px;
  top: -193px;
}
.sideoverlap .imgover img{
  width: auto;
  height: 320px;
}
.sideoverlap .imgabove{
  position: absolute;
  right: 20px;
  top: -20px;
}
.sideoverlap .imgabove img{
  width: auto;
  height: 140px;
}
.borderbox{
  border: 1px solid #005064;
  margin-bottom: 40px;
}
.borderbox strong{
  padding: 15px;
  font-size: 22px;
  color: #005064;
  display: block;
}
.borderbox strong em{
  font-style: normal;
  width: 60%;
  display: block;
}
.borderbox a span{
  color: #fff;
}
.borderbox span{
  background: #009aba;
  padding: 5px 5px 5px 15px;
  display: block;
  font-size: 18px;
  border-top: 1px solid #005064;
}
.borderbox span em{
  background: url(../images/logo-cartwright-mnemonic.png) 0 center no-repeat;
  background-size: 25px auto;
  display: block;
  font-style: normal;
  padding: 5px 5px 0 30px;
}
.borderbox a:hover span{ color: #f47521 !important; }

.curvecolored{
  background: #005064 url(../images/bg-curve.png) right bottom no-repeat;
  background-size: 100% auto;
  position: relative;
  margin-bottom: 40px;
  min-height: 120px;
}

.curvecolored strong{
  font-size: 22px;
  display: block;
  width: 60%;
  padding: 15px 15px 50px 15px;
  color: #fff;
}
.curvecolored span{
  display: block;
  position: absolute;
  bottom: 10px;
  right: 5px;
  padding-left: 15px;
  color: #1f4660;
}
.noborderbox{
  margin-bottom: 20px;
  margin-left: 40px;
  font-size: 12px;
  font-family: 'AvenirBook';
  font-weight: 200;
}
.noborderbox img{
  padding-bottom: 16px;
}
.borderbox.colored strong{
  background: #009aba;
  color: #fff;
}
.borderbox.colored span{ 
  background-color: #005064;
}
.borderbox.colored strong em{
  width: 100%;
} 
/*---------------------------------------
TEAMVIDEOS
-----------------------------------------*/
.teamvideos{
  padding: 50px 0;
}
.teamvideos h3{
  color: #00b6c0;
  font-size: 24px;
  padding: 0 0 30px 0;
}
.videocontainer{
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 5 logos per row */
  gap: 80px; /* Space between the logos */
  width: 100%; /* Adjust this width as needed */
}
.videocontainer .box {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.videocontainer .box p{
  background: #084762;
  border-top: 2px solid #fff;
  padding: 20px;
}
.videocontainer .box a{
  color: #fff;
}
.videocontainer .box p span{
  display: block;
}
.linedcontent{
  border-top: 1px solid #00b6c0;
  border-bottom: 1px solid #00b6c0;
  padding: 40px 0;
  margin-bottom: 60px;
}
.linedcontent p{
  font-size: 36px !important;
  line-height: normal !important;
  color: #084762 !important;
  font-family: 'AvenirMedium' !important;
}
.linedcontent p a{
  font-size: 36px !important;
  line-height: normal !important;
  color: #084762 !important;
  font-family: 'AvenirMedium' !important;
}
.linedcontent a{
  font-size: 20px;
  font-family: 'AvenirBook' !important;
}
/*---------------------------------------
FOOTER
-----------------------------------------*/
footer{
  padding: 30px 0;
}
footer ul{
  padding-bottom: 40px;
  text-align: center;
}
footer ul > li {
  display: inline-block;
}
footer ul > li {
  font-size: 14px; 
  font-weight: 200; 
  color: #005064;
}
footer ul > li > a {
  font-size: 14px; 
  font-weight: 200; 
  margin: 0 3px;
  padding: 0 15px 0 4px;
  border-right: 1px solid #005064;
  color: #005064;
}
footer ul > li:last-child a {
  border-right: none;
}
footer ul > li > a:hover{
  color: #005064;
}
footer p{
  text-align: center;
  font-size: 14px; 
  padding-bottom: 20px;
}
footer p img{
  display: inline-block;
  width: 60px;
  padding-right: 10px;
}
/* Basic lightbox styling */
.lightbox {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Dark background */
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  background-color: #002a3a;
  padding: 50px;
  width: 80%;
  max-width: 600px;
  color: #ffff;
  font-size: 18px;
}
.lightbox-content h3{
  color: #ffff;
  font-size: 18px;
  text-transform: uppercase;
}
.lightbox-content p{
  border-top: none !important;
  padding: 0 !important;
  line-height: 25px;
  background-color: transparent !important;
}
.close-lightbox {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

.bannervideo{
  position: relative;
  top: -300px;
  z-index: 1000;
  margin-bottom: -300px;
}
.bannervideo video{
  width: 100%;
  height: 100%;
  min-height: 1200px;
  object-fit: cover;
}
.bannervideo .bgfilter {
  background: rgba(0, 57, 68, 0.5);
  background-size: 100% auto;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; 
}
.bannervideo .hero {
  position: absolute;
  top: 30%;
  left: 5%;
  right: 0;
  width: 100%;
  overflow: hidden;
}
.bannervideo .hero .hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.bannervideo .hero .hero-content h1{
  font-size: 80px;
  padding-bottom: 35px;
}
.bannervideo .hero .hero-content h1 span{
  padding-left: 60px;
  display: block;
}
.bannervideo .hero .hero-content p{ 
  color: #fff;
  font-size: 38px;
  width: 60%;
  padding-bottom: 30px;
}
.bottombg{
  background: url(../images/bg_subcontent_bottom.webp) center bottom no-repeat;
  position: relative;
  top: -650px;
  width: 100%;
  height: 650px;
  z-index: 3000;
  margin-bottom: -650px;
  background-size: 100% auto;
}
.stylevideopop{
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 40px;
}
.stylevideopop .box{
  display: block !important;
}
.stylevideopop div{
  position: relative;
}
.stylevideopop div img{
  width: 100%;
}
.stylevideopop div p{
  position: absolute;
  bottom: 0;
  background: rgba(0, 55, 68, 0.5) !Important;
  padding: 20px 20px 10px 20px;
  font-size: 20px !important;
  width: 100%;
  border-top: none !important;
}
.stylevideopop div p span{
  font-size: 25px;
  display: block;
  padding-bottom: 0;
  font-weight: bold;
  color: #fff;
}
.bgcolored{
  background: #00b7c0 url(../images/40-the-team-2025.webp) center bottom no-repeat;
  background-size: auto 760px;
  min-height: 900px;
  padding: 40px 0 800px 0;
  color: #fff;
}
.bgcolored h3{
  font-size: 80px;
  padding-bottom: 30px;
  padding-left: 30px;
}
.bgcolored .indent{
  padding-left: 40px;
  width: 90%;
}
.bgcolored .indent p{
  font-size: 38px;
  padding-bottom: 20px;
}


.bgdark{
  background: #023c4d url(../images/40-celebration-cartwright.webp) center bottom no-repeat;
  background-size: auto 1600px;
  min-height: 1580px;
  padding: 40px 0 200px 0;
  color: #fff;
}
.bgdark h3{
  font-size: 80px;
  padding-bottom: 30px;
  padding-left: 30px;
}
.bgdark .indent{
  padding-left: 40px;
  width: 90%;
}
.bgdark .indent p{
  font-size: 38px;
  padding-bottom: 20px;
}

.bgcrazy{
  background: #00b7c0 url(../images/40-crazy-paving-trim.webp) center bottom no-repeat;
  background-size: auto 1200px;
  min-height: 1200px;
  padding: 40px 0 1220px 0;
  color: #fff;
}
.bgcrazy h3{
  font-size: 80px;
  padding-bottom: 30px;
  padding-left: 30px;
}
.bgcrazy .indent{
  padding-left: 40px;
  width: 90%;
}
.bgcrazy .indent p{
  font-size: 38px;
  padding-bottom: 20px;
}

/* VIDEO POP UP */

#videoModal {
  z-index: 9000;
}

.modal-backdrop {
  z-index: 1990;
}

#videoModal .modal-content {
  background: #000;
  border: 0;
}

#videoModal iframe {
  width: 100%;
  height: 100%;
  display: block;
}
#videoModal video {
  width: 100%;
  display: block;
  height: auto;
}