    .accordion-body li {
    color: #000 ;
}

    .accordion-item {
        margin: 15px 0px !important;
    }
    .inscription:hover {
    height: 100px;
    }
    .inscription {
    transition: .3s;
    /* border-radius: 10px 10px 0px 0px; */
    height: 90px;
    bottom: 0;
    position: fixed;
    width: 100%;
    background-color: #000000;
    }
    button#ins_btn:hover {
    border-radius: 5px 5px 5px 0px;
    background-color: #3169a1;
    }
    .btn_close {
  position: relative;
  width: 30px;
  height: 30px;
  border: none;
  background: rgba(180, 83, 107, 0.11);
  border-radius: 5px;
  transition: background 0.5s;
    }

    .X {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1.5px;
  background-color: rgb(255, 255, 255);
  transform: translateX(-50%) rotate(45deg);
    }

    .Y {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1.5px;
  background-color: #fff;
  transform: translateX(-50%) rotate(-45deg);
    }


    .btn_close:hover {
    background-color: rgb(211, 21, 21);
    }

    .btn_close:active {
    background-color: rgb(130, 0, 0);
    }

    .btn_close:hover > .close {
        animation: close 0.2s forwards 0.25s;
    }

    @keyframes close {
        100% {
            opacity: 1;
        }
    }