﻿@import url("../libs/bootstrap-5.3.3-dist/css/bootstrap.min.css");
@import url("../libs/jquery/jquery-ui/jquery-ui.css");
@import url("../libs/animate/animate.min.css");
@import url("../libs/owlcarousel/assets/owl.carousel.min.css");
@import url("../libs/slick/slick.css");
@import url("../libs/slick/slick-theme.css");
@import url("../libs/slick/animate.css");
@import url("../libs/fancybox/jquery.fancybox.min.css");
@import url("animate.css");
/*
* ----------------------------------------------------------------------------------------
* Fonts
* ----------------------------------------------------------------------------------------
*/
@import url("../fonts/fontawesome-free-5.15.4-web/css/all.min.css");
@import url("../fonts/bootstrap-icons-1.11.3/font/bootstrap-icons.min.css");
/*
* ----------------------------------------------------------------------------------------
* General
* ----------------------------------------------------------------------------------------
*/

:root {
 --brown-color: #ba714d;
 --brown-color-dark: #a56241;
 --brown-color-light: #dd8154;
 --beige-color: #F9F6F3;
 --beige-color-dark: #f7d1aa;
 --beige-color-100: #f8f0e8;
 --gray-color: #777F81;
}
/* Fonts */
:root {
 --heading-font: "Cormorant Upright", serif;
 --body-font: "Sora", sans-serif;
}
/*
* ----------------------------------------------------------------------------------------
* Custom Color
* ----------------------------------------------------------------------------------------
*/

.bg-beige {
	background-color: var(--beige-color);
	opacity: 0.9;
}
.bg-color-dark {
	background-color: var(--beige-color-dark);
	opacity: 0.9;
}
.bg-color-light {
	background-color: var(--beige-color);
	opacity: 0.9;
}
.brown-color-light {
	color: var(--brown-color-light);
}
/*----------------------------------------------*/
/* GENERAL TYPOGRAPHY
/*----------------------------------------------*/

*, *::before, *::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	font-size: 1.05em;
	font-weight: 400;
	font-family: "Roboto", sans-serif;
	color: var(--bs-dark);
	line-height: 1.3em;
}
a {
	color: var(--brown-color);
	text-transform: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}
a:hover, a :focus {
	text-decoration: none;
	box-shadow: none;
	color: var(--gray-color);
}
a:focus {
	outline: 0 solid;
}
img {
	max-width: 100%;
	height: auto;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	line-height: 1;
}
ul {
	padding: 0px !important;
	margin: 0px !important;
	list-style: none;
}
ol li {
	padding: 0px !important;
	margin: 0px !important;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.flex-item {
	height: 100%;
	flex: 1;
}
main {
	overflow-x: hidden;
}
/*
* ----------------------------------------------------------------------------------------
* Breadcrumb
* ----------------------------------------------------------------------------------------
*/
.breadcrumb {
	margin: 0;
	padding: 0;
}
.breadcrumb li {
	display: inline-block;
	margin: 0 10px;
	position: relative;
}
.breadcrumb li:after {
	position: absolute;
	top: 0;
	right: -13px;
	content: "/";
	font-size: 16px;
	background-color: transparent;
	color: var(--bs-dark);
}
.breadcrumb li:first-child {
	margin-left: 0;
}
.breadcrumb li:first-child a {
	padding-left: 0;
}
.breadcrumb li:last-child {
	margin-right: 0;
	color: var(--bs-dark);
}
.breadcrumb li:last-child:after {
	display: none;
}
.breadcrumb li a {
	font-size: 16px;
	display: inline-block;
	padding: 0px 5px;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	position: relative;
	color: var(--brown-color) !important;
}
.breadcrumb li a:hover {
	color: var(--bs-dark) !important;
}
.breadcrumb li:last-child a:after {
	display: none;
}
/*
* ----------------------------------------------------------------------------------------
* List Number
* ----------------------------------------------------------------------------------------
*/
ol {
	list-style-type: none;
	counter-reset: num;
	font-size: 0.95em;
}
ol li {
	display: block;
	position: relative;
	margin-bottom: 10px !important;
	padding-top: 2px !important;
	vertical-align: text-top
}
ol li:before {
	content: counter(num);
	counter-increment: num;
	display: inline-block;
	position: absolute;
	top: 0;
	left: -38px;
	width: 25px;
	height: 25px;
	background: var(--brown-color-dark);
	color: var(--bs-light);
	text-align: center;
	line-height: 25px;
	font-size: 0.9em;
	border-radius: 50%;
}

@media (min-width: 992px) {
ol {
	margin: 0 0 0 5px !important;
}
}
/*
* ----------------------------------------------------------------------------------------
* Background
* ----------------------------------------------------------------------------------------
*/
.background {
	background-color: #F9F6F3;
	opacity: 0.8;
	background-size: 10px 10px;
	background-image: repeating-linear-gradient(45deg, #F9F6F3 0, #F9F6F3 1px, #f8f0e8 0, #f8f0e8 50%);
}
.backgroundS {
	background-color: var(--brown-color-dark);
	opacity: 0.8;
	background-size: 10px 10px;
	background-image: repeating-linear-gradient(45deg, var(--brown-color-light) 0, var(--brown-color-light) 1px, var(--brown-color-dark) 0, var(--brown-color-dark) 50%);
}
/*
* ----------------------------------------------------------------------------------------
* Page
* ----------------------------------------------------------------------------------------
*/
.page {
	padding: 50px 0;
}
.page span {
	color: var(--bs-dark);
	font-size: 14px;
	font-weight: 500;
	padding-right: 25px;
	display: inline-block;
	margin-bottom: 20px;
}
/*
* ----------------------------------------------------------------------------------------
* Form
* ----------------------------------------------------------------------------------------
*/

#sendform .form-control {
	border: var(--beige-color-dark) 1px solid;
}

@media (min-width: 992px) {
#sendform {
	background-color: var(--beige-color);
}
}
/*
* ----------------------------------------------------------------------------------------
* Recaptcha
* ----------------------------------------------------------------------------------------
*/
.grecaptcha-badge {
	visibility: hidden !important;
}
/*
* ----------------------------------------------------------------------------------------
* Button
* ----------------------------------------------------------------------------------------
*/
.btn-default, .btn-other {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	padding: 14px 30px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	border: none;
	outline: 0;
	box-shadow: none;
	transition: 0.2s transform;
}
.btn-default {
	color: var(--bs-white) !important;
	background: var(--brown-color-dark);
}
.btn-other {
	color: var(--bs-white) !important;
	background: var(--brown-color-light);
}
.btn-default:before {
	content: '';
	position: absolute;
	width: 0;
	height: 104%;
	top: 50%;
	left: 50%;
	background: var(--brown-color-light);
	opacity: 0;
	z-index: -1;
	transform: translateX(-51%) translateY(-51%);
	transition: all 0.4s;
	border-radius: 5px;
}
.btn-other:before {
	content: '';
	position: absolute;
	width: 0;
	height: 104%;
	top: 50%;
	left: 50%;
	background: var(--brown-color-dark);
	opacity: 0;
	z-index: -1;
	transform: translateX(-51%) translateY(-51%);
	transition: all 0.4s;
	border-radius: 5px;
}
.btn-default:hover::before, .btn-other:hover::before {
	width: 106%;
	opacity: 1;
}
.btn-default:disabled, .btn-other:disabled {
	color: var(--bs-gray-500) !important;
	pointer-events: none;
	background-color: var(--bs-gray-200) !important;
	border-color: var(--bs-gray-500) !important;
	opacity: var(--bs-btn-disabled-opacity);
}
/*
* ----------------------------------------------------------------------------------------
* Header & Navbar
* ----------------------------------------------------------------------------------------
*/
.navbar-brand img, .navbar.sticky .navbar-brand img {
	width: 65%;	
}
.navbar .btn {
	color: var(--brown-color);
	border: var(--brown-color) 1px solid !important;
}
.navbar .btn:hover {
	color: var(--bs-white);
	background-color: var(--brown-color) !important;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
	color: var(--brown-color);
}
.navbar.sticky {
	position: fixed;
	transition: 0.4s;
	width: 100%;
	top: 0;
	background: var(--beige-color);
	animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}
.navbar .nav-link.active {
	color: var(--bs-gray-600) !important;
}

@media (min-width: 992px) {
.navbar-brand img {
	width: 100%;	
}	
.navbar .nav-link {
	font-weight: 600;
	margin: 0 0.5em;
}
.navbar .nav-item > .dropdown-menu {
	display: block;
	top: 100%;
	margin-top: 5px;
	transform: rotateX(-75deg);
	transform-origin: 0% 0%;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}
.navbar .nav-item:hover > .dropdown-menu {
	transform: rotateX(0deg);
	visibility: visible;
	transition: .5s;
	opacity: 1;
}
}

@media only screen and (max-width: 992px) {
.navbar-nav {
	width: 100% !important;
}
.dropdown-menu {
	border: none;
}
.navbar-nav .nav-link {
	font-weight: bold;
	padding: 5px 10px;
}
.dropdown .dropdown-toggle {
	width: 100% !important;
	position: relative;
}
.dropdown .dropdown-toggle::after {
	position: absolute;
	top: 0.2em !important;
	right: 0 !important;
	border: none;
	margin-right: 0.5em;
	font-family: "bootstrap-icons";
	content: "\F229";
	color: var(--bs-dark);
}
.dropdown-toggle::after {
	transform: rotate(0deg);
}
.dropdown-toggle.show::after {
	transform: rotate(180deg);
}
}
/*
* ----------------------------------------------------------------------------------------
* Home Carousel
* ----------------------------------------------------------------------------------------
*/
.home-carousel .home-carousel-item {
	height: 700px;
	background-position: 50% 50%;
	background-size: cover;
}

@media (min-width: 991px) {
.home-carousel .text-center {
	width: 60%;
}
}

@media (max-width: 991px) {
.home-carousel .home-carousel-item {
	height: 550px;
}
}

@media (max-width: 575px) {
.home-carousel .home-carousel-item {
	height: 450px;
}
}
.home-carousel .slider-content {
	position: relative;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.3);
}
.home-carousel .carousel-control {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: inline-block;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: transparent;
	opacity: 0;
	filter: alpha(opacity=0);
	text-shadow: none;
	transition: all .25s ease;
	padding: 2px;
	outline: 0;
	border: 0;
}

@media (max-width: 575px) {
.home-carousel .carousel-control {
	display: none !important;
}
}
.home-carousel .slick-dots {
	opacity: 0;
	filter: alpha(opacity=0);
	bottom: 60px;
}
.home-carousel .slick-dots li button::before {
	font-size: 12px;
}
.home-carousel .slick-dots li button:hover:before, .home-carousel .slick-dots li button:focus:before, .home-carousel .slick-dots li.slick-active button:before {
	opacity: 1;
	color: var(--brown-color-dark);
}
.home-carousel .slick-slide {
	outline: 0;
}
.home-carousel:hover .carousel-control, .home-carousel:hover .carousel-control, .home-carousel:hover .slick-dots {
	opacity: 1;
	filter: alpha(opacity=100);
}
.home-carousel .carousel-control.left {
	left: 20px;
	z-index: 1
}
.home-carousel .carousel-control.right {
	right: 20px;
	z-index: 1
}
.home-carousel .carousel-control i {
	background: rgba(0, 0, 0, 0.3);
	color: var(--bs-white);
	line-height: 58px;
	width: 60px;
	height: 60px;
	font-size: 22px;
	border-radius: 0;
	transition: all 500ms ease;
}
.home-carousel .carousel-control i:hover {
	background: var(--brown-color-dark);
	color: var(--bs-white);
}
.home-carousel [data-animation-in] {
	opacity: 0;
}/*
* ----------------------------------------------------------------------------------------
* Сarousel
* ----------------------------------------------------------------------------------------
*/
.carousel .content {
	position: relative;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.3);
}
.carousel .control {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: inline-block;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: transparent;
	opacity: 0;
	filter: alpha(opacity=0);
	text-shadow: none;
	transition: all .25s ease;
	padding: 2px;
	outline: 0;
	border: 0;
}

@media (max-width: 575px) {
.carousel .control {
	display: none !important;
}
}
.carousel .slick-dots {
	opacity: 0;
	filter: alpha(opacity=0);
	bottom: 60px;
}
.carousel .slick-dots li button::before {
	font-size: 12px;
}
.carousel .slick-dots li button:hover:before, .carousel .slick-dots li button:focus:before, .carousel .slick-dots li.slick-active button:before {
	opacity: 1;
	color: var(--brown-color-dark);
}
.carousel .slick-slide {
	outline: 0;
}
.carousel:hover .control, .carousel:hover .control, .carousel:hover .slick-dots {
	opacity: 1;
	filter: alpha(opacity=100);
}
.carousel .control.left {
	left: 20px;
	z-index: 1;
}
.carousel .control.right {
	right: 20px;
	z-index: 1;
}
.carousel .control i {
	background: rgba(0, 0, 0, 0.3);
	color: var(--bs-white);
	line-height: 58px;
	width: 60px;
	height: 60px;
	font-size: 22px;
	border-radius: 0;
	transition: all 500ms ease;
}
.carousel .control i:hover {
	background: var(--brown-color-dark);
	color: var(--bs-white);
}
.carousel [data-animation-in] {
	opacity: 0;
}
/*
* ----------------------------------------------------------------------------------------
* Service
* ----------------------------------------------------------------------------------------
*/

.service {
	border: 1px solid var(--brown-color-light);
	transition: all 0.3s ease-in-out;
}
.service:hover {
	border: 1px solid var(--brown-color-dark);
}
/*
* ----------------------------------------------------------------------------------------
* Gallery
* ----------------------------------------------------------------------------------------
*/

.owl-carousel .item .description, .gallerylist .item .description {
	opacity: 0;
	bottom: -125px;
	transition: all 0.5s ease-in-out;
}
.owl-carousel .item:hover .description, .gallerylist .item:hover .description {
	opacity: 1;
	bottom: 0;
}

@media only screen and (min-width:770px) and (max-width: 1400px) {
.owl-carousel .item:hover .description {
	bottom: -180px;
}
}
/*
* ----------------------------------------------------------------------------------------
* Owl Carousel
* ----------------------------------------------------------------------------------------
*/

.gallery {
	position: relative;
	z-index: 1;
}
.gallery:after {
	position: absolute;
	top: 10px;
	right: 0;
	content: "";
	width: 30%;
	height: 90%;
	background-color: var(--beige-color);
	z-index: -1;
}
.gallery .owl-nav {
	display:none;
}
.gallery .owl-nav .owl-prev, .gallery .owl-nav .owl-next {
	margin: 0 5px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bs-white);
	background: var(--brown-color-dark);
	border-radius: 40px;
	font-size: 20px;
	transition: .5s;
}
.gallery .owl-nav .owl-prev:hover, .gallery .owl-nav .owl-next:hover {
	background: var(--brown-color-light);
}

@media (min-width: 992px) {
.gallery .owl-nav {
	position: absolute;
	top: -35px;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	flex-direction: row;
}
}


/*
* ----------------------------------------------------------------------------------------
* News
* ----------------------------------------------------------------------------------------
*/
.news .item img, .newslist .item img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.news .item:hover img, .newslist .item:hover img {
	opacity: 0.5;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.news {
	position: relative;
	z-index: 1;
}
.news:after {
	position: absolute;
	top: 10px;
	right: 0;
	content: "";
	width: 30%;
	height: 90%;
	background-color: var(--beige-color);
	z-index: -1;
}
.news .owl-carousel .item {
	background-position: 50% 50%;
	background-size: cover;
}
.news .owl-nav {
	display: none;
}
.news .owl-nav .owl-prev, .news .owl-nav .owl-next {
	margin: 0 5px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bs-white);
	background: var(--brown-color-dark);
	border-radius: 40px;
	font-size: 20px;
	transition: .5s;
}
.news .owl-nav .owl-prev:hover, .news .owl-nav .owl-next:hover {
	background: var(--brown-color-light);
}

@media (min-width: 992px) {
.news .owl-nav {
	position: absolute;
	top: -35px;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	flex-direction: row;
}
}

/*
* ----------------------------------------------------------------------------------------
* Button To Top
* ----------------------------------------------------------------------------------------
*/
#button-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	height: 50px;
	width: 50px;
	display: none;
	place-items: center;
	border-radius: 50%;
	cursor: pointer;
	z-index: 999;
}
#button-to-top-progress-value {
	height: calc(100% - 15px);
	width: calc(100% - 15px);
	background-color: var(--bs-white);
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 1.5em;
	color: var(--bs-dark);
}
/*
* ----------------------------------------------------------------------------------------
* Message
* ----------------------------------------------------------------------------------------
*/

.message-bt {
	background: var(--brown-color-dark);
	border: 2px solid var(--brown-color-dark);
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	height: 50px;
	width: 50px;
	position: fixed;
	right: 20px;
	bottom: 90px;
	z-index: 1000;
	transition: .3s;
}
.message-bt .text-call {
	text-align: center;
	height: 50px;
	width: 50px;
	overflow: hidden;
	display: block;
}
.message-bt:hover {
	z-index: 1;
	background: var(--bs-light);
	color: transparent;
	transition: .3s;
}
.message-bt i {
	color: var(--bs-light);
	font-size: 30px;
	line-height: 45px;
	transition: .5s ease-in-out;
	margin-top: 2px;
	margin-right: 3px;
}
.message-bt:hover i {
	color: var(--brown-color-dark);
	transition: .3s;
}
.message-bt i {
	animation: 1200ms ease 0s normal none 1 running shake;
	animation-iteration-count: infinite;
	-webkit-animation: 1200ms ease 0s normal none 1 running shake;
	-webkit-animation-iteration-count: infinite;
}

@media only screen and (max-width:767px) {
.message-bt {
	bottom: 160px;
}
}
/*
* ----------------------------------------------------------------------------------------
* Callback
* ----------------------------------------------------------------------------------------
*/
.callback-bt {
	background: var(--bs-danger);
	border: 2px solid var(--bs-danger);
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	height: 50px;
	width: 50px;
	position: fixed;
	right: 20px;
	bottom: 160px;
	z-index: 1000;
	transition: .3s;
}
.callback-bt .text-call {
	text-align: center;
	height: 50px;
	width: 50px;
	overflow: hidden;
	display: block;
}
.callback-bt:hover {
	z-index: 1;
	background: var(--bs-light);
	color: transparent;
	transition: .3s;
}
.callback-bt i {
	color: var(--bs-light);
	font-size: 30px;
	transition: .3s;
	line-height: 45px;
	transition: .5s ease-in-out;
}
.callback-bt:hover i {
	color: var(--bs-danger);
	transition: .3s;
}
.callback-bt i {
	animation: 1200ms ease 0s normal none 1 running shake;
	animation-iteration-count: infinite;
	-webkit-animation: 1200ms ease 0s normal none 1 running shake;
	-webkit-animation-iteration-count: infinite;
}

@media only screen and (max-width:767px) {
.callback-bt {
	bottom: 90px;
}
}

/*
* ----------------------------------------------------------------------------------------
* Animations icon
* ----------------------------------------------------------------------------------------
*/

@keyframes shake {
0% {
 transform: rotateZ(0deg);
 -ms-transform: rotateZ(0deg);
 -webkit-transform: rotateZ(0deg);
}
10% {
 transform: rotateZ(-30deg);
 -ms-transform: rotateZ(-30deg);
 -webkit-transform: rotateZ(-30deg);
}
20% {
 transform: rotateZ(15deg);
 -ms-transform: rotateZ(15deg);
 -webkit-transform: rotateZ(15deg);
}
30% {
 transform: rotateZ(-10deg);
 -ms-transform: rotateZ(-10deg);
 -webkit-transform: rotateZ(-10deg);
}
40% {
 transform: rotateZ(7.5deg);
 -ms-transform: rotateZ(7.5deg);
 -webkit-transform: rotateZ(7.5deg);
}
50% {
 transform: rotateZ(-6deg);
 -ms-transform: rotateZ(-6deg);
 -webkit-transform: rotateZ(-6deg);
}
60% {
 transform: rotateZ(5deg);
 -ms-transform: rotateZ(5deg);
 -webkit-transform: rotateZ(5deg);
}
70% {
 transform: rotateZ(-4.28571deg);
 -ms-transform: rotateZ(-4.28571deg);
 -webkit-transform: rotateZ(-4.28571deg);
}
80% {
 transform: rotateZ(3.75deg);
 -ms-transform: rotateZ(3.75deg);
 -webkit-transform: rotateZ(3.75deg);
}
90% {
 transform: rotateZ(-3.33333deg);
 -ms-transform: rotateZ(-3.33333deg);
 -webkit-transform: rotateZ(-3.33333deg);
}
100% {
 transform: rotateZ(0deg);
 -ms-transform: rotateZ(0deg);
 -webkit-transform: rotateZ(0deg);
}
}
 @-webkit-keyframes shake {
0% {
 transform: rotateZ(0deg);
 -ms-transform: rotateZ(0deg);
 -webkit-transform: rotateZ(0deg);
}
10% {
 transform: rotateZ(-30deg);
 -ms-transform: rotateZ(-30deg);
 -webkit-transform: rotateZ(-30deg);
}
20% {
 transform: rotateZ(15deg);
 -ms-transform: rotateZ(15deg);
 -webkit-transform: rotateZ(15deg);
}
30% {
 transform: rotateZ(-10deg);
 -ms-transform: rotateZ(-10deg);
 -webkit-transform: rotateZ(-10deg);
}
40% {
 transform: rotateZ(7.5deg);
 -ms-transform: rotateZ(7.5deg);
 -webkit-transform: rotateZ(7.5deg);
}
50% {
 transform: rotateZ(-6deg);
 -ms-transform: rotateZ(-6deg);
 -webkit-transform: rotateZ(-6deg);
}
60% {
 transform: rotateZ(5deg);
 -ms-transform: rotateZ(5deg);
 -webkit-transform: rotateZ(5deg);
}
70% {
 transform: rotateZ(-4.28571deg);
 -ms-transform: rotateZ(-4.28571deg);
 -webkit-transform: rotateZ(-4.28571deg);
}
80% {
 transform: rotateZ(3.75deg);
 -ms-transform: rotateZ(3.75deg);
 -webkit-transform: rotateZ(3.75deg);
}
90% {
 transform: rotateZ(-3.33333deg);
 -ms-transform: rotateZ(-3.33333deg);
 -webkit-transform: rotateZ(-3.33333deg);
}
100% {
 transform: rotateZ(0deg);
 -ms-transform: rotateZ(0deg);
 -webkit-transform: rotateZ(0deg);
}
}
/*
* ----------------------------------------------------------------------------------------
* Rating
* ----------------------------------------------------------------------------------------
*/
.counterW {
	margin: 0px auto !important;
}
.ratingW {
	position: relative;
	margin: 10px 0 0;
}
.ratingW li {
	display: inline-block;
	margin: 0px;
}
.ratingW li a {
	display: block;
	position: relative;
}
.star {
	position: relative;
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: .7em;
	margin-right: .7em;
	margin-bottom: 1.2em;
	border-right: .3em solid transparent;
	border-bottom: .7em solid #ddd;
	border-left: .3em solid transparent;
	/* Controlls the size of the stars. */
	font-size: 24px;
}
.star:before, .star:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: .6em;
	left: -1em;
	border-right: 1em solid transparent;
	border-bottom: .7em solid #ddd;
	border-left: 1em solid transparent;
	-webkit-transform: rotate(-35deg);
	transform: rotate(-35deg);
}
.star:after {
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
}
.ratingW li.on .star {
	position: relative;
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: .7em;
	margin-right: .7em;
	margin-bottom: 1.2em;
	border-right: .3em solid transparent;
	border-bottom: .7em solid #FC0;
	border-left: .3em solid transparent;
	font-size: 24px;
}
.ratingW li.on .star:before, .ratingW li.on .star:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: .6em;
	left: -1em;
	border-right: 1em solid transparent;
	border-bottom: .7em solid #FC0;
	border-left: 1em solid transparent;
	-webkit-transform: rotate(-35deg);
	transform: rotate(-35deg);
}
.ratingW li.on .star:after {
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
}
