:root {
  --primary-color: rgba(13, 110, 139, 0.75);
  --secondary-color: rgba(229, 148, 0 , 0.9);
  --overlay-color: rgba(24, 39, 51 , 0.85);
  --overlay-color2: rgb(31, 187, 187, 0.85);
  --menu-speed: 0.75s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.4;
}

#header-1 .container-2 {
  border-bottom: orangered 1px dashed;
  position: fixed;
}

/* Utility */

.container-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  background: rgb(221, 221, 221, 0.8);
  position: fixed;
  right: 0;
  left: 0;
}

img {
  width: 100%;
}

/* #header-1 .menu-wrap .hamburger {
  padding: 0 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: sticky;
  top:0;
} */

.h1-2 a {
  font-size: 2rem;
  text-decoration: none;
}

.s-1 { color: orangered; }
.s-2 { color: yellowgreen; }
.s-3 { color: teal; }
.s-4 { color: burlywood; }

.container-2 .ul-2 {
  display: flex;
  border-radius: 5px;
}

.container-2 .li-2 {
  list-style: none;
  padding: 0.3rem 0.5rem ;
}

.container-2 .li-2 a {
  margin: 0.5rem;
  padding: 2px 4px;
  background: #ddd;
  border-radius: 5px;
  text-decoration: none;
  color: #000;
  border: orangered dashed 1px;
  transition: all 0.5s ease-in-out;
}

.container-2 .li-2 a:hover {
  background: teal;
  color: #fff;
  border: #ddd 1px dashed;
}

/* SECTION: Showcase-1 */

#showcase-1 {
  background: #fff;
  height: 100vh;
  padding: 2rem;
  display: flex;
}

.container-3 {
  display: flex;
  align-items:center;
  justify-content: space-around;
  flex-wrap: wrap;
}

.container-3 .box-1 {
  display: flex;
  flex-wrap: wrap;
  background: #ddd;
  width: 40vw;
  height: 50vh;
  margin-bottom: 2rem;
  border-radius: 0 15px 0 15px;
  padding: 1rem;
  line-height: 1.6;

}

.container-3 .box-1:hover {
  background: teal;
  transition: all 1s ease-in-out;
}

.container-3 .box-2 {
  background: url('/img/showcase.jpg') no-repeat center center/cover;
  width: 40vw;
  height: 50vh;
  margin-bottom: 2rem;
  border-radius: 50%;
  animation: animate2 1s ease-in 1s reverse both;
}

@keyframes animate2 {
  from {
    background: url('/hamburger_overlay_menu/img/FB_IMG_15809498411566916.jpg') no-repeat center center/cover;
    border-radius: 0;
  }
  to {
    background: url('/hamburger_overlay_menu/img/showcase.jpg') no-repeat center center/cover;
  }
}

.container-3 .box-3 {
  background: #ddd;
  width: 40vw;
  height: 20vh;
  border-radius: 0 15px 0 15px;
  padding: 1rem;
  transition: all 0.4s ease-in-out;
}

.container-3 .box-3:hover {
  background: teal;
}

.container-3 .box-4 {
  background: #ddd;
  width: 40vw;
  height: 20vh;
  border-radius: 0 15px 0 15px;
  padding: 1rem;
  transition: all 0.4s ease-in-out;
} 

.container-3 .box-4:hover {
  background: teal;
}

.container {
  max-width: 960px;
  margin: auto;
  overflow: hidden;
  padding: 0 3rem;
}

#showcase {
  background: var(--primary-color);
  color: #fff;
  height: 100vh;
  position: relative;
}

#showcase:before {
  content: '';
  background: url('../img/showcase.jpg') no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#showcase .showcase-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

#showcase h1 {
  font-size: 4rem;
}

#showcase p {
  font-size: 1.3rem;
}

.btn {
  display: inline-block;
  border: none;
  background: var(--primary-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  transition: opacity 1s ease-in-out;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.7;
}

footer {
  background: #000;
}

.f-container {
  max-width: 900px;
  margin: auto;
  display: flex;
  padding: 1rem;
}

.f-container .f-1 {
  text-align: center;
  color: #fff;
  padding: 0rem 1rem;
}

.f-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #000;
  color: #fff;
  border-top: 1px solid #fff;
}

/* Smartphones */
@media (max-width: 500px) and (max-height: 900px) {
  
}