
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  position: relative;
  top:150px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.animated-light-hr {
  border: none;
  height: 1px;
  width: 30%;
  background: linear-gradient(90deg, #2A875F 0%, #3bbf8f 50%, #2A875F 100%);
  background-size: 200% 100%;
  animation: lightMove 2s infinite linear;
  border-radius: 2px;
}

@keyframes lightMove {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.mobile-study-image {
  display: none;
}

.study .col-lg-12 {
  transition: transform 0.4s ease;;
}

.study > div.col-lg-12:nth-of-type(odd) {
  transform: translateX(-16%);
}

.study > div.col-lg-12:nth-of-type(even) {
  transform: translateX(17%);
}



.content {
	margin-top: 50px;
}

.process-step {
  opacity: 0; 
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

.arrow i,
.down-arrow i {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.arrow i.visible,
.down-arrow i.visible {
  opacity: 1;
  transform: scale(1);
}

.item span {
font-family: 'Heebo', sans-serif;
width: 70%;
position: relative;
top: -58px;
display: flex;
justify-content: left;
align-items: left; /* Vertically centers the text */
text-align: left;
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 0.025rem;
font-style: normal;
text-transform: uppercase;
color: #FFFFFF;
background-color: #2A875F;
border-radius: 15px; /* or whatever radius you want */
 box-shadow: 
    inset 18px 0px 0px 0px rgba(51, 51, 51, 1),
    18px 0px 0px 0px rgba(51, 51, 51, 1);
padding: 10px 10px 10px 25px; /* Adjust padding as needed */
border: none;
}

.flip-card {
    background-color: transparent;
    perspective: 1000px;
    width: 100%;
    height: 100%;
}

.flip-card-front {
    z-index: 2;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
	top:0;
    border-radius: 50px;
    backface-visibility: hidden;
    background: white;
    border: 1px solid #eee;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}




.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}


 #loading-spinner {
    text-align: center;
    margin: auto;
    }

    .active-item {
    display: none; /* default hidden */
    }


    #actively-recruiting .flip-card-front ,#actively-recruiting .flip-card-back {
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }


    div#actively-recruiting .flip-card-inner{
        height: auto !important;
    }

    div#actively-recruiting .core-value-card {
        margin-bottom: 10px !important;
        height: 200px !important;
    }

div#actively-recruiting .flip-card{
    transform:none;
}

div#actively-recruiting .flip-card-inner {
  transform-style: preserve-3d;
  transition: transform 1s ease-in-out;
  animation: flipAnimation 20s infinite;
}

div#actively-recruiting .flip-card-front, #actively-recruiting.flip-card-back {
  backface-visibility: hidden;
}

div#actively-recruiting .flip-card-back {
  transform: rotateY(180deg);
}

/* Animation */
@keyframes flipAnimation {
  0%, 26.66% { transform: rotateY(0deg); }   /* front ~8s */
  30%, 70% { transform: rotateY(180deg); }   /* back ~12s */
  73.33%, 100% { transform: rotateY(0deg); } /* front ~10s */
}


.background-icon {
    position: absolute;
    font-size: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.flip-card-front {
    position: relative;
    z-index: 1;
}


.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}


/* Fluid Border Animation CSS */

.fluid-border {
  position: relative;
  padding: 40px;
  background-color: #121212;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  /* Content styling */
  color: #F5F5F5;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

/* Add some content to the div */
.fluid-border h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.fluid-border p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}


/* Variant with flowing waves effect */
.fluid-border-waves {
  position: relative;
  overflow: hidden;
}

.fluid-border-waves p {
  font-size: 1.1rem;
  line-height: 1.6;
  color:#fff;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.fluid-border-waves h4 {
  font-size: 2rem;
  color:#fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.fluid-border-waves::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, #2A875F, #4C9D6B, #6AA87F, #8FBF94, #2A875F);
 
  background-size: 400% 400%;
  animation: wave 8s ease-in-out infinite;
  border-radius: 2px;
  z-index: 0;
}

.fluid-border-waves::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 2px;
  z-index: 1;
}

@keyframes wave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


@keyframes wave2 {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}



/*Loction*/

.image-container {
  position: absolute;  /* same as #mapBackground */
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  pointer-events: none;  /* so it doesn’t interfere with clicks */
}


.base-image {
  width: 100%;
  height: auto;
  display: block;
}
.pin {
  position: absolute;
  width: 20px;   /* adjust size */
  height: 30px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s ease;
  pointer-events: none;
   z-index: 5;
  /* center the icon at the position */
  transform-origin: bottom center;
}

.pin.visible {
  opacity: 1;
  transform: scale(1);
}

/* Use a background SVG marker */
.pin::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg fill="orange" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 36"><path d="M12 0C7 0 3 4 3 9c0 7.5 9 27 9 27s9-19.5 9-27c0-5-4-9-9-9zM12 13a4 4 0 1 1 0-8 4 4 0 0 1 0 8z"/></svg>') no-repeat center center;
  background-size: contain;
}
.pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s ease;
}

#location_1 {
top: 40%; left: 20%;
}

#location_2 {
top: 40%; left: 25%;
}


#location_3 {
top: 45%; left: 22%;
}


#location_4 {
top: 45%; left: 26%;
}

#location_5 {
top: 30%; left: 45%;
}

#location_6 {
top: 33%; left: 45%;
}

#location_7 {
top: 33%; left: 47%;
}

#location_8 {
top: 30%; left: 46%;
}

.pin.visible {
  opacity: 1;
  transform: scale(1);
}

  
  .animated-section {
	position: absolute;
	top: 30%;   /* adjust for vertical position within image */
	left: 70%;  /* adjust for horizontal position within image */
	transform: translate(-50%, -50%); /* centers the section */
	display: flex;
	justify-content: center;
	gap: 50px;
	width: 450px;
	z-index: 2;
  }
  
  
  .column_ {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
  
  }
  
  
  @keyframes flyLoop {
	0% {
	  opacity: 0;
	  transform: translateX(var(--start-offset));
	}
	20% {
	  opacity: 1;
	  transform: translateX(0);
	}
	80% {
	  opacity: 1;
	  transform: translateX(0);
	}
	100% {
	  opacity: 0;
	  transform: translateX(0);
	}
  }
  

.pagination-lg .page-link {
  color: #2A875F;
}

    .job-card-item {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  padding: 15px;
  margin-bottom: 30px;
}

.job-card-body {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  padding: 15px;
  margin-bottom: 5px;
  margin-left: 10px;
}

.job-card-item:hover {
  box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}


.job-card-item span {
  font-size: 13px;
  font-weight: 500;
  color: #2A875F;
  display: inline-block;
  margin-top: 1px;
  margin-bottom: 10px;
}

.job-card-item h4 {
  font-size: 19px;
  font-weight: 600;
  color: #232d39;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.job-card-item p {
  margin-bottom: 2px;
}



  .job-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between; }

.job-label {
  display: inline-block;
  padding: 6px 11px;
  background: #f5f5f5;
  border-radius: 5px;
  margin-right: 2px; }

  .job-label-active {
    display: inline-block;
    padding: 6px 11px;
    background-color:#2A875F;
    background:#2A875F;
    color:white;
    border-radius: 5px;
    margin-right: 2px; }

    .job-card_job-type{
        padding-left:20px
    }
  .list-item_ {
	border-radius: 8px;
	display: flex;
	align-items: left;
	justify-content: left;
	background: #2A875F;
	font-size: 15px;
	width: 250px;
	padding: 10px 10px;
	color: white;
	opacity: 0;
	--start-offset: -150px;
	 animation: none; 
  }
  

  .right_ .list-item_ {
	--start-offset: 250px;
  }
  
.animate-text .list-item_ {
  animation: flyLoop 8s ease-in-out infinite;
}

.animate-text .column_ .list-item_:nth-child(1) { animation-delay: 0s; }
.animate-text .column_ .list-item_:nth-child(2) { animation-delay: 0.5s; }
.animate-text .column_ .list-item_:nth-child(3) { animation-delay: 1s; }
.animate-text .column_ .list-item_:nth-child(4) { animation-delay: 1.5s; }

.animate-text .right_ .list-item_ {
  --start-offset: 250px;
}
  

.team-image-mobile{
	display:none;
}

p {
	margin-bottom: 0px;
	font-size: 14px;
}
a {
	text-decoration: none!important;
}
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

.glossy-image {
	position: relative;
	display: inline-block;
	overflow: hidden;
  }
  
  .glossy-image img {
	display: block;
	width: 100%;
	height: auto;
  }
  
  /* Gloss overlay */
  .glossy-image::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: linear-gradient(
	  45deg,
	  rgba(255, 255, 255, 0.4) 0%,
	  rgba(255, 255, 255, 0.1) 100%
	);
	transform: translate(-50%, -50%) rotate(45deg);
	opacity: 0;
	transition: all 0.6s ease;
	pointer-events: none;
	z-index: 2;
  }
  
  /* On hover: expand to top-left and bottom-right */
  .glossy-image:hover::after {
	width: 250%;
	height: 250%;
	opacity: 1;
	transform: translate(-50%, -50%) rotate(45deg);
  }
  

a.filled-button {
	background: linear-gradient(135deg, #2A875F, #1F6043); 
	color: #fff;
	font-size: 18px;
	font-weight: 500; /* "Medium" is not a valid CSS value */
	padding: 12px 30px;
	font-family: 'Poppins', sans-serif;
	border: 2px solid white;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s ease;
	text-decoration: none;
}

a.filled-button:hover {
	background: #fff;
	color: #2A875F;
}

a.border-button {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 10px 28px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
}

a.border-button:hover {
	background-color: #fff;
	color: #2A875F;
}

.section-heading {
	text-align: center;
	margin-bottom: 80px;
}

.section-heading h2 {
	font-size: 36px;
	font-weight: 600;
	color: #1e1e1e;
}

.section-heading em {
	font-style: normal;
	color: #2A875F;
}

.section-heading span {
	display: block;
	margin-top: 15px;
	font-size: 15px;
	color: #666;
}




@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Sub Header Style */

.sub-header {
	background-color: #2A875F;
    height: 60px;
    line-height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999; 

}

.sub-header ul li {
	display: inline-block;
}

.sub-header ul.left-info li {
	padding: 0px 20px;
}

.sub-header .flag{
width: 50px
}

.sub-header ul.left-info li i {
	margin-right: 10px;
	font-size: 18px;

}

.sub-header ul.left-info li a {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
    font-family:poppins
}

.sub-header ul.right-icons {
	float: right;
}

.sub-header ul.right-icons li {
	margin-right: -4px;
	width: 46px;
	display: inline-block;
	text-align: center;
	
}

.sub-header ul.right-icons li a {
	color: #fff;
	transition: all 0.3s;
}

.sub-header ul.right-icons li a:hover {
	opacity: 0.75;
}

.policy a{
	color:#216e48;
	font-weight: 600;
}



/* Header Style */
header {
	position: fixed;
    top: 60px; /* This accounts for the height of the sub-header */
    left: 0;
    width: 100%;
    background-color: #FEFEFD!important;
    height: 120px; /*Make 150 if there is complain of difference*/
    z-index: 999; /* Ensure it stays above the sub-header */
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.custom-container {
    width: 80vw;  /* 80% of the viewport width */
    max-width: 100%;  /* To ensure it doesn't overflow */
    margin: 0 auto;  /* Center the container */
}
 .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }



header .navbar {
    position: relative; /* Needed for the pseudo-element positioning */
    border-bottom: none; /* Remove the original border */
    padding: 19px 0;
}

header .navbar::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 5px;
    width: 0%;
    background-color: #2A875F;
    animation: borderProgress 3s linear forwards;
}

/* Medium screens - tablets and small laptops */
@media (min-width: 769px) and (max-width: 991px) {
    /* Navbar adjustments */
    .navbar .navbar-nav .nav-item {
        margin: 0px 8px; /* Reduced from 15px */
    }
    
   .fun-facts{
		height:650px;
	}

	#contact-site{
		font-size: 2rem;
	}


    .navbar .navbar-nav a.nav-link {
        font-size: 14px; /* Reduced from 16px */
        margin-top: 3px; /* Reduced from 5px */
    }
    
    /* Logo adjustments */
    .logo img {
        width: 220px !important; /* Reduced from 280px */
        height: 65px !important; /* Reduced from 82px */
    }
    
    /* Cool link hover effect adjustments */
    .cool-link:hover {
        font-size: 22px; /* Reduced from 26px */
    }
    
    /* Filled button adjustments */
    a.filled-button {
        font-size: 16px; /* Reduced from 18px */
        padding: 10px 25px; /* Reduced from 12px 30px */
    }
    
    /* Header height adjustment */
    header {
        height: 100px; /* Reduced from 120px */
    }
    
    /* Navbar padding adjustment */
    header .navbar {
        padding: 15px 0; /* Reduced from 19px 0 */
    }

	#navbarResponsive {
	    top: 120px;
	}

}

/* Small to medium screens */
@media (min-width: 992px) and (max-width: 1199px) {
    .navbar .navbar-nav .nav-item {
        margin: 0px 10px; /* Slightly reduced */
    }
    
    .navbar .navbar-nav a.nav-link {
        font-size: 15px; /* Slightly reduced */
    }
    
    .logo img {
        width: 200px !important; /* Slightly reduced */
        height: 75px !important; /* Slightly reduced */
    }
    #join-a-study {
        font-size: 17px; /* Slightly reduced */
        width: 200px; /* Slightly reduced */
        padding: 10px 20px; /* Slightly reduced */
    }
    .cool-link:hover {
        font-size: 4px; /* Slightly reduced */
    }
}

/* Large screens but not extra large */
@media (min-width: 1200px) and (max-width: 1599px) {
    .navbar .navbar-nav .nav-item {
        margin: 0px 12px; /* Slightly reduced */
    }
    
    header .navbar {
    position: relative; /* Needed for the pseudo-element positioning */
    border-bottom: none; /* Remove the original border */
    padding: 19px 0;
    }
   #join-a-study {
        font-size: 17px; /* Slightly reduced */
        width: 150px; /* Slightly reduced */
        padding: 10px 20px; /* Slightly reduced */
    }
    header .navbar::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 5px;
    width: 0%;
    background-color:  #2A875F;
    animation: borderProgress 3s linear forwards;
}
 .logo img {
        width: 200px !important; /* Slightly reduced */
        height: 75px !important; /* Slightly reduced */
    }
    .background-header .navbar {
	padding: 19px 0px;
}
}

@keyframes borderProgress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

.background-header .navbar {
	padding: 19px 0px;
}

@keyframes shake {
  0%   { transform: translateX(0); }
  4%   { transform: translateX(-5px); }
  8%   { transform: translateX(5px); }
  12%  { transform: translateX(-5px); }
  16%  { transform: translateX(5px); }
  20%  { transform: translateX(0); }
  100% { transform: translateX(0); } /* rest is pause */
}
  
.logo {
  animation: shake 5s ease-in-out infinite;
}

  .banner2 {
    position: relative;
    max-width: 1200px;
    height: 200px;
    display: flex;
    overflow: hidden;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: none;
    margin: 50px auto;
    /* Add margin so you can scroll to it */
}

.half {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    position: absolute;
    top: 0;
}

.left {
    left: 0%;
    background: linear-gradient(135deg, #2A875F, #1e5b41);
}

.right {
    right: 0%;
    background: linear-gradient(135deg, #1e5b41, #2A875F);
}

.full {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2A875F, #1e5b41);
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease-in;
    z-index: 1;
}



.bottom-image {
	border:solid 2px #2A875F; 
	border-radius: 20px;
	border-top-left-radius: 100px;
	border-bottom-right-radius: 100px;
    display: block;
}

.top-image {
    position: absolute;
    z-index: 2;
    border: 2px solid #2A875F;
    border-radius: 20px;
	border-top-left-radius: 100px;
	border-bottom-right-radius: 100px;
    transition: transform 0.2s ease;
    top: 10%;
    left: -20%;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(10%); /* Start off-screen at the bottom */
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: opacity, transform; /* Added to hint at the browser to optimize rendering */
}

/* Apply the transition when the element becomes visible */
.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0); /* Slide to its original position */
}

/* Optional: Hide elements that are not visible or when you want reverse animation */
.fade-in-section.invisible {
    opacity: 0;
    transform: translateY(10%);
}




@keyframes slideInLeft {
    to {
        left: -100%;
    }
}

@keyframes slideInRight {
    to {
        right: -100%;
    }
}


.follow {
    float: right;
    position: relative;
    padding: 20px;
    background-color: #2A875F;
    color: white;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
	transition: right 0.3s ease-in-out;
  }

  /* Slide up and down animation */
  @keyframes slideUpDown {
    0% {
      top: 0;
    }
    50% {
      top: 20px;
    }
    100% {
      top: 0;
    }
  }
  @keyframes slideIn {
    0% {
      right: -200px;
    }
    100% {
      right: 0;
    }
  }
  
  @keyframes slideOut {
    0% {
      right: 0;
    }
    100% {
      right: -200px;
    }
  }



.follow-header{
top:0px !important;
}

.background-header {
	top: 0;
	position: fixed;
	background-color: #fff!important;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.1);
}


.background-header .navbar-brand h2 {
	color: #2A875F!important;
}
.background-header .navbar-nav a.nav-link {
	color: #1e1e1e!important;
}
.background-header .navbar-nav .nav-link:hover,
.background-header .navbar-nav .active>.nav-link,
.background-header .navbar-nav .nav-link.active,
.background-header .navbar-nav .nav-link.show,
.background-header .navbar-nav .show>.nav-link {
	color: #2A875F!important;
}
.navbar .navbar-brand {
	float: 	left;
	margin-top: 12px;
	outline: none;
}
.navbar .navbar-brand h2 {
	color: #fff;
	text-transform: uppercase;
	font-size: 24px;
	font-weight: 700;
	-webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}
.navbar .navbar-brand h2 em {
	font-style: normal;
	font-size: 16px;
}
#navbarResponsive {
	z-index: 999;
}
.navbar-collapse {
	text-align: center;
}

.nav-item{
	white-space: nowrap;
	padding-right: 5px !important;
	
}

.navbar .navbar-nav .nav-item {
	margin: 0px 15px;
}
.navbar .navbar-nav a.nav-link {
	text-transform: capitalize;
	font-size: 16px;
	font-weight: 500;
	font-family: poppins;
	color: #3D3D3D;
	transition: all 0.5s;
	margin-top: 5px;
	
}

.cool-link {
	position: relative;
	display: inline-block;
	color: #2A875F;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
  }
  
  .cool-link::after {
	content: '';
	position: absolute;
	width: 0%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #2A875F;
	transition: All  0.3s ease;
  }
  
  .cool-link:hover::after {
	width: 100%;

  }
  
  .cool-link:hover {
	color: #1f6043; /* Slightly darker shade on hover */
	font-size: 26px;
	transform: scale(0.85);
  }
  

  .button-pulse {
	animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
	box-shadow: 0 0 0 0 black;
  }
  @keyframes pulse {
	to {
	  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0); 
	}
  }

.navbar .navbar-nav .active>.nav-link,
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link.show,
.navbar .navbar-nav .show>.nav-link {
	color: #2A875F;
}
.navbar .navbar-toggler-icon {
	background-image: none;
}
.navbar .navbar-toggler {
	border-color: #fff;
	background-color: #fff;	
	height: 36px;
	outline: none;
	border-radius: 0px;
	position: absolute;
	right: 30px;
	top: 20px;
}
.navbar .navbar-toggler-icon:after {
	content: '\f0c9';
	color: #2A875F;
	font-size: 30px;
	line-height: 60px;
	font-family: 'FontAwesome';
}



/* Banner Style */

.img-fill{
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center
}
.img-fill:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom:0;
	right: 0;
	background-color: rgba(0,0,0,.3)
}

.Modern-Slider .text-content{
	z-index: 5;
}

.img-fill img {
  min-height: 100%;
  min-width: 100%;
  position: relative;
  display: inline-block;
  max-width: none;
}

.text-content span {

	color: white;

}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.Grid1k {
  padding: 0 15px;
  max-width: 1200px;
  margin: auto;
}

.blocks-box,
.slick-slider {
  margin: 0;
  padding: 0!important;
}

.slick-slide {
  float: left;
  padding: 0;
}

.main-banner {
    position: relative;

}

.Modern-Slider{
	border-bottom-left-radius: 15%;
    border-bottom-right-radius: 15%;
    overflow: hidden; /* ensures content inside respects the border radius */
}

.Modern-Slider .item .img-fill {
	background-size: cover;
	/*background-position: center center;*/
	background-repeat: no-repeat;
	height:750px;
}

.Modern-Slider .item-1 .img-fill {
	background-image: url(../images/milton-keynes/reception.jpg);
	background-position: center 60%;
	background-repeat: no-repeat
}

.Modern-Slider .item-2 .img-fill {
	background-image: url(../images/milton-keynes/8.jpg);
	background-repeat: no-repeat;
	background-position: center 10%;
}

.Modern-Slider .item-3 .img-fill {
	background-image: url(../images/milton-keynes/reception2.jpg);
	background-repeat: no-repeat;
	background-position: cover;
}

.Modern-Slider .item-4 .img-fill {
	background-image: url(../images/milton-keynes/9.jpg);
	background-repeat: no-repeat;
	background-position: cover;
}

.Modern-Slider .item-5 .img-fill {
	background-image: url(../images/milton-keynes/10.jpg);
	background-repeat: no-repeat;
	background-position: center 10%;
}

.Modern-Slider .item-6 .img-fill {
	background-image: url(../images/milton-keynes/car-park.jpg);
	background-repeat: no-repeat;
	background-position: center 50%;
}

.Modern-Slider .item-7 .img-fill {
	background-image: url(../images/naperville/7.jpg);
	background-position: center 60%;
	background-repeat: no-repeat
}

.Modern-Slider .item-8 .img-fill {
	background-image: url(../images/naperville/9.jpg);
	background-position: center 40%;
	background-repeat: no-repeat
}

.Modern-Slider .item-9 .img-fill {
	background-image: url(../images/naperville/11.jpg);
	background-position: center 40%;
	background-repeat: no-repeat
}

.Modern-Slider .item-10 .img-fill {
	background-image: url(../images/naperville/3.jpg);
	background-position: center 40%;
	background-repeat: no-repeat
}

.Modern-Slider .item-11 .img-fill {
	background-image: url(../images/naperville/2.jpg);
	background-position: center 40%;
	background-repeat: no-repeat
}

.Modern-Slider .item-12 .img-fill {
	background-image: url(../images/naperville/1.jpg);
	background-position: center 40%;
	background-repeat: no-repeat
}

.Modern-Slider .item-nj-1 .img-fill {
	background-image: url(../images/newjersey/1.jpg);
	background-position: center 40%;
	background-repeat: no-repeat
}

.Modern-Slider .item-nj-2 .img-fill {
	background-image: url(../images/newjersey/2.jpg);
	background-position: center 40%;
	background-repeat: no-repeat
}
.Modern-Slider .item-nj-3 .img-fill {
	background-image: url(../images/newjersey/3.jpg);
	background-position: center 40%;
	background-repeat: no-repeat
}

.Modern-Slider .item-s-1 .img-fill {
	background-image: url(../images/southampton/1.jpg);
	background-position: center 40%;
	background-repeat: no-repeat
}

.Modern-Slider .item-s-2 .img-fill {
	background-image: url(../images/southampton/2.jpg);
	background-position: center 40%;
	background-repeat: no-repeat
}

.Modern-Slider .item-w-1 .img-fill {
	background-image: url(../images/wolverhampton/1.jpg);
	background-position: center center;
	background-repeat: no-repeat
}

.Modern-Slider .item-w-2 .img-fill {
	background-image: url(../images/wolverhampton/2.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	
}

.Modern-Slider .item-pfctrials .img-fill {
	background-image: url(../images/pfctrials/pfct-home-banner.jpg);
	background-position: center 20%;
	background-repeat: no-repeat;
	
}

.Modern-Slider .item-promed .img-fill {
	background-image: url(../images/promed-banner.webp);
	background-position: center 20%;
	background-repeat: no-repeat;
	
}


.Modern-Slider .NextArrow{
  position:absolute;
  top:50%;
  right:30px;
  border:0 none;
  background-color: transparent;
  text-align:center;
  font-size: 36px;
  font-family: 'FontAwesome';
  color:#FFF;
  z-index:5;
  outline: none;
  cursor: pointer;
}

.Modern-Slider .NextArrow:before{
  content:'';
}

.Modern-Slider .PrevArrow {
  position:absolute;
  top:50%;
  left:30px;
  border:0 none;
  background-color: transparent;
  text-align:center;
  font-size: 36px;
  font-family: 'FontAwesome';
  color:#FFF;
  z-index:5;
  outline: none;
  cursor: pointer;
}

.Modern-Slider .PrevArrow:before{
  content:'';
}

ul.slick-dots {
  display: none!important;
}

 .text-content {
	text-align: center;
  	width: 75%;
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -30%);
}

.text-content h6 {
	margin-bottom: 30px;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif; /* Ensure the font is Open Sans */
	font-weight: 500;  /* Regular weight (Open Sans Regular) */
	color: #FFF;
  }


  
.text-content  h4 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: light;
  font-family: 'poppins';
  color:#FFF;
  overflow:hidden;
}

.text-content  p {
	color: #fff;
	align-items: center;;
	font-size: 15px;
	font-weight: 400;
	line-height: 30px;
	margin-bottom: 40px;
}

.text-content a {
  margin: 0 5px;
}

.Modern-Slider .item.slick-active h6{
  animation:fadeInDown 1s both 1s;
}

.Modern-Slider .item.slick-active h4{
  animation:fadeInLeft 1s both 1.5s;
}

/* Owl Carousel Slide-Up Animation */
.owl-slide-up {
    opacity: 0;
    transform: translateY(30px);
    /* Start from below */
    transition: opacity 0.3s ease-out, transform 0.1s ease-out;
}

/* Apply the slide-up effect when the element is in view */
.owl-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
    /* Slide up into place */
}

.Modern-Slider .item.slick-active{
  animation:Slick-FastSwipeIn 1s both;
}

.Modern-Slider .buttons {
  position: relative;
}

/* Initially hide both clinic-specific questionnaires */
.questionaire {
    display: none;
	transition: display 0.3s ease-in-out;
}





/* ==== Slick Slider Css Ruls === */
.slick-slider{position:relative;display:block;-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-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}
.slick-list:focus{outline:none}.slick-list.dragging{cursor:hand}
.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
.slick-track{position:relative;top:0;left:0;display:block}
.slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}
.slick-loading .slick-track{visibility:hidden}
.slick-slide{display:none;float:left /* If RTL Make This Right */ ;height:100%;min-height:1px}
.slick-slide.dragging img{pointer-events:none}
.slick-initialized .slick-slide{display:block}
.slick-loading .slick-slide{visibility:hidden}
.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}




/* Request Form */

.request-form {
    display: flex; /* Make it a flex container */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    background-color: #2A875F;
    background-image: url("../images/custom.png"), url("../images/custom.png");
    background-position: left center, right center;
    background-repeat: no-repeat, no-repeat;
    background-size: contain;
    padding: 40px 0;
    color: #fff;
    position: relative;
    z-index: 99;
    left: 0;
    right: 0;
    min-height: 100px; /* Add a height to see vertical centering effect */
}



.request-form .border-button{
	text-transform: none;
}


.request-form::before {
    content: ""; /* Required to create the pseudo-element */
    position: absolute; /* Position it absolutely within the parent */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(168deg, #070707F7 0%, #00000000 64%);
    opacity: 0.75;
    transition: background 0.3s, opacity 0.3s;
}


.request-form h4 {
	font-size: 22px;
	font-weight: 600;
}

.request-form span {
	font-size: 15px;
	font-weight: 400;
	display: inline-block;
	margin-top: 10px;
}

.request-form a.border-button {
	margin-top: 12px;

}


/* Yell*/

.yell {
	background-color: #726C6D;
	padding: 40px 0px;
	color: #fff;
}

.yell h4 {
	font-size: 22px;
	font-weight: 600;
}

.yell span {
	font-size: 15px;
	font-weight: 400;
	display: inline-block;
	margin-top: 10px;
	margin-bottom: 40px;
}

.yell hr{
	border:2px solid #fff
}

.yell img{
	float:right;
}
.yell a.border-button {
	margin-top: 12px;
	float: right;
}


/* Profile */

.profile-ring {
	width: 150px; /* adjust size as needed */
	height: 150px;
	border-radius: 50%;
	padding: 6px; /* ring thickness */
	background:#2A875F;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden; /* ensures the image stays inside the circle */
  }
  
  .profile-image {
	width: 140%;
	height: auto;
	object-fit: cover;
	transform: translateY(20%); /* shifts the image up to show shoulders-up */
	border-radius: 50%; /* keep it fully round */
  }

/* Services */

.services {
	margin-top: 50px;
	text-align: center;
}

.service-item img {
	width: 100%;
	overflow: hidden;
	border-radius: 10px;
}

.service-item .down-content {
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensure items are spaced out */
  height: 400px; /* Fixed height for uniformity (adjust as needed) */
}


.community-engagement .down-content {
	padding: 30px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between; /* Ensure items are spaced out */
	height: 550px; /* Fixed height for uniformity (adjust as needed) */
  }
  

  .community-engagement img{
	border-radius: 10px;
  }

  


  
  

.service-item .down-content h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
	text-align: center;
}

.service-item .down-content p {
	margin-bottom: 20px;
	text-align: center;
}

.page-link:hover,
.page-link {
	color: #2A875F;
}

.btn-primary {
	border-color: #2A875F;
	background-color: #2A875F;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus{
	opacity: 0.6;
	border-color: #2A875F;
	background-color: #2A875F;
}


/* Fun Facts */

.fun-facts {
	position: relative;
	height:450px;
}

.fun-facts::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
  90deg, 
  #E6EFED,  /* very light tint */
  #C7DAD6, 
  #B1CCC4, 
  #9BCDB2, 
  #E6EFED   /* loop back to very light */
);

 
  background-size: 400% 400%;
  animation: wave2 8s ease-in-out infinite;
  border-radius: 2px;
  z-index: 0;
}

.circle-list-style{

		list-style: disc; 
		color:#000;
	
}

.current-studies-content h1{
	text-align: left;
	color:#0b2419;
	background-color:#A1CDBC ;
	padding: 10px;
	margin-bottom:50px;
}

.fun-facts .container {
	position: relative;
	z-index: 2;
}


.fun-facts span {
	font-size: 15px;
	color: #fff;
	margin-bottom: 10px;
	display: block;
}

.fun-facts h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 35px;
}

.fun-facts em {
	font-style: normal;
	color: #2A875F;
}


.fun-facts .left-content {

	margin-right: 45px;
}

.fun-facts .left-image{
	margin-top: 60px;
	position: relative;
	right: -10px;
	
}

.fun-facts .right-content {
	margin-top: 90px;
	background-color: #fff;
	color:#000;
	padding:20px;
	position: relative;
	left: -20px;
	align-items: center;
}

.count-area-content {
	text-align: center;
	background-color: rgba(250,250,250,0.1);
	padding: 25px 30px 35px 30px;
	margin: 15px 0px;
}

.count-digit {
    margin: 5px 0px;
    color: #2A875F;
    font-weight: 700;
    font-size: 36px;
}
.count-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}



/* More Info */


.more-info .left-image img {
	width: 100%;
	overflow: hidden;
}

.more-info .more-info-content {
	background-color: #f7f7f7;
}

.about-info .more-info-content {
	background-color: transparent;
}

.about-info a{
color:black;
text-decoration: underline;
font-weight: bold;
}

.about-info .right-content {
	padding: 0px!important;
	margin-right: 30px;
}

.more-info .right-content {
	padding: 15px 45px 15px 45px;
}

.more-info .right-content span {
	font-size: 15px;
	color: #666;
	margin-bottom: 10px;
	display: block;
}


.news-content a{
		color:#2A875F
		}

.bordered{

	border:2px solid #2A875F;
	padding: 5px 25px 5px 25px;
	

	

}		
		

.news-content .embed-right{
	border: 1px solid #2A875F;  /* 10px width, solid style, and #2A875F color */
	border-top: 1px solid #2A875F;
	border-right: 1px solid #2A875F;
	border-bottom: 1px solid #2A875F;
	margin-left: -15px;
	padding-left: 0px;
	border-left: 1px solid #2A875F;
	
}

.embed-right span {
	padding-left:50px
}


.more-info .right-content h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 30px;
}

.more-info .right-content em {
	font-style: normal;
	color: #2A875F;
}

.more-info .right-content p {
	margin-bottom: 20px;
}


/* Testimonials Style */

.about-testimonials {
	margin-top: 0px!important;
}

.below-banner {
	margin-top: 10px;
	padding: 40px 0px;
}



.below-banner p {
	font-size: 16px;
	font-family: 'Open Sans';
	font-weight: 400;
}

.benefits{
	margin-bottom:5px;background-color:#D5E4E1;padding:40px;
	border-radius: 50px;
}

.risks{
	margin-bottom:5px;padding:40px;
		border-radius: 50px;
}

.inner-content h4{
	color:#2A875F;
}

.below-banner h5{
	font-size: 26px;
	padding: 10px 0px 10px 0px;
	font-family: 'Poppins';
	font-weight: 500;
	border: 3px solid #2A875F;  /* 10px width, solid style, and #2A875F color */
	border-top: 3px solid #2A875F;
	border-right: 0px solid #2A875F;
	border-bottom: 3px solid #2A875F;
	border-left: 0px solid #2A875F;
	
}

.below-banner h1{

	padding: 10px 0px 10px 0px;
	font-family: 'Poppins';
	font-weight: 500;
	border: 3px solid #2A875F;  /* 10px width, solid style, and #2A875F color */
	border-top: 3px solid #2A875F;
	border-right: 0px solid #2A875F;
	border-bottom: 3px solid #2A875F;
	border-left: 0px solid #2A875F;
	margin-bottom: 20px;
	
}

.elementor-icon-list-item, .elementor-widget .elementor-icon-list-item a {
    align-items: center;
    display: flex;
    font-size: inherit;
}

.elementor-icon-list-icon {
	margin-right: 15px !important;
}

.elementor-icon-list-icon i {
    color: #2A875F;
    transition: color 0.3s;
}

.elementor-widget .elementor-icon-list-icon i {
    font-size: 20px;
    width: 1.25em;
}
.elementor-icon-list-text{
	color: #000 !important;
	margin-left: 10px;
	font-size: 20px !important;
}

.testimonial-overlay{
	background-color: rgba(43, 134, 95, 0.25); /* Adjust the opacity in rgba */
    background-image: url("../images/white-lines-overlay.png");
}

.testimonials {
	margin-top: 10px;
	padding: 100px 0px; 
	opacity: 1;
}

.testimonials i{
	color: #2A875F
}

.testimonial-item .inner-content {
	text-align: center;
	padding: 30px;
	border-radius: 5px;
}
.testimonial-item p {
	font-size: 14px;
	font-weight: 400;
}
.testimonial-item h4 {
	font-size: 19px;
	font-weight: 700;
	color: #1e1e1e;
	margin-bottom: 0px;
}
.testimonial-item span {
	display: inline-block;
	margin-top: 8px;
	font-weight: 600;
	font-size: 14px;
	color: #2A875F;
}
.testimonial-item img {
	max-width: 70px;
	border-radius: 0%;
	margin: 25px auto 0px auto;
}

.accordion {
	color: #2A875F;
	cursor: pointer;
	background-color: #fff;
	border-radius: 50px;
	padding: 18px;
	width: 100%;
	border: 3px solid #2A875F;  /* 10px width, solid style, and #2A875F color */
	border-top: 0px solid #2A875F;
	border-right: 0px solid #2A875F;
	border-bottom: 1px solid #2A875F;
	border-left: 0px solid #2A875F;
	text-align: left;
	outline: none;
	font-size: 20px;
	transition: 0.4s;
  }

  .accordion-container{
	margin-bottom: 20px;
  }
  
  
  .active_, .accordion:hover {
	border: 3px solid #2A875F;  /* 10px width, solid style, and #2A875F color */
	border-top: 0px solid #2A875F;
	border-right: 0px solid #2A875F;
	border-bottom: 1px solid #2A875F;
	border-left: 0px solid #2A875F;
  }
  
  .accordion:after {
	content: '\00BB';
	color: #2A875F;
	padding-left: 50px;
	font-weight: bold;
	float: right;

  }
  
  .active_:after {
	content: "\2212";
  }
  
  .panel {
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
  }

  .panel p {
	padding: 15px 0px 15px 15px;
	font-size: 16px;
	font-family: 'Open Sans';
	font-weight: 400;
  }

/* Call Back Style */

.callback-services {
	border-top: 1px solid #eee;
	padding-top: 140px;
}

.contact-us {
	background-color: #f7f7f7;
	padding: 140px 0px;
}

.contact-us .contact-form {
	background-color: transparent!important;
	padding: 0!important;
}

.callback-form {
	background-color: transparent;

}





.callback-form h3 {
	color: #0B2419;
	font-size: 50px;
	font-family: "Numans", Sans-serif;
}

.callback-form .sponsor-footer h3 {
	font-size: 20px !important;
	text-transform: none;
	margin-bottom: 20px;
	padding-left: 15px;
	font-weight: 700;

}



.callback-form .contact-form {
	border-radius: 5px;
}

.callback-form .container {
  position: relative;
  overflow: hidden; /* Optional: Prevent background overflow */
}

#falsebackground {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('../images/blog-banner.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  pointer-events: none; /* Make it non-interactive */
}


#mapBackground {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: url('../images/C2.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none; /* Make it non-interactive */
}
  
.contact-form label{
	color: #464646;
	text-align: left;
	margin-bottom: 0px;
	text-transform: none;
	font-size: 16px;
	font-weight: 400;
}

.contact-form span{
	color:red;
}

.callback-form .contact-form input {
	/*border-radius: 20px;*/
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0px 15px;
	color: #6a6a6a;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	margin-bottom: 15px;
}

.callback-form .contact-form select {
	/*border-radius: 20px;*/
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0px 15px;
	color: #6a6a6a;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	margin-bottom: 15px;
}

.callback-form .contact-form input:focus {
	outline: none;
	box-shadow: none;
	border: none;
}

.callback-form .contact-form select:focus {
	outline: none;
	box-shadow: none;
	border: none;
}

.callback-form .contact-form textarea {
	/*border-radius: 20px;*/
	height: 120px;
	max-height: 200px;
	min-height: 120px;
	display: inline-block;
	padding: 15px;
	color: #6a6a6a;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	margin-bottom: 15px;
}

.callback-form .contact-form textarea:focus {
	outline: none;
	box-shadow: none;
	border: none;
}

.callback-form .contact-form ::-webkit-input-placeholder { /* Edge */
  color: #aaa;
}
.callback-form .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #aaa;
}
.callback-form .contact-form ::placeholder {
  color: #aaa;
}

.callback-form .contact-form {
	background-color: transparent;
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 10px 0px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
}

button.border-button {
	color: #fff;
	width: 80%;
	border: 2px solid #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 10px 28px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
	background-color:#2A875F;
}

button.border-button:hover {
	background-color: #726C6D;
	color: #fff;
}

.callback-form .contact-form:hover {
	color: #2A875F;
}

.contact-us .contact-form button.filled-button {
	background-color: #2A875F;
	color: #fff;
	border: none;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
}

.contact-us .contact-form button.filled-button:hover {
	background-color: #fff;
	color: #2A875F;
}



/* Partners Style */

.contact-partners {
	margin-top: -8px!important;
}

.partners {
	margin-top: 140px;
	background-color: #f7f7f7;
	padding: 60px 0px;
}

.partners .owl-item {
	text-align: center;
	cursor: pointer;
}

.partners .partner-item img {
	max-width: 156px;
	margin: auto;
}

/* Modal Style */

.modal-fullscreen {
	max-width: 100%;
	margin: 0;
	z-index: 99999999; /* Ensure modal is on top */
  }

 
  .modal-header {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 0;
  }

  .close-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #2A875F;
	color: white;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	cursor: pointer;
  }



  .form-container {
	display: flex;
	width:60%;
	flex-direction: column;
	justify-content: center;
	
  }

  .form-container input,
  .form-container textarea {
	margin-bottom: 10px;
  }

/* Footer Style */

footer {
	color: #000;
}

footer .navbar{
	background-color: #F5F5F5!important;
	text-align: center;
}

footer .active {
	    color: #fff!important;
		background-color: #A1CDBC;
}

footer .nav-item.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: -200%;
    left: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

/* Hide all submenus by default */
footer .dropdown-submenu {
    background-color: #2A875F;
    display: none;
    position: absolute;
    right: 100%;
    top: 20px;
    z-index: 1000;
}

footer h4 {
	color: #000;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.25px;
	margin-bottom: 35px;
}
.cookie-banner {
    width: 100%;
    background-color: #2A875F!important;
    padding: 20px;
    color: #fff;
    position: fixed;
    bottom: 0;  /* Set to 0 so the banner is right at the bottom of the screen */
    left: 0;    /* Ensure it's aligned with the left side of the screen */
    display: none; /* Start as hidden */
    z-index: 1000; /* Ensure the banner is above other elements */
}

.cookie-banner a {
    color: #fff;
    text-decoration: underline!important;
}

.cookie-banner .close {
    font-size: 25px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    float: right;
}



footer p {
	color: #000;
	text-align: center;
}

footer .footer-item a {
	color: #2A875F!important;
	
}

footer ul.social-icons {
	margin-top: 25px;
}

.location-contact ul.social-icons {
	margin-top: 25px;
}


.location-contact ul.social-icons li {
	display: inline-block;
	margin-right: 5px;
}

footer ul.social-icons li {
	display: inline-block;
	margin-right: 5px;
}

footer ul.social-icons li:last-child {
	margin-right: 0px;
}

footer ul.social-icons li a {
	width: 34px;
	height: 34px;
	display: inline-block;
	line-height: 34px;
	text-align: center;
	background-color: #fff;
	color: #232323;
	border-radius: 50%;
	transition: all 0.3s;
}


footer ul.menu-list li {
	margin-bottom: 13px;
}

footer ul.menu-list li:last-child {
	margin-bottom: 0px;
}

footer ul.menu-list li a {
	font-size: 14px;
	color: #fff;
	transition: all 0.3s;
}

footer ul.menu-list li a:hover {
	color: #2A875F;
}

footer .footer-item{
	text-align: center;
}

footer .contact-form input {
	border-radius: 20px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0px 15px;
	color: #aaa!important;
	background-color: #343434;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}

footer .contact-form input:focus {
	outline: none;
	box-shadow: none;
	border: none;
	background-color: #343434;
}

footer .contact-form textarea {
	border-radius: 20px;
	height: 120px;
	max-height: 200px;
	min-height: 120px;
	display: inline-block;
	padding: 15px;
	color: #aaa!important;
	background-color: #343434;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}

footer .contact-form textarea:focus {
	outline: none;
	box-shadow: none;
	border: none;
	background-color: #343434;
}

footer .contact-form ::-webkit-input-placeholder { /* Edge */
  color: #aaa;
}
footer .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #aaa;
}
footer .contact-form ::placeholder {
  color: #aaa;
}

footer .contact-form button.filled-button {
	background-color: transparent;
	color: #fff;
	background-color: #2A875F;
	border: none;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
}

footer .contact-form button.filled-button:hover {
	background-color: #fff;
	color: #2A875F;
}



/* Sub-footer Style */

.sub-footer {
	background-color: #343434;
	text-align: center;
	padding: 25px 0px;
}

.sub-footer p {
	color: #fff;
	font-weight: 300;
	letter-spacing: 0.5px;
}

.sub-footer a {
	color: #fff;
}


.page-heading {
	text-align: center;
	background-color: #2A875F; 
	padding: 150px 0px 120px 0px;
	color: #fff;
	border-bottom-left-radius: 15%;
	position: relative;
}

.page-heading-home {
	text-align: center;
	background-color: #2A875F; 
	padding: 230px 0px 150px 0px;
	color: #fff;
	border-bottom-right-radius: 15%;
	border-bottom-left-radius: 15%;
	position: relative;
}

.page-heading-location {
	padding: 50px 0px 0px 0px;
	color: #fff;
	position: relative;
}


.background-video {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
	height: 100%;
    object-fit: cover;
    z-index: 1; /* Ensure the video is behind the content */
  }

  .background-video-about {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    object-fit: cover;
    z-index: 1; /* Ensure the video is behind the content */
  }


.current-studies, .sponsors, .about-us {
	position: relative;
    overflow: hidden;
    height: 600px; 

}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 135, 95, 0.9); /* green with transparency */
  border-bottom-left-radius: 15%;
  z-index: 2; /* above video but below content */
}

.background-video::before{
	border-bottom-left-radius: 15%;
}

.why-join-us {
	background-image: url(../images/why-join-us-banner.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;

}

.why-join-us::before{
background-color: transparent;
background-image: linear-gradient(270deg, #1B233D00 26%, #030906 70%);
opacity: 0.6;
}


.home {
	background-image: url(../images/home-banner.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;

}

.home-mk {
	background-image: url(../images/home-banner-mk.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;

}


.home .home-mk::before{
	background-color: rgba(0, 0, 0, 0.3);
}

.proMed-home::before{
	background-color: rgba(0, 0, 0, 0.5);
} 

.pfct-home {
	background-image: url(../images/pfctrials/pfct-home-banner.jpg);
	background-position: center 20%;
	background-repeat: no-repeat;
	background-size: cover;

}

.pfct-home::before{
	background-color: rgba(0, 0, 0, 0.3);
}


.locations{
	background-image: url(../images/location.gif);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.locations::before{
	background-color: rgba(42, 135, 95, 0.8);
	border-bottom-left-radius: 15%;
}

.blog {
	background-image: url(../images/blog-banner.jpeg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;

}

.blog::before {
    content: '';  /* Make sure the pseudo-element is rendered */
    position: absolute; /* Ensure it covers the area you intend */
    top: 0; left: 0;
    right: 0; bottom: 0;
    background-image: linear-gradient(221deg, #FFFFFF 50%, rgba(0, 0, 0, 0) 82%);
    opacity: 0.5; /* This applies opacity to the whole element */
    
}


.about {
	background-image: url(../images/DNA-strain.gif);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;

}

.about::before{
	background-color: rgba(42, 135, 95, 0.8);
	border-bottom-left-radius: 15%;
}

.sponsors::before{
	background-color: transparent;
	background-image: linear-gradient(270deg, #1B233D00 0%, #1B233D 62%);
	opacity: 0.6;
	background-color: rgba(65, 94, 71, 0.5);
	border-bottom-left-radius: 15%;
}


.about-us::before{
	background-color: transparent;
	background-image: linear-gradient(270deg, #1B233D00 0%, #1B233D 62%);
	opacity: 0.6;
	background-color: rgba(65, 94, 71, 0.5);
	border-bottom-left-radius: 15%;
}

.no-wrap {
    white-space: nowrap;
}
.sponsor-list{
	padding-left: 40px;
	height:67px;
}

.faqs::before{
	background-color: rgba(0, 0, 0, 0.3);
}

.faqs {
	background-image: url(../images/faqs-banner.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;

}


.contact::before{
	background-color: rgba(0, 0, 0, 0.3);
		border-bottom-left-radius: 15%;
}

.contact {
	background-image: url(../images/contact-banner.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;

}


.news::before{
	background-color: rgba(0, 0, 0, 0.3);
}

.news {
	background-image: url(../images/news-banner.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;

}

.meet-the-team {
	background-image: url(../images/meet-the-team-banner.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	

}
.meet-the-team::before{
	background-color: rgba(0, 0, 0, 0.3);
}

.page-heading .container {
	position: relative;
	z-index: 2;
}

.page-heading-home .container {
	position: relative;
	z-index: 2;
}

.page-heading:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	border-bottom-left-radius: 15%;

}

.page-heading-home:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.page-heading h1 {

 	margin-bottom: 30px;
    font-size: 48px;
    font-weight: light;
    font-family: 'poppins';
    color:#FFF;
    overflow:hidden;
}

.page-heading-home h1 {

	margin-bottom: 30px;
   font-size: 48px;
   font-weight: light;
   font-family: 'poppins';
   color:#FFF;
   overflow:hidden;
}


.page-heading h6{
	margin-bottom: 30px;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif; /* Ensure the font is Open Sans */
	font-weight: 500;  /* Regular weight (Open Sans Regular) */
	color: #FFF;
}

.page-heading-home h6{
	margin-bottom: 30px;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif; /* Ensure the font is Open Sans */
	font-weight: 500;  /* Regular weight (Open Sans Regular) */
	color: #FFF;
}

.page-heading p {
	margin-bottom: 10px;
	font-size: 15px;
	letter-spacing: 1px;
	color: #fff;
	display: block;
}


.page-heading-home p {
	margin-bottom: 30px;
	font-size: 15px;
	letter-spacing: 1px;
	color: #fff;
	display: block;
}


.page-heading-location .container {
	position: relative;
	z-index: 2;
}

.page-heading-location:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.page-heading-location h1 {
	margin-top:50px;
 	margin-bottom: 30px;
    font-size: 48px;
    font-weight: light;
    font-family: 'poppins';
    color:#FFF;
    overflow:hidden;
}

.page-heading-location img {
	margin-top:-100px;
    
}

.page-heading-location h6{
	margin-bottom: 30px;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif; /* Ensure the font is Open Sans */
	font-weight: 500;  /* Regular weight (Open Sans Regular) */
	color: #FFF;
}

.page-heading-location p {
	margin-bottom: 30px;
	font-size: 15px;
	letter-spacing: 1px;
	color: #fff;
	display: block;
}


/* team */

.team {
	background-color: #f7f7f7;
	margin-top: 140px;
	margin-bottom: -140px;
	padding: 120px 0px;
}

.team-list {
	display: flex;
	align-items: center; /* Vertically center the content inside the column */
  }

.team-item img {
	width: 100%;
	overflow: hidden;
}

.team-item .down-content {
	background-color: #fff;
	padding: 30px;
}

.team-item .down-content h4 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.25px;
	margin-bottom: 10px;
}

.team-item .down-content span {
	color: #2A875F;
	font-weight: 600;
	font-size: 14px;
	display: block;
	margin-bottom: 15px;
}

.team-item .down-content p {
	margin-bottom: 20px;
}

/* Container for the more-info section */
.more-info {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.more-info-content .row {
    display: flex;
    justify-content: space-between;
    gap: 5; /* Ensures there is space between the columns */
}


/* Profile image styling */
.more-info img.img-fluid {
	border-radius: 50px;
	/*box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    object-fit: cover; /* Ensures the image fits well inside the circle */
    margin-bottom: 20px; /* Spacing between image and text */
}

.team-card img{
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.card {
	background-color: #ffffff;
	border-radius: 20px;
	justify-content: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease-in-out;
	margin-bottom: 20px;
  }
  
  .card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .card-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #2b865f;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	padding: 20px;
  }
  
  .card-icon i, .card-icon svg {
	font-size: 50px;
	color: white;
  }
  
  .card-body {
	padding: 20px;
  }
  
  .card-body h4 {
	font-size: 1.3rem;
	color: #333;
	margin-bottom: 15px;
  }
  
  .card-body p {
	color: #666;
	font-size: 1rem;
	line-height: 1.6;
  }
  
  /* Column Settings */
  .core-value-card {
	display: flex;
	justify-content: center;
	height: 350px;
	margin-bottom: 20px;
  }
  
  .container .row {
	margin-bottom: 40px;
  }
  

.elementor-icon {
    border-radius: 50%;
    width: 60px;
    height: 50px; /* Ensures icon container is square */
    border: solid 3px #2A875F;
    padding: 0.5em;
}

.sponsor-cro-add-info {
    display: flex;
    align-items: center;  /* Aligns the icon and text vertically */
}

.sponsors-cro {
padding-top: 40px;
}
.sponsors-cro img.img-fluid {
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);;
    object-fit: cover; /* Ensures the image fits well inside the circle */
    margin-bottom: 20px; /* Spacing between image and text */
	border-radius: 50px;
}

.right-content span.elementor-icon {
    margin-right: 15px;  /* Adds spacing between the icon and text */
}

/* Styling for the profile name (h2) */
.more-info h3 {
    font-size: 22px;
    font-family: "Numans", sans-serif;
	font-style: normal !important;
    margin-bottom: 5px;
    color: #333; /* Dark color for the name */
}

/* Styling for the role (h5) */
.more-info h5 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #777; /* Lighter color for the role */
}

/* Styling for the "Read Bio" button */
.more-info .filled-button{
    display: inline-block;
	text-align: center;
    padding: 10px 20px;
    color: white; /* White text */
    font-size: 16px;
    font-weight: 600;
	align-items: center;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

/* Hover effect for the button */
.filled-button:hover {
    background-color: #216e48; /* Darker shade for hover effect */
    color: white;
}

/* Class for centering the text and button in the middle */
.team-card-container {
    display: flex;
    flex-direction: column; /* Aligns elements vertically */
	justify-content: space-between;
    align-items: center; /* Centers the content horizontally */
    text-align: center; /* Ensures the text is aligned centrally */
	height:200px;
}

.team-card img{
	margin: auto;
	padding: auto;
	border-radius: 40px;
	display: flex;
    flex-direction: column;
	align-items: center; 
	justify-content: center;
}


/* Optional: If you want to control the spacing between the elements */
.team-card-container h3,
.team-card-container h5,
.team-card-container .filled-button {
    margin-bottom: 15px; /* Adds spacing between the elements */
}



/* Single Service */

.single-services {
	margin-top: 140px;
}

#tabs ul {
  margin: 0;
  padding: 0;
}
#tabs ul li {
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
}
#tabs ul li:last-child {
  margin-bottom: 0px;
}
#tabs ul li a {
	text-transform: capitalize;
	width: 100%;
	padding: 20px;
	display: inline-block;
	background-color: #2A875F;
  	font-size: 18px;
  	color: #121212;
  	letter-spacing: 0.5px;
  	font-weight: 700;
  	transition: all 0.3s;
}
#tabs ul li a i {
	float: right;
	margin-top: 5px;
}
#tabs ul .ui-tabs-active span {
  background: #faf5b2;
  border: #faf5b2;
  line-height: 90px;
  border-bottom: none;
}
#tabs ul .ui-tabs-active a {
  color: #fff;
}
#tabs ul .ui-tabs-active span {
  color: #1e1e1e;
}
.tabs-content {
	margin-left: 30px;
  text-align: left;
  display: inline-block;
  transition: all 0.3s;
}
.tabs-content img {
	max-width: 100%;
	overflow: hidden;
}
.tabs-content h4 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.25px;
	margin-bottom: 15px;
	margin-top: 30px;
}
.tabs-content h4 a {
	color: inherit;	
}
.tabs-content p {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 0px;
}

.dropdown-menu {
	background-color: #2A875F;
	padding: 0px  !important;
}

/* Ensure the dropdown menu shows on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Optionally, you can add a transition for a smoother effect */
.nav-item.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

/* Hide all submenus by default */
.dropdown-submenu {
    background-color: #2A875F;
    display: none;
    position: absolute;
    right: 100%;
	top:20px;
    z-index: 1000;
}

/* Hide all submenus by default */
.dropdown-submenu2 {
    background-color: #2A875F;
    display: none;
    position: absolute;
    right: 100%;
    top: 20px;
    z-index: 1000;
}

/* Show submenu for Active studies when hovering over "Active Studies" item */
.nav-item.dropdown:hover > .dropdown-menu > .dropdown-item:nth-child(1):hover + .dropdown-submenu {
    display: block;
}

/* Show submenu for Completed studies when hovering over "Completed Studies" item */
.nav-item.dropdown:hover > .dropdown-menu > .dropdown-item:nth-child(3):hover + .dropdown-submenu {
    display: block;
}

/* Show submenu for Future studies when hovering over "Future Studies" item */
.nav-item.dropdown:hover > .dropdown-menu > .dropdown-item:nth-child(5):hover + .dropdown-submenu {
    display: block;
}

/* Ensure submenu stays visible when hovering over the submenu itself */
.dropdown-submenu:hover {
    display: block;
}



.dropdown-submenu .dropdown-item:hover + .dropdown-submenu2 {
    display: block;
}


/* Show submenu for UK Locations when hovering over "UK Locations" item */
.nav-item.dropdown:hover > .dropdown-menu > .dropdown-item:nth-child(3):hover + .dropdown-submenu2 {
    display: block;
}

/* Ensure submenu stays visible when hovering over the submenu itself */
.dropdown-submenu2:hover {
    display: block;
}


/* Optional: smoother transitions for the dropdown */
.nav-item.dropdown .dropdown-menu {
    transition: all 0.3s ease-in-out;
}

.nav-item.dropdown .dropdown-submenu {
    transition: all 0.3s ease-in-out;
}


/* Optional: smoother transitions for the dropdown */
.nav-item.dropdown .dropdown-menu2 {
    transition: all 0.3s ease-in-out;
}

.nav-item.dropdown .dropdown-submenu2 {
    transition: all 0.3s ease-in-out;
}

.dropdown-item {
    color: white;
	padding: 1rem;
}


.dropdown-item:hover {
    color: black;
    background-color: #A1CDBC !important;
}







.dropdown-item.active, 
.dropdown-item:active {
	background-color: #2A875F;
}


/* Contact Information */

.contact-information {
	margin-top: 100px;
	padding-bottom: 30px;
}
.align-center{
	text-align: center;
}

.align-center a {
	color: #2A875F!important;
	text-decoration: underline!important;;
}

.align-left{
	text-align: left;
}

.align-left a {
	color: #2A875F!important;
	text-decoration: underline!important;;
}

.contact-information .contact-item {
	padding: 60px 30px;
	background-color: #f7f7f7;
	text-align: center;
}

.contact-information .contact-item i {
	color: #2A875F;
	font-size: 48px;
	margin-bottom: 40px;
}

.contact-information .contact-item h4 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.25px;
	margin-bottom: 15px;
}

.contact-information .contact-item p {
	margin-bottom: 20px;
}

.contact-information .contact-item a {
	font-weight: 600;
	color: #2A875F;
	font-size: 15px;
}




/* Responsive Style */
@media (max-width: 768px) 
{

	.desktop-career-card{
		display: none;
	}

  .background-video-about {
	top:20%;
	height:100%
  }

.desktop-study-image{
	display: none;
}

.mobile-study-image{
	display: block;
}

.study > div.col-lg-12:nth-of-type(odd) {
  transform: translateX(0);
}

.study > div.col-lg-12:nth-of-type(even) {
    transform: translateX(0);
}

.about-us {
	
    height: 400px; 

}
	
.current-studies,.sponsors, .about-us {
	
    height: 700px; 

}

	.top-image {
    left: -10%;
}


	#mapBackground{
		display: none;
	}

.full {
	font-size: 1rem;
}

.item span {
font-family: 'Heebo', sans-serif;
width: 80%;
position: relative;
overflow: hidden;
top: -50px;
display: flex;
justify-content: left;
align-items: left; /* Vertically centers the text */
text-align: left;
font-size:10px;
margin-left: 2px;
font-weight: 500;;
}


	.team-card-mobile{
		padding-top: 20%;
	}

	.image-container {
		display: none;
	}

	.animated-section {
		display: none;
	}

	.profile-ring {
	width: 90px; /* adjust size as needed */
	height: 90px;
	border-radius: 50%;
	padding: 3px; /* ring thickness */
	background:#2A875F;
  }
  
  .team-card h3{
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 10px;
  }

  .team-card h5{
	  font-size: 0.8rem;
	  margin-bottom: 15px;
  }
  .profile-image {
	width: 150%;
	height: auto;
	object-fit: cover;
	transform: translateY(20%); /* shifts the image up to show shoulders-up */
	border-radius: 50%; /* keep it fully round */
  }

	#bcr{
		font-size: 15px;
	}

	.sub-header .flag{
		width:20px
	}

.page-heading {
	
	padding: 250px 0px 50px 0px;
	
}
	.page-heading-location img{
		display: none;
	}

	.page-heading-location p{
		text-align: center;
	}

	.page-heading-location h1{
		text-align: center;
	}

	.Modern-Slider .item h6 {
	  margin-bottom: 15px;
	  font-size: 18px;
	 
	}

	.core-value-card {
		flex: 1 1 100%;
	  }

	#falsebackground{
		display: none;
	}

	.team-image-mobile{
		display:block;
	}


	.team-image-desktop{
		display:none;
	}

    #meet-the-team-banner{

		display: none;
	}

	.form-container {
		width:100%;
	}

	.service-item .down-content {
		height: 300px; /* Fixed height for uniformity (adjust as needed) */
	  }

	.community-engagement .down-content {
		
		height: 400px; /* Fixed height for uniformity (adjust as needed) */
	  }
	.service-item .down-content {
	
	  display: flex;
	  flex-direction: column;
	  justify-content: space-between; /* Ensure items are spaced out */
	  height: 100%; /* Fixed height for uniformity (adjust as needed) */
	}
	

	.home {
        background-image: url(../images/home-mobile_.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }



	.faqs{
		background-image: url(../images/faqs-mobile_.jpg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
	}

	.contact{
		background-image: url(../images/contact-mobile_.jpg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
	}


	.news{
		background-image: url(../images/news-mobile_.jpg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
	}

	.fun-facts{
		height: 100%;
	}

	.fun-facts .right-content {
		margin-top: 15px;
		background-color: #fff;
		color:#000;
		padding:30px;
		margin-bottom: 15px;
		position: relative;
		left: 0px;
		align-items: center;
	}

	.news-content .embed-right{
	
		border:  none;
		
	}

	.more-info-content h2{
		text-align: center;
	}

	#logo{
		width: 100px;
	}

	body {
		font-family: 'Poppins', sans-serif;
		overflow-x: hidden;
		position: relative;
		top:0px;
		text-rendering: optimizeLegibility;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	  }

	#footer-na{display: none;}

	.accordion {
		font-size:17px;
	}
	
	.Modern-Slider .item h4 {
	  margin-bottom: 25px;
	  font-size: 28px;
	  line-height: 36px;
	  letter-spacing: 1px;
	}
	.Modern-Slider .item p {
		max-width: 570px;
		line-height: 25px;
		margin-bottom: 30px;
	}
	.Modern-Slider .NextArrow{
	  right:5px;
	}
	.Modern-Slider .PrevArrow {
	  left:5px;
	}
	.request-form {
		background-image: none;
		text-align: center;
	}
	.request-form a.border-button {
		float: none;
		margin-top: 30px;
	}
	.services .service-item {
		margin-bottom: 30px;
	}
	.fun-facts .left-content {
		margin-right: 0px;
		margin-bottom: 30px;
	}
	.more-info .right-content  {
		padding: 30px;
	}
	footer {
		padding: 20px 0px 20px 0px;
	}
	footer .footer-item {
		/*border-bottom: 1px solid #343434;*/
		margin-bottom: 10px;
		padding-bottom: 10px;
	}
	footer .last-item {
		border-bottom: none;
	}
	.about-info .right-content {
		margin-right: 0px;
		margin-bottom: 30px;
	}
	.team .team-item {
		margin-bottom: 30px;
	}
	.tabs-content {
		margin-left: 0px;
		margin-top: 30px;
	}
	.contact-item {
		margin-bottom: 30px;
	}


	.callback-form h4{
		text-align: center;
	}

    .right-icons{
		display: none;
	}

	.yell img{
		float:none;
	}

	.navbar .navbar-toggler-icon:after {
		content: '\f0c9';
		color: #2A875F;
		font-size: 30px;
		line-height: 80px;
		margin-right:-25px
	}
	
	.navbar .navbar-toggler {
		background-color: transparent;
		border:none;
	}

	.navbar .navbar-brand {
		position: absolute;
		left: 30px;
		top: 10px;
	}

	.navbar .navbar-brand {
		width: auto;
	}
	.navbar:after {
		display: none;
	}
	#navbarResponsive {
	    z-index: 99999;
	    position: absolute;
	    top: 120px;
	    left: 0;
	    width: 100%;
	    text-align: center;
	    background-color: #fff;
	    box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
	}
	.navbar .navbar-nav .nav-item {
		border-bottom: 1px solid #eee;
	}
	.navbar .navbar-nav .nav-item:last-child {
		border-bottom: none;
	}
	.navbar .navbar-nav a.nav-link {
		padding: 15px 0px;
		color: #1e1e1e!important;
	}
	.navbar .navbar-nav .nav-link:hover,
	.navbar .navbar-nav .active>.nav-link,
	.navbar .navbar-nav .nav-link.active,
	.navbar .navbar-nav .nav-link.show,
	.navbar .navbar-nav .show>.nav-link {
		color: #2A875F!important;
		border-bottom: none!important;
	}

	.page-heading-location {
		padding: 250px 0px 100px 0px;
		color: #fff;
		position: relative;
	}

	.text-content h4 {

		margin-bottom: 25px;

		font-size: 28px;

		line-height: 36px;

		letter-spacing: 1px;

	}

	.text-content p {

		max-width: 570px;

		line-height: 25px;

		margin-bottom: 30px;

	}

	.content {
	margin-top: 0px;
}

.content h1{
	font-size: 2.2rem	;
}

}


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


.study > div.col-lg-12:nth-of-type(odd) {
  transform: translateX(-5%);
}

.study > div.col-lg-12:nth-of-type(even) {
    transform: translateX(5%);
}


#logo{
		width: 100px;
	}

	#location_1 {
top: 40%; left: 18%;
}

#location_2 {
top: 40%; left: 23%;
}


#location_3 {
top: 45%; left: 18%;
}


#location_4 {
top: 45%; left: 21%;
}

#location_5 {
top: 34%; left: 43%;
}

#location_6 {
top: 33%; left: 45%;
}

#location_7 {
top: 36%; left: 43%;
}

#location_8 {
top: 35%; left: 46%;
}


}


@media (min-width: 769px)  and (max-width: 1199.98px)
{

#mapBackground, .animated-section, .pin {
		display: none;
	}

.study .col-lg-12:nth-child(odd) {
  transform: translateX(-5%);
}

.study .col-lg-12:nth-child(even) {
  transform: translateX(5%);
}

.fun-facts{
		height:650px;
	}


/* On hover, reset transform to center */
.study .col-lg-12:hover {
  transform: translateX(0);
}

	.navbar-nav {
        width: 100%;
    }
	.custom-container {
		width: 100vw;
		max-width: 100%;  /* To ensure it doesn't overflow */
		margin: 0 auto;  /* Center the container */
	}

	.navbar .navbar-brand {
		position: absolute;
		left: 30px;
		top: 10px;
	}

	.navbar .navbar-brand {
		width: auto;
	}
	.navbar:after {
		display: none;
	}
	#navbarResponsive {
	    z-index: 99999;
	    position: absolute;
	    top: 100px;
	    left: 0;
	    width: 100%;
	    text-align: center;
	    background-color: #fff;
	    box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
	}
	.navbar .navbar-nav .nav-item {
		border-bottom: 1px solid #eee;
	}
	.navbar .navbar-nav .nav-item:last-child {
		border-bottom: none;
	}
	.navbar .navbar-nav a.nav-link {
		padding: 15px 0px;
		color: #1e1e1e!important;
	}
	.navbar .navbar-nav .nav-link:hover,
	.navbar .navbar-nav .active>.nav-link,
	.navbar .navbar-nav .nav-link.active,
	.navbar .navbar-nav .nav-link.show,
	.navbar .navbar-nav .show>.nav-link {
		
		color: #2A875F!important;
		border-bottom: none!important;
	}

	.service-item .down-content {
		height: 500px; /* Fixed height for uniformity (adjust as needed) */
	  }

	.community-engagement .down-content {
		
		height: 700px; /* Fixed height for uniformity (adjust as needed) */
	  }
	  #register-interest {
        font-size: 17px;  /* Reduce the font size on small screens */
    }  

	
  
  
  .service-item img {
	
	align-items: center;
	
  }


}

h5 a { color: #2A875F; } 
h5 a:hover { color: inherit; } 


@media (max-width: 600px) {
  .team-list {
    flex-direction: column;       /* stack image above text */
    align-items: center;          /* center them horizontally */
    text-align: center;           /* center text under image */
  }

  .profile-ring {
    width: 100px;                  /* smaller ring for mobile */
    height: 100px;
    padding: 4px;
    margin-bottom: 10px;           /* space between image and text */
  }

  .profile-image {
    width: 120%;                   /* scale image appropriately */
    transform: translateY(25%);    /* less shift on mobile */
  }

  .team-card h3 {
    font-size: 18px;               /* adjust heading size */
  }

  .team-card h5 {
    font-size: 14px;               /* adjust subheading size */
  }
}
