/* Local CSS Styles - Custom Color Scheme */
/* File: /public_html/css/styles.css */

/* Custom Color Variables */
:root {
  --primary-color: #005f73;
  --secondary-color: #0a9396;
  --accent-color: #94d2bd;
  --text-color: #001219;
  --background-color: #ffffff;
  --light-accent: #e9f5f3;
  --dark-primary: #004851;
  --orange-accent: #f97316; /* Keep for CTA buttons */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9fafb;
}
.svg-15 {
  transform: rotate(15deg);
}
.svg-30 {
  transform: rotate(30deg);
}
.svg-45 {
  transform: rotate(45deg);
}
.svg-60 {
  transform: rotate(60deg);
}
.svg-75 {
  transform: rotate(75deg);
}
.svg-90 {
  transform: rotate(90deg);
}
.svg-135 {
  transform: rotate(135deg);
}
.svg-180 {
  transform: rotate(180deg);
}
.svg-225 {
  transform: rotate(225deg);
}
.svg-270 {
  transform: rotate(270deg);
}


/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.max-w-6xl {
    max-width: 1152px;
    margin: 0 auto;
}

.max-w-7xl {
    max-width: 1280px;
    margin: 0 auto;
}

.max-w-4xl {
    max-width: 896px;
}

.max-w-3xl {
    max-width: 768px;
	margin: 0 auto;
}

.max-w-40xl{
	max-width: 40%;
	margin:auto;
}

.max-w-50xl{
	max-width: 50%;
	margin:auto;
}

.max-w-75xl{
	max-width: 75%;
}

.max-w-80xl{
	max-width: 80%;
}

.max-w-90xl{
	max-width: 90%;
}

.max-w-100xl{
	max-width: 100%;
}

/* Grid System */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}
.grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-cols-6 {
    grid-template-columns: repeat(6, 1fr);
}

.gap-1 {
    gap: 0.25rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

/* Flexbox */
.flex {
    display: flex;
}
.flex-box{
	flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap{
	flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-x-6 > * + * {
    margin-left: 1.5rem;
}

.space-x-8 > * + * {
    margin-left: 2rem;
}

.space-y-1 > * + * {
    margin-top: 0.25rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

/* Positioning */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

.fixed {
    position: fixed;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}
.bottom-20px {
    bottom: 20px;
}

.right-20px {
    right: 20px;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

.z-1000 {
    z-index: 1000;
}

/* Display */
.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.hidden {
    display: none;
}

/* Sizing */
.w-4 {
    width: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.w-16 {
    width: 4rem;
}

.w-48 {
    width: 12rem;
}

.w-64 {
    width: 16rem;
}

.w-80 {
    width: 20rem;
}
.w-100 {
    width: 25rem;
}

.w-120 {
    width: 30rem;
}

.w-140 {
    width: 40rem;
}

.w-150 {
    width: 50rem;
}

.w-155 {
    width: 55rem;
}

.w-160 {
    width: 60rem;
}

.w-full {
    width: 100%;
}

.h-4 {
    height: 1rem;
}

.h-5 {
    height: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

.h-8 {
    height: 2rem;
}

.h-16 {
    height: 4rem;
}

.min-h-screen {
    min-height: 100vh;
}

/* Padding and Margin */
.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.p-12 {
    padding: 3rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pb-3 {
    padding-bottom: 0.75rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-8 {
    padding-top: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}
.mt-0 {
    margin-top: 0rem;
}
.mt-10px {
    margin-top: 2px;
}
.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.-mt-10 {
    margin-top: -2.5rem;
}

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-3 {
    margin-left: 0.75rem;
}

.ml-4 {
    margin-left: 1rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Colors and Backgrounds - Updated with Custom Colors */
.bg-white {
    background-color: var(--background-color);
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-gray-200 {
    background-color: #e5e7eb;
}

.bg-gray-700 {
    background-color: #374151;
}

.bg-gray-800 {
    background-color: #1f2937;
}

.bg-blue-50 {
    background-color: rgba(10,147,150,0.25); /* secondary color with opacity*/
}
.bg-red-50 {
    background-color: rgba(10,147,150,0.25); /* secondary color with opacity*/
}
.bg-green-100{
	background-color: rgba(10,147,150,0.25); /* secondary color with opacity*/
}
.bg-orange-100{
	background-color: rgba(10,147,150,0.25); /* secondary color with opacity*/
}
/* Primary Color Backgrounds */
.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.bg-accent {
    background-color: var(--accent-color);
}

/* Light versions */
.bg-primary-50 {
    background-color: var(--light-accent);
}

.bg-secondary-50 {
    background-color: #e0f2f1;
}

.bg-accent-100 {
    background-color: #e8f5e8;
}

/* Keep orange for CTA buttons */
.bg-orange-500 {
    background-color: var(--orange-accent);
}

.bg-orange-600 {
    background-color: #ea580c;
}

/* Text Colors - Updated */
.text-white {
    color: #ffffff;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-800 {
    color: #1f2937;
}

/* Primary Text Colors */
.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-accent {
    color: var(--accent-color);
}

.text-primary-light {
    color: #e0f7fa;
}

.text-secondary-light {
    color: #b2dfdb;
}

/* Keep some orange for accents */
.text-orange-400 {
    color: #fb923c;
}

.text-orange-500 {
    color: var(--orange-accent);
}

.text-orange-600 {
    color: #ea580c;
}

.text-green-500 {
    color: #22c55e;
}

.text-green-600 {
    color: #16a34a;
}

.text-yellow-400 {
    color: #facc15;
}

.text-red-600 {
    color: #dc2626;
}

.text-blue-600 {
    color: #0f458f;
}

/* Typography */
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.italic {
    font-style: italic;
}

.underline {
    text-decoration: underline;
}

.no-underline {
    text-decoration: none;
}

/* Borders - Updated with Custom Colors */
.border {
    border-width: 1px;
}
.border-2 {
    border-width: 2px;
}

.border-3 {
    border-width: 3px;
}

.border-4 {
    border-width: 4px;
}

.border-t {
    border-top-width: 1px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-l-4 {
    border-left-width: 4px;
}

.border-b-2 {
    border-bottom-width: 2px;
}

.border-gray-100 {
    border-color: #9fa1a5;
}

.border-gray-200 {
    border-color: #808285;
}

.border-gray-700 {
    border-color: #5e6064;
}

/* Primary Border Colors */
.border-primary {
    border-color: var(--primary-color);
}

.border-secondary {
    border-color: var(--secondary-color);
}

.border-accent {
    border-color: var(--accent-color);
}

.border-green-600 {
    border-color: #16a34a;
}

.border-orange-600 {
    border-color: #ea580c;
}

.border-red-600 {
    border-color: #dc2626;
}

/* Border Radius */
.rounded {
    border-radius: 0.25rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-full {
    border-radius: 50%;
}

/* Shadows */
.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

.overflow-x-auto {
    overflow-x: auto;
}

/* Flex Properties */
.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-1 {
    flex: 1 1 0%;
}

		
/* Hover Effects - Updated */
.hover\:text-primary:hover {
    color: var(--primary-color);
}

.hover\:text-secondary:hover {
    color: var(--secondary-color);
}

.hover\:text-white:hover {
    color: #ffffff;
}

.hover\:text-primary-light:hover {
    color: var(--light-accent);
}

.hover\:text-orange:hover {
    color: var(--orange-accent);
}

.hover\:bg-primary-dark:hover {
    background-color: var(--dark-primary);
}

.hover\:bg-orange-600:hover {
    background-color: #ea580c;
}

.hover\:bg-gray-100:hover {
    background-color: #f3f4f6;
}

.hover\:bg-secondary:hover {
    background-color: var(--secondary-color);
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hover\:shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

/* Transitions */
.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

/* Dropdown animations */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.group:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile menu toggle */

.mobile-menu-btn{
	height: 40px;
	width: 40px;
}
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 500px;
}

/* Special highlight styling */
mark {
    background-color: #fef3c7;
    padding: 2px 4px;
    border-radius: 3px;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background-color: var(--dark-primary);
}

/* Error styling for form validation */
.error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}


/* Responsive Grid Columns */
@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .sm\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }
    
    .md\:flex {
        display: flex;
    }
    
    .md\:hidden {
        display: none;
    }
    
    .md\:block {
        display: block;
    }
    
    .md\:mt-0 {
        margin-top: 0;
    }
    
    .md\:flex-row {
        flex-direction: row;
    }

}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .lg\:grid-cols-5 {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }
    
    .lg\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
    
    .lg\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    .lg\:flex {
        display: flex;
    }
    
    .lg\:hidden {
        display: none;
    }

}

	
/* Link Styles */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Button Styles */
button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

/* Form Elements */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Fill current for SVG icons */
.fill-current {
    fill: currentColor;
}






/***********************************************************************/
	.hero-primary{
		position: relative;
		display: box;
		background: var(--primary-color);
		width: 100% !important;
	}

	/* Hero Section Styles - True Full Height Image Above 1000px */
	.hero-secondary {
		position: relative;
		overflow: hidden;
		background: var(--secondary-color);
		border-bottom: var(--primary-color) 2px solid;
		height: 510px !important;
		max-width: 1920px; 
		margin: auto;
	}

	.hero-girl-image {
		position: absolute;
		bottom: 0;
		/*left: 0;*/
		height: 510px !important;
		min-width: 550px !important;
		background-image: url('https://greenbergbraces.com/images/girlSmiling500hx549w.png');
		background-repeat: no-repeat;
		background-position:bottom; /* Anchor to bottom-left */
		z-index: 1;
		padding: 1rem;
	}
	.hero-girl-image2 {
		position: absolute;
		bottom: 0;
		height: 600px !important;
		min-width: 828px !important;
		background-image: url('https://greenbergbraces.com/images/woman-with-dark-hair-smiling_525x725.png');
		background-repeat: no-repeat;
		background-position:bottom; /* Anchor to bottom-left */
		z-index: 1;
	}
	.hero-girl-image3 {
		position: absolute;
		bottom: 0;
		height: 510px !important;
		min-width: 600px !important;
		background-image: url('https://greenbergbraces.com/images/portrait-of-a-young-beautiful-woman-with-boho_500x598.png');
		background-repeat: no-repeat;
		background-position:bottom; /* Anchor to bottom-left */
		z-index: 1;
	}
	
	.hero-boy-image1 {
		position: absolute;
		bottom: 0;
		height: 510px !important;
		min-width: 532px !important;
		background-image: url('https://greenbergbraces.com/images/happy-teenager-in-white-hoodie_48890539_500x532.png');
		background-repeat: no-repeat;
		background-position:bottom; /* Anchor to bottom-left */
		z-index: 1;
	}
	.hero-man-image1 {
		position: absolute;
		bottom: 0;
		height: 510px !important;
		min-width: 563px !important;
		background-image: url('https://greenbergbraces.com/images/smiling_man_500x553.png');
		background-repeat: no-repeat;
		background-position:bottom; /* Anchor to bottom-left */
		z-index: 1;
	}
	.hero-content-container {
		position: relative;
		float: right;
		z-index: 1;
		display: flex;
		align-items: center;
	 /*   min-height: 100%;*/
	 /*   margin-left: 680px;*/
		width: calc(100% - 550px);
		padding: 1rem;
	/*	border: dashed pink 1px;*/
	}

	.text-shadow{
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        font-weight: 700;
	}
    .hero-content-container h1,
    .hero-content-container p {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        font-weight: 700;
    }
	
	.hero-gradient {
		background: var(--secondary-color);
	}
	
	
@media (max-width: 1330px) {
	.py-20 {
		padding-top: 1rem;
		padding-bottom: 3rem;
	}
}


@media (max-width: 1330px) {
/*
    .hero-girl-image {
        display: none;
		width: 0%;
    }
	
    .hero-secondary {
        min-height: 500px;
        background-image: 
            linear-gradient(
                135deg, 
                rgba(0, 95, 115, 0.7) 0%,
                rgba(10, 147, 150, 0.6) 50%,
                rgba(0, 95, 115, 0.8) 100%
            ),
            url('https://greenbergbraces.com/images/girlSmiling500hx549w.png');

        background-position: center bottom;
        background-repeat: no-repeat;
    }
  */  
    .hero-content-container {
		position: relative;
		float: right;
		height: 100%;
		width: 60%;
		padding: 1rem;
		border: none;
		font-size: 2rem;
    }
	
    .hero-content-container h1 {
        font-size: 3rem;
    }
	
	.lg\:text-6xl {
        font-size: 1.5rem;
        line-height: 1;
    }
}

/* All screens 1000px and above - Full height image, no scaling */
@media (max-width: 1100px) {
  

    /* Hide the positioned image element */
    .hero-girl-image {
        display: none;
		width: 0%;
    }
	
    .hero-secondary {
        min-height: 500px;
        background-image: 
            linear-gradient(
                135deg, 
                rgba(0, 95, 115, 0.7) 0%,
                rgba(10, 147, 150, 0.6) 50%,
                rgba(0, 95, 115, 0.8) 100%
            ),
            url('https://greenbergbraces.com/images/girlSmiling500hx549w.png');

        background-position: center bottom;
        background-repeat: no-repeat;
    }
    
    .hero-content-container {
		margin: auto;
		height: 100%;
		width: 90%;
		padding: 1rem;
		border: none;
		font-size: 1.5rem;
    }
	
    .hero-content-container h1 {
     /*   font-size: 1.5rem;*/
    }
}


@media (max-width: 600px) {
    .hero-content-container {
		width: 95%;
		font-size: 1.5rem;
    }
	
    .hero-content-container h1 {
		font-size: 2rem;
    }
	
}
