@font-face {
    font-family: 'Barlow';
    src: url('fonts/Barlow-Black.eot');
    src: url('fonts/Barlow-Black.eot?#iefix') format('embedded-opentype'),
        url('fonts/Barlow-Black.woff2') format('woff2'),
        url('fonts/Barlow-Black.woff') format('woff'),
        url('fonts/Barlow-Black.ttf') format('truetype'),
        url('fonts/Barlow-Black.svg#Barlow-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geogrotesque Bd';
    src: url('fonts/Geogrotesque-Bold.eot');
    src: url('fonts/Geogrotesque-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Geogrotesque-Bold.woff2') format('woff2'),
        url('fonts/Geogrotesque-Bold.woff') format('woff'),
        url('fonts/Geogrotesque-Bold.ttf') format('truetype'),
        url('fonts/Geogrotesque-Bold.svg#Geogrotesque-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('fonts/Barlow-Regular.eot');
    src: url('fonts/Barlow-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/Barlow-Regular.woff2') format('woff2'),
        url('fonts/Barlow-Regular.woff') format('woff'),
        url('fonts/Barlow-Regular.ttf') format('truetype'),
        url('fonts/Barlow-Regular.svg#Barlow-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('fonts/Barlow-Medium.eot');
    src: url('fonts/Barlow-Medium.eot?#iefix') format('embedded-opentype'),
        url('fonts/Barlow-Medium.woff2') format('woff2'),
        url('fonts/Barlow-Medium.woff') format('woff'),
        url('fonts/Barlow-Medium.ttf') format('truetype'),
        url('fonts/Barlow-Medium.svg#Barlow-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body, html {
  height: 100%;
}

.centered-images > div {
    display: flex;
    justify-content: center;
}

body {
    font-family: 'Barlow', sans-serif;
    font-weight: normal;
    font-style: normal;
    background: radial-gradient(circle at center 220px, #3c81bb, #334e7f, #292a58 100%);
    background-color: #292a58;
    color: #FFF;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Make the background scrollable */
}

.gradient-line {
    height: 30px; /* Set the height of the horizontal line */
    background: linear-gradient(to right, #df0024 0%, #df0024 50%, #df0024 100%);
    width: 100%; /* Make sure it spans the full width of its container */
}

.navbar-nav .nav-item a {
    color: white;
    text-decoration: none;
    position: relative;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
}

.navbar-nav a:hover, .navbar-nav a:active, .navbar-nav a:visited, .navbar-nav a:link  {
    color: white; /* Make the text black on hover */
}
.navbar-nav .nav-item a:not(.navbar-brand):before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item a:not(.navbar-brand):hover:before {
    visibility: visible;
    width: 100%;
}

.navbar-nav .nav-item.dropdown .dropdown-item:hover {
    background-color: transparent; /* Or set to your desired color */
}

.h1-wrapper {
    position: relative;
    width: 100%;
}

@media (min-width: 992px) {
    .h1-wrapper:before {
        content: "";
        position: relative;
        top: 50%; /* center the strip vertically */
        left: 0;
        height: 2.2em; /* adjust this value to change the strip height */
        width: 100%;
        background: black;
        z-index: -1;
        transform: translateY(-50%); /* shift the strip up by half its height to ensure it's centered */
    }
}

h1 {
    font-family: 'Geogrotesque Bd', sans-serif;
    font-weight: bold;
    font-style: normal;
    font-size: 3em;
    position: relative;
    z-index: 1;
    color: white; /* change the text color to white or any color that will be visible against the black strip */
  
/*    background: linear-gradient(to right, #decd95, #c59557);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  
    -webkit-text-stroke: 2px black;*/
    text-align: center; /* center the text */
}

footer {
    color: #FFF;

}

/* Style the links */
.nav-link {
    color: white; /* Make the text black */
    text-decoration: none; /* Remove the default underline */
    position: relative; /* Enable absolute positioning for child elements */
}

/* Add the underline effect */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white; /* Make the underline black */
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

/* Show the underline when the link is hovered over */
.nav-link:hover::after {
    visibility: visible;
    width: 100%;
}

/* Set the hover color */
.nav-link:hover, .nav-link:active, .nav-link:visited, .nav-link:link  {
    color: white; /* Make the text black on hover */
}

a {
    color: #000;
    text-decoration: underline;
}

.plavo a:hover {
    color: #f6e9b5 !important; 
    text-decoration: underline;
}

label {
    color: #009f3c;
}

/* CSS for medium and larger screens */
@media (min-width: 576px) {
  #promocija {
    margin-top: -16em;
    z-index: 0;
  }
}

/* CSS for medium and larger screens */
@media (min-width: 576px) {
  #uvjeti {
    max-width: 50%;
    margin: 0 auto;
  }
}

.form-control {
	    border: none;
}

.form-control:focus { 
	box-shadow: none;
	border: 1px solid #009f3c;
}


input:focus {
  border-color: #f6e9b5 !important;
}

.help-block.with-errors {
    color: #febd11;
    margin-top: 5px;
}

.custom-control-label::before {
    background: #FFFFFF;
}

.plavo {
  background-color: #334e7f;
  color: white;
}

.plavo a, a:hover {
    color: #FFFFFF;
}

.plavo h1, .plavo h2, .plavo h3, .plavo h4, .plavo h5, .plavo h6 {
  background: linear-gradient(to right, #DECD95, #C59557);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
}

#uvjeti li {
    padding-top: 2em;
}

.plavo .btn {
  border-radius: 50px;
  color: black;
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  height: 3em;
  background: linear-gradient(to right, #DECD95, #C59557);
  border: none;
  box-shadow: none;
}

.plavo .btn:hover {
  background: linear-gradient(to right, #C59557, #DECD95);
}

.plavo .btn:focus,
.plavo .btn:active,
.plavo .btn:disabled,
.plavo .btn:visited {
  outline: none;
}

.proizvodi {
  background: #FFF;
  font-family: 'Barlow', sans-serif;
  font-weight: 500; 
  color: #000;
}

.nagradna, .dobitnici, .pravila {
    text-align: center;
}

.pravila h3 {
    color: #f6d200;
}

.sms, .highlight {
    color: #e1ddaa;
    font-weight: bold;
}

.btn {
    text-transform: uppercase;
}

.controls, .messages {
    font-family: 'Barlow'; font-weight: normal; font-style: normal;
    text-transform: none;
    text-shadow: none;
}

label, .text-muted {
    color: #FFF !important;
}

.naslov-nagrada {
    display: block;
    color: #ed1c24;
    text-align: center;
    padding: 10px 5px 10px 25px;
    border-radius: 100px;
    border: 2px solid #ed1c24;
    background-color: #FFFFFF;
    margin: auto;
}

.naslov-istaknuto {
    display: inline-block;position:relative;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 3rem;
    line-height: 2.5rem;
    padding: 5px 5px 5px 5px;

    background-color: #ed1c24;
    transform: skew(-12deg) rotate(-12deg);
    border-bottom-right-radius: 3rem;

    -webkit-box-shadow: 0px 2px 0px #333;
    -moz-box-shadow: 0px 2px 0px #333;
    box-shadow: 0px 2px 0px #333;
}

.naslov-istaknuto-dm {
    display: inline-block;position:relative;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 3rem;
    line-height: 2.5rem;
    padding: 5px 5px 5px 5px;

    background-color: #ed1c24;
    border-radius: 100%;

    -webkit-box-shadow: 0px 2px 0px #333, inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    -moz-box-shadow: 0px 2px 0px #333, inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    box-shadow: 0px 2px 0px #333, inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3;
}

.naslov-istaknuto-finish {
    color: #008cc3;
    font-size: 3rem;
    font-family: 'HandOfSean', Arial, sans-serif;
    
	text-shadow: -1px 1px 2px #FFFFFF,
				  1px 1px 2px #FFFFFF,
				  1px -1px 0 #FFFFFF,
				  -1px -1px 0 #FFFFFF;
    
}

.highlight2 {
    color: #FFF;
    font-weight: bold;
}

.title {
    margin: 0 auto;
}

.nagrade {
    background: white;
}

.checkmark {
    color: #00a2e5;
    font-size: 2em;
    vertical-align: top;
}

.upute ul li {
  /* set color of list item text */
  display: inline-block;
  list-style: none; 
  margin: 0 0 16px 1.1225em;
  /* Give the bullet room on the left hand side */
  padding: 0;
  position: relative;
}

.upute ul li::before {
  color: #FFFFFF;  
  /* color of bullet or square */
  content: "\002B24"; 
  font-weight: bold;
  /* Unicode of character to precede the list item */
  display: inline-block;
  font-size: 1em; 
  /* use em or % */ 
  left: -1.5em; 
  /* use em, line up bullet flush with left hand side */
  position: absolute;
  /* Set the bullet positioned absolutely top left */
  top: 0em; 
  /* use em or % */
}

/* Slidenav 4.1.0-alpha.2 ( https://github.com/tightcode/slidenav ) */
.dropdown-menu.collapsing {
  display: block;
}
@media (max-width: 767.98px) {
  .dropdown-menu {
    padding: 0;
    margin-top: 0!important;
    border: 0!important;
  }
  .dropdown-menu:before {
    content: "";
    display: block;
    padding-top: .5rem;
  }
  .dropdown-menu:after {
    content: "";
    display: block;
    padding-bottom: .5rem;
  }
}
@media (min-width: 768px) {
  .dropdown>div {
    position: absolute;
    clip: rect(0.5rem, 9999px, 9999px, -9999px);
  }
  .dropdown-menu {
    height: auto!important;
    transition: transform .35s ease!important;
  }
  .dropdown-menu.collapse, .dropdown-menu.sliding {
    transform: translate(0, -100%);
  }
  .dropdown-menu.collapse:not(.show) {
    display: block;
  }
  .dropdown-menu.collapse.show {
    transform: translate(0, 0);
  }
}

.dropdown-menu a {
  color: #1a3988 !important;
}

.dropdown-menu a:hover {
  text-decoration: underline !important;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: black;
}