@font-face {
   font-family: Spectral SC;
   src: url(../fonts/spectralsc-extrabold2.woff2) format('woff2'),
   url('../fonts/spectralsc-extrabold2.woff') format('woff');
}
* {
  padding:0;
  margin:0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none !important;
}
span, a, a:hover {
    display: inline-block;
    text-decoration: none;
}
body {
    color: #00000a;
    line-height: 1.3;
    font-weight: 400;
    font-size: 14px;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	line-height: 1.7em;
}
h1, h2, h3, h4, h5 {
	font-family: 'Spectral SC', serif;
	color: #C4A04C;
	background:-ms-linear-gradient( to bottom, #c39738, #D8A842, #c39738);
	background:-o-linear-gradient( to bottom, #c39738, #D8A842, #c39738);
	background:linear-gradient( to bottom, #c39738 0%, #D8A842 50%, #c39738 100%);
	filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr='#c39738', endColorstr='#D8A842');
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
	h1, h2, h3, h4, h5 {
		background:transparent;
	}
}
h1 { font-size:250%; margin-bottom:10px; margin-top:10px; line-height: 1em; }
h2 { font-size:200%; margin-bottom:10px; margin-top:10px; }
h3 { font-size:180%; margin-bottom:10px; margin-top:10px; }
p { 
    margin:1em 0 1em 0;
}
.left {  display:block; float:left; }
.right {  display:block; float:right; }
.center { margin:0 auto; }
.button {
	padding:5px;
	text-transform:uppercase;
	color:#00000a;
	background: #CCA745;
	border:0;
	min-width: 100px;
    height: 30px;
    z-index: 1;
    line-height: 20px;
    cursor: pointer;
	text-align:center;
	margin: 5px;
}
.button:hover {
	background: linear-gradient(to right, #FFDA88 0%, #FDF2BB 50%, #FFDA88 100%);
}
.btn-180 { width:180px; }
.main { height:100vh; }
.ms_header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/bg2.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 100%;
    z-index:0;
}
.ms_page {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(../img/page-bg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 100%;
    z-index:0;
}
.ms_contacts {
    background:url(../img/contact-bg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 100%;
    z-index:0;
}
.logo { 
    float:left;
    padding:10px 0 10px 0;
    margin:0;
    border:0;	
}
.navbar {
    width: 100%;
    background: transparent;
    z-index: 9;
    min-height: 90px;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	padding: 0 5% 0 5%;
}
.navbar>.container, .navbar>.container-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
	margin-left: auto;
}
@media (min-width: 992px) {
  .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.nav-item { 
    padding:10px 5px 10px 5px;
}
.navbar .navbar-nav .nav-link {
    font-size: 15px;
    color: #eee;
    letter-spacing: .5px;
    margin: 20px 5px 15px 5px;
    -webkit-transition: all .5s;
    transition: all .5s;
	text-transform:uppercase;
	position:relative;
}
.navbar .navbar-nav .nav-link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.navbar .navbar-nav .nav-link:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}	
.navbar .navbar-nav .active {
    color: #FFDA88 !important;
}
.navbar .navbar-nav .active:before {
	background-color: #FFDA88;
}
#lang_button {
	text-transform:none;
	color:#D2D2D2;
}
a#menu-icon {
	display: none;
	margin-top:10px;
	width: 40px;
	height: 40px;
	background: transparent url(../img/menu-icon.svg) center;
}
a:hover#menu-icon {
	border-radius: 4px 4px 0 0;
}
/* show mobile menu */
@media only screen and (max-width : 760px) {
	.navbar .container { display:block; }
	a#menu-icon { display:block; float:right; }
	.navbar .navbar-nav, .navbar:active .navbar-nav {
		display: none;
		position: absolute;
		padding: 5px;
		background: rgba(0,0,0,0.7);
		border: 1px solid #ccc;
		right: 20px;
		top: 60px;
		width: 125px;
	}
	.nav-item { padding:0; }
	.navbar .navbar-nav .nav-link { margin:5px; }
	.navbar:hover .navbar-nav { display: block; z-index:100; }
}
.home_sec {
	color:#E3E3E3;
	background: rgba(0,0,0, 0.4);
	border-top:1px solid #4E3D0E;
	border-bottom:1px solid #4E3D0E;
	margin:100px 0 100px 0;
	padding:5% 5%;
	display:block;
	float:left;
	position: relative;
}
.home_sec_left, .home_sec_right { 
    width:50%; 
	display:block; 
	float:left; 
	padding-left:1%; 
	padding-right:1%;
}
@media only screen and (max-width : 640px) {
	.home_sec_left, .home_sec_right { width:100%; }
}
.home_sec_right .home_btn { 
    width: 200px;
    height: 40px;
    z-index: 1;
    line-height: 40px;
    cursor: pointer;
    border: 1px solid transparent;
    border-image: linear-gradient(to right, #FFDA88 0%, #FDF2BB 50%, #FFDA88 100%);
    border-image-slice: 1;
	text-transform: uppercase;
	color:#FFDA88;
	text-align: center;
}
.home_sec_right .home_btn:hover {
	background: linear-gradient(to right, #FFDA88 0%, #FDF2BB 50%, #FFDA88 100%);
	color:#00000a;
}
.home_sec span {
	font-size:18px;
	letter-spacing:6px;
}
.home_sec h1 {
	font-family: 'Spectral SC', serif;
	font-weight:800;
	color: #FFDA88;
	font-size:300%;
	letter-spacing:3px;
}
@media only screen and (max-width : 640px) {
	.home_sec h1 { font-size:190%; }
}
.page_sec {
	background: rgba(225,225,225, 0.7);
	margin:50px 0 100px 0;
	padding:4% 5%;
	display:block;
	float:left;
	width:100%;
	position: relative;
}
.page_sec_dark {
	background: rgba(0,0,0, 0.1);
	color:#eee;
	margin:50px 0 100px 0;
	padding:5% 5%;
	display:block;
	float:left;
	position: relative;
}
.aboutus {}
.practices {}
.news {}
.contacts { width:100%; }
.ms_list {
	list-style-position:inside;
	margin:10px 0 10px 0;
	padding:0 0 0 10px;
}
.ms_list2 {
	list-style-position:inside;
	list-style-type:lower-alpha;
	margin:10px 0 10px 0;
	padding:0 0 0 10px;
}
.footer {
	clear: both;
	position: relative;
	width:100%;
	color:#A5A5A5;
	background: rgba(0,0,0, 0.7);
	padding:1% 5%;
	margin-top:-50px;
	height:50px;
}
@media only screen and (max-width : 640px) {
	.footer { height:60px; }
}
.footerlinks {float:right;}
.footerlinks .nav-link {
	font-size: 13px;
    color: #eee;
    letter-spacing: .5px;
    margin: 5px;
    -webkit-transition: all .5s;
    transition: all .5s;
	text-transform:uppercase;
	position:relative;
	color:#A5A5A5;
	text-decoration:none;
}
.footerlinks .active {
    color: #CFA947 !important;
}
.contacts_area {
	width:50%;
	float:left;
	display:block;
}
@media only screen and (max-width : 640px) {
	.contacts_area { width:100%; }
}
.contact_form {
	width:100%;
	max-width:400px;
}
.r-form-done, .r-form-fail {
    display: none;
    float: left;
    width: 100%;
    color: #A70505;
}
.r-form-done {
	color: #000000;
}
#map {
	width:100%;
	height:400px;
	opacity:0.7;
}
.inputfield, textarea {
	padding:5px;
	margin:5px;
	background:rgba(255,255,255,0.4);
	border:0;
	color: #00000a;
}
.inputfield::placeholder, textarea::placeholder, .inputfield::-webkit-input-placeholder, textarea::-webkit-input-placeholder  {
	color: #00000a;
}
.contact_form .inputfield { width:180px; }
.contact_form textarea { max-width:377px; }