@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Domine:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Stylish&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Domine', serif;
  min-height: 100vh;
  width: 100%;
  position: relative;
}

a {
  text-decoration: none;
}

.main-btn {
  margin: 2rem 0;
  white-space: nowrap;
}

.main-btn a {
  background-color: #B38A5F;
  border-radius: 2rem;
  padding: 10px 20px;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 700;
}

.main-btn a:hover {
  background: #333;
}

header {
  text-align: center;
  margin-top: 65px;
}

header h1 {
  text-align: center;
  padding: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 4rem;
  margin: 0;
}

header .banner {
  background-image: url("../../index/img/banner.jpg");
  width: 100%;
  min-height: 70vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.section {
  margin: 70px auto;
}

.title {
  position: relative;
  font-size: 2rem;
  padding-bottom: 1.05rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  font-weight: 700;
  text-transform: uppercase;
}

.title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  width: 50%;
  height: 2.5px;
  background-color: #B38A5F;
}

@media only screen and (max-width: 991px) {
  header {
    margin-top: 52px !important;
  }
  header h1 {
    font-size: 2.25rem !important;
  }
  .title {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
  }
  .main-btn {
    margin: 1.5rem 0;
    white-space: nowrap;
  }
  .main-btn a {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  .section {
    margin: 50px auto !important;
  }
}

.nav-container {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2rem;
  height: auto;
}

.nav-container .logo {
  font-weight: 700;
  font-size: 2rem;
}

.nav-container .logo a {
  color: #fff;
}

.nav-container .ham-menu {
  display: none;
  width: 28px;
  height: 28px;
  place-items: center;
}

.nav-container .ham-btn {
  height: 3px;
  width: 28px;
  background-color: #fff;
  position: relative;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-container .ham-btn::before, .nav-container .ham-btn::after {
  content: '';
  width: inherit;
  height: inherit;
  background-color: #fff;
  position: absolute;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-container .ham-btn::before {
  top: -8px;
}

.nav-container .ham-btn::after {
  top: 8px;
}

.nav-container .ham-btn.active {
  background-color: transparent;
}

.nav-container .ham-btn.active::before {
  -webkit-transform: translateY(8px) rotate(135deg);
          transform: translateY(8px) rotate(135deg);
}

.nav-container .ham-btn.active::after {
  -webkit-transform: translateY(-8px) rotate(-135deg);
          transform: translateY(-8px) rotate(-135deg);
}

.nav-container .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin-bottom: 0;
  margin: 0;
}

.nav-container .nav-links li {
  list-style-type: none;
  position: relative;
  padding: 18px 20px;
}

.nav-container .nav-links .btn {
  background-color: #B38A5F;
  border-radius: 2rem;
  padding: 5px 20px;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 700;
}

.nav-container .nav-links .btn:hover {
  background: #333;
}

.nav-container .nav-link {
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  margin-bottom: 0;
  font-weight: 700;
  display: block;
  font-size: 1rem;
  padding: 0;
  padding-bottom: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.nav-container .nav-link:hover {
  color: #B38A5F;
}

.nav-container .nav-link:hover::after {
  width: 100%;
}

.nav-container .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  background-color: #B38A5F;
  height: 2.5px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-container .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #fff;
  z-index: 100;
  padding: 0;
  padding: 0;
  margin: 0;
  -webkit-box-shadow: 0 0 2px 0px rgba(184, 184, 184, 0.637);
          box-shadow: 0 0 2px 0px rgba(184, 184, 184, 0.637);
}

.nav-container .sub-menu li {
  margin: 0;
  padding: 0;
}

.nav-container .sub-menu .nav-link {
  margin: 0;
  color: #333;
  padding: 8px 20px;
  font-size: 0.9rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-container .sub-menu .nav-link::after {
  content: none;
}

.nav-container .sub-menu .nav-link:hover {
  background-color: #B38A5F;
  color: #fff;
}

.nav-container .nav-links li:hover .sub-menu {
  display: block;
}

@media only screen and (max-width: 991px) {
  .nav-container {
    padding: 0 1rem;
  }
  .nav-container .ham-menu {
    display: -ms-grid;
    display: grid;
  }
  .nav-container .logo {
    font-size: 1.5rem;
    padding: 0.5rem 0;
  }
  .nav-container .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    height: 100vh;
    width: 80vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #141414;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 2rem;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  .nav-container .nav-links li {
    padding-left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .nav-container .nav-links .btn {
    margin: 0 !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .nav-container .nav-links .nav-link::after {
    content: none;
  }
  .nav-container .nav-links.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  .nav-container .nav-links .sub-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
  }
  .nav-container .nav-links .sub-menu li {
    padding: 0;
  }
  .nav-container .nav-links .sub-menu.active {
    display: block;
    max-height: 100%;
    opacity: 1;
    visibility: visible;
  }
  .nav-container .nav-links li:hover .sub-menu {
    position: unset;
  }
}

.main-btn {
  text-align: center;
}

header .banner {
  background: url("../../index/img/banner.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.section-1 {
  margin-bottom: 3rem;
}

.section-1 h2 {
  text-align: center;
  padding: 3rem;
}

.section-1 .sec1_card .card-service {
  padding: 40px 35px;
  border: 0;
  border-radius: 0;
  background: #fff;
  border: 1px solid #e8edf1;
  z-index: 22;
  position: relative;
  -webkit-transition: all 300ms linear 0s;
  transition: all 300ms linear 0s;
  min-height: 330px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-1 .sec1_card .card-service i {
  height: 72px;
  width: 72px;
  background: #ecf0f8;
  display: inline-block;
  text-align: center;
  line-height: 72px;
  border-radius: 51px;
  margin-bottom: 32px;
  font-size: 1.5rem;
}

.section-1 .sec1_card .card-service p {
  color: #797979;
  font-size: 0.8rem;
  text-align: justify;
}

.section-2 {
  padding: 3rem 0;
  background-color: #f8f9fa !important;
}

.section-2 .sec2-container .col-6 {
  padding: 3rem 3rem;
}

.section-2 .sec2-container .img img {
  width: 100%;
  max-height: 400px;
  background-size: cover;
}

.section-2 .sec2-container p {
  text-align: justify;
}

.section-2 .sec2-container h3 {
  position: relative;
}

.section-2 .sec2-container hr {
  width: 240px;
  height: 4px;
  color: #000 !important;
  margin: 0.3rem;
}

.footer-04 {
  background: #272727;
  padding-bottom: 0;
  padding: 3rem 3rem 1rem 3rem;
}

.footer-04 .logo {
  font-size: 2rem !important;
}

.footer-04 .footer-heading {
  font-size: 15px;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-04 .footer-heading a {
  font-size: 16px;
  color: #fff;
  text-transform: capitalize;
}

.footer-04 p {
  color: rgba(255, 255, 255, 0.3);
}

.footer-04 .list-unstyled li a {
  color: rgba(255, 255, 255, 0.7) !important;
  margin: 1rem 0;
}

.footer-04 .subscribe-form .form-group {
  position: relative;
  margin-bottom: 0;
  border-radius: 0;
}

.footer-04 .subscribe-form .form-group input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: none !important;
  outline: none !important;
  color: rgba(255, 255, 255, 0.3) !important;
  font-size: 16px;
  border-radius: 0;
}

.footer-04 .subscribe-form .form-group .submit {
  color: #fff !important;
  display: block;
  width: 52px;
  height: 52px;
  font-size: 16px;
  background: #B38A5F !important;
  border: none;
  border-radius: 0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.footer-04 .subscribe-form .form-group .submit .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-04 .ftco-footer-social li {
  list-style: none;
  margin: 0 10px 0 0;
  display: inline-block;
}

.footer-04 .ftco-footer-social li i {
  color: #fff;
  font-size: 1.5rem;
}

@media only screen and (max-width: 768px) {
  .footer-04 {
    padding: 1rem 10px;
  }
  .footer-04 .col-6 {
    width: 100%;
    text-align: center !important;
  }
  .footer-04 .col-4 {
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  header .banner {
    min-height: 35vh;
  }
  .section-2 .sec2-container .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .section-2 .sec2-container .row .col-6 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
  .section-2 .sec2-container .row .col-6 h3 {
    text-align: center;
    padding: 2rem 0 0 0;
  }
  .section-2 .sec2-container .row .col-6 .img {
    width: 100%;
  }
  .section-2 .sec2-container .row .col-6 .img img {
    max-height: 400px;
  }
  .section-2 .sec2-container .row:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media only screen and (max-width: 767.8px) {
  .section-1 h2 {
    padding: 3rem 1rem;
    font-size: 1.3rem;
  }
  .section-2 .sec2-container .col-6 {
    padding: 1rem 0;
  }
}

@media only screen and (max-width: 575.8px) {
  header .banner {
    min-height: 25vh;
  }
  header h1 {
    padding: 1rem 0;
  }
  .section-1 h2 {
    padding: 2rem 1rem 1rem 1rem;
    font-size: 1rem;
  }
  .section-2 {
    padding: 1rem 0;
  }
  .section-2 .sec2-container .col-6 {
    padding: 0 2rem !important;
  }
  .section-2 .sec2-container .col-6 h3 {
    padding: 1rem 0 0 0;
  }
}
/*# sourceMappingURL=style.css.map */



/* for desktop */
.whatsapp_float {
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
        font-size:30px;
	box-shadow: 2px 2px 3px #999;
        z-index:100;
}

.whatsapp-icon {
	margin-top:16px;
}
/* for mobile */
@media screen and (max-width: 767px){
     .whatsapp-icon {
	 margin-top:10px;
     }
    .whatsapp_float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        left: 10px;
        font-size: 40px;
    }
}


/* for desktop */
.phone {
	position:fixed;
	width:60px;
	height:60px;
	bottom:110px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
        font-size:30px;
	box-shadow: 2px 2px 3px #999;
        z-index:100;
}

.phone-icon {
	margin-top:16px;
}
/* for mobile */
@media screen and (max-width: 767px){
     .phone-icon {
	 margin-top:10px;
     }
    .phone {
        width: 60px;
        height: 60px;
        bottom: 90px;
        left: 10px;
        font-size: 40px;
    }
}

/* for desktop */
.phone {
	position:fixed;
	width:60px;
	height:60px;
	bottom:110px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
        font-size:30px;
	box-shadow: 2px 2px 3px #999;
        z-index:100;
}

.phone-icon {
	margin-top:16px;
}
/* for mobile */
@media screen and (max-width: 767px){
     .phone-icon {
	 margin-top:10px;
     }
    .phone {
        width: 60px;
        height: 60px;
        bottom: 90px;
        left: 10px;
        font-size: 40px;
    }
}