: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;
  }

    b{
    background: #ff9500;
    }

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);
}
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-color: #ffffff;
    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;
}
.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); 
  }