:root {
    --or : #6091ef;
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #ff9500;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --sec-color: #ff94b1;
  }

    body{
        font-size: 14px;
        line-height: 23px;
        font-style: normal;
        font-weight: 400;
        visibility: visible;
        font-family: poppins,Kanit,sans-serif;
        color: #fff;
        position: relative;
        background: #f4feff;
        background: -webkit-linear-gradient(to right, #111111d2, #000000);
    }

    .bg-glass{
        background: linear-gradient(135deg, rgba(255, 255,255 , 0.1)  ,  rgba(255, 255,255 , 0)  );
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        box-shadow: 0 8px 32px 0 rgba(0,0,0,0.37);
    }

    .button-62 {
        background: linear-gradient(to bottom right, #007bff, #6091ef);
        border: 0;
        border-radius: 12px;
        color: #FFFFFF;
        cursor: pointer;
        display: inline-block;
        font-family: -apple-system,system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 2.5;
        outline: transparent;
        padding: 0 1rem;
        text-align: center;
        text-decoration: none;
        transition: box-shadow .2s ease-in-out;
        user-select: none;
        -webkit-user-select: none;
        touch-action: manipulation;
        white-space: nowrap;
      }
      
      .button-62:not([disabled]):focus {
        box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem rgba(55, 0, 255, 0.5), .125rem .125rem 1rem rgba(0, 204, 255, 0.5);
      }
      
      .button-62:not([disabled]):hover {
        box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem rgba(55, 0, 255, 0.5), .125rem .125rem 1rem rgba(0, 204, 255, 0.5);
      }

      .card-home {
        border-bottom: 4px solid var(--blue);
    }

    .announcement-title {
        font-weight: bold;
        margin-bottom: 0.5rem;
        text-align: center;
        color: #007bff;
    }

    .announcement {
        font-weight: bold;
        margin-bottom: 0.5rem;
        text-align: center;
        color: #000000;
    }


a:focus {
    color: inherit;
    outline: 0;
    text-decoration: none
}

a:hover {
    text-decoration: none;
    color: #007bff;
}
a{
    color: #fff;
}
.bg-black{
    background-color: #0066ff;
}
.card{
    background: #fff;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.37);
    box-shadow: 1px 2px 5px #ffffff;
    border-radius: 0px;
}

.card1{
    background-color: #ffffff;
    box-shadow: 1px 2px 5px #ffffff;
    border-radius: 10px;
}

.card-qw{
    background-color: #ffffff;
    box-shadow: 1px 2px 5px #ffffff;
    border-radius: 0px;
}

.cardtopup{
    background-color: #ffffff;
    box-shadow: 2px 3px 5px #000;
    border-radius: 15px;
	width: 100%;
}
.image_show_card1{
    border-radius: 8px;
}
.image_show_card{
    border-radius: 10px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}
.bg-card{
    background-color: #ffffff;
    color: rgb(0, 0, 0);
}
.text-input-none{
    color: #D6D6D6 ;
    background: transparent ;
    width: 100%;
    height: 100px;
    resize: none;
    border: none;
}
.text-input-none1{
    width: 100%;
    height: 300px;
    resize: none;
}
.bg-pluem{
    background-color: #e51c23;
    color: rgb(255, 255, 255);
}

.underline-active {
    display: inline-block;
    color: var(--orange);
    text-decoration: none;
  }
  
  .underline-active::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width .3s;
  }
  
  .underline-active:hover::after {
    width: 100%;
  }


  .zoom {
    transition: transform .1s;
  }
  
  .zoom:hover {
    -ms-transform: scale(1); 
    -webkit-transform: scale(1); 
    transform: scale(1.1); 
  }