 @import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

 :root {
   --white-color: #f9f9f9;
   --primary-color: #968234;
   --dark-color: #000000;
   /* --secondary-color:              #9b8876;
  --section-bg-color:             #202124;
  --second-section-bg-color:      #282828;
  --custom-btn-bg-color:          #CF8141;
  --custom-btn-bg-hover-color:    #DDA15E;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #E76F51;
  --highlight-color:              #ffffffbd; */

   --body-font-family: 'Open Sans', sans-serif;
   --title-font-family: 'Libre Baskerville', serif;

   --golden-gradient: linear-gradient(135deg,
       #cbbe6c 0%,
       #ba9e3c 35%,
       #a49754 65%,
       #957d26 100%);
   /* --h1-font-size:                 68px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --btn-font-size:                16px;
  --form-btn-font-size:           18px;
  --menu-font-size:               16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-thin:             200;
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700; */
 }

 body {
   font-family: var(--body-font-family);
   font-size: 18px;
   overflow-x: hidden;
   background: var(--white-color);
 }

 /*---------------------------------------
    TYPOGRAPHY              
  -----------------------------------------*/

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
   font-weight: 300;
   line-height: normal;
   font-family: var(--title-font-family);
 }

 h1 {
   font-size: 3em;
 }

 p {
   color: #757575;
   font-size: 18px;
   font-weight: normal;
   line-height: 24px;
 }



 /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

 html {
   -webkit-font-smoothing: antialiased;
 }

 a {
   color: #202020;
   text-decoration: none !important;
 }

 a,
 input,
 .form-control {
   -webkit-transition: 0.5s;
   transition: 0.5s;
 }

 a:hover,
 a:active,
 a:focus {
   color: var(--primary-color);
   outline: none;
 }

 ::-webkit-scrollbar {
   width: 8px;
   height: 8px;
 }

 ::-webkit-scrollbar-thumb {
   cursor: pointer;
   background: #202020;
 }

 .section-title {
   padding-bottom: 40px;
 }

 section {
   position: relative;
   padding: 100px 0;
 }

 section .container {
   width: 1200px;
   max-width: 100%;
   padding: 0 15px;
   box-sizing: border-box;
 }

 #contact {
   background: url('../images/home-bg.jpg') no-repeat center center;
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
   text-align: center;
   min-height: 100vh;
   display: flex;
   align-items: center;

   vertical-align: middle;
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   -webkit-box-align: center;
   -webkit-align-items: center;
   -ms-flex-align: center;
   position: relative;
 }

 footer {
   background: #ffffff;
   text-align: center;
 }

 .overlay {
   background: #ffffff;
   /* fallback for old browsers */
   background: -webkit-linear-gradient(to right, #292E49, #536976);
   /* Chrome 10-25, Safari 5.1-6 */
   background: linear-gradient(to right, #292E49, #536976);
   /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
   opacity: 0.0;
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 100%;
 }

 /*---------------------------------------
     BUTTONS               
  -----------------------------------------*/

 .section-btn {
   background: var(--golden-gradient);
   border: 0;
   border-radius: 50px;
   color: #ffffff;
   font-size: 18px;
   font-weight: bold;
   padding: 12px 30px;
   border: 1px solid transparent;
 }

 .section-btn:hover,
 .section-btn:focus {
   background: #ffffff;
   color: var(--primary-color);
   border: 1px solid var(--dark-color);
 }

 /*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

 .preloader {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 99999;
   display: flex;
   flex-flow: row nowrap;
   justify-content: center;
   align-items: center;
   background: none repeat scroll 0 0 #ffffff;
 }

 .spinner {
   border: 1px solid transparent;
   border-radius: 3px;
   position: relative;
 }

 .spinner:before {
   content: '';
   box-sizing: border-box;
   position: absolute;
   top: 50%;
   left: 50%;
   width: 45px;
   height: 45px;
   margin-top: -10px;
   margin-left: -10px;
   border-radius: 50%;
   border: 1px solid #575757;
   border-top-color: #ffffff;
   animation: spinner .9s linear infinite;
 }

 @-webkit-keyframes spinner {
   to {
     transform: rotate(360deg);
   }
 }

 @keyframes spinner {
   to {
     transform: rotate(360deg);
   }
 }



 /*---------------------------------------
      MENU              
  -----------------------------------------*/

 .custom-navbar {
   background: var(--dark-color);
   border: none;
   margin-bottom: 0;
   padding: 25px 10px;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-between;
   flex-wrap: nowrap;
   gap: 12px;
 }

 .custom-navbar .navbar-brand {
   color: var(--white-color);
   font-size: 25px;
   font-weight: 500;
   letter-spacing: -1px;
 }

 .top-nav-collapse {
   background: var(--dark-color);
 }

 .custom-navbar .nav li a {
   font-weight: bold;
   color: #f0f0f0;
   padding-right: 22px;
   padding-left: 22px;
 }

 .nav-btn {
   background: var(--golden-gradient);
   border: 0;
   border-radius: 50px;
   color: #ffffff;
   font-size: 18px;
   font-weight: bold;
   padding: 12px 30px;
   border: 1px solid transparent;
 }

 .custom-navbar .nav-btn:hover,
 .custom-navbar .nav-btn:focus {
   background: #ffffff;
   color: var(--primary-color);
   border: 1px solid var(--dark-color);
 }

 .custom-navbar .nav li a:hover {
   background: transparent;
   color: var(--primary-color);
 }

 .custom-navbar .navbar-nav>li>a:hover,
 .custom-navbar .navbar-nav>li>a:focus {
   background-color: transparent;
 }

 .custom-navbar .nav li.active>a {
   background-color: transparent;
   color: var(--primary-color);
 }

 .custom-navbar .navbar-toggle {
   border: none;
   padding-top: 10px;
 }

 .custom-navbar .navbar-toggle {
   background-color: transparent;
 }

 .custom-navbar .navbar-toggle .icon-bar {
   background: var(--primary-color);
   border-color: transparent;
 }

 .nav-center {
   display: flex;
 }

 .nav-right {
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .nav-mobile-btn {
   display: none;
 }

 .nav-btn--small {
   font-size: 16px;
   padding: 10px 22px;
 }

 @media(min-width:768px) {
   .custom-navbar {
     border-bottom: 0;
   }

   .custom-navbar.top-nav-collapse {
     background: var(--dark-color);
     -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
     box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
   }
 }

 @media (min-width: 1201px) {
   .nav-center {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 6px;
   }

   /* never show mobile-only buttons on desktop */
   .nav-mobile-btn {
     display: none !important;
   }
 }



 /*---------------------------------------
      HOME          
  -----------------------------------------*/

 #home {
   background: url('../images/home-bg.jpg') no-repeat center center;
   background-size: cover;
   vertical-align: middle;
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -webkit-align-items: center;
   -ms-flex-align: center;
   align-items: center;
   min-height: 100vh;
   position: relative;
   padding-top: 12em;
   text-align: center;
 }

 .home-info {
   margin-top: 0 auto;
 }

 .home-brand {
   width: 500px;
 }

 .home-consultation-btn {
   display: inline-block;
   margin-top: 10px;
   min-width: 240px;
   text-align: center;
 }


 /*---------------------------------------
      ABOUT              
  -----------------------------------------*/

 #about {
   background: #ffffff;
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 #about .section-title {
   padding-bottom: 90px;
   text-align: center;
 }

 #about .section-title h1 {
   color: var(--dark-color);
   font-size: 64px;
   font-weight: 400;
   margin: 0;
 }

 #about .about-block {
   padding: 0 12px;
 }

 #about .about-divider {
   background: var(--golden-gradient);
   height: 3px;
   width: 100%;
   margin: 0 auto 27px auto;
 }

 #about .about-block p {
   color: var(--dark-color);
 }

 /*---------------------------------------
     SERVICES
  -----------------------------------------*/

 #services {
   background: #ffffff;
   text-align: center;
 }

 #services .section-title {
   padding-bottom: 40px;
 }

 #services .section-title h1 {
   color: var(--dark-color);
   font-size: 64px;
   font-weight: 400;
   margin: 0;
 }

 #services .services-tagline {
   color: var(--primary-color);
   font-size: 14px;
   letter-spacing: 1px;
   margin-bottom: 10px;
   margin-bottom: 30px;
 }

 #services .services-lead {
   color: var(--dark-color);
   margin: 16px auto 74px auto;
 }

 #services .service-card {
   border: 3px solid var(--primary-color);
   border-radius: 10px;
   padding: 14px 8px;
   margin-bottom: 30px;
   min-height: 150px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   background: transparent;
   position: relative;
   overflow: hidden;
 }

 #services .service-card-front {
   width: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   transition: opacity 0.25s ease;
 }

 #services .service-icon {
   height: 140px;
   margin-bottom: 7px;
 }

 #services .service-card h3 {
   font-family: var(--body-font-family);
   font-size: 20px;
   font-weight: bold;
   letter-spacing: 0.7px;
   margin: 0;
   color: var(--dark-color);
 }

 #services .service-card-overlay {
   position: absolute;
   inset: 0;
   background: var(--golden-gradient);
   color: #ffffff;
   border-radius: 7px;
   padding: 18px 16px;
   opacity: 0;
   transform: translateY(8px);
   transition: opacity 0.25s ease, transform 0.25s ease;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
 }

 #services .service-card-overlay h4 {
   font-family: var(--body-font-family);
   font-size: 20px;
   line-height: 20px;
   font-weight: bold;
   margin: 0 0 10px 0;
   color: #ffffff;
   text-align: center;
 }

 #services .service-card-list {
   padding: 0;
   margin: 0;
 }

 #services .service-card-list li {
   list-style: none;
   line-height: 20px;
   font-weight: 700;
   margin: 4px 0;
   position: relative;
   padding-left: 18px;
   text-align: left;
 }

 #services .service-card-list li:before {
   content: "\2713";
   position: absolute;
   left: 0;
   top: 0;
   color: #ffffff;
 }

 #services .service-card:hover .service-card-front {
   opacity: 0;
 }

 #services .service-card:hover .service-card-overlay {
   opacity: 1;
   transform: translateY(0);
 }

 /*---------------------------------------
     PRICING             
 -----------------------------------------*/

 #about .section-title,
 #pricing .section-title {
   text-align: center;
 }

 #pricing {
   background: #ffffff;
 }

 #pricing .section-title {
   padding-bottom: 20px;
 }

 #pricing .section-title h1 {
   color: var(--dark-color);
   font-weight: 400;
   margin: 0;
 }

 #pricing .pricing-plan h2 {
   font-size: 35px;
   font-weight: bold;
 }

 #pricing .pricing-subtitle {
   color: var(--dark-color);
   line-height: 20px;
   max-width: 820px;
   margin: 42px auto 62px auto;
 }

 #pricing .pricing-subtitle strong {
   color: var(--dark-color);
 }

 #pricing .pricing-cta-btn {
   display: inline-block;
   background: var(--golden-gradient);
   border-radius: 999px;
   padding: 12px 26px;
   min-width: 240px;
   text-align: center;
 }

 #pricing .pricing-cta-btn:hover,
 #pricing .pricing-cta-btn:focus {
   background: #ffffff;
 }

 #pricing .pricing-plans-row {
   margin-top: 55px;
   display: flex;
   flex-wrap: wrap;
   align-items: stretch;
 }

 #pricing .pricing-plans-row .col-md-4,
 #pricing .pricing-plans-row .col-sm-6 {
   margin-bottom: 30px;
   display: flex;
 }

 #pricing .pricing-plan {
   background: #ffffff;
   border-radius: 12px;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
   overflow: hidden;
   min-height: 520px;
   display: flex;
   flex-direction: column;
   width: 100%;
 }

 #pricing .pricing-plan-top {
   padding: 26px 26px 18px 26px;
 }

 #pricing .pricing-plan-name {
   font-family: var(--body-font-family);
   font-size: 24px;
   font-weight: 700;
   letter-spacing: 0.5px;
   margin: 0 0 10px 0;
   color: var(--dark-color);
 }

 #pricing .pricing-plan-tagline {
   color: #6f6f6f;
   font-size: 18px;
   line-height: 18px;
   padding: 16px 0;
   font-weight: 500;
 }

#pricing .pricing-plan-priceband {
   background: var(--golden-gradient);
   padding: 22px 26px;
}

#pricing .pricing-plan-start-at {
  color: var(--white-color);
   font-size: 26px;
   font-weight: bold;
   display: block;
   margin-bottom: -8px;
}

#pricing .pricing-plan-price {
   display: flex;
   align-items: baseline;
   gap: 10px;
   margin-bottom: 10px;
}

 #pricing .pricing-plan-price-amount {
   color: #ffffff;
   font-family: var(--body-font-family);
   font-size: 56px;
   font-weight: 800;
   letter-spacing: 0.2px;
 }

 #pricing .pricing-plan-price-term {
   color: rgba(255, 255, 255, 0.9);
 }

 #pricing .pricing-plan-summary {
   color: rgba(255, 255, 255, 0.95);
   line-height: 18px;
   font-weight: 700;
   margin: 0;
 }

 #pricing .pricing-plan-body {
   padding: 22px 26px 28px 26px;
 }

 .pricing-plan-body {
   padding: 28px;
   flex: 1;
   /* key: fills remaining height */
 }

 #pricing .pricing-plan-included-title {
   font-family: var(--body-font-family);
   font-size: 22px;
   font-weight: 800;
   margin: 0 0 32px 0;
   color: var(--dark-color);
 }

 #pricing .pricing-plan-list {
   padding: 0;
   margin: 0;
 }

 #pricing .pricing-plan-list li {
   list-style: none;
   color: var(--dark-color);
   margin: 10px 0;
   position: relative;
   padding-left: 22px;
 }

 #pricing .pricing-plan-list li:before {
   content: "\2713";
   position: absolute;
   left: -7px;
   top: 0;
 }


 @media only screen and (max-width: 992px) {

   .home-brand {
     width: 400px;
   }

   #pricing .pricing-plans-row .col-md-4,
   #pricing .pricing-plans-row .col-sm-6 {
     margin-bottom: 60px;
   }
 }


 /*---------------------------------------
     CONTACT             
 -----------------------------------------*/

 .contact-panel {
   padding: 20px 10px;
 }

 .contact-title {
   padding-bottom: 28px;
 }

 .contact-title h1 {
   color: var(--dark-color);
   font-size: 64px;
   font-weight: 400;
   margin: 0;
 }

 .contact-subtitle {
   color: var(--dark-color);
   margin: 44px auto 24px auto;
   line-height: 20px;
 }

 #contact-form label {
   display: block;
   text-align: left;
   color: var(--dark-color);
   font-weight: bold;
   margin: 0 0 6px 0;
   font-family: var(--body-font-family);
 }

 #contact-form .form-group {
   margin-bottom: 14px;
 }

 #contact-form .form-control {
   background: rgba(255, 255, 255, 0.55);
   border: 1px solid var(--dark-color);
   border-radius: 999px;
   box-shadow: none;
   margin: 0;
   height: 46px;
   padding: 10px 16px;
 }

 #contact-form select.form-control {
   padding-right: 40px;
   appearance: none;
   background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
   background-repeat: no-repeat;
   background-position: right 12px center;
   background-size: 16px;
 }

 #contact-form textarea.form-control {
   border-radius: 18px;
   height: auto;
   padding: 14px 16px;
   resize: vertical;
 }

 #contact-form .form-control:focus {
   border-color: var(--primary-color);
   box-shadow: 0 0 0 4px rgba(150, 130, 52, 0.18);
 }

 .contact-submit {
   text-align: center;
   margin-top: 22px;
 }

 .contact-submit .section-btn {
   min-width: 200px;
   padding: 12px 38px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
 }



 /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

 footer {
   padding-bottom: 80px;
 }

 #footer {
   background: #000000;
   text-align: left;
   padding: 70px 0 45px 0;
 }

 #footer .footer-top {
   padding-bottom: 28px;
 }

 #footer .footer-tagline {
   color: rgba(255, 255, 255, 0.75);
   margin-top: 10px;
 }

 #footer .footer-block {
   text-align: left;
 }

 #footer .footer-block h4 {
   color: #ffffff;
   font-family: var(--body-font-family);
   font-weight: 600;
   margin: 0 0 12px 0;
 }

 #footer .footer-block p,
 #footer .footer-brand p {
   color: rgba(255, 255, 255, 0.78);
   line-height: 22px;
 }

 #footer .footer-block a {
   color: rgba(255, 255, 255, 0.78);
 }

 #footer .footer-block a:hover,
 #footer .footer-block a:focus {
   color: #ffffff;
 }

 #footer .footer-social {
   margin-top: 18px;
 }

 #footer .social-icon li a {
   color: #ffffff;
   background: transparent;
 }

 #footer .social-icon li a:hover {
   background: rgba(255, 255, 255, 0.12);
   color: #ffffff;
 }

 /* Ensure Instagram icon in footer uses brand color on hover */
 #footer .social-icon li a:hover {
   color: var(--primary-color);
   background: transparent;
 }

 #footer .footer-bottom {
   text-align: center;
   padding-top: 28px;
 }

 #footer .footer-bottom p {
   color: rgba(255, 255, 255, 0.72);
   margin: 0;
 }

 .footer-logo {
   max-width: 225px;
   width: 100%;
   height: auto;
 }


 /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

 .social-icon {
   position: relative;
   padding: 0;
   margin: 0;
 }

 .social-icon li {
   display: inline-block;
   list-style: none;
 }

 .social-icon li a {
   border-radius: 50px;
   color: #202020;
   width: 48px;
   height: 48px;
   line-height: 48px;
   font-size: 24px;
   text-decoration: none;
   text-align: center;
   position: relative;
 }

 .social-icon li a:hover {
   background: #536976;
   color: var(--primary-color);
 }

 /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

 @media only screen and (max-width: 1200px) {

   .custom-navbar .navbar-nav {
     margin-left: 3em;
   }

   .home-info {
     margin-top: 0;
   }

   .navbar-collapse.collapse {
     display: none !important;
   }

   .nav-right .nav-btn {
     display: none;
   }

   .nav-mobile-btn {
     display: block;
     text-align: center;
     width: 100%;
   }

   .nav-mobile-btn .nav-btn {
     width: 100%;
   }

   /* match hover style of desktop buttons with higher specificity */
   .custom-navbar .nav-mobile-btn .nav-btn:hover,
   .custom-navbar .nav-mobile-btn .nav-btn:focus {
     background: #ffffff;
     color: var(--primary-color);
     border: 1px solid var(--dark-color);
   }

   /* space stacked mobile buttons and only show when menu expanded */
   .nav-mobile-btn+.nav-mobile-btn {
     margin-top: 10px;
   }

   .navbar-collapse.collapse:not(.in) .nav-mobile-btn {
     display: none;
   }

   /* ensure hamburger toggle visible on medium screens */
   .custom-navbar .navbar-toggle {
     display: block;
     margin-left: 10px;
   }


 }


 @media only screen and (max-width: 1200px) {

   section {
     padding: 60px 0;
   }

   .custom-navbar {
     padding: 14px 15px;
     text-align: left;
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     /* allow menu to drop below header row */
   }

   .navbar-header {
     display: flex;
     align-items: center;
   }

   .nav-right {
     margin-left: auto;
     order: 2;
   }

   .nav-center {
     order: 3;
     width: 100%;
   }

   .custom-navbar .navbar-nav {
     text-align: left;
     padding-left: 0;
   }

   .nav-center {
     width: 100%;
   }

   .navbar-collapse {
     width: 100%;
     margin-top: 8px;
   }

   .navbar-collapse.collapse.in {
     display: block !important;
   }

   .custom-navbar .navbar-nav {
     float: none !important;
     width: 100%;
     text-align: center;
   }

   .custom-navbar .navbar-nav>li {
     float: none;
     display: block;
   }

   .custom-navbar .navbar-nav>li>a {
     display: block;
     padding: 10px 0;
   }

   .custom-navbar .navbar-nav {
     margin-left: 0;
   }

   .custom-navbar .nav li a {
     font-size: 14px;
     padding-right: 15px;
     padding-left: 15px;
   }

   #pricing .pricing-plan {
     margin-bottom: 30px;
   }

   footer {
     padding-bottom: 40px;
   }

   #footer {
     padding: 55px 0 35px 0;
   }

   #footer .footer-block {
     margin-top: 24px;
   }
 }

 @media screen and (max-width: 480px) {

   .home-brand {
     width: 300px;
   }

   .contact-title h1 {
     font-size: 54px;
   }

   #about .section-title h1 {
     font-size: 42px;
   }
 }