/* =======

	Template Name: Play Bootstrap
	Author: UIdeck
	Author URI: https://uideck.com/
	Support: https://github.com/uideck/
	Version: 1.0

======== */
/*===========================
  COMMON css
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
:root {
  --font: "Poppins", sans-serif;
  --body-color: #637381;
  --heading-color: #212b36;
  --primary-color: #2D1107;
  --white: #ffffff;
}

body {
  font-family: var(--font);
  font-weight: normal;
  font-style: normal;
  color: var(--body-color);
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

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

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--body-color);
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== All Button Style =====*/
.ud-main-btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 500;
  font-size: 16px;
  border-radius: 5px;
  padding: 15px 25px;
  border: 1px solid transparent;
  color: var(--white);
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background: var(--primary-color);
}

.ud-main-btn:hover {
  color: var(--white);
  background: var(--heading-color);
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.back-to-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #f3f4fe;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  color: black;
}

.back-to-top:hover {
  color: var(--white);
  background: var(--heading-color);
}

/* ===== Header CSS ===== */
.ud-header {
    padding: 12px;
    height: 100px;
    background: white;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top:0px
}


.navbar {
  padding: 0px 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-brand {
    padding: 5px 0px;
  }
}

.navbar-brand img {
  max-width: 260px;
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    max-width: 300px;
    width: 100%;
    background-color: var(--white);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
    display: none;
    border-radius: 5px;
  }
  .navbar-collapse.show {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav {
    padding: 20px 30px !important;
  }
}

.navbar-nav .nav-item {
  position: relative;
  padding: 0px 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    padding: 0px 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item {
    padding: 0px;
  }
}

.navbar-nav .nav-item > a {
  font-size: 16px;
  font-weight: 400;
  color: #242424;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 5px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a {
    display: block;
    padding: 8px 0;
    color: var(--heading-color);
  }
}

.navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
  color: #242424;
  opacity: 0.5;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
    color: var(--primary-color);
    opacity: 1;
  }
}

.navbar-nav .nav-item .ud-submenu {
  position: absolute;
  width: 250px;
  background: var(--white);
  top: 110%;
  padding: 20px 30px;
  -webkit-box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
  box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item .ud-submenu {
    position: static;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    padding: 0px;
    opacity: 1;
    visibility: visible;
    display: none;
  }
}

.navbar-nav .nav-item .ud-submenu.show {
  display: block;
}

.navbar-nav .nav-item .ud-submenu .ud-submenu-link {
  padding: 7px 0;
  color: var(--heading-color);
  font-size: 14px;
}

.navbar-nav .nav-item .ud-submenu .ud-submenu-link:hover {
  color: var(--primary-color);
}

.navbar-nav .nav-item:hover > a {
  opacity: 0.8;

}
.get-started{
  background: #2D1107;
  border-radius: 10px;
  color:white !important;
  width: 190px;
}
.booking-btn{
    background: #2D1107;
    border-radius: 10px;
    color:white !important;
    padding:5px
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item:hover > a {
    color: var(--primary-color);
    opacity: 1;
  }
}

.navbar-nav .nav-item:hover > .ud-submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.navbar-nav .nav-item.nav-item-has-children > a {
  position: relative;
}

.navbar-nav .nav-item.nav-item-has-children > a::after {
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  right: -15px;
  top: 50%;
  margin-top: -2px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item.nav-item-has-children > a::after {
    right: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.navbar-btn .ud-main-btn {
  padding: 8px 16px;
  background: transparent;
}

.navbar-btn .ud-login-btn:hover {
  opacity: 0.5;
}

.navbar-btn .ud-white-btn {
  background: rgba(255, 255, 255, 0.2);
}

.navbar-btn .ud-white-btn:hover {
  background: white;
  color: var(--heading-color);
}

.sticky .navbar-toggler .toggler-icon {
  background-color: var(--heading-color);
}

.sticky .navbar-nav .nav-item:hover > a {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-nav .nav-item a {
  color: var(--heading-color);
}

.sticky .navbar-nav .nav-item a.active, .sticky .navbar-nav .nav-item a:hover {
  color:#2D1107 ;
  opacity: 1;
}

.sticky .navbar-btn .ud-main-btn.ud-login-btn {
  color: var(--heading-color);
}

.sticky .navbar-btn .ud-main-btn.ud-login-btn:hover {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-btn .ud-white-btn {
  background: var(--primary-color);
  color: var(--white);
}

.sticky .navbar-btn .ud-white-btn:hover {
  background: var(--heading-color);
}

/* ===== Hero CSS ===== */
.ud-hero {
  background: var(--primary-color);
  padding-top: 180px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-hero {
    padding-top: 160px;
  }
}

@media (max-width: 767px) {
  .ud-hero {
    padding-top: 130px;
  }
}

.ud-hero-content {
  max-width: 780px;
  margin: auto;
  margin-bottom: 30px;
}

.ud-hero-content .ud-hero-title {
  color: var(--white);
  font-weight: 700;
  font-size: 45px;
  line-height: 60px;
  text-align: center;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-hero-content .ud-hero-title {
    font-size: 38px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .ud-hero-content .ud-hero-title {
    font-size: 26px;
    line-height: 38px;
  }
}

.ud-hero-content .ud-hero-desc {
  font-weight: normal;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  color: var(--white);
  opacity: 0.8;
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .ud-hero-content .ud-hero-desc {
    font-size: 16px;
    line-height: 30px;
  }
}

.ud-hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ud-hero-buttons .ud-main-btn {
  margin: 8px;
}

@media (max-width: 767px) {
  .ud-hero-buttons .ud-main-btn {
    margin: 5px;
  }
}

@media (max-width: 767px) {
  .ud-hero-buttons .ud-main-btn {
    padding: 12px 16px;
  }
}

.ud-hero-buttons .ud-white-btn {
  background: var(--white);
  color: var(--heading-color);
}

.ud-hero-buttons .ud-white-btn:hover {
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  background: #fefefe;
  color: var(--primary-color);
}

.ud-hero-buttons .ud-link-btn:hover {
  color: var(--white);
  background: transparent;
  opacity: 0.5;
}

.ud-hero-brands-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.ud-hero-brands-wrapper img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.5;
  max-width: 250px;
}

.ud-hero-brands-wrapper img:hover {
  opacity: 1;
}

.ud-hero-image {
  max-width: 845px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ud-hero-image img {
  max-width: 100%;
  text-align: center;
}

.ud-hero-image .shape {
  position: absolute;
  z-index: -1;
}

.ud-hero-image .shape.shape-1 {
  bottom: 0;
  left: -30px;
}

.ud-hero-image .shape.shape-2 {
  top: -20px;
  right: -20px;
}

/* ===== Features CSS ===== */
.ud-features {


}
.ud-remmitance {

}
.ud-section-title-r {
  color:#515151;
}

@media (max-width: 767px) {
  .ud-features {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-section-title {
  margin-bottom: 70px;
}

.ud-section-rem-title {
  margin-bottom: 70px;
}
.ud-section-rem-title p {
  font-size: 24px;
  color: #90733e;
}
.lounge h1 {
    padding-top: 30px;
    font-size: 42px;
    font-weight: 300;
    text-transform: capitalize;
    color:#90733e;
    margin-bottom: 20px;
}

.ud-section-title span {
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.ud-section-rem-title h1 {
  font-weight: 300;
  text-transform: capitalize;
  color:#90733e;
  margin-bottom: 20px;
}
.ud-section-title h1 {
  font-weight: 300;
  text-transform: capitalize;
  color:#90733e;
  margin-bottom: 20px;
}

.ud-section-title p {
  font-size: 24px;
  color:#90733e
}
.ud-section-ab-title p {
  border: 1px solid #DDDDDD;
  background: #DDDDDD;
  border-radius: 10px;
  color: #3A3A3A;
  font-size: 16px;
  padding: 43px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}
.ud-section-ab-title h1 {
  color:#90733e;
  padding-bottom: 20px;
}

.ud-contactus{
  background: #f6f6f7;
}
.ud-section-contactus-title h1 {
    padding-top:50px;
  color:#90733e;
    font-weight: 300;

}
.merchant-div{
  padding: 30px;
  margin: 15px 0;
  border: 1px solid #90733e;
  border-radius: 5px;
  color:#90733e;
  font-weight: 800;

}

.feature-box {

  border-radius: 5px;
  padding: 20px;
  text-align: center;
  margin: 5px;
  height: 140px;
  color:#90733e;


}
.feature-box:hover{

  animation: bitMovement 0.5s ease-in-out 1;

}

.row.no-gutter {
  margin-left: 0;
  margin-right: 0;
}
.row.no-gutter [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}
.feature-icon {
  width: 50px;
  height: 50px;
  display: block;
  margin: 0 auto 10px;
}
.abs-img {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;    /* Center vertically */
  height: 100%;           /* Make sure the container takes full height */
}
.abs-img img {
  max-width: 100%;        /* Ensure the image doesn't overflow */
  max-height: 100%;
    border-radius: 10px;
}
.abs-img img:hover{
  height: 50%;
}

#nav .radius-eff {
  border: 1px solid transparent; /* Set transparent border by default */
  border-radius: 5px;
}
.ud-about h1{
    color:white;
}
#nav .radius-eff:hover {
  border: 1px solid #2D1107; /* Change border color on hover */
}
@media (max-width: 767px) {
  .ud-section-title p {
    font-size: 16px;
    line-height: 26px;
  }
}
.image-merchant {
  background-image: url('/assets/images/hero/merchant.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 70%;
  height: 0;
  padding-bottom: 25%;
  margin: 0 auto;
}

/* ===== About CSS ===== */
.ud-refund {
  background: #f6f6f7;
  padding: 120px 0;
}

.ud-privacy {
  background: #f6f6f7;
  padding: 120px 0;
}
.ud-terms{
  background: #f6f6f7;
  padding: 120px 0;
}
.ud-privacy li{
  padding: 5px;
}
.ud-terms li{
  padding: 5px;
}
.ud-about {

  padding: 100px 0;
}
.banner4{
    border-radius: 20px;
}
.ud-booking {
    background: #f8f8f8;
    padding-top: 20px;
}
.ud-bookingform {
    background: #f8f8f8;
    padding-top: 20px;
}
.ud-confirm-b{
    background: #f8f8f8;
    padding-top: 20px;
}
.ud-booking h2,.ud-booking h4,.ud-confirm-b h2{
    font-weight: 800;
    text-transform: capitalize;
    color: #90733e;
    margin-bottom: 20px;
}
.ud-bookingform h2,.ud-bookingform h4,.ud-confirm-b h2{
    font-weight: 800;
    text-transform: capitalize;
    color: #90733e;

}
.comingsoontxt{
    color:#90733e;
}

.ud-booking h4{
    padding-top:20px
}
.ud-booking tr{
    border:1px solid #637381;
}
.order-btn-c{
    padding:10px;
}

.flight-type h3{
    font-weight: 800;
    text-transform: capitalize;
    color: #90733e;
    margin-bottom: 20px;
    cursor: pointer;
    padding-bottom: 5px;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s;;
    display: inline-block;
}

.flight-type h3.active {
    border-color: black;
}
.form-container label{
  color: #242424;
  font-size: 14px;
}
.membershipform input  {

    width: 100%;
    border-left: none;
    border-right: none;
    padding: 12px;
    margin: 10px 0;
    border-bottom: 2px solid #90733e;
    border-top: none;
    /* border-radius: 44px; */
    background: #f6f6f7;
}
.signinform input{
    width: 100%;
    border-left: none;
    border-right: none;
    padding: 12px;
    margin: 10px 0;
    border-bottom: 2px solid #90733e;
    border-top: none;
    /* border-radius: 44px; */
    background: #f6f6f7;
}

.registrationform input{
    width: 100%;
    border-left: none;
    border-right: none;
    padding: 12px;
    margin: 10px 0;
    border-bottom: 2px solid #90733e;
    border-top: none;
    /* border-radius: 44px; */
    background: #f6f6f7;
}

.text-area-f{
  width: 100%;
  padding: 24px;
  margin: 5px 0px 0px;
  border: 2px solid #90733e;
  border-radius: 15px;
  background: #f6f6f7;
}
.form-container textarea {

  resize: none;
}
#submit-bt{
    width: 160px;
}
#submit-bt2{
    width: 100%;
}
.form-container button {

  padding: 10px;
  background-color: #2D1107;
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  cursor: pointer;
}
.form-container button:hover {
  background-color: #90733e;
}
@media (max-width: 767px) {
  .ud-about {
    padding: 30px 0;
  }
}

.ud-about-wrapper {
    background-size: cover;
    background-position: center;
  border-radius: 5px;
  background:  url("../images/banner/banner01.jpg");
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
}
.contact-info > p{
  font-size: 16px;
  color: #242424;
}
.contact-info {

  padding: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.icon {
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.info {
  line-height: 1.5;
}
.info p{

  font-size: 14px;
  color: #242424;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-about-wrapper {
    display: block;
  }
}

.ud-about-content-wrapper {
  padding: 70px;
}


.ud-about-content {
  max-width: 500px;

}
.ud-about-content .tag:hover {

  animation: bitMovement 0.5s ease-in-out 1;
}
.ud-about-content .tag >img{
  width: 40px;
}
.ud-about-content .tag {
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  background: #2D1107;
  display: inline-block;
  border-radius: 21px;
  padding: 5px 10px;
}

.ud-about-content h2 {
  font-weight: bolder;
  font-size: 36px;
  line-height: 45px;

  color:white;
}


.ud-about-content p {
  font-size: 20px;
  line-height: 28px;
  font-family: var(--font) !important;
  color: white;
    padding-top: 40px;
}

.ud-about-content .ud-main-btn:hover {
  background: #2748b4;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}


.ud-about-image img {
  max-width: 100%;
  height: auto;
  border:1px solid #90733e;
  border-radius: 10px;
}
.feature-box i {
    font-size: 50px;

}
.feature-box div{
    padding-top:20px
}

/* ===== Pricing CSS ===== */
.ud-pricing {
  padding-top: 120px;
  padding-bottom: 90px;
}


.ud-single-pricing {
  margin-bottom: 40px;
  background: var(--white);
  border: 2px solid #d4deff;
  border-radius: 8px;
  text-align: center;
  padding: 45px 30px;
  position: relative;
}

.ud-single-pricing.active {
  background: -webkit-gradient(linear, left top, left bottom, from(#3056d3), to(#179bee));
  background: linear-gradient(180deg, #3056d3 0%, #179bee 100%);
  border: none;
  padding: 55px 30px;
}

.ud-single-pricing.active .ud-pricing-header h3,
.ud-single-pricing.active .ud-pricing-header h4 {
  color: var(--white);
}

.ud-single-pricing.active .ud-pricing-body li {
  color: var(--white);
}

.ud-single-pricing.first-item::after, .ud-single-pricing.last-item::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  z-index: 1;
}

.ud-single-pricing.first-item::after {
  background: var(--primary-color);
  left: -2px;
  bottom: -2px;
  border-radius: 0px 55px 0px 8px;
}

.ud-single-pricing.last-item::after {
  background: #13c296;
  top: -2px;
  right: -2px;
  border-radius: 0px 8px 0px 55px;
}

.ud-single-pricing .ud-popular-tag {
  display: inline-block;
  padding: 10px 25px;
  background: var(--white);
  border-radius: 30px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.ud-single-pricing .ud-pricing-header h3 {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 8px;
}

.ud-single-pricing .ud-pricing-header h4 {
  font-weight: 600;
  font-size: 26px;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.ud-single-pricing .ud-pricing-body {
  margin-bottom: 40px;
}

.ud-single-pricing .ud-pricing-body li {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 18px;
}

.ud-single-pricing .ud-main-btn {
  border-radius: 30px;
  padding: 15px 40px;
}


.ud-single-pricing .ud-border-btn {
  border: 1px solid #d4deff;
  color: var(--primary-color);
  background: var(--white);
}

.ud-single-pricing .ud-border-btn:hover {
  color: var(--white);
  border-color: var(--primary-color);
  background: var(--primary-color);
}

.ud-single-pricing .ud-white-btn {
  background: var(--white);
  color: var(--heading-color);
}

.ud-single-pricing .ud-white-btn:hover {
  color: var(--white);
  background: var(--heading-color);
}

/* ===== FAQ CSS ===== */
.ud-aboutus {
  background: #f6f6f7;
  position: relative;
  z-index: 1;
  padding-top: 200px;
}



.ud-single-faq {
    background: #f6f6f7;
  border: 1px solid #f3f4fe;
  -webkit-box-shadow: 0px 20px 95px rgba(201, 203, 204, 0.3);
  box-shadow: 0px 20px 95px rgba(201, 203, 204, 0.3);
  border-radius: 10px;
  margin-bottom: 30px;
}


.ud-single-faq h1 {
    font-weight: 800;
    text-transform: capitalize;
    color:#90733e;
    margin-bottom: 20px;
}

.ud-single-faq h2 {
    color: #333; /* Darker color for the heading */
    font-weight: 700;
    margin-bottom: 30px;
}

.ud-single-faq .accordion-button {

    color: #90733e;
    font-weight: bold;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 15px;
    box-shadow: none;
}


.ud-single-faq .accordion-button.collapsed {
    color: #90733e;
}

.ud-single-faq .accordion-body {
    background-color: #f6f6f7;
    padding: 15px;
}
.accordion-item{
    background-color: #f6f6f7;
}
.ud-single-faq .accordion-item {
    border: none; /* Remove borders from accordion items */
    margin-bottom: 10px;
}

.ud-single-faq .ud-aboutus-btn {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 18px;
  color: var(--heading-color);
  opacity: 0.88;
  padding: 30px;
}

.contact-info i {
    font-size: 30px;
    color:#2D1107;
}


.ud-single-faq .ud-aboutus-btn.collapsed span.icon i {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.ud-single-faq .ud-aboutus-btn span.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(48, 86, 211, 0.06);
  border-radius: 10px;
  color: var(--primary-color);
  margin-right: 24px;
}

.ud-single-faq .ud-aboutus-btn span.icon i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 700;
}

.ud-single-faq .ud-aboutus-body {
  padding: 0px 30px 40px 95px;
}


/* ===== Testimonials CSS ===== */
.ud-testimonials {
  padding-top: 120px;
}



.ud-single-testimonial {
  padding: 30px;
  -webkit-box-shadow: 0px 60px 120px -20px #ebeffd;
  box-shadow: 0px 60px 120px -20px #ebeffd;
  background: var(--white);
  margin-bottom: 50px;
}

.ud-single-testimonial .ud-testimonial-ratings {
  margin-bottom: 10px;
}

.ud-single-testimonial .ud-testimonial-ratings i {
  color: #fbb040;
}

.ud-single-testimonial .ud-testimonial-content {
  margin-bottom: 25px;
}

.ud-single-testimonial .ud-testimonial-content p {
  font-size: 16px;
  line-height: 30px;
  color: #637381;
}

.ud-single-testimonial .ud-testimonial-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta h4 {
  font-weight: 600;
  font-size: 14px;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta p {
  font-size: 12px;
  color: #969696;
}

.ud-brands .ud-title {
  margin-bottom: 30px;
}

.ud-brands .ud-title h6 {
  font-weight: normal;
  font-size: 12px;
  color: var(--body-color);
  display: inline-block;
  position: relative;
}

.ud-brands .ud-title h6::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background: #afb2b5;
  right: -40px;
  top: 50%;
}

.ud-brands .ud-brands-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -40px;
}

.ud-brands .ud-brands-logo .ud-single-logo {
  margin-right: 40px;
  margin-bottom: 20px;
  max-width: 140px;
}

.ud-brands .ud-brands-logo .ud-single-logo:hover img {
  -webkit-filter: none;
  filter: none;
}

.ud-brands .ud-brands-logo .ud-single-logo img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/* ===== Team CSS ===== */
.ud-team {
  padding-top: 120px;
  padding-bottom: 80px;
}


.ud-single-team {
  margin-bottom: 40px;
}

.ud-single-team .ud-team-image-wrapper {
  width: 170px;
  height: 170px;
  position: relative;
  margin: 0px auto 25px;
}

.ud-single-team .ud-team-image {
  border-radius: 50%;
}

.ud-single-team .ud-team-image img {
  width: 100%;
  border-radius: 50%;
}

.ud-single-team .shape {
  position: absolute;
  z-index: -1;
}

.ud-single-team .shape.shape-1 {
  top: 0;
  left: 0;
}

.ud-single-team .shape.shape-2 {
  bottom: 0;
  right: 0;
}

.ud-single-team .ud-team-info {
  text-align: center;
  margin-bottom: 20px;
}

.ud-single-team .ud-team-info h5 {
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.ud-single-team .ud-team-info h6 {
  font-weight: 500;
  font-size: 12px;
  color: var(--body-color);
}

.ud-single-team .ud-team-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ud-single-team .ud-team-socials a {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0px 10px;
  color: #cdced6;
}

.ud-single-team .ud-team-socials a:hover {
  color: var(--primary-color);
}

/* ===== Contact CSS ===== */
.ud-contact {
  padding: 120px 0px;
  position: relative;
}


.ud-contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
  height: 50%;
  background: #f3f4fe;
}


.ud-contact-title {
  margin-bottom: 150px;
}



.ud-contact-title span {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 20px;
}

.ud-contact-title h2 {
  font-weight: 600;
  font-size: 35px;
  line-height: 41px;
}

.ud-contact-info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}



.ud-contact-info-wrapper .ud-single-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  width: 330px;
  margin-bottom: 30px;
}

.ud-contact-info-wrapper .ud-info-icon {
  font-size: 32px;
  color: var(--primary-color);
  margin-right: 24px;
}

.ud-contact-info-wrapper .ud-info-meta h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}

.ud-contact-info-wrapper .ud-info-meta p {
  font-size: 15px;
  line-height: 24px;
}

.ud-contact-form-wrapper {
  -webkit-box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  background: var(--white);
  padding: 60px;
}


.ud-contact-form-wrapper .ud-contact-form-title {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 30px;
}



.ud-contact-form-wrapper .ud-form-group {
  margin-bottom: 25px;
}

.ud-contact-form-wrapper .ud-form-group label {
  display: block;
  font-weight: normal;
  font-size: 12px;
}

.ud-contact-form-wrapper .ud-form-group input,
.ud-contact-form-wrapper .ud-form-group textarea {
  display: block;
  width: 100%;
  padding: 15px 0;
  border: none;
  outline: none;
  border-bottom: 1px solid #f1f1f1;
  resize: none;
}

.ud-contact-form-wrapper .ud-form-group input:focus,
.ud-contact-form-wrapper .ud-form-group textarea:focus {
  border-color: var(--primary-color);
}
.c-height{
  padding-top: 90px;
}
.c-height-m{
  padding-top: 50px;
}

/* ===== Footer CSS ===== */
.ud-footer {
  background-image: url("../images/banner/banner02.jpg");
  padding-top: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.ud-footer .shape {
  position: absolute;
  z-index: -1;
}

.ud-footer .shape.shape-1 {
  top: 0;
  left: 0;
}

.ud-footer .shape.shape-2 {
  top: 0;
  right: 0;
}

.ud-footer .shape.shape-3 {
  bottom: 0;
  right: 0;
}

.ud-widget {
  margin-bottom: 50px;
}

.ud-widget .ud-footer-logo {
  max-width: 160px;
  display: block;
  margin-bottom: 10px;
}

.ud-widget .ud-footer-logo img {
  width: 100%;
}

.ud-widget .ud-widget-desc {
  font-size: 16px;
  line-height: 33px;
  color: #f3f4fe;
  margin-bottom: 30px;
}

.ud-widget .ud-widget-socials a {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 30px;
  color: #f3f4fe;
}


.ud-widget .ud-widget-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 35px;
  color: var(--white);
}

.ud-widget .ud-widget-links a {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 30px;
  color: #f3f4fe;
}

.ud-widget .ud-widget-links a:hover {
  padding-left: 10px;
}

.ud-widget .ud-widget-brands {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ud-widget .ud-widget-brands a {
  display: block;
  max-width: 120px;
  margin-bottom: 20px;
  margin-right: 20px;
}


.ud-footer-bottom {
  padding: 35px 0;
  border-top: 1px solid rgba(136, 144, 164, 0.43);
}

.ud-footer-bottom .ud-footer-bottom-left {

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.email-input-container {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 20px;
  padding: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.email-input-container input {
  border: none;
  outline: none;
  padding: 10px 15px;
  border-radius: 40px 0 0 40px;
  width: 350px;
  font-size: 16px;
}
.email-input-container button {

  border: none;
  border-radius: 50%;
  color: white;
  width: 50px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}
.email-input-container button:hover {

}
@keyframes bitMovement {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.animate-bit-movement :hover {
  animation: bitMovement 0.5s ease-in-out 1;
}
@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-left {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.ud-footer-bottom .ud-footer-bottom-left a {
  font-weight: normal;
  font-size: 14px;
  color: #f3f4fe;
  margin-right: 30px;
  display: inline-block;
}

.ud-footer-bottom .ud-footer-bottom-left a:hover {
  animation: bitMovement 0.5s ease-in-out 1;
}

.ud-footer-bottom .ud-footer-bottom-right {
  text-align: right;
  font-weight: normal;
  font-size: 15px;
  color: #f3f4fe;
}

.ud-footer-bottom .ud-footer-bottom-right a {
  color: #f3f4fe
}

.ud-footer-bottom .ud-footer-bottom-right a:hover {
  text-decoration: underline;
}


/* ====== Banner CSS ======= */
.ud-page-banner {
  padding-top: 130px;
  padding-bottom: 80px;
  background: var(--primary-color);
  background-image: url("../images/banner/banner-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ud-banner-content {
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.ud-banner-content h1 {
  color: var(--white);
  font-size: 38px;
  font-weight: 600;
}

/* ====== Login CSS ====== */
.ud-login {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ud-login-wrapper {
  max-width: 500px;
  margin: auto;
  background: var(--white);
  text-align: center;
  padding: 60px;
  -webkit-box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.05);
}

.ud-login-wrapper .ud-login-logo {
  margin-bottom: 30px;
}

.ud-login-form .ud-form-group {
  margin-bottom: 25px;
}

.ud-login-form .ud-form-group input {
  width: 100%;
  border: 2px solid #dddddd;
  border-radius: 4px;
  padding: 12px 24px;
  background: #fcfdfe;
  color: var(--body-color);
}

.ud-login-form .ud-form-group input:focus {
  border-color: var(--primary-color);
}

.ud-socials-connect {
  padding-top: 10px;
  padding-bottom: 30px;
}

.ud-socials-connect p {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 10px;
}

.ud-socials-connect ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: -10px;
  margin-right: -10px;
}

.ud-socials-connect ul li {
  width: 100%;
}

.ud-socials-connect ul li a {
  height: 45px;
  background: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 10px;
  border-radius: 6px;
  color: var(--white);
  font-size: 20px;
}

.ud-socials-connect ul li a.facebook {
  background: #4064ac;
}

.ud-socials-connect ul li a.facebook:hover {
  background: #315294;
}

.ud-socials-connect ul li a.twitter {
  background: #1c9cea;
}

.ud-socials-connect ul li a.twitter:hover {
  background: #0f8bd8;
}

.ud-socials-connect ul li a.google {
  background: #d64937;
}

.ud-socials-connect ul li a.google:hover {
  background: #c53b29;
}



/*.ud-newsletter-box {*/
/*  background: var(--primary-color);*/
/*  padding: 60px 45px;*/
/*  position: relative;*/
/*  z-index: 1;*/
/*  text-align: center;*/
/*  border-radius: 5px;*/
/*  margin-bottom: 50px;*/
/*}*/

/*@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {*/
/*  .ud-newsletter-box {*/
/*    padding: 50px 30px;*/
/*  }*/
/*}*/

/*@media only screen and (min-width: 576px) and (max-width: 767px) {*/
/*  .ud-newsletter-box {*/
/*    padding: 60px 45px;*/
/*  }*/
/*}*/

/*.ud-newsletter-box .shape {*/
/*  position: absolute;*/
/*  z-index: -1;*/
/*}*/

/*.ud-newsletter-box .shape.shape-1 {*/
/*  top: 0;*/
/*  right: 0;*/
/*}*/

/*.ud-newsletter-box .shape.shape-2 {*/
/*  left: 0;*/
/*  bottom: 0;*/
/*}*/

/*.ud-newsletter-box .ud-newsletter-title {*/
/*  font-weight: 600;*/
/*  font-size: 25px;*/
/*  color: var(--white);*/
/*  margin-bottom: 5px;*/
/*}*/

/*@media only screen and (min-width: 992px) and (max-width: 1199px) {*/
/*  .ud-newsletter-box .ud-newsletter-title {*/
/*    font-size: 23px;*/
/*  }*/
/*}*/

/*.ud-newsletter-box p {*/
/*  font-size: 16px;*/
/*  line-height: 24px;*/
/*  color: var(--white);*/
/*}*/

/*.ud-newsletter-box .ud-newsletter-form {*/
/*  margin-top: 30px;*/
/*}*/

/*.ud-newsletter-box .ud-newsletter-form input {*/
/*  width: 100%;*/
/*  -webkit-box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);*/
/*  box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);*/
/*  border-radius: 5px;*/
/*  background: rgba(255, 255, 255, 0.2);*/
/*  color: var(--white);*/
/*  text-align: center;*/
/*  margin-bottom: 15px;*/
/*  border: 2px solid transparent;*/
/*  padding: 12px 20px;*/
/*}*/

/*.ud-newsletter-box .ud-newsletter-form input::-webkit-input-placeholder {*/
/*  color: var(--white);*/
/*  opacity: 1;*/
/*}*/

/*.ud-newsletter-box .ud-newsletter-form input:-ms-input-placeholder {*/
/*  color: var(--white);*/
/*  opacity: 1;*/
/*}*/

/*.ud-newsletter-box .ud-newsletter-form input::-ms-input-placeholder {*/
/*  color: var(--white);*/
/*  opacity: 1;*/
/*}*/

/*.ud-newsletter-box .ud-newsletter-form input::placeholder {*/
/*  color: var(--white);*/
/*  opacity: 1;*/
/*}*/

/*.ud-newsletter-box .ud-newsletter-form input:focus {*/
/*  border-color: var(--white);*/
/*}*/

/*.ud-newsletter-box .ud-newsletter-form .ud-main-btn {*/
/*  background: #13c296;*/
/*  -webkit-box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);*/
/*  box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);*/
/*  border-radius: 5px;*/
/*  width: 100%;*/
/*  margin-bottom: 24px;*/
/*}*/

/*.ud-newsletter-box .ud-newsletter-form .ud-main-btn:hover {*/
/*  background: var(--heading-color);*/
/*}*/

/*.ud-newsletter-box .ud-newsletter-form .ud-newsletter-note {*/
/*  font-weight: 500;*/
/*  font-size: 14px;*/
/*  line-height: 22px;*/
/*}*/

/*.ud-articles-box {*/
/*  margin-bottom: 50px;*/
/*}*/

/*.ud-articles-box .ud-articles-box-title {*/
/*  font-weight: 600;*/
/*  font-size: 28px;*/
/*  padding-bottom: 25px;*/
/*  position: relative;*/
/*  margin-bottom: 20px;*/
/*}*/

/*.ud-articles-box .ud-articles-box-title::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  width: 80px;*/
/*  height: 2px;*/
/*  background: var(--primary-color);*/
/*  left: 0;*/
/*  bottom: 0;*/
/*}*/

/*.ud-articles-box .ud-articles-list li {*/
/*  padding: 20px 0;*/
/*  border-bottom: 1px solid #f2f3f8;*/
/*  display: -webkit-box;*/
/*  display: -ms-flexbox;*/
/*  display: flex;*/
/*  -webkit-box-align: center;*/
/*  -ms-flex-align: center;*/
/*  align-items: center;*/
/*}*/

/*.ud-articles-box .ud-articles-list li:last-child {*/
/*  padding-bottom: 0px;*/
/*  border-bottom: 0px;*/
/*}*/

/*.ud-articles-box .ud-articles-list .ud-article-image {*/
/*  max-width: 80px;*/
/*  width: 100%;*/
/*  height: 80px;*/
/*  border-radius: 50%;*/
/*  overflow: hidden;*/
/*  margin-right: 20px;*/
/*}*/

/*@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {*/
/*  .ud-articles-box .ud-articles-list .ud-article-image {*/
/*    max-width: 65px;*/
/*    height: 65px;*/
/*  }*/
/*}*/

/*@media only screen and (min-width: 576px) and (max-width: 767px) {*/
/*  .ud-articles-box .ud-articles-list .ud-article-image {*/
/*    max-width: 80px;*/
/*    height: 80px;*/
/*  }*/
/*}*/

/*.ud-articles-box .ud-articles-list .ud-article-image img {*/
/*  width: 100%;*/
/*}*/

/*.ud-articles-box .ud-articles-list .ud-article-title {*/
/*  font-weight: 500;*/
/*  font-size: 18px;*/
/*  line-height: 22px;*/
/*  margin-bottom: 5px;*/
/*}*/

/*@media only screen and (min-width: 992px) and (max-width: 1199px) {*/
/*  .ud-articles-box .ud-articles-list .ud-article-title {*/
/*    font-size: 16px;*/
/*  }*/
/*}*/

/*.ud-articles-box .ud-articles-list .ud-article-title a {*/
/*  color: inherit;*/
/*}*/

/*.ud-articles-box .ud-articles-list .ud-article-title a:hover {*/
/*  color: var(--primary-color);*/
/*}*/

/*.ud-articles-box .ud-articles-list .ud-article-author {*/
/*  font-size: 14px;*/
/*}*/

/*.ud-banner-ad {*/
/*  border-radius: 5px;*/
/*  overflow: hidden;*/
/*}*/

/*.ud-banner-ad a {*/
/*  display: block;*/
/*}*/

/*.ud-banner-ad img {*/
/*  width: 100%;*/
/*}*/

/*!* ====== Error 404 CSS ======= *!*/
/*.ud-404 {*/
/*  padding-top: 120px;*/
/*  padding-bottom: 120px;*/
/*}*/

/*@media (max-width: 767px) {*/
/*  .ud-404 {*/
/*    padding-top: 80px;*/
/*    padding-bottom: 80px;*/
/*  }*/
/*}*/

/*.ud-404-wrapper {*/
/*  text-align: center;*/
/*  max-width: 850px;*/
/*  margin: 0px auto;*/
/*  background: var(--white);*/
/*  padding: 100px 60px;*/
/*  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);*/
/*  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);*/
/*  border-radius: 10px;*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*  z-index: 1;*/
/*}*/

/*@media (max-width: 767px) {*/
/*  .ud-404-wrapper {*/
/*    padding: 50px 30px;*/
/*  }*/
/*}*/

.ud-404-wrapper .shape {
  position: absolute;
  z-index: -1;
}

.ud-404-wrapper .shape.shape-1 {
  top: 0;
  left: 0;
}

.ud-404-wrapper .shape.shape-2 {
  right: 0;
  bottom: 0;
}

.ud-404-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-404-title {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .ud-404-title {
    font-size: 30px;
  }
}

.ud-404-subtitle {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-404-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .ud-404-subtitle {
    font-size: 18px;
  }
}

.ud-404-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ud-404-links a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  color: var(--heading-color);
  background: rgba(48, 86, 211, 0.06);
  border-radius: 5px;
  margin: 5px 10px;
}

.ud-404-links a:hover {
  background: var(--heading-color);
  color: var(--white);
}

.membership-card-img{
    width: 100%;
    height: 30px;
}
.corporate-plan-container {
    background-color: #2D1107;
    color: #f5ecd3;
    padding: 1.5em;
    border-radius: 5px;
}

.corporate-plan-container img {
    height: 30px;
}

.content-section h2 {
    color: #f5ecd3;
}

.small-heading {
    color: #f5ecd3;
    margin-top: 1em;
}

.price {
    color: #f5ecd3;
    font-size: 30px;
    margin-top: 0.5em;
}

.btn-apply {
    display: inline-block;
    padding: 1em 3.5em;
    color: #f5ecd3;
    border: 1px solid #f5ecd3;
    background-color: transparent;
    border-radius: 4px;
    margin-top: 2em;
    text-decoration: none;
}
.btn-apply:hover{

    background: #90733e;
    border:#90733e solid 1px;
    color:white;
}
.package-details {
    border-top: 1px solid rgba(206, 205, 205, 0.41);
    padding-top: 1em;
    margin-top: 2em;
    font-size: 14px;
    color: #f5ecd3;
}


/*.modal-dialog {*/
/*  max-width: 900px !important;*/
/*}*/

/*.modal-body p {*/
/*  color: #000;*/
/*}*/

/*.modal-main-padding {*/
/*  padding: 20px;*/
/*  padding-right: 20px !important;*/
/*}*/

.ud-refund h2,h3{
  font-weight: 800;
  text-transform: capitalize;
  color:#90733e;
  margin-bottom: 20px;
}
.ud-terms h2,h3{
  font-weight: 800;
  text-transform: capitalize;
  color:#90733e;
  margin-bottom: 20px;
}

.ud-privacy h2,h3{
  font-weight: 800;
  text-transform: capitalize;
  color:#90733e;
  margin-bottom: 20px;
}
.ud-refund a{
  color:black;
  font-weight: bolder;
}
.ud-privacy a{
  color:black;
  font-weight: bolder;
}

.ud-terms a{
  color:black;
  font-weight: bolder;
}

.error-message {
  color: red;
  font-size: 12px;
  padding: 5px;

}
#formFeedback{
  padding-top:20px
}
.service-card:hover{
    animation: bitMovement 0.5s ease-in-out 1;
}
.service-card {
    text-align: center;


}
.service-card h5 {
   font-weight: 100;
    color: #7d5630;
    margin-bottom: 40px;
}
.service-card p {
    color: #7d5630;
    margin-bottom: 20px;
}


.service-card-membership {
    text-align: center;

}
.service-card-membership h5 {
    font-weight: bold;
    color: #7d5630;

}
.service-card-membership p {
    color: #7d5630;
}
.service-card-membership .btn {

    color: #fff;
    border: none;
}
.service-card-membership .btn:hover {
    background-color: #6b4c27;
}
.membership-card p {
    color: #fff;

}
.service-card .btn {
    background-color: #7d5630;
    color: #fff;
    border: none;
}
.service-card .btn:hover {
    background-color: #6b4c27;
}

.service-card img{
    margin-bottom: 10px;
}

.membership-card h5 {
    color:#90733e;
}
.membership-card i{
    color:#6b4c27;
    font-size: 70px;
    padding-bottom: 22px;
}
.service-header {
      font-weight: bold;
      font-size: 2rem;
      color: #8B4513;
  }

.card {
    max-width: 1100px;
    border: 1px solid #7d5630;
    box-shadow: 0 7px 7px rgba(0, 0, 0, 0.18);
    margin: 1em auto;
    padding: 12px;
}
.card.dark {
    color: #fff;
}
.service-price,.card-title{
    font-size: 20px;
    font-weight: bolder;
    color:#7d5630;
}
.card-title,.counter-title{
    color:#7d5630;
}
/*.card img {*/
/*    max-width: 10%;*/
/*    margin: auto;*/
/*    padding: 0.5em;*/
/*    border-radius: 0.7em;*/
/*}*/


.cta-section .btn {
    background-color: #2D1107;
    color:white;
    padding: 0.3em 0.5em;
}
.cta-section .btn:hover{


    background-color: white;
    color:#2D1107;
    border:1px solid #2D1107;

}
.card-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.counter-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.counter-controls {
    display: flex;
    align-items: center;
}

.counter-controls button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
}

.counter-controls span {
    font-size: 16px;
    min-width: 30px;
    text-align: center;
    color: #7d5630;
}
.btn-outline-secondary:hover{
    background-color: #7d5630;
}
.bkform{

    padding:10px;
    border:1px solid #90733e;
}
.confirmation-page {
    margin-top: 50px;
    text-align: center;
}
.order-box {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.order-number {
    font-size: 24px;
    font-weight: bold;
    color: #7d5630;
    margin-bottom: 20px;
}
.thank-you {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}
.order-details {
    font-size: 18px;
    margin-bottom: 20px;
}
.btn-home {
    font-size: 18px;
}
.spinner-border {
    width: 4rem;
    height: 4rem;
}
.signup_link{
     color: #7d5630;
}
.accordion-button:not(.collapsed){
   background-color: #fff;
}

.price_section{
     padding:10px
}
.bg-majestic{
    --bs-bg-opacity: 1;
    background-color: #2d1107 !important;
}
.membershipbook button{

    width: 200px;
}
.membershipbook{
    display: flex;
    align-items: center;     /* Center vertically */
}
@media screen and (max-width: 475px) {
    .card {
        font-size: 0.9em;
    }
}

