@font-face {
    font-family: 'Jost';
    src: url('/assets/fonts/jost-variable.ttf');
}
html,body {
    font-family: "Jost", sans-serif;
    scroll-padding-top: 107px;
    font-style: normal;
    font-optical-sizing: auto;
    font-weight: 400;
}
.font-italic {
    font-style: italic;
}
.fw-bold,b,.dropdown-menu li a {
    font-weight: 600 !important;
}
h2,h3,h4,h5,h6 {
    font-weight: 700 !important;
}
h1 {
    font-weight: 900 !important;
}
.smaller {
    font-size: .45em;
}
/*COOKIEALERT START*/
.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 750ms ease-out;
    background: var(--col-light);
    color: #212529;
    border-top: 2px solid white;
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
    z-index: 1035;
}

.cookiealert a {
    text-decoration: underline;
    color: var(--col-nadpisa);
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}
/*COOKIEALERT END*/
/*HELP FLOATING BUTTON START*/
.float{
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	border-radius: 50px;
	text-align: center;
	box-shadow: 0px 0px 10px 1px #ffffff;
}
@media(max-width:991px){
    .float {
        bottom: 116px;
        right: 10px;
    }
}
.my-float{
	margin-top: 22px;
}
.help_button {
    z-index: 100000;
    transition: .25s all;
}
.tooltip {
    z-index: 100001;
}
/*HELP FLOATING BUTTON END*/

.container {
    max-width: 1250px;
}
.nav-link {
    padding-top: unset;
    padding-bottom: unset;
}
.btn {
    border-radius: unset;
}
.btn-blue {
    color: #fff;
    background-color: #252257;
    border: 2px solid #252257;
}
.btn-blue:hover {
    color: #252257;
    background-color: #fff;
    border: 2px solid #252257;
}
.btn-red {
    color: #fff;
    background-color: #c41630;
    border: 2px solid #c41630;
}
.btn-red:hover {
    color: #c41630;
    background-color: #fff;
    border: 2px solid #c41630;
}
/*for navbar START*/
.btn-red .nav-link {
    color: #fff;
}
.btn-red:hover .nav-link {
    color: #c41630;
}
/*for navbar END*/
.btn-white {
    color: #1a5e9a;
    background-color: #fff; 
    border: 2px solid #fff;
}
.btn-white:hover {
    color: #fff;
    background-color: #1a5e9a;
    border: 2px solid #fff;
}
.btn-white-bb {
    color: #1a5e9a;
    background-color: #fff; 
    border: 2px solid #fff;
}
.btn-white-bb:hover {
    color: #fff;
    background-color: #1a5e9a;
    border: 2px solid #1a5e9a;
}
.bg-lightblue {
    background-color: #1a5e9a;
}
.bg-blue {
    background-color: #F1F3F8;
}
.bg-blue-darker {
    background-color: #D7DDEC;
}
#hero {
    background-image: url('../img/hero-bg-dark.jpg');
    background-position: center;
    background-size: cover;
}
#mainlogo {
    height: 88px;
}
#home-tiles {
    margin-top: -75px;
}
.card {
    border-radius: unset !important;
}
#home-tiles .card {
    box-shadow: 0 0 20px 0px black;
}
.btn-ht-showmore{
    position: absolute;
    bottom: 24px;
    right: 24px;
}
.section-title:not(.noafter)::after {
    content: "";
    position: relative;
    display: block;
    width: 50px;
    height: 3px;
    background: #252257;
    bottom: 0;
    left: 0;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
}
.section-content {
    text-align: justify;
}
@media (max-width: 767px) {
    .carousel-inner-multi .carousel-item > div {
        display: none;
    }
    .carousel-inner-multi .carousel-item > div:first-child {
        display: block;
    }
}

.carousel-inner-multi .carousel-item.active,
.carousel-inner-multi .carousel-item-next,
.carousel-inner-multi .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {
    
    .carousel-inner-multi .carousel-item-end.active,
    .carousel-inner-multi .carousel-item-next {
      transform: translateX(25%);
    }
    
    .carousel-inner-multi .carousel-item-start.active, 
    .carousel-inner-multi .carousel-item-prev {
      transform: translateX(-25%);
    }
}

.carousel-inner-multi .carousel-item-end,
.carousel-inner-multi .carousel-item-start { 
  transform: translateX(0);
}
.carousel-multi .card {
    padding: 8px;
    border: none;
    background-color: transparent;
}
.carousel-multi .card-img {
    border: 1px solid grey;
    box-shadow: 0px 0px 5px 0px grey;
    padding: 5px;
    transition: .3s all;
}
.carousel-multi .card-img:hover {
    box-shadow: 0px 0px 10px 0px black;
}
.carousel-multi .carousel-control-next {
    margin-right: -90px;
}
.carousel-multi .carousel-control-next-icon {
    filter: invert(1);
}
.carousel-multi .carousel-control-prev {
    margin-left: -90px;
}
.carousel-multi .carousel-control-prev-icon {
    filter: invert(1);
}
div.carousel-nav-icon > svg {
    height: 48px;
    width: 48px;
}
.row.display-flex {
    display: flex;
    flex-wrap: wrap;
}
.row.display-flex > [class*='col-'] {
    flex-grow: 1;
}
.filter-invert {
    filter: invert(1);
}
#mobile_menu img {
    width: 35px;
}
#mobile_menu {
    box-shadow: 0px -1px 8px dimgrey;
    font-size: 13px;
}
#mobile_menu a, #mobile_menu a:hover, #mobile_menu a:focus {
    text-decoration: none;
    color: black;
}
.mobile_menu_box {
    padding-left: 6px;
    padding-right: 6px;
}
.footer_social_icon {
    width: auto;
    height: 50px;
}
@media(min-width:768px){
    .footer-followus {
        position: relative;
    }
    .footer-followus-content {
        position: absolute;
        bottom: 0;
    }
}
.mobilemenu-wrap {
    padding: 7px;

}
.mobilemenu-ins {
    display: block;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 5px 1px black;
    text-align: center;
    color: white;
    text-decoration: none;
    padding: 17px;
    font-size: 125%;
    transition: .25s all;
}
.mobilemenu-ins:hover, .mobilemenu-ins:focus {
    background-color: #252257;
    box-shadow: 0 0 15px 3px black;
}
.mobilemenu-ins img {
    width: 100px;
    padding: 15px;
}
/*DROPDOWN MENU START*/
.dropdown-menu {
    padding-top: 0px;
    padding-bottom: 0px;
}
.dropdown-menu li {
    padding-top: 3px;
    padding-bottom: 3px;
}
.dropdown-divider {
    margin-top: 0px;
    margin-bottom: 0px;
}
/*DROPDOWN MENU END*/
.form-select {
    border-radius: unset !important;
}
.navbar-nav .prof-image {
    height: 47px;
}
#footer a:hover {
    text-decoration: underline !important;
}
/*FIX dropdown center pro navbar*/
.navbar-nav .dropdown-center .dropdown-menu[data-bs-popper]{
    left: -50% !important;
}
/*END FIX dropdown center pro navbar*/

.modal .form-floating:not(:last-of-type) {
    margin-bottom: 1rem;
}