@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
  --theme-color: #000000;
  --theme-color-second:#b29d99;
  --theme-color-third: #183209;

  --heading-font: "Inter", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --span-font: 'spanist';



  --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 !important;

}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 17px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: "Inter", sans-serif;
  /* color: var(--theme-color) !important; */
}


a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;

}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: 50px;
}

h3 {}

h4{}

h5{}

h6{}


.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;
}

/* navbar----------- */


@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

* {
  box-sizing: border-box;
}
.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: 196px;
}

.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
}

.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: 16px;
  padding: 12px 6px;
  border-radius: 5px;
  width: 13rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}

a.comon-btn:hover {
  background: var(--theme-color-third);
  color: #fff;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.header_menu li a {
    color: #000000;
    font-size: 15px;
    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: 9999999999999;
}



.banner-sec .ft-not-box{
  display: flex;
  gap: 10px;
  font-weight: 600;
   color: #fff;
   justify-content: center;
}
.banner-sec .ft-not-box a{
  color: #fff;
  font-size: 19px;
}
.banner-sec h1{
  font-weight: 700;
  text-transform: uppercase;
}

.banner-sec {
  padding-top: 110px;
  padding-bottom: 30px;
}

.about_sec h2{
   font-weight: 700;
  text-transform: uppercase;
}

.service_sec h2{
   font-weight: 700;
  text-transform: uppercase;
}

.service_sec  .service_box h4{
    font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.faq .accordion-item {
    background-color: #ffffff5e;
    border: 1px solid rgba(0,0,0,.125);
    margin-bottom: 13px;
}

.faq .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #000000;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.faq  .accordion-body {
    padding: 1rem 1.25rem;
    background: #000;
    color: #fff;
}

.faq .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: #ffffff49;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
}

.faq .accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("../image/arrow-down-sign-to-navigate.png");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}


.testimonial .rating-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
 
}
.testimonial .review-box{
   border: 1px solid var(--theme-color-second);
}
.testimonial .rating-box .name{
  display: flex;
  height: 50px;
  width: 50px;
  background-color: green;
  color: #fff;
  font-size: 25px;
  border-radius: 60px;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.testimonial .rating-box  .start{
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: orange;
  padding:2px 14px;
  font-size: 14px;
  border-radius: 60px;
}

.testimonial .review-box .content{
  height: 155px;
  overflow-y: scroll;
  margin-bottom: 55px;
}



/* contact-us */
.contact-us .heading h3{
  margin-bottom: 25px;
}
.contact-us input , .contact-us textarea{
  background-color: #ced4da;
  padding: 12px;
  border-radius: 5px;
  border: none;
}

.contact-us textarea{
  height: 122px;
}

.contact-us button{
  background: var(--theme-color-second);
  color: #fff;
  padding: 12px;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  width: 100%;
}

.contact-us p a{
  color: #2a6272;
}
.contact-us .map{
  line-height: 0;
}

.subscription_sec form input{
  padding: 13px;
  border: none;
}

.subscription_sec form button{
  background-color: #fff;
  border: none;
   padding: 13px;
  border: none;
  width: 100%;
  letter-spacing: 3px;
}


.our-blog .blog-box a {
  color: #1e1e1e;
  font-weight: 600;
}


.our-blog .blog-box  img{
  margin-bottom: 25px;
}

.footer{
  padding: 55px 0;
  color: #fff;
}

.footer .heading a{
  color: #fff;
}

.footer ul.ul.ft-list{
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0;
}
.footer ul.ul.ft-list li a{
  color: #fff;
}