.gear{
    width: 30px;
    height: 30px;
    background-color: #3A3CCA;
    border-radius: 50%;
    position: relative;
   
}

.bar{
    width: 40px;
    height: 12px;
    background-color: #3A3CCA;
    border-radius: 25%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(150deg);
}
.bar:nth-child(2){
    transform: translate(-50%, -50%) rotate(90deg);
}
.bar:nth-child(3){
    transform: translate(-50%, -50%) rotate(30deg);
}

.gear-inner{
    width: 50%;
    height: 50%;
    background-color: #1E1E1E;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.carousel-control-prev-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e") !important;
}

.carousel-control-next-icon{
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e") !important;
}





.gear2{
    width: 40px;
    height: 40px;
    background-color: #7FC1FF;
    border-radius: 50%;
    position: relative;
    /* animation: rotate2 2s linear infinite; */
}

.bar2{
    width: 50px;
    height: 13px;
    background-color: #7FC1FF;
    border-radius: 25%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.bar2:nth-child(2){
    transform: translate(-50%, -50%) rotate(120deg);
}
.bar2:nth-child(3){
    transform: translate(-50%, -50%) rotate(60deg);
}

.gear-inner2{
    width: 60%;
    height: 60%;
    background-color: #1E1E1E;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes rotate{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
@keyframes rotate2{
    from{
        transform: rotate(360deg);
    }
    to{
        transform: rotate(0deg);
    }
}




.carousel-item img {
    width: 100%;
    height: auto;  
    object-fit: cover; 
    max-height: 100vh;  
}


  .card{
    background-color: #172061!important;
  }

  .card{
    background-color: #172061!important;
  }

  .imagem-proporcional{
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }

  .imagem-proporcional img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 -200px;
  }
  
  
  
    @media (max-width:767px){
        .rounded-sm-top-4{
            border-top-right-radius: 1rem;
            border-top-left-radius: 1rem;
            border-bottom-left-radius: 0;
        }
    }
  
  
    @media (min-width: 768px){
      .rounded-md-start-4{
          border-top-left-radius: 1rem;
          border-bottom-left-radius: 1rem;
          border-top-right-radius: 0;
      }
    }
      
      
      
      
  }
