

/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
}

.flex-container {
  display: flex;
  flex-direction: column;
  background-color: black;
}

/* Left and right column */
.column.side {
  width: 40%;
}

.column.left {
  width: 15%;
 
}


/* Middle column */
.column.middle {
  width: 45%;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}


* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

 
body {
   
    font-size: 18px;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
 font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
    color: #FFFFFF;
    background-color:black;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background: #4D4DDB;
    color: white;
     text-align: left;
    padding: .5rem 0;
}

.nav-container {
    display: flex;
    align-items: left;
    justify-content: space-between;
     
    width: 100%;
    margin: 0 auto;
}


.nav-container .logo {
    font-size: 2rem; 
    font-weight: bold;  
}


.banner100 {
    
background:black;
    
 
}

.nav {
    display: flex;
    flex-grow: 1;
background:black;
    
 
}

.nav--ul__one {
    margin: 0 auto;
align-items: left;
}

.nav-container, .nav--ul__one,
.nav--ul__two {
    display: flex;
    gap: 1.6rem;
    font-size: 1.2rem;
     color: white;
}

.hamburger-menu {
    display: none; /* Hidden by default for larger screens */
    cursor: pointer;
}

span.hamburger-menu.material-symbols-outlined {
display: none; /* Hidden by default for larger screens */
    cursor: pointer;
}


/* HEADINGS   
----------------------------------------------------------*/

h1, h2, h3, h4, h5, h6
{
    font-size: 1.5em;
    color: #666666;
    font-variant: small-caps;
    text-transform: none;
    font-weight: 200;
    margin-bottom: 0px;
}

h1
{
    font-size: 1.6em;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

h2
{
    font-size: 1.5em;
    font-weight: 600;
}

h3
{
    font-size: 1.2em;
}

h4
{
    font-size: 1.1em;
}

h5, h6
{
    font-size: 1em;
}


a:link, a:visited
{
    color: #034af3;
}

a:hover
{
    color: #1d60ff;
    text-decoration: none;
}

a:active
{
    color: #034af3;
}



		/* Media Query for Mobile Devices */
		@media (max-width: 480px) {
			h1 {
				color: red;
			}

 .column.side, .column.middle {
    width: 100%;
       background-color:black;
  }


		}

                @media only screen and (max-width: 600px) {
                body {
                      background-color:black;
                   }
.column.left {
   display: none;
}
  .column.side {
  width: 100%;
}
.column.middle {
  width: 100%;
}

 .nav-container .logo {
        font-size: 1.2rem;
        z-index: 2;
    }

    .nav {
        flex-direction: column;
        gap: 2rem;
    }

    .nav--ul__one,
    .nav--ul__two {
        flex-direction: column;
         align:left;
         color: white;
        gap: .6rem;
    }
 
    .hamburger-menu {
        display: block;
        cursor: pointer;
        z-index: 2;
    }
 
span.hamburger-menu.material-symbols-outlined {
 display: block;
        cursor: pointer;
        z-index: 2;
}

    .nav {
        position: absolute;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 100%;

        padding-top: 6rem;

        align-items: center;
        text-align: center;
        background-color: black;
        color: white;

        transition: 0.15s ease-in-out;
    }

    .nav.active {
        right: 0;
    }

nav .navbar-nav li a{
  color: white !important;
  }
                  }
		/* Media Query for low resolution Tablets, Ipads */
		@media (min-width: 481px) and (max-width: 767px) {
			h1 {
				color: yellow;
			}
		}

		/* Media Query for Tablets Ipads portrait mode */
		@media (min-width: 768px) and (max-width: 1024px) {
			h1 {
				color: blue;
			}
		}

		/* Media Query for Laptops and Desktops */
		@media (min-width: 1025px) and (max-width: 1280px) {
			h1 {
				color: green;
			}
		}

		/* Media Query for Large screens */
		@media (min-width: 1281px) {
			h1 {
				color: rgb(66, 7, 161);
			}
		}
