*,
::after,
::before {
    box-sizing: border-box;
    position: relative;
    margin: 0;
    padding: 0;
    z-index: 5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: normal;
}

body {
    overflow-x: hidden;
}

img {
    width: 100%;
    height: auto;
}

a,
a:visited,
a:active {
    text-decoration: none;
}

ul li {
    list-style: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 8px;
    height: 8px;
    background-color: #145748;
    border-radius: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.nav-link.active::after {
    opacity: 1;
}

.select2-selection__clear {
    display: none;
}

.select2-search__field{
    outline: none;
}

.select2-selection--single, .select2-selection__arrow{
    height: 3rem !important;
    display: flex !important;
    align-items: center !important;
    outline: none;
}

