@charset "utf-8";
/* CSS Document */
html, body {
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	color: #000;
	background-color: transparent;
	align-items: center;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}




.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 3rem;
	position: relative;
	background: transparent;
	z-index: 10;
}

.site-header .logo img {
	height: 40px;
}

.hero {
	position: absolute;
	height: 100vh;
	width: 100%;
	z-index: 1;
	top: 0;
	left: 0;
	overflow-x: hidden;
}

.hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	
}

.hero-text {
	position: absolute;
	bottom: 4rem;
	left: 3rem;
	text-align: left;
	color: #fff;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 280;
	z-index: 5;
	line-height: 1.2;
	
}

.hero-text .line1 {
	font-size: 4rem;
	margin-bottom: 0.5rem;
}

.hero-text .line2 {
	font-size: 4rem;
	margin-bottom: 1rem;
}

.scroll-down {
	position: absolute;
	right: 3rem;
	bottom: 6rem;
	width: 30px;
	height: 50px;
	border: 2px solid #fff;
	border-radius: 25px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 5px;
	z-index: 100;
}

.scroll-down span {
	display: block;
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 50%;
	animation: scroll-down 1.5s infinite;
}

@keyframes scroll-down {
	0% {
		transform: translateY(0);
		opacity: 1;
	}
	50% {
		transform: translateY(20px);
		opacity: 0.5;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@media (max-width: 1024px) {
  .scroll-down {
    display: none;
  }
}
	
@media (max-width: 768px) {
    .hero-text {
        bottom: 2rem;
        left: 2rem;
    }
    .hero-text .line1 {
        font-size: 2.5rem;
    }
    .hero-text .line2 {
        font-size: 2.5rem;
    }
}


@media (max-width: 1080px) {
    .hero-text {
        bottom: 2rem;
        left: 2rem;
    }
    .hero-text .line1 {
        font-size: 3rem;
    }
    .hero-text .line2 {
        font-size: 3rem;
    }
}

.main-nav .nav-list {
	display: flex;
	gap: 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-nav {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	display: flex;
	align-items: center;
}

.nav-list {
	list-style: none;
	display: flex;
	gap: 55px;
	margin: 0;
	padding: 0;
	flex-wrap: nowrap;
	white-space: nowrap;
}

.nav-list li {
	position: relative;
}

.nav-list a{
	position: relative;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0px;
	color: #fff;
	transition: color 0.3s ease;
	
}


.nav-list > li > a::before {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.3;
	color: grey;
	z-index: -1;
	clip-path: inset(0 0 100% 0);
	transition: clip-path .4s ease;
	
}

.nav-list > li > a:hover::before {
	clip-path: inset(0 0 0 0);
}

.nav-list a:hover {
	color: #f05a22;
}


.hamburger{
	display: none;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: #fff;
}


@media (max-width: 1340px) {


	.main-nav .nav-list {
		flex-direction: column;
		display: none !important;
		gap: 0; 
		position: absolute;
		top: 85px;
		right: 3rem;
		width: 280px;
		background: #fff;
		padding: 0; 
		border: 1px solid #ddd;
		box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	}

	.nav-list li {
		margin: 0;
		padding: 0;
	}


	.nav-list li a {
		display: block;
		padding: 0.6rem 1.5rem; 
		color: #000;
		width: 100%;
		box-sizing: border-box;
		text-decoration: none;
		line-height: 1; 
	}


	.nav-list li:not(:last-child) a {
		border-bottom: 1px solid #eee;
	}

	.nav-list li a:hover {
		background-color: grey;
		color: #fff;
	}

	.nav-list.show {
		display: flex !important;
	}

	.hamburger {
		display: flex;
	}
}

.col-md-8 p{
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-align: center;
	font-size: 14px;
}

.intro {
	position: relative;
	height: 100vh;
	min-height: 600px;
	width: 100%;
	background-color: transparent;
	overflow: hidden;
}

.intro svg{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20vw;
	max-width: 75px;
	height: auto;
}


.slogan {
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	text-align: center;
	width: 90%;
	max-width: 1000px;
	opacity: 0;
}

.btn {
	display: inline-block;
	padding: 12px 24px;
	color: black;
	border: 2px solid black;
	border-radius: 25px;
	text-decoration: none;
	font-size: 16px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	transition: all 0.3s ease;
	cursor: pointer;
	
}

.btn:hover {
	background-color: black;
	color: white;
}

.content-sections {
	margin-top: 85vh;
	background-color: #fff;
	text-align: center;
	padding: 6rem 2rem;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.content-sections section {
	min-height: 85vh;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 4rem 2rem;
	background-color: #fff;
	text-align: center;
}

.content-sections section h4 {
	font-family: "Helvetica", Helvetica, Arial, sans-serif;
	font-weight: 280;
	font-size: 1.1rem;
	letter-spacing: 1px;
	color: #00A551;
	text-transform: uppercase;
	margin-bottom: 3rem;
	
}


.content-sections section p {
	font-family: "Manrope", Helvetica, Helvetica, Arial, sans-serif;
	font-size: 2.3rem;
	font-weight: 200 !important;
	line-height: 1.2;
	max-width: 900px;
	margin: 0 auto;
}

.abouttp {
    background-color: #171717;
    min-height: 100vh;
    padding: 6rem 2rem;
	display: flex;               
    flex-direction: column;      
    justify-content: center;     
    align-items: center;         
    text-align: center;          
	box-sizing: border-box;
}

.abouttp h4 {
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
	font-weight: 280;
}

.abouttp p {
	font-family: "Manrope", Helvetica, Arial, sans-serif;
    font-size: 2.3rem;
	max-width: 900px;
    font-weight: 200;
    color: #fff;
    text-align: center;
    padding: 0 2rem;
	margin: 0 auto;
	box-sizing: border-box;
}


.about {
	display: block;
	padding: 0;
	
}

.about-container {
  display: flex;
  width: 100%;
  max-width: 1400px; 
  margin: 0 auto;  
}

.about-left {
  width: 50%;
  background: #fff;
}

.about-right {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end; 
  text-align: right;
}

.about-right .content-wrapper {
  padding: 4rem 2rem; 
  max-width: 600px;    
  width: 100%;
  box-sizing: border-box;
}

.about-right h4 {
  margin-bottom: 1rem;
}

.about-right p {
  margin: 0;
  line-height: 1.4;
}


.about-right .btn {
  align-items: flex-end;
}


/* Mobile Responsive */
@media (max-width: 1340px) {

	
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-left,
  .about-right {
    width: 100%;
  }

  .about-right {
    align-items: center !important;
    padding: 2rem !important;
    text-align: center !important;
  }

  .about-right h4,
  .about-right p {
    text-align: center !important;
    padding: 0 1.5rem;
  }

  .about-right .btn {
    align-self: center !important;
  }
}

.expertise {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	margin: 0 !important;
	left: 0 !important;
}

.expertise-image {
 	position: absolute;
	inset: 0;
	z-index: 1;
}

.expertise-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.expertise-text {
	position: relative;
	z-index: 2;
	height: 100vh;
	width: 100%;
	inset: 0;
  margin: 0;
  padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: white;
}

.expertise-text-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.expertise-next {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background: transparent;
  color: white;
	font-size: 20px !important;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  cursor: pointer;
  z-index: 5;
border-radius: 30px;
  background-color: transparent; 
  border: 2px solid #fff;      
text-decoration: none;
  transition: all 0.3s ease;
}

.line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}


.line.is-active {
  opacity: 1;
}

.clients {
	overflow: hidden;
	padding: 60px;
}


.client-slider {
	overflow: hidden;
	width: 100%;
	position: relative;
}


.slider-track {
	display: flex;
	gap: 80px;
	width: calc(200px * 10);
	animation: scroll 45s linear infinite;
}

.slider-track img {
	height: 100px;
	width: 200px;
	object-fit: contain;
	opacity: 0.85;
	flex-shrink: 0;
	transition: opacity 0.3s ease;
}


.slider-track img:hover {
	opacity: 1;
}



@keyframes scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}	
}


.client-slider:hover .slider-track {
	animation-play-state: paused;
}


.section-divider {
	display: block;
	border: 0;
	height: 2px;
	width: 100%;
	max-width: 1180px;
	background-color: #fff;
	margin: 0 auto;
	padding: 0 10px;
}


.contact-section {
	background-color: transparent;
	text-align: center;
	margin-top: 0 !important;
	padding: 6rem 2rem;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	min-height: 60vh;
	height: auto;
	position: relative;
	z-index: 1;
}


.products-section {
	margin-top: 0 !important;
	min-height: 600px;
	height: auto;
	position: relative;
	z-index: 1;
}
	
.contact {
	margin: 0 auto;
	margin-top: 0 !important;
	background: #f2f0ef;
	color: #000;
	padding: 90px;
	max-width: 800px;
	width: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	transition: transform 0.3s ease, box-shadow 0.3s ease;	
}


.contact-left {
	width: 45%;
	display: flex;
	align-items: flex-end;
}



.contact-right {
	width: 50%;
}



.contact:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.contact-left h1 {
	margin-top: 0;
	font-size: 4rem;
	line-height: 1.2;
	font-weight: 280;
}


.contact p{
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-align: left;
	font-size: 1.2rem;
	line-height: 1.6;
	margin: 0;
}



.contact-right a {
	color: #171717;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-align: left;
	font-size: 1.2rem;
	line-height: 1.6;
	display: block;
	text-decoration: none;
	transition: color 0.3s ease, transform 0.2s ease;
}



.contact-right a:hover,
.products-right a:hover {
	color: #f05a22;
	transform: translateX(5px);
}

.contact-left,
.products-left {
	padding-top: 150px;

}
	
.products {
	margin: 0px auto;
	max-width: 1100px;
	width: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 180px 80px;
}

.products-left h1 {
	margin-top: 0;
	font-size: 4rem;
	line-height: 0.2;
	font-weight: 280;
	color: #fff;
}

.products-right a {
	color: #fff;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-align: left;
	font-size: 1.2rem;
	line-height: 1.6;
	display: block;
	text-decoration: none;
	transition: color 0.3s ease, transform 0.2s ease;
}


.products-left {
	width: 45%;
	display: flex;
	align-items: flex-end;
}



.products-right {
	width: 50%;
}




.contact-products-wrapper {
	background: #171717;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	position: relative;
	z-index: 0;
	margin-top: 0;
	padding-bottom: 0;
}


.contact-products-wrapper::after {
	display: none;
}


@media (max-width: 1340px) {
    .contact {
        flex-direction: column;
        padding: 50px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-left {
        margin-bottom: 3rem;
    }

    .contact-left h1 {
        font-size: 2.5rem;
    }
}


@media (max-width: 768px) {
  .content-sections section p {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .abouttp p {
    font-size: 1.5rem !important;
  }
}


@media (max-width: 1340px) {

    .products {
        display: flex !important;        
        flex-direction: column !important;  
        justify-content: center !important; 
        align-items: center !important;    
        text-align: center !important;      
        padding: 120px 20px !important;  
    }

   
    .products-left,
    .products-right {
        width: 100% !important;            
        margin: 0 !important;              
        padding: 0 20px !important;        
        text-align: center !important;    
    }


    .products-left {
		display: block !important;       
        align-items: unset !important;   
        text-align: center !important;  
        margin-bottom: 3rem !important;
    }


    .products-left h1 {
		color: #fff;                  
		font-size: 1.0rem !important;
		font-weight: 280 !important;
		margin-bottom: 3rem !important;
		text-transform: uppercase;
		text-align: center !important;
    }


    .products-right {
        margin-top: 0;           
    }

    .products-right a {
        font-size: 1.1rem !important;
        line-height: 2.5;                  
        display: block;
        text-align: center !important;        
    }
}

.whatwedo-container {
	margin-top: 20vh;
	display: flex;
	margin-right: 10px;
    flex-direction: row;
 	align-items: flex-start;
	justify-content: space-between;
	min-height: 80vh !important;
	gap: 60px;
	padding: 0 10px;
	margin-bottom: 0;
	box-sizing: border-box;
  }

 
.whatwedo-left {
	max-width: 45%;
	margin: 0;
	padding: 0;
	flex: 0 0 45%;
}

.whatwedo-right {
    max-width: 55%;
    flex: 1;
    display: flex;           
    flex-direction: column; 
    align-items: flex-start; 
    gap: 10px;              
    margin-right: 10px;
    padding: 10px;
}

.whatwedo-left h1 {
	margin-top: 0;
	font-size: 3rem;
	line-height: 1.2;
	font-weight: 280;
	text-align: left;
	color: #000;
}


.whatwedo-right a {
 	color: #000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: left;
    font-size: 1.2rem;        
    line-height: 1.6;
    text-decoration: none;
    width: 100%;
    display: block;
    margin: 0;
    padding-top: 10px;         
    border-top: 1px solid #000;
	position: relative;
}

.whatwedo-right p {
    width: 100%;
    text-align: left;
    font-size: 1.2rem !important;
	font-weight: 300;
    line-height: 1.6;
    margin: 0 0 50px 0;       
    padding-top: 10px; 
	color: #f05a22;
    border-top: 1px solid #000; 
}

.whatwedo-right a:hover {
	color: #f05a22;
}

.whatwedo-right a::after {
    content: '+';
    color: #000;
    position: absolute;
    right: 0;                  
    transition: transform 0.3s, color 0.3s;
}

.whatwedo-right a:hover::after {
    transform: rotate(90deg);
    color: #f05a22;
}



@media (max-width: 1340px) {
    .whatwedo-container {
        flex-direction: column !important;  
        align-items: center !important;     
        text-align: center !important;
        gap: 40px !important;
        padding: 60px 20px !important;     
    }

    .whatwedo-left,
    .whatwedo-right {
        max-width: 100% !important;
        flex: 1 1 100% !important;
        margin: 0 !important;
        padding: 0 20px !important;
        text-align: center !important;
    }

    .whatwedo-left h1 {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
	  text-align: center !important;
    }

    .whatwedo-right p,
    .whatwedo-right a {
        font-size: 1.1rem !important;
        line-height: 2 !important;
        text-align: center !important;
    }

    .whatwedo-right a {
        padding-top: 8px !important;
    }
}


@media (max-width: 768px) {
    .whatwedo-left h1 {
        font-size: 1.8rem !important;
	     text-align: center !important;
    }

    .whatwedo-right p,
    .whatwedo-right a {
        font-size: 1rem !important;
        line-height: 1.8 !important;
    }

    .whatwedo-container {
        gap: 30px !important;
        padding: 40px 15px !important;
    }
	
    .whatwedo-right a::after {
        display: none !important;
	}
}




@media (max-width: 480px) {
    .whatwedo-left h1 {
        font-size: 1.5rem !important;
    }

    .whatwedo-right p,
    .whatwedo-right a {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    .whatwedo-container {
        padding: 30px 10px !important;
        gap: 20px !important;
    }
	
	    .whatwedo-right a::after {
        display: none !important;
	}
}

.full-image-section {
    position: relative;
    width: 100vw;           
    height: 250px !important;          
	margin-left: calc(-2rem);           
    margin-top: 0 !important;
    margin-bottom: 20vh;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
}


.full-image-section img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


@media (max-width: 1340px) {
    .full-image-section {
        height: 180px !important;     
    }

    .full-image-section img {
        object-position: center;     
    }
}

@media (max-width: 768px) {
    .full-image-section {
        height: 150px !important;      
    }
}

@media (max-width: 480px) {
    .full-image-section {
        height: 120px !important;     
    }
}

.not-your-usual-consultancy {
	min-height: 85vh;
	height: auto;
	display: flex;
	margin-top: 0 !important;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 4rem 2rem;
	background-color: #fff;
	text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;            
  margin-top: 2px;
  margin-bottom: 2px;
  width: 100%;
}


.product-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 1 / 1;
}


.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}


.product-card:hover img {
  transform: scale(1.05);
}


.product-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(0,0,0,0.25);
}


@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .product-card {
    aspect-ratio: 16 / 9;
  }
}


.full-image-section-overlay-section {
    position: relative;
    width: 100vw;           
    height: 250px !important;          
	margin-left: calc(-2rem);           
    margin-top: 0 !important;
    margin-bottom: 20vh;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
}


.full-image-section-overlay-section img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expertise-text-overlay-text {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}


.expertise-text-overlay-text {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 3.5rem;
  font-weight: 300;
}



.diversity-manager-tool {
	min-height: auto !important;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 4rem 2rem;
	text-align: center;
	font-family: "Manrope", Helvetica, Helvetica, Arial, sans-serif;
	font-size: 2.3rem !important;
	font-weight: 200 !important;
	line-height: 1.2;
	max-width: 900px;
	margin: 0 auto;
}

.steps {
  text-align: center;
  padding: 0px !important;
	margin-bottom: 12rem !important;
	margin-top: 3.5rem !important;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
margin-bottom: 4rem !important;
	
}

.step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #000;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 3.5rem;
}

.step p {
	max-width: 600px;
	font-family: "Manrope", Helvetica, Helvetica, Arial, sans-serif;
	font-size: 2.3rem;
 	line-height: 1.6;
 	margin: 0;
}

@media (max-width: 768px) {

  .steps {
    text-align: center;
    padding: 0 !important;
    margin-top: 2.5rem !important;
    margin-bottom: 6rem !important;
  }

  .step {
    margin-bottom: 3rem !important;
  }

  .step-number {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .step p {
    max-width: 90%;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.next-step {
    width: 100%;
	height: 100%;
	min-height: 100vh;
    overflow: hidden;
    position: relative;
	z-index: 0;
	align-content: center;
	margin: 0;
    margin-left: 0;
	margin-right: 0;
    margin-bottom: 0;
	padding-left: 80px;
	padding-right: 80px;
}

.next-step img {
	min-width: 100%;
	min-height: 100%;
	padding-left: 80px;
	padding-right: 80px;
	margin: 0 !important;
	padding: 0 !important;
	object-fit: cover;
	display: block;
	position: absolute;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%);
}

.next-step::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0);
	transition: background 0.5s ease;
	z-index: 1;
	pointer-events: none;
}

.next-step:hover::before {
	background:rgba(0,0,0,0.25);
}

.next-step h4,
.next-step .next-step-btn {
	position: relative;
	z-index: 2;
}

.content-sections .next-step h4 {
	color: #fff;
}

.content-sections .next-step {
	padding: 0 !important;
}


.next-step h4 {
	color: #fff;
}


.next-step-btn {
  color: #fff;
 border-radius: 25px;
  background-color: transparent; 
  border: 2px solid #fff;      
  padding: 0.75em 1.5em;
  cursor: pointer;
text-decoration: none;
  transition: all 0.3s ease;
}

.next-step-btn:hover {
  background-color: #fff;    
  color: #000;
}

@media (max-width: 768px) {
  .diversity-manager-tool p {
    font-size: 1.5rem;
  }
}


.ee-plan p,
.eea2 p,
.ee-forum p,
.ee-numerical p,
.ee-forum-workshop p {
	font-family: "Manrope", Helvetica, Helvetica, Arial, sans-serif;
	font-size: 1.8rem !important;
	font-weight: 200 !important;
	line-height: 1.2;
	max-width: 600px;
	margin: 0 auto;
}

.ee-plan h3,
.ee-numerical h3,
.ee-forum-workshop h3,
.eea2 h3,
.ee-forum h3 {
	color: darkgray;
}


.ee-calculators {
	margin-top: 20vh !important;
	min-height: 10vh !important;
}

.footer-menu {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 85vh;
	background-color: #171717;
}

.menu-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 120px;
}


.menu-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 120px;
}

.menu-right a{
	color: #fff;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-align: left;
	font-size: 1.2rem;
	line-height: 1.6;
	display: block;
	padding: 12px 0;
	border-bottom: 2px solid rgba(255,255,255,0.15);
	text-decoration: none;
	width: 590px;
	transition: color 0.3s ease, transform 0.2s ease;
}

.menu-right a:hover {
	color: #f05a22;
}

.menu-right a:last-child {
	border-bottom: none;
}

.menu-left img {
	height: 200px;
	width: auto;
}


@media (max-width: 1340px) {

  .footer-menu {
    display: flex !important; 
    flex-direction: column;   
    padding: 50px 20px;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  .menu-right {
    padding: 0;
    margin-top: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menu-left {
    padding: 0;
    margin-bottom: 2rem;    
    justify-content: center;
    align-items: center; 
    width: 100%;
    display: flex; 
    flex-direction: column;
  }

  .menu-left img {
    width: 70%;
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto !important;
    padding: 0; 
  }

  .menu-right a {
    position: relative;
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 1.1rem;
    line-height: 2.2;
    text-align: center;
    border-bottom: none; 
  }

  .menu-right a::after {
    content: "";
    position: absolute;
    left: 0;  
    right: 0;
    bottom: 0;
    height: 2px;
    background: rgba(255,255,255,0.15);
  }

}
	  


.footer {
	min-height: 20vh;
	position: relative; 
	background: #171717;
	color: #fff;
	padding: 20px 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
}

.footer_logo img {
	height: 50px;
	width: auto;
}


.footer_copyright {
	font-size: 1rem;
}


body.intro-active .footer,
body.intro-active .abouttp,
body.intro-active .contact-products-wrapper {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}

body.intro-active {
    overflow: hidden;
    height: 100vh;
}


@media (min-width: 360px) and (max-width: 1080px) {
  .footer {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    text-align: center;
  }

  .footer_logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .footer_logo img {
    height: 40px;
    width: auto;
    display: block;      
    margin: 0 auto;   
  }

  .footer_copyright {
    font-size: 0.8rem;
    text-align: center;
    width: 100%;         
  }
}

.content-sections .expertise .expertise-text,
.content-sections .expertise .line,
.expertise .expertise-text,
.expertise .line {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	font-size: 3.5rem;
	font-weight: 300;
}

.content-sections .expertise {
  width: 100%;
  margin-left: 0;
  transform: translateX(-2rem);
}

.content-sections .expertise-next {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	font-weight: 280;

}

@media (max-width: 1340px) {
  .content-sections .expertise .expertise-text,
  .content-sections .expertise .line,
  .expertise .expertise-text,
  .expertise .line {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .content-sections .expertise .expertise-text,
  .content-sections .expertise .line,
  .expertise .expertise-text,
  .expertise .line {
    font-size: 1.8rem;
  }

  .content-sections .expertise {
transform: translateX(-2rem);
  }
}

@media (max-width: 480px) {
  .content-sections .expertise .expertise-text,
  .content-sections .expertise .line,
  .expertise .expertise-text,
  .expertise .line {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
	.contact-right a {
	font-size: 1rem;
  }
}

