body, html {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            color: #333333;
        }
		
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
		
        header {
			position:fixed;
            width:100vw;
			background-color: #254459;
			height:calc(45px + 3vw);
			z-index: 2;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ffffff;
        }

        nav {
            float: left;
        }

        nav ul {
            list-style-type: none;
        }

        nav ul li {
            display: inline-block;
            margin-left: 5px;
        }

        nav ul li a {
            color: #ffffff;
            text-decoration: none;
			vertical-align:top;
        }

        /* Hero section styles */
        .hero {
            position: relative;
            height: 400px;
            overflow: hidden;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: slideIn 1s ease-out;
        }

        @keyframes slideIn {
            from { transform: translateX(-100%); }
            to { transform: translateX(0); }
        }

        .hero-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #ffffff;
			width: 390px;
        }
		.centered-box {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #ffffff;
        }

        .hero-text h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .cta-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #254459;
            color: #ffffff;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s;
			border-width:0px;
        }

        .cta-button:hover {
            background-color: #005c99;
        }

        /* Featured links styles */
        .featured-links{
            display: flex;
            justify-content: space-between;
            margin: 40px 0;
        }
		.testimonials{
            display: flex;
            justify-content: space-between;
            margin: 40px 0;
        }
        .featured-box {
            width: 48%;
            background-color: #f5f5f5;
            border-radius: 8px;
            overflow: hidden;
        }

        .featured-box img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .featured-box-content {
            padding: 20px;
        }

        .featured-box h3 {
            margin-top: 0;
        }

        .read-more {
            color: #005c99;
			background-color:#f5f5f5;
            text-decoration: none;
			border: none;
			font-size: 18px;
        }

        /* Text block styles */
        .text-block {
            margin: 40px 0;
        }

        /* Footer styles */
        footer {
            background-color: #254459;
            color: #ffffff;
            padding: 20px 0;
        }

        .contact-bar {
            display: flex;
            justify-content: space-between;
        }

        .social-icons a {
            color: #ffffff;
            text-decoration: none;
			display: inline-block;
            padding: 10px 20px;
            background-color: #254459;
            color: #ffffff;
            text-decoration: none;
            border-radius: 8px;
        }
		.social-icons a:hover {
			background-color: #005c99;
			
		}
		.product-details{
			display: inline-block;
			vertical-align: top;
			margin-left:20px;
		}
		.product-image{
			display: inline-block;
			
		}
		.logo {
			display:inline-block;
			vertical-align:middle;
			inline-size:170px;
		}
		.topbar {
			font-weight:bold;
			font-size:calc(10px + 0.5vw);
			inline-size:calc(55px + 6vw);
			overflow-wrap: break-word;
			display:inline-block;
			vertical-align:middle;
			text-align:center;
		}
		.buffer {
			height: calc(45px + 3vw)
		}
	    .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eee;
            padding: 10px 0;
		}
		.honeypot {
            display: none;
        }
		.modal {
            display: none;
            position: fixed;
            z-index: 5;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
			overflow-x:hidden;
            background-color: rgba(0,0,0,0.4);
        }
        .modal-content {
            background-color: #fefefe;
            margin: 15% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 600px;
            max-height: 70vh;
            overflow-y: auto;
            position: fixed;
            top: 30%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
		.mission {
			color: #0063a6;
			text-indent:25px;
			
		}
		.small-mission {
			color: #0063a6;
			font-size:16px;
			
		}
		.products-container {
			display: flex;
			justify-content: space-around;
			padding-bottom: 5%;
		}
        .product {
			width: 40%;
			border: 2px solid #ddd;
			padding: 20px ;
			text-align: center; 
		}
		.indentured {
			margin-left: 50px;
		}
		.bio-image {
			flex: 0 0 300px;
		}
		.bio-text {
			flex: 1;
			min-width: 250px;
			margin-right: 35px;
		}
		.flextainer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
			display:flex;
			flex-wrap: wrap;
        }
		.res-imgs {
		  display: flex;
		  flex-direction: column;
		  overflow-y: auto;
		  gap: 10px;
		  padding: 10px;
		  height: 480px; /* Adjust this value to set the container height */
		  width: auto; /* Adjust this value to set the container width */
		}

		.res-imgs img {
		  max-width: 100%;
		  height: auto;
		  object-fit: contain;
		}
		.shrink-image {
			width: calc(25vw);
			height: calc(30vw);
			border: 1px solid #ddd;
		}
		.portrait-section {
		  display: flex;
		  align-items: center;
		  max-width: 1200px;
		  margin: 0 auto;
		}

		.portrait-container {
		  flex: 1;
		  padding: 20px;
		  text-align: center;
		  max-width: 200px;
		}

		.portrait-container img {
		  max-width: 100%;
		  height: auto;
		}

		.caption {
		  margin-top: 10px;
		  font-style: italic;
		  color: #666;
		}

		.text-container {
		  flex: 1;
		  padding: 20px;
		}
		.hamburger-menu {
			display:none;
			background:none;
			border:none;
			font-size:24px;
			cursor:pointer;
			color:#ffffff;
		}
		.nav-container {
			display: flex;
			justify-content: flex-end;
		}

		.main-nav ul {
			justify-content: center;
			align-items: center;
			margin-left: 5px;			
			list-style-type: none;
			padding: 0;
			display: flex;
		}

		.main-nav li {
			margin-right: 20px;
			vertical-align:middle;
		}

        .main-nav ul li a {
            color: #ffffff;
            text-decoration: none;
			vertical-align:top;
        }
        .pic-in-inset {
            margin-left: auto;
            margin-right: auto;
            /* Optional: set a width smaller than the container for the effect to be visible */
            width: 100%; 
        }
        .bullet-list {
            list-style-type: circle;
        }
        .line-spacer {
            line-height: 1.4;
        }
        .product-description { margin-top: 15px; text-align: left; }
        .price { font-weight: bold; font-size: 1.2em; margin: 10px 0; }
        .popup-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); justify-content: center; align-items: center; }
        .popup-form { background: white; padding: 20px; border-radius: 5px; width: 300px; }
        .close-btn { float: right; cursor: pointer; }
        .curricpic {
            width: 20vw;
            object-fit: contain;
            aspect-ratio: 1 / 1;
            display: flex;
            margin: 20px;
            border: 1px solid #000;
        }
		.curric-thumbs img, video{
            width: 2vw;
		}
		@media only screen and (max-width: 430px) {
		    /* For mobile phones: */
		    .topbar {
			    padding: calc(6px + 0.2vw);
				inline-size: calc(75px + 8vw);
			}
			.testimonials {
                display: block;
            }
            .testimonials .featured-box {
                width: 100%;
                margin: 40px 0 0 0;
            }
            .portrait-section {
                display:block;
            }
            .portrait-container {
                margin: 0 0 0 35px;
            }
			ul {
				padding-left: 0px;
			}
			.hero-text {
				width: 65vw;	
			}
			portrait-section {
				display:block;
			}
		}
		
		@media screen and (max-width: 768px) {
			.curricpic {
			    width:60vw;
			}
			.curric-thumbs img, video{
			    width: 6vw;
			}
			.nav-container {
				justify-content: flex-start;
			}

			.hamburger-menu {
				display: block;
				position: fixed;
				top: 10px;
				left: 10px;
				z-index: 1000;
			}

			.main-nav {
				position: fixed;
				left: -150px;
				top: 0;
				width: 150px;
				height: 100%;
				background:#254459;
				transition: left 0.3s ease;
				z-index: 999;
			}

			.main-nav.active {
				left: 0;
				max-width:150px;
			}

			.main-nav ul {
				flex-direction: column;
				padding-top: 60px;
			}

			.main-nav li {
				margin: 0;
				padding: 15px;
				border-bottom: 1px solid #ddd;
			}
			.product {
			    font-size:14px;
			}
	    	.product-description {
			    font-size:10px;
			}
			

		}
		@media screen and (max-width: 430px) {
            .product {
			    font-size:6px;
			}
	    	.product-description {
			    font-size:6px;
			}
            



		}