@import url(../css-1);

body {
    background-color: #f4f4f4;
    border-top: 2px solid #a4bd26;
    color: #1e2126;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 15px;
    padding-top:170px;
}

* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a, a:active, a:focus,
button, button:focus, button:active,
.btn, .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn.active.focus {
    outline: none;
    outline: 0;
    text-decoration: none;
}

a, a:hover {
    color: #1e2126;
}

input::-moz-focus-inner {
    border: 0;
}

span.line {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: rgba(164, 189, 38, 0.4);
    z-index: 10;
}

span.line.white {
    background-color: rgba(255, 255, 255, 0.4);
}

span.line-top {
    top: 5px;
}

.btn-primary {
    color: #fff;
    background-color: #a4bd26;
    border: 1px solid #99b023;
    font-size: 12px;
    font-weight: 600;
    padding: 20px 55px;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    border-radius: 28px;
    text-transform: uppercase;
    transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
}

.btn-primary:hover {
    color: #333;
    background-color: white;
    border: 1px solid #99b023;
}

.btn-primary-light {
    color: #1e2126;
    background-color: #f4f4f4;
    border: 1px solid #99b023;
    font-size: 12px;
    font-weight: 600;
    padding: 20px 55px;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    border-radius: 28px;
    text-transform: uppercase;
    transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
}

.btn-primary-light:hover {
    color: white;
    background-color: #99b023;
    border: 1px solid #99b023;
}

span.line-bottom {
    bottom: 5px;
}

.pagination > li > a, .pagination > li > span {
    background-color: transparent;
    border-color: #a4bd26;
    color: #1e2126;
    display: inline-block;
    font-size: 25px;
    margin: 0 5px;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border-radius: 50% !important;
    padding: 16px 22px;
    line-height: 1em;
    min-width: 1em;
}

.pagination > li > a:hover, .pagination > li > span {
    background-color: #a4bd26;
    border-color: #a4bd26;
    color: #fff;
}

#main .container p {
	color: #222222;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.01em;
	margin-bottom: 1.5em;
}

#main .container p > a {
    color: #222;
}

#header {
	position: fixed;
	top: 0;
	width: 100%;
    background-color: #f4f4f4;
    z-index: 10000;
    transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
}

#header ul#extra-menu {
	list-style-type: none;
	padding: 0;
	margin: 0;
    margin-top: 34px;
    visibility: visible;
    opacity: 1;
    transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
}

.scrolled #header ul#extra-menu {
    visibility: hidden;
    opacity: 0;
    height: 0;
    margin-top: 0;
    /*margin-top: -100px;*/

}

#header ul#extra-menu li {
	display: inline-block;
}

#header ul#extra-menu li a {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #a4bd26;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

#header ul#extra-menu li a span {
    display: none;
}

#header ul#extra-menu li a {
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

#header ul#extra-menu li a.home {
    background-image: url(../img/ico-home.png);
}

#header ul#extra-menu li a.fb {
    background-image: url(../img/ico-fb.png);
}

#header ul#main-menu {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

#header ul#main-menu li {
	display: inline-block;
	/*margin: 0 35px;*/
}

#header ul#main-menu li.first {
	margin-left: 0;
}

#header ul#main-menu li.last {
	margin-right: 0;
}

#header ul#main-menu li a {
	border-bottom: 3px solid transparent;
	color: #1e2126;
    padding: 20px 5px;
	font-size: 13px;
    font-weight: 600;
	transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
    text-transform: uppercase;
}

	#header ul#main-menu li a:hover, #header ul#main-menu li a.active {
		color: #1e2126;
		border-bottom: 3px solid #a4bd26;
		text-decoration: none;
	}

	#header ul#main-menu li a.active {
		text-decoration: underline;
	}

	#header ul#main-menu li a:focus, #header ul#main-menu li a:active, #header ul#main-menu li a:hover, header ul#main-menu li a::selection {
		text-decoration: none;
		outline: 0;
	}

	#header ul#main-menu li.home {
		display: none;
	}


#header #logo-link {
	visibility: hidden;
	opacity: 0;
	display: none;
}

#header #logo-link img {
	width: 109px;
}

.contraint-container {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 1280px;
	padding-left: 40px;
	padding-right: 40px;
}

#header {
    text-align: center;
    /*width: 100%;*/
    z-index: 1002;
    height: 166px;
    /*margin-bottom: 30px;*/
	transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
}

.scrolled #header {
    height: 66px;
    -webkit-box-shadow: 0px -7px 26px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px -7px 26px 0px rgba(0,0,0,0.75);
    box-shadow: 0 -6px 12px 0 rgba(0, 0, 0, 0.45);
}

#header h1 {
    /*padding-bottom: 30px;*/
    padding-top: 22px;
    width: 100%;
    width: auto;
    margin: 0;
    margin-left: 30px;
	transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
	position: absolute;
	z-index: 100;
}

.scrolled #header h1 {
    padding-top: 16px;
}

#header ul {
	margin-top: 30px;
	height: 63px;
	line-height: 63px;
    width: 100%;
    text-align: right;
	transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
}

#header ul li {
/*    font-size: 18px;
    line-height: 27px;
    margin-right: 6%;*/
    margin-left: 30px;
	transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
}

#header ul#extra-menu li {
    margin-left: 12px;
}

#header h1 a {
    position: relative;
}

#header img.logo {
    position: absolute;
	width: auto;
	transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
}

#header img.logo.primary {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

#header img.logo.secondary {
    visibility: hidden;
    opacity: 0;
}

.scrolled #header img.logo.secondary {
    visibility: visible;
    opacity: 1;
}

.scrolled #header img.logo.primary {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100px);
}

/* mobile menu */

#mobile-nav {
	display: none;
	z-index: 100000;
}

#mobile-nav .close-character {
	background: url(../img/ico-menu-close.png) 50% 50% no-repeat;
    background-size: 51px 51px;
	display: none;
	width: 51px;
	height: 51px;
	text-indent: -9999px;
	position: absolute;
	top: 8px;
	right: 10px;
	z-index: 10000;
	outline: none;
}

#mobile-nav .menu-trigger {
	background: url(../img/ico-menu.png) 50% 50% no-repeat;
	background-size: 51px 51px;
	display: block;
	width: 51px;
	height: 51px;
	text-indent: -9999px;
	position: absolute;
	top: 8px;
	right: 10px;
	z-index: 10000;
	outline: none;
}


/* /mobile menu */

.carousel {

}

.carousel-inner > .item > img {
    width: 100%;
    min-height: 180px;
}

.carousel-caption {
    text-align: left;
    text-shadow: 0 0px 32px rgba(10, 27, 69, 0.6);
}

.carousel-caption h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 600;
    text-transform: uppercase;

}
.carousel-caption p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    width: 50%;
}

.carousel-indicators li {
    border-color: rgba(164, 189, 38);
    width: 13px;
    height: 13px;
    margin: 0 3px;
}

.carousel-indicators .active {
    background-color: rgba(164, 189, 38);
    width: 13px;
    height: 13px;
    margin: 0 3px;
}

.carousel-indicators {
    bottom: 0;
}

.carousel,
.carousel-inner .item,
.carousel-inner .active {
    height: 386px;
}

.carousel-inner {
    height: 100%;
}

.carousel .fill {
    width: 100%;
    height: 100%;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.carousel .fill img {
    display: none;
}
.homepage h3, .subpage h3 {
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 50px;
    margin-top: 0;
}

.what-we-do {
    display: block;
    padding: 60px 0;
}

.what-we-do .item {
    text-align: center;
}

.what-we-do .item h4 {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 24px;
}

.what-we-do .item .icon {
    /*display: table-cell;
    width: 190px;
    height: 190px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #a4bd26;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 0 auto;*/
    text-align: center;
}

    .what-we-do .item .icon img {
        display: block;
        margin: 0 auto;
    }

.striped {
    background: url(../img/bg-stripes.png) 50% 50% repeat;
    position: relative;
}

.striped a {
    color: #fff;
}

.striped .container {
    padding-top: 38px;
}

.about-us {
    position: relative;
    padding-bottom: 25px;
}

    .about-us h3 {
        color: #fff;
    }

    .about-us .item {
        padding-bottom: 25px;
    }

    .about-us .item p {
        color: #fff;
        text-align: center;
        font-weight: 600;
        font-size: 12px;
    }

    .about-us .item img {
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
    }

.reviews {
    padding: 135px 0;
}

.subpage .reviews {
    padding-top: 85px;
    padding-bottom: 45px;
    padding-left: 15px;
    padding-right: 15px;
}

    .reviews .review {
        border: 1px solid #a4bd26;
        padding: 80px;
        position: relative;
    }

    .subpage .reviews .review {
        margin-bottom: 77px;
        padding-bottom: 40px;
    }

    .reviews .review .header {
        display: block;
        position: absolute;
        top: -1em;
        width: auto;
        margin: 0;
        left: 0;
        right: 0;
        text-align: center;
        /*transform: translate(50%, 0);*/
    }

    .reviews .review .header h3 {
        background-color: #f4f4f4;
        display: inline-block;
        padding: 0 23px;
        width: auto;
        margin: 0;
    }

    .reviews .review .more {
        display: block;
        position: absolute;
        bottom: -28px;
        width: auto;
        margin: 0;
        left: 0;
        right: 0;
        text-align: center;
        /*transform: translate(50%, 0);*/
    }

    .reviews .review .date {
        display: block;
        position: absolute;
        background: url(../img/ico-sm-clock.png) 0 50% no-repeat;
        padding-left: 47px;
        line-height: 26px;
        font-size: 16px;
        top: 16px;
        left: 72px;
    }

    .reviews .review .more .padding-space {
        background-color: #f4f4f4;
        padding: 0 20px;
        display: inline-block;
    }

    .reviews .review span.quote {
        display: block;
        position: absolute;
        background: #f4f4f4 url(../img/quote-sign.png) 50% 50% no-repeat;
        width: 97px;
        height: 36px;
    }

    .reviews .review span.quote.quote-top {
        top: -20px;
        right: 28px;
    }

    .reviews .review span.quote.quote-bottom {
        bottom: -20px;
        left: 28px;
    }
    .reviews .review p.quote {
        font-size: 16px;
        font-weight: 600;
        font-style: italic;
        line-height: 26px;
        text-align: center;
    }

    .reviews .review p.signature {
        font-size: 12px;
        font-weight: 600;
        text-align: right;
        text-transform: uppercase;
    }

.articles {
    position: relative;
    padding-bottom: 25px;
}

    .articles h3 {
        color: #fff;
    }

    .subpage .articles h3 {
        color: #1e2126;
        margin-top: 84px;
        margin-bottom: 110px;
    }

    .subpage .articles.sidebar {
        border-left: 1px solid #a4bd26;
        padding-left: 40px;
        margin-top: 85px;
        margin-bottom: 40px;
        padding-bottom: 0px;
    }

    .subpage .articles.sidebar h3 {
        color: #1e2126;
        margin-top: 0;
        margin-bottom: 35px;
        text-align: left;
        line-height: 1.5em;
    }

    .articles .item {
        margin-bottom: 30px;
    }

        .articles .item h4 {
            color: #fff;
            font-size: 20px;
            font-weight: 400;
            margin-top: 2em;
            text-transform: uppercase;
        }

            .articles .item h4 a {
                color: #fff;
            }

        .articles .item p {
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            margin-top: 2em;
            text-transform: uppercase;
        }

        .subpage .articles .item h4 a, .subpage .articles .item p {
            color: #1e2126;
        }

    .subpage .article .article {
        margin-top: 85px;
        padding-right: 40px;
    }

    .subpage .article .article h1 {
        font-size: 30px;
        font-weight: 400;
        line-height: 1.5em;
        margin-top: 0;
        margin-bottom: 100px;
        text-transform: uppercase;
    }

    .subpage .article .article p {
        font-size: 16px;
        /*font-weight: 600;*/
        margin-bottom: 2em;
    }

    .subpage .article .article p strong {
        font-weight: 700;
    }

    .subpage .article .article ul li, .subpage .article .article ol li {
        font-size: 16px;
        margin-bottom: 1em;
    }

    .subpage .article .article ul, .subpage .article .article ol {
        margin-bottom: 2em;
    }

.our-stores {
    padding-top: 100px;
    padding-bottom: : 50px;
}

    .our-stores .item {
        margin-bottom: 50px;
    }

    .our-stores .item h4 {
        background: url(../img/ico-marker.png) 22px 0 no-repeat;
        font-size: 30px;
        text-transform: uppercase;
        line-height: 0.7em;
        padding: 13px 0 10px 100px;
    }

    .our-stores .item h4 small {
        color: #1e2126;
        font-size: 12px;
        font-weight: 600;
    }

    .our-stores .item a img {
        margin-bottom: 35px;
    }

    .our-stores .item .details {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 35px;
    }

    .our-stores .item .details .info {
        padding-top: 20px;
    }

    .our-stores .item .details .info-2 {
        padding-top: 20px;
        font-size: 13px;
    }

    .our-stores .item .details span.hours {
        display: block;
        background: #a4bd26 url(../img/ico-clock.png) 50% 50% no-repeat;
        width: 50px;
        height: 50px;
        float: left;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        border-radius: 25px;
    }

    .our-stores .item .details span.phone {
        display: block;
        background: #a4bd26 url(../img/ico-phone.png) 50% 50% no-repeat;
        width: 50px;
        height: 50px;
        float: left;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
    }

.gallery {
    position: relative;
    padding-top: 61px;
    padding-bottom: 50px;
    margin-top: 2em;
}

    .gallery .header {
        display: block;
        position: absolute;
        top: -0.5em;
        width: auto;
        margin: 0;
        left: 0;
        right: 0;
        text-align: center;
        z-index: 20;
        /*transform: translate(50%, 0);*/
    }

    .gallery .header h3 {
        background-color: #f4f4f4;
        display: inline-block;
        padding: 0 23px;
        width: auto;
        margin: 0;
    }

    .gallery .item {
        margin-bottom: 26px;
    }

footer.striped .container {
    padding-top: 16px;
    padding-bottom: 16px;
}

footer ul {
    list-style-type: none;
}

    footer ul li {
        display: inline-block;
        margin-left: 16px;
    }

    footer ul li a {
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 3em;
    }

    footer ul li a:hover {
        color: #fff;
    }

    /* -  help menu - */
    .help-menu {
    	display: block;
    	position: fixed;
    	right: -200px;
    	width: 200px;
    	height: auto;
    	top: 126px;
    	z-index: 1005;
    	-webkit-transition: .45s ease-in-out;
    	-moz-transition: .45s ease-in-out;
    	-ms-transition: .45s ease-in-out;
    	-o-transition: .45s ease-in-out;
    	transition: .45s ease-in-out;
    }

    .help-menu.expanded {
    	right: 0;
    }

    .help-menu a.btn-help {
    	display: block;
    	width: 96px;
    	height: 100%;
    	background: #a4bd26 url(../img/ico-info.png) 25% 50% no-repeat;
    	text-indent: -9999px;
    	position: absolute;
    	top: 0;
    	left: -48px;
    	outline: none;
        z-index: -1;

        -webkit-border-top-left-radius: 50%;
        -webkit-border-bottom-left-radius: 50%;
        -moz-border-radius-topleft: 50%;
        -moz-border-radius-bottomleft: 50%;
        border-top-left-radius: 50%;
        border-bottom-left-radius: 50%;
    }

    .help-menu .menu-content {
        background-color: #a4bd26;
    	display: block;
    	width: 100%;
        height: auto;
        padding: 10px;
    }

    	.help-menu .menu-content ul {
            background-color: #a4bd26;
    		list-style: none;
    		margin: 0;
    		padding: 0;
    	}

    	.help-menu .menu-content ul li a {
    		color: #fff;
    		display: block;
    		width: 92%;
    		background-color: #a4bd26;
            border: 1px solid rgba(255, 255, 255, 0.19);
    		line-height: 12px;
    		font-size: 11px;
            font-weight: 600;
    		text-align: center;
    		padding: 9px 0;
    		-webkit-border-radius: 20px;
    		-moz-border-radius: 20px;
    		border-radius: 20px;
            margin: 0 auto;
            margin-bottom: 6px;
            transition: all .25s ease-in-out;
        	-moz-transition: all .25s ease-in-out;
        	-webkit-transition: all .25s ease-in-out;
    	}

    	.help-menu .menu-content ul li a:hover {
    		background-color: #fff;
    		color: #222;
    		text-decoration: none;
    	}

        .help-menu .menu-content ul li:last-child a {
            margin-bottom: 0;
        }

.add-opinion {
    margin-bottom: 73px;
    padding-bottom: 48px;
}

    .add-opinion h3 {
        color: #fff;
    }

    .add-opinion p {
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .add-opinion form, .modal-content form {
        margin-top: 50px;
    }

    .add-opinion form input, .add-opinion form textarea,
    .modal-content form input, .modal-content form textarea {
        background-color: #f0f0f0;
        border-color: #a4bd26;
        color: #333;
        margin-bottom: 30px;
        box-shadow: none;
        font-weight: 700;
        height: auto;
        padding: 12px;
    }

    .add-opinion form input::-webkit-input-placeholder, .add-opinion form textarea::-webkit-input-placeholder,
    .modal-content form input::-webkit-input-placeholder, .modal-content form textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
        color: #333;
        text-transform: uppercase;
    }

    .add-opinion form input::-moz-placeholder, .add-opinion form textarea::-moz-placeholder,
    .modal-content form input::-moz-placeholder, .modal-content form textarea::-moz-placeholder { /* Firefox 19+ */
        color: #aaa;
        text-transform: uppercase;
    }

    .add-opinion .form-control:focus, .modal-content .form-control:focus {
        box-shadow: 0 1px 1px rgba(255, 255, 255, 0.075) inset, 0 0 8px rgba(250, 208, 96, 0.6);
        border-color: #fad060;
    }
    /* - /help menu - */

.doctor-header-background {
    height: 250px;
}

.doctor-header {
    margin-top: -180px;
    position: relative;
    z-index: 10;
}

    .doctor-header img {
        border: 1px solid #e5bc89;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        padding: 15px;
        width: 356px;
        margin-bottom: 49px;
    }

    .doctor-header h3 {
        margin-bottom: 0px;
    }

    .doctor-header h5 {
        color: #1e2126;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        text-align: center;
        margin-top: 6px;
        margin-bottom: 0;
    }

.doctor-description {
    margin-top: 100px;
    padding-bottom: 50px;
}

    .doctor-description .v-line {
        border-left: 1px solid #a4bd26;
        padding-left: 40px;
    }

    .doctor-description p {
        color: #1e2126;
        font-size: 16px;
        text-align: center;
        font-weight: 600;
        line-height: 1.7em;
        margin-bottom: 1.7em;
    }

    .doctor-description .contact {
        margin-top: 50px;
    }

    .doctor-description .details:first-child {
        margin-top: 20px;
    }

    .doctor-description .details {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 35px;
        margin-top: 0;
        height: 4em;
    }

    .doctor-description .details .info {
        padding-top: 20px;
    }

    .doctor-description .details .info-2 {
        padding-top: 20px;
        font-size: 13px;
    }

    .doctor-description .details span {
        display: inline-block;
        width: 50px;
        height: 50px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        border-radius: 25px;
    }

    .doctor-description .details span.hours {
        background: #a4bd26 url(../img/ico-clock.png) 50% 50% no-repeat;
    }

    .doctor-description .details span.phone {
        background: #a4bd26 url(../img/ico-phone.png) 50% 50% no-repeat;
    }

    .doctor-description .details span.email {
        background: #a4bd26 url(../img/ico-email.png) 50% 50% no-repeat;
    }

    .doctor-description .details span.marker {
        background: #a4bd26 url(../img/ico-marker-white.png) 50% 50% no-repeat;
    }

.personnel {
    margin-top: 80px;
    margin-bottom: 80px;
}

    .personnel .place-choice p {
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 1em;
    }

    .personnel .place-choice p a.btn {
        margin-left: 20px;
        margin-right: 20px;
    }

    .personnel .place {
        margin-top: 100px;
        border-top: 1px solid #e7d8c5;
    }

    .personnel .place h3 {
        margin-top: -0.5em;
    }

        .personnel .place h3 span {
            background-color: #f4f4f4;
            padding: 0 20px;
        }

        .personnel .place .item {
            margin-bottom: 40px;
        }

            .personnel .place .item h4 {
                text-transform: uppercase;
                font-size: 30px;
                font-weight: 400;
                line-height: 0.7em;
                margin-top: 40px;
            }

                .personnel .place .item h4 a {
                    color: #1e2126;
                }

                .personnel .place .item h4 small {
                    color: #1e2126;
                    font-size: 12px;
                    font-weight: 600;
                }

            .personnel .place .item p {
                font-size: 14px;
                font-weight: 600;
                margin-top: 35px;
                line-height: 1.5em;
            }

            .personnel .place .item p.location {
                background: url(../img/ico-sm-marker.png) 0 50% no-repeat;
                font-size: 12px;
                font-weight: 700;
                padding-left: 70px;
                line-height: 51px;
                text-transform: uppercase;
            }

            .personnel .place .item img {
                border: 1px solid #a4bd26;
                -webkit-border-radius: 50% !important;
                -moz-border-radius: 50% !important;
                border-radius: 50% !important;
                padding: 10px;
            }

.subpage .about-us {
    padding-top: 84px;
}

    .subpage .about-us h3 {
        color: #1e2126;
    }

    .subpage .about-us .intro {
        border-bottom: 1px solid #a4bd26;
        padding-bottom: 80px;
    }

        .subpage .about-us .intro p {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 1.5em;
            line-height: 1.5em;
        }

    .subpage .about-us .person {
        margin-top: 54px;
    }

    .subpage .about-us .person h4 {
        font-size: 30px;
        text-transform: uppercase;
        margin-top: 43px;
        margin-bottom: 60px;
    }

    .subpage .about-us .person p {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 1.5em;
        line-height: 1.5em;
    }


    .subpage .about-us .person img {
        border: 1px solid #a4bd26;
        -webkit-border-radius: 50% !important;
        -moz-border-radius: 50% !important;
        border-radius: 50% !important;
        padding: 10px;
    }

.place-description {
    margin-top: 100px;
    padding-bottom: 50px;
}

    .place-description h3 {
        background: url(../img/ico-marker.png) 0 50% no-repeat;
        display: inline-block;
        padding-left: 76px;
        line-height: 0.7em;
        padding-top: 10px;
        padding-bottom: 8px;
        text-align: left;
    }

        .place-description h3 small {
            color: #1e2126;
            font-size: 12px;
            font-weight: 700;
        }

    .place-description .v-line {
        border-left: 1px solid #a4bd26;
        padding-left: 40px;
    }

    .place-description .contact {
        padding-top: 30px;
        margin-bottom: 64px;
    }

    .place-description .map {
        margin-bottom: 64px;
    }

    .place-description .details:first-child {
        margin-top: 20px;
    }

    .place-description .details {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 35px;
        margin-top: 0;
        height: 4em;
    }

    .place-description .details .info {
        padding-top: 20px;
    }

    .place-description .details .info-2 {
        padding-top: 20px;
        font-size: 13px;
    }

    .place-description .details span {
        display: inline-block;
        width: 50px;
        height: 50px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        border-radius: 25px;
    }

    .place-description .details span.hours {
        background: #a4bd26 url(../img/ico-clock.png) 50% 50% no-repeat;
    }

    .place-description .details span.phone {
        background: #a4bd26 url(../img/ico-phone.png) 50% 50% no-repeat;
    }

    .place-description .details span.email {
        background: #a4bd26 url(../img/ico-email.png) 50% 50% no-repeat;
    }

    .place-description .details span.marker {
        background: #a4bd26 url(../img/ico-marker-white.png) 50% 50% no-repeat;
    }

    .place-description #map {
        background-color: #f2f0e9;
        display: block;
        width: 100%;
        height: 340px;
    }

.modal-content {
    box-shadow: 0 0px 55px rgba(255, 255, 255, 0.93);
    padding-bottom: 50px;
    padding-top: 35px;
    border-radius: 0;
    border: 0;
}

.modal-content h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 50px;
}

.modal-content p {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.modal-content button {
    margin-left: 30px;
    margin-right: 30px;
}

.modal-content .btn-send {
    color: #222;
    background-color: #f9d060;
    border: 1px solid #99b023;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0;
    padding: 20px 55px;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    border-radius: 28px;
    text-transform: uppercase;
    transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
}

.modal-backdrop.in {
    background-color: #fff;
    opacity: 0.8;
}

.mfp-bg {
    background-color: #fff;
}

.mfp-counter {
    color: #1e2126;
}

.mfp-title {
    color: #000;
}

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

    div.price-list {
        background: #a4bd26;
        padding: 2em 1em;
    }

    div.price-list p {
        margin: 2rem;
        margin-bottom:0;
    }
    
        div.price-list span.price {
            float: right;
        }
        
    div.price-list ol {
        font-size: 1.8rem;
        list-style-position: inside;
        margin: 0 2rem;
        padding: 0;
    }

    div.price-list ol > li {
        padding: 1rem 0;
        border-bottom: 2px solid white;
           position: relative;
    }
    
    div.price-list ol > li > ul {
        list-style: square;
    }

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}
