html,
body {
    width: 100%;
    height: 100%;
    font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
}

a {
    color: rgb(0, 0, 0);
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

a:hover,
a:focus {
    color: rgb(0, 0, 0);
}

p {
    font-size: 16px;
    line-height: 1.5;
}
/* Hamburger icon */
.hamburger {
  position: fixed;
  top: 15px;
  right: 15px;
  cursor: pointer;
  z-index: 1100;
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hamburger span {
  background: #fff;
  height: 3px;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.4s;
  width: 100%;
  transform-origin: center;
}

/* Transform into 'X' */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Side navigation */
.side-nav {
  position: fixed;
  right: -250px; /* start hidden off-screen on the right */
  top: 0;
  width: 250px;
  height: 100%;
  background: #000;
  padding-top: 60px;
  transition: right 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.side-nav a {
  color: #fff;
  padding: 15px 25px;
  text-decoration: none;
  border-bottom: 1px solid #333;
  transition: background 0.2s ease;
}

.side-nav a:hover {
  background: #111;
}

/* Show menu */
.side-nav.open {
  right: 0; /* slides in from the right */
}





header {
    position: relative;
    width: 100%;
    min-height: auto;
    text-align: center;
    color: #ffffff;
    background-image: url('../images/header.jpg');
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

header .header-content {
    position: relative;
    width: 100%;
    padding: 100px 15px 70px;
    text-align: center;
}

header .header-content .header-content-inner h1 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 69px;
    font-weight: 300;
}

header .header-content .header-content-inner p {
    margin-bottom: 50px;
    font-size: 26px;
    font-weight: 300;
    color: rgb(255, 255, 255);
}

@media(min-width:768px) {
    header {
        min-height: 100%;
    }

    header .header-content {
        position: absolute;
        top: 50%;
        padding: 0 50px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    header .header-content .header-content-inner {
        margin-right: auto;
        margin-left: auto;
        max-width: 1000px;
    }

	header .header-content .header-content-inner h1 {
    	font-size: 100px;
		}

    header .header-content .header-content-inner p {
        margin-right: auto;
        margin-left: auto;
        max-width: 80%;
        font-size: 18px;
    }
}

.section-heading {
    margin-top: 0;
    margin-bottom: 20px;
}

.intro {
	color: #fff;
    background-color: rgb(0, 0, 0);
    padding: 70px 0;
    text-align: center;
}

.content {
    padding: 100px 0;
}

.floating-image {
display: inline-block;
animation: floatImage 3.5s ease-in-out infinite;
}

@keyframes floatImage {
0% { transform: translateY(0); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0); }
}

.floating-image img {
max-width: 100%;
height: auto;
display: block;
}

.content {
    padding: 100px 0;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
font-family: Arial, sans-serif;
background-color: #000000;
padding: 40px 20px;
}

.section {
display: flex;
flex-wrap: wrap;
gap: 20px;
background: #ffffff;
padding: 20px;
border-radius: 12px;
justify-content: center;
}

.column {
flex: 1 1 100%;
max-width: 100%;
background-color: #000000;
padding: 30px 20px;
border-radius: 10px;
text-align: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
animation: float 4s ease-in-out infinite;
}

/* Float animation */
@keyframes float {
0% { transform: translateY(0); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0); }
}

.column:nth-child(2) {
animation-delay: 0.4s;
}

.column:nth-child(3) {
animation-delay: 0.8s;
}

@media (min-width: 768px) {
.column {
flex: 1 1 calc(33.333% - 20px);
max-width: calc(33.333% - 20px);
}
}
.content-2 {
	color: #ffffff;
    background-color: #000000;
}

.content-3 {
	padding: 20px 0 40px;
	text-align: center;
}

.promo,
.promo h3,
.promo a:link,
.promo a:visited,
.promo a:hover,
.promo a:active {
    color: white;
	text-shadow: 0px 0px 40px rgb(255, 254, 254);
    text-decoration: none;
}

.promo-item {
    height: 200px;
    line-height: 180px;
    text-align: center;
}

.promo-item:hover {
    background-size: 110%; 
    border: 10px solid rgba(7, 7, 7, 0.3);
    line-height: 160px;
}

.promo-item h3 {
    font-size: 40px;
    display: inline-block;
    vertical-align: middle;
}

.item-1 {
	background: url('../images/writing.jpg');
	}
	
.item-2 {
	background: url('../images/concert.jpg');
	}
	
.item-3 {
	background: url('../images/pencil_sharpener.jpg');
	}
		
.item-1,
.item-2,
.item-3 {
	background-size: cover;
	background-position: 50% 50%;
	}

.page-footer {
	text-align: center;
	}

.page-footer .contact {
	padding: 100px 0;
	background-color: rgb(0, 0, 0);
	color: #fff;
	}

.page-footer .contact p {
	font-size: 22px;
	font-weight: 300;
	}
	
.content-3 .glyphicon,	
.page-footer .contact .glyphicon {
	font-size: 32px;
	font-weight: 700;
	}
		
.page-footer .small-print {
	padding: 50px 0 40px;
	font-weight: 300;
	}

.text-light {
    color: rgb(255, 255, 255);
}



.btn-default {
    border-color: #fff;
    color: #ffffff;
    background-color: #fffcfc;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    border-color: #eee;
    color: #222;
    background-color: #eee;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    background-image: none;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
    border-color: #fefefe;
    background-color: #fff;
}

.btn-default .badge {
    color: #ffffff;
    background-color: #000000;
}

.btn-primary {
    border-color: rgb(255, 253, 253);
    color: #ffffff;
    background-color: rgb(0, 0, 0);
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    border-color: rgb(253, 255, 253);
    color: #868484;
    background-color: rgb(252, 255, 252);
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
    border-color: rgb(238, 241, 233);
    background-color: rgb(255, 253, 253);
}

.btn-primary .badge {
    color: rgb(255, 255, 254);
    background-color: #000000;
}

<style>
.timeline {
  position: relative;
  padding: 2rem 0;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
}
.timeline-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.timeline-content {
  background: #000000;
  border: 1px solid #ffffff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(255, 254, 254, 0.05);
  flex: 1;
}
.timeline-content h4 {
  margin-top: 0;
  margin-bottom: 10px;
}
.timeline-content ul {
  padding-left: 20px;
  margin-bottom: 0;
}
</style>

.btn {
    border-radius: 300px;
    text-transform: uppercase;
}

.btn-lg {
    padding: 15px 30px;
}

::-moz-selection {
    text-shadow: none;
    color: #fff;
    background: #fdfdfd;
}

::selection {
    text-shadow: none;
    color: #fff9f9;
    background: #efeded;
}

img::selection {
    color: #fff;
    background: 0 0;
}

img::-moz-selection {
    color: #fff;
    background: 0 0;
}

.text-primary {
    color: rgb(255, 249, 249);
}

.bg-primary {
    background-color: rgb(208, 203, 203);
}




/* Fix muted text readability */
.text-muted {
    color: #ffffff !important;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.timeline-content {
  background: #000;
  border: 1px solid #fff;
  color: #fff;
  padding: 15px;
  border-radius: 8px;
  flex: 1;
  text-align: center;
}

.timeline-content h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.timeline-content ul {
  padding-left: 0;
  list-style-position: inside;
}

@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .timeline-icon {
    margin: 0 0 10px 0;
  }
}

/* Hover effect */
.timeline-content:hover {
  background-color: #111;
  transition: 0.3s ease;
  transform: scale(1.02);
}
.social-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  background-color: #000;
}

.social-icon {
  color: #fff;
  background-color: #000;
  border: 2px solid #fff;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 20px;
  text-decoration: none;
}

.social-icon:hover {
  background-color: #fff;
  color: #000;
  transform: scale(1.1);
}

/* Force all text to solid white */
body, h1, h2, h3, h4, h5, h6, p, span, div, a, li, ul, ol, button, input, label, th, td {
  color: #ffffff !important;
}
