/* Custom Styles Only */
.offer_graphic {
    max-height:60px;
    margin-bottom:10px;
}
.prevoz-slider-text span {
    font-family: 'Titillium Web', sans-serif;
}
.prevoz-slider-text h1 {
    font-weight: 900!important;
    font-family: 'Baloo Chettan 2', cursive;
    line-height: 1.0;
    font-size: 50px;
    margin-bottom: 10px;
}
.prevoz-slider-text p {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 900!important;
    line-height: 1.0;
}
.prevoz-slider .prevoz-slider-item .overlay {
    /* z-index: 1; */
    height: 100%;
    width: 100%;
    position: fixed;
    overflow: auto;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.5); /*can be anything, of course*/
}

.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item a {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600!important;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item.active a {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700!important;
    color: #f79431;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item:hover > a {
    color: #f79431!important;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a::before {
    background-color: #f79431;
}

.header-style-two::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 100%;
    background-color: transparent;
    -webkit-clip-path: polygon(0 0, 85% 1%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 85% 1%, 100% 100%, 0% 100%);
}

.prevoz-nav-style .navbar-area.is-sticky {
    background: rgba(255, 255, 255, 0.95);
}
.prevoz-nav-style .navbar-area .main-nav {
    background:none;
}

.single-offer h3 {
    font-weight: 900!important;
    font-family: 'Baloo Chettan 2', cursive;
}
.single-offer p {
    line-height: 1.3;
}
.top-header {
    background: /*url(../../../assets/img/top-bar-bg.png) left center no-repeat*/ #f5f2ed;
    background-size: contain;
    border-color: #2a2b28;
    background-position: 30% 0%;
}
.top-header .header-left-content img {
    width: auto;
    max-height: 40px;
}

.services .single-offer {
    min-height: 280px;
}

.pagination {
    margin-bottom: 40px;
}

/* GALLERY CSS */
.gallery .prev,
.gallery .next {
	position: fixed;
	top: 20%;
	width: 15%;
	height: 60%;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	        justify-content: center;
	text-decoration: none;
	z-index: 9999;
	color: rgba(255,255,255,.5);
	font-size: 4rem;
	font-family: monospace;
	-webkit-transition: all .2s;
	transition: all .2s;
}

.gallery .prev:hover,
.gallery .next:hover {
	color: rgba(255,255,255,.8);
}

.gallery .prev {left: 0%;}
.gallery .next {right: 0%;}

.gallery .active .prev {left: 0;}
.gallery .active .next {right: 0;}

.gallery .gcontainer {
	margin: 10vh auto;
	/* max-width: 80%; */
	display: grid;
	grid-gap: 5px;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	grid-auto-rows: 250px;
	grid-auto-flow: dense;
}

.gallery div {
	text-align: center;
	padding: 1rem 0;
	color: white;
	font-size: 3rem;
	text-transform: uppercase;
	background: rgba(0,0,0,.2);
	overflow: hidden;
	padding: 0;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: stretch;
	        align-items: stretch;
	-webkit-box-pack: center;
	        justify-content: center;
}

.gallery div img {
	width: 100%;
	height: 100%;
	display: block;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.gallery div.show::before {
	content: '';
	display: block;
	position: fixed;
	z-index: 5555;
	width: 100vw;
	height: 100vh;
    top: 0; 
    left: 0;
	background: rgba(0,0,0,.6);
}

.gallery div.show img {
	position: fixed;
    top: 0; 
    left: 0;
	margin: 30px;
	align-self: center;
	-o-object-fit: contain;
	   object-fit: contain;
	z-index: 6666;
	width: calc(100% - 60px);
	height: calc(100% - 60px);
	-webkit-filter: drop-shadow(0 3px 15px black);
	        filter: drop-shadow(0 3px 15px black);
	/* cursor: url(close-button.png), -webkit-grab;
    cursor: url(close-button.png), grab; */
    cursor: zoom-out;
}

.gallery div:not(.show):hover img {
	cursor: pointer;
	-webkit-transform: scale(1.3);
	        transform: scale(1.3);
}

.gallery .horizontal {
	grid-column: span 2;
}

.gallery .vertical {
	grid-row: span 2;
}

.gallery .big {
	grid-column: span 2;
	grid-row: span 2;
}

.gallery .active div:not(.show) img {
	-webkit-filter: blur(3px);
	        filter: blur(3px);
}