@charset "utf-8";
/* CSS Document */

  .carousel {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 20px auto;
    overflow: hidden;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .rotated {
    transform: rotate(180deg);
  }

  .carousel-slide {
    flex: 0 0 auto;
    box-sizing: border-box;
    padding: 10px;
  }
.carousel-slide a {display: inline!important; cursor: pointer;}
  .carousel-slide>div>div>ol>li {
    margin-bottom: 10px;
  }

  .carousel-slide::hover {
    border: 2px solid #00549a;
  }

  .carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    cursor: pointer;
  }

  .carousel-buttons button {
    background: #fff;
    color: #00549a;
    border: 2px solid #00549a;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    height: 40px;
    width: 40px;
    font-weight:600
  }


  .carousel-buttons button:hover, button:focus, button:active { 
    background: #00549a;
    color: #fff; font-weight: 600}
  
  .carousel-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }

  .carousel-dots {
    text-align: center;
    margin-top: 10px;
  }

  .carousel-dot {
    display: none;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
  }

  .carousel-dot.active {
    background-color: #333;
  }
  
  @media and (max-width:599.99px) {
    .carousel-buttons {display:none}
     .carousel-dot {
       display: inline-block;}
  }