/* Common styles */
h2 {
	font-size: 24px;
}

img {
//	outline: 1px solid white;
//	outline-offset: -5px;
}
/* Common styles */



/* Header */
#menu.navbar-default {
	box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

#menu .navbar-brand {
	padding: 0px;
}

#menu {
	padding: 15px;
}

#menu .navbar-brand > img {
	outline: none;
}

#menu .navbar-right {
	margin-right: 0px;
}

#menu .navbar-right li a {
	transition: all 0.3s;
}

#menu .navbar-right li a:hover {
	transition: all 0.3s;
}

#menu ul a {
	position: relative;
	text-decoration: none;
}

#menu ul a:hover {
	color: #FF6600;
}

#menu ul a::before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #FF6600;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

#menu ul a:hover::before {
	transform: scaleX(1);
}

#menu ul li.last a.page-scroll {
	margin-right: 0px;
}
/* Header */



/* Intro */
#header .intro .overlay {
	background: rgba(0,0,0,0.2);
	height: 100vh;
}

#header .intro {
	background: none;
	background-color: #1f386e;
}

#header .intro .overlay {
	background: none;
}

#header .intro .slideshow {
	list-style: none;
	z-index: 1;
}

#header .intro .slideshow li span {
	margin-top: 60px;
	width: 100%;
	height: calc(100vh - 60px) !important;
	min-height: 737px;
	position: absolute;
	top: 0px;
	left: 0px;
	color: transparent;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: none;
	opacity: 0;
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-animation: imageAnimation 24s linear infinite 0s;
	-moz-animation: imageAnimation 24s linear infinite 0s;
	animation: imageAnimation 24s linear infinite 0s;
	box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.1);
	background-size: cover !important;
}

#header .intro .slideshow li:nth-child(1) span {
	background: url(../img/slider-01.jpg) no-repeat top center;
}

#header .intro .slideshow li:nth-child(2) span {
	background: url(../img/slider-02.jpg) no-repeat top center;
	-webkit-animation-delay: 6s;
	-moz-animation-delay: 6s;
	animation-delay: 6s;
}

#header .intro .slideshow li:nth-child(3) span {
	background: url(../img/slider-03.jpg) no-repeat top center;
	-webkit-animation-delay: 12s;
	-moz-animation-delay: 12s;
	animation-delay: 12s;
}

#header .intro .slideshow li:nth-child(4) span {
	background: url(../img/slider-04.jpg) no-repeat top center;
	-webkit-animation-delay: 18s;
	-moz-animation-delay: 18s;
	animation-delay: 18s;
}

@-webkit-keyframes 
imageAnimation {
	0% {
		opacity: 0;
		-webkit-animation-timing-function: ease-in;
	}

	12.5% {
		opacity: 1;
		-webkit-animation-timing-function: ease-out;
	}
	
	25% {
		opacity: 1;
	}

	37.5% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

@-moz-keyframes 
imageAnimation {
	0% {
		opacity: 0;
		-moz-animation-timing-function: ease-in;
	}

	12.5% {
		opacity: 1;
		-moz-animation-timing-function: ease-out;
	}
	
	25% {
		opacity: 1;
	}
	
	37.5% {
		opacity: 0;
	}
	
	100% {
		opacity: 0;
	}
}

@keyframes 
imageAnimation {
	0% {
		opacity: 0;
		-webkit-animation-timing-function: ease-in;
		-moz-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	
	12.5% {
		opacity: 1;
		-webkit-animation-timing-function: ease-out;
		-moz-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	
	25% {
		opacity: 1;
	}
	
	37.5% {
		opacity: 0;
	}
	
	100% {
		opacity: 0;
	}
}

@-webkit-keyframes 
titleAnimation {
	0% {
		opacity: 0;
	}
	
	12.5% {
		opacity: 1;
	}
	
	25% {
		opacity: 1;
	}
	
	37.5% {
		opacity: 0;
	}
	
	100% {
		opacity: 0;
	}
}

@-moz-keyframes 
titleAnimation {
	0% {
		opacity: 0;
	}
	
	12.5% {
		opacity: 1;
	}
	
	25% {
		opacity: 1;
	}
	
	37.5% {
		opacity: 0;
	}
	
	100% {
		opacity: 0;
	}
}

@keyframes 
titleAnimation {
	0% {
		opacity: 0;
	}
	
	12.5% {
		opacity: 1;
	}
	
	25% {
		opacity: 1;
	}
	
	37.5% {
		opacity: 0;
	}
	
	100% {
		opacity: 0;
	}
}

#header .intro-text {
	padding-top: 400px;
}

#header .intro h1 {
	filter: drop-shadow(0px 0px 7px #333);
}

#header .intro h2 {
	color: #FFF;
	filter: drop-shadow(0px 0px 7px #333);
	margin-bottom: 50px;
}

#header .intro hr {
	background: #FFF;
	filter: drop-shadow(0px 0px 7px #333);
}

#header .btn-custom.welcome {
	background: #FF6600;
	border: 2px solid #FF6600;
	color: #FFF;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	height: 50px;
	transition: all 0.3s;
	letter-spacing: 1px;
	filter: drop-shadow(0px 0px 7px #333);
}

#header .btn-custom.welcome:hover {
	background: #1f386e;
	border: 2px solid #1f386e;
	color: #FFF;
	transition: all 0.3s;
}
/* Intro */



/* About us */
#about .img-responsive {
	margin-top: 0px;
	padding: 0px;
	width: 544px;
	min-height: 401px;
	background-color: #FFF;
}

#about .container .row .about {
	width: calc(50% - 15px);
	background-color: #FFF;
	padding: 40px;
	min-height: 401px;
}

#about .container .row .about p {
	margin: 15px 0px;
	text-align: justify;
}

#about .container .row .about p br {
	margin-bottom: 10px;
	display: block;
    content: '';
}

#about .container .row .about-text .text-center {
	padding: 0px;
	text-align: left;
	margin-top: 5px;
	display: contents;
}

#about .container .row .about-text .text-center a {
	float: inherit;
	height: 50px;
}

#about .social {
	display: inline-block;
	float: right;
}

#about .social ul {
	margin: 0px;
}

#about .social li {
	border-radius: 100%;
	width: 50px;
	height: 50px;
	transition: all 0.3s;
	text-align: center;
	margin-left: 10px;
	margin-bottom: 0px;
	display: inline-block;
}

#about .social li.facebook {
	border: 2px solid #1877f2;
	background-color: #1877f2;
}

#about .social li.instagram {
	border: 2px solid #c32aa3;
	background-color: #c32aa3;
}

#about .social li.facebook:hover {
	border: 2px solid #3b5998;
	background-color: #3b5998;
	transition: all 0.3s;
}

#about .social li.instagram:hover {
	border: 2px solid #7232bd;
	background-color: #7232bd;
	transition: all 0.3s;
}

#about .about-text li::before {
	content: none;
}

#about .about-text i.fa {
	font-size: 24px;
	padding: 11px 13px;
	color: #FFF;
	transition: all 0.3s;
}

#about .about-text i.fa.fa-facebook {
	padding: 11px 13px 11px 11px;
}
/* About us */



/* Services */
#services .row .col-md-4 {
	margin-bottom: 20px;
	height: 650px;
	width: 50%;
}

#services .row .col-md-4:nth-child(odd) .service-media,
#services .row .col-md-4:nth-child(odd) .service-desc {
	margin-left: 0px;
}

#services .row .col-md-4:nth-child(even) .service-media,
#services .row .col-md-4:nth-child(even) .service-desc {
	margin-right: 0px;
}

#services .service-desc {
	height: 50px;
	position: relative;
}

#services h3 {
	font-size: 18px;
}

#services a:hover p,
#services a:focus p {
	color: #333;
}

.floating-buttons-phone {
	width: 50px;
	height: 50px;
	background-color: #FF6600;
	border: 3px solid #FF6600;
	border-radius: 100%;
	padding: 8px 10px;
	text-align: center;
	transition: all 0.4s;
	display: block;
	color: #ffffff;
	font-size: 30px;
	margin-bottom: 20px;
	position: absolute;
	top: 0;
	right: 0;
}

.floating-buttons-phone:hover,
.floating-buttons-phone:focus {
	background-color: #1f386e;
	border: 3px solid #1f386e;
	color: #ffffff;
}

#services .row .col-md-4.closed::before {
	content: "Maloprodaja u Jevrejskoj ulici privremeno je zatvorena";
	background-color: rgba(0,0,0,0.75);
	text-align: center;
	text-transform: uppercase;
	font-size: 30px;
	color: #FFF;
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	font-weight: bold;
	width: calc(100% - 50px);
	height: calc(100% - 24px);
	z-index: 11;
	display: flex;
	align-items: center;
	padding: 25px;
	margin: 10px 0px 0px 0px;
}
/* Services */



/* Kontakt */
#contact a {
	color: rgba(255,255,255,.65);
}

#contact form {
    padding-top: 0px;
}

#contact .form-group {
    margin-bottom: 30px;
}

#contact .btn-custom {
	margin: 0px;
}

#contact h4 {
	margin-bottom: 33px;
}

#contact .text-danger {
	background-color: #ce2a36;
	color: #FFF;
	font-size: 12px;
}

#contact .text-danger ul {
	padding: 6px 12px;
}

#contact .alert {
	border-radius: 0px;
}

#contact .contact-info {
	padding: 0px;
}

#contact .contact-info .contact-item {
	margin-top: 0px;
}

#contact .social li {
	border: 2px solid rgba(255,255,255,0.6);
	border-radius: 100%;
	width: 46px;
	height: 46px;
	transition: all 0.3s;
}

#contact .social li:hover {
	border: 2px solid rgba(255,255,255);
	transition: all 0.3s;
}
/* Kontakt */



/* Footer */
#footer {
	padding: 12px;
}

#footer p {
	margin: 0px;
}

#footer p.copyright {
	float: left;
}

#footer p.privacy-policy {
	float: right;
}

#footer p.privacy-policy a,
#footer p.privacy-policy a:hover {
	color: #888;
}
/* Footer */



/* AddThis buttons */
.at-expanding-share-button[data-position="bottom-right"] {
	bottom: 85px !important;
    right: 20px !important;
}

.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-toggle-bg,
.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-toggle-bg span {
    height: 50px !important;
    width: 50px !important;
}
/* AddThis buttons */



/* Back to top */
.back-to-top {
	bottom: 20px;
	position: fixed;
	right: 15px;
	width: 50px;
	height: 50px;
	background-color: #FF6600;
	border-radius: 100%;
	padding: 12px 13px 13px 13px;
	box-shadow: 0 2px 4px 0 rgba(0,0,0,.3);
	transition: all 0.3s;
}

.back-to-top:hover {
	background-color: #1f386e;
	transition: all 0.3s;
}

.back-to-top img {
	outline: none;
}
/* Back to top */



/* Styles for the content section */
.content {
	width: 77%;
	margin: 50px auto;
	font-family: 'Merriweather', serif;
	font-size: 17px;
	color: #6c767a;
	line-height: 1.9;
}

@media (min-width: 500px) {
	
	.content {
		width: 43%;
	}
	
	#button {
		margin: 30px;
	}
	
}

.content h1 {
	margin-bottom: -10px;
	color: #03a9f4;
	line-height: 1.5;
}

.content h3 {
	font-style: italic;
	color: #96a2a7;
}
/* Styles for the content section */



/* Privacy policy page */
#privacy-policy #about {
	padding: 151px 0px 110px 0px;
}

#privacy-policy #about .container .row .about {
	width: calc(100% - 30px);
	background-color: #FFF;
	padding: 40px;
	min-height: 408px;
}

#privacy-policy #about a {
	text-decoration: none;
	color: #1f386e;
	transition: all 0.3s
}

#privacy-policy #about a:hover {
	text-decoration: none;
	color: #FF6600;
	transition: all 0.3s
}

#privacy-policy #about .about-text li::before {
	content: '\f00c';
}
/* Privacy policy page */



/* Modern look - Border radius */
#about .img-responsive,
#about .container .row .about,
#services .service-media iframe,
#contact iframe,
#gdpr-cookie-message {
	border-radius: 12px !Important;
	box-shadow: 0 10px 40px 0 rgba(38,40,64,.2) !Important;
}
/* Modern look - Border radius */




/* Responsive view */
@media (max-width: 767px) {
	
	#header .intro-text {
		padding-top: 270px;
	}

	.navbar-toggle {
		margin-right: 0px;
	}
	
	.navbar-default .navbar-collapse,
	.navbar-default .navbar-form {
		margin-top: 15px;
	}
	
	#about {
		padding: 0px 0px 50px 0px;
	}
	
	#sub-page-top #about {
		padding: 81px 0px 50px 0px;
	}
	
	#privacy-policy #about {
		padding: 131px 0px 50px 0px;
	}
	
	#footer p {
		float: none !important;
	}
	
	#footer p.privacy-policy {
		margin-top: 13px;
	}
	
}

@media (max-width: 991px) {
	
	#header .intro {
		min-height: 797px;
	}
	
	#header .intro .slideshow li:nth-child(1) span {
		background: url(../img/slider-01-mobile.jpg) no-repeat top center;
	}

	#header .intro .slideshow li:nth-child(2) span {
		background: url(../img/slider-02-mobile.jpg) no-repeat top center;
	}

	#header .intro .slideshow li:nth-child(3) span {
		background: url(../img/slider-03-mobile.jpg) no-repeat top center;
	}

	#header .intro .slideshow li:nth-child(4) span {
		background: url(../img/slider-04-mobile.jpg) no-repeat top center;
	}
	
	#about .container .row .about {
		width: initial;
		padding: 35px 15px;
		margin: auto 15px auto 15px;
	}
	
	#about .no-padding {
		padding: 0px;
	}

	#about .img-responsive {
		width: calc(100% - 30px);
		margin: 50px 15px 50px 15px;
		min-height: auto;
	}
	
	#services .row .col-md-4 {
		padding: 5px;
		width: 100%;
	}
	
	#services .row .col-md-4:nth-child(odd) .service-media,
	#services .row .col-md-4:nth-child(odd) .service-desc {
		margin-left: 10px;
	}

	#services .row .col-md-4:nth-child(even) .service-media,
	#services .row .col-md-4:nth-child(even) .service-desc {
		margin-right: 10px;
	}
	
	#services .row .col-md-4.closed::before {
		width: calc(100% - 30px);
	}
	
	#sub-page-top #about .container .row .about {
		width: initial;
	}
	
	#privacy-policy .container .row .about {
		padding: 35px 15px !important;
	}

}
/* Responsive view */







