
/* ==========================================================================
   05. HERO SECTION
   ========================================================================== */
/* ==========================================
   HERO
   ========================================== Mobile (Portrait)	480px
Mobile (Landscape) / Small Tablets	 481px to 767px
Tablets (Portrait)	 768px to 991px
Tablets (Landscape) / Small Laptops	 992px to 1199px
Desktops	 1024px and up
Large Monitors	1536px
@media (max-width: 480px) 
@media (max-width: 768px)
Desktop (>1024px), Tablet (768px–1024px), and Mobile (<768px)
@media (min-width: 768px) 
@media (min-width: 1024px)
 */
.tokeep {
    display: none;
}
/* ------------------------------------------
   Layout
   ------------------------------------------ */
.hero {
	padding-left: 1rem;
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    /* 1. CHANGE THIS from 'left' (invalid) to 'center' to vertically center contents align-items: left; */
    align-items: left; 
    
    /* 2. CHANGE THIS from 'center' to 'flex-start' to push everything to the left side justify-content: center;*/
    justify-content:flex-start; 
	/* pushing the hero text from left
	padding-left: 10rem;*/
   /* min-height: 100vh;
    padding-top: 20rem;
    padding-bottom: 5rem;*/
	    min-height:80vh;
    padding-top:12rem;
    padding-bottom:8rem;
    box-sizing: border-box;	
}
.hero-container {
    
   /* 4. REDUCE THIS if you want the text even closer to the physical screen edge */
    padding: 5rem 1rem 2rem; 
    width: 100%;
    position: relative;
    z-index: 2;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
	}
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    max-width: 1200px;
	width: 56%;
}	
@media (min-width: 780px) {

    .hero {
        padding-top: 120px;
		justify-content: center; 
    }
	.hero-container {    
	   /* 4. REDUCE THIS if you want the text even closer to the physical screen edge */
		padding:15rem 0rem 2rem  4rem;  
		width: 100%;
		position: relative;
		z-index: 2;
		text-align: left;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
    .hero-content {
        width: 80%;
    }
}
@media (min-width: 990px) {

    .hero {
        padding-top: 120px;
		justify-content: center; 
    }
	.hero-container {    
	   /* 4. REDUCE THIS if you want the text even closer to the physical screen edge */
		padding:15rem 0rem 2rem  8rem;  
		width: 100%;
		position: relative;
		z-index: 2;
		text-align: left;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
    .hero-content {
        width: 80%;
    }
}
@media (min-width: 1500px) { 
	.hero-container {
  
	/* 3. CHANGE THIS to remove automatic equal centering margins margin: 0 auto; */
	margin: 0 auto;    
	/* 4. REDUCE THIS if you want the text even closer to the physical screen edge  Top, Right, Bottom, Left*/
	padding: 10rem 0rem 2rem  10rem; 
    height: 100%;
	}
	.hero-content {
		width: 100%;
	}
}
@media (min-width: 1800px) { 
	.hero-container {
	  
		/* 3. CHANGE THIS to remove automatic equal centering margins margin: 0 auto; */
		margin: 0 auto;    
		/* 4. REDUCE THIS if you want the text even closer to the physical screen edge  Top, Right, Bottom, Left*/
		padding: 15rem 0rem 2rem  40rem; 

	}
	.hero-content {
		width: 100%;
	}
}
/* ------------------------------------------
   Typography
   ------------------------------------------ */

.hero-eyebrow {
	color: var(--lightblue);
	font-family: "Euclid Circular A", "Helvetica Neue", Arial, sans-serif;
	font-size: 0.75em;
	letter-spacing: 0.15em;
	font-weight: 800;
	text-transform: uppercase;
	text-shadow: 1px 1px 1px #425D7B;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
	margin-top: 1.5rem;
    color: var(--white);
	font-size: 1rem;
	margin-bottom: 1rem;	
	line-height: 1;
   /* text-shadow: 2px 3px 4px #013281;*/
}
    
.hero-subtitle {
	font-family: "Libre Baskerville", serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
	color: var(--lightblue);
	font-style: italic;
	font-weight: 400;
	line-height: 1;
}

.hero-slogan {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-tagline {
    font-size: 1rem;
    margin-top: 1rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,.2);
    animation: slideUp 1s ease-out .2s both;
}

.hero-description {
	font-size: 1rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;


	max-width: 700px;
	text-shadow: 0 1px 10px rgba(0,0,0,.2);
	animation: slideUp 1s ease-out .4s both;
}

@media screen and (min-width: 768px) and (orientation: portrait) {
	.hero-eyebrow {
		font-size: 1em;
		text-shadow:none;
	}	
    .hero-title {
        font-size: 1.2rem;
    }	
    .hero-subtitle {
        font-size: 2.5rem;
        line-height: 1.2;        
		
    }    
	.hero-slogan {
        font-size: 1rem;
    }
    .hero-tagline {
        font-size: 1.2rem;
    }
}
@media screen and (min-width: 768px) and (orientation: landscape) {
	.hero-eyebrow {
		font-size: 1em;
	}	
    .hero-title {
        font-size: 1.2rem;
    }	
    .hero-subtitle {
        font-size: 2.5rem;
		text-shadow:none;
		line-height: 1.2;
    }    
	.hero-slogan {
        font-size: 1rem;
    }
    .hero-tagline {
        font-size: 1.2rem;
    }
}
@media screen and (min-width: 1025px) and (any-hover: hover) { 
	.hero-eyebrow {
		font-size: 1em;
	}
	.hero-title {
		font-size: 1.5rem;
	}
    .hero-subtitle {
        font-size: 3rem;
        line-height: 1.2;
        text-shadow: 0 2px 10px var(--white);
    }
	.hero-slogan {
		font-size: 1.3rem;
	}	
	.hero-tagline {	
		font-size: 1.3rem;
	}
	.hero-description {
		font-size: 1.2rem;
		line-height: 1.5;
		margin-bottom: 2rem;
    }	
}
@media screen and (min-width: 1441px) {
	.hero-eyebrow {
		font-size: 1em;
		letter-spacing: 0.25em;	
	}
	.hero-title {
		font-size: 2rem;
		margin-bottom: 1.5rem;
	}
    .hero-subtitle {
        font-size: 4rem;
        line-height: 1.3;
        text-shadow: 1px 2px 1px #150801;
    }
	.hero-slogan {
		font-size: 2rem;
	}	
	.hero-tagline {	
		font-size: 1.5rem;
	}
	.hero-description {
		font-size: 1.2rem;
		line-height: 1.5;
		margin-bottom: 2rem;
    }	
}

/* ------------------  solutions -------------------
---------------------------------------------------------*/
.solutions-section {
    padding: 20px 0;
    background: #fff;
}

.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
}

.solutions-intro {
    padding: 10px 0;
}

.solutions-intro .eyebrow {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.solutions-intro h2 {
    font-family: Georgia, serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.1;
    color: #222;
}

.solution-card {
    background: #fff;
    border: 1px solid #ececec;
    flex-direction: column;
	border-radius: 12px;
    padding: 10px;
    display: flex;
    gap: 14px;
    position: relative;
    transition: all 0.3s ease;

}

.solution-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.solution-card img {
	width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.abs-card-content {
    padding-right: 25px;
}

.abs-card-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.abs-card-content p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #555;
}

.abs-card-arrow {
    position: absolute;
    right: 12px;
    bottom: 12px;
    text-decoration: none;
    color: #2d64c8;
    font-size: 20px;
    font-weight: 700;
}

.abs-card-arrow:hover {
    transform: translateX(3px);
}

@media (min-width: 1500px) {
.solutions-intro .eyebrow {
    font-size: 0.8rem;
   
}
/*
    .solutions-container {
     	grid-template-columns: 320px repeat(4, 1fr);
    }
*/
    .solutions-intro h2 {
        font-size: 2rem;
    }

    .solution-card {
        flex-direction: row;
        min-width: 25rem;        
    }

    .solution-card img {
			width: 50%;
    }

}