/*
Theme Name: ThresholdTheme
Theme URI: http://www.threshtech.com/
Author: Threshold Media
Author URI: http://www.threshtech.com/
Description: ThresholdTheme is a modern one page WordPress theme with parallax scrolling effect that can be used for personal blogs, business websites, single page websites and more. To showcase your work in a nice appealing style, ThresholdTheme has packed with a powerful feature-rich portfolio out there. Being built based on Twitter Bootstrap Framework, it’s fully responsive and your website will looks perfect on all devices including desktops, laptops, tablets and mobile phones. More over, ThresholdTheme has detailed documentation and been search engine optimized. You can easily customize every detail of the layout by using its professional control panel. You will find this free single page WordPress theme very flexible and useful for building your next amazing project.
Version: 100.2.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tht
Tags: one-column, two-columns, right-sidebar, responsive-layout, custom-background, custom-header, custom-menu, editor-style, featured-images, full-width-template, rtl-language-support, sticky-post, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

ThresholdTheme is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/ and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Typography
2.0 Elements
	2.1 Form
	2.2 Button
	2.3 Tag Cloud
	2.4 Social Icons
3.0 Layout
	3.1 Animations
4.0 Widgets
	4.1 Search Widget
5.0 Header
	5.1 Navbar
6.0 Homepage
	6.1 Section
	6.2 Slider
	6.3 Service
	6.4 Portfolio
	6.5 ABout
	6.6 Call to Action
	6.7 Client
	6.8 Blog
	6.9 Newsletter
	6.10 Contact
7.0 Content
	8.1 Posts and pages
	8.2 Asides
	8.3 Comments
8.0 Footer
9.0 Media
	9.1 Captions
	9.2 Galleries
10.0 Media Queries
--------------------------------------------------------------*/
.embed-container { 
		position: relative; 
		padding-bottom: 56.25%;
		overflow: hidden;
		max-width: 100%;
		height: auto;
	} 

	.embed-container iframe,
	.embed-container object,
	.embed-container embed { 
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

/*--------------------------------------------------------------
1.0 Typography
--------------------------------------------------------------*/
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2em;
    font-size: 17px;
	-ms-word-wrap: break-word;
	    word-wrap: break-word;

    background-color: transparent;
}

a {
    text-decoration: none !important;
}

/*--------------------------------------------------------------
2.0 Elements
--------------------------------------------------------------*/
/*--------------------------------------------------------------
2.1 Form
--------------------------------------------------------------*/
form {
	margin: 0 0 20px;
}

select,
textarea,
input  {
	display: inline-block;
	height: auto;
	padding: 4px 6px;
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 20px;
	color: #555555;
	vertical-align: middle;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

textarea,
input  {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
     -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
       -o-transition: border linear 0.2s, box-shadow linear 0.2s;
          transition: border linear 0.2s, box-shadow linear 0.2s;
}

textarea:focus,
input:focus {
  border-color: rgba(82, 168, 236, 0.8) !important;
  outline: 0;
  outline: thin dotted \9;
  /* IE6-9 */

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
	color: #b94a48;
	border-color: #ee5f5b !important;
}

input:focus:invalid:focus,
textarea:focus:invalid:focus,
select:focus:invalid:focus {
	border-color: #e9322d !important;
	-webkit-box-shadow: 0 0 6px #f8b9b7;
	 -moz-box-shadow: 0 0 6px #f8b9b7;
		  box-shadow: 0 0 6px #f8b9b7;
}

/*--------------------------------------------------------------
2.2 Button
--------------------------------------------------------------*/
.button,
.button:focus,
.button:visited {
    display: inline-block;
    border: 1px solid #181a1c;
    color :#181a1c;
    background-color: transparent;
    padding: 15px 30px;
    font-size: 17px;
    line-height: auto;
}

.button:hover,
.button:active{
    background-color: #181a1c;
    color: #fff;
}

.button-sp,
.button-sp:focus,
.button-sp:visited {
    border: none;
    background-color: #ffce1a;
    color: #181a1c;
}

.button-sp:hover,
.button-sp:active {
    background-color: #181a1c;
    color: #ffce1a;
}

.button-ps,
.button-ps:focus,
.button-ps:visited {
    border: none;
    background-color: #181a1c;
    color: #ffce1a;
}

.button-ps:hover,
.button-ps:active {
    background-color: #ffce1a;
    color: #181a1c;
}

/*--------------------------------------------------------------
2.3 Tag Cloud
--------------------------------------------------------------*/
.tagcloud a,
.tags-links .btn {
	margin: 0 5px 5px 0;
}

/*--------------------------------------------------------------
2.4 Social Icons
--------------------------------------------------------------*/
.social {
    list-style: none;
    margin: 0 auto;
    position: relative;
    left: 13.5%;
    transform: translate(-50%, -50%);
    width: 27%;
    padding: 0;
    margin-top: -3.2%;
}

.social li {
    display: inline-block;
    line-height: 42px;
    font-family: 'Pluton';
    font-size: 32px;
    padding: 10px;
    background-color: #0b7e7f;
    color: #fff;
    box-shadow: 0 0 2px 1px transparent;
}

.social li a {
    margin: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    color: #fff;
}

.social li a:hover {
    color: #181a1c;
}

/*--------------------------------------------------------------
3.0 Layout
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

.centered {
    margin-left:auto;
    margin-right:auto;
    float: none;
    text-align: center;
}

.center {
    float: none !important;
    margin: 0 auto !important;
    text-align: center;
}

.highlighted-box {
    background: #f4f8f9;
    padding: 20px 30px;
}

.highlighted-box h1 {
    margin: 0;
}

.large-text {
    line-height: 1.2em;
    font-size: 30px;
    color: #181a1c !important;
    padding: 20px;
    margin-bottom: 20px;
}

.highlighted-box h1,
.highlighted-box p {
    color: #181a1c !important;
}

.circle-border {
    display: inline-block;
    -webkit-border-radius: 500px;
     -khtml-border-radius: 500px;
	   -moz-border-radius: 500px;
	        border-radius: 500px;
    border: 3px solid #fff;
}

.left-align {
    text-align: left;
}

.right-align {
    text-align: left;
}

.error {
    color: #cf0000;
    display: none;
}

.invisible {
    display: none;
    visibility: visible;
}

.triangle {
    margin: 0 auto;
    text-align: center;
    width: 0;
    height: 0;
    border-top: 30px solid #181a1c;
    border-left: 585px outset transparent;
    border-right: 585px outset transparent;
    position: relative;
}

/*--------------------------------------------------------------
3.1 Animations
--------------------------------------------------------------*/
.zoom-in {
    -webkit-transform: scale(1, 1);
       -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
		 -o-transform: scale(1, 1);
    -webkit-transition: all 250ms ease;
       -moz-transition: all 250ms ease;
        -ms-transition: all 250ms ease;
         -o-transition: all 250ms ease;
		    transition: all 250ms ease;
}

.zoom-in:hover {
    -webkit-transform: scale(1.1, 1.1);
       -moz-transform: scale(1.1, 1.1);
        -ms-transform: scale(1.1, 1.1);
         -o-transform: scale(1.1, 1.1);
         z-index: 1001;
}

.zoom-in-2 {
    -webkit-transform: scale(1, 1);
       -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
         -o-transform: scale(1, 1);
    -webkit-transition: all 250ms ease;
       -moz-transition: all 250ms ease;
        -ms-transition: all 250ms ease;
         -o-transition: all 250ms ease;
            transition: all 250ms ease;
}

.zoom-in-2:hover {
    -webkit-transform: scale(1.1, 1.1);
       -moz-transform: scale(1.1, 1.1);
        -ms-transform: scale(1.1, 1.1);
         -o-transform: scale(1.1, 1.1);
         z-index: 1;
}

/*--------------------------------------------------------------
4.0 Widgets
--------------------------------------------------------------*/
.widget {
	clear: both;
	margin: 0 0 1.5em;
}

.widget ul li {
	list-style: none;
}

.widget ul,
.widget ol {
	padding-left: 10px;
	margin: 0 0 10px 5px;
}

.widget ul li:before {
	font-family: 'Pluton';
	content: '\e820';
	padding-right: 10px;
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
4.1 Search Widget
--------------------------------------------------------------*/
.widget_search form {
	margin-top: 20px;
}

/*--------------------------------------------------------------
5.0 Header
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Navbar
--------------------------------------------------------------*/
.navbar, .navbar-fixed-top{ z-index: 8001; }

.navbar {
    background: #fff;
    margin-bottom: 0;
    /*min-height: 150px;*/
	border-radius: 0;
}

.navbar-fixed-top {
    min-height: 60px;
    height: 80px;
    padding-top: 0;

}

.navbar-brand {
	padding: 10px 20px 10px;
}

.navbar .brand img {
    width: 120px;
    height: 40px;
}

.navbar .nav>li>a {
    text-transform: uppercase;
    line-height: auto;
    vertical-align: middle;
    margin: 10px 3px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    /*border: 1px solid #181a1c;*/
    box-shadow: none;
    font-size: 15px;
    text-shadow: none;
    color: #0b7e7f;
    transition: border-color 1s ease;
}

.navbar .nav>li:hover>a,
.navbar .nav>.active>a,
.navbar .nav>.active>a:hover,
.navbar .nav>.active>a:focus {
    border: none;
    color: #0b7e7f;
/*    background-color: #fff;*/
    transition: border-color 1s ease;
    font-weight: 600;
}

.navbar-nav,
.nav>li>a:focus,
.nav>li>a:hover {
	background-color: transparent;
}

.navbar .nav>li>a {
	padding: 8px 15px;
}

.nav-pills {
    margin-bottom: 30px;
}

.nav-pills>li>a {
    background: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin: 2px 5px 2px 0;
    padding: 8px 25px;
	line-height: 14px;
    border: 1px solid #181a1c;
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:focus,
.nav-pills>li.active>a:hover {
	background: #181a1c;
	color: #fff;
}

.navbar .btn-navbar,
.navbar .btn-navbar:hover {
    border-radius:0;
    background: #0b7e7f;
    color: #fff;
}

/*--------------------------------------------------------------
6.0 Homepage
--------------------------------------------------------------*/
/*--------------------------------------------------------------
6.1 Sections
--------------------------------------------------------------*/
.section {
    padding-bottom: 50px;
	color: #fff;
}


.section h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

.section h1 {
    margin: 10px;
}

.section a {
	color: #fff;
}

.section a:hover {
    color: #0b7e7f;
    text-decoration: none;
}

.section p {
	padding: 10px;
    font-weight: 100;
    color: #0b7e7f;
}

.section .container {
/*    padding-top: 50px;*/
}

.section .title {
    text-align: center;
    padding: 10px;
    margin-bottom: 30px;
}

.section .title h1 {
    font-weight: normal;
    margin-bottom: 20px;
    padding: 0;
}

.section .title>p {
    font-size: 20px;
    color: #fff;
    font-weight: lighter;
}

.section .thumbnail {
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    position: relative;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    background: #191a1c;
}

.section .thumbnail .more {
    display: block;
    z-index: 4;
    position: absolute;
    top: -100px;
    left: 50%;
    margin: 0 auto;
    margin-left: -41px;
    width: 80px;
    height: 80px;
    font-size: 40px;
    color: #fff;
    text-decoration: none;
    line-height: 70px;
    text-align: center;
}

.section .thumbnail:hover .more {
    top: 40%;
    margin-top: -40px;
    -webkit-transition: all 0.3s ease-out;
       -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3 s ease-out;
        -ms-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
}

.section .thumbnail h3, 
.section .thumbnail p {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 4;
}

.section .thumbnail h3 {
    color: #ffce1a;
    margin-top: 10px;
    font-size: 20px;
	line-height: 40px;
}

.section .thumbnail>p {
    padding-bottom: 20px;
}

.section .thumbnail .mask {
    opacity: 0.85;
    filter: alpha(opacity=85);
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #181a1c;
    position: absolute;
    -webkit-transition: all 0.2s ease-out;
       -moz-transition: all 0.2s ease-out;
        -o-transition: all 0.2 s ease-out;
        -ms-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out;
}

.section .thumbnail:hover .mask {
    top: 0;
}

.primary-section {
    background: #fff;
}

.primary-section .triangle {
    border-top: 40px solid #ffce1a;
}

.primary-section .title {
    border-bottom: 1px solid #fff;
}

.primary-section,
.primary-section h3,
.primary-section .title p {
    color: #0b7e7f;
}

.primary-section h1 {
    color: #fff;
}

.secondary-section {
    background: #fece1a;
}

.secondary-section .title {
    border-bottom: 1px solid #181A1C;
}

.secondary-section h1,
.secondary-section .title p {
    color: #181A1C;
}

.third-section {
  /*  padding-bottom: 70px;*/
    background: #fff;
}

.third-section .container {
    padding-top: 20px;
    position: relative;
}

.third-section .title {
    color: #fece1a;
}

.sub-section {
    margin-top: 30px;
}

.sub-section .title {
    padding: 0;
}

/*--------------------------------------------------------------
6.2 Slider
--------------------------------------------------------------*/
.da-slide  a {
	text-decoration: none;
}

/*--------------------------------------------------------------
6.3 Services
--------------------------------------------------------------*/
.service{
    margin-top: 20px;
}

.service,
.service h2 {
    padding-top: 15px;
}

.service p {
    padding: 0px;
    height: 60px;
    margin: 11% 0%;
}

.service img {
    width: 300px;
    height: 300px;
}


/*--------------------------------------------------------------
6.4 Portfolio
--------------------------------------------------------------*/
.single-project {
    margin-bottom: 30px;
    background :#181a1c;
}

.single-project .container {
	padding-top: 0;
}

.single-project [class*="col"]:first-child {
	padding-left: 0;
}

.single-project img {
    max-width: 100%;
}

.project-description {
    padding-right: 40px;
}

.project-description p {
    padding-left: 0;
}

.project-title {
    margin-top: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #fece1a;
}

.project-title h3 {
    float: left;
    margin-top: 5px;
    padding: 0;
    width: 80%;
}

.project-title .close {
    color: #fece1a;
    margin-top: 10px;
}

.project-info span,
.project-title h3 {
    color:#fece1a;
}

.project-info {
    font-weight: 100;
    padding: 10px 0;
}

.project-info a {
	color: #fff;
}

.project-info span {
    width: 100px;
    display: inline-block;
}

.project-info div {
    margin-bottom: 5px;
}

.close {
    float: right;
    width: 40px;
    height: 40px;
    text-align: center;
}

#portfolio-grid {
	padding-left: 0;
}

#portfolio-grid .mix {
    opacity: 0;
    display: none;
}

/*--------------------------------------------------------------
6.5 About
--------------------------------------------------------------*/
.team .thumbnail {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 10px;
    border: 1px solid #fff;
}

.team .thumbnail:hover .social {
    z-index: 5;
}

.team .thumbnail:hover .social a {
    color:#fff;
}

.team .thumbnail .mask {
    background: #fece1a;
}

.team .thumbnail .mask h2 {
    margin-top: 20%;
}

.team .thumbnail .mask,
.team .thumbnail .mask h3,
.team .thumbnail .mask p,
.team .thumbnail:hover h3,
.team .thumbnail:hover .social a:hover {
    color:#181a17;
}

.team  .social,
.skills {
	padding-left: 0;
}

.skills {
    list-style-type: none;
    position: relative;
    margin:0px;
}

.skill-title {
	margin-top: 30px;
}

.skills li {
    margin-bottom: 30px;
    background: #fff;
    height: 40px;
    padding: 1px;
}

.skills li h3 {
    position: relative;
    font-size: 15px;
	line-height: 40px;
    padding:0;
    margin:0;
    left: 10px;
    z-index: 1;
    color: #181a1c;
}

.skills li .bar {
    height: 38px;
    position: absolute;
    background-color: #fece1a;
}

/*--------------------------------------------------------------
6.6 Call to Action
--------------------------------------------------------------*/
#call-to-action a:hover {
	color: #fff;
}

/*--------------------------------------------------------------
6.7 Client
--------------------------------------------------------------*/
.client-slider img {
    border: 1px solid white;
}

.client-slider img:hover {
    background-color: #fece1a;
}

.client-nav {
    list-style: none;
    margin: 0 auto;
    width: 95%;
    position: absolute;
    top: 50%;
    padding: 0;
}

.client-nav li {
    float: left;
    display: block;
    margin-left: 10px;
}

.client-nav li a {
    display: inherit;
    padding: 6px 3px 5px 5px;
   /* background: #fece1a;
    border-radius: 3px;*/
    color: #0b7e7f;
}

.client-nav li a:hover {
    background: transparent;
}

.testimonial p {
    color: #181a1c;
    background: #fece1a;
    padding: 15px;
    margin: 0;
}

.testimonial .arrow {
    margin-left: 10px;
    width: 0;
    border-top: 10px solid #fece1a;
    border-left: 20px outset transparent;
    border-right: 20px outset transparent;
}

.testimonial .whopic {
    display: inline-block;
}

.testimonial .whopic img {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    float: left;
}

.testimonial .whopic strong {
    float: left;
    margin-top: 10px;
    padding-left: 10px;
}

.testimonial .whopic small {
    display: block;
    font-size: 12px;
    
}

.bx-wrapper ul {
	margin-left: 0;
}

/*--------------------------------------------------------------
6.8 Blog
--------------------------------------------------------------*/
#blog a:hover {
	color: #fff;
}

.blog-list {
	margin-bottom: 30px;
}

.blog-list ul {
	margin-left: 0;
}

.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 47px;
    width: 2px;
    margin-left: -10px;
    background-color: #f1f1f1;
}

.timeline a:hover {
	color: #fff
}

.timeline>li {
    position: relative;
    margin-bottom: 50px;
    min-height: 50px;
}

.timeline>li:before,
.timeline>li:after {
    content: " ";
    display: table;
}

.timeline>li:after {
    clear: both;
}

.timeline>li .timeline-panel {
    float: right;
    position: relative;
    padding: 0 20px 0 100px;
    text-align: left;
}

.timeline>li .timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline>li .timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
}

.timeline>li .timeline-image {
    z-index: 100;
    position: absolute;
    left: 0;
    width: 80px;
    height: 80px;
    margin-left: 0;
    border: 7px solid #f1f1f1;
    border-radius: 100%;
    text-align: center;
    color: #fff;
}

.timeline>li .timeline-image h3 {
    margin-top: 12px;
    font-size: 10px;
    line-height: 14px;
}

.timeline>li.timeline-inverted>.timeline-panel {
    float: left;
    padding: 0 20px 0 100px;
    text-align: left;
}

.timeline>li.timeline-inverted>.timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline>li.timeline-inverted>.timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
}

.timeline>li:last-child {
    margin-bottom: 0;
}

.timeline .timeline-heading h3 {
    margin-top: 0;
    color: inherit;
}

.timeline .timeline-heading h3.subheading {
    text-transform: none;
	line-height: 30px;
	margin-top: 5px;
}

.timeline .timeline-heading span {
    color: #181a1c;
}

.timeline .timeline-body>p,
.timeline .timeline-body>ul {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
6.9 Newsletter
--------------------------------------------------------------*/
.newsletter, .newsletter h2 {
    color: #d7ddde;
}

.newsletter .title h2 {
    text-align: left;
    padding: 0;
    margin: 0;
}

.newsletter form {
    text-align: left;
	margin-top: 10px;
}

.newsletter input {
    padding: 14px;
    height: auto;
}

.newsletter .button-sp:hover, .newsletter .button-sp:active {
    background-color: #fff;
    color: #181a1c;
}
.grecaptcha-badge {
    visibility: hidden;
}

/*--------------------------------------------------------------
6.10 Contact
--------------------------------------------------------------*/
.contact {
    background: #fece1a;
}

.contact h1,
.contact h2,
.contact h3,
.contact h4,
.contact h5,
.contact h6,
.contact .social>li>a ,
.contact .section .title>p {
    color: #181a1c;
}

.contact textarea,
.contact input[type="text"],
.contact input[type="email"] {
    padding: 10px;
    line-height: 20px;
    height: auto;
	margin-bottom: 20px;
	border: 1px solid #cccccc;
}

.contact textarea {
    height: 120px;
}

.contacts,
.contact .social {
    color: #fff;
    list-style: none;
}

.contact i {
	margin-right: 5px;
}

.contacts>li {
    margin-top: 15px;
}

.contacts>li>a {
    color: #fff;
}

.contact-info {
    margin-top: 10px;
    margin-bottom: 10px;
}

.contact-info p{
     font-weight: normal;
	 line-height: 25px;
}

.contact-info .icon {
    margin: 10px auto;
    font-size: 30px;
}

.map-wrapper {
    position: relative;
    height: 500px;
}

.map-canvas {
    position: absolute;
    margin-bottom: 20px;
    width: 100%;
    height: 500px;
    color: #29383f;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}

.contact .social {
    display: inline-block;
    padding-left: 0;
}

.contact .social li {
    line-height: 32px;
    padding: 10px 5px;
    font-family: 'Pluton';
    font-size: 50px;
    transition: margin 0.4s;
    -webkit-transition: margin 0.4s;
}

.contact .social li a {
    color: #fff;
}

.contact .social li a:hover {
    color: #181a1c;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    z-index: 110;
    position: relative;
    margin-top: -25px;
    padding: 20px;
	text-align: center;
}

.contact-form h3 {
    color: #838589;
    padding-bottom: 20px;
}

.message-btn {
    border: 1px solid #747C89;
    color: #747c89;
    background-color: transparent;
    padding: 15px 30px;
    font-size: 17px;
}

.message-btn:hover {
    background-color:#fece1a;
}

.contact-info {
    text-align: center;
    font-size: 22px;
}

.info-address {
    border: 1px solid white;
    width: 60%;
    margin: 0 auto;
    padding: 15px;
    color: #181a1c !important;
}

.black {
    color: #181a1c;
}

/*--------------------------------------------------------------
7.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
7.1 Posts and Pages
--------------------------------------------------------------*/
#primary,
#secondary {
	margin-top: 50px;
    text-align: justify;
}

.sticky {
	display: block;
}

.hentry {
	margin-top: 2%;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.pager li>a {
	margin-bottom: 10px;
}

.page-header {
	margin: 20px 20px 30px;
}

/*--------------------------------------------------------------
7.2 Post Meta
--------------------------------------------------------------*/
.entry-meta>span {
	margin-right: 5px;
	display: block;
}

.entry-meta span:last-child {
	margin-right: 0;
}

.entry-meta span a {
	text-decoration: none;
}

.entry-meta {
	margin: 15px 0;
}

.entry-footer {
	color: inherit;
}

.posted-on a, .byline a {
	text-decoration: none;
}

/*--------------------------------------------------------------
7.3 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
7.4 Comments
--------------------------------------------------------------*/
.comment-content a {
	-ms-word-wrap: break-word;
	    word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

.comments-title,
.comment-reply-title {
	padding-bottom: 9px;
	margin: 40px 0 20px 0;
}

ol.comment-list {
	list-style:none;
	padding-left: 0;
}

.comment-author .avatar {
	margin: 5px 15px 0 0;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
	     -o-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}

.comment-meta {
	margin-bottom: 5px;
}

.comment-details {
	overflow: hidden;
	zoom: 1;
	margin-bottom: 25px;
	padding-bottom: 25px;
}

.comment-details .reply {
	margin-top: 10px;
}

.comment-date a {
	margin-right: 10px;
}

#commentform #comment {
	width: 98% !important;
}

/*--------------------------------------------------------------
7.5 404
--------------------------------------------------------------*/
.error404 .input-append {
	margin: 10px 0;
}

/*--------------------------------------------------------------
8.0 Footer
--------------------------------------------------------------*/
.footer {
    background: transparent;
    text-align: center;
    position: relative;
    bottom: 0px;
    left: 0;
    z-index: 1;
    background-image: url(images/footer_img.png);
    width: 100%;
    height: 375px;
    margin-top: -1%;
    background-repeat: no-repeat;

}

.footer a {
    color: #fff;
}

.footer>p {
    color: #fff;
    margin: 0;
    padding: 10px;
    z-index: 50000;
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
article p{
    text-align: justify;
}
.scrollup {
    text-align: center;
    cursor: pointer;
    vertical-align: middle;
    width: 39px;
    height: 39px;
    border-radius: 5px;
    font-size: 20px;
    position: fixed;
    bottom: 30px;
    right: 20px;
	    border: 1px solid #fff3;
    display: none;
    background: #0b7e7f;
    z-index: 5000;
}

.scrollup>a {
    position: relative;
    top: 7px;
    color: #fff;
}
a.footer_link {
    margin: 0 15px;
    padding: 8px 0;
    opacity: 0.5;
}
a.footer_link:hover {
    opacity: 1;
}
a.footer_link:hover {
    border-bottom: 2px solid #fff;
}
span.copyright_text {
    opacity: 0.5;
}
/*--------------------------------------------------------------
9.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object,
img {
	max-width: 100%;
}

img {
	height: auto;
}

.post-thumbnail {
	display: block;
	position: relative;
	width: 100%;
	z-index: 0;
}

.post-thumbnail .featured  {
	display: block;
	margin: 0 auto;
	-webkit-transition: all 0.3s linear;
	   -moz-transition: all 0.3s linear;
         -o-transition: all 0.3s linear;
		    transition: all 0.3s linear;
}

.post-thumbnail .featured:hover {
	opacity: 0.8;
}

/*--------------------------------------------------------------
9.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
9.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}



/*--------------------------------------------------------------
New page template
--------------------------------------------------------------*/
h1.entry-title {
    color: #0b7e7f;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 40px;
}
.entry-content {
   /* margin-top: 5%;*/

}
.video-elements {
    position: absolute;
    bottom: 3%;
    left: 35%;
}
.video-elements small{
        color: #0b7e7f;
}
/*--------------------------------------------------------------
New template 
--------------------------------------------------------------*/
.facebook-like-share {
    width: min-content;
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 3%;
}
.translation {
    position: absolute;
    top: 20%;
    right: 13%;
    background: transparent;
    color: #0b7e7f;
}.translation a {
    color: #0b7e7f;
}
h1.entry-title-page {
    font-size: 19px !important;
}
div#header-image {
    background-size: 100% !important;
}
.well{
    background-color: #fff;
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors {
    display: none !important;
}
label{
    width: 100% !important;
}
input{
    width: 100%;
}
textarea{
    width: 100%;
}
input[type="submit"]{
        background-color: #0b7e7f;
}
input[type="submit"]:hover{
        background-color: #065e5e;
}
.nabavke{
    cursor: pointer;
}
.zpu_modal {
    padding: 5% 8%;
}
button.close{
    background-color: grey;
}
.MsoNormal {
    color: #000 !important;
}
img.logo {
    width: 290px;
 /*   border-radius: 20px;
    background-color: #fff;*/
    padding: 4%;
}
img.grb_img {
    margin-left: 25%;
    height: 100%;
    width: auto;
}
.grb_title{
    text-align: center;
}
.programi a {
    color: #0b7e7f !important;
}
body{
    color: #222;
}
td{
	padding: 5px;
}

tr{
	border: 2px solid #0b7e7f2e;
}
.bx-wrapper{
    box-shadow: none !important;
    border: none;
    background: transparent !important;
}
.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus{
    background-color: #0b7e7f !important;
}

.dropdown-menu>li>a {
    color: #0b7e7f;
    text-transform: uppercase;
}
.menu-footer-container {
    padding: 10px;
    text-align: center;
}

.menu > li {
   display: inline-block;
   padding: 0 15px;
}
div#home {
    position: relative;
}

ul#top-navigation {
    margin-top: 1%;
}

.slider_title {
    z-index: 115;
    color: #0b7e7f;
    font-size: 28px;
    position: relative;
    text-align: center;
    margin: 0 auto;
    margin-top: 1.5%;
    font-weight: bold;
	text-transform: uppercase;
}

.top_slider {
    position: absolute;
    top: -12%;
    left: 0;
    z-index: 100;
    background-image: url(images/top_slider.png);
    width: 100%;
    height: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: inherit;
}

.bottom_slider {
    position: absolute;
    bottom: -1%;
    left: 0;
    z-index: 100;
    background-image: url(images/bottom_slider.png);
    width: 100%;
    height: 90px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: inherit;
}
.grb{
    width: auto;
    height: 35%;
    position: absolute;
    bottom: 9%;
    z-index: 8000;
    right: 4%;
}
.video {
    background-color: #0b7e7f;
    padding: 11px;
    margin-top: 9%;
    min-height: 260px;
    padding: 20% 0%;
    margin-top: 9%;
}
.zpu{
    color: #fff !important;
}

.o_nama h3{
    background-color: #0b7e7f;
    padding: 5%;
    position: absolute;
    top: 10%;
    width: 60%;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    z-index: 6;
}

.aktuelnosti h3{
    background-color: #0b7e7f;
    padding: 5%;
    position: absolute;
    top: 10%;
    right: 20px;
    width: 60%;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
}
.page_tab {
    background-color: #0b7e7f;
 /*   height: 130px;*/
    padding:0px;
}
.img_tab{
    width: 100% !important;
    height: auto !important;
}
.triangle-left {
    width: 0;
    height: 0;
    border-top: 26px solid transparent;
    border-right: 30px solid #055a5b;
    border-bottom: 15px solid transparent;
    position: absolute;
    top: 28%;
}
.triangle-left-1{
    width: 0;
    height: 0;
    border-top: 26px solid transparent;
    border-right: 32px solid #055a5b;
    border-bottom: 15px solid transparent;
    position: absolute;
    left: 0.1%;
    bottom: 17%;
}
.triangle-right-1{
    width: 0;
    height: 0;
    border-top: 26px solid transparent;
    border-left: 30px solid #055a5b;
    border-bottom: 15px solid transparent;
    position: absolute;
    right: 0.2%;
    bottom: 17%;
}
.page_tab h3 {
    background-color: #0b7e7f;
    padding: 3%;
    position: absolute;
    bottom: 2%;
    right: 0;
    left: 0;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 26px;
    text-align: center;
    line-height: 1.5;
}

.triangle-right {
    width: 0;
    height: 0;
    border-top: 26px solid transparent;
    border-left: 30px solid #055a5b;
    border-bottom: 15px solid transparent;
    position: absolute;
    right: 5.2%;
    top: 28%;
}

.thumbnail{
    background-color: transparent;
    border: none;
    width: 360px;
    margin: 0 auto;
}

.title h3{
    color: #0b7e7f;
    text-align: center;
    text-transform: uppercase;
}

.carousel-control.right,
.carousel-control.left{
    background-image: none;
    color: #0b7e7f;
    font-size: 40px;

}

.carousel{
    background-color: #fff;
    padding: 3%;
}

.galerija_button{
    border: 2px solid #fff;
    color: #fff;
    text-transform: uppercase;
    padding: 25px 40px;
    font-size: 30px;
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.galerija_button:hover{
    border: 2px solid #fff;
    color: #0b7e7f;
    background-color: #fff;
}

.client-bg{
    min-height: 450px;
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.usluge{
    background-color: #eee;
}

.whopic{
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px 0px #00000026;
    padding: 5%;
}

.fix1{
    width: 70%;
    margin: 0 auto;
}


.active_element{
    z-index: 1000;
}

.active_element{
    transform: scale(1.2);
    transition-duration: 0s;
}

a.right.carousel-control.sl, a.left.carousel-control.sl {
    background: none;
    position: absolute;
    display: contents;
}

.arrows {
    bottom: 12.3%;
    position: absolute;
    margin: 0 -1.3%;
    width: 93.3%;
    text-align: center;
}

i.icon-angle-right {
    float: right;
}

i.icon-angle-left {
    float: left;
}

.arrows_position {
    width: 30%;
    margin: 0 auto;
}


.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 2% 0;
}

.komentari{
    color: #272727 !important;
}

.komentari_italic{
    color: #0b7e7f !important;
    font-style: italic;
    font-size: 14px;
}

.odmaralista {
    padding: 1% 0% 0% 0%;
}

h3.odmaralista_title {
    color: #0b7e7f;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 32px;
}

hr{
    color: #0b7e7f;
    background-color: #0b7e7f;
    height: 4px;
    border: none;
    width: 3%;
    padding: 0;
    margin: 0 auto;
    margin-bottom: 3%;
}

#bg{
    position: relative;
    background-attachment: fixed !important;
    min-height: 520px;
    background-size: cover !important;
    width: 100%;
    height: 100%;
}

.bg_overlay{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #0b7e7fa6;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1a2859', endColorstr='#b3ff0000', GradientType=1);
}

.bg_top{
    position: absolute;
    top: -4%;
    left: 0;
    z-index: 100;
    background-image: url("images/top.png");
    width: 100%;
    height: 100px;
    background-repeat: no-repeat;
    background-size: 100%;
}
.bg_bt{
    position: absolute;
    bottom: -7%;
    left: 0;
    z-index: 100;
    background-image: url("images/bt.png");
    width: 100%;
    height: 100px;
    background-repeat: no-repeat;
    background-size: 100%;
}
.play_button{
    width: 10%;
    margin-right: 3%;
}.modal-video .modal-body{
    padding: 0 !important;
}
.buttons-video{
    padding: 5% 1% 0 5%;
       color: #0a5354;
}
.promo-video:hover{
    cursor: pointer;
}

li#client-prev {
    float: left;
}

li#client-next {
    float: right;
}

.bx-prev,
.bx-next{
    font-size: 30px;
}

h3.social_media_title {
    background-color: #fff;
    box-shadow: 0 0 13px 3px #00000014;
    width: 20%;
    margin: 0 auto;
    margin-top: 1%;
    padding: 2.4%;
    font-size: 20px;
    font-weight: bold;
}

li.Instagram{
    float: right;
}

.copyright{
        color: #fff;
    margin: 0;
    padding: 10px;
    z-index: 50000;
    position: absolute;
    bottom: 9%;
    left: 50%;
    opacity: 0.5;
    transform: translate(-50%, -50%);

}
.footer>p:nth-child(2) {
    color: #fff;
    margin: 0;
    padding: 10px;
    z-index: 50000;
    position: absolute;
    bottom: -3%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0.5;
}



.client_s_title{
    color: #0b7e7f;
}

.tabs_fluid {
    background-color: #ebecec;
}

.cenovnik img {
    width: 100%;
}

.nabavke img{
    width: 100%;
    margin-top: 40%;
}

.rezervisi img{
    height: 60px;
    margin-top: 20%;
}

.kontakt img{
    height: 60px;
    margin-top: 5%;
}
.kont_img {
    height: 60px !important;
    width: auto !important;
    margin-top: 30%;
}
h3.left_h {
    margin-top: 20%;
}

.cenovnik h3,
.nabavke h3,
.rezervisi h3,
.kontakt h3{
    color: #0b7e7f;
}

.nabavke,
.cenovnik {
    background-color: #fff;
    padding: 2.5%;
}

.rezervisi,
.kontakt {
    height: 50%;
    background-color: #fff;
    padding: 4.9% 2.5%;
}

.rezervisi{
    margin-bottom: 4.2%;
}

.tabs h3{
    font-size: 24px;
    text-align: left;
    font-weight: lighter;
    line-height: 1.3;
}

.tab_10{
    margin-left: 5%;
    margin-top: 2%;
}

.nabavke h3{
  margin-top: 3%;
}
.rezervisi h3{
    margin-top: 10%;
}

.cenovnik,
.rezervisi,
.kontakt,
.nabavke{
    box-shadow: 0 0 17px 0px #00000026;
}

.kontakt, .rezervisi {
    min-height: 105px;
}
.cenovnik, .nabavke {
    min-height: 232px;
}
.tabs_fluid {
    padding-top: 2%;
}
.marg {
    margin-top: 8%;
}
.tabs_bg{
    position: relative;
    bottom: 2px;
    left: 0;
    z-index: 100;
    background-image: url(images/tabs_bg.png);
    width: 100%;
    height: 100px;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -2;
}

.social_media {
    margin-top: -65px;
    z-index: 5001;
}
.izjave{
    padding-bottom: 0;
    margin-bottom: -5%;
    background-color: transparent;
}

span.icon-instagram:hover,
span.icon-facebook-squared:hover {
    color: #fff;
    opacity: 0.5;
}
p.odmaralista_t {
    text-align: center;
    font-size: 18px;
    margin-top: 4%;
    text-transform: uppercase;
    color: #0b7e7f;
    font-weight: 600;
}

.odmaralista_t{
    font-size: 20px;
}

.odm{
	-webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
}
.odm:hover{
    transform: scale(1.1);
    transform-origin: 50% 50% 0;
    z-index: 8000;
    opacity: 1;
}
.odm_cont {
    margin-bottom: 1%;
}

p.tab_section_title {
    font-size: 19px;
    margin: 7% 0;
    line-height: 1.5;
}

.footer_nav {
    position: relative;
    left: -34%;
    bottom: -34rem;
    text-transform: uppercase;
    margin: 0 auto;
}
.footer_nav a {
    color: #fff;
    opacity: 0.5;
}

.footer_nav a:hover {
    opacity: 1;
}

.footer_nav>.navbar-nav>li>.dropdown-menu{

    margin-top: -100% !important;
}
ul#menu-footer {
    margin-top: 1%;
}
.nav .open>a, .nav .open>a:hover, .nav .open>a:focus {
    /* border-color: #464545; */
}
.navbar .nav>li>a{
        /* border: 1px solid #181a1c; */
}
.nav .open>a, .nav .open>a:hover, .nav .open>a:focus {
    background-color: transparent;
}

div#header-image {
    background-repeat: no-repeat !important;
    position: relative;
    background-attachment: fixed !important;
    width: 100%;
}
.header-img {
    height: 200px;
}
h3.odmaralista_t {
    font-size: 15px;
}
.bg_overlay_page{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #0b7e7fa6;
}
h3.odmaralista_t {
    font-size: 15px;
}
.modal-content {
    background-color: #ffffff !important;
}
.modal-body {
    font-size: 17px !important;
    text-align: justify;
}
.modal-header{
    border-bottom: none;
}
.modal-body {
    /* position: relative; */
    padding: 0 30px 20px 30px;
}
.modal-tab:hover {
    cursor: pointer;
}
.modal-title {
    margin: 0;
    line-height: 1.42857143;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 30px;
}
.modal.in{
    display: flex !important;
}
.modal-footer {
    padding: 0 20px 20px 20px;
    text-align: center;
    border-top: none;
}
h2.odmaraliste_title_r {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 auto;
}
.zoom-in-2{
    transition: transform .1s;
}
.zoom-in-2:hover{
    transform: scale(1.05);
}
/*--------------------------------------------------------------
New About Template
---------------------------------------------------------------*/

.a_tabs:hover {
    background-color: #0b7e7f;
}
.a_tabs:hover p {
    color: #fff !important;
}
.a_tabs p {
    color: #fff !important;
    margin: 2% 0;
}
.title_page{
    color: #0b7e7f;
    text-align: center;
    margin-right: 0 auto;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 40px;
}
.about, .istorijat {
    margin-bottom: 5%;
}

h1, h2, h3, h4, h5, h6{
    color: #0b7e7f;
}
h3{
    margin-bottom: 1%;
    font-weight: 600;
}
.about, .istorijat, .objekti{
    text-align: justify;
}

.a_tabs {
    text-align: center;
    margin: 5% 0;
    padding: 5%;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: bold;
    min-height: 165px;
    width: 48%;
}
.eg-wrap img {
    display: block;
    width: 100%;
    vertical-align: middle;
    background-size: cover;
}

h1.entry-title-page {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 11%;
    font-size: 30px;
}
.entry-title-page_{
    font-weight: 600;
    text-align: center;
    margin-top: 5%;
}
hr.left {
    background-color: #ffffff;
    height: 4px;
    border: none;
    width: 3%;
    padding: 0;
    margin: 0 auto;
    margin-bottom: 2%;
    float: left;
}
.eg-masonary-padding {
    height: 100%;
}
/*--------------------------------------------------------------
Najave dogadjaja
---------------------------------------------------------------*/
.najava-article-title{
    color: #0b7e7f;
    padding: 0.5% ;
    margin-top: 1%;
   /* font-weight: 600;*/
    -webkit-transition: padding 0.5s;
     cursor: default;
}
.najava-article-title:hover{
    background-color: #0b7e7f;
    color: #fff;
    padding-left: 2% !important;
    transition: all 0.5s ease-in-out;
    cursor: default;
}
.najava-article-title{
    margin: 0 !important;
}
.najava-article{
    margin-top: 1%;
}
/*--------------------------------------------------------------
New Aktuelnost Template
---------------------------------------------------------------*/
.nature2-fb{
	background: #3b5998;
    color: #fff;
    padding: 12px;
}
.post_najava:hover{
    background-color: #ffffff30;
}
.najave_naslov{
    color: #fff;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 4%;
    margin-top: 9%;
    display: block;
}
.najave_naslov:hover{
    color: #ffffff8a;
}
.najava_title{
    font-size: 16px;
    margin: 10px 0;
    color: #fff;
    cursor: default;
}
.post_tab_100>:nth-child(1) {
    width: 100%;
}
.najava{
    margin-top: 4%;
    background-color: #0b7e7f;
    padding-bottom: 1.5%;
}
.title_aktuelno {
    min-height: 120px;    
     line-height: 100px;
}
nav#nav-posts {
    margin-top: 10%;
}
.post_aktuelno_ {
    margin-bottom: 3%;
    min-height: 720px;
}
.post_{
    min-height: 140px !important;
}

.post_ img{
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

span.entry-date {
    font-size: 12px;
    color: #c3c3c3;
}
.prev a, .next a {
    background-color: #0b7e7f;
    padding: 1%;
    color: #fff;
}
a.details {
    background-color: #0b7e7f;
    color: #fff;
    text-transform: uppercase;
    padding: 10px;
    font-size: 12px;
}
p{
    margin: 0 0 25px;
}

.entry-date-single{
    font-size: 20px;
    color: #c3c3c3;
}
.row {
    margin-top: 1%;
}
.date {
    margin-top: 2%;
}
.entry-title-single{
    text-align: left;
}
.entry-title-single a{
    color: #0b7e7f;
}

.pager li>a, .pager li>span {
    display: inline-block;
    padding: 9px 17px;
    background-color: #0b7e7f !important ;
    border-radius: 0;
    max-width: 400px;
}.images_post{
    margin-bottom: 30px;
}
.pasus{
    text-align: justify;
}
.post_tab {
    margin-top: 4%;
    z-index: 2;
}
.prev a {
    float: left;
}
.next a {
	float: right;
}

h2.post_title {
    font-weight: 600;
    font-size: 20px;
    text-align: left;
    display: inline-block;
    vertical-align: middle;
}

/*--------------------------------------------------------------
Javne nabavke template
---------------------------------------------------------------*/
.jn{
    padding: 2%;
    border: 2px solid;
}
.jn_slides{
    z-index: 9000;
}
.jn_tabs{
    margin-top: 7%;
}
.jn_list_1, .jn_list{
    list-style: none;
/*    border: 2px solid #0b7e7f;*/
    padding: 2%;
    margin-top: 1%;
    color: #0b7e7f;
    font-weight: 600;
    -webkit-transition: padding 0.4s;
}
.title_link:hover, .jn_list_1:hover{
    background-color: #0b7e7f;
    color: #fff;
    padding-left: 10% !important;
    transition: all 0.4s ease-in-out;
}
.list-links{
    padding: 2%;
}
.title_link{
    padding: 2% 1%;
    -webkit-transition: padding 0.4s;
}
.list-nabavka{
    padding-top: 1%;
}
.zlatibor_1 {
    margin-bottom: 20px;
    width: 46.5%;
}
.zlatibor_2{
	width: 46.3%;
	margin-bottom: 20px;
}
.avala_3{
	width: 100%;
}
/*--------------------------------------------------------------
Contact page template
---------------------------------------------------------------*/
strong.contact_title {
    color: #0b7e7f;
}
.contact_mail{
    color: #0b7e7f;
}
.contact_mail:hover{
    color: #013d3e;
}
iframe {
    margin-bottom: -5%;
        margin-top: 3%;

}
.contakt_info {
    margin-top: 5%;
}
/*--------------------------------------------------------------
Odmaraliste post template
--------------------------------------------------------------*/
.modal-dialog {
    width: 600px;
    margin: 10% auto !important;
}
.odmaraliste_map_title{
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px;
}
.slides, .slide{
    margin: 0;
    padding: 0;
}
.odmaraliste_hr{
    float: left;
    width: 50%;
}
.odmaraliste_title_slide{
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 17px;
    text-align: left;
    position: absolute;
    left: 0;
    top: 25px;
}
.odmaraliste_slide{
    margin-bottom: 3%;
}
.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus {
    background-color: #0b7e7f !important ;
}
.mapa {
    margin-top: 15%;
}
/*--------------------------------------------------------------
Galerija template
--------------------------------------------------------------*/
.gallery_row{
    color: #ffffff;
    background-color: #ffffff5c;
    height: 4px;
    border: none;
    width: 100%;
    padding: 0;
    margin: 8% 0;
}
span.mesto {
    font-size: 18px;
}
.gallery_tabs{
    min-height: 450px;
    background-size: auto 100%;
    background-repeat: no-repeat;
     overflow: hidden;
}
h2.gallery_tab_title {
    color: #fff;
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    position: absolute;
    margin: 0;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.overlay{
    position: absolute;
    top: 0;
    width: 93%;
    bottom: 0;
    background: #0b7e7fa6;
}
.bg_overlay_page_gallery{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(11, 126, 127, 0.25098039215686274);
    width: 100%;
    height: 100%;
}
.bg_overlay_page_gallery:hover{
    opacity: 0.6;
}
.tabs_g{
    margin-bottom: -3%;
}
.previous, .next{
    z-index: 999999;
}

.mapa iframe{
    width: 100%;
}
.mfp-bg{
  /*  z-index: 11111 !important;*/
}
.mfp-wrap {
    z-index: 11111 !important;
}
.mfp-bg{
    z-index: 11111 !important;
}
.margin-top{
    margin-top: 1%;
}
.btn-success {
    color: #ffffff !important;
    background-color: #95cfc6 !important;
    border-color: #95cfc6 !important;
}
/*--------------------------------------------------------------
Carousel
---------------------------------------------------------------*/

.carousel-inner .active.left { left: -33%; }
.carousel-inner .next        { left: 33%; }


.carousel-inner > .item.next,
.carousel-inner > .item.active.right {
  left: 0;
  -webkit-transform: translate3d(33%, 0, 0);
          transform: translate3d(33%, 0, 0);
}

.carousel-inner > .item.prev,
.carousel-inner > .item.active.left {
  left: 0;
  -webkit-transform: translate3d(-33%, 0, 0);
          transform: translate3d(-33%, 0, 0);
}

.horizontal-slider {
    width: auto !important;
}
/*--------------------------------------------------------------
Navbar
---------------------------------------------------------------*/
.navbar-collapse.navbar-responsive-collapse {
    background-color: #fff;
   /* box-shadow: 0px 9px 20px 0px #80808024;*/
   margin: 4% 0;
}

/*--------------------------------------------------------------
10.0 Media Queries 
--------------------------------------------------------------*/
@media only screen and (max-width: 320px) {
    .translation {
    position: absolute;
    top: -20%;
    right: 24%;
    font-size: 13px;
    background: transparent !important;
    color: #0b7e7f;
}
    .logo{
    width: 100px !important ;
}
    .header-img {
    height: 125px;
}
    .triangle-right-1, .triangle-left-1{
    bottom: 18%;
}
 .triangle-left-1{
    left: 4.1%;
 }
 .triangle-right-1{
    right: 5.5%;
 }

.page_tab{
    width: 208px;
    margin-top: 7%;
    margin: 0 auto;
    min-height: 180px;
}
.page_tab h3 {
    position: absolute;
    bottom: -2%;
    right: 0;
    left: 4%;
    width: 90%;
    font-size: 13px;
    line-height: 1.3;
}
.navbar{
	height: 80px !important;
}
}

@media only screen and (min-width: 321px) and (max-width: 375px){
    .translation {
    position: absolute;
    top: -20%;
    right: 24%;
    font-size: 13px;
    background: transparent !important;
    color: #0b7e7f;
}
        .triangle-right-1, .triangle-left-1{
    bottom: 18%;
}
 .triangle-left-1{
    left: 4.1%;
 }
 .triangle-right-1{
    right: 5.5%;
 }

.page_tab{
    width: 208px;
    margin-top: 7%;
    margin: 0 auto;
    min-height: 180px;
}
.page_tab h3 {
    position: absolute;
    bottom: -2%;
    right: 0;
    left: 4%;
    width: 90%;
    font-size: 13px;
    line-height: 1.3;
}
.navbar{
    height: 80px !important;
}
.logo{
    width: 100px;
}
    .header-img {
    height: 150px;
}
    .eg-wrap img {
    display: block;
    height: 90px !important;
    width: auto;
    vertical-align: middle;
    background-size: cover;
}
    .eg-wrap .eg-overlay-wrapper {
    min-height: 0 !important;;
}
.triangle-right-1, .triangle-left-1{
    bottom: 9.5%;
}
 .triangle-left-1{
    left: 5.1%;
 }
 .triangle-right-1{
    right: 6.5%;
 }

.page_tab{
    width: 250px;
    margin-top: 7%;
    margin: 0 auto;
    min-height: 180px;
}
.page_tab h3 {
    position: absolute;
    bottom: -1.8%;
    right: 0;
    left: 4.5%;
    width: 89%;
    font-size: 15px;
    line-height: 1.5;
}
	img.logo {
    	width: 125px;
	}
    h4.grb_title {
    display: none;
}

.zlatibor_1 {
    margin-bottom: 20px;
    width: 100%;
}
.zlatibor_2{
	width: 100%;
}
.grb {
    bottom: -2%;
}
    .modal.in{
        margin-top: 20%;
    }
    .gallery_tabs{
    margin-bottom: 15%;
}
    
    .eg-each-item.eg-overlay-layout-17 {
        height: auto !important;
    }
    .post_tab {    
        padding: 0;
    }
    .post_aktuelno_ {
    margin-bottom: 11%;
    }
    .odm:nth-child(2) {
        transform: none;
    }
    p.odmaralista_t {
        font-size: 15px;
    }
    h1.entry-title-page{
        font-size: 25px;
        margin-top: 18%;
    }
    .odmaraliste_hr {
        margin-bottom: 7%;
    }
    .odmaraliste_title_slide {
        margin-top: 8%;
    }
    .a_tabs{
        min-height: 140px;
        background-size: cover !important;
        width: 100%;
        padding: 15%;
    }
    img.img {
        margin: 8% !important ;
    }
    .cenovnik, .nabavke {
        min-height: 80px;
    }
    .nabavke img, .cenovnik img, .rezervisi img {
        width: auto;
    }
    .row {
        margin-top: 1%;
        width: 100%;
        margin: 0 auto;
    }
    .footer>p{
        bottom: 3%;
    }
    a.footer_link {
    margin: 0 6px;
    }
    .footer_nav {
        position: relative;
        bottom: -37rem;
        text-transform: uppercase;
        margin: 0 auto;
    }
    .menu > li {
        display: inline-block;
        padding: 0 8px;
        font-size: 12px        
    }
    ul{
        padding: 0;
        margin-bottom: 22.5px;
    }
    .slider_title{
        font-size: 15px;
    }
    .top_slider {
       height: 57px;
    }
    .top_slider {
    	top: -38%;
	}
    .bottom_slider {
        position: absolute;
        bottom: -22%;
        left: -5px;
        z-index: 100;
        background-image: url(images/bottom_slider.png);
        width: 102%;
        height: 45px;
        background-repeat: no-repeat;
        background-size: cover;
        transition: inherit;
    }
    .section .container {
        padding-top: 0px;
    }
    .slotholder{
    	z-index: 16 !important;
    }
    .service img {
        width: 210px;
        height: 190px;
    }
    .o_nama h3,
    .aktuelnosti h3 {
        padding: 5%;
        font-size: 14px;
        width: 55%;
    }
    .triangle-left {
        width: 0;
        height: 0;
        border-top: 26px solid transparent;
        border-right: 30px solid #055a5b;
        border-bottom: 15px solid transparent;
        position: absolute;
        top: 25%;
    }   
    .triangle-right {
        width: 0;
        height: 0;
        border-top: 26px solid transparent;
        border-left: 30px solid #055a5b;
        border-bottom: 15px solid transparent;
        position: absolute;
        right: 7.2%;
        top: 25%;
    }
    h3.odmaralista_title{
        font-size: 25px;
    }
    hr{
        width: 10%;
    }
    .slider{
        width: 100%;
    }
    .thumbnail{
        width: 180px;
    }
    .odmaralista_t {
        font-size: 14px;
    }
    #bg{
        min-height: 370px;
    }
    .bg_bt{
        bottom: -23%;
    }
    .galerija_button{
        padding: 17px 40px;
        font-size: 18px;
    }
    .tabs h3{
        text-align: center;
        font-size: 14px;
        margin-top: 0;
    }
    .cenovnik img ,
    .nabavke img{
        height: 18px;
    }

    .nabavke h3 {
        margin-top: 0;
    }
    .cenovnik, .nabavke {
        width: 91%;
        margin: 0 auto;
    }
    .kont_img {
    height: 24px !important;
    width: auto !important;
}

    .rezervisi img{
        height: 25px;
        margin: 0;
    }
    .kontakt img{
        height: 30px;
        margin-top: 0%;
    }
    .tab_10{
        margin-left: 0;
    }
    .rez_kont {
        margin: 4% 0;
    }
    .section{
        padding-bottom: 35px;
    }
    h3.social_media_title {
        background-color: #fff;
        box-shadow: 0 0 13px 3px #00000014;
        width: 70%;
        margin: 0 auto;
        margin-top: -16%;
        padding: 9.4% 0;
        font-size: 16px;
        font-weight: bold;
    }
    .social li {
        display: inline-block;
        line-height: 20px;
        font-family: 'Pluton';
        font-size: 19px;
        padding: 10px;
        background-color: #0b7e7f;
        color: #fff;
        box-shadow: 0 0 2px 1px transparent;
    }
    .social {
        list-style: none;
        margin: 0 auto;
        position: relative;
        left: 45.5%;
        transform: translate(-50%, -50%);
        width: 91%;
        padding: 0;
        margin-top: -13.2%;
    }
    .komentari{
        font-size: 14px;
        text-align: justify;
    }
    .client-nav {
        list-style: none;
        margin: 0 auto;
        width: 90%;
        position: absolute;
        top: 55%;
        padding: 0;
        z-index: 5;
    }
    .bx-wrapper{
        width: 60%;
    }

    .footer>p{
        width: 100%;
        font-size: 10px;
    }   
    .bx-clone{
        width: 194px;
    }
    .section p{
        width: 185px;
    }
    footer#colophon {
        margin-top: 0%;
    }
      table {
        width: 100% !important;
        margin-bottom: 7%;
    }
    .odmaraliste_map_title {
        text-align: center;
    }
    .odmaraliste_hr {
        width: 100%;
    }
}

@media only screen and (min-width: 360px) and (max-width: 414px) {
    .navbar-header{
        height: 80px;
    }
    .eg-wrap .eg-overlay-wrapper {
    min-height: 0 !important;
}
	img.logo {
    	width: 125px;
	}
    .gallery_tabs{
    margin-bottom: 15%;
}
.grb {
    bottom: -2%;
}
.zlatibor_1 {
    margin-bottom: 20px;
    width: 100%;
}
.zlatibor_2{
	width: 100%;
}
h4.grb_title {
    display: none;
}
    .col-md-4{
        width: 100%;
    }
    .cenovnik img, .nabavke img {
    height: 40px;
}
     .eg-each-item.eg-overlay-layout-17 {
        height: auto !important;
    }
    .service img {
        width: 255px;
        height: 240px;
    }

    .o_nama h3,
    .aktuelnosti h3{
        font-size: 16px;
    }
    .triangle-right{
        right: 5.8%;
    }
    .video {
        background-color: #0b7e7f;
      
        margin-top: 9%;
        min-height: 240px;
    /*    width: 82%;*/
    }
    p.tab_section_title {
        width: 100%;
        margin: 10% 0;
        padding: 0;
        text-align: justify;
    }
    iframe {
        margin-top: 9%;
        margin-bottom: 5%;
    }
    .title iframe{
        margin-top: -15%;
    }
    .thumbnail{
        width: 205px;
    }
    .title h3{
        font-size: 14px;
        font-weight: bold;
    }
    .tab_10{
        margin-left: 0%;
    }

    .rezervisi img{
        height: 25px;
        margin: 0;
    }
    .kontakt img{
        height: 46px;
        margin-top: 0%;
    }
    .rez_kont {
        margin: 4.3% 0;
    }
    .cenovnik, .nabavke {
        width: 100%;
        margin: 0 auto;
    }
    .bg_bt{
        bottom: -23%;
    }
    .client-nav {
        list-style: none;
        margin: 0 auto;
        width: 86%;
        position: absolute;
        top: 60%;
        padding: 0;
    }
    .section p {
        padding: 2px;
        font-weight: 100;
        width: 100%;
        margin: 0 auto;
    }
    .bx-clone{
        width: 180px;
        margin-right: 0;
    }
    p.komentari {
        margin: 0 auto !important;
    }
    p.komentari {
        margin: 0 22%;
        text-align: justify;
    }
    p.komentari_italic {
        text-align: left;
        padding-left: 13px;
    }
    #bg{
        min-height: 300px;
        padding-bottom: 0 !important;
        background-size: cover;
        height: 100%;
    }
    .bg_bt {
    bottom: -27% !important;
}
    .tabs h3 {
        font-size: 15px;
        text-align: center;
        margin-top: 0;
    }
    .cenovnik img ,
    .nabavke img{
        height: 20px;
        width: auto;
    }

    .nabavke h3 {
        margin-top: 0;
    }

    .social li{
        line-height: 25px;
        font-size: 18px;
    }
    h3.social_media_title {
       width: 60%;
        margin-top: -18%;
        padding: 6.4%;
    }
    .social {
        left: 45.5%;
        transform: translate(-66%, -109%);
        width: 70%;
        margin-top: -3.2%;
    }
    .section  p{
        font-size: 12px;
    }
    h3.odmaralista_title{
        font-size: 23px;
    }
    .footer>p {
        font-size: 10px;
        width: 100%;
    }
    .footer{
        height: 390px;
    }
    .triangle-left {
        width: 0;
        height: 0;
        border-top: 26px solid transparent;
        border-right: 50px solid #055a5b;
        border-bottom: 15px solid transparent;
        position: absolute;
        top: 24%;
    }


    .triangle-right {
        width: 0;
        height: 0;
        border-top: 30px solid transparent;
        border-left: 50px solid #055a5b;
        border-bottom: 15px solid transparent;
        position: absolute;
        right: 5.9%;
        top: 23%;
    }
    .o_nama h3{
        width: 50%;
    }
    .aktuelnosti h3{
        width: 50%;
    }
    .kom{
        margin-right: 0px !important;
        min-width: 230px !important;
    }
     .odmaraliste_map_title {
        text-align: center;
    }

}
@media only screen and (min-width: 414px) and (max-width: 425px) {
    .translation {
    position: absolute;
    top: -20%;
    right: 24%;
    font-size: 13px;
    background: transparent !important;
    color: #0b7e7f;
}
    .bg_bt {
    bottom: -16% !important;
}
h3.left_h{
    font-size: 19px;
    text-align: center;
}
.kont_img {
    margin-top: 5% !important;
    height: 35px !important;
}
.nabavke img {
    width: 16% !important;
    margin-top: 6% !important;
}
.social li{
        font-size: 27px;
    padding: 4px;
}
h3.social_media_title {
    background-color: #fff;
    box-shadow: 0 0 13px 3px #00000014;
    width: 45%;
    margin: 0 auto;
    margin-top: -13%;
    padding: 5.4%;
    font-size: 14px;
    font-weight: bold;
}
.social {
    left: 28.3% !important;
    width: 56% !important;
    margin-top: -7.8% !important;
}
.cenovnik, .nabavke {
    min-height: 100px !important;
    margin: 5% 0px !important;
}
.kontakt img {
    height: 47px;
    }
    .rezervisi img {
    height: 40px;
    margin-top: 3%;
}
.tabs h3 {
    font-size: 19px;
    text-align: center;
    }
    .bg_top {
        top: -1%;
    }
    .marg {
        margin-top: 8%;
        margin-bottom: 6%;
    }
    .kontakt, .rezervisi {
    min-height: 134px;
}
    .a_tabs{
        width: 100%;
        padding: 16% 3%;
    }
    .eg-wrap .eg-overlay-wrapper {
    position: relative;
    height: 100px !important;
    overflow: hidden;
}
    .row {
    margin-top: 1%;
    padding: 0 5%;
}
	img.logo {
    	width: 100px;
	}
    .gallery_tabs{
        margin-bottom: 15%;
    }
    .zlatibor_1, .zlatibor_2{
        width: 43.5%;
    }
    h4.grb_title {
    display: none;
	}
	.grb {
	    width: auto;
	    height: 39%;
	    position: absolute;
	    bottom: 4%;
	    z-index: 8000;
	    right: 4%;
	}
    .footer_nav {
        position: relative;
        bottom: -25rem;
        text-transform: uppercase;
        margin: 0 auto;
    }
    .menu > li {
        display: inline-block;
        padding: 0 8px;
        font-size: 12px        
    }
    ul{
        padding: 0;
        margin-bottom: 22.5px;
    }
    .bx-viewport{
        width: 70% !important ;
        margin: 0 auto;     
        margin-left: 16%;   
    }
    .slider_title{
        font-size: 17px;
    }
     .top_slider {
        height: 45px;
    }
    .bottom_slider {
        position: absolute;
        bottom: -7%;
        left: -5px;
        z-index: 100;
        background-image: url(images/bottom_slider.png);
        width: 102%;
        height: 45px;
        background-repeat: no-repeat;
        background-size: cover;
        transition: inherit;
    }
    .client-nav {
        list-style: none;
        margin: 0 auto;
        width: 91%;
        position: absolute;
        top: 60%;
        padding: 0;
    }
    .footer{
        margin-top: -12%;
        font-size: 10px;
    }
    a.footer_link {
    margin: 0 7px;
    padding: 8px 0;
    opacity: 0.5;
}

}
@media only screen and (max-width: 375px){
    .video-elements {
        position: absolute;
        bottom: -13%;
        left: 37%;
    }
}
@media only screen and (min-width: 425px) and (max-width: 767px){
	.navbar{
		height: 80px !important;
	}
	.navbar-collapse.navbar-responsive-collapse {
    margin-top: 3% !important;
}
	img.logo{
		width: 115px !important;
		padding: 0;
	}
	iframe {
    	margin-bottom: 3%;
    	margin-top: 3%;
	}
	.eg-wrap .eg-overlay-wrapper {
    height: 105px !important;
}
	.row{
		margin: 0 15px !important;
	}
	.zlatibor_1{
		width: 43%;
	}
	.zlatibor_2{
		width: 43%;
	}
	ul#top-navigation {
    margin-top: 1%;
    width: 72% !important ;}
    
	.top_slider {
    	top: -17%;
	}

	img.logo {
    	width: 120px;
	}
     h4.grb_title {
    display: none;
}
    .a_tabs{
        min-height: 140px;
        background-size: cover !important;
        width: 100%;
        padding: 15%;
    }
    .gallery_tabs{
        margin-bottom: 15%;
    }
     .eg-each-item.eg-overlay-layout-17 {
        height: auto !important;
    }
    .odm:nth-child(2){
    transform: none;
    }

    .slider_title {
        font-size: 18px;
    }
    .bottom_slider{
        height: 40px;
    }
    .slider{
        width: 90%;
    }
    .slick-slide img {
        width: 86%;
    }
    .thumbnail{
        width: 270px;
    }
    #bg{
        min-height: 420px;
    }
    .bg_bt{
        bottom: -20%;
    }
    .cenovnik img{
    	height: 25px !important;
    	width: auto;
    	margin-top: 3%;
    }
    .nabavke img{
        height: 20px !important;
        width: auto;
        margin-top: 3%;
    }
    .tabs h3{
        font-size: 17px;
        text-align: center;
        margin-top: 0 !important;
    }
    .nabavke h3{
        margin-top: 0 ;
    }
    ..kont_img{
    	height: 30px;
    }
    .rezervisi img{
        height: 40px;
        margin-top: 3%;
        width: auto;
    }
    .kontakt img {
        height: 40px;
        margin-top: 0;
    }
    .tab_10{
        margin-left: 0;
    }
    .rez_kont {
        margin: 5% 0;
    }
    .nabavke, .cenovnik, .rezervisi, .kontakt{
    	height: 105px !important;
    }
    .marg{
    	margin-top: 2% !important;
    }
    .nabavke,
    .cenovnik{
        width: 93%;
        margin: 0 auto;
        min-height: 67px;
    }
     .social li{
        line-height: 25px;
        font-size: 18px;
    }
    h3.social_media_title {
        width: 50%;
        margin-top: -18%;
        padding: 7.4%;
    }
    .social {
        left: 45.5%;
        transform: translate(-66%, -109%);
        width: 70%;
        margin-top: -3.2%;
    }
    .section  p{
        font-size: 12px;
    }
    .client-nav {
        list-style: none;
        margin: 0 auto;
        width: 90%;
        position: absolute;
        top: 55%;
        padding: 0;
    }
    p.komentari {
        width: 79%;
        text-align: justify;
        margin-left: 15%;
    }
    .footer>p{
        bottom: -11px;
        left: 50%;
        width: 100%;
        font-size: 10px;
    }  
    footer#colophon {
        margin-top: -1%;
    }
    .service img {
        width: 315px;
        height: 300px;
    }
    table {
        width: 100% !important;
        margin-bottom: 7%;
    }
     .odmaraliste_map_title {
        text-align: center;
    }
}
@media only screen and (min-width: 1000px) and (max-width: 1200px){
    .navbar{
        height: 180px;
    }
    .navbar .nav>li>a {
    padding: 0 9px;
    font-size: 14px;
    }
    .entry-title-page{
        margin-top: 4% !important;
    }
    .header-img {
        height: 120px;
    }
}
@media only screen and (min-width: 760px) and (max-width: 989px){
    .translation {
    position: absolute;
    top: 57%;
    right: 0%;
    font-size: 13px;
}
    .navbar .nav>li>a {
    padding: 0 7px;
    font-size: 12px;
}
#stl_scripts_widget-2{
    padding-top: 6px;
}
ul#menu-footer {
     margin-top: 0%; 
}
.dropdown-menu>li>a {
    font-size: 11px;
}
/*    .navbar-toggle {
    display: block;
}*/
/*#menu-footer{
    display: none;
}*/
iframe {
    margin-bottom: 5%;
    margin-top: 3%;
}
.navbar-nav>li>.dropdown-menu{
	width: 230px;
}
nav{
	height: 89px !important;
}
.eg-masonary-padding {
    height: 175px;
    overflow: hidden;
}
.cenovnik, .nabavke, .rezervisi, .kontakt {
    height: 120px !important;
    min-height: 0;
    margin-bottom: 4.2%;
}
.footer{
	height: 315px;
	margin-top: 21%;

}
.footer>p{
	bottom: -40px !important;
}
.zlatibor_1{
	width: 45.5%;
}
.row {
    width: 90%;
    margin: 0 auto;
}
.kont_img{
	margin-top: 0;
	height: 45px !important;
}
.left_h{
	margin-top: 0 !important;
}
.marg{
	margin-top: 0;
}
.container {
    width: 100%;
}
.navbar-toggle{
	margin-top: 20px !important;
}
.logo{
	width: 140px !important;
	padding: 0 !important;
}
     h4.grb_title {
    display: none;
}
    .gallery_tabs{
        margin-bottom: 15%;
    }
    .header-img {
        height: 100px;
    }
    h1.entry-title-page {
        margin-top: 4%;    
    }
    h1.entry-title-page{
        font-size: 20px;
    }
    .footer_nav {
        position: relative;
        bottom: -39rem;
        text-transform: uppercase;
        margin: 0 auto;
    }
    .menu > li {
        display: inline-block;
        padding: 0 8px;
        font-size: 12px        
    }
    ul{
        padding: 0 0 0 6%;
        margin-bottom: 22.5px;
    }
    .slider_title{
        font-size: 23px;
    }
    .top_slider{
        height: 50px;
    }
    .bottom_slider{
        height: 40px;
    }
    .slider{
        width: 90% !important ;
    }
    .grb {
        bottom: 0%;      
        right: 4%;
    }
    .slick-slide img {
        width: 96% !important;
    }
    .thumbnail{
        width: 200px;
    }
    #bg{
        min-height: 420px;
    }
    .bg_bt{
        bottom: -15%;
    }
   
    h3.social_media_title {
        width: 27%;
        margin-top: -7%;
        padding: 3.4%;
    }
    .social {
        left: 21.3%;
        transform: translate(-66%, -109%);
        width: 32%;
        margin-top: -0.8%;
    }
    .section  p{
        font-size: 12px;
    }
    .client-nav {
        list-style: none;
        margin: 0 auto;
        width: 95%;
        position: absolute;
        top: 55%;
        padding: 0;
    }
    p.komentari {
        width: 79%;
        text-align: justify;
        margin-left: 15%;
    }
    .footer>p{
        bottom: -11px;
        left: 50%;
        width: 100%;
        font-size: 10px;
    }

    footer#colophon {
        margin-top: -30%;
    }
    .service img {
        width: 210px;
        height: 200px;
    }
    .video{
        min-height: 215px;
    }
    .aktuelnosti h3 {
        background-color: #0b7e7f;
        padding: 5%;
        position: absolute;
        top: 10%;
        right: -7px;
        width: 75%;
        font-size: 16px;
        color: #fff;
        text-transform: uppercase;
        font-weight: 300;
        width: 185px;
    }
    .triangle-right{
        right: -2.8%;
        top: 25%;
    }
    .o_nama h3 {
        background-color: #0b7e7f;
        font-size: 16px;
        width: 185px;
        left: 0;
      }
      .triangle-left{
		left: 0;
		top: 26%;
      }
      p.odmaralista_t{
      	font-size: 16px;
      }
  }

@media only screen and (min-width: 921px) and (max-width: 1168px){
    .bg_bt{
        bottom: -9%;
    }
    .tabs h3 {
        font-size: 19px;
    }
    .marg {
        margin-top: 16%;
    }
    .kont_img {
        height: 47px !important;
        width: auto !important;
        margin-top: 28%;
    }
    .kontakt, .rezervisi {
        min-height: 110px;
    }
    .rezervisi h3 {
        margin-top: 17%;
    }
    .tab_10 {
        margin-top: 15%;
    }
    .social li {
        display: inline-block;
        line-height: 33px;
        font-family: 'Pluton';
        font-size: 23px;
        padding: 8px;
        background-color: #0b7e7f;
        color: #fff;
        box-shadow: 0 0 2px 1px transparent;
    }
    h3.social_media_title {
        margin-top: -3%;
    }
    .social{
        margin-top: -3.5%;
    }
    .thumbnail {
        width: 255px;
    }
    .service img {
        width: 235px;
        height: 235px;
    }
    .triangle-right {
        right: 7.2%;
        top: 30%;
    }
    .triangle-left {
        top: 30%;
    }
    aside.well{
        background-color: transparent;
    }
    .translation {
        top: -5%;
        right: 2.7%;
    }
    .navbar .nav>li>a {
        padding: 24px 10px;
        font-size: 13px;
    }
    img.grb_img {
        margin-left: 40%;
    }
    .bottom_slider {
        position: absolute;
        bottom: -1%;
        left: -1px;
        z-index: 100;
        background-image: url(images/bottom_slider.png);
        width: 100%;
        height: 66px;
        background-repeat: no-repeat;
        background-size: cover;
        transition: inherit;
    }
    .bottom_slider {
        bottom: -1%;
        width: 100%;
        height: 66px;
    }
    .top_slider {
        top: -15%;
        height: 55px;
    }
    .video-elements {
        position: absolute;
        bottom: -22px;
        left: 35%;
    }
}
@media only screen and (min-width: 921px) and (max-width: 1168px){
   .navbar-collapse.navbar-responsive-collapse{
    margin: 0;
   } 
   .top_slider {
        top: -10%;
    }
    .translation {
        top: -15%;
        right: 0.7%;
    }
    .triangle-left {
        top: 25%;
    }
    .triangle-right {
        right: -6px;
        top: 26%;
    }
    .bg_bt {
        bottom: -12%;
    }
}
@media only screen and (max-width: 768px) and (max-width: 1024px){
	.gallery_tabs{
		background-size: cover;
	}
	.social {
    left: 49.3%;
    width: 73%;
    margin-top: 0.2%;
}
	.bg_bt{
		bottom: -14%;
	}
	.nabavke img {
    width: 16%;
    margin-top: 15%;
}
.rezervisi img {
    height: 43px;
    margin-top: 0%;
}
.kont_img {
    margin-top: 10%;
    height: 40px !important;
}
h3.left_h {
    margin-top: 6.5% !important;
}
.rezervisi h3 {
    margin-top: 3%;
}
.tab_10 {
    margin-left: 5%;
    margin-top: 3%;
}
.rez_kont{
	padding: 0;
}
}

}
@media only screen and (max-width: 1400px){
/* .navbar-collapse.collapse {
        display: none !important;
    }
    .navbar-collapse.collapse.in {
        display: block !important;
    }*/
 /*   .navbar-header .collapse, .navbar-toggle {
        display:block !important;
    }
  .navbar-header {
      float: none;
  }
  .navbar-left,.navbar-right {
      float: none !important;
  }
  .navbar-toggle {
      display: block;
  }
  .navbar-collapse {
      border-top: 1px solid transparent;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  }
  .navbar-fixed-top {
      top: 0;
      border-width: 0 0 1px;
  }
  .navbar-collapse.collapse {
      display: none!important;
  }
  .navbar-nav {
      float: none!important;
      margin-top: 7.5px;
  }
  .navbar-nav>li {
      float: none;
  }
  .navbar-nav>li>a {
      padding-top: 10px;
      padding-bottom: 10px;
  }
  .collapse.in{
      display:block !important;
  }
  .navbar-collapse.navbar-responsive-collapse {
    margin-top: 11%;*/
}
@media only screen and (min-width: 1000px) and (max-width: 1200px){
    .translation {
    position: absolute;
    top: -10%;
    right: 1%;
}
	.logo{
		width: 195px;
	}
	.thumbnail {
    background-color: transparent;
    border: none;
    width: 285px;
    margin: 0 auto;
}
}
@media only screen and (min-width: 1200px ) and (max-width: 1365px){
   .translation {
    position: absolute;
    top: -12% !important;
    right: 1%;
}
}
@media only screen and (min-width: 1200px) and (max-width: 1610px){
    .translation {
    position: absolute;
    top: 20%;
    right:1%;
}

    .header-img{
        height: 140px;
    }
    h1.entry-title-page{
        margin-top: 4% !important;
    }
}
@media only screen and (min-width: 1600px) and (max-width: 1915px){
img.logo {
    width: 230px !important;
}
.header-img {
    height: 115px;
}
h1.entry-title-page{
    margin-top: 4%;
}
}

@media only screen and (min-width: 1920px){
   img.logo {
    width: 230px !important;
}
.header-img {
    height: 115px;
}
h1.entry-title-page{
    margin-top: 4%;
}
}