/* === style.css === */
/* 1. Foundation Reset + Box-Sizing */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
* {
  outline: none;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  color: #333333;
  margin: 0 0 15px;
  font-weight: 700;
  line-height: 1.1;
}
p {
  margin: 0 0 25px;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
/* 2. Grid System */
.row {
  width: 1182px;
  max-width: 100%;
  clear: both;
  margin: 0 auto;
}
.row::before, .row::after {
  content: "";
  display: table;
}
.row::after {
  clear: both;
}
.row .row {
  width: auto;
  max-width: none;
  min-width: 0;
  margin: 0 -15px;
}
.row.collapse .column, .row.collapse .columns {
  padding: 0;
}
.column, .columns {
  float: left;
  min-height: 1px;
  padding: 0 15px;
  position: relative;
}
.column.centered, .columns.centered {
  float: none;
  margin: 0 auto;
}
[class*="column"] + [class*="column"]:last-child, [class*="column"] + [class*="column"].end {
  float: left;
}
.one, .row .one {
  width: 8.33333%;
}
.two, .row .two {
  width: 16.66667%;
}
.three, .row .three {
  width: 25%;
}
.four, .row .four {
  width: 33.33333%;
}
.five, .row .five {
  width: 41.66667%;
}
.six, .row .six {
  width: 50%;
}
.seven, .row .seven {
  width: 58.33333%;
}
.eight, .row .eight {
  width: 66.66667%;
}
.nine, .row .nine {
  width: 75%;
}
.ten, .row .ten {
  width: 83.33333%;
}
.eleven, .row .eleven {
  width: 91.66667%;
}
.twelve, .row .twelve {
  width: 100%;
}
/* 3. Header & Logo (merged) */
.header {
  padding: 0; /* reset default padding */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background: #fff;
  border-bottom: 4px solid #dcbbb0;
  /* any other header properties you had */
}
.header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20.3%;
  height: 100%;
  background: #333333;
  display: none; /* will be toggled on in responsive.css */
}
.menu-top {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
  background: #fff;
  padding: 15px 0 22px;
}
.logo {
  float: left;
  width: 268px;
  max-width: 100%;
  padding-top: 8px;
  text-align: center;
  padding-bottom: 3px;
}
.logo ul {
  float: left;
  width: 100%;
  padding-top: 1px;
}
.logo li {
  display: inline-block;
  padding: 0 3px;
}
.logo a {
  color: #333333;
  font-size: 22px;
  line-height: 20px;
}
.logo a:hover {
  color: #555;
}
.logo img {
  display: flex;
  align-items: center;
}
/* 4. Owl Carousel (merged nav arrows) */
.owl-stage-outer {
  overflow: hidden;
}
#owl, #owl2, #owl3 {
  position: relative;
  z-index: 1;
}
#owl {
  padding-bottom: 36px;
  text-align: left;
}
#owl2 {
  margin-bottom: 0;
  text-align: center;
  padding: 0;
}
#owl3 {
  padding: 0 25px;
  margin-bottom: 0;
}
#owl .owl-item, #owl2 .owl-item, #owl3 .owl-item {
  float: left;
}
#owl .item, #owl2 .item, #owl3 .item {
  position: relative;
  padding: 0;
}
#owl2 .item {
  padding: 0 8px;
  text-align: center;
}
#owl3 .item {
  padding: 0 25px;
}
#owl .item .tx, #owl2 .item .tx {
  transition: .5s ease;
  min-height: 60px;
  padding-right: 5px;
}
#owl .item a.btn, #owl2 .item a.btn {
  margin-top: 23px;
}
.owl-wrapper-outer {
  overflow: hidden;
}
.owl-nav {
  position: absolute;
  left: 0;
  top: 50%;
  bottom: inherit;
  margin-top: -30px;
  width: 100%;
  z-index: 999;
}
#owl .owl-prev, #owl .owl-next, #owl2 .owl-prev, #owl2 .owl-next {
  position: absolute;
  display: block;
  overflow: hidden;
  text-indent: -999px;
  width: 31px;
  height: 59px;
  background-image: url(/images/slid-arrow.png);
  cursor: pointer;
  border: 0px !important;
}
#owl .owl-prev {
  left: -50px;
  background-position: left;
}
#owl .owl-next {
  right: -50px;
  background-position: right;
}
#owl2 .owl-prev {
  left: -70px;
  background-position: left;
}
#owl2 .owl-next {
  right: -70px;
  background-position: right;
}
.owl-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding-top: 0;
  z-index: 999 !important;
}
.owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 20px;
  background: #a084c4;
  cursor: pointer;
}
.owl-dot:first-child {
  margin-left: 0;
}
.owl-dot:hover, .owl-dot.active {
  background: #fff;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
/* 5. Main Styles */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body {
  margin: 0;
  float: left;
  width: 100%;
  color: #555555;
  font-size: 14px;
  line-height: 1.7;
  background: #fff;
  padding-top: 90px;
  font-family: 'Open Sans', sans-serif;
}
.clr {
  clear: both;
  float: left;
  width: 100%;
}
.header {
  /* already defined above */
}
.menu-top {
  /* already defined above */
}
.main-menu {
  float: right;
  padding-top: 15px;
}
.main-menu ul {
  float: left;
}
.main-menu li {
  float: left;
  font-size: 16px;
  font-weight: 700;
  padding: 0 26px 0 24px;
  background: url(/images/menu_li_bg.png) no-repeat center right;
}
.main-menu li:last-child {
  background: none;
  padding-right: 0;
}
.main-menu li a {
  color: #333333;
}
.main-menu li:hover a {
  color: #dc4036;
}
.banner {
  float: left;
  width: 100%;
  padding: 42px 0;
  min-height: 544px;
  text-align: right;
  background: #ebeae6 url(/images/new-banner2.jpg) no-repeat center top;
  background-size: cover;
}
.banner-content {
  float: right;
  padding-right: 133px;
  margin-top: -15px;
}
.banner span, .banner strong {
  float: left;
  width: 100%;
  line-height: 1.0;
  font-weight: 700;
}
.banner span {
  color: #333333;
  font-size: 49px;
}
.banner em {
  color: #53c67a;
  font-style: normal;
  font-size: 46px;
  text-transform: uppercase;
}
.banner b {
  color: #dc4036;
  font-style: normal;
  font-size: 46px;
}
.banner strong {
  color: #dc4036;
  font-size: 106px;
  padding-left: 15px;
}
.whitearea {
  float: left;
  width: 100%;
  padding-top: 50px;
}
.main-content {
  float: left;
  width: 100%;
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}
.main-left {
  float: left;
  width: 23%;
  padding-top: 126px;
  margin-bottom: 20px;
}
.main-right {
  float: left;
  width: 77%;
  position: relative;
  padding: 0 30px 0 20px;
  margin-bottom: 30px;
}
.main-right img {
  float: right;
  border: 1px solid #ebebeb;
}
.main-right > div {
  position: absolute;
  top: 38px;
  left: 20px;
  right: 16%;
  min-height: 280px;
  padding: 16px 22px;
  background: rgba(242, 242, 242, 0.95);
}
.main-right p {
  margin-bottom: 20px;
}
.main-content:nth-child(even) .main-left {
  float: right;
}
.main-content:nth-child(even) .main-right img {
  float: left;
}
.main-content:nth-child(even) .main-right > div {
  left: 32%;
  right: 20px;
}
.gmap {
  float: left;
  width: 100%;
}
.gmap iframe {
  float: left;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
}
.step-arrow1 {
  top: 42px;
  left: -75px;
  position: absolute;
}
.step-arrow2 {
  top: -13px;
  right: -62px;
  position: absolute;
}
.geryaraea {
  float: left;
  width: 100%;
  padding: 30px 0;
  background: #f2f2f2;
}
.geryaraea h1 {
  text-transform: uppercase;
  margin-bottom: 28px;
}
.featured {
  float: left;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 0px;
}
.featured h1 {
  font-size: 46px;
  text-align: center;
  margin-bottom: 5px;
}
.featured span {
  color: #dc4036;
  font-weight: 400;
}
.featured ul {
  float: left;
  width: 100%;
  padding-top: 22px;
}
.featured li {
  float: left;
  width: 27%;
  margin-bottom: 30px;
  position: relative;
}
.featured li.mid {
  width: 46%;
  padding: 0 9.5%;
}
.steps {
  float: left;
  width: 100%;
}
.steps span {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto 22px;
  padding: 19px;
  border-radius: 50%;
  background: #dc4036;
}
.steps img {
  display: block;
  margin: 0 auto 24px;
}
.steps h3 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 8px;
}
span.get {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}
span.get a {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  padding: 4px 22px;
  border: 1px solid #333;
  background: #333;
  border-radius: 8px;
}
span.get a:hover {
  background: #555;
}
.hometest {
  float: left;
  width: 100%;
  padding: 45px 0;
}
.hometest img {
  display: block;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 1px solid #bfbfbf;
}
.hometest span {
  display: inline-block;
  position: relative;
  font-weight: 700;
  padding: 0 0 33px 10px;
}
.hometest span::before {
  content: "-";
  position: absolute;
  left: 0;
  bottom: 0;
  color: #555555;
}
#owl .item {
  text-align: center;
  padding: 0 18px;
}
a.viewmore {
  display: inline-block;
  color: #fff;
  padding: 11px;
  width: 185px;
  border-radius: 5px;
  background: #dc4036;
}
a.viewmore:hover {
  background: #555;
}
.blue-wrapper {
  float: left;
  width: 100%;
  position: relative;
  text-align: center;
  padding: 157px 0 134px;
  background: #000326 url(/images/blue.jpg) no-repeat center top;
  background-size: cover;
}
.blue-wrapper h2 {
  display: inline-block;
  color: #fff;
  font-size: 90px;
  font-weight: 300;
  letter-spacing: 2px;
  padding: 24px 15px 22px;
  font-family: 'Kalam', cursive;
  background: rgba(0, 3, 36, 0.78);
  text-shadow: 3px 5px 8px rgba(0, 0, 0, 0.7);
}
.footer {
  float: left;
  width: 100%;
  padding: 45px 0;
  background: #333333;
  color: #fff;
}
.footer .five {
  width: 37.66667%;
}
.footer .four {
  width: 34.33333%;
}
.footer .three {
  width: 28%;
}
h3.ft-heading {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 32px;
  color: #fff;
}
.ft-details, .ft-menu, .ft-social {
  float: left;
  width: 100%;
  padding-bottom: 20px;
}
.ft-details li, .ft-menu li, .ft-social li {
  float: left;
  width: 100%;
  margin-bottom: 25px;
}
.ft-details li {
  position: relative;
  padding-left: 46px;
}
.ft-details .fa {
  position: absolute;
  left: 0;
  font-size: 25px;
}
.ft-details .fa-envelope-o {
  font-size: 19px;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  text-decoration: underline;
}
.ft-social a {
  display: inline-block;
  width: 37px;
  height: 37px;
  padding: 7px 2px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: 14px;
  margin-bottom: 17px;
}
.ft-social .fa {
  font-size: 20px;
}
.ft-social a:hover {
  background: #555;
}
.ft-bottom {
  float: left;
  width: 100%;
  padding: 18px 15px 20px;
  text-align: center;
  font-size: 14px;
  color: #7f7f7f;
  border-top: 1px solid #5c5c5c;
}
.scrollup {
  position: fixed;
  bottom: 10px;
  right: 15px;
  width: 40px;
  height: 40px;
  background-color: #dc4036;
  z-index: 999;
  display: none;
  cursor: pointer;
}
.scrollup .fa {
  position: relative;
  left: 11px;
  top: 8px;
  color: #fff;
  font-size: 18px;
  transition: all .3s ease;
}
.scrollup:hover .fa {
  top: 5px;
}
.g-recaptcha {
	float: left;
	margin-bottom: 20px;
}
input.error, textarea.error {
  border: 1px solid #ccc !important;
  background: #ccc !important;
}
label.error {
  display: none !important;
}
#thankyou {
  display: none;
  text-align: center;
}
#thankyou span {
  display: inline-block;
  background: green;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}
#mobile-footer-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #dc4036;
  z-index: 9;
}
#mobile-footer-menu .col-xs-3 {
  width: 25%;
  float: left;
}
#mobile-footer-menu .col-xs-4 {
  width: 50%;
  float: left;
}
#mobile-footer-menu .item {
  float: left;
  width: 25%;
  text-align: center;
  padding: 12px 0 10px;
  border-right: 1px solid #fff;
}
#mobile-footer-menu .item:last-child {
  border-right: 0;
}
#mobile-footer-menu a {
  color: #fff;
  text-decoration: none;
}
#mobile-footer-menu .item:hover {
  background: #555;
}
#mobile-footer-menu .item.active {
  background: #555;
}
.thankyou-banner {
  position: relative;
  float: left;
  width: 100%;
  min-height: 776px;
  margin-top: -4px;
  text-align: center;
  background: #ebeae6 url(/images/banner_767.jpg) no-repeat center top;
  background-size: cover;
  border-bottom: 12px solid #292828;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.overlay-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding: 50px 15px;
}
.overlay-content p {
  color: #fff;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 45px;
}
.overlay-content strong {
  color: #ff4b40;
}
.overlay-content span.get a {
  padding: 4px 18px;
  background: #ff4b40;
  border: 2px solid #ff4b40;
}
.overlay-content span.get a:hover {
  background: none;
}
.legal-banner {
  float: left;
  width: 100%;
  position: relative;
  min-height: 1500px;
  text-align: center;
  border-bottom: 12px solid #292828;
  background-size: cover;
}
.legal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.legal-overlay-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding: 50px 15px;
}
.legal-overlay-content p {
  float: left;
  width: 75%;
  color: #ffffff !important;
  font-size: 14px;
  line-height: 1.7;
  font-family: 'Open Sans', sans-serif;
}
.video-container {
  position: relative;
  overflow: hidden;
  padding: 30px 0 56.25%;
  height: 0;
}
.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-wrapper {
  float: right;
  position: relative;
  z-index: 11;
}
.topright {
  padding: 12px 15px;
  margin-left: 0;
}
.topright {
  float: right;
  padding-top: 24px;
  position: relative;
  text-align: center;
  background: #333333;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-left: 60px;
  text-transform: uppercase;
}
.topright::before {
  content: "";
  width: 40px;
  height: 100%;
  border-top: 86px solid transparent;
  border-bottom: 0 solid transparent;
  border-right: 40px solid #333333;
  position: absolute;
  top: 0px;
  left: -39px;
}
.topright strong {
  color: #dc4036;
  font-size: 18px;
  line-height: 1.1;
  display: block;
}
.topright a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
}
.topright a:hover {
  text-decoration: none;
}
.localnews {
  padding-top: 20px;
  float: left;
}
.yellow-area {
  float: left;
  width: 100%;
  background: #e99319;
  padding: 40px 0 30px;
  text-align: center;
}
.yellow-area h3 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  padding-bottom: 7px;
  display: inline-block;
  margin-bottom: 20px;
  background: url(/images/bt.png) repeat-x left bottom;
  text-shadow: 2px 2px 1px #4c4c4c, 2px -2px 1px #4c4c4c, -2px 2px 1px #4c4c4c, -2px -2px 1px #4c4c4c, 2px 0px 1px #4c4c4c, 0px 2px 1px #4c4c4c, -2px 0px 1px #4c4c4c, 0px -2px 1px #4c4c4c;
}
.yellow-area strong {
  color: #fff;
  font-size: 36px;
  padding-bottom: 12px;
  line-height: 1.2;
  display: inline-block;
  text-shadow: 2px 2px 1px #4c4c4c, 2px -2px 1px #4c4c4c, -2px 2px 1px #4c4c4c, -2px -2px 1px #4c4c4c, 2px 0px 1px #4c4c4c, 0px 2px 1px #4c4c4c, -2px 0px 1px #4c4c4c, 0px -2px 1px #4c4c4c;
}
.yellow-area b {
  font-weight: 800;
}
.yellow-area p {
  font-size: 20px;
  display: block; /* or inline-block if needed */
  margin-left: auto;
  margin-right: auto;
  float: none; /* remove float if it’s there */
  width: 45%;
}
.more-videos {
  float: left;
  width: 100%;
  margin-bottom: 50px;
  border: solid;
  border-color: rgba(47, 47, 47, 1.00) !important;
  border-width: 2px !important;
  border-radius: 6px !important;
}
.videoalign {
  display: flex;
  align-items: center;
}
.red-area {
  float: left;
  width: 100%;
  position: relative;
  padding-top: 45px;
  background: #dc4036;
  padding-bottom: 40px;
}
.red-area::after {
  left: 0;
  bottom: 0;
  z-index: 1;
  content: '';
  width: 100%;
  height: 12px;
  position: absolute;
  box-shadow: 0px 5px 12px 0px rgba(10, 11, 11, 0.31);
}
.popup-news {
  float: left;
  width: 100%;
  position: relative;
  padding: 60px 50px;
  background: linear-gradient(to top left, #DC4036 1%, #DC4036 17%, #FC655B 23%, #DC4036 37%, #FFB03F 65%, #FFD08D 79%, #FFB03F 84%, #ffb03f 100%);
  border-radius: 10px;
  border: 10px solid #fff;
  margin-bottom: 40px;
}
.red-area h3, .popup-news h3 {
  color: #fff;
  font-size: 25px;
  text-align: center;
  margin-bottom: 23px;
  line-height: 1.3;
  font-style: italic;
}
.popup-news h3 {
  color: #1c1c1c;
}
.popup-news strong {
  font-weight: 800;
}
.popup-news ul {
  margin: 0 auto;
  width: 900px;
  max-width: 100%;
}
.red-area ul {
  margin: 0 auto;
  width: 972px;
  max-width: 100%;
}
.popup-news li {
  width: 50%;
  float: left;
  display: inline-block;
  padding: 0 12px 25px;
}
.red-area li {
  width: 33.333%;
  float: left;
  padding: 0 12px 10px;
}
.popup-news li.fullwidth, .red-area li.fullwidth {
  width: 100%;
  text-align: center;
}
.popup-news input[type="text"], .popup-news input[type="email"], .red-area input[type="text"], .red-area input[type="email"] {
  margin: 0;
  float: left;
  width: 100%;
  height: 41px;
  color: #424242;
  font-size: 14px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  border: 1px solid #cd9035;
  font-family: 'Montserrat', sans-serif;
}
.red-area input[type="text"], .red-area input[type="email"] {
  border: 1px solid #b1352d;
}
.popup-news .g-recaptcha {
  float: left;
  margin: 0;
}
.red-area .g-recaptcha {
  float: left;
  width: auto;
  margin: 0;
}
.popup-news input[type="submit"], .red-area input[type="submit"] {
  width: 115px;
  height: 41px;
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  background: #000;
  padding: 6px 10px;
  border-radius: 5px;
  margin: 0 auto;
  border: 1px solid #b1352d;
  font-family: 'Montserrat', sans-serif;
}
.popup-news input[type="submit"]:hover, .red-area input[type="submit"]:hover {
  background: #333;
}
#test-popup {
  width: 900px;
  max-width: 100%;
  margin: 40px auto;
  position: relative;
}
.recent-video {
    margin: 0 auto;
    width: 885px;
    max-width: 100%;
}

.red-area input[type="text"], .red-area input[type="email"] {
    font-family: 'Montserrat', sans-serif;
}

.red-area .g-recaptcha {
    margin: 0;
}

.featured li {
    position: relative;
}

.step-arrow1 {
    top: 42px;
    left: -75px;
    position: absolute;
}

.step-arrow2 {
    top: -13px;
    right: -62px;
    position: absolute;
}

.ft-menu li {
    position: relative;
    padding-left: 10px;
}
.ft-menu li::before {
    content: '-';
    position: absolute;
    left: 0;
}

.ft-bottom a {
    color: #7f7f7f;
}
.ft-bottom a:hover {
    color: #1D3AAF;
    text-decoration: none;
}
/*new css*/
.pricing-head .price {
    background: #fcfcfc;
}
.btn-group .btn {
    padding: 6px 12px;
    cursor: pointer;
}
.pricing .pricing-details:nth-child(even) h4 {
    background: #f2f2f2;
}
.pricing-details .price {
    font-size: 16px;
    text-align: left;
    margin: 0;
    padding: 3px 7px;
}
.pricing-content .fa-times-circle-o {
    color: #f25c62;
}
.btn-u {
    background: #3498db;
}
.btn-u {
    border: 0;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    padding: 10px 16px;
    position: relative;
    background: #333333;
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
}
.btn-u:hover {
    background: #555;
}
.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
.pricing-head .price {
    font-size: 50px !important;
}
.btn-group-vertical>.btn, .btn-group>.btn {
    position: relative;
    float: left;
}
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0px;
}
.pricing {
    z-index: 0;
}
.header {
    z-index: 999999;
}
.logo li a {
    color: #333333;
    font-size: 22px;
    line-height: 20px;
}
.logo li a:hover {
    color: #555;
}
.banner {
    min-height: 650px;
    background: #ebeae6 url(/images/banner_767.jpg) no-repeat center bottom;
    background-size: cover;
}
.featured {
    padding-top: 40px;
    padding-bottom: 48px;
}
.red-area::after, .blue-wrapper::after {
    left: 0;
    bottom: 0;
    z-index: 1;
    content: '';
    width: 100%;
    height: 12px;
    position: absolute;
    box-shadow: 0px 5px 12px 0px rgba(10, 11, 11, 0.31);
}
.red-area h3 {
    text-transform: uppercase;
}
.red-area ul {
    margin: 0 auto;
    width: 900px;
    max-width: 100%;
}
.red-area li.fullwidth {
    width: 100%;
    text-align: center;
}
.slideshow {
    float: left;
    width: 100%;
    padding: 50px 0;
    text-align: center;
}
#owl .owl-prev, #owl .owl-next {
    width: 31px;
    height: 59px;
    background-image: url(/images/slid-arrow.png);
}
#owl .owl-prev {
    margin-left: 0;
}
#owl .owl-next {
    margin-right: 0;
}
a.viewmore {
    width: 185px;
    padding: 11px;
    border-radius: 5px;
    background: #dc4036;
    color: #fff;
    display: inline-block;
}
.blue-wrapper {
    background: #000326 url(/images/blue.jpg) no-repeat center top;
    background-size: cover;
}
.geryaraea {
    padding: 0;
}
.localnews {
    float: left;
    padding-top: 18px;
}
.localnews img {
    float: left;
    margin-right: 28px;
}
.topright {
    padding-left: 4px;
}
.start-here {
	float: left;
	width: 100%;
	padding-bottom: 50px;
}
.start-here h2 {
	font-size: 68px;
	margin-bottom: 40px;
}
.start-here h2 span {
	color: #dc4036;
	font-weight: 400;
}
.start-here input[type="text"] {
	float: left;
	width: 100%;
	height: 46px;
	color: #999999;
	font-size: 14px;
	margin: 0 0 20px;
	border-radius: 0;
	padding: 10px 15px;
	background: none;
	border: 1px solid #d4d4d4;
}
.st-form {
	float: left;
	width: 100%;
}
.st-form > div {
	float: left;
	width: 48.5%;
}
.st-form > div:last-child {
	float: right;
}
.start-here textarea {
	float: left;
	width: 100%;
	resize: none;
	height: 130px;
	color: #999999;
	font-size: 14px;
	margin: 0 0 20px;
	border-radius: 0;
	padding: 10px 15px;
	background: none;
	border: 1px solid #d4d4d4;
}
.start-here input[type="submit"] {
	border: 0;
	float: left;
	width: 100%;
	color: #fff;
	height: 45px;
	padding: 10px;
	display: block;
	margin: 0 auto;
	font-size: 18px;
	cursor: pointer;
	border-radius: 0;
	font-weight: 700;
	background: #dc4036;
}
.start-here input[type="submit"]:hover {
	background: #555;
}
