﻿/* Mobile Styles (default) */

* {
    box-sizing: border-box;
	}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    font-size: 16px; /* Set a base font size for the entire document */
	}

h1 {
    font-size: 1.2em; /* Adjust the font size for h1 */
	}

h2 {
    font-size: 1em; /* Adjust the font size for h2 */
    margin: 3px;
	}
	
h3 {
	font-size: 1.2em;
}

p {
    font-size: .8em; /* Adjust the font size for paragraphs */
	}

header {
	background-color: rgba(255, 255, 255, 0.6); /* Adjust the last value (0.8) for opacity */
    color: #fff;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Add a box shadow */
    transition: opacity 1s ease-in-out; /* Set the transition duration to 1 second */
	}

.logo {
    height: 40px; /* Set the desired height */
	}

.logo img {
    height: 100%; /* Scale the image to fill the height of the container */
    width: auto; /* Maintain the aspect ratio */
	}

.company-name {
    font-size: 16px;
    color: #BC3500;
    white-space: nowrap; /* Prevent text from wrapping */
    flex: 1; /* Distribute remaining space evenly */
    text-align: center; /* Center the text within the available space */
    overflow: hidden; /* Hide overflow text */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Add a subtle text shadow */
	}

.navButton {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0; /* Remove default padding */
    height: 30px; /* Set the desired height for the button */
    width: auto; /* Let the width adjust to the content */
	}

.navButton img {
    height: 100%; /* Set the height of the image to fill the button */
    width: auto; /* Maintain the aspect ratio */
	}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
	}

nav a {
    text-decoration: none;
    color: #BC3500; /* Set the text color to red */
	}

nav a:visited {
    color: #BC3500; /* Set the visited link color to red */
	}

.dropdown-nav {
    display: none;
    position: absolute;
    top: 50px; /* Adjust as needed */
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border: 2px solid #2B21B3; /* Add a blue border around the drop-down nav */
    border-radius: 10px; /* Adjust the value to control the roundness of the corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	}

.dropdown-nav ul {
    flex-direction: column;
    gap: 10px;
	}

.content-section {
	position: relative;
    margin: 0 auto; /*auto 20px; /* Adjust the margin to position it beneath the header */
    padding: 20px;    
    padding-top: 55px;
    }
    
.content2-section {
	position: relative;
    margin: 0 auto; /*auto 20px; /* Adjust the margin to position it beneath the header */
    padding: 20px;
    border-top: 5px solid #BC3500; /* Adjust the width and color of the border */
    }
    
.content3-section {
	position: relative;
    margin: 0 auto; /*auto 20px; /* Adjust the margin to position it beneath the header */
    padding: 0px;    
    }
    
.content4-section {
	position: relative;
    margin: 0 auto; /*auto 20px; /* Adjust the margin to position it beneath the header */
    padding: 20px;
    padding-top: 55px;   
    }

.bg-color-transparent {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(200, 200, 200, 1), rgba(64, 64, 64, 1)); /* Adjust the gradient colors and transparency */
    z-index: 1; /* Behind background image and content */
	}

.bg-color-transparent img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
	}
	
.bg-color2-transparent {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(200, 200, 200, 0), rgba(160, 160, 160, 1)); /* Adjust the gradient colors and transparency */
    z-index: 1; /* Behind background image and content */
	}

.bg-color2-transparent img {
	width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 2;
	}

.bg-color3-transparent {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(170, 170, 170, 1), rgba(0, 0, 0, 1)); /* Adjust the gradient colors and transparency */
    z-index: 2; /* Behind background image and content */
	}

.bg-color3-transparent img {
	width: auto%;
    height: 100%;
    object-fit: cover;
    background-position: center top;
    z-index: 1;
	}
	
.bg-color4-transparent {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(170, 170, 170, 1), rgba(0, 0, 0, 1)); /* Adjust the gradient colors and transparency */
    z-index: 1; /* Behind background image and content */
	}

.bg-color4-transparent img {
	width: auto%;
    height: 100%;
    object-fit: cover;
    background-position: center top;
    z-index: 2;
	}


.bg-image-transparent {
    position: absolute; /* Ensure the image respects the stacking order */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: 100% auto;
    background-position: top;
    background-repeat: no-repeat;
    background-color: rgba(200, 200, 200, 1); /* Adjust the color and transparency */
    z-index: 1; /* Above background color, behind content */
    }

.bg-image2-transparent {
    position: absolute; /* Ensure the image respects the stacking order */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2; /* Above background color, behind content */
	}

.bg-image2-transparent:before {
    content: "";
    position: absolute; /* Use absolute for full coverage */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(200, 200, 200, .5), rgba(160, 160, 160, 1)); /* Adjust the gradient colors and transparency */
    z-index: 1; /* Above background image, behind content */
	}

.section-content {
	display: flex;
    flex-direction: column;
    align-items: center; /* Center-align items horizontally */
    justify-content: center; /* Center-align items vertically */
    position: relative; /* Ensure the content respects the stacking order */
    z-index: 4; /* In front of background color and image */
    }

.section-content img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    }
    
.section-content2 {
	display: none;
    flex-direction: column;
    align-items: center; /* Center-align items horizontally */
    justify-content: center; /* Center-align items vertically */
    position: relative; /* Ensure the content respects the stacking order */
    z-index: 4; /* In front of background color and image */
    }

.section-content2 img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    }
    
.section-content3 {
	display: flex;
    flex-direction: column;
    align-items: center; /* Center-align items horizontally */
    justify-content: center; /* Center-align items vertically */
    position: relative; /* Ensure the content respects the stacking order */
    z-index: 4; /* In front of background color and image */
    }

.section-content3 img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    }

.textbox1 {
    max-width: 600px;
    margin: 20px auto;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.6); /* Transparent background color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Box shadow */
    border-radius: 10px; /* Adjust the value to control the roundness of the corners */
	}

.textbox1 p {
    color: #000; /* Text color */
    margin: 0;
	}

.textbox2 {
	position: relative;
    max-width: 100%;
    margin: 0px auto;
    padding: 10px;
    padding-bottom: 20px;
    background-color: rgba(255, 255, 255, 0); /* Transparent background color */
    z-index: 3;
	}

.textbox2 p {
    color: #fff; /* Text color */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* Text Shadow */
    margin: 0;
    text-align: center;
	}

.textbox2 h1 {
    color: #fff; /* Text color */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* Text Shadow */
    margin: 0;
    text-align: center;
	}
	
.textbox3 {
	position: relative;
    max-width: 100%;
    margin: 0px auto;
    padding: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgba(255, 255, 255, 0); /* Transparent background color */
    z-index: 3;
	}
	
.textbox3 h1 {
    color: #fff; /* Text color */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* Text Shadow */
    margin: 0;
    text-align: center;
	}
	
.textbox4 {
	position: relative;
    max-width: 100%;
    margin: 0px auto;
    padding: 10px;
    padding-bottom: 20px;
    background-color: rgba(255, 255, 255, 0); /* Transparent background color */
    z-index: 3;
	}

.textbox4 p {
    color: #000; /* Text color */
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3); /* Text Shadow */
    margin: 0;
    text-align: justify;
	}

.textbox4 h1 {
    color: #000; /* Text color */
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3); /* Text Shadow */
    margin: 0;
    text-align: center;
	}


.align-right {
    margin-left: auto;
    margin-right: 20px; /* Adjust the margin to control the alignment */
    }
        
.align-left {
	margin-left: 20px;
    margin-right: auto; /* Adjust the margin to control the alignment */
    }
        
.copyright-box {
    position: fixed;
    width: 100%;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.5); /* Background color with transparency */
    font-size: 8px;
    color: #fff; /* Text color */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* Text Shadow */
    padding: 0px;
    margin: 0px;
    z-index: 10;
    /*border-radius: 5px;*/
	}

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
	}

.logo-container img {
	max-height: 85px; /* Set the maximum height for the logo */
    width: auto; /* Let the width adjust proportionally */
    max-width: 100%; /* Ensure the logo doesn't exceed its container */
    }
    
.logo-container2 {
	display: none;
    position: absolute;
    box-sizing: border-box;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    height: 100%;
	}

.logo-container2 img {
	max-height: 100%; /* Set the maximum height for the logo */
    width: auto; /* Let the width adjust proportionally */
    opacity: .5;
    /*max-width: 100%; /* Ensure the logo doesn't exceed its container */
    }


.image-container1 {
	/*flex: 1; /* Takes up 1/3 of the space */
	width: 100%;
	margin: 0px;
 	box-sizing: border-box; 	
 	}

.image-container1 img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio while covering the container */
    border-radius: 10px; /* Adjust the value to control the roundness of the corners */
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Add a box shadow */
	}
	
.text-container1 {
	flex: 2; /* Takes up 2/3 of the space */
    padding: 0px; /* Adjust padding as needed */
    }

.text-container1 h2 {
    font-size: 24px; /* Adjust font size as needed */
    margin-bottom: 10px; /* Adjust margin as needed */
    text-align: center;
	}
	
.text-container2 {
	flex: 1; /* Takes up 2/3 of the space */
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8); /* Text Shadow */
    padding: 0px; /* Adjust padding as needed */
    }

.text-container2 h2 {
    font-size: 24px; /* Adjust font size as needed */
    color: white;
    margin-bottom: 10px; /* Adjust margin as needed */
    text-align: center;
	}
	
.text-container2 p {
    color: white;
    text-align: justify;
    }

.flex-container1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	justify-content: space-around;
	position: relative;
	padding-left: 20px; /* Adjust padding as needed */
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	z-index: 4;
	}
	
.flex-container2 {
	display: none;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	justify-content: space-around;
	position: relative;
	padding-left: 20px; /* Adjust padding as needed */
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	z-index: 4;
	}

.flex-container3 {
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	justify-content: space-around;
	position: relative;
	padding: 0px; /* Adjust padding as needed */
	z-index: 4;
	}
	
.contact-form-container {
	display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 4;
	}

.contact-form-container2 {
	display: flex;
	flex-direction: column;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 4;
	}

.contact-form {
	width: 100%;
	margin: 20px auto 0; /* Adjust the top margin as needed */
	padding: 10px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	background-color: #f4f4f4;
	/*z-index: 4;*/
	}
	
.contact-form h2 {
	font-size: 1.3em;
	color: #000;
	text-align: center;
	}
	
.contact-form p {
	font-size: .65em;
	color: #000;
	text-align: center;
	}
	
.contact-form label {
	font-size: .8em;
	color: #000;
	}

.additional-info {
	/*display: flex;*/
	justify-content: space-between;
   	align-items: center;
	width: 100%;
	margin: 20px auto 0; /* Adjust the top margin as needed */
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	background-color: #f4f4f4;
	z-index: 4;
	}

.additional-info .text {
   	/*flex: 1; /* This allows the text to take up remaining space */
   	text-align: left;
   	/* Add other styles for the text if needed */
   	}

.additional-info img {
   	border: 2px solid #ccc; /* Add a 2px solid border with a light gray color */
   	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* Add a drop shadow */
   	max-width: 100%; /* Ensure the image doesn't exceed its container's width */
   	height: auto; /* Maintain the image's aspect ratio */
   	margin-top: 10px;
   	z-index: 5;
  	}
		/* .additional-info img {
    	    border: 2px solid #ccc; /* Add a 2px solid border with a light gray color 
    	    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* Add a drop shadow 
    	    max-width: 80%; /* Ensure the image doesn't exceed its container's width 
    	    height: auto; /* Maintain the image's aspect ratio 
    	    margin-top: 10px;
    	    margin-left: auto; /* Center the image horizontally 
       		margin-right: auto; /* Center the image horizontally 
       	}*/
       		
.form-group {
	width: 100%;
	}
	
label {
    display: block;
    font-weight: bold;
    margin-bottom: 0px;
    }

input, textarea {
	font-family: inherit;
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 5px;
    box-sizing: border-box;
    }
          
button {
    background-color: #2B21B3;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;        
    }
    
.button-container1 {
	/*position: absolute;
	/*margin-left: 100px;
	margin-top: 200px;*/
	}

	





/* Computer Screen Styles */

@media only screen and (min-width: 768px) {
    /* Adjustments for screens with a width of 768 pixels or more */

body, html {
    font-family: 'Arial', sans-serif;
    font-size: 16px; /* Set a base font size for the entire document */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100vw;
	}

h1 {
    font-size: 2em; /* Adjust the font size for h1 */
	}

h2 {
    font-size: 1.5em; /* Adjust the font size for h2 */
    /*margin: 3px;*/
	}
	
h3 {
	font-size: 2em;
}


p {
    font-size: 1em; /* Adjust the font size for paragraphs */
	}

li {
	font-size: 1.2em;
	}

header {
	background-color: rgba(255, 255, 255, 0.6); /* Adjust the last value (0.8) for opacity */
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Add a box shadow */
    transition: opacity .5s ease-in-out; /* Set the transition duration to 1 second */
	}

.logo {
    height: 80px; /* Set the desired height */
	}

.logo img {
    height: 100%; /* Scale the image to fill the height of the container */
    width: auto; /* Maintain the aspect ratio */
	}

.company-name {
    font-size: 36px;
    color: #BC3500;
    white-space: nowrap; /* Prevent text from wrapping */
    flex: 1; /* Distribute remaining space evenly */
    text-align: center; /* Center the text within the available space */
    overflow: hidden; /* Hide overflow text */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Add a subtle text shadow */
	}

.navButton {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0; /* Remove default padding */
    height: 60px; /* Set the desired height for the button */
    width: auto; /* Let the width adjust to the content */
	}

.navButton img {
    height: 100%; /* Set the height of the image to fill the button */
    width: auto; /* Maintain the aspect ratio */
	}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 10px; /* Remove default margin */
    padding: 0px; /* Remove default padding */
	}

nav a {
    text-decoration: none;
    color: #BC3500; /* Set the text color to red */
	}

nav a:visited {
    color: #BC3500; /* Set the visited link color to red */
	}

.dropdown-nav {
    display: none;
    position: absolute;
    top: 100px; /* Adjust as needed */
    right: 5;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border: 2px solid #2B21B3; /* Add a blue border around the drop-down nav */
    border-radius: 10px; /* Adjust the value to control the roundness of the corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}

.dropdown-nav ul {
    flex-direction: column;
    gap: 15px;
	}
	
.content-section {
	position: relative;
    width: 100%;
    /*margin-left: 0px;
    margin-right: 0px;*/
    padding: 20px;    
    padding-top: 100px;
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Add a box shadow */
    }
   
.content2-section {
	position: relative;
    width: 100%;
    padding: 20px;
    border-top: 5px solid #BC3500; /* Adjust the width and color of the border */
    }
    
.content3-section {
	position: relative;
    margin: 0 auto; /*auto 20px; /* Adjust the margin to position it beneath the header */
    padding: 20px;    
    }
    
.content4-section {
	position: relative;
    margin: 0 auto; /*auto 20px; /* Adjust the margin to position it beneath the header */
    padding: 20px;
    padding-top: 100px;   
    }

.bg-color-transparent {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(200, 200, 200, 1), rgba(64, 64, 64, 1)); /* Adjust the gradient colors and transparency */
    z-index: 1; /* Behind background image and content */
	}

.bg-color-transparent img {
	width: 100%;
    background-size: cover;
    z-index: 2;
	}
	
.bg-color2-transparent {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(200, 200, 200, 0), rgba(160, 160, 160, 1)); /* Adjust the gradient colors and transparency */
    z-index: 1; /* Behind background image and content */
	}

.bg-color2-transparent img {
	width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 2;
	}
	
.bg-color3-transparent {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(170, 170, 170, 1), rgba(0, 0, 0, 1)); /* Adjust the gradient colors and transparency */
    z-index: 2; /* Behind background image and content */
	}

.bg-color3-transparent img {
	width: auto;
    height: 100%;
    object-fit: cover;
    background-position: center top;
    z-index: 1;
	}

.bg-image-transparent {
    position: absolute; /* Ensure the image respects the stacking order */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    object-fit: cover;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-color: rgba(200, 200, 200, 1); /* Adjust the color and transparency */
    z-index: 1; /* Above background color, behind content */
	}

.bg-image2-transparent {
    position: absolute; /* Ensure the image respects the stacking order */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2; /* Above background color, behind content */
	}

.bg-image2-transparent:before {
    content: "";
    position: absolute; /* Use absolute for full coverage */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(200, 200, 200, .5), rgba(160, 160, 160, 1)); /* Adjust the gradient colors and transparency */
    z-index: 1; /* Above background image, behind content */
	}

.section-content {
	display: none;
	width: 100%;
	margin: 0;
	padding: 20px;
	box-sizing: border-box; /* Include padding and border in the total width/height */
    flex-direction: column;
    align-items: center; /* Center-align items horizontally */
    justify-content: center; /* Center-align items vertically */
    position: relative; /* Ensure the content respects the stacking order */
    z-index: 4; /* In front of background color and image */
	}

.section-content img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
	}
	
.section-content2 {
	display: flex;
    flex-direction: row;
    align-items: center; /* Center-align items horizontally */
    justify-content: center; /* Center-align items vertically */
    position: relative; /* Ensure the content respects the stacking order */
    z-index: 4; /* In front of background color and image */
    }

.section-content2 img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    }
    
.section-content3 {
	display: flex;
	width: 100%;
	margin: 0;
	padding: 20px;
	box-sizing: border-box; /* Include padding and border in the total width/height */
    flex-direction: column;
    align-items: center; /* Center-align items horizontally */
    justify-content: center; /* Center-align items vertically */
    position: relative; /* Ensure the content respects the stacking order */
    z-index: 4; /* In front of background color and image */
	}

.section-content3 img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
	}



.textbox1 {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.6); /* Transparent background color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Box shadow */
    border-radius: 20px; /* Adjust the value to control the roundness of the corners */
	}

.textbox1 p {
    /*font-size: 12px;*/
    font-size: 1.5em;
    color: #000; /* Text color */
    margin: 0;
	}
	
.textbox1 h2 {
	font-size: 2.2em;
	color: #000;
	margin: 0;
}

.textbox2 {
	position: relative;
    max-width: 100%;
    margin: 0px auto;
    padding: 10px;
    padding-bottom: 20px;
    background-color: rgba(255, 255, 255, 0); /* Transparent background color */
    z-index: 3;
	}

.textbox2 p {
    color: #fff; /* Text color */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* Text Shadow */
    margin: 0;
    text-align: center;
	}

.textbox2 h1 {
    color: #fff; /* Text color */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* Text Shadow */
    margin: 0;
    text-align: center;
	}
	
.textbox3 {
	position: relative;
    max-width: 100%;
    margin: 0px auto;
    padding: 10px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: rgba(255, 255, 255, 0); /* Transparent background color */
    z-index: 3;
	}
	
.textbox3 h1 {
    color: #fff; /* Text color */
    font-size: 3em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* Text Shadow */
    margin: 0;
    text-align: center;
	}

.align-right {
	margin-left: auto;
    margin-right: 80px; /* Adjust the margin to control the alignment */
    /*text-align: right;*/
    }
        
.align-left {
    margin-left: 80px;
    margin-right: auto; /* Adjust the margin to control the alignment */
    /*text-align: left;*/
    }
        
.copyright-box {
    position: fixed;
    width: 100%;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.5); /* Background color with transparency */
    font-size: 8px;
    color: #fff; /* Text color */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* Text Shadow */
    padding: 0px;
    padding-left: 10px;
    margin: 0px;
    z-index: 10;
    }

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
	}

.logo-container img {
	max-height: 150px; /* Set the maximum height for the logo */
    width: auto; /* Let the width adjust proportionally */
    max-width: 100%; /* Ensure the logo doesn't exceed its container */
    }
    
.logo-container2 {
	display: block;
    position: absolute;
    box-sizing: border-box;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    height: 100%;
	}

.logo-container2 img {
	}
    
.image-container1 {
	flex: 1; /* Takes up 1/3 of the space */
	margin: 10px;
 	box-sizing: border-box;
 	}

.image-container1 img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio while covering the container */
    border-radius: 10px; /* Adjust the value to control the roundness of the corners */
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Add a box shadow */
	}
	
.text-container1 {
	flex: 2; /* Takes up 2/3 of the space */
    padding: 0 20px; /* Adjust padding as needed */
    }

.text-container1 h2 {
    font-size: 30px; /* Adjust font size as needed */
    margin-bottom: 10px; /* Adjust margin as needed */
	}
	
.text-container2 {
	flex: 1; /* Takes up 2/3 of the space */
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8); /* Text Shadow */
    padding: 10px; /* Adjust padding as needed */
    }

.text-container2 h2 {
    font-size: 24px; /* Adjust font size as needed */
    color: white;
    margin-bottom: 10px; /* Adjust margin as needed */
    text-align: center;
	}
	
.text-container2 p {
    color: white;
    font-size: .9em;
    text-align: justify;
    }

.flex-container1 {
	display: none;
	flex-direction: row;
	align-items: center;
	justify-content: space-around;
	box-sizing: border-box;
	padding: 20px; /* Adjust padding as needed */
	position: relative;
	z-index: 4;
	}
		
.flex-container2 {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-around;
	box-sizing: border-box;
	padding: 20px; /* Adjust padding as needed */
	position: relative;
	z-index: 4;
	}
	
.flex-container3 {
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	justify-content: space-around;
	position: relative;
	padding: 0px; /* Adjust padding as needed */
	z-index: 4;
	}
	
.contact-form-container {
	display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
	}

.contact-form {
	width: 60%;
	margin: 20px auto 0; /* Adjust the top margin as needed */
	margin-right: 20px;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	background-color: #f4f4f4;
	}
	
.contact-form h2 {
	font-size: 1.5em;
	color: #000;
	text-align: center;
	}
	
.contact-form p {
	font-size: 1em;
	color: #000;
	text-align: center;
	}
	
.contact-form label {
	font-size: 1em;
	color: #000;
	margin-bottom: 5px;
	}


.additional-info {
	/*display: flex;*/
	justify-content: space-between;
   	align-items: center;
	width: 30%;
	margin: 20px auto 0; /* Adjust the top margin as needed */
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	background-color: #f4f4f4;
	}

.additional-info .text {
   	/*flex: 1; /* This allows the text to take up remaining space */
   	text-align: left;
   	/* Add other styles for the text if needed */
   	}

.additional-info img {
   	border: 2px solid #ccc; /* Add a 2px solid border with a light gray color */
   	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* Add a drop shadow */
   	max-width: 100%; /* Ensure the image doesn't exceed its container's width */
   	height: auto; /* Maintain the image's aspect ratio */
   	margin-top: 10px;
  	}
		/* .additional-info img {
    	    border: 2px solid #ccc; /* Add a 2px solid border with a light gray color 
    	    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* Add a drop shadow 
    	    max-width: 80%; /* Ensure the image doesn't exceed its container's width 
    	    height: auto; /* Maintain the image's aspect ratio 
    	    margin-top: 10px;
    	    margin-left: auto; /* Center the image horizontally 
       		margin-right: auto; /* Center the image horizontally 
       	}*/
       		
.form-group {
    margin-bottom: 10px;
	}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 0px;
    }

input, textarea {
	font-family: inherit;
	font-size: 1em;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 5px;
    box-sizing: border-box;
    }
          
button {
    background-color: #2B21B3;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;        
    }
    
.button-container1 {
	/*position: absolute;
	/*margin-left: 100px;
	margin-top: 200px;*/
	}





}
