@keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
body {
  font-family: "Open Sans", sans-serif;
  color: #444;
}

a {
  color: #d5a557;
  text-decoration: none;
}
a:hover {
  color: #d5a557;
  text-decoration: none;
}

h1 {
  font-family: Raleway, sans-serif;
}

h2 {
  font-family: Raleway, sans-serif;
}

h3 {
  font-family: Raleway, sans-serif;
}

h4 {
  font-family: Raleway, sans-serif;
}

h5 {
  font-family: Raleway, sans-serif;
}

h6 {
  font-family: Raleway, sans-serif;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1e3230;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #d5a557;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

#header {
  height: 72px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #1e3230;
}
#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 0;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Open Sans", sans-serif;
}
#header .logo h1 a {
  color: #576971;
  text-decoration: none;
}
#header .logo h1 a:hover {
  color: #576971;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

.header-social-links {
  margin: 0 0 0 30px;
}
.header-social-links a {
  color: #fff;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
  padding-left: 10px;
}
.header-social-links a:hover {
  color: #d5a557;
}

.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar li:hover > a {
  color: #d5a557;
}
.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-family: Poppins, sans-serif;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-family: Poppins, sans-serif;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover {
  color: #d5a557;
}
.navbar .active {
  color: #d5a557;
}
.navbar .active:focus {
  color: #d5a557;
}

.mobile-nav-toggle {
  color: #d5a557;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(32, 38, 41, 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 {
  padding: 10px 20px;
  font-size: 15px;
  color: #364146;
}
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #364146;
}
.navbar-mobile a:hover {
  color: #d5a557;
}
.navbar-mobile .active {
  color: #d5a557;
}
.navbar-mobile li:hover > a {
  color: #d5a557;
}

#hero {
  width: 100%;
  background-color: #1e3230;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
  margin-top: 70px;
  padding: 60px 0;
}
#hero h1 {
  margin: 0 0 20px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 56px;
  color: #d5a557;
}
#hero h2 {
  color: #fdfdfe;
  margin-top: -20px;
  margin-bottom: 30px;
  padding-right: 100px;
  font-size: 12px;
  text-align: right;
}
#hero .btn-get-started {
  font-family: Raleway, sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 3px;
  transition: 0.5s;
  color: #fff;
  background: #d5a557;
  border-width: 0;
}
#hero .btn-get-started a {
  color: #fff;
}
#hero .btn-get-started:hover {
  background: #d5a557;
}
#hero .hero-img {
  text-align: center;
}
#hero .hero-img img {
  width: 70%;
}
#hero .quote {
  font-family: Charm, serif;
  font-weight: 400;
}
#hero .quote-author {
  font-family: Charm, serif;
  font-weight: 400;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7f8f9;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  padding-top: 300px;
  margin-top: -300px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-family: Poppins, sans-serif;
  color: #627680;
  padding-top: 300px;
  margin-top: -300px;
}
.section-title p {
  margin-bottom: 0;
  padding-top: 300px;
  margin-top: -300px;
}

.about {
  padding: 0;
  margin-top: 40px;
}
.about .container {
  background-color: #f7f8f9;
  padding: 60px 50px;
}
.about .content h3 {
  font-size: 32px;
  font-weight: 400;
  font-family: Poppins, sans-serif;
  color: #627680;
}
.about .content p {
  text-align: justify;
  text-align: justify;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about a:link {
  color: #444;
  text-decoration: underline;
}
.about a:hover {
  color: #d5a557;
}

.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  text-align: center;
  border-bottom: 3px solid #fff;
}
.services .icon-box:hover {
  transform: translateY(-5px);
}
.services .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
}
.services .icon svg {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
}
.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.services .title a {
  color: #111;
}
.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
.services .icon-box-green:hover {
  border-color: #063c0c;
}
.services .icon-box-green svg {
  fill: #063c0c;
}
.services li {
  text-align: left;
  text-align: justify;
  text-align: justify;
}
.services .icon-box-gold svg {
  fill: #d5a557 !important;
}
.services .icon-box-gold:hover {
  border-color: #d5a557;
}
.services .container {
  padding: 30px 30px;
}
.services p {
  text-align: justify;
  text-align: justify;
}

.blog {
  background-color: #1e3230;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}
.blog::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0);
  z-index: 9;
}
.blog .container {
  position: relative;
  z-index: 10;
}
.blog .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.blog .member .pic {
  overflow: hidden;
  padding-bottom: 35px;
}
.blog .member .blog-info {
  position: absolute;
  top: 85%;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #364146;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  max-height: 95px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.blog .member:hover .blog-info {
  max-height: 300px;
}
.blog .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #364146;
  position: relative;
  padding-bottom: 10px;
}
.blog .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b5c1c6;
  bottom: 0;
  left: calc(50% - 25px);
}
.blog .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
.blog .member .spacer {
  margin-top: 15px;
}
.blog h2 {
  color: #d5a557;
}
.blog a {
  color: #000;
  font-size: 13px;
}
.blog a:hover {
  color: #d5a557;
}

.contact .info {
  padding: 30px;
  background: #fff;
  width: 100%;
  border: 2px solid #e9ecee;
  border-radius: 4px;
}
.contact .info i {
  font-size: 20px;
  color: #1e3230;
  float: left;
  width: 44px;
  height: 44px;
  background: #f2f4f5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #364146;
}
.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #627680;
}
.contact .info .social-links {
  padding-left: 60px;
}
.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}
.contact .info .social-links a:hover {
  background: #d5a557;
  color: #fff;
}
.contact .info .address:hover i {
  background: #d5a557;
  color: #fff;
}
.contact .info .bank:hover i {
  background: #d5a557;
  color: #fff;
}
.contact .info .email:hover i {
  background: #d5a557;
  color: #fff;
}
.contact .info .phone:hover i {
  background: #d5a557;
  color: #fff;
}
.contact .email a {
  color: #627680;
}
.contact .email a:hover {
  color: #d5a557;
}
.contact .phone a {
  color: #627680;
}
.contact .phone a:hover {
  color: #d5a557;
}

#footer {
  background: #f7f8f9;
  padding: 0 0 30px 0;
  color: #364146;
  font-size: 14px;
}
#footer .footer-top {
  background: #fff;
  padding: 60px 0 30px 0;
  border-top: 2px solid #e9ecee;
  border-bottom: 2px solid #e9ecee;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: Raleway, sans-serif;
  color: #576971;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #e9ecee;
  color: #8a9ca5;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #d5a557;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #364146;
  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: #d5a557;
  font-size: 18px;
  line-height: 1;
  margin-left: -5px;
}
#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: #576971;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #d5a557;
}
#footer .credits {
  padding-top: 8px;
  text-align: center;
  font-size: 13px;
  color: #364146;
}
#footer .credits a {
  color: #000;
}

.inner-page .quote {
  text-align: right;
}
.inner-page p a {
  color: black;
  text-decoration: underline;
}
.inner-page p a:hover {
  color: #d5a557;
}
.inner-page img {
  display: block;
  justify-content: center;
  max-width: 40%;
  margin: auto;
}

.breadcrumbs {
  padding: 15px 0;
  background: #f4f6f7;
  min-height: 40px;
  margin-top: 70px;
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 600;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 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: #4c5c63;
  content: "/";
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .mobile-hidden {
    display: none;
    display: none;
  }
  .mobile-displayed {
    display: static;
    display: static;
  }
}
@media (max-width: 768px) {
  #header .logo h1 {
    font-size: 18px;
  }
  .header-social-links {
    margin: 0 15px 0 0;
  }
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 992px) {
  #hero h1 {
    font-size: 24px;
    line-height: 40px;
  }
  #hero h2 {
    font-size: 12px;
  }
  #hero .btn-get-started {
    display: block;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  #hero .quote {
    font-family: Charm, serif;
    font-size: 22px;
    font-weight: 400;
  }
  #hero .quote-author {
    font-family: Charm, serif;
    font-size: 16px;
    font-weight: 400;
    padding-right: 20px;
  }
  .about .container {
    padding: 30px;
  }
  .blog .member {
    margin-bottom: 110px;
  }
}
@media screen and (min-width: 768px) {
  .mobile-displayed {
    display: none;
    display: none;
  }
  .mobile-break {
    display: none;
  }
} /*# sourceMappingURL=styles.css.map */
