*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --primary: rgb(248, 124, 86);
  --secondary: rgb(0, 0, 0);
}


/* Reset styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

/* Header styles */
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-evenly
}

@media (max-width: 339px) {
  .header-bar {
    flex-basis: 50%;
    flex-direction: column; /* Stack items vertically on smaller screens */
    padding: 10px; /* Adjust padding as needed */
   }
   .header-bar img {
    width: 350px;
   }   
}

@media (max-width: 412px) {
  .header-bar {
    flex-basis: 50%;
    flex-direction: column; /* Stack items vertically on smaller screens */
    padding: 10px; /* Adjust padding as needed */
   }
}

@media (max-width: 430px) {
  .header-bar {
    flex-basis: 50%;
    flex-direction: column; /* Stack items vertically on smaller screens */
    padding: 10px; /* Adjust padding as needed */
   }
}


.header-links {
  float: right;
}

.header-links a {
  -webkit-text-fill-color: var(--secondary);
  text-decoration: none;
  margin: 20px;
}

.header-bar img {
  width: 450px;
  height: auto;
  float: left;
}

.header-bar a:hover {
    -webkit-text-fill-color: grey;
}

/* Status content styles */
.status-content {
    padding: 20px;
    max-width: 60em;
    margin: 30px auto 0;
    position: relative;
    width: 80%;
}

.dropdown-btn {
    font-size: 18px;
    width: 100%;
    border: none;
    color: var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7em 0.5em;
    border-radius: 0.5em;
    cursor: pointer;
    background-color: var(--primary);
}

.dropdown-content.menu-open li {
    left: 0;
    
}

.dropdown-content.menu-open {
    visibility: visible;
    position: relative ;
    top: 20px;
}

.arrow.arrow-rotate {
    transform: rotate(180deg);
}

.arrow {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--secondary);
    transition: transform ease-in-out 0.3s;
}

.dropdown-content {
    list-style: none;
    position: absolute;
    top: 98px;
    right: 1px;
    width: 100%;
    overflow: hidden;
    
}

.dropdown-content li {
    background: var(--secondary);
    border-radius: 0.5em;
    position: relative;
    left: 100%;
    transition: 0s;
}

.dropdown-content li:hover {
    background: var(--secondary);
}

.dropdown-content li a {
    display: block;
    padding: 0.7em 0.5em;
    color: #fff;
    margin: 0.1em 0;
    text-decoration: none;
}


.status-box {
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.status-box h2 {
    margin: 0 0 10px 0;
    color: var(--secondary);
}

/* Status indicator styles */
.status-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.operational {
    background-color: #4CAF50;
}

.not-operational {
    background-color: #f44336;
}

.error {
    background-color: #ff9800;
}

/* Status text and last updated styles */
.status-text {
    margin: 0;
}

.last-updated {
    font-size: 0.8em;
    color: #666;
    margin-top: 5px;
}

@import url(https://fonts.googleapis.com/css?family=Lato);

.timeline-title {
    text-align: center; 
    padding-top: 50px;
    padding-bottom: 20px;
    margin-bottom: 50px;
    margin-top: 150px;
}

.timeline {
    position: relative; 
}

.timeline ul {
    padding: 50px 0;

}

body {
  font-size: 16px;
  
}


.timeline ul {
  padding: 50px 0;
  padding-top: 50px;
}

.timeline ul li {
  background: var(--secondary);
  position: relative;
  margin: 0 auto;
  width: 5px;
  padding-bottom: 90px;
  padding-left: 12px;
  list-style-type: none;
}

#day0 {
  border-radius: 6px 6px 0px 0px;
}

#day6 {
  border-radius: 0px 0px 6px 6px;
}

.timeline ul li:last-child {
  padding-bottom: 7px;
}

.timeline ul li:before {
  content: "";
  background: var(--primary);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border: 3px solid var(--secondary);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.timeline ul li .hidden {
  opacity: 0;
}

.timeline ul li .content {
  background: var(--secondary);
  position: relative;
  top: 7px;
  width: 450px;
  padding: 20px;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
  z-index: 14;
  box-shadow: 7px 6px 15px 0px var(--secondary);
}

.timeline ul li .content * {
  color: #fff;
}

.timeline ul li .content.non-focus::before {
  display: none;
}

.timeline ul li .content.non-focus {
  transform: rotate(20deg);
  opacity: 0.4;
  filter: blur(5px);
  z-index: 11;
}

.timeline ul li .content {
  color: #d2d2d2;
  background: #e6e6e6;
}

.timeline ul li .content p {
  text-align: left;
}

.timeline ul li .content:before {
  content: "";
  background: inherit;
  position: absolute;
  top: 0px;
  width: 38px;
  height: 5px;
}

.timeline ul li:nth-child(odd) .content {
  left: 37px;
  background: var(--secondary);
  border-radius: 0px 4px 4px 4px;
}

.timeline ul li:nth-child(odd) .content:before {
  left: -38px;
}

.timeline ul li:nth-child(even) .content {
  left: calc(-450px - 45px);
  background: var(--secondary);
  border-radius: 4px 0px 4px 4px;
}

.timeline ul li:nth-child(even) .content:before {
  right: -38px;
}

.timeline-content-info {
  display: flex;
  justify-content: space-between;
  border-radius: 4px;
  padding: 2%;
  background-color: var(--p);
}

.content-skills {
  margin: 15px 0px 0px 0px;
}

.content-skills span {
  border-radius: 4px;
  padding: 2px;
}

@media screen and (max-width: 1020px) {
  .timeline ul li .content {
    width: 41vw;
  }

  .timeline ul li:nth-child(even) .content {
    left: calc(-41vw - 45px);
  }
}

@media screen and (max-width: 700px) {
  .timeline ul li {
    margin-left: 20px;
  }
  .timeline ul li .content {
    width: calc(100vw - 100px);
  }
  .timeline ul li:nth-child(even) .content {
    left: 35px;
    background: var(--secondary);
    border-radius: 0px 4px 4px 4px;
  }
  .timeline ul li:nth-child(even) .content:before {
    left: -36px;
  }
}



.buttons {
    display: flex;
    justify-content: center; 
    margin-top: 80px; 
    position: sticky; 
    top: 0; 
    padding: 10px; 
    z-index: 20; 
    margin: 0;
    margin-left: 7px;
    padding-right: 30px;
    padding-bottom: 30px;
}

.button {
    background-color: var(--secondary);
    align-items: center;
    border: none;
    color: var(--primary);
    padding: 9px;
    margin: 0px 220px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
}

@media (max-width: 768px) {
  .button {
    padding: 5px;
    margin: 0px 95px;
    border-radius: 10px;
  }
}

@media (max-width: 412px) {
  .button {
    padding: 5px;
    margin: 0px 95px;
    border-radius: 10px;
    width: fit-content;
  }
}

.button:hover {
    background-color: var(--primary);
    -webkit-text-fill-color: var(--secondary);
    cursor: pointer;
}



.footer {
  position: relative;
  bottom: 0;
  width: 100%;
  background-color: var(--primary);
  color: white;
  display: flex;
  margin-top: 200px;
  padding: 100px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .footer-item {
      flex-basis: 50%; /* Each item takes up half of the width on smaller screens */
  }
  .footer {
    width:min-content;
    width: fit-content;
  }
}

@media (max-width: 412px) {
  .footer-item {
      flex-basis: 50%; /* Each item takes up half of the width on smaller screens */
  }
  .footer {
    width:min-content;
    width: fit-content;
  }
}

.facebook {
  height: 35px;
  width: 35px;
  margin-top: 40px;
}

.instagram {
  height: 35px;
  width: 35px;
  margin-top: 40px;
}

.X {
  height: 33px;
  width: 33px;
  margin-top: 40px;
}

.linkedin {
  height: 35px;
  width: 35px;
  margin-top: 10px;
}

.footer-column {
  flex: 1;
  padding: 20px;
  text-align: left;
}

.footer-column h3{
  font-size: 28px;
}
.footer-column:last-child {
  border-right: none; /* Remove border from the last column */
}


.message {
  margin-top: 40px;
  font-size: 20px;
  text-align: justify;
}

.message a {
  text-decoration: none;
  -webkit-text-fill-color: var(--secondary);
}


.address p {
  margin-top: 40px;
  font-size: 20px;
}

.links {
  margin-top: 37px;
}

.links p {
  margin-top: 75px;
}

.links ul li{
  display: flex;
  padding: 5px;
}

.links ul li a {
  text-decoration: none;
  -webkit-text-fill-color: white;
  font-size: 20px;
  text-align: justify;
}

.links ul li a:hover {
  -webkit-text-fill-color: var(--secondary);
}