/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #ffc107;
  text-decoration: none;
}

a:hover {
  color: #ffce3a;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

.phone:before {
  content: "0"
}
.phone.local:before {
  content: ""
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ffc107;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ffcb30;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

#banner div {
  height: 100px;
  background: rgba(45, 53, 69, 0.7);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(55, 64, 85, 0.9);
  padding: 15px 0;
}

#header .contact {
  color: rgba(0, 0, 0, 0);
  margin: 0;
  padding: 0;
}

#header .contact p {
  margin: 0;
  font-size: 28px;
  line-height: 15pt;
  font-weight: 200;
  font-family: "Raleway", sans-serif;
}

#header .contact .address {
  font-size: 14px;
  padding: 0 53px 0;
}

#header.header-scrolled .contact .address {
  color:  #11dbcf;
  transition: ease-in-out 0.5s;
}

#header.header-scrolled .contact .phone {
  color:  #ffc107;
  transition: ease-in-out 0.5s;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ffc107;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #414c64;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ffc107;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(45, 53, 69, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #414c64;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ffc107;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ffc107;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Login menu
--------------------------------------------------------------*/
.login-menu {
  font-size: 14px;
}

.login-menu a {
  color: #fff;
}

.login-menu .list-group {
  padding: 16px;
  box-shadow: 0 2px 16px 0 rgb(21 27 37 / 30%);
  border-radius: 4px;
  min-width: 300px;
}

.login-menu .list-group a {
  color: #444444;;
}

/*--------------------------------------------------------------
# Login secion
--------------------------------------------------------------*/
#login {
  background-position: top center;
  background-size: cover;
  height: calc(100vh - 70px);
  width: 100%;
  padding: 0;
}

#login .login {
  align-items: center;
  justify-content: center;
  background: rgba(45, 53, 69, 0.7);
  height: 100%;
  box-sizing: border-box;
  display: flex;
}

.login .container {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 6px 1px rgb(0 0 0 / 12%);
  margin: auto 25px;
  padding: 20px;
  width: 500px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  background-position: top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(45, 53, 69, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  text-align: center;
  padding-top: 50px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 0;
  }
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #ccc;
  margin: 15px 0 0 0;
  font-size: 22px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 35px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 40px;
  border: 2px solid #ffc107;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #ffc107;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f7f8fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ffc107;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #aab3c7;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafafc;
  min-height: 40px;
  margin-top: 82px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
section.about {
  padding-top: 20px;
}

.about h3 {
  font-weight: 700;
  font-size: 34px;
  color: #414c64;
}

.about h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.about i {
  font-size: 48px;
  margin-top: 15px;
  color: #8b97b3;
}

.about p {
  font-size: 15px;
  color: #848484;
}

.about .service {
  background: #fff;
  text-align: center;
}

/*--------------------------------------------------------------
# Order
--------------------------------------------------------------*/
.order {
  background: #414c64;
  background-size: cover;
  overflow: hidden;
  padding: 60px 0;
}

.order .field-validation-error,
.order .validation-summary {
  color: #ed3c0d;
  font-weight: 600;
}

.order .validation-summary ul {
  display: none;
}

.order .validation-title {
  text-align: center;
  font-size: 20px;
}

.order .validation-summary {
  display: none;
  text-align: left;
  margin: 15px;
}

.order .field-validation-error {
  color:  #ff410d; /*#ed3c0d;*/
  font-size: 12px;
}

.order h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.order p {
  color: #c8cedc;
}

.order label {
  color: #c8cedc;
}

.order .nav-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #ffc107;
  color: #fff;
}

.order .nav-btn:hover {
  background: #ffc107;
}

.order .nav-tabs {
  border: 0;
}

.order .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: #fff;
  border-radius: 0;
  border-right: 2px solid #ffc107;
  font-weight: 600;
  font-size: 15px;
}

.order .nav-link:hover {
  color: #cda45e;
}

.order .nav-link.active {
  color: #1a1814;
  background: #ffc107;
  border-color: #ffc107;
}

.order .nav-link:hover {
  border-color: #ffce3a;
}

.order .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.order h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffc107;
}

.order .order-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #ffc107;
  color: #fff;
}

.order .order-btn:hover {
  background: #ffc107;
}

.order p:last-child {
  margin-bottom: 0;
}

.order label span {
  position: relative;
  font-size: 80%;
  top: -0.3em;
  color: #ffc107;
}

.order small {
  padding-left: 5px;
  font-size: 80%;
  color: #ffc107;
}

.order small::before {
  content: "("
}

.order small:after {
  content: ")"
}

.order .row {
    padding-bottom: 15px;
}

.order .provider-list {
  padding-top: 0.25em;
  display: flex;
  justify-content: center;
}

.order .provider-list i {
  font-size: 32px;
}

@media (max-width: 992px) {
  .order .nav-link {
    border: 0;
    padding: 15px;
  }
}

.signature-pad {
  position: relative;
}

.signature-pad-body {
  background-color: #fff;
  /* border: 1px solid #c8cedc; */
}

.signature-pad button.btn {
  z-index: 10;
  position: absolute;
  padding: .1em .1em;
  color: #ffc107;
  font-weight: 600;
  font-size: 18pt;
  cursor: pointer;
  text-transform: uppercase;
}

.signature-pad button.btn:before {
  font-family: 'boxicons' !important;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  display: inline-block;

  text-transform: none;

  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.signature-pad button[data-action=clear] {
  right: .1em;
}

.signature-pad button[data-action=pen],
.signature-pad textarea {
  display: none;
}

.signature-pad button[data-action=clear]:before {
  content: "\eda1";
}

.signature-pad button[data-action=text]:before {
  content: "\ec44";
}

.signature-pad button[data-action=pen]:before {
  content: "\ee65";
}

.signature-pad canvas {
  height: 100px;
  width: 100%;
}

.signature-pad textarea {
  font-family: 'WindSong', cursive !important;
  resize: none;
}

.signature-pad .overlay {
  padding: 0.8em 0.5em;
  font-size: 2em;
}

.contract-page .signature .overlay,
.signature-pad .overlay {
  z-index: 5;
  position: absolute;
  width: 100%;
  text-align: center;
  border: none;
}

/*--------------------------------------------------------------
# Contract
--------------------------------------------------------------*/
#main .contract {
  display: none;
}

.contract {
  display: block;
  padding-top: 20px;
}

/* .contract .contract-slider {
  overflow: hidden;
}

.contract .contract-item {
  box-sizing: content-box;
  min-height: 320px;
}

.contract .contract-item .contract-img {
  width: 100%;
  position: relative;
  z-index: 2;
}

.contract .contract-item embed
{
  width: 100%;
  height: 800px;
} */
.contract embed
{
  width: 100%;
  height: 800px;
}

.contract-page em {
  font-style: normal;
  font-weight: 800;
}

.contract-page em em {
  font-weight: 1200;
  color: #ffc107;
}

.contract-page h2 {
  text-transform: uppercase;
  color: #ffc107;
  text-align: center;
  font-size: 20px;
  margin-top: 14px;
}

.contract-page h3 {
  text-transform: uppercase;
  color: #ffc107;
  font-size: 12px;
  padding: 10px 0 0;
}

.contract-page h4 {
  font-size: 12px;
  padding-top: 3px;
  margin-bottom: 0;
}

.contract-page .header {
  text-align: center;
}

.contract-page .banner {
  border-bottom: 1px solid #6c7c9f;
}

.contract-page .banner h2 {
  text-transform: none;
  padding-top: 5px;
  color: #444444;
  font-size: 28px;
  margin: 0;
}

.contract-page .banner p {
  margin: 0;
}

.contract-page .agreement {
  border: 1px solid #6c7c9f;
  padding: 0 12px;
  float: right;
}

.contract-page .agreement p {
  font-size: 24px;
  font-weight: 700;
  color: #ffc107;
  margin: 0;
}

.contract-page .agreement.spacer {
  border-color: #fff;
  float: left;
}

.contract-page .agreement.spacer h4,
.contract-page .agreement.spacer p {
  color: #fff;
}

.contract-page .container {
  margin-top: 0
}

.contract-page p {
  font-size: 14px;
  margin-bottom: 3px;
}

.contract-page .conditions h3 {
  padding-top: 5px;
  margin: 0
}

.contract-page .details {
  font-size: 14px;
  padding: 0 20px;
}

.contract-page .details h3 {
  font-size: 14px;
}

.contract-page .cost {
  text-align: right
}

.contract-page .fee::after {
  content: ':'
}

.contract-page .cost::before {
  content: "$"
}

.contract-page .signature {
  position: relative;
}

.contract-page .signature .sign-here {
  z-index: 7;
  position: absolute;
  padding-top: 50px;
  padding-left: 15px;
}

.contract-page .signature figcaption {
  color: #bababa;
}

.contract-page .signature .role {
  margin-top: 120px;
  border-top: 1px solid #6c7c9f;
  text-align: center;
}

.contract-page .signature .role:before {
  content: "(";
}

.contract-page .signature .role:after {
  content: ")";
}

.contract-page .conditions {
  column-count: 2;
  column-gap: 20px;
  font-size: 11px;
}

@media (max-width: 768px) {
  .contact-page .conditions {
    column-count: 1;
  }
}

/*--------------------------------------------------------------
# Supplies
--------------------------------------------------------------*/
.supplies #supplies-filters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.supplies #supplies-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 18px 10px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #fafafc;
  border-radius: 50px;
}

.supplies #supplies-filters li:hover,
.supplies #supplies-filters li.filter-active {
  color: #414c64;
  background: #ffc107;
}

.supplies #supplies-filters li:last-child {
  margin-right: 0;
}

.supplies .supplies-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.supplies-composite {
  position: relative;
  top: 0;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.supplies-composite i {
  z-index: 2;
  font-size: 7rem;
  color: #414c64;
  position: absolute;
  top: 25%;
  left: 40%;
}

.supplies .supplies-item .supplies-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #ffc107;
  padding: 15px 20px;
}

.supplies .supplies-item .supplies-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.supplies .supplies-item .supplies-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.supplies .supplies-item .supplies-info .preview-link {
  position: absolute;
  right: 15px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: rgba(255, 255, 255, 0.7);
  transition: ease-in-out 0.3s;
}

.supplies .supplies-item .supplies-info .preview-link:hover {
  color: #fff;
}

.supplies .supplies-item:hover img {
  top: -30px;
}

.supplies .supplies-item:hover .supplies-info {
  opacity: 1;
  bottom: 0;
}

.supplies .supplies-item .supplies-info h4::before {
  content: "$"
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #ffc107;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing h4 span sup {
  color: #ffc107;
}

.pricing-deposit p {
  text-align: center;
  margin-bottom: 0;
  font-size: 14px;
}

.pricing-deposit p span {
  color: #ffc107;
}

.pricing h4 span sup {
  top: -11px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #ffc107;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #c8cedc;
  color: #6c7c9f;
}

.pricing .btn-buy:hover {
  background: #fff;
}

.pricing .featured h3 {
  color: #fff;
  background: #ffc107;
}

.pricing .featured .btn-buy {
  background: #ffc107;
  color: #fff;
  border: 2px solid #ffc107;
}

.pricing .featured .btn-buy:hover {
  background: #ffce3a;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #ffc107;
  color: #fff;
}

/*--------------------------------------------------------------
# Interiors
--------------------------------------------------------------*/
.interior {
  padding: 15px 0;
  text-align: center;
}
.interior .interior-carousel,
.interior .interior-slider {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding: 15px 0;
  text-align: center;
}
.features .features-carousel,
.features .features-slider {
  overflow: hidden;
}

.features .feature-item {
  box-sizing: content-box;
  min-height: 320px;
}

.features .feature-item .feature-img {
  width: 100%;
  position: relative;
  z-index: 2;
}

.features .feature-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #111;
}

.features .feature-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.features .feature-item .quote-icon-left,
.features .feature-item .quote-icon-right {
  color: #ffe7a0;
  font-size: 26px;
}

.features .feature-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.features .feature-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.features .feature-item p {
  margin: 0 15px 0 15px;
  padding: 20px 20px 20px 20px;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.features .swiper-pagination {
  margin-top: 5px;
  position: relative;
}

.features .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ffc107;
}

.features .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc107;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list a.embedded {
  display: inline;
  position: relative;
  font-family: "Raleway", sans-serif;
  padding: 0;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #ffce3a;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #ffc107;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.sbl-at::before {
  content: "@";
}

.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 20px rgba(65, 76, 100, 0.05);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #ffc107;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #ffeeba;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .info {
  padding: 20px 0 30px 0;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 20px rgba(65, 76, 100, 0.05);
}

.contact .info i {
  font-size: 32px;
  color: #ffc107;
  border-radius: 50%;
  float: left;
  padding: 5px;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}

.contact .info p {
  padding: 10px 0 0px 60px;
  font-size: 14px;
}

.contact .info p.businessAddress {
  padding-top: 0;
}

.contact .info .email p {
  padding-top: 8px;
}

.contact .info iframe {
  margin-top: 24px;
  border:0;
  width: 100%; 
  height: 290px;
}

.login .login-form,
.contact .enquiry {
  box-shadow: 0 0 20px rgba(65, 76, 100, 0.05);
  padding: 30px;
}

.login .login-form label span,
.contact .enquiry label span {
  color: #ffc107;
}

.login .login-form .field-validation-error,
.contact .enquiry .field-validation-error
{
  color: #ed3c0d;
  text-align: left;
  font-weight: 400;
}

.login .login-form .error-message,
.contact .enquiry .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.login .login-form .error-message br+br,
.contact .enquiry .error-message br+br {
  margin-top: 25px;
}

.login .login-form .sent-message,
.contact .enquiry .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.login .login-form .loading,
.contact .enquiry .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.login .login-form .loading:before,
.contact .enquiry .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.login .login-form input,
.login .login-form select,
.login .login-form textarea,
.contact .enquiry input,
.contact .enquiry select,
.contact .enquiry textarea {
  border-radius: 4px;
  box-shadow: none;
  /* font-size: 14px; */
}

.login .login-form input:focus,
.login .login-form select:focus,
.login .login-form textarea:focus,
.contact .enquiry input:focus,
.contact .enquiry select:focus,
.contact .enquiry textarea:focus {
  border-color: #ffc107;
}

.login .login-form input,
.login .login-form select,
.contact .enquiry select,
.contact .enquiry input {
  padding: 10px 15px;
}

.login .login-form textarea,
.contact .enquiry textarea {
  padding: 12px 15px;
}

.login .login-form input[type=submit],
.login .login-form button[type=submit],
.contact .enquiry input[type=submit],
.contact .enquiry button[type=submit] {
  background: #ffc107;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.login .login-form button[type=submit]:hover,
.contact .enquiry button[type=submit]:hover {
  background: #ffce3a;
}

.contact .enquiry .row {
  padding-bottom: 15px;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.datatable td {
  white-space: nowrap;
}

.datatable .area,
.datatable .fee,
.datatable .fob,
.datatable .contract,
.datatable .date {
  text-align: right;
}

.datatable .contract {
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;  
}

.datatable .notes {
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.datatable .area:after {
  content: "sqm";
}

.datatable .fee:after {
  content: ".00";
}

.datatable .late {
  background-color: #f8d7d2;
}
.datatable .arrears {
  background-color: #edb0a6;
}
.datatable .concern {
  background-color: #b14f3b;
}
.datatable .evict {
  background-color: #8b0000;
}

.datatable .late a, 
.datatable .arrears a
{
  color: #c79100;
}

.datatable .evict span, 
.datatable .concern span
{
  color: #fff;
}

/*.datatable .fee:before {
  content: "$ "
} */

.datatable .fee:after,
.datatable .area:after,
.datatable span {
font-size: 10px;
color: #777777;
}

.datatable .fee:after {
  content: ".00";
  font-size: 10px;
  color: #777777;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #414c64;
  font-size: 14px;
  background: #f4f5f8;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fafafc;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ffc107;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #ffc107;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #e1e4ec;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ffc107;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #ffce3a;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #e1e4ec;
  color: #5f6f92;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #ffce3a;
  text-decoration: none;
}
