/*----------------------------- For Tablet ------------------------------------*/

@media screen and (min-width: 769px) and (max-width: 1049px) {
  
  .nav-bar-mobile-section{
    display: none !important;
  }
  
  .top-bar {
    width: 100%;
    background-color: var(--footer-top-bar-color);
    border-bottom: 1px solid var(--first-color);
  }

  .top-bar-content-box{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .top-bar-content-box img{
    height: 15px;
    margin-top: 12px;
    float: left;
    margin-right: 10px;
    margin-left: 10px;
  }

  .top-bar-content-box p {
    float: left;
    margin-top: 13px;
    font-size: 13px;
    color: var(--p-color);
  }

  .top-bar-content-box a {
    text-decoration: none;
    margin-top: 8px;
    margin-left: 3px;
    color: var(--p-color);
  }

  .social-section{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .box-containers{
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 5px;
    margin-right: 5px;
  }

  /*----- FB Container -----*/

  .social-container-fb {
    background-color: #3b5998;
    width: 30px;
    height: 28px;
    border-radius: 10px;
    overflow: hidden;
  }

  .social-container-fb img {
    width: 20px;
    display: block;
    margin: auto;
    margin-top: 4px;
  }

  /*----- X Container -----*/

  .social-container-x {
    background-color: #000000;
    width: 30px;
    height: 28px;
    border-radius: 10px;
    overflow: hidden;
  }

  .social-container-x img {
    width: 20px;
    display: block;
    margin: auto;
    margin-top: 4px;
  }

  /*----- TikTok Container -----*/

  .social-container-tiktok {
    background-color: #212121;
    width: 30px;
    height: 28px;
    border-radius: 10px;
    overflow: hidden;
  }

  .social-container-tiktok img {
    width: 20px;
    display: block;
    margin: auto;
    margin-top: 4px;
  }

  /*----- Nav Bar Section -----*/

  .logo-section{
    float: left;
  }

  .logo-section img{
    width: 60px;
    float: left;
    margin-top: 10px;
    margin-left: 20px;
  }

  .color-edit-logo{
    color: var(--fourth-color);
  }

  .logo-section h1{
    float: left;
    margin-top: 25px;
    margin-left: 20px;
    font-size: 25px;
    color: var(--footer-top-bar-color);
  }

  .nav-bar{
    width: 100%;
    height: 80px;
    background-color: var(--first-color);
  }

  .nav-bar-section{
    float: right;
    margin-top: 29px;
    margin-right: 20px;
  }

  .list{
    list-style-type: none;
    float: left;
    font-size: 17px;
    margin-right: 10px;
    margin-left: 10px;
    color: var(--footer-top-bar-color);
    font-weight: 600;
  }

  .list:hover{
    border-bottom: 2px solid var(--fourth-color);
  }

  /*----- Hero Section -----*/

    .hero-section{
            clear: both;
            width: 100%;
            height: 350px;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/website/hero.jpg);
            background-position: center;
            background-size: cover;
    }

    .text-content{
        padding: 0;
        margin: 0;
    }

    .text-content p{
        display: block;
        margin: 0 auto;
        text-align: center;
        padding-top: 120px;
        color: var(--first-color);
        font-size: 60px;
    }

    .text-content button{
        width: 110px;
        height: 35px;
        border-radius: 25px;
        border: none;
        background-color: var(--second-color);
        color: var(--first-color);
        display: block;
        margin: 0 auto;
        margin-top: 20px;
        transition:  0.6s;
    }

    .text-content button:hover{
        background-color: var(--third-color);
        color: var(--first-color);
        transition:  0.6s;
    }

    /*----- CCTV information Section -----*/

    .cctv-information-section{
      width: 100%;
      background-color: var(--fourth-color);
      height: 70px;
    }

    .cctv-information-container{
      width: 98%;
      margin: auto;
    }

    .cctv-information-container p{
      color: var(--first-color);
      font-size: 20px;
      font-weight: 400;
      line-height: 70px;
      float: left;
    }

    .cctv-information-container button{
      float: right;
      margin-top: 18px;
      width: 110px;
      height: 35px;
      padding: 7px 17px;
      font-size: 10px;
      width: 110px;
      border-radius: 25px;
      border: none;
      background-color: var(--second-color);
      color: var(--first-color);
    }

    .cctv-information-container button:hover{
      background-color: var(--third-color);
      color: var(--first-color);
      transition:  0.6s;
    }

}