/* Tip-top.hr Stylesheet */
/* -- common -- */
.animate-fading{animation:fading 10s infinite}@keyframes fading{0%{opacity:0}50%{opacity:1}100%{opacity:0}}
.w3-animate-opacity{animation:opac 0.8s}@keyframes opac{from{opacity:0} to{opacity:1}}
.animate-top{position:relative;animation:animatetop 0.4s}@keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}}
.w3-animate-left{position:relative;animation:animateleft 0.4s}@keyframes animateleft{from{left:-300px;opacity:0} to{left:0;opacity:1}}
.w3-animate-right{position:relative;animation:animateright 0.4s}@keyframes animateright{from{right:-300px;opacity:0} to{right:0;opacity:1}}
.w3-animate-bottom{position:relative;animation:animatebottom 0.4s}@keyframes animatebottom{from{bottom:-300px;opacity:0} to{bottom:0;opacity:1}}
.animate-zoom {animation:animatezoom 0.6s}@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}}
.animate-input{transition:width 0.4s ease-in-out}.w3-animate-input:focus{width:100%!important}
.animate-right{/*position:relative;*/animation:animateright 0.4s}@keyframes animateright{from{right:-300px;opacity:0} to{right:0;opacity:1}}
.animate-left{/*position:relative;*/animation:animateleft 0.4s}@keyframes animateleft{from{left:-300px;opacity:0} to{left:0;opacity:1}}
@-webkit-keyframes glowing {
	0% { background-color: #B20000; -webkit-box-shadow: 0 0 3px #B20000; }
	50% { background-color: #f28e17; -webkit-box-shadow: 0 0 40px #f28e17; }
	100% { background-color: #B20000; -webkit-box-shadow: 0 0 3px #B20000; }
}

@-moz-keyframes glowing {
	0% { background-color: #B20000; -moz-box-shadow: 0 0 3px #B20000; }
	50% { background-color: #f28e17; -moz-box-shadow: 0 0 40px #f28e17; }
	100% { background-color: #B20000; -moz-box-shadow: 0 0 3px #B20000; }
}

@-o-keyframes glowing {
	0% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
	50% { background-color: #f28e17; box-shadow: 0 0 40px #f28e17; }
	100% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
}

@keyframes glowing {
	0% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
	50% { background-color: #f28e17; box-shadow: 0 0 40px #f28e17; }
	100% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
}
.glowing {
	-webkit-animation: glowing 1500ms infinite;
	-moz-animation: glowing 1500ms infinite;
	-o-animation: glowing 1500ms infinite;
	animation: glowing 1500ms infinite;
}
/*.container {
    animation: fadeIn 3s;
    -o-animation: fadeIn 3s;
    -webkit-animation: fadeIn 3s;
    -moz-animation: fadeIn 3s;
}*/
.lead {font-size: 16px;}
.list-style li {
	list-style: circle outside;
}
.no-l-padding {
	padding-left: 0;
}
.no-r-padding {
	padding-right: 0;
}
.no-lr-padding {
	padding-left: 0;
	padding-right: 0;
}
::selection {
	background-color: #f28e17;
	color: #fff;
}
::-moz-selection {
	background-color: #f28e17;
	color: #fff;
}
.ajax-loader-overlay {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(50, 50, 50, .5);
	z-index: 99999;
	opacity: 1;
}
.ajax-loader-overlay .fa,
.ajax-loader-overlay img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    font-size: 60px;
    height: 57px;
    line-height: 60px;
    width: 57px;
    text-align: center;
    color: #fff;
}
.ajax-loader-overlay .fa {
    display: none;
}
.ajax-loader-overlay img {
    height: 62px;
    line-height: 62px;
    width: 128px;
}
html {
    overflow-x: hidden;
}
body {
    font-family: 'Ubuntu', sans-serif;
}
img {
	max-width: 100%;
}
blockquote {
	font-size: 16px;
	border-color: #f28e17;
}
a:hover {
	color: #f28e17;
	text-decoration: none;
}
button:focus {
	background-color: #f28e17;
	color: #fff;
}

.section-wrapper {
	padding-top: 15px;
	padding-bottom: 15px;
}
.alert {
	padding: 5px 10px;
	margin-bottom: 10px;
}
.alert.alert-dismissable, .alert.alert-dismissible {
    padding-right: 30px;
}
.alert-danger {
    color: #fff;
    background-color: #e74c3c;
    border-color: #E57373;
    font-size: 16px;
    line-height: 20px;
    border-radius: 1px;
    padding: 8px;
}
.alert-danger strong {
    font-weight: 500;
    font-style: italic;
}
.close {
	opacity: 0.5;
}
.btn-large {
	height: auto;
	line-height: 16px;
	padding: 15px;
}
.btn-default {
	background-color: #f28e17;
	color: #fff;
	font-weight: bold;
}
.btn-default-orange {
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    background-color: #f08d1b;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 4px;
    padding: 12px 20px;
    display: inline-block;
    -webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.btn-default-orange:hover {
    background-color: #000;
    color: #fff;
    text-shadow: 0 0 6px rgba(255,255,255,0.9);
    box-shadow: 0 0 6px rgba(0,0,0,0.5);
}

.btn-express {
	background-color: #ff000c;
}
.btn-secondary {
	background-color: #000;
	color: #fff;
	font-weight: bold;
	text-transform: none;
}
.btn-secondary:hover, .btn-secondary:focus,
a.btn.btn-secondary:hover, a.btn.btn-secondary:focus,
.btn.btn-dropdown:hover,.btn.btn-dropdown:focus {
	color: #fff;
}
a.btn:hover,
a.orange:hover {
	color: #000;
}
btn.btn-default:hover,
.btn-default.btn-large:hover {
	background-color: #000 !important;
	color: #fff;
}
a.btn.btn-no-bg {
	background-color: transparent;
	box-shadow: none;
	font-weight: bold;
}
a.btn.btn-no-bg:hover,
a.btn.btn-no-bg.active {

}
p {
    line-height: 26px;
    font-size: 20px;
}
.button-collapse {
	color: #f28e17;
}
.parallax-container {
	min-height: 380px;
	line-height: 0;
	height: auto;
	color: rgba(255,255,255,.9);
}
.parallax-container .section {
	width: 100%;
}
.content {
	padding: 15px 0;
}
.half-width, .three-quarters-width {
	margin: 0 auto;
}
.half-width {
	width: 50%;
}
.three-quarters-width {
	width: 75%;
}
.emphasize {
	font-size: 20px;
	line-height: 24px;
}
.small {
	/*	font-size: 14px;*/
}
.heading-section h3 {
	font-size: 35px;
	margin-bottom: 5px;
}
.heading.headeing-price-text {
	margin-top: 60px;
	font-weight: 600;
  font-size: 30px;
}
body > .container {
	padding: 20px 0;
}
.icon-block {
	padding: 0 15px;
}
.icon-block .material-icons {
	font-size: inherit;
}
.form-wrapper {
	padding: 0;
}
.required {
	color: #f28e17;
}
.fc button {
	text-shadow: none;
}
textarea {
	resize: none;
}
/* -- /common -- */

.top.navigation {
    height: 100px;
}
.top.navigation.animate-top {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}
.top.navigation.animate-top.sticky {
	-webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2) !important;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2) !important;
}
.top.navigation.sticky {
	position: fixed;
	top: 0;
	z-index: 10;
	background-color: #fff;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
        height: 60px;
}
.top.navigation ul li:nth-of-type(6) {
    display: none;
}
nav .nav-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
nav .brand-logo {
    left: 0;
}
.top.navigation.sticky .brand-logo img {
    width: 60%;
}
.top.navigation .btn-secondary {
    background-color: #f08d1b;
    font-size: 18px;
    font-weight: normal;
    text-transform: uppercase;
    box-shadow: none;
    line-height: 24px;
    padding: 5px 24px;
    -webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.top.navigation .btn-secondary:hover {
    background-color: #000;
    text-shadow: 0 0 6px rgba(255,255,255,0.9);
    box-shadow: 0 0 6px rgba(0,0,0,0.5);
}
nav {
	color: #000;
}
nav,
nav ul a:hover,
nav ul li.active {
	background-color: transparent
}
nav ul li a {
	color: #000;
	text-transform: uppercase;
	font-weight: normal;
        font-size: 18px;
        -webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
nav ul li a:hover,
nav ul li.active a {
	color: #f08d1b;
}
nav ul li.item.akcija {
    display: none;
}
.bg-orange {
    background: #f08d1b;
}
.bg-lightgray {
    background: #ececec;
}
.color-orange {
    color: #f08d1b;
}
.color-black {
    color: #000;
}
.user-menu li {
	float: none;
}
.user-menu li i {
	height: 32px;
	line-height: 32px;
	margin-right: 5px;
}
.user-menu li a {
	font-weight: 400;
	font-size: 14px;
	padding: 3px 11px;
}
.customer-type-wrapper {
	padding: 40px 0 80px 0;
}
a.customer-type {
	padding-left: 60px;
	position: relative;
	color: #616161;
}
a.btn.btn-no-bg.customer-type.active {
	color: #000;
}
a.customer-type:before {
	content: "";
	display: block;
	width: 47px;
	position: absolute;
	top: 0;
	left: 0;
}
a.customer-type.type-personal:before {
	background: url('../img/icon-house.png') no-repeat center center;
	height: 38px;
	-webkit-filter: opacity(50%);
	-moz-filter: opacity(50%);
	-o-filter: opacity(50%);
	-ms-filter: opacity(50%);
	filter: opacity(50%);
}
a.customer-type.type-business:before {
	background: url('../img/icon-building.png') no-repeat center center;
	height: 47px;
	-webkit-filter: opacity(50%);
	-moz-filter: opacity(50%);
	-o-filter: opacity(50%);
	-ms-filter: opacity(50%);
	filter: opacity(50%);
}
a.customer-type.active.type-personal:before,
a.customer-type.active.type-business:before {
	-webkit-filter: opacity(100%);
	-moz-filter: opacity(100%);
	-o-filter: opacity(100%);
	-ms-filter: opacity(100%);
	filter: opacity(100%);
}
#index-banner .heading {
	color: #000;
}
#index-banner h1.heading {
	margin: 16px 0;
	font-weight: bold;
	font-size: 48px;
}
#index-banner h4.heading {
	font-size: 24px;
	line-height: 30px;
	font-weight: bold;
	margin: 40px 0 60px 0;
	max-width: 75%;
}
.heading-description {
	color: #000;
	font-size: 30px;
	line-height: 1.2em;
}
#index-banner .business-content {
	float: right;
}
#index-banner .business-content .heading-section {
	background: rgba(0, 0, 0, 0.5);
	padding: 15px;
	margin-bottom: 30px;
}
#index-banner .business-content h1 {
	margin-top: 15px;
}
#index-banner .business-content h4 {
	margin-bottom: 15px;
}
#index-banner .business-content .heading {
	color: #fff
}
#new-index-banner {
    background: url('../img/servis-ciscenje-cijene.jpg') no-repeat center;
    background-size: cover;
/*    height: calc(100vh - 260px);*/
    display: flex;
    flex-direction: row;
    align-items: center;
}
#new-index-banner.poslovni {
    background: url('../img/poslovni-korisnici-2.jpg') no-repeat center;
    background-size: cover;
/*    height: calc(100vh - 260px);*/
    display: flex;
    flex-direction: row;
    align-items: center;
}
#homepage-banner {
    background: url('../img/web-servis-ciscenje.jpg') no-repeat center;
    background-size: cover;
/*    height: calc(100vh - 260px);*/
    display: flex;
    flex-direction: row;
    align-items: center;
    animation: fadeIn 3s;
    -o-animation: fadeIn 3s;
    -webkit-animation: fadeIn 3s;
    -moz-animation: fadeIn 3s;
}
#covid-index-banner {
    background: url('../img/servis-ciscenje-dezinfekcijski-paket.jpg') no-repeat center;
    background-size: cover;
    height: calc(100vh - 260px);
    display: flex;
    flex-direction: row;
    align-items: center;
}
#tta-index-banner {
    background: url('../img/tiptop-gratis-sati.jpg') no-repeat center;
    background-size: cover;
    height: calc(100vh - 260px);
    display: flex;
    flex-direction: row;
    align-items: center;
}
#service-index-banner {
    background: url('../img/tiptop-usluge-1.jpg') no-repeat center;
    background-size: cover;
    height: calc(80vh - 260px);
    display: flex;
    flex-direction: row;
    align-items: center;
}
#homepage-banner .mobile-only,
#new-index-banner .mobile-only,
#covid-index-banner .mobile-only,
#service-index-banner .mobile-only,
#tta-index-banner .mobile-only {
    display: none;
}
.homepage-intro-section,
.intro-section {
    background: rgba(255,255,255,0.8);
    width: 49%;
    padding: 50px 20px 50px 0;
    position: relative;
}
.homepage-intro-section:before,
.intro-section:before {
    content: "";
    position: absolute;
    background: rgba(255,255,255,0.8);
    width: 50%;
    height: 100%;
    left: -50%;
    top: 0;
}
.homepage-intro-section .heading,
.intro-section .heading {
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 54px;
    margin-bottom: 20px;
    display: inline-block;
}
#tta-index-banner .intro-section .heading span {
    color: #f08d1b;
}
.homepage-intro-section .btn-default,
.intro-section .btn-default,
.btn-default,
.quote.select_services .btn-large.btn-secondary {
    font-size: 24px;
    line-height: 30px;
    background-color: #f08d1b;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 4px;
    padding: 12px 20px;
    display: inline-block;
    -webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.homepage-intro-section .btn-default:hover,
.intro-section .btn-default:hover,
.btn-default:hover {
    background-color: #000;
    color: #fff;
    text-shadow: 0 0 6px rgba(255,255,255,0.9);
    box-shadow: 0 0 6px rgba(0,0,0,0.5);
}
.homepage-intro-section .heading-description,
.intro-section .heading-description {
    font-size: 28px;
    line-height: 34px;
    text-transform: uppercase;
}
.homepage-label-orange,
.intro-label-orange {
    width: 200px;
    float: left;
    margin-top: -60px;
}
.homepage-label-orange p,
.intro-label-orange p {
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    font-style: italic;
    position: absolute;
    width: 140px;
    padding: 30px 10px 10px 19px;
    color: #fff;
}
.homepage-label-orange span,
.intro-label-orange span {
    font-weight: bold;
}

.double-bg {
    position: relative;
}
/*.double-bg:before {
    content: "";
    display: block;
    background-color: #ebebeb;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}*/
.about-us-section {
    padding: 110px 0 80px 0;
}
.about-us-section h3{
    display: inline-block;
    font-size: 48px;
    line-height: 54px;
    color: #f08d1b;
    text-align: right;
    text-transform: uppercase;
    font-weight: 800;
}
.about-us-section h3 > span {
    color: #000;
}
.about-us-section .col-one p {
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    font-style: italic;
    text-align: right;
}
.about-us-section .col-two {
    border-left: 5px solid #f08d1b;
    padding: 10px 0 10px 48px;
}
.about-us-section .col-two p {
    font-size: 32px;
    line-height: 38px;
}
.about-us-section img {
    margin: 10px 0;
}
.about-us-section a {
    margin-top: 20px;
}
.testimonials-section {
    background-color: #ececec;
    padding: 50px 0;
    margin-bottom: 100px;
}
.testimonials-section h3 {
    padding-left: 20px;
    position: relative;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    font-size: 32px;
    line-height: 38px;
    color: #f08d1b;
}
.testimonials-section h3:before {
    content: "";
    display: block;
    background: url('../img/icon-testimonials.png') no-repeat 0 0;
    background-size: contain;
    width: 80px;
    height: 56px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: none;
}
.testimonials-carousel.owl-carousel .owl-item {
    text-align: center;
    padding: 20px 0 40px 0;
}
.testimonials-carousel.owl-carousel .owl-item .item p {
    max-width: 80%;
    margin: 0 auto;
}
.testimonials-carousel .owl-nav {
    position: absolute;
    top: 25%;
    transform: translateY(-75%);
    width: 90%;
    right: 0;
    left: 0;
    margin: 0 auto;
}
.testimonials-carousel .owl-nav .owl-prev,
.testimonials-carousel .owl-nav .owl-next,
.testimonials-carousel .owl-nav .owl-prev:hover,
.testimonials-carousel .owl-nav .owl-next:hover {
    color: #ececec;
    position: relative;
    background: #ececec;
}
.testimonials-carousel .owl-nav .owl-prev {
    float: left;
}
.testimonials-carousel .owl-nav .owl-next {
    float: right;
}
.testimonials-carousel .owl-nav .owl-prev:before,
.testimonials-carousel .owl-nav .owl-next:before {
    position: absolute;
    color: #666;
    font-size: 40px;
    line-height: 20px;
}
.testimonials-carousel .owl-nav .owl-prev:before {
    content: "\2039";
}
.testimonials-carousel .owl-nav .owl-next:before {
    content: "\203A";
}
/*.testimonials-carousel:before {
    content: '';
    position: absolute;
    top: -43px;
    left: 19px;
    width: 35px;
    height: 29px;
    background: url('../img/nav_z.png');
    visibility: hidden;
}
.testimonials-carousel:after {
    content: '';
    position: absolute;
    bottom: -43px;
    width: 35px;
    height: 29px;
    background: url(../img/nav_z.png);
    left: 330px;
    visibility: hidden;
}*/
.owl-carousel .owl-item {
    position: relative;
    padding: 45px 0;
    font-size: 18px;
}
/*.owl-carousel .owl-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 29px;
    background: url('../img/nav_z.png');
}
.owl-carousel .owl-item:after {
    content: '';
    position: absolute;
    bottom: -0px;
    width: 35px;
    height: 29px;
    background: url(../img/nav_z.png);
    right: 0;
}*/

.testimonials-carousel {
    padding-left: 20px;
    margin-top: 0;
    position: relative;
}
.testimonials-carousel.owl-theme .owl-dots {
    text-align: center;
}
.testimonials-carousel.owl-theme .owl-dots .owl-dot span {
    background-color: #fff;
}
.testimonials-carousel.owl-theme .owl-dots .owl-dot.active span {
    background-color: #f28e17;
}
.features-content .heading-section h3 {
    color: #000;
}
.features-content section .heading-section p {
    font-size: 20px;
    line-height: 24px;
}
.features-content .heading-section .price {
    color: #f28e17;
}
.features {
    margin: 20px auto 0 auto;
    padding: 15px 20px;
    background-color: #fff;
    color: #000;
    border: 3px solid #ff000c;
    border-radius: 5px;
    -webkit-box-shadow: 3px 4px 5px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 3px 4px 5px 0px rgba(50, 50, 50, 0.75);
    box-shadow: 3px 4px 5px 0px rgba(50, 50, 50, 0.75);
    position: relative;
    z-index: 2;
}
.features ul {
    margin-bottom: 0;
}
.features ul li {
    line-height: 18px;
    margin-bottom: 10px;
    display: -webkit-flex;
    display: flex;
}
.features ul li:last-child {
    margin-bottom: 0;
}
.features ul li i {
    color: #f28e17;
    margin-top: 2px;
}
.features ul li span {
    display: inline-block;
    margin-left: 10px;
    width: 95%;
}
.insurance-wrapper {
    margin-top: -20px;
    background: rgba(0, 0, 0, 0.5);
}
.insurance-content img {
    margin-top: 20px;
}
#tiptop-paketi .new-packages {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    flex-wrap: wrap;
    margin-top: 50px;
}
#korisnici-tab .new-packages,
#privatni-korisnik .new-packages,
#poslovni-korisnik .new-packages {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 50px;
}
#tiptop-paketi {
    background: url('../img/paketi-hp-bg.jpg') no-repeat;
    position: relative;
    margin-bottom: -100px;
}
#tiptop-paketi:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(255,255,255,0.6);
}
#tiptop-paketi .container {
    margin: 0 auto;

    padding-top: 85px;
}
#tiptop-paketi .btn-v2 {
    text-transform: none !important;
    padding: 8px 40px 9px 40px !important;
}
#tiptop-paketi .new-packages .product {
    margin-bottom: 0;
    height: 100%;
    background: #fff;
    box-shadow: 4px 5px 10px rgba(0,0,0,0.2);
    border-radius: 0;
    color: #000;
    padding: 50px 30px 120px 30px;
}
#korisnici-tab .new-packages .product,
#privatni-korisnik .new-packages .product,
#poslovni-korisnik .new-packages .product {
    margin-bottom: 0;
    height: 100%;
    background: #fff;
    box-shadow: 4px 5px 10px rgba(0,0,0,0.2);
    border-radius: 0;
    color: #000;
    padding: 50px 30px;
}
#korisnici-tab .new-packages .pack-item-business .product,
#privatni-korisnik .new-packages .pack-item-business .product,
#poslovni-korisnik .new-packages .pack-item-business .product {
    padding: 50px 10px;
}
#tiptop-paketi .new-packages .product h3 {
    font-size: 36px;
    line-height: 42px;
    color: #f08d1b;
    font-weight: 800;
    margin-top: 0;
}
#korisnici-tab .new-packages .product h3,
#privatni-korisnik .new-packages .product h3,
#poslovni-korisnik .new-packages .product h3 {
    font-size: 30px;
    line-height: 36px;
    color: #f08d1b;
    font-weight: 800;
    margin-top: 0;
}
#korisnici-tab .new-packages .product h3 span,
#privatni-korisnik .new-packages .product h3 span,
#poslovni-korisnik .new-packages .product h3 span {
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: #f08d1b;
}
#tiptop-paketi .new-packages .product h4 {
    font-size: 24px;
    line-height: 30px;
    color: #f08d1b;
}
#korisnici-tab .new-packages .product h4,
#privatni-korisnik .new-packages .product h4,
#poslovni-korisnik .new-packages .product h4 {
    font-size: 18px;
    line-height: 24px;
    color: #000;
}
#tiptop-paketi .new-packages .product ul {
    max-width: 50%;
    margin: 30px auto;
}
#korisnici-tab .new-packages .product ul,
#privatni-korisnik .new-packages .product ul,
#poslovni-korisnik .new-packages .product ul {
    max-width: 56%;
    margin: 30px auto;
}
#tiptop-paketi .new-packages .product ul li {
    list-style-type: disc;
    font-size: 18px;
    line-height: 24px;
}
#korisnici-tab .new-packages .product ul li,
#privatni-korisnik .new-packages .product ul li,
#poslovni-korisnik .new-packages .product ul li {
    list-style-type: disc;
    font-size: 18px;
    line-height: 24px;
}
#korisnici-tab .new-packages .product p,
#privatni-korisnik .new-packages .product p,
#poslovni-korisnik .new-packages .product p {
    font-size: 16px;
    line-height: 22px;
    color: #f08d1b;
    font-style: italic;
    margin: 0 auto;
    max-width: 63%;
}
#tiptop-paketi .new-packages .product .btn-default-orange {
    position: absolute;
    bottom: 45px;
    left: 0;
    right: 0;
    margin:0 auto;
    max-width: 134px;
    text-align: center;
}
#tiptop-paketi-note {
    padding-top: 170px;
}
.packages-note {
    display: flex;
    margin-right: 15px;
    margin-left: 15px;
    padding: 30px;
}
.packages-note span {
    font-size: 150px;
    font-weight: bold;
    color: #fff;
    float: right;
    line-height: 113px;
    padding-right: 30px;
}
.packages-note h3 {
    font-size: 36px;
    line-height: 40px;
    color: #fff;
}
.packages-note h3 > span {
    color: #000;
    font-size: 36px;
    line-height: 40px;
    float: none;
}
.packages-note p {
    font-size: 24px;
    line-height: 30px;
    font-style: italic;
}
#korisnici-tab {
    margin-top: 80px;
}
#korisnici-tab .tab-content {
    padding: 50px 0;
}
#korisnici-tab .nav-tabs {
    border: 6px solid #f08d1b;
}
#korisnici-tab .nav-tabs li {
    width: 50%;
    text-align: center;
}
#korisnici-tab .nav-tabs li a {
    font-size: 28px;
    text-transform: uppercase;
    border: none;
    color: #f08d1b;
    background: #fff;
    border-radius: 0;
    margin-right: 0;
}
#korisnici-tab .nav-tabs li a:hover {
    background: #ececec;
}
#korisnici-tab .nav-tabs li.active a {
    font-size: 28px;
    text-transform: uppercase;
    border: none;
    color: #fff;
    background: #f08d1b;
}
#korisnici-tab .btn-default,
#korisnici-tab .note,
.home-section-2.covid-page .note {
    margin: 30px 0;
}
#korisnici-tab .d-flex {
    display: flex;
    flex-direction: row;
}
#korisnici-tab .d-flex ul {
    width: 40%;
    padding-left: 20px;
}
#korisnici-tab .d-flex ul li,
.home-section-2.covid-page ul li {
    list-style-type: disc;
    font-size: 20px;
    line-height: 26px;
}
.home-section-2.covid-page ul {
    padding-left: 20px;
}
.pack-eko-in {
  background-color: #7CC105;
  text-align: center;
  background-image: linear-gradient(-180deg, #7CC105, #629E04);
  position: relative;
  padding: 10px !important;
  border-radius: 4px;
}
.eko-pack {
  background: #ffffff;
  border-radius: 4px;
  padding: 40px 10px;
  position: relative;
}
.simple-text {
  font-size: 15px;
}
.simple-title {
  font-size: 22px;
  color: #186000;
  margin: 30px 8px 13px 8px;
}
.eko-pack-info {
  margin: 0;
  color: #186000;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 22px;
  padding: 10px;
  position: absolute;
  background: #fff;
  top: 20px;
  width: 89px;
  left: calc(50% - 45px);
}
.pack-eko-more-info-col {
  padding-bottom: 40px;
  margin-bottom: 30px;
  border-bottom: 2px solid #94bdd1;
  padding-left: 7px;
  padding-right: 7px;
}
.eko-pack-wrapper {
  padding: 52px 20px;
  border: 2px solid #89d210;
  width: 80%;
  margin: 0 auto;
  border-radius: 4px;
}
.eko-pack-title {
  padding: 0;
  margin: 0 0 9px 0;
  color: #186000;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 600;
}
.ss-ee-sa {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  padding: 3px;
  position: absolute;
  background: #ffffff;
  bottom: 26px;
  color: #ffffff;
  width: 150px;
  border-radius: 0;
  left: calc(50% - 75px);
}
.eko-pack-desc {
  padding: 0;
  margin: 0;
  color: #186000;
  font-weight: 500;
  font-size: 17px;
}
.eko-pack-btn {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  padding: 9px 36px 10px 36px;
  background: #186000;
  color: #ffffff;
  width: 104px;
  border-radius: 1px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
}
.eko-pack-btn:hover {
  color: #ffffff;
  background: #000;
}
.tip-top-eko-pack {
	max-width: 337px;
}
.text-wrapper-tt-pak h3,
.home-section-2.tta-page h2,
.home-section-3.tta-page h2,
.home-section-6.service-page h2,
.contact .heading,
.send_enquiry .heading,
.faq .heading,
.terms_of_service .heading,
.secure_payment .heading,
.blog .heading,
.cleaning_services .heading,
.about .heading,
.quote h1 {
    font-size: 48px;
    line-height: 54px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 22px;
    margin-top: 0;
}
.heading.collaboration-h1 {
    font-size: 36px;
    line-height: 44px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 55px;
    margin-top: 0;
    text-align: center;
}
.blog .heading,
.quote h1 {
    color: #f08d1b
}
.home-section-2.tta-page h3 {
    font-size: 28px;
    line-height: 34px;
}
.text-wrapper-tt-pak h3 > span,
.contact .heading span,
.send_enquiry .heading span {
    color: #000;
}
.contact .heading,
.send_enquiry .heading,
.terms_of_service .heading,
.secure_payment .heading,
.blog .heading,
.cleaning_services .heading,
.quote h1 {
    margin-top: 100px;
}
.quote h1 {
    text-align: center;
}
.terms_of_service .content,
.secure_payment .content,
.blog .content {
    max-width: 1200px;
    margin: 0 auto;
}
.terms_of_service p,
.secure_payment p,
.faq ol li p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
}
.blog p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}
.terms_of_service h3,
.secure_payment h3,
.blog h3 {
    margin-top: 50px;
    text-transform: uppercase;
    color: #666;
}
.blog h4 {
    font-size: 20px;
    line-height: 26px;
    text-transform: uppercase;
}
.blog a {
    color: #f08d1b;
    font-style: italic;
}
.blog a.btn-default {
    color: #fff;
    font-style: normal;
}
.blog ul {
    padding-left: 20px;
}
.blog ul li {
    list-style-type: disc;
    font-size: 18px;
    line-height: 28px;
}
.page .form-wrapper.contact-form {
    max-width: 1000px;
    margin: 80px auto;
    width: 100% !important;
}
.contact-form .col-one,
.collaboration-form .form-wrapper-none .col-one {
    width: 50%;
    float: left;
}
.text-wrapper-tt-pak p  {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 13px;
}
#tiptop-paketi .text-wrapper-tt-pak p {
    max-width: 80%;
    margin: 10px auto;
}
#tiptop-kooperanti {
    padding: 120px 0;
}
.koop-osoba {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.koop-osoba .img {
    border-radius: 50%;
    overflow: hidden;
    height: 270px;
    width: 270px;
    z-index: 1;
}
.koop-osoba .img img {
    height: 100%;
    object-fit: cover;
}
.koop-osoba .text {
    text-align: center;
    background: #fff;
    box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-top: -120px;
    padding-top: 120px;
    z-index: 0;
    position: relative;
    padding-bottom: 40px;
}
.koop-osoba .text h2 {
    font-size: 64px;
    line-height: 70px;
    font-weight: 800;
    color: #f08d1b;
}
.koop-osoba .text h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 800;
    color: #f08d1b;
    margin-top: 0;
    margin-bottom: 40px;
}
.koop-osoba .text p {
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    color: #000;
    font-style: italic;
}

.generalka-section {
    padding: 80px 0;
    animation: fadeIn 3s;
    -o-animation: fadeIn 3s;
    -webkit-animation: fadeIn 3s;
    -moz-animation: fadeIn 3s;
}
.generalka-section .col-one {
    padding-right: 80px;
}
.generalka-section h3 {
        display: block;
	font-size: 48px;
        line-height: 54px;
        color: #f08d1b;
        text-align: right;
        text-transform: uppercase;
        font-weight: 800;
}
.generalka-section h3 > span {
    color: #000;
}
.generalka-section .col-one p {
    display: block;
	font-size: 18px;
        line-height: 24px;
        font-style: italic;
        text-align: right;
}
.generalka-section .col-two {
    border-left: 5px solid #f08d1b;
    padding: 10px 0 10px 48px;
}
.generalka-section .col-two h4 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 800;
}
.generalka-section .col-two p {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 25px;
}
.generalka_btn {
	text-align: left;
	padding-top: 30px;
}
.generalka_img {
	text-align: right;
	background: url('../img/vojnik1-1.jpg');
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	height: 350px;
	background-size: contain;
	background-repeat: no-repeat;
	max-width: 334px;
	margin: 0 auto;
}
.generalka_img:hover {
	background: url('../img/vojnik2-1.jpg');
	background-size: contain;
	background-repeat: no-repeat;
	max-width: 334px;
	margin: 0 auto;
}
#generalka .text-wrapper-tt-pak {
	padding-top: 32px;
}
#vise-razloga {
	padding: 80px 0 90px 0;
}
.tip-top-eko-pack .eko-pack {
  padding: 34px 10px;
}
.tip-top-eko-pack .eko-pack-info {
  top: 14px;
}
.tip-top-eko-pack .eko-pack-wrapper {
  padding: 35px 20px;
}
ul.style-v2-list li {
	display: inline-block;
	margin-left: 0;
	width: 95%;
	padding-bottom: 5px;
	font-size: 16px;
}
ul.style-v2-list li span {
	margin-left: 6px;
}
ul.style-v2-list li i {
	color: #f28e17;
	margin-top: 2px;
}
#obavijest-novi-korisnici {
	padding: 0;
	text-align: right;
	position: fixed;
	bottom: 2px;
	right: 10px;
	z-index: 9999;
}
.obavijest-info {
	/*background: url(../img/bitan_info.png);
  width: 165px;
  height: 166px;*/
	background-color: #000;
	text-align: center;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.obavijest-info p {
	text-transform: uppercase;
	font-weight: 400;
	color: #ffffff;
	font-size: 16px;
	padding: 10px;
	margin-bottom: 0;
}
.obavijest-info p a {
	color: #ffffff !important;
	display: block;
}
.obavijest-info p a:focus {
	text-decoration: none !important;
}
.obavijest-info .fa.fa-info-circle {
    display: none;
}
#new-user-info {
	/*position: relative;*/
}
#new-user-info .modal-content {
	border-radius: 0 !important;
	border: 0 !important;
	margin-top: 50px;
}
#new-user-info .modal-header {
	padding: 15px;
	border-bottom: 1px solid #e5e5e5;
	background: #f28e17;
	text-align: left;
}
#new-user-info .modal-title {
	margin: 0;
	line-height: 1.42857143;
	color: #fff;
	font-weight: 500;
	font-size: 28px;
}
#new-user-info button.close {
	color: #ffffff;
	font-weight: 100 !important;
	font-size: 38px !important;
	opacity: 1;
	float: none;
	position: absolute;
	right: 0;
	top: -38px;
}

.modal-item-body {
	margin-bottom: 40px;
	padding: 0 16px;
}
.modal-item-body.border-bottom-style {
	border-bottom: 1px solid #d0d0d0;
	padding-bottom: 25px;
	margin-bottom: 20px;
	margin-top: 34px;
}
.sub-item-img {
	position: relative;
	display: inline-block;
	max-width: 152px;
	top: -5px;
	margin-right: 10px;
}
.modal-item-body h3 {
	font-size: 30px;
	color: #000;
	font-weight: 600;
}
.modal-item-body h4 {
	font-size: 26px;
	color: #000;
}
.modal-item-body p {
	font-size: 16px;
}
.modal-item-body p a {
	color: #f28e17 !important;
}
.modal-item-body p.h2-description {
	text-align: center;
	font-size: 20px;
	margin-bottom: 20px;
}
.modal-item-body .img_ilustration {

}
.modal-item-body h2 {
	font-weight: 600;
	color: #000;
	text-align: center;
	font-size: 24px;
	margin-top: 64px;
}
.btn-large.btn-default.orange.style-v2 {
	padding-left: 36px;
	padding-right: 36px;
}
.loyalty-content .heading-section h3 {
	margin-top: 0;
	color: #f28e17;
}
.heading-section.cta-content h3 {
	color: #fff;
	margin-top: 0;
}
.heading-section.cta-content a {
	margin-top: 20px;
}
.express-service-content em {
	color: #ff000c;
}
.express-service-content .express-service {
	margin-top: 30px;
}
.express-service-content .express-service .emphasize {
	font-size: 22px;
	margin-bottom: 0;
}
/**/
.page.order h1 {
	margin-bottom: 40px;
}
.page.order h4 {
	margin-bottom: 25px;
}
.legend {
	text-align: right;
	margin-bottom: -35px;
}
.legend span {
	text-transform: uppercase;
	display: inline-block;
	position: relative;
	padding-left: 20px;
	font-weight: normal;
	font-size: 16px;
	margin-right: 10px;
}
.legend span:before {
	content: "";
	width: 15px;
	height: 15px;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.legend span.unavailable:before {
	background-color: #ccc;
}
.legend span.available:before {
	background-color: #fff;
}
.legend span.selected-date:before {
	background: url('../img/icon-check.png') no-repeat center center;
	background-size: contain;
}
.legend.express span.selected-date:before {
	background: url('../img/icon-check-express.png') no-repeat center center;
	background-size: contain;
}
.legend span.selected-date {
	margin-right: 0;
}
#calendar {
	font-size: 14px;
	margin-bottom: 10px;
}
#calendar .fc-view-container {
	background-color: #fff;
}
#calendar a {
	color: #555;
}
#calendar h2 {
	font-size: 22px;
	line-height: 34px;
	padding-bottom: 0;
	display: inline-block;
	text-transform: capitalize;
	margin-left: 15px;
}
#calendar .fc-toolbar.fc-header-toolbar {
	margin-bottom: 5px;
}
.entry-content #calendar table {
	margin: 0 !important;
}

.entry-content #calendar .fc-content-skeleton table {
	border: none
}

.entry-content #calendar tr td {
	padding: 0 !important;
}

#calendar .fc-day:hover,
#calendar .fc-highlight-skeleton td {
	cursor: pointer;
}
.entry-content #calendar tr th {
	padding: 0 !important;
	font-weight: normal !important;
}
.entry-content #calendar tr th a {
	font-size: 16px;
}
/*#calendar .fc-day,
#calendar .fc-day:hover {
	cursor: pointer;
}*/
#calendar .fc-day.disabled {
	background-color: #ccc;
	color: #474747;
	cursor: default;
}
#calendar .fc-day.tt-selected {
	background: url('../img/icon-check.png') no-repeat center center;
}
#calendar.express .fc-day.tt-selected {
	background: url('../img/icon-check-express.png') no-repeat center center;
}


.fc-highlight {
	background: none;
}
#calendar .fc-day-header {
	color: #fff;
	padding: 5px 0;
	text-transform: uppercase;
	font-weight: 400;
	background-color: #f28e17;
}
.fc-row .fc-content-skeleton td {
	border-bottom: 1px solid transparent;
}
#calendar .fc-day-header a {
	pointer-events: none;
}

#calendar .fc-toolbar button {
	height: auto;
}
#calendar .fc-next-button,
#calendar .fc-prev-button {
	background: none;
	height: auto;
	font-size: 24px;
	line-height: 24px;
}
#calendar .fc-next-button:hover,
#calendar .fc-prev-button:hover {
	color: #f28e17;
}
#calendar .fc-next-button {
	margin-left: -1px;
}
.address-validation .error {
	color: #ff000c;
	margin: 5px;
	font-size: 12px;
	line-height: 14px;
}
.order .service-type-wrapper .lead.info {
	background-color: #f28e17;
	color: #fff;
	padding: 5px;
	display: inline-block;
}
.order .service-type-wrapper .lead.info .popover {
	color: #333;
}
.order-heading {
	font-size: 32px;
	font-weight: bold;
	line-height: 36px;
}
.lead.info .info, .lead.info .help-trigger {
	color: #f27e17;
	font-size: 24px;
	font-weight: bold;
}
.service-prices label {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 0;
	padding-left: 85px;
}
.service-prices .prices {
	padding-left: 65px;
	position: relative;
	margin-bottom: 25px;
}
.service-prices .prices:last-child {
	margin-bottom: 0;
}
.service-prices .prices:before {
	content: "";
	display: block;
	width: 34px;
	height: 40px;
	position: absolute;
	top: -34px;
	left: 25px;
	z-index: -1;
        margin: 0 10px;
}
.service-prices .prices-1:before {
	background: url('../img/icon-standard-cleaning.png') no-repeat center center;
}
.service-prices .prices-2:before {
	background: url('../img/icon-general-cleaning.png') no-repeat center center;
}
.service-prices .prices-4:before {
	background: url('../img/icon-oven.png') no-repeat center center;
}
.service-prices .prices-5:before {
	background: url('../img/icon-fridge.png') no-repeat center center;
}
.service-prices .prices-6:before {
	background: url('../img/icon-kitchen.png') no-repeat center center;
}
.service-prices .prices-7:before {
	background: url('../img/icon-window.png') no-repeat center center;
}
.service-prices .prices-11:before {
	background: url('../img/icon-iron.png') no-repeat center center;
}
.service-prices .prices-12:before {
	background: url('../img/icon-floor.png') no-repeat center center;
}
.service-prices .prices-13:before {
	background: url('../img/icon-furniture.png') no-repeat center center;
}
.service-prices .prices:before {
	background-size: contain;
}
.service-prices .prices h5.price {
	color: #ff000c;
	font-weight: bold;
	font-size: 16px;
	margin: 0;
}
.service-prices .prices h5.price.express {
	color: #ff000c;
}
.service-prices .prices h5.price .old-price {
	text-decoration: line-through;
	font-weight: 400;
	font-size: 14px;
}
.service-prices .help-trigger {
	cursor: pointer;
	font-weight: bold;
	color: #f28e17;
}
.service-prices .popover {
	font-family: 'Ubuntu', sans-serif;
	font-size: 12px;
	line-height: 16px;
}
.working-hours {
	text-align: right;
}
.working-hours select.form-control {
	display: inline-block;
	width: auto;
	margin-left: 10px;
}
.order .express-service {
	color: #ff000c;
}
.order .express-service img {
	max-width: 80px;
}
.contact-form .input-group .input-group-addon {
    display: none;
}
.contact-form .input-group {
    width: 100%;
}
.contact-form .form-group {
    margin-bottom: 55px;
    padding: 0 10px;
}
.contact-form .form-control,
.quote .form-control,
.collaboration-form .form-wrapper-none .input-group {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #666;
    border-left: 2px solid #fff;
    box-shadow: none;
    border-radius: 0;
    font-size: 20px;
    line-height: 26px;
    color: #999;
    font-style: italic;
    font-weight: 400;
    height: 47px;
}
.collaboration-form .form-wrapper-none .input-group {
    width: 100%;
}
.quote.select_services .form-control {
    min-height: 47px !important;
    height: auto;
}
.quote.select_services .form-group {
    margin-bottom: 35px;
}
.contact-form #message,
.collaboration-form .form-wrapper-none #message {
    font-size: 14px;
    line-height: 20px;
    min-height: 200px;
    border: 2px solid #666;
}
.collaboration-form .form-wrapper-none #message,
.collaboration-form .form-wrapper-none #note {
    border-radius: 0;
    font-size: 14px;
    line-height: 20px;
    min-height: 100px;
    border: 2px solid #666;
}
.contact-form label,
.contact-form .tos,
.quote label,
.collaboration-form .form-wrapper-none label {
    font-size: 20px;
    line-height: 26px;
    color: #999;
    font-style: italic;
    font-weight: 400;
}
.collaboration-form .form-wrapper-none label.tos {
    font-size: 16px;
    line-height: 22px;
}
.contact-form .required {
    color: #999;
}
.quote .form-wrapper {
    margin: 0 auto;
    float: none;
    width: 80%;
    padding: 50px 0;
}
.quote .form-wrapper a {
    color: #f08d1b;
}
.quote #submit-order {
    margin-top: 30px;
}
.quote.select_services .order-heading {
    margin-top: 100px;
}
.quote.select_services h4.heading {
    float: none;
    width: 80%;
    margin: 0 auto;
    padding-top: 50px;
    text-transform: uppercase;
}
.quote.select_services blockquote h4.heading {
    margin: 0;
    padding-top: 0;
}
.quote.select_services .service-prices {
    padding-bottom: 15px;
}
.input-group .input-group-addon {
	min-width: 40px;
	text-align: center;
	font-size: 15px;
}
.orders table .order .status span,
.user.order table .order .status span{
	display: inline-block;
	padding: 3px 10px;
	border-radius: 10px;
	color: #fff;
}
.orders table .order .status-1 span,
.user.order table .order .status-1 span {
	background-color: #0097a7;
}
.orders table .order .status-2 span,
.user.order table .order .status-2 span {
	background-color: #43a047;
}
.orders table .order .status-3 span,
.user.order table .order .status-3 span {
	background-color: #ff5252;
}
.orders table .order .status-4 span,
.user.order table .order .status-4 span {
	background-color: #448aff;
}
.orders table .order .status-10 span,
.user.order table .order .status-10 span {
	background-color: #e65100;
}
.orders table .order .view {
	font-size: 24px;
	line-height: 24px;
}
.order .total td:first-child {
	text-align: right;
}
.account-details .panel {
	border-top: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.account-details #calendar a.fc-event.order-status {
	color: #fff;
}
.account-details #calendar .fc-toolbar .fc-today-button,
.account-details #calendar .fc-toolbar .fc-listDay-button,
.account-details #calendar .fc-toolbar .fc-listWeek-button,
.account-details #calendar .fc-toolbar .fc-month-button {
	height: 2.1em;
}
.user h1.heading a {
	float: right;
}
.fc-event.order-status.status-1 {
	border-color: #ccc;
	background-color: #ccc;
}
.fc-event.order-status.status-2 {
	border-color: #f28e17;
	background-color: #f28e17;
}
.fc-event.order-status.status-2.express {
	border-color: #ff000c;
	background-color: #ff000c;
}
.cta {
	width: 240px;
	height: 240px;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -245px;
	margin: auto;
	background-color: #fff;
	z-index: 1000;
	box-shadow: 0 0 5px #ccc;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.cta.cta-visible {
	right: 0;
}
.cta.disabled {
	height: 0;
}
.cta .cta-action {
	position: absolute;
	top: 0;
	border: 0;
	background-color: #ff000c;
	color: #fff;
	width: 25px;
	height: 25px;
}
.cta .cta-action:focus {
	outline: none;
	background-color: #ff000c;
}
.cta .cta-action.cta-show {
	left: -25px;
}
.cta .cta-action.cta-hide {
	right: 0;
}
.cta .cta-body {
	padding: 15px;
}
.cta .cta-body img {
	display: block;
	margin-bottom: 15px;
	max-width: 160px;
}
.cta .cta-body a {
	display: inline-block;
	margin-top: 10px;
	font-size: 20px;
	color: #808080;
}
.cta .cta-body a .discount {
	font-size: 32px;
	color: #ff000c;
}
.cta.discount {

}
.page .form-wrapper, .user .form-wrapper {
	width: 50%;
}
.user .form-wrapper {
	padding: 15px;
}
.faq .content,
.about .content,
.collaboration .content {
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
}
.about .content ul {
    padding-left: 20px;
    margin: 40px 0;
}
.about .content ul li {
    font-size: 18px;
    line-height: 24px;
    list-style-type: disc;
}
.faq h3 {
    text-transform: uppercase;
    color: #666;
}
.faq ol li {
    margin: 50px 0;
}
.faq ol li p {
    padding: 10px 20px;
    border-left: 3px solid #f28e17;
}
.faq ol li a {
    color: #f08d1b;
    font-style: italic;
}
.faq .cta-content {
    margin-top: 50px;
}
.blog .responsive-img {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    margin: 15px 0 20px 0;
}
.blog article img.featured {
    margin: 0;
    float: none;
    width: 100%;
    position: absolute;
    height: 100%;
    object-fit: cover;
}
.blog article img.featured {
    margin: 0 0 15px 0;
    float: none;
}
.blog article img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 25px 25px 25px 0;
    float: left;
}
.img-source {
    position: absolute;
}
.form-review .form-inline label {
    padding-left: 25px;
    margin-right: 10px;
}
.form-review .form-inline label.no-l-padding {
    padding-left: 0;
}
/**/
footer.page-footer {
    margin: 0;
    background: #ececec;
    padding-top: 50px;
}
footer.page-footer .footer-copyright {
    background: #f08d1b;
    text-align: center;
}
footer.page-footer h4 {
    font-size: 24px;
    line-height: 30px;
    color: #f08d1b;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links.blog-links {
    margin-bottom: 25px;
}
.footer-links a {
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}
.footer-links a:hover {
    color: #f08d1b;
}
.payment-icons {
	margin-top: 40px;
}
.payment-icons a {
	display: inline-block;
	margin: 0 3px 5px 0;
}
.payment-icons a:last-child {
	margin-right: 0;
}
.payment-icons a img {
	max-height: 38px;
}
.fb-link {
    position: relative;
    color: #000;
    font-size: 18px;
    font-style: italic;
    text-transform: uppercase;
    padding-top: 4px;
    margin-top: 10px;
}
.fb-link img {
    margin-top: -14px;
    width: 40px;
}
label.tos {
	font-size: 13px;
	line-height: 16px;
	font-weight: 400;
}

#cookielaw {
	position: fixed;
	bottom: 5px;
	left: 5px;
	width: 100%;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease; transition: all 1s ease;
	z-index: 99999999;
  max-width: 460px;
  padding: 0;
}
#cookielaw:hover {
	opacity: 0.9;
}
#cookielaw .alert{
	border: 1px solid #000;
	border-radius: 0;
	background-color: #333;
	margin-bottom: 0;
	color: #fff;
        padding: 20px;
        -webkit-box-shadow: 7px -5px 15px rgba(0, 0, 0, 0.2);
	-moz-box-shadow:    7px -5px 15px rgba(0, 0, 0, 0.2);
	box-shadow:         7px -5px 15px rgba(0, 0, 0, 0.2);
}
#cookielaw .btn-default-orange {
    font-size: 14px;
    line-height: 21px;
    padding: 3px 7px;
    margin-left: 10px;
    height: 30px;
}
/***** Usluge start *****/
.usluge_heading{
	margin-bottom: 30px;
}
/*.usluge_heading:after{
	content: "";
	display: block;
	border: 1px solid black;
	height: 1px;
	width: auto;
}*/
.usluge_bg_wrapper{
	background-image: url("../img/header-bg-personal_.jpg");
	position: relative;
}
.usluge_bg_wrapper .container.services{
	padding-left: 0;
	padding-right: 0;
}
.container.usluge{
	padding-left: 0;
	padding-right: 0;
	-moz-column-count: 3;
	-webkit-column-count: 3;
	column-count: 3;
	-moz-transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	-moz-column-gap: 25px;
	-webkit-column-gap: 25px;
	column-gap: 25px;
	-moz-column-fill: initial;
	-webkit-column-fill: initial;
	column-fill: initial;
}
.usluga_wrapper{
	background-repeat: no-repeat;
	background-position: center;
	transition: 0.2s ease all;
	display: inline-table;
	position: relative;
	padding: 5px;
	margin-bottom: 25px;
}
.black_1{
	background-color: #222;
}
.double_normal{
	width: calc( 66.6666% - 10px ) !important;
}
.usluga_wrapper .hover_description{
	transition: 0.2s ease all;
	opacity:0;
	padding: 40px 20px;
	border:1px solid black;
}
.usluga_wrapper .hover_description h4{
	border-bottom: 1px solid black;
	padding-bottom: 15px;
	font-weight: bold;
	margin-bottom: 25px;
}
.usluga_wrapper:hover{
	background-color: white !important;
}
.usluga_wrapper:hover .hover_description{
	opacity: 1;
}
.usluga_wrapper:after{
	opacity: 1;
	transition: 0.2s ease all;
	text-align: center;
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 66%;
	color:white;
	font-size: 18px;
	font-weight: bold;
}

.usluga_wrapper:hover:after{
	opacity: 0;
}
.usluga_wrapper.standardno:after{
	content:"Standardno tip-top ÄŤiĹˇÄ‡enje";
}
.usluga_wrapper.prozor:after{
	content:"Pranje prozora";
}
.usluga_wrapper.hladnjak:after{
	content:"UnutraĹˇnjost hladnjaka ";
}
.usluga_wrapper.pecnica:after{
	content:"UnutraĹˇnjost peÄ‡nice";
}
.usluga_wrapper.element:after{
	content:"UnutraĹˇnjost kuhinjskih elemenata";
}
.usluga_wrapper.ured:after{
	content:"Ured";
}
.usluga_wrapper.generalno:after{
	content:"Generalno ÄŤiĹˇÄ‡enje";
}

.kako_odabrati_ciscenje_wrapper{
	background-color: #262521;
	display: inline-block;
	padding:20px;
	position: absolute;
	right: 20px;
	bottom: 20px;
}
.kako_odabrati_ciscenje_wrapper h4{
	color:white;
	text-align: center;
}

.desktop .heading.poll-heading {
	margin-top: 200px;
}

@media all and (max-width: 970px) {
	.container.usluge{
		-moz-column-count: 2;
		-webkit-column-count: 2;
		column-count: 2;
	}
	.double_normal{
		width: 100% !important;

	}
	.usluga_wrapper{
		margin-bottom: 15px;
	}
}
@media all and (max-width : 767px) {
	.container.usluge{
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
		-moz-column-gap: 0;
		-webkit-column-gap: 0;
		column-gap: 0;
	}
	.double_normal{
		width: 85% !important;
		display: block;
		margin: auto;
	}
	.usluga_wrapper .hover_description{
		padding: 12px 8px;
	}
}
@media all and (max-width : 601px) {
	.double_normal{
		width: 90% !important;
		display: block;
		margin: auto;
	}
}
/***** Usluge end *****/

/***** Ljeto start *****/
#ljeto_landing_page h1{
	font-size: 50px;
}
#ljeto_landing_page h2{
	font-size: 36px;
}
#ljeto_landing_page h3{
	font-size: 30px;
}
#ljeto_landing_page p{
	font-size: 18px;
}
#ljeto_usluge_ciscenja{
	background-image:url("/assets/template/front/tiptop/img/ljeto/tip-top_LJETO.png");
	background-position: center;
}
#ljeto_osigurava .summer.features{
	background-color: transparent;
	border: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 80px;
}
.orange-line-bottom{
	border-bottom: 2px solid #f28e17;
	display: inline-block;
	padding-bottom: 10px;
	padding-right: 25px;
}
#ljeto_osigurava h2,
#ljeto_osigurava h3{
	color:black;
	line-height: normal;
}
#ljeto_usluge_ciscenja .col-md-4 .text{
	margin: 140px 0 80px 0;
}
#ljeto_osigurava h3.padding-bottom-30px{
	padding-bottom: 30px;
}
#ljeto_osigurava .content{
	padding-top: 50px;
}
#ljeto_gdje_cistimo ul.popis_gradova{
	margin: 30px 0;
}
#ljeto_gdje_cistimo ul.popis_gradova li{
	font-weight: bold;
	font-size: 24px;
}
@media only screen and (max-width : 1200px) {
	#ljeto_usluge_ciscenja{
		background-position-x: -360px;
	}
}

@media only screen and (max-width : 989px) {
	#ljeto_usluge_ciscenja {
		background-position-x: center;
		background-size: cover;
	}

	#ljeto_usluge_ciscenja .text {
		text-shadow: white 1px 1px 2px;
	}
	#ljeto_osigurava.parallax-container .parallax img{
		max-width: none;
	}
}
/***** Ljeto end *****/

/***** Kooperanti start *****/

#suradnici_page h1{
	font-size: 48px;
	font-weight: bold;
}
#suradnici_page h2{
	font-size: 35px;
	font-weight: bold;
	line-height: normal;
	margin-bottom: 20px;
}
#suradnici_page h3{
	font-size: 24px;
	font-weight: bold;
	line-height: normal;
	margin-bottom: 20px;
}
#suradnici_page h3.normal{
	font-weight: normal;
}
#suradnici_page h4{
	font-size: 30px;
}
#suradnici_page p,
#suradnici_page li{
	font-size: 18px;
	line-height: normal;
}
#suradnici_page p.italic{
	font-style: italic;
}
#suradnici_page li:before{
	content: "-";
	display: inline-block;
	width: 2em;
}
.margin-top-90{
	margin-top: 90px;
}
a.potpore_link{
	color: #f28e17;
}
a.potpore_link:hover{
	color: #337ab7;
}
#suradnici_header .section-wrapper{
	min-height: 750px;
	display: flex;
	align-items: flex-end;
}
#suradnici_header .section-wrapper .container .col-md-12{
	display: flex;
	flex-flow: column;
	justify-content: space-evenly;
	align-items: flex-start;
	min-height: 580px;
}
#suradnici_dojmovi{
	background-color: #ebebeb;
}
#suradnici_dojmovi .row.row-eq-height{
	display: flex;
}
#suradnici_dojmovi .col-md-4.white{
	width: calc(33.33333333% - 60px);
	margin: 30px;
	padding: 30px;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
}
#suradnici_dojmovi .col-md-4.white:before {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 20px 40px 0;
	border-color: transparent white transparent transparent;
	position: absolute;
	top: 0;
	left: -20px;
}
#suradnici_dojmovi .col-md-4.white p{
	font-size: 16px;
}
#suradnici_dojmovi .col-md-4.white .right{
	align-self: flex-end;
}
#suradnici_zasto_se_prijaviti{
	background-image: url("/assets/template/front/tiptop/img/kooperanti/coop_zasto_poslati_prijavu_bgi.jpg");
	background-size: 50% 100%;
	background-position: right center;
	background-repeat: no-repeat;
}
#suradnici_zasto_se_prijaviti .row{
	display: flex;
}
#suradnici_zasto_se_prijaviti .col-md-6.pozadina{
	display: flex;
	justify-content: center;
	align-items: center;
}
#suradnici_obrazac{
	margin-top: 40px;
}
#suradnici_page{
	scroll-behavior: smooth;
}

/* -- 2018 redesign -- */
.cleaning_services .heading {
	margin-bottom: 30px;
}
.mobile .cleaning_services .heading {
	margin-bottom: 20px;
  font-size: 26px;
}
.content-left, .content-center, .content-right, .margin {
	float: left;
}
.content-left, .content-right {
	width: 30%;
}
.content-center {
	width: 4%;
}
.margin {
	width: 18%;
}
.content-center span {
	margin: 10px 0;
	font-size: 18px;
	line-height: 1.1;
	display: inline-block;
	position: relative;
	top: 10px;
}
.cleaning_services .content-center span {
    margin: 0;
}
.cleaning_services .list-group-item-text img {
    margin-bottom: 10px;
}
.cleaning_services .btn-default.dropdown-toggle:hover {
    color: #fff;
}
.user-type {
	margin: 40px 0;
}
.service-features {
	margin: 10px 0 40px 0;
}
.service-features .list-group-item {
    border-radius: 0;
}
.service-features .list-heading {
	background-color: #f28e17;
	border: 0;
	padding: 30px;
        font-size: 20px;
        line-height: 26px;
}
.service-features .list-heading.list-heading-b {
	color: #000;
}
.service-features .list-heading.list-heading-w {
	color: #fff;
}
.service-features .list-group-item.list-group-item-content {
	border: 0;
	background-color: #ebebeb;
}
.service-features .list-group-item.list-group-item-content.last span {
    padding: 0 30px;
    display: block;
}
.service-features .list-group-item.list-group-item-content.last h4 {
    text-transform: uppercase;
}
.service-features .list-group-item {
	padding-left: 30px;
	padding-right: 30px;
}
.service-features .list-group-item p {
	font-size: 16px;
	font-weight: bold;
}
.mobile .service-features .list-group-item p {
	font-size: 14px;
}
.service-features .list-group-item .fa {
	float: right;
	font-size: 22px;
}
.service-features .list-group-item .fa-check-circle-o {
	color: #01921d;
}
.service-features .list-group-item .fa-times-circle-o {
	color: #bb2f00;
}
.service-features .list-group-item hr {
	border-color: #acacac;
	margin: 0;
}
.fullwidth.cleaning_services {
	background-color: #ebebeb;
}
.service-features .list-group-item-info {
	color: #000;
	border: 2px solid #d5d5d5;
}
.service-features .list-group-item-info span {
	display: inline-block;
	vertical-align: middle;
	line-height: 18px;
}
.service-features .list-group-item-info p {
	height: 55px;
	line-height: 55px;
	font-weight: normal;
	font-size: 16px;
}
.mobile .service-features .list-group-item-info p {
	height: auto;
}
.mobile .service-features h4.subheading {
	margin: 20px 0;
}
.service-features .list-group-item-info.bg-dark {
	background-color: #d5d5d5;
}
.service-features .list-group-item-info.bg-light {
	background-color: #fff;
}
.service-features-order {
	margin-bottom: 40px;
}
.cta-content .dropdown {
	display: inline-block;
}
.cta-content .dropdown-menu {
	margin: auto;
	right: 0;
}
.fileuploader-input-inner p {
	text-align: center;
}
.autocomplete-content {
	margin-top: 0;
}
.order-subheading {
	margin-bottom: 20px;
}
.services section {
	margin: 30px 0;
}
.services h2.subheading {
	color: #f28e17;
}
.services h2.subheading img {
	margin-right: 15px;
	vertical-align: sub;
}
.desktop .contractors_employment {
	background: url('../img/glove.png') no-repeat right 100px;
	background-size: 600px;
	/*background-attachment: fixed;*/
}
.desktop .contractors_employment h1 {
	padding: 50px 0;
}
.contractors_employment li {
	line-height: 28px;
}
.contractors_employment li i {
	color: #f28e17;
}
.contractors_employment .bottom-content h2 {
	color: #f28e17;
}
.contractors_employment .bottom-content {
	margin-top: 20px;
	padding: 100px 0;
	background: url('../img/tip-top-cleaning-bg.jpg') no-repeat 0 0;
	background-size: 100%;
}
.contractors_employment .bottom-content .text {
	width: 30%;
	margin: 0 auto;
}
.products {
	margin: 60px 0;
}
.products .product {
	margin: 0 15px;
	padding: 15px;
	background-color: #ebebeb;
	border-radius: 10px;
}
.products .product .logo-container {
	margin: 20px 0;
}
.products .product .list-unstyled {
	margin: 30px 0;
}
.products .product .list-unstyled li {
	line-height: 24px;
}
.products .product .btn-default {
	margin-bottom: 10px;
}
.prices-disclaimer {
	padding: 15px;
	margin: 20px 30px 0;
	background-color: #ebebeb;
}
#index-banner .section {
	position: relative;
}
#index-banner .home-cta {
	position: absolute;
	/* width: 25%; */
	/* height: 140px; */
	/* margin: auto; */
	padding: 15px;
	left: 220px;
	right: 0;
	/* top: 25%; */
	bottom: 150px;
	z-index: 2;
	/* background-color: rgba(255, 255, 255, .5); */
	/* text-align: center; */
}
#index-banner .home-cta-mobile {
	margin-bottom: 20px;
}
#index-banner .home-cta h2 {
	display: table;
	padding: 10px;
	margin-top: 0;
	line-height: 24px;
	background-color: #fff;
	margin-bottom: 10px;
	color: #000;
}
#index-banner .home-cta-2 {
	margin-top: 60px;
}
#index-banner .home-cta-2 .item {
	background: transparent;
	padding: 15px;
	display: table;
	margin-bottom: 30px;
}
#index-banner .home-cta-2 .item:last-child {
	margin-bottom: 0;
}
#index-banner .home-cta-2 .item-1 {
	position: absolute;
	top: 275px;
}
#index-banner .home-cta-2 .item-1 .item-1_circle-info {
	position: absolute;
	width: 140px;
	height: 140px;
	background: #f28e17;
	top: -144px;
	z-index: 2;
	padding: 10px;
	color: #ffffff;
	font-size: 25px;
	font-weight: 500;
	border-radius: 50%;
	text-align: center;
	padding-top: 21px;
	transform: rotate(17deg);
}
#index-banner .home-cta-2 .item-1 .item-1_circle-info:before {
	position: absolute;
	content: '';
	top: -5%;
	left: -5%;
	width: 110%;
	height: 110%;
	border: 2px solid #f28e17;
	background: transparent;
	border-radius: 50%;
}
#index-banner .home-cta-2 .item-1 .item-1_circle-info .happy-text-home {
	line-height: 1.2em;
	font-size: 17px;
}
#index-banner .home-cta-2 .item-1 .item-1_circle-info .happy-text-home span {
	display: block;
	font-weight: 600;
	font-size: 27px;
	margin: 5px 0;
}
.slider-info {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50px;
	height: 30px;
	line-height: 30px;
	font-size: 18px;
	color: #fff;
	margin: auto;
	text-shadow: 2px 2px 5px #000;
}
.slider-info .fa {
	font-size: 24px;
}
.phone-cta {
    z-index: 9999;
    position: fixed;
    right: 10px;
    bottom: 50px;
}
.phone-cta #cta-phone {
    display: block;
    padding: 10px;
    border-radius: 0;
    color: #f28e17;
    background-color: #fff;
    border: 2px solid #f28e17;
    font-size: 18px;
    line-height: 24px;
    height: auto;
/*    right: -59px;
    top: 170px;
    transform: rotate(270deg);*/
}
.phone-cta #cta-phone:hover {
    color: #fff;
    background-color: #f28e17;
}
.phone-cta #cta-phone i {
	margin-right: 5px;
	font-size: 20px;
        display: none;
}
.phone-cta #call-request {
	width: 100%;
}
.phone-cta .dropup .dropdown-menu {
	padding: 5px;
}
.phone-cta .dropup .dropdown-menu li {
	padding: 2px 5px;
}
.phone-cta .gdpr {
	line-height: 13px;
}
.phone-cta .alert {
	font-size: 12px;
}
.phone-cta #call-request {
	display: block;
}
.lp-12-2019 .heading-content {
	margin: 140px auto;
}
.lp-12-2019 .heading-content p {
	font-size: 28px;
	margin-bottom: 0;
	margin-top: 20px;
}
.lp-12-2019 .heading-content h3 {
	margin-top: 0;
	font-size: 30px;
}
.lp-12-2019 .subheading-content {
	position: relative;
	padding: 0 0 40px 100px;
}
.lp-12-2019 .subheading-content .bg-text {
	background: url('../img/cloud.png') no-repeat 0 0;
	max-width: 447px;
	min-height: 316px;
	padding: 60px;
	position: absolute;
	bottom: -60px;
	left: -80px;
}
.lp-12-2019 .cta-wrapper-1 {
	margin: 50px auto;
}
.lp-12-2019 .subheading-content .bg-text div {
	position: relative;
	top: 50px;
	text-align: center;
}
.lp-12-2019 .subheading-content .bg-text div {
	font-weight: bold;
	font-size: 18px;
}
.lp-12-2019 .bg-tt {
	background: #f39734 url('../img/bor_bg.png') no-repeat 0 0;
	background-size: cover;
	height: 100%;
}
.lp-12-2019 .bg-tt .text {
	width: 80%;
	margin: 80px auto 20px auto;
	padding: 70px 40px 0 40px;
	color: #fff;
}
.lp-12-2019 .cta-wrapper-2 {
	margin: 50px auto;
}
.lp-12-2019 .cta-wrapper-2 .cta-content {
	margin: 30px 0;
}
.send-recommendation {
	font-weight: bold;
	text-transform: initial;
}
/* -- /2018 redesign -- */

/* redesign 2019 */
.default-title {
	font-size: 60px;
	color: rgb(35, 31, 32);
	font-weight: bold;
	line-height: 1.2;
}
.default-title span {
	background: #ffffff;
	display: block;
	margin-bottom: 8px;
	max-width: 720px;
	padding: 3px 10px;
}
.main-description {
	background: #ffffff;
	max-width: 720px;
	font-size: 18px;
	color: rgb(35, 31, 32);
	line-height: 1.333;
	padding: 10px;
	margin-top: 22px;
}

/* Packages */
.home-section-1 {
    margin-bottom: 100px;
    margin-top: 100px;
}

.new-packages .product {
    background: #94BDD1;
    padding: 10px 10px 32px 10px;
    border-radius: 4px;
    color: #FFFFFF;
    margin-bottom: 30px;
}
.new-packages .product ul {
    margin-bottom: 28px;
}
.new-packages .product ul li {
    font-size: 16px;
}
.new-packages .pack-item .product h3 {
    font-size: 48px;
    color: #ffffff;
}
.btn-v2 {
    padding: 8px 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
}
.pack-item-body h4 {
    font-size: 24px;
    margin: 32px 0 15px 0;
    font-weight: 400;
}
.pack-item-body p {
    font-size: 15px;
}
.pack-item-list {
    padding-left: 16px !important;
}
.pack-item-list li {
    position: relative;
    font-size: 15px;
}
.pack-item-body .pack-divider {
    height: 2px;
    background: #888;
    margin: 40px 0;
}
.tc-orange {
    color: #f28e17;
}
.pack-additional-content {
    margin-top: 40px;
}
.pack-additional-content p {
    margin: 0;
}
.section-2-text {
    background: #94bdd1;
    color: #ffffff;
    padding: 20px;
    font-size: 15px;
}
.home-section-2 {
    margin-bottom: 50px;
}
.home-section-2.price-page {
    padding: 40px 0;
}
.home-section-2.price-page .container {
    max-width: 900px;
}
.home-section-2.price-page h3 {
    font-size: 48px;
    line-height: 54px;
    text-transform: uppercase;
    font-weight: 800;
}
.home-section-2.price-page p {
    font-size: 18px;
    line-height: 24px;
    font-style: italic;
    margin-bottom: 5px;
}
.home-section-2.price-page .btn-default,
.home-section-1.covid-page .btn-default {
    margin: 20px 0 30px 0;
}
.home-section-2.tta-page .btn-default {
    margin: 20px 0 30px 0;
}
.home-section-3.tta-page {
    padding: 80px 0;
    text-align: center;
}
.home-section-3.tta-page h4 {
    margin: 40px 0;
    font-size: 18px;
    font-weight: 400;
}
.home-section-1.service-page h4 {
    margin: 40px 0;
    font-size: 18px;
    font-weight: 400;
}
.home-section-3.tta-page .container {
    max-width: 1200px;
}
.home-section-3.tta-page h2 {
    margin-bottom: 100px;
}
.home-section-4.tta-page {
    padding: 50px 0;
    text-align: center;
}
.home-section-4.tta-page .container {
    max-width: 1000px;
}
.home-section-4.tta-page h4 {
    font-size: 110px;
    line-height: 116px;
    font-weight: 800;
    color: #f08d1b;
}
.home-section-4.tta-page p {
    font-size: 28px;
    line-height: 34px;
}
.home-section-1.service-page {
    padding: 100px 0;
    margin: 0;
}
.home-section-1.service-page .content {
    text-align: center;
    max-width: 1200px;
    margin: 70px auto;
}
.home-section-2.service-page {
    padding: 50px 0;
    text-align: center;
}
.home-section-2.service-page .container {
    max-width: 1000px;
}
.home-section-2.service-page h2,
.home-section-2.service-page h3 {
    text-transform: uppercase;
    font-size: 28px;
    line-height: 34px;
}
.home-section-2.service-page h3 {
    color: #f08d1b;
}
.home-section-2.service-page .btn-default {
    margin-top: 20px;
}
.home-section-1.service-page .icon-hover img:nth-of-type(1),
.home-section-3.tta-page .icon-hover img:nth-of-type(1) {
    opacity: 1;
    transform: scale(0.9);
    transition: all 0.6s ease;
}
.home-section-1.service-page .icon-hover img:nth-of-type(2),
.home-section-3.tta-page .icon-hover img:nth-of-type(2) {
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: scale(0.9);
    transition: all 0.6s ease;
}
.home-section-1.service-page .icon-hover h4,
.home-section-3.tta-page .icon-hover h4 {
    position: relative;
}
.home-section-1.service-page .icon-hover h4:after,
.home-section-3.tta-page .icon-hover h4:after {
    content:'';
    background: #f08d1b;;
    width: 50px;
    bottom: -22px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 3px;
    position: absolute;
    transition: all 0.6s ease;
    opacity: 0;
}
.home-section-1.service-page .icon-hover:hover h4:after,
.home-section-3.tta-page .icon-hover:hover h4:after {
    opacity: 1;
    bottom: -19px;
    width: 70px;
}
.home-section-1.service-page .icon-hover:hover h4,
.home-section-3.tta-page .icon-hover:hover h4 {
    color: #000;
}
.home-section-1.service-page .icon-hover:hover img:nth-of-type(1),
.home-section-3.tta-page .icon-hover:hover img:nth-of-type(1) {
    opacity: 0;
    transform: scale(1);
}
.home-section-1.service-page .icon-hover:hover img:nth-of-type(2),
.home-section-3.tta-page .icon-hover:hover img:nth-of-type(2) {
    opacity: 1;
    transform: scale(1);
}
.pack-item-list li i {
    color: #f28e17;
    position: relative;
    left: -8px;
}

.home-section-3 {
    margin-top: 50px;
    margin-bottom: 20px;
}
.home-section-3.price-page,
.home-section-3.cleaning-services-page{
    margin-top: 100px;
}
.home-section-4.price-page {
    padding: 100px 0;
}
.home-section-3.price-page img,
.home-section-1.covid-page img {
    margin-top: 50px;
}
.home-section-3 h2 {
    font-size: 40px;
    color: rgb(35, 31, 32);
    font-weight: bold;
    line-height: 1.2;
}
.d-flex.half-orange-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.d-flex.half-orange-content .content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}
.d-flex.half-orange-content .content .col-one,
.d-flex.half-orange-content .content .col-two {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.d-flex.half-orange-content h2,
.d-flex.half-orange-content h1 {
    display: block;
    font-size: 48px;
    line-height: 54px;
    color: #f08d1b;
    text-align: right;
    text-transform: uppercase;
    font-weight: 800;
    float: right;
}
.home-section-1.tta-page .d-flex.half-orange-content .col-one p,
.home-section-5.tta-page .d-flex.half-orange-content .col-one p,
.home-section-3.service-page .d-flex.half-orange-content .col-one p,
.home-section-4.service-page .d-flex.half-orange-content .col-one p,
.home-section-5.service-page .d-flex.half-orange-content .col-one p,
.home-section-7.service-page .d-flex.half-orange-content .col-one p {
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    font-style: italic;
    text-align: right;
}
.home-section-3.price-page .d-flex.half-orange-content h2,
.home-section-3.cleaning-services-page .d-flex.half-orange-content h2 {
    max-width: 300px;
    margin: 0 100px 0 0;
}
.home-section-4.price-page .d-flex.half-orange-content h2,
.home-section-1.covid-page .d-flex.half-orange-content h1,
.home-section-4.cleaning-services-page .d-flex.half-orange-content h2 {
    max-width: 400px;
    margin: 0 100px 0 0;
}
.home-section-4.cleaning-services-page {
    padding: 50px 0;
}
.home-section-4.price-page .d-flex.half-orange-content h2 span,
.home-section-1.covid-page .d-flex.half-orange-content h1 span,
.home-section-5.tta-page .d-flex.half-orange-content h2 span,
.home-section-3.service-page .d-flex.half-orange-content .col-one h2 span,
.home-section-4.service-page .d-flex.half-orange-content .col-one h2 span,
.home-section-5.service-page .d-flex.half-orange-content .col-one h2 span,
.home-section-7.service-page .d-flex.half-orange-content .col-one h2 span,
.home-section-4.cleaning-services-page .d-flex.half-orange-content h2 span {
    color: #000;
}
.home-section-1.tta-page .d-flex.half-orange-content h2,
.home-section-1.tta-page .d-flex.half-orange-content .col-one p {
    max-width: 440px;
    margin: 0 100px 0 0;
}
.home-section-1.tta-page .d-flex.half-orange-content .col-one p {
    padding-left: 150px;
}
.home-section-1.tta-page .d-flex.half-orange-content .col-two p {
    max-width: 440px;
}
.home-section-5.tta-page .d-flex.half-orange-content .col-one h2,
.home-section-5.tta-page .d-flex.half-orange-content .col-one p {
    max-width: 500px;
    margin: 0 100px 0 0;
}
.home-section-3.service-page .d-flex.half-orange-content .col-one h2,
.home-section-3.service-page .d-flex.half-orange-content .col-one p,
.home-section-4.service-page .d-flex.half-orange-content .col-one h2,
.home-section-4.service-page .d-flex.half-orange-content .col-one p {
    max-width: 500px;
    margin: 0 90px 0 0;
}
.home-section-5.service-page .d-flex.half-orange-content .col-one h2,
.home-section-5.service-page .d-flex.half-orange-content .col-one p,
.home-section-7.service-page .d-flex.half-orange-content .col-one h2,
.home-section-7.service-page .d-flex.half-orange-content .col-one p {
    max-width: 500px;
    margin: 0 80px 0 0;
}
.home-section-1.tta-page .btn-default {
    margin: 10px 0;
}
.home-section-5.tta-page {
    padding: 100px 0;
}
.home-section-3.service-page,
.home-section-4.service-page,
.home-section-5.service-page,
.home-section-7.service-page {
    padding: 50px 0;
    margin: 0;
}
.home-section-4.service-page .content,
.home-section-5.service-page .content,
.home-section-7.service-page .content {
    margin-bottom: 50px;
}
.d-flex.half-orange-content .col-two {
    border-left: 5px solid #f08d1b;
    padding: 10px 0 10px 48px;
}
.home-section-2.tta-page {
    background: url('../img/tiptop-ciscenje-dezinfekcija.jpg') no-repeat;
    text-align: center;
    padding: 100px 0 80px 0;
    background-size: cover;
}
.home-section-6.service-page {
    background: url('../img/tiptop-usluge-3.jpg') no-repeat;
    text-align: center;
    padding: 100px 0 80px 0;
    background-size: cover;
}
.d-flex.half-orange-content .col-two ul {
    padding-left: 20px;
}
.d-flex.half-orange-content .col-two ul li {
    font-size: 20px;
    line-height: 26px;
    list-style-type: disc;
}
#back2Top {
    width: 40px;
    line-height: 36px;
    overflow: hidden;
    z-index: 999;
    display: none;
    cursor: pointer;
    position: fixed;
    bottom: 150px;
    right: 10px;
    background-color: #f08d1b;
    color: #fff;
    text-align: center;
    font-size: 30px;
    text-decoration: none;
    opacity: 1;
}
#back2Top span {
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    display: block;
    margin-left: -4px;
    font-size: 40px;
}
#back2Top:hover {
    opacity: 0.8;
}
.list-style-2 {
	margin: 40px 0;
	padding-left: 17px !important;
}
.list-style-2 li {
	position: relative;
	font-size: 15px;
}
.list-style-2 li:before {
	position: absolute;
	content: '';
	width: 5px;
	height: 5px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	left: -15px;
	top: 8px;
	background: #000;
}

.home-section-3 h4 {
	margin: 40px 0;
	font-size: 20px;
	font-weight: 400;
}
.happy-clients {
	position: absolute;
	right: 240px;
	width: 180px;
	height: 180px;
	background: #f28e17;
	bottom: 50px;
	z-index: 2;
	padding: 10px;
	color: #ffffff;
	font-size: 25px;
	font-weight: 500;
	border-radius: 50%;
	text-align: center;
	padding-top: 23px;
	transform: rotate(17deg);
}
.happy-clients .happy-text {
	line-height: 1.2em;
}
.happy-clients .happy-text span {
	display: block;
	font-weight: 600;
	font-size: 30px;
}
.happy-clients-mobile {
	background: #f28e17;
	color: #ffffff;
	font-size: 21px;
	padding: 6px 6px 4px 6px;
}
.happy-clients-mobile .happy-text {
	line-height: 1.4em;
}
.happy-clients-mobile .happy-text span {
	display: block;
	font-weight: 600;
	font-size: 28px;
}
.recommendation-par {
	font-size: 24px !important;
	margin-bottom: 15px !important;
}

#index-banner {
	/*min-height: unset !important;*/
}

.form-group input.datepicker.inline, .form-group input.timepicker.inline {
	width: 50%;
	float: left;
}
.inquest h2.lead {
  font-size: 24px;
}
.inquest-text p.lead {
  margin-bottom: 28px;
  margin-top: 24px;
}
label {
  font-size: 16px;
}
.popover-title {
  background: #f28e17;
  border: 0;
  font-weight: 700;
}
.f-size-24 {
  font-size: 24px;
}
.text-cleaning-service-p2 {
  margin-bottom: 50px;
}

/* SURADNJA */
.heading.collaboration-h1 {
  line-height: 1.5em;
}
.collaboration h2 {
    font-weight: 800;
}
.snnoo_desc {
  font-size: 16px;
  line-height: 24px;
  padding: 0 10px;
}
.header_collaboration_wrapper {
/*    background: #EFEFEF;*/
    padding: 0 !important;
    margin-bottom: 80px;
    margin-top: 80px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: stretch;
}
.header_collaboration_col {
    background: #fff;
    box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.09);
    height: 100%;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
}
.snoop_title {
  font-size: 22px;
  font-weight: 800;
  color: #f28e17;
  padding-bottom: 11px;
  position: relative;
  text-align: center;
  margin-bottom: 22px;
    padding-top: 10px;
}
.snoop_title:after {
    content:'';
    background: #f08d1b;;
    width: 44px;
    bottom: 0px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 1px;
    position: absolute;
}
.collaboration_row_2 {
    margin-bottom: 70px;
    margin-top: 70px !important;
}
.collaboration_row_2 .col_row_2_text_1 {
    background: #f28e17;
    padding: 45px 30px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
}
.col_row_2_text_1 {
  font-size: 19px;
  line-height: 1.3em;
}
.row_2_text_1_strong {
  font-weight: 600;
}
.stand_text {
  font-size: 16px;
  line-height: 1.3em;
}
.footer_in_section .footer_er.collaboration_footer {
    max-width: 100%;
}
.collaboration_footer .stand_text {
  font-size: 18px;
  line-height: 26px;
}
.accordion {
    display: flex;
    justify-content: stretch;
    align-items: center;
}
.zasto_Raditi_tiptop {
  display: inline-block;
/*  margin-bottom: 25px;*/
}
.txt_max_width {
  max-width: 558px;
}
.footer_in_section {
  background: #EFEFEF;
  padding: 40px 30px 32px 30px;
  margin-top: 60px;
}
.footer_in_section .footer_er {
  max-width: 900px;
  margin: 0 auto !important;
}
.footer_in_section .col-md-12 .stand_text:nth-child(2) {
  margin-top: 26px;
}
#container-accordion {
  margin-top: 0;
/*  max-width: 558px;*/
}
#container-accordion h3 {
  padding: 5px 10px 5px 0;
  cursor: pointer;
  color: #f28e17;
  font-size: 22px;
  position: relative;
  font-weight: 500;
  margin-top: 10px;
}
#container-accordion h3::after {
  position: absolute;
  content: '\f067';
  top: 9px;
  right: 0;
  font-family: FontAwesome;
  font-size: 18px;
}
#container-accordion h3.toggle-show::after {
  content: '\f068';
}
#container-accordion div.content {
  display: none;
  padding: 0 10px 10px 0;
  font-size: 16px;
}
.ac-sec-col {
  border-bottom: 1px solid #f28e17;
  position: relative;
}
.ac-sec-col .content p {
    font-size: 16px;
    line-height: 22px;
}
.collaboration-form .form-wrapper-none {
    padding-top: 50px;
}
.collaboration-form .form-wrapper-none .form-group {
    padding: 15px 10px;
}
.collaboration-form .form-wrapper-none .input-group .input-group-addon {
    display: none;
}
.collaboration-form .form-wrapper-none .form-control {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.collaboration-form .form-wrapper-none .form-group select {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #666;
    border-left: 2px solid #fff;
    color: #999;
    font-style: italic;
    font-weight: 400;
    height: 59px;
    font-size: 18px;
}
.collaboration-form .form-wrapper-none .form-group select option {
    font-size: 18px;
}
.collaboration-form .form-wrapper-none .form-group select:focus {
    outline: none !important;
}
.collaboration-form .form-wrapper-none .form-group .check {
    margin-bottom: 7px;
}
.collaboration-form .form-wrapper-none [type="radio"]:checked+label,
.collaboration-form .form-wrapper-none [type="radio"]:not(:checked)+label {
    padding-left: 27px !important;
    margin-right: 10px !important;
}
.collaboration-form .form-wrapper-none .form-group .check p {
    font-size: 20px;
    line-height: 26px;
    color: #999;
    font-style: italic;
    font-weight: 400;
}
.covid-19-w {
	/*background-color: #ccc;*/
}

.covid-19-details .covid-19 {
	
}

.covid-19 {
	background-color: #f28e17;
	padding: 20px 0;
}

.covid-19 h3 {
	color: #fff;
	margin: 15px;
	font-size: 38px;
}
.covid-19-w ul {
	padding-left: 20px;
}
.covid-19-w .covid-content {
	margin-top: 20px;
}

.covid-19-w .covid-content .lead {
	font-size: 20px;
	font-weight: bold;
	margin-top: 20px;
}
.covid-19-details {
	padding-bottom: 20px;
        max-width: 1200px;
    margin: 0 auto !important;
}

#index-banner .home-cta.majstori-header {
  top: 15%;
  padding-left: 0;
}

#index-banner .home-cta.majstori-header p {
  font-weight: 600;
  font-size: 30px;
  line-height: 1.3em;
  color: #000;
}
.majstori-usluge {
  font-size: 30px;
  font-weight: 700;
}
.majstori-table {
  margin-top: 23px;
}
.majstori-table tr td {
  padding: 5px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}
.majstori-table tr:nth-child(odd) {
  background: #e6e6e6;
}
.majstori-usluge-lista {
  max-width: 643px;
  margin: 0 auto !important;
  width: 100%;
}
.majstori_footer_text {
  font-weight: 700;
  font-size: 26px;
  margin: 40px 0 50px 0;
  line-height: 1.3em;
}

.majstori_section_1 p {
  font-size: 16px;
}

.con-clast {
  margin-top: 30px;
  padding: 30px 0 40px 0;
  background: #EBEBEB url('/assets/img/botom_img.png') no-repeat right top;
}
.con-clast ul {
  padding-left: 17px;
}
.con-clast ul li {
  list-style-type: disc;
}
.logo-carousel .item {
    padding: 20px 30px;
}
.logo-carousel .owl-nav .owl-prev,
.logo-carousel .owl-nav .owl-prev:hover,
.logo-carousel .owl-nav .owl-next,
.logo-carousel .owl-nav .owl-next:hover {
    color: #fff;
    position: relative;
    background: #fff;
}
.logo-carousel .owl-nav .owl-prev:before {
    content: "\2039";
        position: absolute;
    color: #666;
    font-size: 40px;
    line-height: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.logo-carousel .owl-nav .owl-next:before {
    content: "\203A";
        position: absolute;
    color: #666;
    font-size: 40px;
    line-height: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.owl-theme .owl-nav {
    margin-top: -28px;
}
.logo-carousel.owl-carousel .owl-dots.disabled,
.logo-carousel.owl-carousel .owl-nav.disabled {
    display: block;
}




@media only screen and (min-width: 1440px) {
  .container {
    width: 1400px;
    max-width: 1400px;
  }
}

@media all and (max-width: 1440px) {
    #tta-index-banner {
        background: url('../img/tiptop-gratis-sati.jpg') no-repeat right;
        background-size: cover;
      }
}

@media only screen and (min-width: 1300px) {
  .container {
    width: 1400px;
  }
}

@media only screen and (min-width: 1281px) {
  #new-index-banner,
  #homepage-banner {
      height: 700px;
  }
}

@media only screen and (max-width: 1299px) {
    .eko-pack-title {
      line-height: 1em;
      font-size: 22px;
    }
    .homepage-intro-section,
    .intro-section {
        width: 66%;
        padding: 30px 20px 30px 0;
    }
    .homepage-intro-section .heading,
    .intro-section .heading {
        font-size: 38px;
        line-height: 44px;
        margin-top: 0;
    }
    .homepage-label-orange,
    .intro-label-orange {
        margin-top: -40px;
    }
    .intro-section p {
        font-size: 16px;
        line-height: 22px;
    }
    .homepage-intro-section .heading-description,
    .intro-section .heading-description {
        font-size: 22px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 1280px) {
  #new-index-banner,
  #homepage-banner {
      height: 600px;
  }
}

@media only screen and (max-width: 1200px) {

    .about-us-section {
        padding: 20px 0 50px 0;
    }
    .about-us-section h3,
    .generalka-section h3 {
        display: block;
        font-size: 40px;
        line-height: 46px;
        text-align: left;
    }
    .about-us-section .col-one p,
    .generalka-section .col-one p {
        display: block;
        font-size: 16px;
        line-height: 24px;
        text-align: left;
    }
    .about-us-section .col-two,
    .generalka-section .col-two,
    .d-flex.half-orange-content .col-two {
        border-left: 3px solid #f08d1b;
        padding: 10px 0 10px 20px;
    }
    .about-us-section .col-two p,
    .generalka-section .col-two p {
        font-size: 18px;
        line-height: 24px;
        text-align: left;
    }
    .generalka-section .col-two h4 {
        font-size: 24px;
        line-height: 30px;
    }
    .home-section-3.price-page .d-flex.half-orange-content h2,
    .home-section-3.cleaning-services-page .d-flex.half-orange-content h2,
    .home-section-4.price-page .d-flex.half-orange-content h2,
    .home-section-1.covid-page .d-flex.half-orange-content h1,
    .home-section-4.cleaning-services-page .d-flex.half-orange-content h2,
    .home-section-1.tta-page .d-flex.half-orange-content h2,
    .home-section-1.tta-page .d-flex.half-orange-content .col-one p,
    .home-section-5.tta-page .d-flex.half-orange-content .col-one h2,
    .home-section-5.tta-page .d-flex.half-orange-content .col-one p,
    .home-section-3.service-page .d-flex.half-orange-content .col-one h2,
    .home-section-3.service-page .d-flex.half-orange-content .col-one p,
    .home-section-4.service-page .d-flex.half-orange-content .col-one h2,
    .home-section-4.service-page .d-flex.half-orange-content .col-one p,
    .home-section-5.service-page .d-flex.half-orange-content .col-one h2,
    .home-section-5.service-page .d-flex.half-orange-content .col-one p,
    .home-section-7.service-page .d-flex.half-orange-content .col-one h2,
    .home-section-7.service-page .d-flex.half-orange-content .col-one p,
    .home-section-7.service-page .d-flex.half-orange-content .col-one h2,
    .home-section-7.service-page .d-flex.half-orange-content .col-one p {
        max-width: 100%;
        margin: 0 0 20px 0;
        width: 100%;
    }
    .d-flex.half-orange-content h2,
    .d-flex.half-orange-content h1 {
        font-size: 38px;
        line-height: 44px;
    }
    .home-section-4.tta-page h4 {
        font-size: 80px;
        line-height: 100px;
    }
}
@media only screen and (max-width: 1199px) {
    #korisnici-tab #pp-2 .new-packages {
        justify-content: center;
    }
    .pack-item-business {
        width: 50%;
        margin-bottom: 40px;
    }
}
@media only screen and ( min-width: 992px ) {
	.parallax-container {
		height: calc(100vh - 60px);
	}
	#new-user-info .modal-dialog {
		width: 900px;
	}
	.list-c-1 {
		min-height: 127px;
	}
	.list-c-2 {
		min-height: 85px;
	}
	.pack-additional-content {
		min-height: 215px;
	}
	.body-item-description {
		min-height: 160px;
	}
	.inner-col-1 {
		width: 48%;
		padding: 0;
	}
	.inner-col-2 {
		width: 52%;
		padding: 0;
	}
	.home-section-3 .col-md-8 {
		width: 61.666667%;
	}
	.home-section-3 .col-md-4 {
		width: 38.33333333%;
	}
}

@media only screen and (max-width: 992px) {
    .top.navigation .fa.fa-bars:before {
        font-size: 20px;
    }
    nav .brand-logo {
        left: 10%;
    }
    nav.sticky .brand-logo {
        left: 14%;
    }
    nav .brand-logo img {
        width: 120px;
    }
    #nav-mobile.side-nav li > a {
        height: auto !important;
    }
    .top.navigation .btn-secondary {
        max-width: 200px;
    }
    #sidenav-overlay {
        z-index: 9;
    }
    #tiptop-paketi .new-packages .product ul {
        max-width: 75%;
    }
    .koop-osoba {
        margin-bottom: 40px;
    }
    #tiptop-paketi-note {
        padding-top: 100px;
    }
    .home-section-1.new-packages {
        margin-bottom: 100px;
        margin-top: 0;
    }
    .home-section-1.service-page {
        padding: 50px 0 0 0;
    }
    .contact .heading,
    .send_enquiry .heading,
    .terms_of_service .heading,
    .secure_payment .heading,
    .blog .heading,
    .cleaning_services .heading,
    .quote h1 {
        margin-top: 22px;
    }
    .faq .content, .about .content {
        padding: 22px 0 100px 0;
    }
    #tiptop-kooperanti {
        padding: 120px 0 0 0;
    }
    .side-nav {
        width: 600px;
    }
    footer.page-footer h4 {
        margin-bottom: 10px;
        margin-top: 30px;
    }
    footer.page-footer .footer-copyright {
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 991px) {
    .con-clast {
      background: #EBEBEB;
    }
    .heading.collaboration-h1 {
      font-size: 24px;
      line-height: 30px;
      margin-bottom: 30px;
    }
    .collaboration h2 {
        font-size: 18px;
        line-height: 24px;
    }
    .header_collaboration_wrapper .col-md-4 {
      margin-bottom: 40px;
    }
    .header_collaboration_wrapper {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .collaboration_row_2 .col_row_2_text_1 {
        font-size: 18px;
    }
    .accordion {
        flex-direction: column;
    }
    #container-accordion {
      margin-bottom: 40px;
    }
    .default-title,
    .home-section-3 h2 {
            font-size: 26px;
    }
    .pack-item,
    .pack-item-business {
            margin-bottom: 40px;
    }
    #suradnici_zasto_se_prijaviti{
            background-size: cover;
            background-position: center;
    }
    #suradnici_zasto_se_prijaviti .row{
            flex-flow: column;
    }
    #suradnici_zasto_se_prijaviti .col-md-6:not(.pozadina){
            color: white;
            text-shadow: black 1px 1px 1px;
    }
    #suradnici_dojmovi .col-md-4.white{
            padding: 15px;
            width: calc(33.33333333% - 40px);
            margin: 20px;
    }
    #suradnici_header .row{
            text-shadow: black 1px 1px 1px;
    }
    #suradnici_header .parallax img{
            min-height: 100%;
    }
    .home-section-3.price-page .d-flex.half-orange-content h2,
    .home-section-3.cleaning-services-page .d-flex.half-orange-content h2,
    .home-section-4.price-page .d-flex.half-orange-content h2,
    .home-section-1.covid-page .d-flex.half-orange-content h1,
    .home-section-4.cleaning-services-page .d-flex.half-orange-content h2,
    .home-section-1.tta-page .d-flex.half-orange-content h2,
    .home-section-1.tta-page .d-flex.half-orange-content .col-one p,
    .home-section-5.tta-page .d-flex.half-orange-content .col-one h2,
    .home-section-5.tta-page .d-flex.half-orange-content .col-one p,
    .home-section-3.service-page .d-flex.half-orange-content .col-one h2,
    .home-section-3.service-page .d-flex.half-orange-content .col-one p,
    .home-section-4.service-page .d-flex.half-orange-content .col-one h2,
    .home-section-4.service-page .d-flex.half-orange-content .col-one p,
    .home-section-5.service-page .d-flex.half-orange-content .col-one h2,
    .home-section-5.service-page .d-flex.half-orange-content .col-one p,
    .home-section-7.service-page .d-flex.half-orange-content .col-one h2,
    .home-section-7.service-page .d-flex.half-orange-content .col-one p,
    .home-section-7.service-page .d-flex.half-orange-content .col-one h2,
    .home-section-7.service-page .d-flex.half-orange-content .col-one p {
        max-width: 100%;
        margin: 0 0 20px 0;
        width: 100%;
    }
    .home-section-3.price-page,
    .home-section-3.cleaning-services-page {
        margin-top: 0;
    }
    .home-section-4.price-page {
        padding: 40px 0;
    }
    .home-section-1.tta-page .d-flex.half-orange-content .col-one p,
    .home-section-5.tta-page .d-flex.half-orange-content .col-one p,
    .home-section-3.service-page .d-flex.half-orange-content .col-one p,
    .home-section-4.service-page .d-flex.half-orange-content .col-one p,
    .home-section-5.service-page .d-flex.half-orange-content .col-one p,
    .home-section-7.service-page .d-flex.half-orange-content .col-one p,
    .home-section-7.service-page .d-flex.half-orange-content .col-one p {
        padding-left: 0;
        text-align: left;
        font-size: 16px;
        line-height: 22px;
    }
    .d-flex.half-orange-content h2,
    .d-flex.half-orange-content h1 {
        font-size: 34px;
        line-height: 40px;
    }
    .d-flex.half-orange-content h2,
    .d-flex.half-orange-content h1 {
        text-align: left;
    }
    .home-section-4.tta-page h4 {
        font-size: 76px;
        line-height: 105px;
    }
    #korisnici-tab .d-flex {
        display: flex;
        flex-direction: column;
    }
    #korisnici-tab .d-flex ul {
        width: 100%;
    }
}
@media only screen and (min-width: 800px) {
    .pack-item {
        width: 50%;
    }
    #korisnici-tab .new-packages .pack-item,
    #privatni-korisnici .new-packages .pack-item,
    #poslovni-korisnici .new-packages .pack-item {
        width: 50%;
    }
}

@media only screen and (max-width: 768px) {
    .pack-item {
        width: 100%;
    }
    .pack-item-business {
        width: 100%;
    }
    #tiptop-paketi-note {
        padding-top: 70px;
    }
    .insurance-img {
        text-align: center;
        margin-top: 40px;
    }
    .insurance-img img {
        max-width: 150px;
    }
}
@media only screen and (max-width: 767px) {
    .blog p,
    p {
        font-size: 16px;
        line-height: 22px;
    }
    .blog h3 {
        font-size: 20px;
        line-height: 26px;
    }
    .blog .heading {
        font-size: 30px;
        line-height: 36px;
    }
    #cookielaw .btn-default-orange {
        float: right;
    }
    #suradnici_dojmovi .row.row-eq-height{
            flex-flow: column;
    }
    #suradnici_dojmovi .col-md-4.white{
            padding: 20px;
            width: calc(100% - 60px);
            margin: 30px;
    }
    .working-hours {
            text-align: left;
            padding-left: 0;
            margin-bottom: 10px;
    }
    .contractors_employment .bottom-content {
            padding: 0;
            background: none;
            margin-top: 0;
    }
    .contractors_employment .bottom-content .text {
            width: auto;
    }
    #index-banner .home-cta {
            width: 85%;
            bottom: 100px;
            left: initial;
    }
    #index-banner .home-cta-2 {
            margin-top: 0;
    }
    #index-banner .home-cta-2 h2.heading {
            font-size: 18px;
    }
    #index-banner .home-cta-2 h3.heading {
            font-size: 16px;
            margin-top: 10px;
    }
    #index-banner .home-cta h2 {
            font-size: 24px;
    }
    .products .product {
            margin: 15px;
    }
    .side-nav {
        width: 300px;
        overflow: visible;
    }
    .top.navigation {
        height: 80px;
    }
    nav .brand-logo {
        width: 100px;
        left: 50%;
    }
    nav.sticky .brand-logo {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .homepage-intro-section .btn-default,
    .intro-section .btn-default,
    .btn-default {
        font-size: 18px;
        line-height: 24px;
        padding: 10px;
        font-weight: 500;
    }
    .homepage-intro-section .btn-default,
    .intro-section .btn-default {
        margin: 0 auto;
        float: none;
        display: block;
        text-align: center;
        max-width: 200px;
    }
    #homepage-banner,
    #new-index-banner,
    #tta-index-banner,
    #covid-index-banner,
    #service-index-banner {
        height: auto;
        display: flex;
        flex-direction: column;
        background: none;
    }
    #homepage-banner .mobile-only,
    #new-index-banner .mobile-only,
    #covid-index-banner .mobile-only,
    #service-index-banner .mobile-only {
        display: block;
    }
    .homepage-intro-section .heading,
    .intro-section .heading {
        font-size: 26px;
        line-height: 30px;
        margin-top: 20px;
        text-align: center;
    }
    .homepage-intro-section .heading-description,
    .intro-section .heading-description {
        font-size: 18px;
        line-height: 24px;
        text-align: left;
    }
    .intro-section p {
        font-size: 16px;
        line-height: 22px;
        text-align: center;
    }
    .homepage-intro-section,
    .intro-section {
        width: 100%;
        padding: 20px;
        border-bottom: 2px solid #ececec;
        box-shadow: -3px -2px 10px rgba(0,0,0,0.2);
    }
    .homepage-label-orange,
    .intro-label-orange {
        width: 140px;
        margin-top: -26px;
    }
    .homepage-label-orange p,
    .intro-label-orange p {
        width: 127px;
        padding: 22px 10px 10px 12px;
        font-size: 14px;
        line-height: 20px;
        text-align: left;
    }
    #nav-mobile.side-nav li > a {
        height: auto !important;
    }
    .about-us-section {
        padding: 20px 0 50px 0;
    }
    .about-us-section h3 {
        display: block;
        font-size: 40px;
        line-height: 46px;
        text-align: left;
    }
    .about-us-section .col-one p,
    .generalka-section .col-one p {
        display: block;
        font-size: 16px;
        line-height: 24px;
        text-align: left;
    }
    .about-us-section .col-two,
    .generalka-section .col-two,
    .d-flex.half-orange-content .col-two {
        border-left: 3px solid #f08d1b;
        padding: 10px 0 10px 20px;
    }
    .about-us-section .col-two p,
    .generalka-section .col-two p {
        font-size: 18px;
        line-height: 24px;
        text-align: left;
    }
    .generalka-section .col-two h4 {
        font-size: 24px;
        line-height: 30px;
    }
    .btn-default-orange {
        font-size: 18px;
        line-height: 24px;
        padding: 10px 20px;
    }
    .testimonials-section {
        margin-top: 0;
        margin-bottom: 50px;
    }
    .testimonials-carousel .owl-nav {
        display: none;
    }
    .testimonials-carousel {
        padding: 0 20px;
    }
    .testimonials-section h3 {
        padding-left: 0;
    }
    .owl-carousel .owl-item p {
        font-size: 16px;
        line-height: 22px;
    }
    .text-wrapper-tt-pak h3 {
        font-size: 24px;
        line-height: 30px;
    }
    .text-wrapper-tt-pak p {
        font-size: 16px;
    }
    #tiptop-paketi .new-packages {
        margin-top: 20px;
    }
    #tiptop-paketi .new-packages .product {
        padding: 20px 20px 88px 20px;
    }
    #korisnici-tab .new-packages .product,
    #korisnici-tab .new-packages .pack-item-business .product,
    #privatni-korisnik .new-packages .product,
    #privatni-korisnik .new-packages .pack-item-business .product,
    #poslovni-korisnik .new-packages .product,
    #poslovni-korisnik .new-packages .pack-item-business .product {
        padding: 20px;
    }
    #tiptop-paketi .new-packages .product h3 {
        font-size: 30px;
        line-height: 36px;
        margin-top: 15px;
    }
    #tiptop-paketi .new-packages .product ul,
    #korisnici-tab .new-packages .product ul,
    #privatni-korisnik .new-packages .product ul,
    #poslovni-korisnik .new-packages .product ul {
        max-width: 80%;
        margin: 30px auto;
    }
    #korisnici-tab .new-packages,
    #privatni-korisnik .new-packages,
    #poslovni-korisnik .new-packages {
        margin-bottom: 0;
    }
    #tiptop-paketi .new-packages .product ul li,
    #korisnici-tab .new-packages .product ul li,
    #privatni-korisnik .new-packages .product ul li,
    #poslovni-korisnik .new-packages .product ul li {
        font-size: 16px;
        line-height: 22px;
    }
    #korisnici-tab .new-packages .product p,
    #privatni-korisnik .new-packages .product p,
    #poslovni-korisnik .new-packages .product p {
        max-width: 85%;
    }
    #tiptop-paketi .new-packages {
        display: flex;
        flex-direction: column;
        justify-content: unset;
        flex-wrap: unset;
        margin-top: 50px;
    }
    .packages-note {
        flex-direction: column;
    }
    .packages-note span {
        font-size: 85px;
        line-height: 91px;
        display: block;
        float: none;
        text-align: center;
        padding-right: 0;
    }
    .packages-note h3 > span {
        display: inline;
        font-size: 24px;
        line-height: 30px;
    }
    .packages-note h3 {
        font-size: 24px;
        line-height: 30px;
        text-align: center;
    }
    .packages-note p {
        font-size: 16px;
        line-height: 22px;
        text-align: center;
    }
    #tiptop-kooperanti {
        padding: 80px 0 40px 0;
    }
    .koop-osoba {
        margin-bottom: 40px;
    }
    .koop-osoba .text h2 {
        font-size: 44px;
        line-height: 60px;
    }
    .koop-osoba .text h3 {
        margin-bottom: 22px;
    }
    .koop-osoba .text p {
        font-size: 18px;
        line-height: 24px;
    }
    .koop-osoba .img {
        width: 230px;
        height: 230px;
    }
    .generalka-section {
        padding: 0 0 80px 0;
    }
    .generalka-section .col-one {
        padding-right: 0;
    }
    .generalka-section h3 {
        font-size: 40px;
        line-height: 46px;
        text-align: left;
    }
    .footer-links li {
        margin-bottom: 5px;
    }
    .footer-links a {
        font-size: 16px;
        line-height: 22px;
    }
    footer.page-footer h4 {
        margin-bottom: 10px;
        margin-top: 30px;
    }
    footer.page-footer .footer-copyright {
        padding-bottom: 60px;
    }
    .home-section-1 {
        margin-top: 0;
        margin-bottom: 0;
    }
    #korisnici-tab .nav-tabs {
        border: 3px solid #f08d1b;
        width: 100%;
    }
    #korisnici-tab .nav-tabs li a,
    #korisnici-tab .nav-tabs li.active a {
        font-size: 16px;
        line-height: 22px;
        padding: 10px 8px;
    }
    #korisnici-tab .d-flex ul li,
    .home-section-2.covid-page ul li,
    .d-flex.half-orange-content .col-two ul li{
        font-size: 16px;
        line-height: 20px;
    }
    #korisnici-tab .d-flex {
        display: flex;
        flex-direction: column;
    }
    #korisnici-tab .d-flex ul {
        width: 100%;
    }
    .home-section-2.price-page h3,
    .text-wrapper-tt-pak h3,
    .home-section-2.tta-page h2,
    .home-section-3.tta-page h2,
    .home-section-6.service-page h2,
    .contact .heading,
    .send_enquiry .heading,
    .faq .heading,
    .terms_of_service .heading,
    .secure_payment .heading,
    .cleaning_services .heading,
    .about .heading {
        font-size: 40px;
        line-height: 46px;
    }
    .d-flex.half-orange-content h2,
    .d-flex.half-orange-content h1 {
        font-size: 30px;
        line-height: 36px;
    }
    .home-section-2.price-page p {
        font-size: 16px;
        line-height: 22px;
    }
    .d-flex.half-orange-content h2,
    .d-flex.half-orange-content h1 {
        text-align: left;
    }
    .home-section-3.price-page .d-flex.half-orange-content h2,
    .home-section-3.cleaning-services-page .d-flex.half-orange-content h2,
    .home-section-4.price-page .d-flex.half-orange-content h2,
    .home-section-1.covid-page .d-flex.half-orange-content h1,
    .home-section-4.cleaning-services-page .d-flex.half-orange-content h2,
    .home-section-1.tta-page .d-flex.half-orange-content h2,
    .home-section-1.tta-page .d-flex.half-orange-content .col-one p,
    .home-section-5.tta-page .d-flex.half-orange-content .col-one h2,
    .home-section-5.tta-page .d-flex.half-orange-content .col-one p,
    .home-section-3.service-page .d-flex.half-orange-content .col-one h2,
    .home-section-3.service-page .d-flex.half-orange-content .col-one p,
    .home-section-4.service-page .d-flex.half-orange-content .col-one h2,
    .home-section-4.service-page .d-flex.half-orange-content .col-one p,
    .home-section-5.service-page .d-flex.half-orange-content .col-one h2,
    .home-section-5.service-page .d-flex.half-orange-content .col-one p,
    .home-section-7.service-page .d-flex.half-orange-content .col-one h2,
    .home-section-7.service-page .d-flex.half-orange-content .col-one p,
    .home-section-7.service-page .d-flex.half-orange-content .col-one h2,
    .home-section-7.service-page .d-flex.half-orange-content .col-one p {
        max-width: 100%;
        margin: 0 0 20px 0;
        width: 100%;
    }
    .home-section-3.price-page,
    .home-section-3.cleaning-services-page {
        margin-top: 0;
    }
    .home-section-4.price-page {
        padding: 40px 0;
    }
    .home-section-1.tta-page .d-flex.half-orange-content .col-one p,
    .home-section-5.tta-page .d-flex.half-orange-content .col-one p,
    .home-section-3.service-page .d-flex.half-orange-content .col-one p,
    .home-section-4.service-page .d-flex.half-orange-content .col-one p,
    .home-section-5.service-page .d-flex.half-orange-content .col-one p,
    .home-section-7.service-page .d-flex.half-orange-content .col-one p,
    .home-section-7.service-page .d-flex.half-orange-content .col-one p {
        padding-left: 0;
        text-align: left;
        font-size: 16px;
        line-height: 22px;
    }
    .home-section-1.tta-page {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .home-section-2.tta-page {
        padding: 50px 0;
    }
    .home-section-2.tta-page h3 {
        font-size: 20px;
        line-height: 26px;
    }
    .home-section-3.tta-page {
        padding: 20px 0;
    }
    .home-section-3.tta-page h2 {
        margin-bottom: 55px;
    }
    .home-section-4.tta-page h4 {
        font-size: 50px;
        line-height: 56px;
    }
    .home-section-4.tta-page p {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 28px;
    }
    .home-section-5.tta-page {
        padding: 80px 0;
    }
    .home-section-1.service-page {
        padding: 30px 0;
    }
    .home-section-1.service-page .content {
        margin: 0 auto;
    }
    .home-section-2.service-page h2,
    .home-section-2.service-page h3 {
        text-transform: uppercase;
        font-size: 20px;
        line-height: 24px;
    }
    .contact .heading,
    .blog .heading,
    .secure_payment .heading,
    .terms_of_service .heading {
        margin-top: 26px;
    }
    .terms_of_service p,
    .secure_payment p,
    .collaboration-form .form-wrapper-none label,
    .collaboration-form .form-wrapper-none .form-group .check p {
        font-size: 16px;
        line-height: 22px;
    }
    .collaboration-form .form-wrapper-none {
        padding-top: 0;
    }
    .blog .responsive-img {
        height: 250px;
    }
    .contact-form .col-one,
    .collaboration-form .form-wrapper-none .col-one {
        width: 100%;
        float: left;
    }
    .contact-form label,
    .contact-form .form-control {
        font-size: 16px;
        line-height: 22px;
    }
    .contact-form .tos {
        font-size: 14px;
        line-height: 20px;
    }
    .faq .content,
    .about .content,
    .collaboration .content {
        padding: 50px 0
    }
    .faq h3 {
        word-break: break-all;
    }
    #back2Top {
        width: 32px;
        line-height: 31px;
        bottom: 60px;
    }
    #back2Top span {
        font-size: 30px;
    }
}
@media only screen and (max-width : 991px) and (orientation: landscape) {
	.contractors_employment {
		background: url('../img/glove.png') no-repeat right center;
		background-size: 200px;
		background-attachment: fixed;
	}
	.contractors_employment .bottom-content {
		padding: 0;
		margin-top: 0;
	}
	.contractors_employment .mobile {
		display: none;
	}
}

@media only screen and (max-width : 660px) {
	#suradnici_page h1{
		font-size: 38px;
	}
	#suradnici_page h2{
		font-size: 26px;
	}
	#suradnici_page h3{
		font-size: 20px;
	}
	#suradnici_page h3.normal{
		font-weight: normal;
	}
	#suradnici_page h4{
		font-size: 24px;
	}
}
/***** Kooperanti end *****/

@media only screen and (max-width : 767px) {
	/*#index-banner .section {
		top: 0;
	}*/
	.parallax-container .parallax img {
		min-height: auto;
	}
	.page .form-wrapper,
	.user .form-wrapper,
	.half-width, .three-quarters-width {
		width: 100%;
	}
	.customer-type-wrapper {
		padding: 0;
		text-align: center;
	}
	.customer-type-wrapper a {
		margin-bottom: 5px;
	}
	.customer-type-wrapper a:last-child {
		margin-bottom: 0;
	}
	a.customer-type {
		padding-left: 40px;
	}
	a.customer-type:before {
		width: 30px;
	}
	a.customer-type.type-personal:before,
	a.customer-type.type-business:before {
		height: 30px;
		background-size: contain;
	}
	#index-banner h1.heading {
		margin: -25px 0 25px 0;
		font-size: 24px;
	}
	#index-banner h4.heading {
		max-width: 100%;
		margin: 10px 0 20px 0;
		font-size: 20px;
		line-height: 24px;
		font-weight: 500;
	}
	.loyalty-content,
	.express-service {
		text-align: center;
	}
	.features-content .loyalty-content,
	.price-cta-wrapper .cta-content,
	.features-content section .heading-section p,
	.price-cta-wrapper .heading-section.cta-content h3 {
		color: #000;
	}
	.loyalty-img-wrapper {
		display: none;
	}
	.loyalty-content img,
	.express-service img {
		max-width: 150px;
		margin-bottom: 20px;
	}
	.express-service img {
		margin-bottom: 0;
	}
	.order .service-type-wrapper {
		margin-top: 20px;
	}
	.order .legend {
		text-align: initial;
		margin-bottom: 0;
	}
	
	.lp-12-2019 .subheading-content {
		position: static;
		top: initial;
		padding: 0;
	}
	.lp-12-2019 .subheading-content .bg-text {
		max-width: 100%;
		min-height: 100%;
		margin-top: -15px;
		padding: 0 20px 30px 20px;
		position: static;
		bottom: initial;
		left: initial;
		background-size: cover;
	}
	.lp-12-2019 .subheading-content .bg-text div {
		font-size: 16px;
		position: static;
		top: initial;
		padding-top: 75px;
	}
	.lp-12-2019 .heading-content {
		margin: 10px 0;
		text-align: center;
	}
	.lp-12-2019 .cta-wrapper-1 {
		margin: 0 auto;
	}
	.lp-12-2019 .bg-tt {
		background-size: contain;
	}
	.lp-12-2019 .bg-tt .text {
		width: 100%;
		margin: 20px auto;
		padding: 70px 40px 5px 40px;
	}
	.lp-12-2019 .cta-wrapper-2 {
		margin: 0 auto;
	}
}
@media only screen and (max-width : 767px) and (orientation: landscape) {
	.customer-type-wrapper {
		padding: 15px 0;
	}
}

@media all and ( max-width: 576px ){
	.modal-item-body h2 {
		font-size: 24px;
	}
	.modal-item-body h3 {
		font-size: 22px;
	}
	#index-banner .home-cta-2 .item-1 .item-1_circle-info {
		width: 78px;
		height: 78px;
		top: -100px;
		left: 0;
		font-size: 25px;
		padding-top: 9px;
	}
	#index-banner .home-cta-2 .item-1 .item-1_circle-info .happy-text-home {
		line-height: 1.2em;
		font-size: 11px;
	}
	#index-banner .home-cta-2 .item-1 .item-1_circle-info .happy-text-home span {
		display: block;
		font-weight: 600;
		font-size: 20px;
		margin: 5px 0;
	}
	#index-banner .home-cta-2 .item-1 {
		position: relative;
		top: 82px;
	}
	.heading-description {
		color: #000;
		font-size: 18px;
		line-height: 1.2em;
	}
	.parallax-container .parallax img {
		/*min-height: auto;
    transform: unset !important;
    width: 100%;
    left: 0;
    top: 0;
    height: 380px;
    object-fit: cover;*/
		top: 111px;
	}
}

@media only screen and (max-width : 992px) {
	.phone-cta {
		bottom: 0;
		right: 0;
		width: 40%;
                z-index: 9;
	}
	.phone-cta #cta-phone {
		border-radius: 0;
		width: 100%;
		height: 45px;
	}
        .phone-cta #cta-phone {
            font-size: 14px;
            line-height: 20px;
        }
        .phone-cta .dropup .dropdown-menu {
            left: -16px;
        }
	.modal-item-body h2 {
		margin-top: 14px;
	}
	#generalka {
		padding: 0;
	}
	#obavijest-novi-korisnici {
		width: 60%;
		bottom: 0;
		right: initial;
		left: 0;
		z-index: 9;
	}
	.obavijest-info {
		text-align: center;
		background: #000;
		border-radius: 0;
	}
	.obavijest-info p {
		height: 45px;
		padding: 0;
		padding-top: 4px;
		font-size: 14px;
                line-height: 20px;
	}
	.generalka_img,
	.generalka_img:hover {
		margin: 52px auto 0 auto;
	}
	body.mobile, body {
		overflow-x: hidden;
	}
	#vise-razloga {
		padding: 80px 0 10px 0;
	}
	#tiptop-paketi .container {
		position: static;
		transform: unset;
		padding: 50px 0;
		height: auto;
	}
	#tiptop-paketi .col-md-8.new-packages {
		margin-top: 120px;
	}
	.text-wrapper-tt-pak h3 {
		font-size: 40px;
                line-height: 46px;
	}
	#tiptop-paketi {
		background: url(../img/paketi-hp-bg.jpg);
		min-height: auto;
		position: relative;
		background-size: cover;
		background-repeat: no-repeat;
                margin-bottom: 0;
                background-position: left center;
	}
	#generalka .text-wrapper-tt-pak {
		padding-top: 0;
		text-align: center;
	}
	.generalka_btn {
		text-align: center;
		padding-top: 35px;
	}
	.testimonials-section {
		margin-top: 50px;
	}
	/*.parallax-container .section {
		position: absolute;
		top: 40%;
	}
	#index-banner .section {
		top: 10%;
	}*/
        #homepage-banner,
        #new-index-banner,
        #tta-index-banner,
        #covid-index-banner,
        #service-index-banner {
            height: auto;
            display: flex;
            flex-direction: column;
            background: none;
        }
        #homepage-banner .mobile-only,
        #new-index-banner .mobile-only,
        #covid-index-banner .mobile-only,
        #service-index-banner .mobile-only,
        #tta-index-banner .mobile-only {
            display: block;
        }
        .homepage-intro-section, .intro-section {
            width: 100%;
            padding: 20px;
            border-bottom: 2px solid #ececec;
            box-shadow: -3px -2px 10px rgba(0, 0, 0, 0.2);
        }
        .homepage-label-orange,
        .intro-label-orange {
            margin-top: -30px;
        }
}

@media only screen and (max-width : 992px) and (orientation: landscape)  {
	.obavijest-info p {
		padding-top: 13px;
	}
}

@media all and ( min-width: 992px ) and ( max-width: 1300px )  {
	.generalka_img,
	.generalka_img:hover {
		background-position-x: 7px;
	}
}

@media all and ( min-width: 993px ) and ( max-width: 1200px ) {
    nav .brand-logo img {
        width: 150px;
    }
    nav ul li {
        float: none;
        display: inline-block;
    }
    nav ul li a {
        font-size: 16px;
        line-height: 22px;
        padding: 0 6px;
    }
    .top.navigation .btn-secondary {
        font-size: 16px;
        line-height: 22px;
        padding: 5px;
    }
}

@media all and ( min-width: 385px ) and ( max-width: 405px ) {
    #korisnici-tab .nav-tabs li a,
    #korisnici-tab .nav-tabs li.active a {
        padding: 10px 12px;
    }
}

@media only screen and (max-width: 320px) {
    .homepage-intro-section .heading-description,
    .intro-section .heading-description {
        font-size: 14px;
        line-height: 20px;
    }
}