/*====================
1. Google fonts
======================*/

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/*====================
2. Theme variables
======================*/

:root {
  --body-font: "DM Sans", sans-serif;
  --heading-font: "Libre Baskerville", serif;
  --theme-color: #d3a24e;
  --theme-color2: #bd8831;
  --theme-extra: #30413d;
  --heading-color: #101010;
  --theme-bg-light: #f8f8f8;
  --theme-eye: #e5ebe4;
  --theme-color-light: rgba(255, 94, 20, .1);
  --body-text-color: #444;
  --color-white: #ffffff;
  --color-dark: #101010;
  --color-green: #15D4C9;
  --color-blue: #0049D0;
  --color-black: #121212;
  --color-skyblue: #00BFFF;
  --color-yellow: #FBA707;
  --color-gray: #ECECEC;
  --color-red: #F05454;
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --border-white-color2: rgba(255, 255, 255, 0.05);
  --footer-bg: #031e40;
  --footer-text-color: #F5FAFF;
  --body-bg: #f0f1e9;
}



/*====================
3. General css
======================*/

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: var(--body-text-color);
  line-height: 1.8;
  overflow-x: hidden;
  font-weight: 400;
  background: var(--body-bg);
}

a {
  color:  var(--color-dark);
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

a:hover {
  color: var(--color-blue);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color:  var(--color-dark);
  margin: 0px;
  font-weight: 800;
  font-family: var(--heading-font);
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0px;
}

.img,
img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: var(--color-white);
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky !important;
    top: 30px;
    z-index: 9 !important;
}



/*===================
4. Theme default css
======================*/

.bg {
  background: var(--theme-bg-light);
}



/*====================
5. Margin & padding
======================*/

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-120 {
  padding-bottom: 120px;
}

.py-80 {
  padding: 80px 0;
}

.py-90 {
  padding: 90px 0;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-120 {
  margin-top: 120px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}


.my-80 {
  margin: 80px 0;
}

.my-90 {
  margin: 90px 0;
}

.my-100 {
  margin: 100px 0;
}





/*====================
7. Bs custom css
======================*/

/* custom form */
.form-group {
  margin-bottom: 20px;
}

.form-group .form-label{
  color: var(--color-dark);
}

.form-group .form-control,
.form-group .form-select{
  padding: 14px 20px 14px 20px;
  border-radius: 15px;
  background-color: var(--color-white);
  color: var(--color-dark);
  border-color: var(--border-info-color);
}

.form-group .form-control::placeholder{
  color: var(--body-text-color);
}

.form-group .form-control:focus,
.form-group .form-select:focus{
  border-color: var(--theme-color);
  box-shadow: 0 0 0 .25rem rgba(249, 92, 20, .25)
}

.form-group .form-icon{
  position: relative;
}

.form-group .form-icon i{
  position: absolute;
  top: 19px;
  left: 20px;
  color: var(--theme-color);
  z-index: 1;
}

.form-group .form-icon .form-control,
.form-group .form-icon .form-select{
  padding-left: 50px;
}

.form-check{
  margin-bottom: 20px;
}

.form-check .form-check-input{
  border-radius: 6px;
  margin-top: 6.5px;
  border-color: var(--border-info-color);
}

.form-check .form-check-label{
  color: var(--color-dark);
}

.form-check .form-check-input:checked{
  background-color: var(--theme-color);
  border-color: var(--theme-color)
}

.form-check .form-check-input:focus{
  border-color: var(--theme-color);
  box-shadow: 0 0 0 .25rem rgba(249, 92, 20, .25)
}



/*====================
8. Container
======================*/

@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1230px;
  }
}


/*====================
11. Site title css
======================*/

.site-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.site-title-tagline {
    font-size: 13px;
    background: var(--theme-eye);
    color: var(--theme-extra);
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--body-font);
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 15px;
    display: inline-block;
}

.site-title-tagline.light{
  background: var(--color-white);
}

.site-title-tagline i{
  font-size: 14px;
  width: 23px;
  height: 23px;
  line-height: 23px;
  background: var(--color-white);
  color: var(--theme-color);
  text-align: center;
  border-radius: 50px;
  margin-right: 5px;
}

.site-title {
    font-weight: 700;
    text-transform: inherit;
    font-size: 38px;
    color: var(--color-dark);
    margin-bottom: 0;
    letter-spacing: -0.4px;
    line-height: 1.05;
}

.site-title span{
  color: var(--theme-color);
}

.site-heading p {
  margin-top: 15px;
}

/*====================
12. Theme button
======================*/

.theme-btn, .theme-btn2 {
    font-size: 16px;
    color: var(--color-white);
    padding: 12px 35px;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    border-radius: 50px;
    font-weight: 400;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    border: none;
    background: var(--theme-color);
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.theme-btn::before,
.theme-btn2::before {
  content: "";
  height: 400px;
  width: 400px;
  background: var(--theme-color2);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn:hover{
  color: var(--color-white);
}

.theme-btn:hover::before,
.theme-btn2:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i,
.theme-btn2 i{
  margin-left: 8px;
  transition: var(--transition2);
}



.theme-btn span,
.theme-btn2 span {
  margin-right: 5px;
}

.theme-btn2{
  background: var(--theme-color2);
  color: var(--color-white);
}

.theme-btn2::before {
  background: var(--color-dark);
}

.theme-btn2:hover{
  color: var(--color-white);
}




/*====================
14. Navbar css
======================*/

.navbar {
  background: transparent;
  padding-top: 0px;
  padding-bottom: 0px;
  z-index: 4;
}

.navbar.fixed-top {
  position: fixed;
  background: var(--color-white);
  box-shadow: var(--box-shadow2);
  animation: slide-down 0.7s;
  z-index: 91;
}

.navbar-bg {
    background: #fcfbf6a3;
    border-radius: 0 0 10px 0;
    padding: 8px 12px;
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.navbar .navbar-brand .logo-display {
  display: block;
}

.navbar .navbar-brand .logo-scrolled {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
    width: auto;
    height: 55px;
    object-fit: contain;
}

.navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  font-family: 'Font Awesome 6 Pro';
  content: "\f107";
  font-weight: 600;
  border: none;
  font-size: 14px;
}

@media all and (min-width: 992px) {

  .navbar .nav-item .nav-link {
    margin-right: 42px;
    padding: 28px 0 28px 0;
    font-size: 17px;
    font-weight: 400;
    color: var(--color-white);
    text-transform: capitalize;
  }

  .navbar.fixed-top .nav-item .nav-link{
    color: var(--color-white);
  }

  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: var(--theme-color2);
  }

  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    padding: 10px;
    margin-top: 0;
    left: -15px;
    border-radius: 15px;
    border: none;
    background: var(--color-white);
    width: 220px;
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition2);
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 15px;
    padding: 6px 15px;
    font-weight: 400;
    color: var(--color-dark);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
    transition: var(--transition2);
    z-index: 1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: var(--theme-color);
    color: var(--color-white);
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }

  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }

  /* nav right */
  .nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-left: 25px;
  }

  .nav-right-link {
    position: relative;
    font-size: 17px;
    color: var(--color-white);
    border: none;
    padding-right: 0;
    background: transparent;
    transition: var(--transition);
    font-weight: 400 !important;
    border-left: 0px solid #ddd;
    padding-right: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .nav-right-link i {
    font-size: 26px;
    color: #333;
  }

  .nav-right-link .conts p {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1;
    color: #333;
  }

  .nav-right-link .conts span {
    font-size: 13px;
    line-height: 1;
    color: #555;
    font-weight: 600;
  }

  .nav-right-link:hover {
    color: var(--theme-color2);
  }

  .navbar.fixed-top .nav-right-link{
    color: var(--color-black);
  }

  .navbar.fixed-top .nav-right-link:hover{
    color: var(--theme-color);
  }

  .nav-right .call-wrap{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
  }

  .nav-right .call-wrap .icon{
    width: 45px;
    height: 45px;
    line-height: 46px;
    border-radius: 50px;
    background: var(--theme-color);
    color: var(--color-white);
    text-align: center;
    font-size: 18px;
    margin-top: 5px;
  }

  .nav-right .call-wrap .content span{
   color: var(--theme-color);
   font-weight: 500;
  }

  .nav-right .call-wrap .content h6 a{
    color: var(--color-dark);
    font-weight: 800;
  }

  .nav-right .sidebar-btn span{
    display: block;
    width: 24px;
    border-bottom: 3px solid var(--color-dark);
    border-radius: 50px;
    margin-top: 6px;
    margin-left: auto;
    transition: var(--transition);
  }

  .nav-right .sidebar-btn span:first-child{
    width: 10px;
    margin-top: 0;
  }

  .nav-right .sidebar-btn span:nth-child(3){
    width: 15px;
  }

  /* navbar light */
  .navbar.light .nav-item .nav-link{
    color: var(--color-white);
  }

  .navbar.light.fixed-top .nav-item .nav-link{
    color: var(--color-dark);
  }

  .navbar.light .nav-item .nav-link.active,
  .navbar.light .nav-item:hover .nav-link {
    color: var(--theme-color);
  }

  .navbar.light .nav-right-link{
    color: var(--color-white);
  }

  .navbar.light.fixed-top .nav-right-link{
    color: var(--color-dark);
  }

  .navbar.light .nav-right-link:hover{
    color: var(--theme-color);
  }

  .navbar.light .nav-right .sidebar-btn span{
    border-color: var(--color-white);
  }

  .navbar.light.fixed-top .nav-right .sidebar-btn span{
    border-color: var(--color-dark);
  }
}

@media all and (max-width: 1199px) {
  .navbar .nav-item .nav-link {
    margin-right: 15px;
  }

  .nav-right {
    margin-left: 25px;
  }

  .nav-right .sidebar-btn,
  .nav-right .call-wrap{
    display: none;
  }
}


/* navbar mobile menu */
.navbar .mobile-menu-right {
  display: none;
}
.mobile-menu-btn a {
    color: var(--color-white);
}

@media all and (max-width: 991px) {
  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-brand img {
    width: auto;
  }

  .navbar .offcanvas{
    width: 300px;
    background: var(--theme-color);
  }

  .navbar .offcanvas-header .btn-close{
    background: var(--theme-color);
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50px;
    color: var(--color-white);
    font-size: 18px;
    box-shadow: none;
    opacity: 1;
  }

  .navbar .offcanvas-brand{
    width: 150px;
  }

  .navbar .nav-item .nav-link {
    color:  var(--color-white);
    font-weight: 500;
    margin-right: 0px;
    transition: var(--transition);
  }

  .navbar .nav-item .nav-link:hover {
    color: var(--theme-color2);
  }

  .navbar .nav-item .dropdown-menu {
    border-radius: 15px;
  }

  .navbar .nav-item .dropdown-toggle::after {
    float: right;
    margin-top: 2.5px;
  }

  .navbar-toggler {
    padding: 0;
    border: none;
  }

  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }

  .navbar-toggler span{
    display: block;
    width: 22px;
    border-bottom: 3px solid var(--color-white);
    border-radius: 50px;
    margin-top: 5px;
  }

  .navbar-toggler span:first-child{
    margin-top: 0;
  }

  .navbar-toggler span:nth-child(2){
    width: 15px;
  }

  .navbar .mobile-menu-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .navbar .mobile-menu-right .nav-right-link {
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--color-dark);
  }

  .navbar .mobile-menu-right .nav-right-link:hover{
    color: var(--theme-color);
  }

  .nav-right {
    display: block;
  }

  .nav-right .search-btn{
    display: none;
  }

  /* navbar light */
  .navbar.light .navbar-toggler span{
    border-color: var(--color-white);
  }

  .navbar.light.fixed-top .navbar-toggler span{
    border-color: var(--color-dark);
  }

  .navbar.light .mobile-menu-right .nav-right-link {
    color: var(--color-white);
  }

  .navbar.light.fixed-top .mobile-menu-right .nav-right-link {
    color: var(--color-dark);
  }

  .navbar.light .mobile-menu-right .nav-right-link:hover{
    color: var(--theme-color);
  }
}



/*====================
19. Main section css 
======================*/

.main {
  margin-top: 0rem;
}



/*====================
20. Hero css 
======================*/

.hero-single {
  padding-top: 0px;
  padding-bottom: 0px;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.hero-single video, .hero-single img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.hero-single::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -0.5px;
    background: linear-gradient(45deg, #fffcf7 0%, #fffdf7ba 40%, rgb(26 63 115 / 0%) 100%);
    z-index: 1;
}
.hero-single .hero-content {
    height: 100%;
    text-align: left;
}
.hero-single .overlay{
    padding-top: 130px;
    position: relative;
    z-index: 9;
    padding-bottom: 60px;
}
.hero-single .hero-content .site-title-tagline {
    font-size: 13px;
    background: var(--theme-eye);
    color: var(--theme-extra);
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    font-family: var(--body-font);
    padding: 6px 12px;
}
.hero-single .hero-content .site-title-tagline i{
  background: var(--theme-color);
  color: #fff;
}
.hero-single .hero-content .hero-title {
    color: var(--color-white);
    font-size: 38px;
    font-weight: 900;
    margin: 10px 0 20px;
    text-transform: none;
    letter-spacing: -.04em;
    line-height: 1.1;
}

.hero-single .hero-content .hero-title span{
  color: var(--theme-color);
}

.hero-single .hero-content p {
    color: var(--color-white);
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 580px;
    margin: 0 auto;
}

.hero-single .hero-content .hero-btn {
  display: flex;
  justify-content: start;
  gap: 1rem;
  margin-top: 35px;
}

.hero-banner-form {
    border-radius: 20px;
    background: #fff;
    padding: 35px;
}
.hero-banner-form h4 {
    margin-bottom: 4px;
    color: var(--color-dark);
    font-size: 20px;
    font-weight: 900;
}
.hero-banner-form span {
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}
.hero-banner-form .form-group label input {
    position: absolute;
    left: 0;
    top: 3px;
}
.hero-banner-form .form-group label {
    font-size: 14px;
    line-height: 1.2;
    color: #555;
    font-weight: 600;
    padding-left: 2px;
    position: relative;
    margin-bottom: 0;
}
.hero-banner-form .form-group {
    margin-bottom: 13px;
}
.hero-banner-form .form-group .form-control::placeholder {
    color: #999;
}
.hero-banner-form .form-group .form-control:focus, .hero-banner-form .form-group .form-select:focus {
    outline: 0px solid #04283e1c;
    border: 1px solid var(--theme-color2);
}
.hero-banner-form .form-group .form-control, .hero-banner-form .form-group .form-select {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #ddd;
}
.hero-banner-form .theme-btn:before{
  width: 100%;
  height: 600px;
}
.hero-banner-form p a:hover{
  color: var(--theme-color2);
}
.hero-banner-form p a {
    margin: 0 1px;
    font-weight: 500;
}
.hero-banner-form p span {
    margin: 0 5px;
}
.hero-banner-form p {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 13px;
    color: #555;
    font-weight: 500;
}
.hero-content ul.list li i {
    color: var(--theme-color);
}
.hero-content ul.list li {
    color: #eee;
}

.benefits {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.benefits .benefit p {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.benefits .benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4ead5;
    color: #654719;
    font-size: 20px;
    margin-bottom: 10px;
}


@media all and (max-width: 1199px) {
  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }
}

@media all and (max-width: 991px) {
  .hero-single .hero-content .hero-title {
    font-size: 32px;
  }
  .hero-single{
    min-height: 70vh;
  }
  .benefits .benefit p{
    font-size: 13px;
  }
}

@media all and (max-width: 767px) {
  .hero-single .hero-content .hero-sub-title {
    font-size: 18px;
  }

  .hero-single .hero-content .hero-btn {
    gap: 1rem;
  }
}



/* hero-slider */
.hero-slider .owl-nav {
  margin-top: 0px;
}

.hero-slider .owl-nav button i{
  display: inline-block;
  height: 55px;
  width: 55px;
  line-height: 55px;
  color: var(--theme-color);
  font-size: 25px;
  text-align: center;
  background: var(--color-white);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}



.feature {
    display: flex;
    gap: 16px;
    margin-top: 25px;
}
.feature-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f4ead5;
    color: #654719;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}
.feature h4 {
    font-size: 16px;
    margin: 1px 0 5px;
    font-weight: 900;
    color: var(--heading-color);
}
.feature p {
    font-size: 15px;
    line-height: 1.5;
    color: #4b5653;
    margin: 0;
}
.feature-icon::before{
  display: none;
}
.feature .info{
  width: 80%;
}

.divider-sec .dots {
    background: #f0f1e9;
    width: fit-content;
    margin: -7px auto;
    padding: 3px 20px;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.divider-sec .dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #dfbd7b;
    position: relative;
    margin-bottom: 0px;
}
.divider-sec .dots .dot.active {
    background: var(--theme-color2);
}
.divider-sec hr {
    margin: 0;
}

hr{
  border-color: #ddd;
  opacity: 1;
}
.works-conts-items h1 i {
    margin-left: 30px;
    color: var(--heading-color);
}
.works-conts-items p {
    line-height: 1.5;
}
.works-conts-items h3 {
    font-size: 22px;
    margin-bottom: 7px;
    color: #333;
}
.works-conts-items h1 {
    color: var(--theme-color);
    margin-bottom: 15px;
}
.works-conts-items {
    padding: 20px 30px;
    border-right: 1px solid #ddd;
}
.works-conts-items.last{
  border-right: 0;
}


.your-matter-sections {
    margin-top: 25px;
    background: #fff;
    border: 1px solid #dddcd2;
    border-radius: 12px;
    padding: 22px 28px;
    box-shadow: 0 8px 18px rgba(28, 42, 38, .06);
}
.your-matter-call-sec .info .theme-btn {
    font-size: 14px;
    font-weight: 500;
    padding: 11px 29px;
}
.your-matter-call-sec .info p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
}
.your-matter-call-sec .info h3 {
    font-size: 24px;
    margin-bottom: 6px;
}
.your-matter-call-sec .icon {
    flex: 0 0 80px;
    font-size: 70px;
    color: var(--theme-extra);
}
.your-matter-call-sec {
    display: flex;
    gap: 10px;
    align-items: center;
}
.your-matter-call-one {
    text-align: end;
}
.your-matter-call-one img {
    text-align: end;
    height: 100%;
    object-fit: contain;
}
.your-matter-call-two p {
    text-align: center;
    font-size: 13px;
    letter-spacing: 3px;
    line-height: 1.3;
}
.your-matter-call-two img {
    height: 90px;
    width: auto;
    object-fit: contain;
    margin-bottom: 7px;
}
.your-matter-call-two {
    text-align: end;
}


/* ===================
22. About css 
====================== */


.about-left{
  position: relative;
}

.about-img img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
    height: auto;
}

.about-img .img-2{
  margin-left: -20px;
  margin-top: 130px;
  border: 10px solid var(--color-white);
}

.about-img .img-3{
  margin-top: -20px;
  margin-left: -50px;
  border: 10px solid var(--color-white);
}

.about-right {
  position: relative;
  display: block;
}

.about-right h4 {
    font-size: 21px;
    margin-bottom: 8px;
    color: var(--color-black);
}

.about-experience{
  background: var(--theme-color2);
  position: absolute;
  right: 50px;
  bottom: 20px;
  padding: 14px 25px;
  border-radius: 100px;
  text-align: center;
  border: 10px solid var(--color-white);
}

.about-experience h5{
  color: var(--color-white);
  font-size: 40px;
}

.about-experience p{
  color: var(--color-white);
  font-weight: 600;
}

.about-content {
  margin-top: 25px;
  margin-bottom: 35px;
}

.about-item {
    display: grid;
    gap: 18px;
    border: 0px solid var(--border-info-color);
    border-radius: 20px;
    transition: .6s all;
    height: 100%;
    background-color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.about-item:hover {
    border: 0px solid #db9d00;
    transform: scale(1.02);
}

.about-item .icon{
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  background: var(--theme-color);
  border-radius: 50px;
}

.about-item .icon {
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    background: var(--theme-color2);
    border-radius: 50px;
    color: var(--theme-color);
    font-size: 32px;
}

.about-item .icon img{
  width: 45px;
  filter: brightness(0) invert(1);
}

.about-item .content {
    flex: 1;
    padding: 25px;
    background: #02183dcc;
}

.about-item .content h6 {
    color: var(--color-white);
    margin-bottom: 8px;
    font-size: 22px;
}

.about-item .content ul li i {
    margin-right: 3px;
    font-size: 17px;
    color: var(--theme-color2);
}

.about-item .content ul li {
    font-size: 15px;
    color: #eee;
    margin-bottom: 4px;
}
.about-text{
  color: var(--body-text-color);
  margin-bottom: 12px;
}


@media all and (max-width: 991px) {
  .about-right {
    margin-top: 80px;
  }
}

@media all and (max-width: 767px) {
  .about-title {
    font-size: 30px;
  }

  .about-img .img-2{
    margin-top: 60px;
    margin-left: -10px;
  }

  .about-img .img-3{
    margin-left: -30px;
  }

  .about-experience{
    right: -7px;
    bottom: -60px;
  }
}



/*====================
51. Scroll top css
======================*/

#scroll-top {
  position: fixed;
  bottom: -20px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  border-radius: 50px;
  color: var(--color-white);
  background-color: var(--theme-color);
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: var(--box-shadow2);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: rotate(-40deg);
  z-index: 1;
}

#scroll-top:hover{
  transform: rotate(0);
}

#scroll-top.active{
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}


@media all and (min-width: 768px) and (max-width: 1199px) {
  #scroll-top.active {
    bottom: 100px;
  }
}



/*====================
52. Footer css 
======================*/

.footer-area {
  background: var(--color-white);
  position: relative;
  z-index: 1;
  border-top: 1px solid #ddd;
}

.footer-shape img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .1;
  z-index: -1;
}

.footer-widget {
  position: relative;
}

.footer-widget-box.about-us{
  margin-right: 0px;
}

.footer-widget-box p {
    color: var(--heading-color);
    padding-right: 0px;
    margin-bottom: 20px;
    line-height: 1.4;
    font-size: 13px;
}

.footer-logo img {
    width: auto;
    height: 60px;
    margin-bottom: 15px;
}

.footer-widget-title {
  color: var(--heading-color);
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 21px;
  z-index: 1;
}

.footer-widget-title::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 3px;
  background: var(--theme-color);
  border-radius: 50px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: .70rem;
}

.footer-list li a {
  color: var(--heading-color);
  transition: var(--transition);
  position: relative;
}

.footer-list li a i {
  margin-right: 5px;
  color: var(--theme-color);
  opacity: 0;
  transition: var(--transition);
}

.footer-list li a:hover {
  color: var(--theme-color2);
}

.footer-list li a:hover i{
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: end;
}

.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50px;
  background: var(--heading-color);
  color: var(--theme-color);
  transition: var(--transition);
}

.footer-social li a i:hover {
  background: var(--theme-color);
  color: var(--heading-color);
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  gap: 10px;
  color: var(--footer-text-color);
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-contact .icon{
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: var(--theme-color);
  border-radius: 50px;
  text-align: center;
}

.footer-contact .content {
    flex: 2;
    width: 80%;
}

.footer-contact .content h6{
  color: var(--color-white);
  margin-bottom: 5px;
}

.footer-contact .content a {
    color: var(--color-white);
    word-wrap: break-word;
    word-break: break-all;
}

.footer-newsletter h6{
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-newsletter .newsletter-form .form-group{
  position: relative;
}

.footer-newsletter .newsletter-form .form-icon > i{
  top: 21px;
  left: 0;
  color: var(--theme-color);
}

.footer-newsletter .newsletter-form .form-control {
  padding: 16px 140px 16px 32px;
  border-radius: 0px;
  color: var(--color-white);
  box-shadow: none;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--color-white);
  outline: none;
}

.footer-newsletter .newsletter-form .form-control:focus{
  border-bottom-color: var(--theme-color);
}

.footer-newsletter .newsletter-form .form-control::placeholder{
  color: var(--color-white);
}

.footer-newsletter .newsletter-form .theme-btn {
  position: absolute;
  right: 0px;
  top: 5px;
  border-radius: 50px;
  padding: 5px 15px;
}

.footer-newsletter .newsletter-form .theme-btn:hover {
  color: var(--theme-color);
}

.footer-newsletter .newsletter-form .theme-btn::before{
  background: var(--color-white);
}

.footer-newsletter .newsletter-form .theme-btn span{
  margin-right: 0;
  margin-left: 5px;
}

.copyright {
  padding: 20px 0;
  border-top: 1px solid var(--border-white-color);
}

.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  color: var(--footer-text-color);
  transition: var(--transition);
}

.copyright .footer-menu li a:hover {
  color: var(--theme-color);
}

.copyright .copyright-text {
    color: var(--theme-bg-light); 
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 400;
}

.copyright .copyright-text a {
    color: #fff;
    font-weight: 400;
}


@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }

  .footer-list li a{
    font-size: 14px;
  }
}

@media all and (max-width: 991px) {
  .footer-widget-wrap {
    padding-bottom: 0px;
  }

  .footer-list li a{
    font-size: 16px;
  }

  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }

  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }
}

@media all and (max-width: 767px) {
  .footer-widget-wrap {
    padding-bottom: 0px;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }
}


/* footer light */
.footer-area.light{
  background: var(--theme-bg-light);
}

.footer-area.light .footer-widget-title{
  color: var(--color-dark);
  font-weight: 800;
}

.footer-area.light .footer-widget-box p{
  color: var(--body-text-color);
}

.footer-area.light .footer-newsletter h6{
  color: var(--color-dark);
  font-weight: 700;
}

.footer-area.light .newsletter-form .form-control{
  color: var(--color-dark);
  border-bottom-color: var(--body-text-color);
}

.footer-area.light .newsletter-form .form-control::placeholder{
  color: var(--body-text-color);
}

.footer-area.light .newsletter-form .form-control:focus{
  border-bottom-color: var(--theme-color);
}

.footer-area.light .footer-list li a{
  color: var(--body-text-color);
}

.footer-area.light .footer-list li a:hover{
  color: var(--theme-color);
}

.footer-area.light .footer-contact .content h6{
  color: var(--color-dark);
  font-weight: 700;
}

.footer-area.light .footer-contact .content a{
  color: var(--body-text-color);
}

.footer-area.light .footer-social li a i{
  background: var(--color-dark);
  color: var(--color-white);
}

.footer-area.light .footer-social li a i:hover{
  background: var(--theme-color);
}

.footer-area.light .copyright{
  border-top-color: var(--border-info-color);
}

.footer-area.light .copyright .copyright-text{
  color: var(--body-text-color);
}


/*====================
54. Home-3 css 
======================*/

.home-3 .hero-section{
  margin-top: -5rem;
}

.home-3 .hero-single{
  background: var(--theme-color-light);
  padding-top: 0px;
}

.home-3 .hero-single::before{
  background-image: url(../img/shape/05.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .5;
}

.home-3 .hero-single .hero-content .hero-sub-title{
  color: var(--theme-color);
}

.home-3 .hero-single .hero-content .hero-sub-title::before{
  display: none;
}

.home-3 .hero-single .hero-content .hero-title{
  color: var(--color-dark);
}

.home-3 .hero-single .hero-content p{
  color: var(--color-dark);
}

.home-3 .hero-single .hero-img{
  text-align: right;
  position: relative;
}

.home-3 .hero-single .hero-img .play-btn{
  width: 95px;
  height: 95px;
  top: 50%;
  transform: translateY(-50%);
  border: 10px solid var(--color-white);
  margin-left: -50px;
}
.contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-img {
  height: 100%;
}
.home-3 .hero-single .hero-img img{
  width: 80%;
  border-radius: 40px;
}

.destination-single-img img {
    border-radius: 25px;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.service-provider-item p {
    font-size: 21px;
    font-weight: 400;
    color: var(--color-black);
}
.service-provider-item {
    background: #fff;
    padding: 16px 30px;
    text-align: center;
    font-size: 20px;
    border: 1px solid var(--theme-color); 
    margin: 10px 0;
    border-radius: 20px;
    cursor: pointer;
    /*box-shadow: 0px 5px 10px 0px #033b6926;*/
    transition: .5s;
}
.service-provider-item.two{
  border: 1px solid var(--theme-color2);
}
.service-provider-item:hover {
    transform: scale(1.04);
}
.about-list {
    position: relative;
    display: block;
}
.about-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}
.about-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
}
.about-list li .icon span {
    font-size: 19px;
    color: var(--theme-color);
    margin-top: 0px;
}
.about-list li .text {
    margin-left: 8px;
}
.about-list li .text p {
    color: #333;
    margin: 0;
    line-height: 1.4;
}
ul.menu-list{
    margin: 10px 30px;
}
ul.menu-list li {
    list-style: disc;
}

@media all and (max-width: 991px) {
  .home-3 .hero-single .hero-img{
    margin-top: 40px;
  }
  .portfolio-img{
    height: 280px;
  }
  .contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contact-img {
      height: auto;
  }
  .remote_sections_item{
    padding: 40px 0 35px;
  }
  .pa-bg{
    height: 400px;
  }
}

@media (min-width:992px) and (max-width: 1024px){
    .navbar .nav-item .nav-link {
        margin-right: 12px;
    }
    .navbar .nav-item .nav-link{
      font-size: 16px;
    }
    .nav-right{
      margin-left: 15px;
    }
    .nav-right-link{
      padding-left: 15px;
    }
    .navbar-brand img {
      width: auto;
      height: 50px;
    }
    .service-content h4 a{
      font-size: 24px;
    }
    .site-title{
      font-size: 36px;
    }
    .pa-bg{
      height: 400px !important;
    }
}

@media (max-width: 767.98px){
  .site-title{
    font-size: 32px;
  }
  .nav-right {
        margin-left: 12px;
    }
  .nav-right .nav-btn .theme-btn2 {
    font-size: 12px;
    color: var(--color-white);
    padding: 7px 20px;
  }
  .navbar-brand img {
    width: auto;
    height: 30px;
  }
  .offcanvas-header img{
    height: 80px;
  }
  .offcanvas-header{
    border-bottom: 1px solid #ddddddc2;
  }
  .hero-single .hero-content .hero-title {
    font-size: 28px;
  }
  .benefits .benefit p{
    font-size: 12px;
  }
  .your-matter-call-sec {
    display: grid;
    gap: 10px;
    align-items: center;
  }
  .your-matter-call-one, .your-matter-call-two{
    text-align: center;
  }
}