@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
}



body {
    font-family: Arial, sans-serif;
    list-style-type: none;
    font-family: 'Roboto Condensed', sans-serif;
}

/* Menu */

.fixed-menu {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 1000;
}

.menu-button {
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    font-weight: normal;
}

.menu-button:hover {
    font-weight: bolder;
}

.menu-box {
    position: fixed;
    bottom: 70px;
    right: -300px; 
    background-color: transparent;
    /* box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3); */
    transition: right 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
    z-index: 999;
}

.menu-box.open {
    right: 0; /* Slide in */
}

.menu-box h2 {
    margin-top: 0;
}

.menu-box ul {
    list-style: none;
    padding: 5px 30px;
    font-size: 16px;
}

.menu-box ul li {
    margin: 10px 0;
}

.menu-box ul li a {
    color: #111;
    font-weight: normal;
}

.menu-box ul li a:hover {
    border-bottom: 1px solid #111;
    transition: all 0.3s ease-in-out;
}

.close-button {
    padding: 10px 0px;
    cursor: pointer;
    background-color: transparent;
    border: none;
}

.close-button i {
    font-size: 24px;
}

/* BtStudio Logo */

.btstudio {
    position: fixed;
    bottom: 0px;
    left: 10px;
}

.btstudio h4 {
    font-size: 18px;
    font-weight: normal;
}

.btstudio img {
    width: 8%;
}

.scroll {
    position: fixed;
    bottom: 500px;
    left: 0px;
}

.scroll .rotate p {
    font-size: 20px;
    font-weight: bolder;
}

/* Main */

.flex-container {
    display: flex;
    flex-wrap: wrap;
    font-size: 30px;
  }
  
  .flex-item-left {
    margin: 100px 0;
    flex: 60%;
  }

  .flex-item-left img {
    width: 100%;
    padding: 10px 50px;
  }
  
  .flex-item-right {
    padding: 0;
    flex: 40%;
  }

  .brief {
    position: fixed;
    top: 110px;
  }

  .brief h5 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
  }

  .brief h6 {
    font-size: 18px;
    color: #111;
    font-weight: 500;
  }

  .brief span {
    color: #555;
    font-weight: 400;
  }

  .brief p {
    display: flex;
    font-size: 17px;
    padding-right: 50px;
    text-justify: inter-word;
    text-align: justify;
    line-height: 23px;
    color: #333;
    font-weight: 500;
  }

  @media (max-width: 768px) { 
  .btstudio {
    position: fixed;
    bottom: 0px;
    left: 10px;
    padding: 0;
    margin: 0;
  }
  .btstudio img {
    width: 8%;
    padding: 0;
    margin: 0;
  }

  .fixed-menu {
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 1000;
    font-size: 12px;
}

.scroll {
    position: fixed;
    left: -20px;
}

.menu-box  {
bottom: 3px;
box-shadow: 5px 10px 8px rgb(0, 0, 0);
background-color: aliceblue;
}

.flex-container {
    display: flex;
    flex: 100%;
    flex-direction: column-reverse;
}

.flex-item-left {
    flex: 100%;
}

.flex-item-left img {
    margin: 0;
    padding: 0;
    width: 100%;
}

.flex-item-right {
    flex: 100%;
}

.brief {
    position: relative;
    width: 100%;
    left: 0px;
    top: 30px;
}

.brief h5 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
    padding-left: 30px;
  }

  .brief h6 {
    font-size: 18px;
    color: #111;
    font-weight: 500;
    padding-left: 30px;
  }

  .brief span {
    color: #555;
    font-weight: 400;
  }

  .brief p {
    display: flex;
    font-size: 17px;
    padding-right: 50px;
    text-justify: inter-word;
    text-align: justify;
    line-height: 23px;
    color: #333;
    font-weight: 500;
    padding-left: 30px;
  }



  }