html {
    --selssa-1: #366BB0;
    --selssa-2: #666767;
    --white: #FFFFFF;
    --selssa-1-light: #78b8ea;
    --selssa-1-dark: #163B80;
}

.ui-to-top {
    background-color: var(--selssa-1);
    color: var(--white);
}

.bg-dark {
    background-color: var(--selssa-1-dark) !important;
}

.bg-primary {
    background-color: var(--selssa-1-light) !important;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:hover,
.btn-dark:active,
.btn-dark.active {
    background-color: var(--selssa-1) !important;
    border-color: var(--selssa-1) !important;
    color: var(--white) !important;
}

.text-primary {
    color: var(--selssa-1-light) !important;
}

.text-white {
    color: var(--white) !important;
}

a.btn-white {
    color: #15171A !important;
}

a.btn-white:hover {
    color: var(--white) !important;
}

.service-link a:hover {
    color: #15171A !important;
}

.box-counter-main {
    color: var(--selssa-1-light) !important;
}

.link-inherit:hover {
    color: var(--selssa-1-light) !important;
    text-decoration: none !important;
}

.footer-nav-link:hover {
    color: var(--selssa-1-light) !important;
}

.object-fit {
    object-fit: cover;
}

.selssa-ul {
    list-style: circle;
    margin-top: 2rem;
}

.selssa-li {
    display: list-item;
    margin-bottom: 0.3rem;
}

.selssa-img {
    width: 360px;
    height: 240px;
    object-fit: cover;
}

.selssa-img-2 {
    width: 500px;
    height: 350px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .col-xl-10.wow.fadeInUp .row.row-30 .col-md-3 {
        max-width: 20% !important;
    }
}


/*----------------------- TOOLTIP -----------------*/

.tooltip_ {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip_ .tooltiptext {
    visibility: hidden;
    width: 40vh;
    background-color: black;
    color: #fff;
    font-weight: 600;
    font-size: 0.8em;
    text-align: center;
    border-radius: 3px;
    border: 4vh;
    padding: .3em .6em;
    position: absolute;
    z-index: 1;
    top: 150%;
    left: 50%;
    margin-left: -20vh;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}


/*Arrow Needed to show the little arrow on the tooltip, can be not used*/

@media only screen and (min-width: 768px) {
    .Arrow :after {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent black transparent;
    }
}

.tooltip_:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}