body, html {
    margin: 0;
    height: 100%;
    overflow: hidden;
}

.active {
    background-color: #628b63; /* Add your desired background color for the active item */
    color: white; /* Add your desired text color for the active item */
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

nav {
    background-color: #333;
    padding: 10px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

li {
    display: inline;
    margin-right: 20px;
}

a {
    color: white;
    text-decoration: none;
    padding: 14px 16px;
    display: inline-block;
}

a:hover {
    background-color: #ddd;
    color: black;
}

.home-page {
    text-align: center;
}

.video-container {
    max-width: 500px;
    margin: 20px auto;
    overflow: hidden;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    width: 100%;
    height: 315px;
    border: none;
}

/* Navigation Styles */
.desktop-nav,
.mobile-nav-list {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

.mobile-nav-list {
    background-color: #333;
    position: absolute;
    width: 100%;
    top: 60px;
    display: none;
    z-index: 1;
}

.mobile-nav-list li {
    margin: 10px 0;
}

.mobile-nav-list a {
    color: white;
    text-decoration: none;
}

/* Adjustments for smaller screens */
@media screen and (max-width: 600px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu {
        display: inline-block; /* Change 'block' to 'none' */
        text-align: center;
    }

    .mobile-nav-list {
        display: none; /* Add this line to hide the mobile nav list by default */
    }

    .menu-icon {
        display: inline-block;
        padding: 10px;
    }

    .desktop-nav ul {
        display: none;
    }
}

/* Show desktop navigation above 600px */
@media screen and (min-width: 601px) {
    .desktop-nav {
        display: block;
    }

    .mobile-menu,
    .menu-icon {
        display: none;
    }
}

.mobile-nav-list {
    display: none;
    /* Additional styles for better visibility */
    background-color: #333;
    padding: 10px;
    border-radius: 5px;
}

/* Navigation Bar Styles */
.navigation-bar {
    /* Add your navigation bar styles here */
}

/* Emergency Codes List Styles */
.codes-list {
    white-space: pre-line; /* Force line breaks in list items */
    max-height: 80%; /* Adjust the height as needed */
    overflow-y: scroll; /* Enable vertical scrolling */
}

/*--------------------------------------*/


.container {
  max-width: 800px;
    margin: 0 auto; /* This centers the container horizontally */
    background-color: #fff;
    color: #333;
    padding: 20px;
}




@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,300,600,700,900);

@rhino: #323b40;
@rhinoMid: #4f585e;
@teal: #0096a1;
@tealMid: #0ebac7;
@red: #fc625c;
@amber: #fdbc40;
@green: #34c748;
@offWhite: #e9eaea;

html {
  background: @rhinoMid;
}

div.browser {
  background: #fff url(http://www.s4c.cymru/temp/unsplash-kitsune-4.jpg) no-repeat;
  background-size: cover;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  box-shadow: 0 4px 8px -4px rgba(0,0,0,0.4), 0 12px 24px -6px rgba(0,0,0,0.4), 0 24px 64px 12px rgba(0,0,0,0.25);
  color: @rhino;
  font-family: 'Source Sans Pro', helvetica;
  overflow: hidden;
  letter-spacing: -0.05em;
  margin: 5% auto;
  max-width: 1200px;
  min-width: 320px;
  min-height: 600px;
  padding-bottom: 10%;
  position: relative;
  width: 90%;
  div.chrome {
    background: @rhinoMid;
    height: 40px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    > a {
      border-radius: 12px;
      display: block;
      float: left;
      height: 12px;
      margin: 13px 4px;
      width: 12px;
      &:first-child {
        margin-left: 13px;
      }
      &.red {
        background: @red;
      }
      &.amber {
        background: @amber;
      }
      &.green {
        background: @green;
      }
    }
    div.url {
      background: #5f676d;
      border-radius: 4px;
      height: 24px;
      left: 50%;
      position: absolute;
      transform: translateX(-50%);
      top: 8px;
      width: 70%;
    }
  }
  h1 {
    font-size: 24px;
    font-weight: 200;
    margin: 0;
    padding: 80px 40px 10px;
  }
  h2 {
    font-size: 48px;
    line-height: 1em;
    max-width: 16em;
    margin: 0;
    padding: 0 40px;
  }
}

footer {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  div.social-media-links {
		background: @rhino;
		overflow: hidden;
		padding-bottom: 4px;
		text-align: center;
		ul {
			margin: 0;
			padding: 0;
		}
		li {
			display: inline;
			margin: 0;
			padding: 0;
		}
		a {
			border-bottom: 0px solid rgba(0,0,0,0.95);
			border-radius: 4px;
			box-shadow: inset 0 -3px 0 0 rgba(0,0,0,0), 0 6px 8px rgba(0,0,0,0), 0 24px 24px rgba(0,0,0,0), 0 36px 36px rgba(0,0,0,0), 0 64px 64px rgba(0,0,0,0), 0 64px 128px rgba(0,0,0,0), 0 120px 0 rgba(0,0,0,0), 0 86px 8px 6px rgba(0,0,0,0),;
			display: inline-block;
      height: 30px;
			padding: 20px;
			position: relative;
			transition: .2s ease-in;
      width: 30px;
			svg {
        left: 20px;
        position: absolute;
        top: 20px;
				height: 30px;
				width: 30px;
        &.glow {
          path, circle {
            fill: rgba(0,0,0,0);
          }
        }
				path, circle {
					fill: @teal;
					transition: .2s ease-in;
				}
			}
		}
		a:hover {
			transform: translateY(-4px);
			box-shadow: inset 0 -3px 0 0 rgba(0,0,0,0.1), 0 6px 8px rgba(0,0,0,0.05), 0 24px 24px rgba(0,0,0,0.05), 0 36px 36px rgba(0,0,0,0.05), 0 64px 64px rgba(0,0,0,0.15), 0 64px 128px rgba(0,0,0,0.15), 0 86px 8px 6px fadeout(@tealMid, 75), 0 83px 4px 0px fadeout(@tealMid, 5);
			svg {
        &.glow {
          filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><f…ter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
          filter: blur(2px);
          path, circle {
            fill: fadeout(@tealMid, 40);
          }
        }
				path, circle {
					fill: @tealMid;
				}
			}
		}
	}
}