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

:root {

  /* Colors */
  --theme-color: #000;
  --theme-color-second: #bd6242;
  /* Fonts */
  --heading-font: "Open Sans", sans-serif;
  --paragraph-font: "Open Sans", sans-serif;
  --span-font: "heading-font";
  /* Shadows */
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;

}

body {
  margin: 0;
  padding: 0;
  outline: none;
  font-size: 17px;
  color: #1e1e1e;
  background-color: #fff;
  overflow-x: hidden;
  font-family: var(--paragraph-font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@font-face {
  font-family: "heading-font";
  src: url(../fonts/HelloAlmeida.ttf);
}

a {
  color: #0055f1;
  text-decoration: none;
  transition: color 0.3s ease;

}

a:hover {
  text-decoration: none;
  transition: color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
  font-family: var(--heading-font);
}

h1 {
  font-size: 56px;
  font-weight: 700;
}

h2 {
  font-size: 46px;
  font-weight: 700;
}

h3 {
  font-size: 40px;
  font-weight: 700;
}

.span-font {
  font-family: var(--span-font);
  font-weight: normal;
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}



ul {
  list-style: none;
  padding: 0;
}




.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}



.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  z-index: 999;
}

.m-backtotop>div.text {
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 0px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}


a.navbar-brand img {
  width: 157px;
}


.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color-second);
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 12px 6px;
  border-radius: 45px;
  width: 11rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--theme-color-second);
}

a.comon-btn:hover {
  background: var(--theme-color);
  color: #fff;
}

a.btn-2 {
  background-color: #1e1e1e;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.header_menu li a {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
  font-weight: 500;
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 200px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999;
}

.banner_sec a.review {
  width: 130px;
  height: 130px;
  border-radius: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: gold;
  text-align: center;
  line-height: 1.5;
  font-size: 20px;
  padding: 1rem;
  color: #000;
  font-weight: 600;
  transition: 0.6s;
}

.banner_sec a.review:hover {


  transition: 0.6s;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}

.banner_sec p.review a {
  color: #000;
}

.banner_sec h1 span {
  color: var(--theme-color-second);
  font-size: 40px;
}

.banner_sec {
  display: flex;
  height: 100vh;
  align-items: center;
  padding-bottom: 30px;
}

.home_sec_1 h2 .span-font,
.home_sec_1 span {
  color: var(--theme-color-second);
}

.home_sec_2 {
  background-position-x: 100% !important;
}

.home_sec_2 h2 span {
  color: var(--theme-color-second);
}

.home_sec_2 .list-unstyled li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.home_sec_2 .list-unstyled li i {
  color: var(--theme-color-second);
}

.home_sec_3 .heading .span-font {
  font-size: 35px;
  color: var(--theme-color-second);
}

.home_sec_3 .service-box {
  position: relative;
  height: 100%;
  border: 2px solid var(--theme-color-second);
  border-radius: 28px;
}

.home_sec_3 .service-box h3 {
  font-size: 21px;
  min-height: 53px;
}

.home_sec_3 .service-box a.read-more {
  background: var(--theme-color-second);
  height: 50px;
  display: flex;
  width: 50px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 600px;
  border: 2px solid var(--theme-color-second);
  position: absolute;
  bottom: 0;
  right: 0;
}

.home_sec_3 .service-box img {
  border-radius: 28px;
}

.home_sec_4 .heading .span-font {
  font-size: 35px;
  color: var(--theme-color-second);
}

.home_sec_4 .review-box .auther-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.home_sec_4 .review-box .auther-box span.letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: #fff;
  border-radius: 600px;
  font-size: 25px;
  background-color: green;
  font-weight: 600;
  line-height: 0;
}

.home_sec_4 .review-box .auther-box .rating {
  background-color: orange;
  font-size: 11px;
  width: 49px;
  text-align: center;
  padding: 2px 4px;
  border-radius: 600px;
  line-height: 0;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  /*display:none;*/
}


.home_sec_4 .review-box .content {
  margin-bottom: 25px;
  height: 150px;
  overflow-y: scroll;
  font-style: italic;
}


.home_sec_4 .review-box .content p {
  font-size: 14px;
  line-height: 1.6;
}

.home_sec_4 .review-box p.auther-dest {
  font-size: 12px;
  line-height: 1.6;

}

.home_sec_4 .review-box p.name {
  font-size: 14px;
  line-height: 1.6;

}

.home_sec_5 .heading .span-font {
  font-size: 35px;
  color: var(--theme-color-second);
}

.home_sec_5 .contact-card {
  border: 3px solid var(--theme-color-second);
  background-color: #e7e4e2;
  display: flex;
  gap: 5px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.home_sec_5 .contact-card h2 {
  font-size: 28px;
}



.home_sec_11 .contact-box {
  background-color: #ffffff;
  border-radius: 25px;
  border: 2px solid #fff;
}

.home_sec_11 .contact-box h2 {
  font-size: 25px;
}

.home_sec_11 form ::placeholder {
  color: #000;
}

.home_sec_11 form input {
  padding: 12px;
  width: 100%;
  background: transparent;
  border: none;
  border: 2px solid var(--theme-color-second);
  border-radius: 15px;
}

.home_sec_11 form textarea {
  padding: 12px;
  width: 100%;
  background: transparent;
  border: none;
  border: 2px solid var(--theme-color-second);
  border-radius: 15px;
  height: 95px;
}

.home_sec_11 form button {
  padding: 12px;
  width: 100%;
  background: var(--theme-color-second);
  border: none;
  border: 0px solid var(--theme-color-second);
  border-radius: 15px;
  text-transform: uppercase;
  font-weight: 600;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  width: 100%;
}

.footer .heading h3 {
  font-family: var(--paragraph-font);
  font-size: 26px;
}

.footer .contact-list li {
  margin-bottom: 10px;
}

.footer .contact-list li a {

  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
}

.inner_section {
  color: #fff;
  padding: 120px 0 30px;
}



.contact_sec_1 .contact_text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

.contact_sec_1 .contact_info_wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
	margin-top: 30px;
}

.contact_sec_1 .contact_info_item {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.contact_sec_1 .icon_box {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_sec_1 .icon_box svg {
  color: #c79a52;
}

.contact_sec_1 .contact_info_item h5,
.contact_sec_1 .contact_info_item h6 {
  margin: 0;
  color: #111;
  transition: 0.3s;
}

.contact_sec_1 .contact_info_item h5 {
  font-size: 20px;
  font-weight: 600;
}

.contact_sec_1 .contact_info_item h6 {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--paragraph-font);
  color: #4a4a46;
}

.contact_sec_1 .contact_info_item span {
  display: block;
  font-size: 13px;
  color: #777;
  margin-top: 4px;
  line-height: 1.6;
}

.contact_sec_1 .contact_info_item:hover h5,
.contact_sec_1 .contact_info_item:hover h6 {
  color: #c79a52;
}

.contact_sec_1 .address_text p {
  margin-bottom: 4px;
  color: #666;
  font-size: 15px;
}

.contact_sec_1 .contact_form_box {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.contact_sec_1 .contact_form_box label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #555;
}

.contact_sec_1 .form-control {
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  border: 1px solid #ddd;
  box-shadow: none;
}

.contact_sec_1 .form-control:focus {
  border-color: #c79a52;
  box-shadow: none;
}

.contact_sec_1 textarea.form-control {
  resize: vertical;
}

.contact_sec_1 .form-check-label {
  font-size: 13px;
  line-height: 1.7;
  color: #777;
}

.contact_sec_1 .form-check-input:checked {
  background-color: #c79a52;
  border-color: #c79a52;
}

.contact_sec_1 .submit_btn {
  width: 100%;
  border: 0;
  padding: 15px 20px;
  border-radius: 50px;
  background: #111;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.contact_sec_1 .submit_btn:hover {
  transform: translateY(-2px);
  background: #c79a52;
}

.fixed-btn {
  display: none;
}

@media(max-width: 992px) {
  .fixed-btn {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    z-index: 11;
  }

  .fixed-btn a {
    display: block;
    background-color: #ffd700;
    padding: 15px;
    color: #000;
    text-transform: uppercase;
  }

  .contact_sec_1 .contact_form_box {
    padding: 30px;
  }

}


input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background-color: #bd6242;
	    font-weight: 600;
}

input[type="checkbox"] {
    width: 6%;
    margin-right: 15px;
    gap: 10px;
	background-color: #c79a52;
    border-color: #c79a52;
}
.contact_sec_1 .contact_form_box label {
    display: flex;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #555;
}
.contact_form_box p {
    line-height: 17px; 
	margin-bottom: 0px;
	color: #555;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 100%;
    border: 0;
    padding: 15px 20px;
    border-radius: 50px;
    background: #111;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 10px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
    background: #c79a52;
}