

@font-face {
    font-family: 'DBHelvethaicaX';
    src: url('/fonts/DBHelvethaicaX-55Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: 'DBHelvethaicaX';
    src: url('/fonts/DBHelvethaicaX Med.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
  }

  @font-face {
    font-family: 'Cordia New';
    src: url('/fonts/Cordia New.ttf?') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'Cordia New';
    src: url('/fonts/Cordia New Bold.ttf?') format('truetype');
    font-weight: bold;
    font-style: normal;
  }


  body {
    font-family: 'Cordia New';
    margin: 0;
    padding: 0;
    position: relative;
    background-image: url('/img/bg_home.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: -300px;
  }

  body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 255, 0.2);
  }



  header {
    background-color: #000066;
    padding: 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;

  }

  .logo {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 0 17px;


  }

  .logo::before {
    content: '';
    background-image: url('/img/logo_white.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70% auto;
    width: 125px;
    height: 110px;
    margin-right: 10px;
    background-color: #0099FF;
    position: relative;
    top: 0px;
  }

  h1 {
    font-size: 20px;
    margin: 0;
    margin-left: 150px;
    flex-grow: 15;
    color: #ffffff;
    text-align: left;
    font-weight: normal;
  }

  main {
    padding: 0px;
  }

  .content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 530px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    margin-top: 10px;
    line-height: 1.5;
    font-size: 25px;

  }

  .frame {
    background-color: rgb(15 14 14 / 30%);;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    width: 500px;
    position: relative;
    z-index: 1;
    margin: 50px;
  }

  .buttons {
    margin-top: 10px;
  }

.btn-box {
  display: block;
  padding: 10px 15px;
  margin: 5px 5px 15px;
  font-size: 22px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 51, 204, 0.2);
  line-height: 1.5;
  font-family: 'Cordia New';
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.btn-box.btn {
    background-color: #0033CC;
    color: #ffffff;
}
.btn-box.btn:hover {
    background-color: #0022b3; /* Lighter on hover */
    box-shadow: 0 5px 15px rgba(0, 34, 179, 0.5);
}

.btn-box.btn2 {
    background-color: #0066CC;
    color: #ffffff;
    /* box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2); */
}
.btn-box.btn2:hover {
    background-color: #0055b3; /* Lighter on hover */
    box-shadow: 0 5px 15px rgba(0, 85, 179, 0.5);
}

.btn-box.btn-line {
    background-color: #00C300;
    color: #ffffff;
    /* box-shadow: 0 5px 15px rgba(0, 195, 0, 0.2); */
}
.btn-box.btn-line:hover {
    background-color: #009900; /* Lighter on hover */
    box-shadow: 0 5px 15px rgba(0, 153, 0, 0.5);
}
.btn-box.btn-line i {
    margin-right: 10px;
    font-size: 24px;
    vertical-align: -3px;
}

.remark-worktime {}

.divider-container {
    width: 100%;
  }

  .bottom-container {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
    gap: 0px;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }




  .divider {
    border: none;
    border-top: 10px solid #000000;
    margin-top: 132px;
    width: 100%;
  }


  .contact-info, .map-container {
    flex: 1;
    padding: 0;
    margin: 0;
    color: #ffffff;
    box-sizing: border-box;
  }

  .contact-info {
    padding: 10px 10px;
    color: #ffffff;
    font-size: 19px;
    line-height: 1;
    background: #002F87;
    box-sizing: border-box;
    position: relative;
    z-index: 1;


  }

  .contact-info h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-left: 150px;
  }

  .contact-info p {
    margin-bottom: 20px;
    margin-left: 150px;
  }

  .map-container {
    background: #ddd;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    flex: 1.4;
  }

  .google-map {
    width: 100%;
    height: 100%;
    padding: 220px;
    box-sizing: border-box;
  }
  .join-button {

    padding: 8px 36px;
    margin: 5px 0;
    font-size: 15px;
    background-color: #7CAECC;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease-in-out;
    margin-left: 150px;
  }

  .join-button:hover {
    background-color: #7CAECC;
  }

  .element-with-border {
    border: 1px solid white;
    margin-left: 150px;
    width: 65%;
  }
  footer {
    background-color: #333333;
    padding: 15px;
    color: #ffffff;
    text-align: center;
    position: relative;
    z-index: 1;


  }

  footer p {
    font-size: 23px;

    margin: 0;
  }


  @media only screen and (max-width: 600px) {
    body {
      background-size: cover;
    }

    header {
      flex-direction: column;
      align-items: flex-start;
      padding: 10px;
    }

    .logo::before {
      width: 80px;
      height: 80px;
    }

    h1 {
      font-size: 19px;
      margin: 10px 0;
      margin-left: 105px;

    }

    .content {
      font-size: 20px;
    }

    .frame {
      width: 90%;
      padding: 20px;
    }

    .btn  {
      padding: 10px 40px;
      font-size: 18px;
    }

    .btn2 {
        padding: 10px 53px;
        font-size: 18px;
      }

      .btn3 {
        padding: 10px 42px;
        font-size: 18px;
      }

      .btn3 i {
        margin-right: 10px;
        font-size: 24px;
        vertical-align: middle;
    }

    .divider {
      margin-top: 70px;
    }

    .bottom-container {
        flex-direction: column;
      }

      .contact-info, .map-container {
          flex: 1;
          padding: 0;
          margin: 0;
          color: #ffffff;
          box-sizing: border-box;
        }

        .contact-info {
          padding: 10px 10px;
          color: #ffffff;
          font-size: 19px;
          line-height: 1;
          background: #002F87;
          box-sizing: border-box;
          position: relative;
          z-index: 1;


        }

      .contact-info h2 {
          font-size: 26px;
          font-weight: bold;
          margin-bottom: 10px;
          margin-left: 80px;
        }

        .contact-info p {
          margin-bottom: 20px;
          margin-left: 80px;
        }

        .map-container {
          background: #ddd;
          box-sizing: border-box;
          position: relative;
          z-index: 1;
          flex: 1;

        }

        .join-button {

            padding: 8px 36px;
            margin: 5px 0;
            font-size: 15px;
            background-color: #7CAECC;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease-in-out;
            margin-left: 80px;
            margin-bottom: 25px;

          }



    footer p {
      font-size: 16px;
    }

    .element-with-border {
        border: 1px solid white;
        margin-left: 80px;
        width: 68%;

        }

  }

  @media only screen and (min-width: 601px) and (max-width: 1024px) {

    body {
      background-size: cover;
    }

    header {
      flex-direction: column;
      align-items: center;
    }

    .logo::before {
      width: 100px;
      height: 100px;
    }

    h1 {
      font-size: 29px;
      margin: 15px 0;
      margin-left: -147px;
    }
    p {
        font-size: 23px;

      }
    .content {
      font-size: 22px;
    }

    .frame {
      width: 80%;
      padding: 30px;
    }

    .btn {
      padding: 12px 60px;
      font-size: 20px;
    }

    .btn2 {
      padding: 12px 75px;
      font-size: 20px;
    }

    .btn3 {
      padding: 12px 64px;
      font-size: 20px;
    }

    .btn3 i {
      margin-right: 15px;
      font-size: 24px;
      vertical-align: middle;
    }

    .divider {
      margin-top: 100px;
    }



    .contact-info {
        padding: 15px 15px;
        font-size: 22px;
    }

    .contact-info h2 {
        font-size: 30px;
        margin-left: 90px;
    }

    .contact-info p {
        margin-left: 90px;
    }

    .element-with-border {
        margin-left: 90px;
        width: 68%;
    }

    .join-button {
        padding: 10px 40px;
        font-size: 17px;
        margin-left: 90px;
        margin-bottom: 30px;
    }

    footer p {
      font-size: 20px;
    }



  }
