@media screen and (min-width: 426px) and (max-width: 768px) {
  main{
    overflow-x: hidden;
    background-color: hsl(240, 100%, 5%);
    color: white;
  }

  .hlt-ctn{
    width: 100%;
    height: 90px;
    background-color: rgb(19, 19, 94);
    display: flex;
    align-items: center;
    padding: 0 30px;
  }

  .hlt-ctn h1{
    font-size: 3vw;
  }

  .content-ctn{
    padding: 40px 40px 60px;
  }

  .cnt-hdg h2{
    margin-bottom: 20px;
    color: rgb(230, 230, 255);
    font-size: 3vw;
  }

  .cnt-hdg p{
    margin-bottom: 30px;
    font-size: 3vw;
  }

  .channel-group{
    margin-bottom: 50px;
  }

  .channel-group a{
    color: rgb(223, 223, 255);
    text-decoration: none;
  }

  .channel-group a:hover{
    text-decoration: underline;
  }

  .channel-group h3{
    margin-bottom: 20px;
    color: rgb(165, 165, 255);
  }

  .channel-group p{
    margin-bottom: 20px;
  }

  .channel-group li{
    margin-bottom: 20px;
    color: rgb(155, 155, 155);
  }

  .address{
    color: rgb(223, 223, 255) !important;
  }

  .form-ctn{
    list-style: none;
  }

  .form-group {
    margin-bottom: 20px;
  }

  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }

  .ipt {
    width: 50%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
  }

  small{
    display: block;
  }

  textarea {
    height: 150px;
    resize: vertical;
  }

  .error {
    color: #e74c3c;
    font-size: 0.9em;
    margin-top: 5px;
    width: 50%;
  }

  .success {
    color: #27ae60;
    background-color: #e8f8f0;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    width: 50%;
  }
  
  .send-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .send-btn:hover {
    background-color: #2980b9;
  }

  .honeypot {
    position: absolute;
    left: -9999px;
  }
}