:root {
    --bs-font-sans-serif: "Montserrat", system-ui, -apple-system, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans",
        sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    scroll-padding-top: 10em;
}

.form-control {
    border: none;
    border-bottom: 2px solid var(--bs-primary);
    border-radius: 0;
    padding: 5px 0;
}

.form-control:focus {
    border-bottom: 2px dashed var(--bs-primary);
    outline: 0;
    box-shadow: none;
}

button:focus {
    outline: 0;
    box-shadow: none;
}

button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

.btn-check:focus + .btn-outline-primary,
.btn-outline-primary:focus {
    box-shadow: none !important;
}

.btn-primary {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    box-shadow: none !important;
}

.btn-primary:hover,
.btn-primary:focus {
    color: var(--bs-primary);
    background-color: transparent;
    border: 1px solid var(--bs-primary);
    border-color: var(--bs-primary);
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--bs-primary);
}

.theme-card .form-control::placeholder {
    color: var(--bs-primary);
}

.theme-card .form-control {
    border-bottom: 2px solid var(--bs-primary);
    background: transparent;
    color: var(--bs-primary);
}

.theme-card input:focus,
textarea:focus {
    border-bottom: 2px dashed var(--bs-primary) !important;
}

.theme-card {
    padding: 1em;
    color: white;
    transition: all 0.5s;
    box-shadow: 3px 5px 13px 0px white;
}

.theme-card:hover {
    box-shadow: 3px 5px 13px 0px #686868;
}

.team-card {
    width: 100%;
    position: relative;
    background-color: transparent;
    border: 0;
    transition: all 0.5s;
    box-shadow: 3px 3px 10px #cdcdcd;
}

.team-card:hover {
    color: white;
}

.team-card::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--bs-primary);
    background: linear-gradient(
        180deg,
        var(--bs-primary) 0%,
        var(--bs-secondary) 100%
    );
    z-index: -1;
    transition: opacity 0.5s linear;
    opacity: 0;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card img {
    border-radius: 100%;
    padding: 10%;
}

.map {
    filter: grayscale(0.5);
    transition: all 0.5s;
}

.map:hover {
    filter: grayscale(0);
}

.dropend .dropdown-toggle::after {
    float: right;
    margin-top: 7px;
    margin-right: 1rem;
    transform: rotate(45deg);
}

.dropdown-item > .dropdown > a.nav-link.dropdown-toggle {
    padding: 0;
}

.dropdown-menu {
    padding: 0;
    border: none;
    border-radius: 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--bs-primary);
    color: white !important;
}

.dropdown-item:hover > .dropdown > a,
.dropdown-item:hover > a {
    color: white !important;
}

.dropdown-item > a.nav-link {
    padding: 0;
}

.dropdown-menu.show {
    box-shadow: 2px 3px 9px #c3c3c3;
}

.dropdown-toggle::after {
    margin-left: inherit;
    border-top: inherit;
    border-right: inherit;
    border-bottom: inherit;
    border-left: inherit;
    border-style: solid !important;
    border-width: 0.15em 0.15em 0 0 !important;
    content: "" !important;
    display: inline-block !important;
    height: 0.45em;
    left: 0.3em;
    position: relative;
    vertical-align: top !important;
    width: 0.45em;
    top: 0.4em;
    transform: rotate(135deg);
}

.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
    display: block;
    margin-top: 0.125em;
    margin-left: 0.125em;
}

.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
    display: block;
    margin-top: -0.125em;
    margin-left: 0.125em;
}

.dropdown-item {
    padding-right: 0;
}


@media screen and (min-width: 769px) {
    .dropend:hover > .dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
        margin-left: -0.025rem;
        margin-top: -0.25rem;

        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        max-height: 80rem;
        width: fit-content;
    }
    .dropend .dropdown-toggle {
        margin-left: 0.5em;
    }
    .dropdown-item {
        min-width: 200px;
        background-color: #fbfbfb;
    }
}


@media screen and (max-width: 1550px) {
    .dropend:hover > .dropdown-menu {
        overflow-y: auto;
        display: block;
        max-height: 60vh;
    }
}



@media screen and (max-width: 1260px) {
    .dropend:hover > .dropdown-menu {
        top: 32px;
        left: inherit;
        right: 0;
    }
}


.dropend .dropdown-toggle::after {
    display: inherit;
    margin-left: inherit;
    vertical-align: inherit;
    content: "";
    border-top: inherit;
    border-right: inherit;
    border-bottom: inherit;
    border-left: inherit;
    top: 0;
}

.navbar-light .navbar-nav .nav-link {
    color: rgb(0 0 0);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.navbar > .container-fluid {
    /*flex-direction: column!important;*/
}

.min-height {
    min-height: calc(75vh);
}

@media (max-width: 992px) {
    .navbar > .container-fluid {
        flex-direction: row !important;
    }

    .main-container {
        min-height: calc(100vh - 370px);
    }

    .min-height {
        min-height: 50vw;
    }
}

footer,
.main-gradient {
    background: var(--bs-primary);
    background: linear-gradient(
        180deg,
        var(--bs-primary) 0%,
        var(--bs-secondary) 100%
    );
}

li.nav-item {
    margin: 0 0.5rem;
}

a {
    color: #626262;
    text-decoration: none;
}

a:hover {
    color: var(--bs-primary);
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--bs-primary), var(--bs-secondary));
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    filter: contrast(1);
}

.segment-card-details {
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background-color: #00000005;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.5s;
    overflow-y: auto;
}

.segment-card-details:hover {
    opacity: 1;
}


.segment-card-details > p {
    text-shadow: 0px 0px 30px white;
    font-weight: bold;
    background: #ffffff91;
    box-shadow: 0 0 15px 9px #ffffffad;
    border-radius: 0.5em;
}

/*
.segment-card-details > p {
        text-shadow: 0px 0px 30px white;
    font-weight: bold;
    background: #ffffff91;
    padding: 5px 15px;
    box-shadow: 0 0 15px 9px #ffffffa6;
}*/
