
    /* CSS Styles for the layout */
    body {
        margin: 0;
        padding: 0;
        background-color: #ffffff;
        background-image: url('../Images/bgtotal.svg');
        background-size: cover;
        font-family: Raleway, Arial, sans-serif;
    }
    
 .navbar {
  font-family: Raleway, Arial, sans-serif;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  height: 60px;
  display: flex;
  align-items: center;
}

.navbar-logo {
  float: left;
  margin-right: 10px;
}

.navbar-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1; /* This will make the links take up the remaining space. */
}

.navbar a {
  display: inline-block;
  font-size: 16px;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  font-family: Raleway, Arial, sans-serif;
  font-weight: bold;
  float: left;
  overflow: hidden;
}

	.dropdown .dropbtn {
	  font-family: Raleway, Arial, sans-serif;
	  font-weight: bold; 
	  font-size: 16px;
	  border: none;
	  outline: none;
	  color: black;
	  padding: 14px 16px;
	  background-color: inherit;
	  font-family: inherit;
	  
	}

	.navbar a:hover, .dropdown:hover .dropbtn {
	  background-color: #ffffff;
	  border-bottom: 2px solid #87d8d6;
	}
	

	.dropdown-content {
	  display: none;
	  position: absolute;
	  background-color: #ffffff;
	  min-width: 160px;
	  box-shadow: none;
	  z-index: 1;
	}

	.dropdown-content a {
	  float: none;
	  color: black;
	  padding: 14px 16px;
	  text-decoration: none;
	  display: block;
	  text-align: left;
	}

	.dropdown-content a:hover {
	  background-color: #ffffff
	}
	.fa-caret-down {
    font-size: 20px; /* Adjust the size as needed */
    transform: scale(4); /* Scale the icon up by a factor of 2 */

}

.dropdown:hover .dropdown-content {
  display: block;
}
    #content-wrap {
        padding-bottom: 4rem;    
    }

/* footer of document */
		.footer {
		  background-color: #bed9d7;
		  text-align: center;
		  position: fixed;
		  bottom: 0;
		  padding: 0px;
		  width: 100%;
		  height: 2.5rem;
		}

		/* Adjust the icon size */
		.footer .fa {
		  font-size: 20px;
		}

		.footer-text {
		  display: inline-block;
		  vertical-align: middle; /* Add this property to vertically align the text with the icons */
		}

		/* Adjust the position of the icons */
		.footer-icons {
		  display: inline-block;
		  vertical-align: middle; /* Add this property to vertically align the icons with the text */
		  margin-left: 10px; /* Add some space between the text and the icons */
		}
		
			.fa {
		padding: 1px;
		font-size: 5px;
		width: 10px;
		text-align: center;
		text-decoration: none;
		margin: 5px 2px;
		border-radius: 50%;
    

		}

		.fa:hover {
			opacity: 0.7;
		}

		.fa-facebook {
		  
		  color: #3b5998;
		}

		.fa-instagram {
		  
		  color: #962fbf;
		}

    .content {
        width: 68%;
        margin: 0 auto;
        padding: 20px;
        background-color: #ffffff;
        border-radius: 10px;
    }
    
    .content video {
    max-width: 100%; /* Ensures the video does not exceed the width of the container */
    height: auto;    /* Maintains the aspect ratio of the video */
    display: block;  /* Removes inline spacing */
    margin: 0 auto;  /* Centers the video horizontally */
}


    .bottom-left-image {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('Images/bottomleft.svg');
        background-repeat: no-repeat;
        background-size: cover;
    }

    .header-gap {
        margin-bottom: 2px; /* Adjust this value as needed */
    }

    h1, h2, h3 {
        font-family: "Bungee Shade", Arial, sans-serif;
    }

    h4, h5, h6 {
        font-family: "Bungee", Arial, sans-serif;
    }

    .center {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
    }

    .grid-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
    }

    .column {
        border: 2px solid #333333;
        border-radius: 20px;
        padding: 20px;
        margin-bottom: 0px;
    }
