:root
{
    --primaryColour: #22b0bd;
    --topBar: #22b0bd;
    --logoColour: #22b0bd;
    --menuText: #000000;
    --menuTextHover: #22b0bd;
    --buttonColour: #22b0bd;
	--buttonTextColour: #ffffff;
    --buttonHoverColour: #1a8a94;
    --buttonTextHoverColour: #ffffff;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: 'Lato', sans-serif;
	font-weight: 400;
}
a {
	color:#9c9c9d;
	text-decoration: none;
}
a:hover {
	color:#9c9c9d;
	text-decoration: underline;
}
.png-container {
  overflow: hidden;
}

/* .png-container img {  
  filter: drop-shadow(0px 100px 0 var(--logoColour));
  transform: translateY(-100px);
} */
.mobshift {
	margin-top:0px;
}
p {
	font-size:18px;
	line-height: 1.6em;
	color: #101f29;
}
h1,h2,h3,h4,h5 {
	font-weight: 700;
	font-family: 'Plus Jakarta Sans';
}
h1 {
	font-size: 8em;
}
h2 {
	font-size: 70px;
}
h3 {
	font-size: 40px;
}
h4 {
	font-size: 28px;
}
img {
	width: 100%;
}
h2 span {
	color:#f5af00;
}
#testimonials {
	width: 100%;
}
#testimonials__wrapper__dots ul li {
    font-size: 40px!important;
}

#testimonials__wrapper__dots ul li.slick-active {
    color: #9c9c9d!important;
}
#testimonials h2 {
        font-size: 30px !important;
    text-transform: uppercase;
}
#testimonials .testimonial-quote {
    font-size: 15px !important;
	color: #6e6e6e;
}
#testimonials .testimonial-author {
    font-size: 18px !important;
	color: #6e6e6e;
}
#testimonials .testimonial-author span {
	color: #f5af00;
}
#testimonials .testimonial {
	width:100%;
}
.team-img {
    width: 100%;
    aspect-ratio: 1/1;
    border: 10px solid #ffffff;
    background-size: cover!important;
    background-position: center!important;
    display: block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}
.member {
    background: #e7e7e7;
    padding: 2%;
    border: 7px solid white;
    border-radius: 20px;
}
.team-name {
    font-size: 20px;
    font-weight: 600;
    color: #9c9c9d;
    text-align: center;
    margin: 15px auto -6px;
}
.team-position {
    text-align: center;
    color: #f5af00;
    font-size: 18px;
    font-weight: 700;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
#testimonials__wrapper {
	padding: 20px;
	border-radius: 10px;
	background: #ebebeb;
	margin: 20px 0 -10px;
}
#testimonials__wrapper__dots ul {
    display: flex;
    justify-content: center;
    padding: 0;
}
timonials__wrapper__dots ul li.slick-active {
    color: #69a54c;
}

#testimonials__wrapper__dots ul li {
    list-style-type: none;
    padding: 10px;
    color: #c5c5c5;
    font-size: 24px;
}
.value_title {
	font-size: 1.2em;
    font-weight: 800;
}
.icon_set {
	padding: 20px 0;
    border-bottom: dotted 1px;
}
.wellbeing {
	min-height: 200px;
    border-radius: 20px;
    margin: 2px;
	padding:20px;
	margin-bottom: 10px;
}
.wellbeing h3 {
	color:white;
}
.wellbeing p {
	color:white;
}
.wb_red {
	background: #ff0000;
}
.wb_green {
	background: #6f9992;
}
.wb_light_blue {
	background: #00b0f0;
}
.wb_yellow {
	background: #ffc000;
}
.wb_purple {
	background: #ed28fc;
}
.wb_grey {
	background: #8497b0;
}
.wb_dark_blue {
	background: #203864;
}
.toggle,
[id^=drop] {
	display: none;
}
nav ul li ul li { padding: 1px; }

/* Background color change on Hover */
/*nav a:hover { 
	background-color: #000000; 
}*/

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-height" of "nav a" */
	top: 70px; 
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display: block;
    background: black;
    border-radius: 10px;
    padding: 10px 20px;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	min-width: 250px;
    float: inherit;
    display: flex;
    position: relative;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
	position: relative;
	top:-60px;
	/* has to be the same number as the "width" of "nav ul ul li" */ 
	left:170px; 
}

	
/* Change ' +' in order to change the Dropdown symbol */
li > a:after { content:  ' +'; }
li > a:only-child:after { content: ''; }

@media all and (max-width : 768px) {
	/*.toggle + a,
	.menu {
		display: none;
	}*/
	.toggle {
		display: block;
		background-color: #254441;
		padding:14px 20px;	
		color:#FFF;
		font-size:17px;
		text-decoration:none;
		border:none;
	}

	.toggle:hover {
		background-color: #000000;
	}

	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked + ul {
		display: block;
	}

	/* Change menu item's width to 100% */
	nav ul li {
		display: block;
		width: 100%;
		}

	nav ul ul .toggle,
	nav ul ul a {
		padding: 0 40px;
	}

	nav ul ul ul a {
		padding: 0 80px;
	}

	/*nav a:hover,
 	nav ul ul ul a {
		background-color: #000000;
	}*/
  
	nav ul li ul li .toggle,
	nav ul ul a,
  nav ul ul ul a{
		padding:14px 20px;	
		color:#FFF;
		font-size:17px; 
	}
  
  
	nav ul li ul li .toggle,
	nav ul ul a {
		/*background-color: #212121; */
	}

	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		color: #ffffff;
		/* has to be the same number as the "line-height" of "nav a" */
	}
	
	nav ul li:hover > ul {
        display: block;
        background: none;
        border-radius: 0px;
    }

	nav ul li ul li {
        padding: 10px 20px;
    }
	/* Hide menus on hover */
	/*nav ul ul li:hover > ul,
	nav ul li:hover > ul {
		display: none;
	}*/
		
	/* Fisrt Tier Dropdown */
	nav ul ul li {
		display: block;
		width: 100%;
	}

	nav ul ul ul li {
		position: static;
		/* has to be the same number as the "width" of "nav ul ul li" */ 

	}
}
@media all and (max-width : 330px) {

	nav ul li {
		display:block;
		width: 94%;
	}

}
.video-container {
  position: relative;
  width: 100%;

}
.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.subtitle {
	font-size: 26px;
}
.white {
	color:white;
}
header {
    width: 100%;
}
.tp_nav {
	display: flex;
}
.tp_nav iframe {
	height: 18px!important;
}
.cb-slideshow,
.cb-slideshow:after { 
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0; 
	padding: 0;
}
.cb-slideshow:after { 
    content: '';
    background: transparent url(../../images/pattern.png) repeat top left; 
}
.cb-slideshow li span { 
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
    animation: imageAnimation 30s linear infinite 0s; 
}
.cb-slideshow li div { 
    z-index: 1000;
    position: absolute;
    height: 90vH;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 10%;
    text-align: center;
    opacity: 0;
    color: #fff;
    animation: titleAnimation 30s linear infinite 0s; 
}
.cb-slideshow li div h3 { 
    font-size: 60px;
	text-align: center;
}

.cb-slideshow li:nth-child(1) span { 
    background-image: url("../../images/home_hero_1.jpg") 
}
.cb-slideshow li:nth-child(2) span { 
    background-image: url(../../images/home_hero_2.jpg);
    animation-delay: 8s; 
}
.cb-slideshow li:nth-child(3) span { 
    background-image: url(../../images/home_hero_3.jpg);
    animation-delay: 15s; 
}
.cb-slideshow li:nth-child(4) span { 
    background-image: url(../../images/home_hero_4.jpg);
    animation-delay: 23s; 
}


.cb-slideshow li:nth-child(2) div { 
    animation-delay: 8s; 
}
.cb-slideshow li:nth-child(3) div { 
    animation-delay: 15s; 
}
.cb-slideshow li:nth-child(4) div { 
    animation-delay: 23s; 
}

@keyframes imageAnimation { 
    0% { opacity: 0; animation-timing-function: ease-in; }
    8% { opacity: 1; animation-timing-function: ease-out; }
    17% { opacity: 1 }
    35% { opacity: 0 }
    100% { opacity: 0 }
}
@keyframes titleAnimation { 
    0% { opacity: 0 }
    8% { opacity: 1 }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}
.no-cssanimations .cb-slideshow li span{
	opacity: 1;
}
@media screen and (max-width: 1140px) { 
    .cb-slideshow li div h3 { font-size: 40px }
}
@media screen and (max-width: 600px) { 
    .cb-slideshow li div h3 { font-size: 30px }
}
#hero_home {
    min-height: 100vh;
    background-size: cover !important;
    background: black;
    margin-bottom: 0px !important;
    padding: 120px 0 80px !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
    display: flex;
    align-items: center;
}

/* Update video container styles for hero section */
#hero_home .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: rgba(0,0,0,0.2);
}

/* Adjust text colors and spacing */
#hero_home h1 {
    font-size: 3.5em;
    margin-bottom: 1rem;
}

@media(max-width: 768px) {
    #hero_home {
        padding: 100px 0 60px !important;
    }
    
    #hero_home h1 {
        font-size: 2.5em;
    }
    
    #hero_home .video-container {
        margin-top: 2rem;
    }
}

/* Add responsive adjustments */
@media(max-width: 991px) { /* lg breakpoint */
    #hero_home {
        padding: 160px 0 100px !important;
    }
    
    #hero_home h1 {
        font-size: 60px;
    }
}

@media(max-width: 1145px) {
    #hero_home {
        padding: 120px 0 80px !important;
        min-height: 100vh;
    }
    
    #hero_home h1 {
        font-size: 38px;
        margin-top: 0;
    }
    
    .headline {
        font-size: 20px;
    }
}

#hero_home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.headline {
	font-size: 23px;
    color: white;
    font-weight: 600;
}
.home-intro-left {
	background: var(--primaryColour);
    color: white;
    padding: 80px 70px;
    margin-top: -60px;
	background-image: url(../images/logo-background-ywe.png);
    background-repeat: no-repeat;
    background-position: 50% 90%;
    background-blend-mode: screen;
    background-size: 80% auto;
    /* Making the background image softer */
    filter: contrast(0.9);
}
.home-intro-left p {
	color:white;
}
.home-intro-right {
	margin-top: 60px;
    padding: 30px 60px;
}
#hiring {
	background: #000;
	color: white;
	padding: 20px 0;
}
#hiring img {
	width: unset!important;
}
#hiring p {
	color:white;
}
#hero_about {
	padding: 50px 0;
    height: 50vh;
    background: url('../../images/about_hero.jpg') no-repeat 50% 50%;
    background-size: cover;
}
#hero_blog {
	padding: 50px 0;
    height: 30vh;
    background: url('../../images/blog_hero.jpg') no-repeat 50% 50%;
    background-size: cover;
}
#hero_services {
	padding: 50px 0;
    height: 50vh;
    background: url('../../images/services_hero.jpg') no-repeat 50% 50%;
    background-size: cover;
}
@media(max-width: 1500px) {
    #hero_services h1 {
        font-size: 5em;
    }
}
#hero_contact {
    padding: 50px 0;
    height: 50vh;
    background: url('../../images/contact_hero.jpg') no-repeat 50% 50%;
    background-size: cover;
}
#mailsend {
	width:100%;
	background:#07a56b;
	padding:10px;
	color:white;
	font-size:1.3em;
	font-weight:bold;
	text-align:center;
	position:absolute;
	z-index:2000;
}
.contact-hero-filter {
	filter: brightness(0.7);
}
.contact-email {
	padding: 5px 0;
	font-size: 1.4em;
}
.contact-email a {
	color: #101f29;
}
.contact-email a:hover {
	text-decoration: none;
	color: #9c9c9d;
}
label {
	margin-top:15px;
	font-weight: bold;
}
#home_services {

}
#service {
	padding: 90px 0;
}
#blog_main {
	padding: 90px 0;
}
#blog_main h3 {
	margin: 10px 0;
}
#blog_main a {
	color: #101f29;
}
#blog_main a:hover {
	color: #9c9c9d;
	text-decoration: none;
}
.filter {
	font-size: 1.2em;
    background: white;
    color: #101f29;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 40px 0px;
	cursor: pointer;
}
.filter:hover {
	background: #101f29;
	color: white;
}
.selected {
	background: #101f29;
	color: white;
}
#home_blog {
	background: #242424 url('../images/9.png') !important;
    background-position: bottom right !important;
    background-repeat: no-repeat !important;
	padding: 90px 0;
}
.pricing-table {
	width: 100%;
    margin: auto;
    padding: 30px 0;
    background: #363636;
    box-shadow: 0px 0px 40px #000000;
	min-height: 915px;
    position: relative;
    padding-bottom: 20px;
}
.hosting-table {
	width: 100%;
    margin: auto;
    padding: 30px 0;
    background: #363636;
    box-shadow: 0px 0px 40px #000000;
	min-height: 680px;
}
.btn-link {
    font-weight: 400;
    color: #3e3e3e;
    background-color: transparent;
}
.btn-link:hover {
    text-decoration: none;
}
.purchase-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 20px;
    margin-top: 30px;
}
#home_mission {
	padding: 90px 0;
}
#home_social {
	padding: 90px 0;
}
#home_about {
	padding: 90px 0;
    min-height:600px;
    background: url('../../images/about_bg.jpg') no-repeat 50% 50%;
    background-size: cover;
}
#about_intro {
	padding: 90px 0 0;
}
#about_team {
	padding: 90px 0 0;
}
#about_reviews {
	padding: 90px 0 0;
}
#services_reviews {
	padding: 0px;
}
#about_team img {
	width: unset;
	margin: auto;
}
#about_team h3 span {
	font-weight: normal;
}
#about_social {
	padding: 0 0 90px;
}
#home_reviews {
	padding: 40px 0 90px;
}
#contact_social {
	padding: 90px 0;
}
#about_mission {
	padding: 90px 0;
}
#callback {
	background: #f5af00;
	padding: 50px;
}
footer {
	padding: 60px 0 30px;
    min-height:250px;
    background: black;
}
footer p {
	color:white;
}
footer a {
	color: white;
}
footer a:hover {
	color: #9c9c9d;
	text-decoration: none;
}
footer img {
	width:unset;
}
footer i {
  display: block;
  color: #fff;
}
footer i:hover {
	color: #9c9c9d;
}
.footer-number-container {
	display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 18px 0 0px;
} 
.footer-number {
	font-size: 30px;
	color: white;
	font-weight: 900;
}
.phn-icon {
	font-size: 24px;
	margin-right: 30px;
}
.hidden {
	display: none!important;
}
.reg {
	background: #e9e9e9;
    padding: 10px 20px 20px;
}
.desc {margin-top: 20px;}
.jt_top {
	color: #9c9c9d;
}
.blog-box {
	border: 1px solid #ddd;
    box-shadow: 0px 5px 7px -2px #ccc;
	height: 100%;
}
.blog-box:hover {
	box-shadow: none;
}
.blog-date {
	font-size:0.9em;
	color: #9c9c9d;
}
#blog__top_feature_img {
	width: 100%;
	min-height: 380px;
}
#blog__top_img {
	width: 100%;
	min-height: 200px;
}
.content {
    width: 94%;
    margin: 4em auto;
    font-size: 20px;
    line-height: 30px;
    text-align: justify;
}

.logo {
    line-height: 60px;
    position: fixed;
    float: left;
    margin: 6px 46px;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 2px;
}

nav {
    position: fixed;
    width: 100%;
    line-height: 60px;
	z-index: 1000;
}

nav ul {
    line-height: 78px;
    list-style: none;
    background: rgba(0, 0, 0, 0);
    overflow: hidden;
    color: #fff;
    padding: 0;
    text-align: right;
    margin: 0;
    padding-right: 40px;
    transition: 1s;
}

nav.black, nav.black ul {
    background: var(--topBar);
}

nav ul li {
    display: inline-block;
    padding: 16px 25px;;
}

nav ul li a {
    text-decoration: none;
    color: var(--menuText);
    font-size: 18px;
    font-weight: 600;
	
}
nav ul li a:hover {
	text-decoration: none;
	color: var(--menuTextHover);
}
#service_hero {
	padding: 40px 0;
    height: 40vh;
}
.menu-icon {
    line-height: 60px;
    width: 100%;
    background: #101f29;
    text-align: right;
    box-sizing: border-box;
    padding: 15px 24px;
    cursor: pointer;
    color: #fff !important;
    display: none;
}
.text-link i {
	font-weight: bold;
	color: #101f29;
}
.text-link a {
	font-weight: bold;
	color: #101f29;
}
.text-link i a {
	font-weight: bold;
	color: #101f29;
}
.text-link a:hover {
	text-decoration: none;
	color: #9c9c9d;
}
.text-link i:hover {
	text-decoration: none;
	color: #9c9c9d;
}
.bb {
	border-bottom:1px solid white;
}

@media(max-width: 1145px) {

    .logo {
          position: fixed;
          top: 0;
          margin: 2px 20px;
    }
	.logo img {
		width: 65%;
	}
	h1 {
		font-size: 38px;
	}
	.home-intro-left {
        padding: 50px 20px;
        margin-top: -40px;
    }
	.home-intro-right {
        padding: 50px 20px;
        margin-top: -40px;
    }
	.mobshift {
        margin-top:-60px;
    }
	.subtitle {
        font-size: 22px;
    }
	.mobnav {
		min-height:80vH;
		overflow-y: scroll;
	}
    nav ul {
          max-height: 0px;
          background: #101f29;
		padding-right:0px;
		line-height:28px;
    }

    nav.black ul {
          background: #101f29;
    }
	.mob-last-li {
		margin-bottom: 100px;
	}
    .showing {
        max-height: 100vH;
		overflow: scroll;
    }
	.footer-number-container {
        justify-content: center;
    } 
    nav ul li {
          box-sizing: border-box;
          width: 100%;
          padding: 10px 20px;
          text-align: left;
          border-bottom: 1px solid #284050;
    }
	nav ul ul {
         display: block; 
    }
	
	nav ul ul li {
         border-bottom: none; 
    }

    .menu-icon {
          display: block;
		height: 72px;
		line-height: 56px;
    }
	.menu-icon i {
		color: white !important;
	}
	.arrow {
		display: none;
	}
	#service {
        padding: 30px 0 90px;
    }
	#home_services {
        padding: 0px 0 40px;
    }
	#home_blog {
		padding: 40px 0;
	}
	#home_mission {
		padding: 40px 0;
	}
	h2 {
		font-size: 40px;
	}
	h3 {
		font-size: 30px;
	}
	.purchase-btn {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
    }
	.card button{
  white-space:normal;
}
}
.case_study_details {
	width: 100%;
	background:#f5af00;
	padding: 30px;
	border-radius: 0 0 50px 0;
	font-size: 1.2em;
	color:white;
	border-bottom: #9c9c9d 9px solid;
}
.case_study_details b {
	color:black;
}
.case_study_details p {
	color:white;
	font-size: 1.2em;
}
.case_study_details h2 {
	font-size: 35px;
    color: black;
    text-align: center;
    margin-bottom: 30px;
}
.service_details {
	width: 100%;
	background:#f5af00;
	padding: 30px;
	border-radius: 0 0 50px 0;
	color:white;
	border-bottom: #9c9c9d 9px solid;
}
.service_details b {
	color:black;
}
.service_details p {
	color:white;
}
.service_details h2 {
	font-size: 35px;
    color: black;
    text-align: center;
    margin-bottom: 30px;
}
.yellow-btn {
    width: 200px;
    padding: 10px;
    background: #f5af00;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #f5af00;
	color: white;
}
.yellow-btn:hover {
	background:#9c9c9d;
	border-color:#9c9c9d;
	color: white;
}
.red {
	color: var(--primaryColour);
}
.red-btn {
    padding: 10px 30px;
    background: var(--buttonColour);
    font-weight: bold;
    border: 2px solid var(--buttonColour);
	border-radius: 30px;
	color: var(--buttonTextColour);
}
.red-btn:hover {
	background:var(--buttonHoverColour);
	border-color:var(--buttonHoverColour);
	color: var(--buttonTextHoverColour);
}
.callback-btn {
    min-width: 200px;
    padding: 10px;
    background: #9c9c9d;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #9c9c9d;
    color: white;
}
.callback-btn:hover {
	background:#101f29;
	border-color:#101f29;
	color: white;
}
.white-bdr {
	width: 200px;
    padding: 10px;
    background: none;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    border: 2px solid white;
}
.white-bdr:hover {
	background:#101f29;
	border-color:#101f29;
}
.black-bdr {
	width: 200px;
    padding: 10px;
    background: none;
    font-weight: bold;
    text-transform: uppercase;
    color: #101f29;
    border: 2px solid #101f29;
}
.black-bdr:hover {
	color:white;
	background:#101f29;
	border-color:#101f29;
}
.arrow {
  position: absolute;
  bottom: 50px;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: 60px; /*change with size of arrow to make sit on bottom */
/*   background-image: url(); */
/*   background-size: contain; */
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
#hero_home i {
	color:#fff;
}
#hero_home i:hover {
	color: #9c9c9d;
}
i {
  display: block;
  color: #101f29;
}
i:hover {
	color: #9c9c9d;
}

/* Update home services image sizing */
#home_services .col-md-3 img {
    width: 100%;
    max-width: 120px; /* Increased from default */
}

/* Adjust image containers */
#home_services .col-4.offset-4.col-md-12.offset-md-0 {
    padding: 10px;
    max-width: 120px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (min-width: 768px) and (max-width: 1200px) {
    #home_services .col-md-3 img {
        max-width: 100px; /* Slightly smaller on medium screens but still visible */
    }
    
    #home_services .col-4.offset-4.col-md-12.offset-md-0 {
        max-width: 100px;
    }
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.08),
        0 0 0 1px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.12),
        0 0 0 1px rgba(0,0,0,0.05);
}

.testimonial-content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    color: var(--primaryColour);
    opacity: 0.15;
    flex-shrink: 0;
}

.quote-start {
    align-self: flex-start;
}

.quote-end {
    align-self: flex-end;
    transform: rotate(180deg);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin: 20px 0;
    font-style: italic;
    flex: 1;
    text-align: center;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.testimonial-author h4 {
    color: var(--primaryColour);
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.testimonial-author .position {
    color: #666;
    font-size: 14px;
    margin: 5px 0 0;
}

#testimonials .row {
    display: flex;
    flex-wrap: wrap;
}

#testimonials .col-md-6 {
    display: flex;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
}

.business-report-link {
    float: left;
    margin-left: 150px;
    position: relative;
    line-height: 78px; /* Matches the nav ul line-height */
    padding: 16px 25px; /* Matches the nav ul li padding */
}

.business-report-link a {
    color: var(--menuText);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    color: var(--menuTextHover);
}

.business-report-link a:hover {
    color: var(--menuTextHover);
    text-decoration: none;
}

@media(max-width: 1145px) {
    .business-report-link {
        margin-left: 70px;
        line-height: 35px;
    }
}