body {
  margin: 0;
  font-family: "Cera Pro", Arial, sans-serif;
}

header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
  font-size: 1.5rem;
}

.menu-icon {
  font-size: 1.5rem;
  cursor: pointer;
  display: none; /* Hide the menu icon by default */
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav li {
  margin: 0 10px;
}

nav a {
  text-decoration: none;
  color: #fff;
  padding: 8px 15px;
  border-radius: 30px; /* Adjust the border radius as needed */
   background-color: #ff590a;
   
}

hr {
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    height:2px;
    width: 90%;
    border-width:0;
    color:rgb(236, 236, 236);
    background-color:rgb(236, 236, 236)
  }


.menu-toggle {
  display: none; /* Hide checkbox by default */
}

/* Media query for responsiveness */
@media (max-width: 768px) {
  header {
      flex-direction: column;
      align-items: flex-start;
  }

  .logo {
      margin-bottom: 10px;
  }

  nav {
      flex-direction: column;
      align-items: flex-start;
  }

  .menu-icon {
      display: block; /* Display the menu icon */
  }

  nav ul {
      display: none; /* Hide the menu by default */
      width: 100%;
      flex-direction: column;
      position: absolute;
      top: 60px; /* Adjust the top position as needed */
      left: 0;
      background-color: #ff590a;
      z-index: 1;
	      height: 100%;
  }

  nav ul.show {
      display: flex; /* Show the menu when the checkbox is checked */
  }

  nav li {
      margin: 10px 0;
  }

  nav a {
      border-radius: 0; /* Remove border radius for mobile view */
  }

  .menu-toggle:checked + nav ul {
      display: flex; /* Show the menu when the checkbox is checked */
  }
}


.WL:after {
    content: "";
    width: 67%;
    position: absolute;
    height: 74%;
    top: 0;
    right: 0;
    z-index: -1;
    background: #f7f7f7;
}

.welcome-section h1 {
    font-family: "Cera Pro-Bold", Helvetica, sans-serif;
    font-weight: 700;
    color: #222222;
    font-size: 5.4em;
    letter-spacing: 0;
    line-height: 1.4em;
    margin-bottom: 0px;
}
.welcome-section h1 span {
	color: #ff590a; /* Set the orange color for "SFL Labs:" */
}

.welcome-section p {
    font-size: 1.2rem;
    margin-top: 0.8rem;
	font-family: "Cera Pro-Medium", Helvetica, sans-serif;
    font-weight: 500;
    color: #222222;
    letter-spacing: 0;
    line-height: 38px;
	
}

@media (min-width: 960px) {
	.welcome-section {
    padding: 20px 0px 6% 6% !important;
}
.welcome-section p {
	    width: 58% !important;
}
	.container {
    display: flex;
    flex-wrap: wrap;
    padding: 0% 5% 10% 5%;
}
}
@media (max-width: 959px) {
	.welcome-section {
    padding: 20px;
}
.welcome-section p {
	    width: 80% !important;
}

	header {
      flex-direction: row !important;
      align-items: flex-start;
  }
  .container {
    display: block !important;
}
.box ul {
   
    height: auto !important;
}
}
@media (max-width: 575px) {

.welcome-section h1 {
    font-size: 2.4em !important;
    line-height: 1.6em !important;
}
img.img {
    width: 73% !important;
}
}
        .container {
    display: flex;
}

        .box {
            /* flex: 1; Each box takes 50% of the container width */
            flex: auto;
            background-color: #f9e0e0;
            border-radius: 10px;
            padding: 3px;
            margin: 10px;
            box-sizing: border-box; /* Include padding and border in the box's total width and height */
        }

        h2 {
            font-family: "Cera Pro-Medium", Helvetica, sans-serif;
            font-weight: 500;
            color: #222222;
            font-size: 30px;
            letter-spacing: 0;
            line-height: 38px;
			margin: 13px;
        }

        .box ul {
    list-style-type: none;
    background: white;
    margin: 13px 0 0 0;
    border-radius: 0 0 10px 10px;
    height: auto;
	padding: 20px;
}

        .box li {
            font-family: "Cera Pro-Light", Helvetica, sans-serif;
            font-weight: 300;
            color: #333333;
            font-size: 24px;
            letter-spacing: 0;
            line-height: 38px;
            padding-bottom: 2%;
        }

        /* Media query for screens smaller than 768px (typical mobile devices) */
        @media (max-width: 768px) {
            .box {
                flex: 100%; /* Each box takes 100% of the container width */
            }
        }
		
.box li a {
    color: #ff590a;
	  transition: color 0.3s ease; /* Smooth transition over 0.3 seconds */
}
.box li a:hover,
.box li a:focus {
    color: black; /* Change color to black on hover or click */
}

/*Popup CSS*/
/* Popup overlay */
.popup-overlay {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

/* Popup box */
.popup-box {
  background: #fff;
  width: 350px;
  padding: 30px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Input and button */
.popup-box input {
  width: 80%;
  padding: 10px;
  margin: 15px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

/* .popup-box button {
  padding: 10px 20px;
  border: none;
  background: #ff590a;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.popup-box button:hover {
  background: #ff7840;
} */

.popup_btn {
  padding: 10px 20px;
  border: none;
  background: #ff590a;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.6s;
}

.popup_btn:hover{
    background: #fff;
    color: #ff590a;
    border: 1px solid #ff590a;
}