html, body {
  font-size: 1.3vw;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-weight: normal;
  color: #000;
}

body,
input,
textarea,
button {
  font-family: "Lato", sans-serif;
}

* {
  box-sizing: border-box;
}

figure {
  margin: 0;
}

.container {
  margin: 0 auto;
  width: 90%;
  max-width: 70em;
}
.container.full-width {
  width: 100%;
  max-width: none;
}

a {
  display: inline-block;
}

.loading {
  padding: 5em 0 !important;
  width: 100% !important;
  text-align: center !important;
}
.loading i {
  font-size: 7em;
}

@media screen and (max-width: 900px) {
  html, body {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  html, body {
    font-size: 16px;
  }
  .container {
    width: 92%;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
header {
  position: absolute;
  left: 0;
  right: 0;
  top: 1em;
  z-index: 9;
}
header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3em 0.5em;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 5em;
}
header .logo a img {
  height: 2em;
}
header .navs, header .nav-user {
  margin: 0;
  padding: 0;
  list-style: none;
}
header .navs li, header .nav-user li {
  display: inline-block;
}
header .navicon,
header input[type=checkbox] {
  display: none;
}
header .navicon {
  padding: 0.2em 0;
  width: 2.5em;
}
header .navicon span {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.25em;
  width: 1.7em;
  height: 0.3em;
  border-radius: 1px;
  background-color: #0D1A63;
  transition: transform 0.3s;
}
header .navicon span:nth-child(3) {
  margin-bottom: 0;
}
header .navs {
  display: flex;
}
header .navs li {
  margin-right: 0.5em;
}
header .navs li a {
  padding: 0.4em 0;
  width: 5.2em;
  border-radius: 2em;
  text-decoration: none;
  text-align: center;
  color: #0D1A63;
  transition: background-color 0.3s, color 0.3s;
}
header .navs li a.actived, header .navs li a:hover {
  background-color: #0D1A63;
  color: #fff;
}
header .nav-user li {
  margin-right: 0;
  margin-left: 0.3em;
}

@media screen and (max-width: 600px) {
  header .header-inner {
    position: relative;
    justify-content: flex-start;
  }
  header .logo {
    order: 1;
  }
  header .navicon {
    display: block;
    order: 3;
  }
  header .nav-user {
    order: 2;
    flex: 10;
    padding-right: 0.5em;
    text-align: right;
  }
  header .navs {
    display: block;
    flex: none;
    position: absolute;
    top: 100%;
    right: -10em;
    width: 0;
    opacity: 0;
    background-color: #fff;
    overflow: hidden;
    border-radius: 0.4em;
    transition: right 0.3s ease-in, opacity 0.3s ease-in, width 0.3s;
  }
  header .navs li {
    display: block;
    margin-right: 0;
  }
  header .navs li a {
    padding-left: 0.7em;
    padding-right: 0.7em;
    width: 100%;
    border-radius: 0;
    text-align: left;
  }
  header input[type=checkbox]:checked + label span {
    margin-bottom: -0.3em;
  }
  header input[type=checkbox]:checked + label span:nth-child(1) {
    transform: rotate(45deg);
  }
  header input[type=checkbox]:checked + label span:nth-child(2) {
    transform: rotate(-45deg);
  }
  header input[type=checkbox]:checked + label span:nth-child(3) {
    display: none;
  }
  header input[type=checkbox]:checked + label + menu {
    right: 0;
    opacity: 1;
    width: 10em;
  }
}
footer {
  padding: 1em 0 1em;
  background-color: #eee;
}
footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
}
footer .col-1 {
  padding-right: 5em;
  width: 40%;
}
footer .col-1 h5 {
  margin: 1.7em 0 0.8em;
  font-size: 1em;
}
footer .col-1 p {
  text-align: justify;
}
footer .col-1 a.logo {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  height: 3em;
}
footer .col-1 a.logo img {
  width: auto;
  height: 100%;
}
footer .col-1 ul.socials li {
  display: inline-block;
  margin-right: 1em;
}
footer .col-1 ul.socials li a {
  font-size: 1.5em;
  color: #000;
}
footer .col-2 {
  width: 30%;
}
footer .col-3 {
  width: 30%;
}
footer .col-3 p i {
  margin-right: 0.5em;
  font-size: 1em;
}
footer .col-3 p i.fa-phone-square {
  margin-right: 0.4em;
  font-size: 1.2em;
}
footer .col h4 {
  display: flex;
  align-items: center;
  margin: 0;
  height: 4em;
  font-size: 1em;
}
footer .col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .col ul li {
  margin-bottom: 0.8em;
  font-size: 1em;
}
footer .col ul li a {
  text-decoration: none;
  color: #444;
}
footer .col ul li a:hover {
  text-decoration: underline;
}
footer .col p {
  margin: 0 0 0.8em;
  line-height: 1.3;
  font-size: 1em;
  color: #444;
}
footer .footer-bottom {
  display: flex;
  margin-top: 1em;
  padding-top: 1em;
  width: 100%;
  border-top: 1px solid #999;
  font-size: 0.9em;
  color: #444;
}
footer .footer-bottom .copyright {
  flex: 1;
}
footer .footer-bottom ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-bottom ul li {
  display: inline-block;
  margin-left: 1em;
  padding-left: 1em;
  border-left: 1px solid #999;
}
footer .footer-bottom ul li:first-child {
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
}
footer .footer-bottom ul li a {
  text-decoration: none;
  color: #444;
}
footer .footer-bottom ul li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 600px) {
  footer .footer-inner {
    display: block;
  }
  footer .footer-inner .col {
    width: 100%;
  }
  footer .footer-inner .col-1 h5, footer .footer-inner .col h4 {
    font-size: 1.1em;
  }
  footer .footer-bottom {
    display: block;
    text-align: center;
  }
  footer .footer-bottom ul {
    margin-top: 0.5em;
  }
}
.btn {
  padding: 0.4em 1em;
  border: 1px solid transparent;
  border-radius: 3em;
  background-color: #0D1A63;
  text-decoration: none;
  text-align: center;
  color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.btn-primary {
  border-color: #0D1A63;
  background-color: #0D1A63;
  color: #fff;
}
.btn-primary:hover {
  background-color: #fff;
  color: #0D1A63;
}
.btn-second {
  border-color: #dc6025;
  background-color: #dc6025;
  color: #fff;
}
.btn-second:hover {
  background-color: #fff;
  color: #dc6025;
}
.btn-default {
  border-color: #0D1A63;
  background-color: #fff;
  color: #0D1A63;
}
.btn-default:hover {
  background-color: #0D1A63;
  color: #fff;
}

.headline {
  font-family: "Anton", sans-serif;
}
.headline-1 {
  margin: 0.5em 0;
  font-size: 2.3em;
  font-weight: normal;
}
.headline-2 {
  font-size: 2em;
  font-weight: normal;
  letter-spacing: 0.03em;
}

.sub-headline {
  margin: 0;
  line-height: 1.4;
  font-size: 1em;
  color: #444;
}

.filter-buttons .select-group .select {
  margin-bottom: 0.7em;
}
.filter-buttons .select-group .select-location {
  width: 18em;
}
.filter-buttons .select-group .select-listing-type {
  width: 12em;
}
.filter-buttons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.filter-buttons ul li {
  display: inline-block;
  margin-right: 0.3em;
}
.filter-buttons ul li.actived a, .filter-buttons ul li.actived a:hover {
  background-color: #000;
  color: #fff;
}
.filter-buttons ul li a {
  padding: 0.5em 1em;
  background-color: #fff;
  border-radius: 2em;
  text-decoration: none;
  font-size: 1em;
  color: #000;
  transition: background-color 0.3s;
}
.filter-buttons ul li a:hover {
  background-color: #eee;
}

@media screen and (max-width: 600px) {
  .filter-buttons .select-group .select-location, .filter-buttons .select-group .select-listing-type {
    width: 100%;
  }
}
.properties-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5em;
  padding: 0;
  list-style: none;
}
.properties-list > li {
  display: inline-block;
  padding: 0 0.5em;
  width: 33.3333%;
}

.property-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.7em;
  margin-bottom: 0.7em;
  padding: 0.5em;
  border: 1px solid #000;
  border-radius: 0.5em;
}
.property-item:before {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: -3px;
  z-index: -1;
  border: 3px solid transparent;
  border-radius: 0.6em;
  transition: border-color 0.3s linear;
}
.property-item:hover {
  border-color: transparent;
}
.property-item:hover:before {
  border-color: #dc6025;
}
.property-item figure, .property-item h3, .property-item ul {
  width: 100%;
}
.property-item figure {
  height: 13.5em;
  border-radius: 0.5em;
  overflow: hidden;
}
.property-item figure a {
  width: 100%;
  height: 100%;
  font-size: 0;
}
.property-item figure a img {
  width: 100%;
}
.property-item h3 {
  margin: 0.5em 0 0.3em;
  font-size: 1.3em;
  font-weight: bold;
}
.property-item ul {
  display: flex;
  margin: 0.4em 0 0.7em;
  padding: 0;
  list-style: none;
}
.property-item ul li {
  flex: 1;
  text-align: left;
  font-size: 0.9em;
  color: #444;
}
.property-item ul li i {
  display: block;
  margin-bottom: 0.2em;
}
.property-item p {
  display: block;
  margin: 0;
  width: 70%;
  height: 2.8em;
  font-size: 0.9em;
  line-height: 1.4;
  color: #444;
}
.property-item p i {
  margin-right: 0.3em;
}
.property-item .btns {
  padding-left: 0.7em;
  width: 30%;
  align-self: center;
}
.property-item .btns a {
  width: 100%;
  font-size: 0.9em;
}

@media screen and (max-width: 900px) {
  .property-item figure {
    height: 9em;
  }
  .property-item p {
    width: 100%;
  }
  .property-item .btns {
    margin-left: auto;
    width: auto;
  }
}
@media screen and (max-width: 600px) {
  .properties-list {
    display: block;
  }
  .properties-list li {
    width: 100%;
  }
  .property-item figure {
    height: 14em;
  }
  .property-item p {
    width: 70%;
  }
  .property-item .btns {
    margin-left: auto;
  }
}
.latest-properties {
  display: flex;
  flex-wrap: wrap;
  margin: 2.5em -0.5em 0;
  padding: 0;
  list-style: none;
}
.latest-properties > li {
  display: inline-block;
  padding: 0 0.5em;
  width: 25%;
}
.latest-properties > li:nth-child(3) .detail, .latest-properties > li:nth-child(4) .detail {
  left: auto;
  right: 100%;
}

.latest-item {
  position: relative;
}
.latest-item.pin .info {
  height: 0;
}
.latest-item.pin .detail {
  display: block;
}
.latest-item figure {
  height: 20em;
  border-radius: 0.5em;
  overflow: hidden;
}
.latest-item figure a {
  font-size: 0;
  height: 100%;
}
.latest-item figure a img {
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.latest-item .info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.7em;
  height: 2.3em;
  overflow: hidden;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
  background-color: rgba(0, 0, 0, 0.5);
  transition: height 0.3s ease;
}
.latest-item .detail {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 9;
  padding: 0.5em 1em;
  width: 210%;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.3);
  font-size: 0.9em;
  animation: fadeIn 0.3s ease;
  color: #444;
}
.latest-item .detail h4 {
  margin: 0.2em 0 0.7em;
  font-size: 1.1em;
  white-space: nowrap;
  color: #000;
}
.latest-item .detail p {
  margin: 0.3em 0;
  padding-bottom: 0.7em;
  line-height: 1.3;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.latest-item .detail i {
  font-size: 1.1em;
  color: #000;
}
.latest-item .detail strong, .latest-item .detail ul, .latest-item .detail dl {
  margin: 1em 0 0 0;
}
.latest-item .detail strong {
  display: block;
  font-weight: normal;
}
.latest-item .detail strong i {
  margin-right: 0.5em;
}
.latest-item .detail ul {
  padding: 0;
  list-style: none;
}
.latest-item .detail ul li {
  display: inline-block;
  margin-right: 1.5em;
}
.latest-item .detail ul li i {
  margin-right: 0.2em;
}
.latest-item .detail dl {
  float: left;
  width: 33.3333%;
}
.latest-item .detail dl dt, .latest-item .detail dl dd {
  display: block;
  margin: 0;
}
.latest-item .detail dl dt {
  margin-bottom: 0.3em;
}
.latest-item .detail dl dt i {
  margin-right: 0.2em;
}
.latest-item .detail dl dd {
  font-size: 1.3em;
}
.latest-item .btns {
  position: absolute;
  top: 0.3em;
  right: 0.3em;
  white-space: nowrap;
}
.latest-item .btns a {
  width: 1.7em;
  height: 1.7em;
  border-radius: 0.2em;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.1em;
  text-decoration: none;
  text-align: center;
  line-height: 1.7;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.latest-item .btns a:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: #000;
}
.latest-item h3 {
  margin: 0;
  width: 100%;
  font-weight: normal;
  font-size: 1em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.latest-item h3 a {
  width: 100%;
  text-decoration: none;
  color: #fff;
}

@media screen and (max-width: 900px) {
  .latest-item figure {
    height: 15em;
  }
  .latest-item .detail {
    width: 36em;
  }
  .latest-item .detail h4 {
    overflow: hidden;
  }
}
@media screen and (max-width: 600px) {
  .latest-properties {
    display: block;
    margin: 0;
  }
  .latest-properties > li {
    margin-bottom: 1em;
    padding: 0;
    width: 100%;
  }
  .latest-properties > li:last-child {
    margin-bottom: 0;
  }
  .latest-properties > li:nth-child(3) .detail, .latest-properties > li:nth-child(4) .detail {
    left: auto;
    right: auto;
  }
  .latest-item .detail {
    top: 4em;
    left: 0;
    width: 100%;
    height: auto;
  }
  .latest-item .btns {
    top: 0.5em;
    right: 0.5em;
  }
  .latest-item .btns a {
    margin-left: 0.2em;
    font-size: 1.4em;
  }
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5em;
  padding: 0;
  list-style: none;
}
.services-list li {
  padding: 0.45em 0.5em;
  width: 50%;
}

.service-item {
  position: relative;
  padding: 1.5em 1em 1.5em 25%;
  border: 1px solid #000;
  border-radius: 0.5em;
  overflow: hidden;
  min-height: 5em;
  height: 100%;
}
.service-item figure {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 1em;
  width: 25%;
}
.service-item figure img {
  width: 100%;
}
.service-item h3, .service-item p {
  margin: 0;
  font-size: 1em;
}
.service-item h3 {
  margin-bottom: 0.5em;
  font-weight: bold;
}
.service-item h3 a {
  text-decoration: none;
  color: #000;
}
.service-item p {
  color: #444;
}

@media screen and (max-width: 600px) {
  .services-list {
    display: block;
  }
  .services-list li {
    width: 100%;
  }
}
.pagination {
  text-align: center;
}
.pagination ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pagination ul li {
  display: inline-block;
  margin: 0 0.1em;
}
.pagination ul li:first-child a, .pagination ul li:last-child a {
  width: 3.2em;
}
.pagination ul li a, .pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  border-radius: 0.3em;
  text-decoration: none;
  line-height: 1;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.pagination ul li a.achor, .pagination ul li span.achor {
  padding: 0 0.5em;
  width: auto;
}
.pagination ul li a.actived, .pagination ul li span.actived {
  cursor: default;
}
.pagination ul li a:hover, .pagination ul li a.actived, .pagination ul li span.actived {
  background-color: #dc6025;
  color: #fff;
}
.pagination ul li a {
  cursor: pointer;
  color: #000;
}
.pagination ul li span {
  color: #444;
}

.select {
  margin-right: 0.7em;
  padding: 0 0.6em;
  height: 2.5em;
  font-size: 1em;
  background-color: #fff;
  border-radius: 3em;
  border: 1px solid #999;
}
.select, .select::picker(select) {
  appearance: base-select;
}
.select::picker(select) {
  border-radius: 0.5em;
  border-color: transparent;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.3);
}
.select::picker-icon {
  padding-top: 0.5em;
  padding-right: 0.4em;
  color: #444;
}
.select option {
  padding: 0.4em 1em;
  transition: background-color 0.3s;
}
.select option:nth-child(odd) {
  background-color: #eee;
}
.select option::checkmark {
  order: 1;
  margin-left: auto;
  content: "\f058";
  font-family: "FontAwesome";
}
.select option:hover {
  background-color: #bbb;
}
.select option i {
  width: 1.2em;
}
.select button selectedcontent {
  width: 100%;
  padding-top: 0.5em;
  text-align: center;
  white-space: nowrap;
}
.select button selectedcontent i {
  padding-right: 0.3em;
}
.select-location {
  flex: 2;
}
.select-listing-type {
  flex: 1;
}
.select-property-type {
  flex: 1;
}

.home-page section {
  padding: 2em 0;
}
.home-page section .headline-1 {
  margin-top: 0;
  line-height: 1;
  text-align: center;
}
.home-page section .sub-headline {
  margin: 1em 0 2em;
  text-align: center;
}
.home-page .sec-intro {
  margin-bottom: 2em;
  padding: 0;
}
.home-page .sec-properties .properties-list {
  margin-top: 1em;
  margin-bottom: 1em;
}
.home-page .sec-about {
  margin: 2em 0;
}
.home-page .sec-about .headline, .home-page .sec-about .sub-headline {
  text-align: left;
}
.home-page .sec-newsletter {
  margin-top: 1em;
  border-top: 2px solid #eee;
}

@media screen and (max-width: 600px) {
  .home-page section .headline-1 {
    line-height: 1.2;
  }
}
.properties-page section {
  padding: 2em 0;
}
.properties-page section .headline-1 {
  margin-top: 0;
  line-height: 1;
  text-align: center;
}
.properties-page section .sub-headline {
  margin: 1em 0 2em;
  text-align: center;
}
.properties-page .sec-intro {
  margin-bottom: 2em;
  padding: 0;
  background-image: url(../img/property-page-bg.jpg);
}
.properties-page .sec-intro-inner {
  height: 50vh;
  min-height: 25em;
}
.properties-page .sec-intro .slogan h1 {
  margin-top: 2em;
}
.properties-page .sec-properties .headline {
  margin-bottom: 1.2em;
}
.properties-page .sec-properties .properties-list {
  margin-top: 1em;
  margin-bottom: 1em;
}
.properties-page .sec-about {
  margin: 2em 0;
}
.properties-page .sec-about .headline, .properties-page .sec-about .sub-headline {
  text-align: left;
}
.properties-page .sec-newsletter {
  margin-top: 1em;
  border-top: 2px solid #eee;
}

.details-page section {
  padding: 2em 0;
}
.details-page section .headline-1 {
  margin-top: 0;
  line-height: 1;
  text-align: center;
}
.details-page section .sub-headline {
  margin: 1em 0 2em;
  text-align: center;
}
.details-page .sec-intro {
  margin-bottom: 1em;
  padding: 0;
  background-image: url(../img/details-page-bg.jpg);
}
.details-page .sec-intro-inner {
  height: 50vh;
  min-height: 25em;
}
.details-page .sec-intro .slogan h1 {
  margin-top: 2em;
}
.details-page .sec-newsletter {
  margin-top: 1em;
  border-top: 2px solid #eee;
}

.sec-intro {
  background-image: url("../img/home-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.sec-intro-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  min-height: 30em;
}
.sec-intro .slogan {
  justify-self: center;
  align-self: center;
}
.sec-intro .slogan h1, .sec-intro .slogan h2 {
  margin: 0 auto;
  width: 70%;
  font-weight: normal;
  text-shadow: 0 0 0.3em black;
  text-align: center;
  color: #fff;
}
.sec-intro .slogan h1 {
  font-family: "Anton", sans-serif;
  font-size: 3em;
}
.sec-intro .slogan h2 {
  margin-top: 0.5em;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.5;
  text-shadow: 1px 1px 0 #000;
}
.sec-intro .search-form {
  position: absolute;
  bottom: 1em;
  left: 0;
  right: 0;
}
.sec-intro .search-form form {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 1em;
  width: 80%;
  height: 4.5em;
  background-color: white;
  border-radius: 5em;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.3);
  text-align: center;
}
.sec-intro .search-form form .select, .sec-intro .search-form form .btn {
  height: 2.5em;
  font-size: 1em;
}
.sec-intro .search-form form .btn {
  width: 6em;
  cursor: pointer;
}

@media screen and (max-width: 900px) {
  .sec-intro-inner {
    height: 70vh;
    min-height: 30em;
  }
  .sec-intro .slogan h1 {
    font-size: 2.6em;
  }
  .sec-intro .search-form form {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .sec-intro-inner {
    height: 50vh;
    min-height: 25em;
  }
  .sec-intro .slogan h1 {
    font-size: 1.8em;
    white-space: nowrap;
  }
  .sec-intro .slogan h2 {
    font-size: 1em;
  }
  .sec-intro .search-form form {
    width: 100%;
  }
  .sec-intro .search-form form .select-listing-type, .sec-intro .search-form form .select-property-type {
    display: none;
  }
}
.sec-newsletter {
  background-color: #fff;
  background-image: url("../img/newsletter-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.sec-newsletter-inner {
  display: flex;
  align-items: center;
}
.sec-newsletter-inner > div {
  flex: 1;
}
.sec-newsletter-inner form {
  position: relative;
}
.sec-newsletter-inner form.hidden {
  display: none;
}
.sec-newsletter-inner form input, .sec-newsletter-inner form .btn {
  height: 2.5em;
  font-size: 1em;
}
.sec-newsletter-inner form input {
  padding: 0 7.1em 0 1.2em;
  width: 25em;
  background-color: #fff;
  border: 1px solid rgba(68, 68, 68, 0.3);
  border-radius: 2em;
  font-size: 1em;
  transition: border-color 0.3s;
}
.sec-newsletter-inner form input:focus {
  outline: none;
  border-color: rgba(68, 68, 68, 0.8);
}
.sec-newsletter-inner form .btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 1.2em;
}
.sec-newsletter h2, .sec-newsletter p {
  margin: 0;
  font-size: 1em;
  text-shadow: 0 0 0.2em #000;
  color: #fff;
}
.sec-newsletter h2 {
  font-size: 1.5em;
}
.sec-newsletter p {
  margin-top: 0.6em;
  line-height: 1.4;
}
.sec-newsletter-success-msg {
  display: none;
  font-size: 1.2em;
  text-align: right;
  text-shadow: 0 0 0.2em #000;
  color: #fff;
}
.sec-newsletter-success-msg.show {
  display: block;
}

@media screen and (max-width: 600px) {
  .sec-newsletter-inner {
    display: block;
  }
  .sec-newsletter-inner div {
    text-align: center;
  }
  .sec-newsletter-inner form {
    margin-top: 2em;
  }
  .sec-newsletter-inner form input {
    width: 100%;
  }
}
.sec-about {
  position: relative;
  background-color: #f5f5f5;
}
.sec-about-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 35%;
  overflow: hidden;
}
.sec-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sec-about-inner {
  padding-left: 40%;
}
.sec-about .blocks {
  display: flex;
  margin: 2em -0.5em;
  padding: 0;
  list-style: none;
}
.sec-about .blocks li {
  flex: 1;
  padding: 0 0.5em;
}
.sec-about .block-item {
  padding: 1em 1.2em;
  height: 100%;
  background-color: #eee;
  border-radius: 0.5em;
  box-shadow: 1px 1px 0 rgba(68, 68, 68, 0.5);
}
.sec-about .block-item span, .sec-about .block-item p {
  display: block;
}
.sec-about .block-item span {
  font-size: 2.5em;
  font-weight: 300;
}
.sec-about .block-item p {
  margin: 0.7em 0 0;
  color: #444;
}
.sec-about .about-content {
  margin-top: 1em;
  line-height: 1.3;
  color: #444;
}
.sec-about .about-content p {
  margin: 0.7em 0;
}
.sec-about .about-content p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .sec-about-img {
    position: static;
    margin-top: -2em;
    margin-bottom: 2em;
    width: 100%;
  }
  .sec-about-inner {
    padding-left: 0;
  }
}
.sec-details .features, .sec-details .tags, .sec-details .tabs, .sec-details .address, .sec-details .prices {
  margin: 0 0 1.5em 0;
}
.sec-details ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sec-details .images-list {
  margin-right: -1em;
  margin-bottom: 1em;
}
.sec-details .images-list::after {
  content: "";
  display: table;
  clear: both;
}
.sec-details .images-list li {
  float: left;
  padding: 0 1em 1em 0;
  width: 25%;
  height: 12em;
}
.sec-details .images-list li:nth-child(1) {
  width: 50%;
  height: 24em;
}
.sec-details .images-list li:nth-child(2) {
  width: 50%;
}
.sec-details .images-list li figure {
  margin: 0;
  height: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  font-size: 0;
}
.sec-details .images-list li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sec-details .headline {
  margin: 0 0 0.7em 0;
}
.sec-details .address {
  position: relative;
  padding-right: 12.5em;
  color: #444;
}
.sec-details .address i {
  margin-right: 0.5em;
  color: #000;
}
.sec-details .address .btn-book-appointment {
  position: absolute;
  top: 0;
  right: 0;
  width: 12em;
  background-color: #dc6025;
  border: 1px solid #dc6025;
  color: #fff;
}
.sec-details .address .btn-book-appointment:hover {
  background-color: #fff;
  color: #dc6025;
}
.sec-details .address .btn-book-appointment:hover i {
  color: #dc6025;
}
.sec-details .address .btn-book-appointment i {
  transition: color 0.3s;
  color: #fff;
}
.sec-details .features {
  margin-bottom: 1em;
}
.sec-details .features li {
  display: inline-block;
  margin-right: 2em;
  margin-bottom: 0.5em;
  color: #444;
}
.sec-details .features li i {
  margin-right: 0.5em;
  color: #000;
}
.sec-details .prices {
  display: flex;
  color: #444;
}
.sec-details .prices dl {
  margin: 0 3em 0 0;
}
.sec-details .prices dl dt {
  margin-bottom: 0.3em;
}
.sec-details .prices dl dt i {
  margin-right: 0.5em;
  color: #000;
}
.sec-details .prices dl dd {
  margin: 0;
  font-size: 1.3em;
}
.sec-details .tags {
  margin-top: 2.5em;
  margin-bottom: 0;
}
.sec-details .tags li {
  display: inline-block;
  margin-top: 0.5em;
  margin-right: 0.5em;
}
.sec-details .tags li a {
  padding: 0.4em 1.2em;
  border-radius: 3em;
  background-color: #eee;
  border: 1px solid #eee;
  text-decoration: none;
  color: #444;
  transition: border-color 0.3s;
}
.sec-details .tags li a:hover {
  border-color: #444;
}
.sec-details .tabs {
  margin-top: 2.5em;
  background-color: transparent;
}
.sec-details .tabs-labels li {
  display: inline-block;
  font-size: 0.85em;
}
.sec-details .tabs-labels li a {
  margin-bottom: -1px;
  padding: 0.5em 1em;
  border: 1px solid transparent;
  border-bottom-width: 0;
  background-color: #eee;
  text-decoration: none;
  color: #000;
}
.sec-details .tabs-labels li a:hover {
  background-color: #fff;
  border-color: #444;
}
.sec-details .tabs-labels li.actived {
  border: 1px solid #444;
  border-bottom-width: 0;
  background-color: #fff;
  font-size: 1em;
}
.sec-details .tabs-labels li.actived:first-child {
  border-top-left-radius: 0.5em;
}
.sec-details .tabs-labels li.actived:last-child {
  border-top-right-radius: 0.5em;
}
.sec-details .tabs-labels li.actived a {
  background-color: transparent;
}
.sec-details .tabs-labels li.actived a:hover {
  border-color: transparent;
}
.sec-details .tabs-contents {
  margin-top: -1px;
  border-width: 1px 1px 1px 1px;
  border-style: solid;
  border-color: #444;
  border-radius: 0.5em;
  border-top-left-radius: 0;
  background-color: #fff;
  color: #444;
}
.sec-details .tabs-contents li {
  display: none;
  padding: 1em;
}
.sec-details .tabs-contents li.actived {
  display: block;
}
.sec-details .tabs-contents li p {
  line-height: 1.4;
}
.sec-details .tabs-contents li p:first-child {
  margin-top: 0;
}
.sec-details .tabs-contents li p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .sec-details .images-list li {
    height: 9em;
  }
  .sec-details .images-list li:nth-child(1) {
    height: 18em;
  }
}

/*# sourceMappingURL=styles.css.map */
