/* Navbar Modification */
.nav-link-active {
    position: relative;
    color: #9643DB;
}

.nav-link-active::after {
    content: '';
    position: absolute;
    background-color: #9643DB;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
}

.nav-link {
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #9643DB;
    transition: width 0.35s ease-in-out;
}

.nav-link:hover::before ~ .nav-link-active::after {
    width: 0;
}


.nav-link:hover::before {
    width: 100%;
}

.navigation-item {
    position: absolute;
    top: -60px;
}


/* Pricing page */
.pricing-first-section {
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg id="Vrstva_1" data-name="Vrstva 1" xmlns="http://www.w3.org/2000/svg" width="1440" height="377.46" viewBox="0 0 1440 377.46"%3E%3Cdefs%3E%3Cstyle%3E.cls-1 { fill: %23e0c3fc; opacity: .4; stroke-width: 0px; }%3C/style%3E%3C/defs%3E%3Cpath class="cls-1" d="M0,0v306.69c586.46,187.69,1035.69-66.15,1440,10.77V0H0Z"/%3E%3C/svg%3E');
    background-position: top;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.pricing-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 95%;
    background-color: rgba(255, 255, 255, .7);
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    border: 3px solid #F2F2F2;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    padding: 12px;
    text-align: start;
}

.pricing-card ul {
    list-style: none;
    padding: 0;    
}

.pricing-card ul li {
    position: relative;
    padding-left: 1rem;
}

.pricing-card ul li::before {
    content: '\2022';
    font-size: 3.5rem;
    line-height: 2.4rem;
    color: #9643DB;
    position: absolute;
    left: 0;
}

.pricing-card.selected {
    border: 4px solid #9643DB;
}

.pricing-card.selected::before {
    content: 'Doporučujeme';
    position: absolute;
    top: 0;
    right: 0;
    background-color: #9643DB;
    color: #FFFFFA;
    font-family: 'Signika Negative', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 4px 16px 4px 14px;
    border-radius: 0 15px;
}

#pricing-tabs.list-group {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

#pricing-tabs .list-group-item {
    font-family: Signika Negative, sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    text-align: center;
    background-color: #FFFFFA;
    padding-top: .7rem;
    padding-bottom: .7rem;
    cursor: pointer;
    transition: all ease-in-out .2s;
}

#pricing-tabs .list-group-item.active {
    background-color: #9643DB;
    border-color: #9643DB;
    color: #FFFFFA;
}

#pricing-tabs .list-group-item:hover {
    background-color: var(--bs-list-group-action-hover-bg);
}

#pricing-tabs .list-group-item.active:hover {
    background-color: #8036bd;
}



.shadow-md {
    box-shadow: -1px 4px 4px 1px rgba(0,0,0,0.20);
}

.aspect-ratio-3x2 {
    aspect-ratio: 3/2;
}

.object-position-center {
    object-position: center;
}

.bg-light-purple {
    background-color: rgba(224, 195, 252, .15);
}
