.projects{
    color: white;
    background: #111;
}

.projects .title::before{
    background: white;
}

.projects .title::after{
    background: #111;
    content: "Mina projekt"
}

.projects .carousel .project-card{
    background: #222;
    border-radius: 6px;
    padding: 25px 35px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
}
.projects .carousel .project-card:hover{
    background: #2F0B6Fff;
}

.projects .carousel .project-card .card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.projects .carousel .project-card .card-content i{
    font-size: 50px;
}
.projects .carousel .project-card:hover .card-content{
    transform: scale(1.05);
}
.projects .carousel .project-card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}
.projects .carousel .project-card img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #2F0B6Fff;
    transition: all 0.3s ease;
}
.projects .carousel .project-card:hover img{
    border-color: #fff;
}
.owl-dots{
    text-align: center;
    margin-top: 20px;
}
.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid #2F0B6Fff!important;
    transition: all 0.3s ease;
}
.owl-dot.active{
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover{
    background: #2F0B6Fff!important;
}