<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  font-family: 'AbrilText-Regular';
  color: #222;
  margin: 0;
    background-color: #f8f5ee;
}

a {
  color: #a54c22;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'BalboaPlus-Fill';
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: #f8f5ee;
}

#preloader:before {
/*  content: "";*/
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #a54c22;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 20px;
  z-index: 996;
  background: #a54c22;
  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: #6c4526;
  color: #fff;
}

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

.datepicker-dropdown {
  padding: 20px !important;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 0px;
/*  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);*/
}

#header.header-scrolled {
  top: 0;
  background: #241f20;    
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #2c4964;
}

#header .logo img {
  max-height: 80px;
}

/**
* Appointment Button *
*/
.appointment-btn {
    margin-left: 25px;
    border: none;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 20px;
    display: inline-block;
    background-color: #a54c22;
    text-transform: uppercase;
    letter-spacing: 0;
    padding: 5px 20px 10px;
    font-family: 'BalboaPlus-Fill';
}

.appointment-btn:hover {
  background: #6c4526;
  color: #fff;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  margin: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar&gt;ul&gt;li {
  position: relative;
  white-space: nowrap;
  padding: 0;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 22px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  border-bottom: 2px solid transparent;
  padding: 5px 18px;
  font-family: 'BalboaPlus-Fill';
  font-weight: normal;
/*  letter-spacing: 2px;*/
}

.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&gt;a {
  color: #fff;
  border-color: transparent;
  background-color: #6c4526;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #09080e;
  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: 17px;
  font-weight: 500;
  text-transform: none;
  color: #fff;
  border: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover&gt;a {
  color: #fff;
}

.navbar .dropdown:hover&gt;ul, .navbar .dropdown:focus-within&gt;ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover&gt;ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover&gt;ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #2c4964;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

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

@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(28, 47, 65, 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&gt;ul&gt;li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2c4964;
  border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover&gt;a {
  color: #a54c22;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.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&gt;a {
  color: #a54c22;
}

.navbar-mobile .dropdown&gt;.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  position: relative;
  background-color: #2c4964;
  padding: 200px 0;    
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #2c4964;
}

#hero h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: 'BalboaPlus-Fill';
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  margin-top: 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #a54c22;
}

#hero .btn-get-started:hover {
  background: #6c4526;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero {
    margin-bottom: 0;
    height: 100vh;
  }

  #hero .container {
    padding-bottom: 63px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-height: 600px) {
  #hero {
    height: 110vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

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

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #a54c22;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f7fd;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 100px;
  }
}

.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;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 18px;
  background: #231f20;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #264760;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#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: 'BalboaPlus-Fill';
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #18abf8;
  position: relative;
  padding-bottom: 12px;
  margin: 0;
}

#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: #1c84e3;
  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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #a54c22;
}

#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 #bfdcf7;
}

#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: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #a54c22;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #1c84e3;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  background: #a54c22;
  color: #fff;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer .social-links a:hover {
  background: #1c84e3;
  color: #fff;
  text-decoration: none;
}

/*********************/
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}
.footer-logo img{
    max-width: 150px;
}
.hamburgur-img img {
    max-width: 50px;
}
.arrow {
  border: solid #fff;
  border-width: 0px 1px 1px 0;
  display: inline-block;
  padding: 3px;
  margin: -3px 0 0;
}

.arrow.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.text-center {
    text-align: center;
}
.social-links img {
    max-width: 20px;
}

.social-links {
    display: flex;
}
.back-to-top img {
    max-width: 30px;
}
#main {
    margin-top: 80px;
}
.home-hero-section {
    position: relative;
    background-color: transparent;
    padding: 300px 0;
    background-size: cover;
    background-position: center;
}

.home-hero-title {
    color: #fff;
    font-size: 2rem;
    margin: 0 0 5px;
}

.home-hero-content p {
    color: #f0f7fd;
    font-size: 14px;
}

.home-hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
}
.reg-title {
    font-size: 0.9rem;
    color: #fff;
    font-weight: normal;
    margin: 0 0 5px;
}

.home-price-list p {
    color: #fff;
    font-size: 1rem;
    margin: 0;
}

.home-price-list p span {
    font-size: 0.7rem;
}

.home-link-box {
    border: 1px solid #f1f1f1;
    display: inline-block;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    margin: 0 0 10px 10px;
}

.home-link-box:first-child {
    margin-left: 0px;
}

.home-hero-box {
    text-align: center;
}
.icon-box-content {
    background-color: #fff;
    display: flex;
    border-radius: 10px;
    height: 100%;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
.icon-box-section [class*="col-"] {
    margin-bottom: 30px;
}
.icon-left i {
    background-color: #000;
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-size: 20px;
}

.icon-right-content {
    padding: 30px 20px;
}

.ir-title {
    font-size: 1.25rem;
    line-height: 1;
    margin: 0 0 10px;
}

.icon-right-content p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}
.icon-box-section {
    margin-top: -135px;
    position: relative;
}
.home-service-title {
    position: relative;
    color: #222;
    font-size: 2.5rem;
    line-height: 1.3;
    display: inline-block;
    padding: 0px 0 20px;
        margin: 0 0 40px;
}

.home-service-title span {
    color: #a54c22;
}

.home-services {
    padding: 0 0 60px;
}

.home-service-title:before {
    position: absolute;
    content: '';
    border-bottom: 5px solid #a54c22;
    height: 5px;
    width: 30%;
    bottom: 0;
}
.service-icon i {
    color: #1674c8;
    font-size: 30px;
}

.services-box {
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 30px;
    height: 100%;
}

.home-services .row + .row [class*='col-'] {
    margin-bottom: 30px;
}

.sb-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin: 20px 0 10px;
}

.sb-price {
    color: #1674c8;
    font-size: 1.75rem;
    margin: 0;
}

.sb-price span {
    font-size: 0.8rem;
    color: #555;
}

.sb-content p {
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
}

.rm-btn {
    font-family: 'BalboaPlus-Fill';
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 20px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #a54c22;
        border: 1px solid #a54c22;
}
.rm-btn:hover, .rm-btn:focus {
    background-color: transparent;
}
.tc-apply p {
    font-size: 12px;
    line-height: 1;
    margin: 0;
}

.sb-readmore {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
.what-df-title {
    position: relative;
    color: #222;
    font-size: 2.5rem;
    line-height: 1.3;
    display: inline-block;
    padding: 0px 0 20px;
    margin: 0 0 40px;
}

.what-df-title span {
    color: #1674c8;
}

.what-df-title:before {
    position: absolute;
    content: '';
    border-bottom: 5px solid #a54c22;
    height: 5px;
    width: 25%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.what-diff-header {
    text-align: center;
}
.customer-img {
    text-align: center;
        margin-bottom: 30px;
}
.what-icon {
    color: #1674c8;
    font-size: 42px;
}

.what-icon-box {
    text-align: center;
    margin-bottom: 50px;
}

.what-ic-title {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.what-ic-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    max-width: 70%;
    margin: 0 auto;
}

.what-icon-box:last-child {
    margin-bottom: 0;
}

.fixed-icon {
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    left: 0;
    right: 37px;
}

.whatsapp-icon i {
    background-color: #00c654;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.whatsapp-icon a {
    font-size: 35px;
    display: inline-block;
    margin: 15px;
}
.comment-icon i {
    background-color: #a54c22;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.comment-icon a {
    font-size: 24px;
    display: inline-block;
    margin: 15px;
}


.fixed-icon a {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    border-radius: 50%;
}
.btn-close {
    cursor: pointer;
    background: transparent;
    border: none;
    font-size: 2rem;
    position: absolute;
    right: 0;
    top: 5px;
}

.fixed-form-content p {
    text-align: center;
    margin-top: 25px;
    color: #000;
    font-size: 18px;
}
.submit-btn {
    font-family: 'BalboaPlus-Fill';
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 20px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #a54c22;
    border: 1px solid #a54c22;
    cursor: pointer;
}

.submit-btn:hover, .submit-btn:focus {
    background: transparent;
    color: #a54c22;
}

.mm-opening #main {
    margin-top: 0px;
}
/****************************/
/****************************/
/****************************/
/****************************/
/****************************/

@media(max-width:767px){
    .home-service-title {
        font-size: 1.75rem;
    }
    .what-df-title {
        font-size: 1.5rem;
    }
}</pre></body></html>