@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: 'Playfair Display', serif;
}

ul {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none !important;
  padding: 0;
  margin: 0;
}

/* fonts generated */




@font-face {
  font-family: 'satoshi_variablebold';
  src: url('../fonts/satoshi-variable-webfont.woff2') format('woff2'),
    url('../fonts/satoshi-variable-webfont.woff') format('woff');

  font-weight: normal;
  font-style: normal;

}




@font-face {
  font-family: 'richstenregular';
  src: url('../fonts/richstenregular-pkmlg-webfont.woff2') format('woff2'),
    url('../fonts/richstenregular-pkmlg-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}




@font-face {
  font-family: 'sentaniaregular';
  src: url('../fonts/sentania-webfont.woff2') format('woff2'),
    url('../fonts/sentania-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}




@font-face {
  font-family: 'sentaniaregular';
  src: url('../fonts/sentania-webfont.woff2') format('woff2'),
    url('../fonts/sentania-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

/* satoshi start */

@font-face {
  font-family: 'satoshiblack';
  src: url('../fonts/satoshi-black-webfont.woff2') format('woff2'),
    url('../fonts/satoshi-black-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'satoshiblack_italic';
  src: url('../fonts/satoshi-blackitalic-webfont.woff2') format('woff2'),
    url('../fonts/satoshi-blackitalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'satoshibold';
  src: url('../fonts/satoshi-bold-webfont.woff2') format('woff2'),
    url('../fonts/satoshi-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'satoshibold_italic';
  src: url('../fonts/satoshi-bolditalic-webfont.woff2') format('woff2'),
    url('../fonts/satoshi-bolditalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'satoshiitalic';
  src: url('../fonts/satoshi-italic-webfont.woff2') format('woff2'),
    url('../fonts/satoshi-italic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'satoshilight';
  src: url('../fonts/satoshi-light-webfont.woff2') format('woff2'),
    url('../fonts/satoshi-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'satoshilight_italic';
  src: url('../fonts/satoshi-lightitalic-webfont.woff2') format('woff2'),
    url('../fonts/satoshi-lightitalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'satoshimedium';
  src: url('../fonts/satoshi-medium-webfont.woff2') format('woff2'),
    url('../fonts/satoshi-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'satoshimedium_italic';
  src: url('../fonts/satoshi-mediumitalic-webfont.woff2') format('woff2'),
    url('../fonts/satoshi-mediumitalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'satoshiregular';
  src: url('../fonts/satoshi-regular-webfont.woff2') format('woff2'),
    url('../fonts/satoshi-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

/* satoshi end */


/* header styling */

header .container {
  max-width: 1440px;
}

header {
  border-bottom: 1px solid #d8d8d8;
}

.navbar {
  width: 100%;

}

ul.navbar__links {
  list-style: none;
  display: inline-flex;
}

ul.navbar__links li {
  padding: 10px 25px;
  position: relative;
}

ul.navbar__links li a {
  font-family: 'satoshiregular';
  font-size: 18px;
  font-weight: 600;
  color: #696969;
  transition: .5s;
}

ul.navbar__links li a:hover {
  color: #F7CB81;
}

ul.navbar__links li a.active {
  color: #F7CB81;
}

ul.sub-menu {
  display: none;
}

ul.sub-menu li {
  list-style: none;
}

ul.navbar__links li:hover ul.sub-menu {
  display: block;
  position: absolute;
  background: #ffffff;
  left: 0;
  width: 300px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.25);
}

ul.sub-menu li a {
  font-size: 16px;
  color: #696969;
}


/* toggle */

button.burger {
  display: none;
}

/* .overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 1;
  transition: display 200ms ease 200ms;
} */

.overlay.show {
  display: block;
}

nav {
  width: 15em;
  right: 0;
  top: 0;
  position: fixed;
  z-index: 2;
  /* position: relative; */
}

nav .nav-main {
  position: absolute;
  transition: transform 300ms cubic-bezier(1, 0, 0, 1) 0ms, right 300ms cubic-bezier(1, 0, 0, 1) 0ms;
  right: -400px;
  top: 0;
  height: 100vh;
  width: 100%;
  border-left: 3px solid #F7CB81;
  background: linear-gradient(90.81deg, #F6E4D5 0.17%, #F5F6F7 99.79%);
  overflow-y: auto;
}

nav .nav-main.show {
  right: 0;
}

.nav-main.show ul {
  padding: 0 20px;
  width: 100%;
}

.nav-main.show ul li {
  padding: 10px 0;
}

nav .nav-main ul {
  display: inline-block;
  margin-top: 15%;
}

nav .nav-main ul li {
  list-style: none;
}

nav .nav-main ul li a {
  font-family: 'satoshibold';
  text-decoration: none;
  color: #696969;
  font-size: 1.2rem;
}

.menu-icon {
  position: absolute;
  right: 10%;
  margin-top: 15%;
  width: 40px;
  height: 60px;
  cursor: pointer;
  z-index: 3;
  display: none;
}

.menu-icon:before,
.menu-icon:after {
  content: "";
}

.menu-icon .menu-icon-middle,
.menu-icon:before,
.menu-icon:after {
  position: absolute;
  width: 40px;
  height: 4px;
  background-color: #F7CB81;
  border-radius: 10px;
}

.menu-icon .menu-icon-middle {
  top: 50%;
  margin-top: -2px;
  transition: transform ease 200ms;
}

.menu-icon:before {
  top: 20px;
  transition: top 200ms ease 200ms, transform ease 200ms;
}

.menu-icon:after {
  bottom: 20px;
  transition: bottom 200ms ease 200ms, transform ease 200ms;
}

.menu-icon.close .menu-icon-middle {
  transform: rotate(-45deg);
  transition: transform 200ms ease 200ms;
}

.menu-icon.close:before {
  top: 28px;
  transform: rotate(-45deg);
  transition: top ease 200ms, transform 200ms ease 200ms;
}

.menu-icon.close:after {
  bottom: 28px;
  transform: rotate(45deg);
  transition: bottom ease 200ms, transform 200ms ease 200ms;
}
.responsiveMenu li a {
  width: 100%;
  padding-right: 12px;
  position: relative;
}
.responsiveMenu li a .fa-angle-down {
  position: absolute;
  right: 0;
  top: 7px;
  transition: .4s;
  font-size: 15px;
}
.responsiveMenu li.show a .fa-angle-down {
  transform: rotate(180deg);
}
.responsiveMenu .dropdown-menu.show {
  display: block;
  position: unset !important;
  transform: unset !important;
  background: transparent;
  border: none;
  margin: 0;
}
.responsiveMenu .dropdown-menu .dropdown-item {
  font-family: 'satoshimedium';
  font-size: 14px;
  color: #696969;
  line-height: 16px;
  padding: 10px 20px;
}


/* header media querry start */

@media only screen and (max-width: 1199px) {
  .menu-icon {
    display: block;
  }

  ul.navbar__links {
    display: none;
  }

  .nav-main.show ul ul.sub-menu {
    padding: 0;
    margin-top: 5px;

  }

  .nav-main.show ul ul.sub-menu li a {
    font-family: 'satoshimedium';
    font-size: 14px;
    padding: 5px 0;
  }
}

@media only screen and (max-width: 991px) {
  .nav-main.show ul li {
    padding: 5px 0;
  }

  nav .nav-main ul li a {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .nav-main.show ul ul.sub-menu li a {
    font-size: 12px;
  }
  .responsiveMenu .dropdown-menu .dropdown-item {
    font-size: 12px;
  }

  nav .nav-main ul li a {
    font-size: 16px;
  }
}

@media only screen and (max-width: 420px) {
  .menu-icon {
    margin-top: 7%;
  }
}

/*--------------------- banner section ---------------------*/

section.banner {
  position: relative;
}

section.banner .container {
  max-width: 1440px;
}

.img-bg img {
  width: 100%;
}

.img-bg {
  position: relative;
}

.login-btn a {
  background: transparent;
  border: 1px solid #C95F29;
  color: #C95F29;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 60px;
  border-radius: 10px;
  display: inline-block;
  transition: .3s;
  font-family: 'satoshimedium';
}


.login-btn a:hover {
  color: #ffffff;
  background: linear-gradient(90.81deg, #C95F29 0.17%, #F1A93E 99.79%);
  border: 1px solid;
}

a.login-btn {
  margin-right: 30px;
}

.banner-content h2 {
  background: linear-gradient(180deg, #CA6129 0%, #F0A73D 64.71%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 60px;
  font-family: 'richstenregular';
  margin-bottom: 10px;
}

.banner-content p {
  font-family: 'satoshibold';
  font-size: 22px;
  color: #696969;
  margin-bottom: 30px;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* .main-content {
  position: absolute;
  top: 33%;
  left: 37%;
} */

.banner-bg {
  background: linear-gradient(180deg, rgba(248, 234, 228, 0.2) 0%, rgba(255, 255, 255, 0.2) 68.67%), linear-gradient(180deg, #F8EAE4 0%, #FFFFFE 67.26%);
  border-radius: 10px;
}

.main-content {
  padding: 70px 0;
}

.top-banner-bg {
  text-align: center;
}

/* banner media querry start */

@media only screen and (max-width: 1199px) {
  .main-content {
    /* top: 30%;
    left: 33%; */
  }
}

@media only screen and (max-width: 991px) {
  .banner-content h2 {
    font-size: 40px;
  }

  .banner-content p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .main-content {
    /* left: 30%; */
    padding: 50px 0;
  }

  .login-btn a {
    font-size: 16px;
  }

  .top-banner-bg img {
    max-width: 200px;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .banner-content h2 {
    font-size: 30px;
  }

  .banner-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .login-btn a {
    font-size: 14px;
  }

  a.login-btn {
    margin-right: 20px;
  }

  .main-content {
    /* left: 28%; */
    padding: 30px 0;
  }

  .top-banner-bg img {
    max-width: 150px;
    width: 100%;
  }
}

@media only screen and (max-width: 575px) {
  .banner-bg {
    margin-bottom: 35px !important;
  }
  .banner-content h2 {
    font-size: 40px;
    margin-bottom: 5px;
  }

  .banner-content p {
    font-size: 12px;
    margin-bottom: 30px;
  }

  a.login-btn {
    margin-right: 0px;
    margin-bottom: 10px;
  }

  .login-btn a {
    margin-right: 20px;
  }

  .login-btn a {
    font-size: 12px;
    padding: 8px 40px;
    border-radius: 5px;
  }

  .main-content {
    /* top: 25%; */
    padding: 40px 0 20px;
  }



}

@media only screen and (max-width: 420px) {
  .main-content {
    /* top: 14%;
    left: 20%; */
  }

  .navbar__logo img {
    max-width: 250px;
    width: 100%;
  }

  .navbar {
    padding: 5px;
  }
}

@media only screen and (max-width: 350px) {
  .main-content {
    /* top: 12%;
    left: 23%; */
  }

  .menu-icon {
    margin-top: 10%;
  }

  .banner-content h2 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .banner-content p {
    margin-bottom: 5px;
  }

  .login-btn a {
    padding: 5px 20px;
  }

  a.login-btn {
    margin-right: 5px;
  }
}

/*--------------------- pratishtha section start ---------------------*/

section.pratishtha {
  /* padding: 0 0 50px 0; */
}

section.pratishtha .container {
  max-width: 1440px;
}

.tample-img img {
  width: 100%;
}


.top-main-slider button.slick-arrow {
  top: 200px;
  /* background-color: white; */
  z-index: 9;
  width: 120px;
  color: #000000;
  height: 60px;
  transition: all 0.2s;
}

.top-main-slider button.slick-prev.slick-arrow::before {
  color: #C85D28;
  font-weight: 300;
  content: "\f060";
  font-size: 28px;
  /* font-family: "Font Awesome 5"; */
}

.top-main-slider button.slick-next.slick-arrow::before {
  color: #C85D28;
  font-weight: 300;
  content: "\f061";
  font-size: 28px;
  /* font-family: "Font Awesome 5 Pro"; */
}

.top-main-slider button.slick-prev {
  left: 20%;
}

.top-main-slider button.slick-next {
  right: 19%;
}

.top-main-slider .slick-arrow:hover {
  /* box-shadow: 0 0 20px 0 #5363ac1f; */
}

.top-main-slider .slick-dots {
  /* bottom: 40px; */
  display: none !important;
}

.cpa_feature .cpa_page_title {
  padding-top: 30px;
}

.transform-text-title {
  padding-top: 80px;
  margin-bottom: -6px;
}

.top-main-slider.slick-dotted.slick-slider {
  padding: 0px 0 90px;
  /* background: #f7f7f7; */
  position: relative;
  margin-bottom: 0;
}

.top-slider-slide {
  width: 100%;
  margin: 6px;
  filter: contrast(0.7);
  padding: 0 16px;
}

.custom-form-control-for-email::placeholder {
  color: #9ea6cf !important;
}

.custom-form-control-for-email::placeholder {
  color: #dadeed;
  text-transform: capitalize;
  font-size: 16px;
}

.custom-form-control-for-button {
  background-color: #ffffff;
  border: medium none;
  border-radius: 50px;
  color: #ffffff;
  height: 45px;
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  width: 45px;
  margin: auto;
}

form.email-submit-form {
  position: relative;
  max-width: 360px;
  margin: 16px auto 0;
}

.our-mission-and-our-vision-section {
  padding-top: 0;
  padding-bottom: 100px;
  margin-top: 0;

}

.box_vision_mission .mission_heading {
  color: #3b3b3b;
  margin-bottom: 30px;
}

.transform-text-title h6 span {
  color: #bdbdbd;
  font-size: 32px;
  font-weight: 600;
  display: inline-block;
}

.top-slider-slide .slider-slide-image-title {
  width: calc(100% - 20%);
  text-align: center;
  background: linear-gradient(90.81deg, #D26F2D 0.17%, #E89839 99.79%);
  font-family: 'satoshiregular';
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  border-radius: 20px 20px 0 0;
  padding: 24px 0;
  opacity: 0 !important;
  position: relative;
  top: 150px;
  z-index: -1;
}

@keyframes scroll_bottom_to_top {
  from {
    top: 150px;
  }

  to {
    top: 0;
  }
}

.slick-active .top-slider-slide {
  width: 100%;
  margin: 6px;
  filter: unset;
}

.slick-active .top-slider-slide img {
  box-shadow: 0 0 20px -8px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  z-index: 99;
}

.slick-active .top-slider-slide .slider-slide-image-title {
  opacity: 1 !important;
  top: 0;
  animation: scroll_bottom_to_top 0.5s linear 1;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.slick-active .top-slider-slide .slider-slide-image-title:hover span.bubbles .first-bubbles {
  top: -70px;
  left: -70px;
}

.slick-active .top-slider-slide .slider-slide-image-title:hover span.bubbles .second-bubbles {
  bottom: -70px;
}

.slick-active .top-slider-slide .slider-slide-image-title:hover span.bubbles .third-bubbles {
  top: -70px;
  right: -70px;
}

/* .mahotasav-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: -75px;
}

.mahotasav-heading h4 {
  font-family: 'satoshiregular';
  font-size: 24px;
  font-weight: 600;
  background: linear-gradient(90.81deg, #C95F29 0.17%, #F1A93E 99.79%);
  color: #ffffff;
  border-radius: 10px;
  text-align: center;
  padding: 20px 250px;
}

.slider-line {
  background: linear-gradient(90.02deg, #F9EDE7 0%, #FDF5E9 98.4%);
  width: 300px;
  height: 10px;
} */

/* .bottom-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
} */





.gallery-main {
  width: 100%;
  height: 80vh;
}

.gallery-container {
  align-items: center;
  display: flex;
  height: 100%;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  /* z-index: -1;x */
  /* margin-top: -80px;  */
  /* margin-bottom: 100px; */
}

.gallery-item {
  height: 40%;
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease-in-out;
  width: 20%;
  z-index: 0;
  border: 0px;
  border-radius: 20px;
}

/* .gallery-item-1 {
  left: 15%;
  opacity: .4;
  transform: translateX(-50%);
} */

.gallery-item-2,
.gallery-item-4 {
  height: 60%;
  opacity: 1;
  width: 40%;
  z-index: 1;
}

.gallery-item-2 {
  left: 30%;
  transform: translateX(-70%);
}

.gallery-item-3 {
  /* box-shadow: 0 0 30px rgb(90 90 90 / 60%), 0 0 60px rgba(255, 255, 255, 0.45), 0 0 110px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1); */
  height: 80%;
  opacity: 1;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  z-index: 2;
}

.gallery-item-4 {
  left: 70%;
  transform: translateX(-30%);
}

/* .gallery-item-5 {
  left: 85%;
  opacity: .4;
  transform: translateX(-50%);
} */

.gallery-controls {
  display: flex;
  justify-content: space-between;
  /* margin: 30px 0; */
  position: relative;
  top: -300px;
  /* z-index: -11; */
}

.gallery-controls button {
  /* background-color: transparent;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  margin: 0 20px;
  padding: 0 150px;
  text-transform: capitalize; */
  display: contents;
  color: #C85D28;
}

.gallery-controls button:focus {
  outline: none;
}

.gallery-controls-previous {
  position: relative;
}

/* .gallery-controls-previous::before {
  border: solid #000;
  border-width: 0 2px 2px 0;
  content: '';
  display: inline-block;
  height: 4px;
  left: -10px;
  padding: 2px;
  position: absolute;
  top: 25%;
  transform: rotate(135deg) translateY(-50%);
  transition: left 0.15s ease-in-out;
  width: 4px;
}

.gallery-controls-previous:hover::before {
  left: -18px;
} */

.gallery-controls-next {
  position: relative;
}

/* .gallery-controls-next::before {
  border: solid #000;
  border-width: 0 2px 2px 0;
  content: '';
  display: inline-block;
  height: 4px;
  padding: 2px;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
  transition: right 0.15s ease-in-out;
  width: 4px;
}

.gallery-controls-next:hover::before {
  right: -18px;
} */

.gallery-nav {
  bottom: -15px;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  position: absolute;
  width: 100%;
}

.gallery-nav li {
  background: #ccc;
  border-radius: 50%;
  height: 10px;
  margin: 0 16px;
  width: 10px;
}

.gallery-nav li.gallery-item-selected {
  background: #555;
}







/* media querry start */

@media only screen and (max-width: 1199px) {
  .mahotasav-heading {
    margin-bottom: -92px;
  }
}

@media only screen and (max-width: 991px) {

  .top-main-slider button.slick-prev {
    left: 0%;
  }

  .top-main-slider button.slick-next {
    right: 0%;
  }

  .top-main-slider.slick-dotted.slick-slider {
    padding: 0px 0 70px;
  }

  /* .bottom-box {
    margin-top: 40px;
  } */

  /* .slider-line {
    height: 8px;
  } */
}

@media only screen and (max-width: 767px) {
  .mahotasav-heading h4 {
    font-size: 18px;
    padding: 12px 130px;
  }

  /* section.pratishtha {
    padding: 0px 0px 30px 0;
  } */
  .gallery-main {
    width: 100%;
    height: 79vh;
  }

  .mahotasav-heading {
    margin-bottom: -74px;
  }

  .top-main-slider button.slick-prev {
    left: 0%;
  }

  .top-main-slider button.slick-next {
    right: 0%;
  }

  .top-main-slider.slick-dotted.slick-slider {
    padding: 0px 0 50px;
  }

  /* .bottom-box {
    margin-top: 30px;
  }

  .slider-line {
    width: 250px;
  } */
}

@media only screen and (max-width: 575px) {
  .mahotasav-heading h4 {
    font-size: 16px;
    padding: 10px 80px;
  }

  .gallery-item-4 {
    left: 70%;
    transform: translateX(-40%);
  }

  .gallery-item-2 {
    left: 30%;
    transform: translateX(-60%);
  }

  i.fas.fa-chevron-left {
    font-size: 28px;
  }

  i.fas.fa-chevron-right {
    font-size: 28px;
  }

  .top-main-slider button.slick-next {
    right: 0%;
    top: 50%;
  }

  .top-main-slider button.slick-prev {
    left: 0%;
    top: 50%;
  }

  .top-main-slider.slick-dotted.slick-slider {
    padding: 0px 0 30px;
  }


  /* .bottom-box {
    margin-top: 20px;
  }

  .slider-line {
    width: 200px;
    height: 5px;
  } */

}

@media only screen and (max-width: 420px) {

  /* .slider-line {
    width: 150px;
    height: 4px;
  } */
}

@media only screen and (max-width: 350px) {}

/*--------------------- tirthdham-vedio section start ---------------------*/

section.tirthdham-vedio {
  position: relative;
}

section.tirthdham-vedio .container {
  max-width: 1440px;
}

.video-left-bg {
  position: absolute;
  bottom: 10%;
}

.video-right-bg {
  position: absolute;
  right: 0;
  top: 20%;
}


.vedio-box {
  /* background-image: url(../images/video-Bg.png); */
  padding: 20px;
  /* background-size: cover; */
  background: linear-gradient(180deg, rgba(248, 234, 228, 0.2) 0%, rgba(255, 255, 255, 0.2) 68.67%), linear-gradient(180deg, #F8EAE4 0%, #FFFFFE 67.26%);
  border-radius: 20px;
  border-bottom: none;
  border-right: 1px solid #D78A62;
  border-left: 1px solid #D78A62;
  border-top: 1px solid #D78A62;
}


.vedio-box h2 {
  color: #C85D28;
  font-size: 60px;
  font-family: 'richstenregular';
  letter-spacing: .1px;
  margin: 50px 0;
}

.vedio-popup img {
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
}


.vedio-text {
  text-align: center;
}

.vedio-text p {
  font-family: 'satoshimedium';
  font-size: 18px;
  font-weight: 500;
  max-width: 630px;
  margin-top: 30px;
  line-height: 34px;
  color: #696969;
}

a.Read-More {
  /* background: linear-gradient(90.81deg, #C95F29 0.17%, #F1A93E 99.79%); */
  /* color: #ffffff; */
  /* font-size: 18px;
  font-weight: 500;
  padding: 10px 80px;
  border-radius: 10px; */
  display: inline-block;
  font-family: 'satoshimedium';
  background: transparent;
  border: 1px solid;
  color: #C95F29;
  font-size: 18px;
  font-weight: 500;
  border-radius: 10px;
  padding: 10px 80px;
  transition: .5s !important;
  margin-top: 50px;
  /* border: 1px solid; */
  /* transition: .3s; */
  /* margin-top: 50px;
  transition: .5s; */
}

a.Read-More:hover {
  background: linear-gradient(90.81deg, #C95F29 0.17%, #F1A93E 99.79%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 80px;
  border: 1px solid;
  transition: .5s;
  border-radius: 10px;
}

/* a.Read-More:hover {
  font-weight: 500;
  background: transparent;
  background: linear-gradient(180deg, #CA6129 0%, #F0A73D 64.71%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid #C95F29;
} */

/* media querry start */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {

  .vedio-box h2 {
    font-size: 40px;
    margin: 40px 0;
  }

  .vedio-text p {
    font-size: 16px;
    margin-top: 40px;
    line-height: 31px;
  }
  /* .vedio-text p.hText {
    margin-top: 20px 0 0;
  } */

  a.Read-More {
    font-size: 16px;
    padding: 10px 60px;
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .vedio-box h2 {
    font-size: 30px;
    margin: 20px 0;
  }

  .vedio-popup {
    max-width: 500px;
  }

  .vedio-text p {
    font-size: 14px;
    margin-top: 30px;
    max-width: 491px;
    line-height: 27px;
  }

  a.Read-More {
    font-size: 14px;
    padding: 8px 40px;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 575px) {

  .vedio-box h2 {
    font-size: 40px;
    margin: 45px 0;
  }

  .vedio-popup {
    max-width: 400px;
  }

  .vedio-text p {
    font-size: 18px;
    margin-top: 40px;
    max-width: 100%;
    line-height: 34px;
    text-align: start;
    margin-left: 25px;
  }

  .vedio-text p.hText {
    margin-right: 25px;
  }

  a.Read-More {
    font-size: 14px;
    padding: 10px 40px;
    margin-top: 40px;
    border-radius: 5px;
    margin-bottom: 40px;
  }

}

@media only screen and (max-width: 420px) {
  .vedio-popup {
    max-width: 300px;
  }
}

@media only screen and (max-width: 350px) {
  .vedio-popup {
    max-width: 200px;
  }

  .vedio-box h2 {
    font-size: 18px;
    margin: 10px 0;
  }

  a.Read-More {
    padding: 5px 20px;
    margin-top: 10px;
  }
}

/*--------------------- history section start ---------------------*/

section.history {
  padding: 50px 0;
}

section.history .container {
  max-width: 1440px;
}

.history-box {
  background: linear-gradient(90.81deg, #D26F2D 0.17%, #E89839 99.79%);
  padding: 100px 0;
  border-radius: 30px;
  position: relative;
}

.buddha-img {
  position: absolute;
  left: 33%;
  bottom: 0;
  /* background-image: url(../images/buddha.png);
  background-repeat: no-repeat;
  background-position: center; */
  /* padding: 60px 0; */
}

.history-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px 70px 100px;
}

.history-heading h2 {
  font-family: 'richstenregular';
  font-size: 60px;
  color: #ffffff;
}

.history-heading h6 a {
  font-family: 'satoshimedium';
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
}

.journey-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  border-top: 1px solid #ffffff;
}

.year-list {
  margin-top: 50px;
  position: relative;
}

.year-list::before {
  position: absolute;
  content: "";
  background: #ffffff;
  height: 20px;
  width: 20px;
  border-radius: 50px;
  top: -62px;
  left: 13px;
}


.year-list::after {
  position: absolute;
  content: "";
  background: #f9f9f95c;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  top: -76px;
  left: -2px;
}

.year-list h4 {
  font-family: 'satoshi_variablebold';
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
}

.year-list h6 {
  font-family: 'satoshimedium';
  /*font-size: 22px;*/
  font-weight: 500;
  color: #ffffff;
  max-width: 130px;
}

.bg-flower {
  text-align: center;
}

.bg-flower img {
  max-width: 400px;
  width: 100%;
}

.buddha-img img {
  max-width: 480px;
  width: 100%;
  margin-bottom: 25%;
}

.border-left-side {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  margin-left: 50px;
}

.year-list-box {
  margin-bottom: 30px;
}

.box-border-left {
  border-left: 1px solid #fff;
}

.year-list-box h4 {
  font-size: 16px;
  margin-bottom: 5px;
  font-family: 'satoshi_variablebold';
  font-weight: 500;
  color: #ffffff;
  margin-left: 30px;
  position: relative;
}

.year-list-box h6 {
  font-size: 14px;
  font-family: 'satoshimedium';
  font-weight: 500;
  color: #ffffff;
  margin-left: 30px;
}

.year-list-box h4::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  border-radius: 20px;
  background: #f9f9f95c;
  left: -15%;
  top: -10%;
}

.year-list-box h4::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 20px;
  background: #fff;
  left: -12%;
  top: 41%;
}

.vertical-journey-box {
  display: none;
}


/* media querry start */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  section.history {
    padding: 40px 0;
  }

  .history-box {
    padding: 80px 0;
  }

  .buddha-img {
    left: 31%;
  }

  .buddha-img img {
    max-width: 380px;
  }

  .history-heading {
    padding: 0 60px 60px 80px;
  }

  .history-heading h2 {
    font-size: 40px;
  }

  .history-heading h6 a {
    font-size: 20px;
  }

  .year-list h4 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .year-list h6 {
    font-size: 18px;
  }

  .year-list::after {
    height: 40px;
    width: 40px;
    top: -71px;
    left: 3px;
  }

  .year-list::before {
    height: 15px;
    width: 15px;
    top: -59px;
    left: 15px;
  }

  .bg-flower img {
    max-width: 300px;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .history-heading {
    padding: 0 30px 40px 30px;
  }

  .history-box {
    padding: 60px 0;
  }

  .buddha-img img {
    max-width: 290px;
  }


  .history-heading h2 {
    font-size: 30px;
  }

  .history-heading h6 a {
    font-size: 16px;
  }

  .year-list h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .year-list h6 {
    font-size: 16px;
    max-width: 100px;
  }

  section.history {
    padding: 30px 0;
  }

  .bg-flower img {
    max-width: 200px;
    width: 100%;
  }
}

@media only screen and (max-width: 575px) {
  .buddha-img {
    /* padding: 40px 0; */
  }

  .history-box {
    padding: 40px 0;
  }

  .buddha-img img {
    display: none;
  }

  .history-heading h2 {
    font-size: 26px;
  }

  .year-list::after {
    height: 30px;
    width: 30px;
    top: -46px;
    left: 7px;
  }

  .year-list::before {
    height: 10px;
    width: 10px;
    top: -36px;
    left: 17px;
  }

  .year-list {
    margin-top: 30px;
  }

  section.history {
    padding: 20px 0 50px;
  }

  .journey-box {
    display: none;
  }

  .vertical-journey-box {
    display: block;
  }

}

@media only screen and (max-width: 420px) {
  .buddha-img {
    /* padding: 30px 0; */
  }


  .history-heading {
    padding: 0 10px 30px 10px;
  }

  .history-heading h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
  }

  .history-heading {
    flex-direction: column;
    
  }

  .history-heading h6 a {
    font-size: 18px;
    margin-left: -120px;
  }


  .year-list::after {
    height: 20px;
    width: 20px;
    top: -40px;
    left: 12px;
  }

  .year-list::before {
    height: 7px;
    width: 7px;
    top: -34px;
    left: 19px;
  }

  .year-list h4 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .year-list h6 {
    font-size: 14px;
    max-width: 70px;
  }

  .bg-flower img {
    max-width: 130px;
    width: 100%;
  }
}

@media only screen and (max-width: 350px) {
  .buddha-img {
    /* padding: 20px 0; */
  }

  .history-heading h2 {
    font-size: 16px;
  }

  .history-heading h6 a {
    font-size: 12px;
  }

  .history-heading {
    padding: 0 10px 20px 10px;
  }

  .year-list {
    margin-top: 20px;
  }

  .year-list::before {
    top: -24px;
  }

  .year-list::after {
    top: -30px;
  }

  .year-list h4 {
    font-size: 14px;
  }

  .year-list h6 {
    font-size: 12px;
    max-width: 60px;
  }

  section.history {
    padding: 10px 0;
  }
}

/*--------------------- pratistha section start ---------------------*/

section.pratistha .container {
  max-width: 1440px;
}



.pratishtha-text h3 {
  font-family: 'sentaniaregular';
  font-size: 42px;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #CA6129 0%, #F0A73D 64.71%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pratishtha-text h2 {
  font-family: 'richstenregular';
  color: #C85D28;
  font-size: 60px;
  margin-bottom: 20px;
}

.pratishtha-text p {
  font-family: 'satoshimedium';
  font-size: 18px;
  line-height: 34px;
  /* font-weight: 600; */
  max-width: 450px;
  color: #696969;
}

.pratistha-img img {
  max-width: 350px;
  width: 100%;
  border-radius: 20px;
}

.pratistha-img {
  text-align: center;
}



.pratishtha-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* media querry start */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  .pratishtha-text h3 {
    font-size: 32px;
  }

  .pratishtha-text h2 {
    font-size: 40px;
  }

  .pratishtha-text p {
    font-size: 16px;
    max-width: 400px;
  }
}

@media only screen and (max-width: 767px) {
  .pratishtha-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .pratishtha-text h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .pratishtha-text p {
    font-size: 14px;
  }

}

@media only screen and (max-width: 575px) {
  .pratishtha-text {
    align-items: center;
  }

  .pratishtha-text h3 {
    font-size: 34px;
  }

  .pratishtha-text h2 {
    font-size: 26px;
    margin-bottom: 5px;
  }

  .pratishtha-text p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 34px;
  }
}

@media only screen and (max-width: 420px) {


  .pratishtha-text h2 {
    font-size: 40px;
  }

  .pratishtha-text p {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 350px) {}


/*--------------------- shedual section start ---------------------*/

section.shedual {
  padding: 50px 0;
}

section.shedual .container {
  max-width: 1440px;
}

.shedual-card h2 {
  font-family: 'richstenregular';
  font-size: 60px;
  font-weight: 700;
  background: linear-gradient(180deg, #ECECEC 0%, #FAFAFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
  margin-bottom: 40px;
}

.shedual-card h4 {
  font-family: 'sentaniaregular';
  font-size: 42px;
  color: #C85D28;
  position: absolute;
  top: 1%;
  left: 17%;
}

.utshavna-card {
  text-align: center;
}

.day-card {
  background: linear-gradient(157.63deg, #FBEFE6 0%, #F5F6F6 98.9%);
  padding: 40px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card-1-bg img {
  width: 100%;
}

.card-1-bg {
  position: absolute;
  top: -150px;
  left: -150px;
  opacity: 0.3;
}

.card-2-bg {
  position: absolute;
  right: -150px;
  bottom: 10%;
  opacity: 0.3;
}

.card-3-bg {
  position: absolute;
  bottom: -25%;
  left: 0;
  /* opacity: 0.3; */
}

.card-4-bg {
  position: absolute;
  bottom: -25%;
  right: -45%;
  /* opacity: 0.3; */
}

.card-5-bg {
  position: absolute;
  top: 30%;
  right: -50%;
}

.card-6-bg {
  position: absolute;
  top: -25%;
  left: 0%;
  opacity: 0.5;
}

.card-7-bg {
  position: absolute;
  top: 30%;
  left: -50%;
  opacity: 0.5;
}

.card-8-bg {
  position: absolute;
  top: -20%;
  right: -50%;
  opacity: 0.6;
}



.day-card-heading {
  margin-bottom: 20px;
}

.heading-detail {
  margin-top: 20px;
  margin-left: 5px;
}

.day-card-heading h2 {
  background: linear-gradient(180deg, #AEAAA7 0%, #EAE2DB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 60px;
  font-family: 'richstenregular';
  position: relative;
  opacity: 0.5;
}

.day-card-heading h4 {
  position: absolute;
  top: 13%;
  font-family: 'richstenregular';
  font-size: 28px;
  color: #C85D2D;
  letter-spacing: 0.2px;
  left: 9%;

}

.day-card h6 {
  font-family: 'satoshimedium';
  font-size: 12px;
  color: #471904;
}

.day-card p {
  font-size: 13px;
  color: #5E5E5E;
  font-family: 'satoshiregular';
}

.time-box {
  margin-top: 30px;
  margin-left: 5px;
}

.time-box h6 {
  font-family: 'satoshi_variablebold';
  font-size: 16px;
  color: #C85D2D;
  margin-bottom: 10px;
}

a.readmore {
  font-family: 'satoshimedium';
  font-size: 16px;
  font-weight: 600;
  color: #C85D2D;
  text-decoration: underline !important;
  margin-top: 30px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.colored-card {
  padding: 40px;
  border-radius: 10px;
  background: linear-gradient(180deg, #E89939 0%, #DA7E31 100%);
  margin-top: 33px;
  position: relative;
}

.utshavna-card img {
  max-width: 260px;
  width: 100%;
}

.color-card-heading {
  text-align: center;
}

.color-card-heading h2 {
  background: linear-gradient(180deg, #F9E8D5 0%, #E8A357 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 60px;
  font-family: 'richstenregular';
  position: relative;
}

.color-card-heading h4 {
  position: absolute;
  top: 12%;
  left: 34%;
  color: #ffffff;
  font-size: 24px;
  font-family: 'richstenregular';
  letter-spacing: 2.2px;
}

.lord-image {
  text-align: center;
  margin: 30px 0;
}

.time-sedual {
  margin-bottom: 30px;
  /* text-align: center; */
}

.time-sedual p {
  font-size: 16px;
  color: #ffffff;
  font-family: 'satoshilight';
}

a.viewmore {
  font-family: 'satoshimedium';
  color: #ffffff;
  text-decoration: underline !important;
  font-size: 14px;
}

.bottom-content {
  position: relative;
}

.men-poster {
  position: absolute;
  top: -200px;
  right: -30px;
}

.top-box {
  margin-bottom: 194%;
}

.day-card-heading.pml {
  position: relative;
}

.day-card-heading.pml h4 {
  position: absolute;
  top: 40%;
  left: 1%;
}

button.btn.btn-primary {
  font-family: 'satoshimedium';
  font-size: 14px;
  background: transparent;
  border: none;
  color: #AA1E23;
  text-decoration: underline !important;
  /* margin-top: 30px; */
  display: inline-block;
}

.btn-primary:not(:disabled):not(.disabled):active {
  background: transparent !important;
  border: none;
  color: #C85D2D;
  text-decoration: underline !important;
}

.btn-primary:focus {
  border: none !important;
  box-shadow: none;
}

.modal-body img {
  width: 100%;
}

.modal-dialog {
  max-width: 50%;
}

/* media querry start */

@media only screen and (max-width: 1199px) {
  .top-box {
    margin-bottom: 280%;
  }
}

@media only screen and (max-width: 991px) {
  .shedual-card h2 {
    font-size: 40px;
  }

  .shedual-card h4 {
    font-size: 30px;
    top: 8px;
    left: 23%;
  }

  .day-card {
    padding: 30px 15px;
  }

  .day-card-heading h2 {
    font-size: 40px;
  }

  .day-card-heading h4 {
    top: 11%;
    font-size: 18px;
  }

  .heading-detail {
    margin-top: 15px;
  }

  .day-card h6 {
    font-size: 12px;
  }

  .day-card p {
    font-size: 12px;
  }

  .colored-card {
    margin-top: 20px;
  }

  .color-card-heading h2 {
    font-size: 40px;
  }

  .color-card-heading h4 {
    top: 11%;
    left: 35%;
    font-size: 20px;
  }

  .lord-image {
    margin: 20px 0;
  }

  .time-sedual p {
    font-size: 14px;
  }

  .time-sedual {
    margin-bottom: 20px;
  }

  a.viewmore {
    font-size: 14px;
  }

  .men-poster {
    right: -50px;
  }

  a.readmore {
    font-size: 14px;
    margin-top: 20px;
  }

  .time-box {
    margin-top: 20px;
  }

  section.shedual {
    padding: 30px 0;
  }

  .top-box {
    margin-bottom: 395%;
  }

  .card-1-bg {
    top: -180px;
    left: -190px;
  }

  .card-2-bg {
    right: -180px;
  }

  .card-3-bg {
    bottom: -35%;
    left: -20%;
  }

  .card-4-bg {
    bottom: -35%;
    right: -65%;
  }

  .card-5-bg {
    top: 20%;
    right: -80%;
  }

  .card-5-bg {
    position: absolute;
    top: 20%;
    right: -80%;
  }

  .card-7-bg {
    position: absolute;
    top: 40%;
    left: -80%;
    opacity: 0.5;
  }

  .card-8-bg {
    top: -30%;
    right: -70%;
  }
}

@media only screen and (max-width: 767px) {
  .top-box {
    margin-bottom: 50px;
  }

  .shedual-card {
    text-align: center;
  }

  .shedual-card h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .shedual-card h4 {
    font-size: 18px;
    top: 6px;
    left: 46%;
  }

  .day-card {
    padding: 20px 10px;
    /* text-align: center; */
  }

  .day-card-heading h2 {
    font-size: 30px;
  }

  .day-card-heading h4 {
    font-size: 16px;
    left: 35%;
    top: 12%;
  }

  .day-card-heading {
    margin-bottom: 10px;
  }

  .time-box {
    margin-top: 10px;
  }

  .time-box h6 {
    margin-bottom: 5px;
  }

  a.readmore {
    font-size: 12px;
    margin-top: 10px;
  }

  .color-card-heading h2 {
    font-size: 30px;
  }

  .color-card-heading h4 {
    top: 15%;
    left: 42%;
    font-size: 18px;
  }

  .colored-card {
    margin-top: 15px;
  }

  .time-sedual p {
    font-size: 12px;
  }

  .time-sedual {
    margin-bottom: 10px;
    text-align: center;
  }

  .bottom-content {
    text-align: center;
  }

  a.viewmore {
    font-size: 12px;
  }

  .day-card-heading h4 {
    font-size: 14px;
    left: 7%;
  }

  .day-card-heading.pml h4 {
    top: 40%;
    left: 0%;
  }

  .card-3-bg {
    bottom: -45%;
    left: 5%;
  }

  .card-4-bg {
    bottom: -40%;
    right: -40%;
  }

  .card-5-bg {
    top: 5%;
    right: -40%;
  }

  .card-6-bg {
    top: -45%;
    left: 5%;
    opacity: 0.5;
  }

  .card-7-bg {
    top: 10%;
    left: -40%;
  }

  .card-8-bg {
    top: -40%;
    right: -40%;
  }
}

@media only screen and (max-width: 575px) {
  .shedual-card h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .utshavna-card {
    text-align: center;
    display: none;
  }

  .shedual-card h4 {
    font-size: 16px;
    top: 4px;
    left: 44%;
  }

  .day-card-heading h2 {
    font-size: 26px;
  }

  .day-card-heading h4 {
    font-size: 18px;
    left: 9%;
    top: 13%;
  }

  .day-card-heading.day-2-head h4 {
    top: 16%;
}

  .day-card h6 {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .day-card-heading {
    margin-bottom: 5px;
  }

  .day-card {
    padding: 30px;
  }

  .time-box {
    margin-top: 15px;
  }

  a.readmore {
    margin-top: 15px;
    margin-left: 5px;
    margin-bottom: 10px;
  }

  .colored-card {
    margin-top: 10px;
    padding: 20px;
  }

  .color-card-heading h2 {
    font-size: 26px;
  }

  .color-card-heading h4 {
    top: 10%;
    left: 41%;
    font-size: 14px;
  }

  .time-sedual {
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
  }

  .time-sedual p {
    max-width: 400px;
  }

  .men-poster {
    display: none;
  }

  .top-box {
    margin-bottom: 30px;
  }

  section.shedual {
    padding: 20px 0 30px;
  }

  .modal-dialog {
    max-width: 100%;
  }

  /* .card-1-bg {
    display: none;
  }

  .card-2-bg {
    display: none;
  }

  .card-3-bg {
    display: none;
  }

  .card-4-bg {
    display: none;
  }

  .card-5-bg {
    display: none;
  }

  .card-6-bg {
    display: none;
  }

  .card-7-bg {
    display: none;
  }

  .card-8-bg {
    display: none;
  } */

  .day-card-heading.pml h4 {
    top: 28%;
    left: 1%;
  }

  /* .day-card-heading.pml h4 {
    left: 41%;
  } */
}

@media only screen and (max-width: 420px) {}

@media only screen and (max-width: 350px) {}

/*--------------------- section subscribe start ---------------------*/

section.subscribe .container {
  max-width: 1440px;
}

.subscribe-border {
  border: 2px solid rgba(214, 134, 95, 1);
  border-radius: 20px;
  position: relative;
}

.subscribe-top-bg {
  position: absolute;
  left: 40%;
}

.subscribe-heading {
  padding: 70px 0;
  text-align: center;
}

.subscriber-bg {
  /* background: #FAFAFA; */
  padding: 50px 20px;
}

.subscribe-detail-heading h2 {
  font-size: 60px;
  font-family: 'richstenregular';
  color: #C85D28;
  position: relative;
  margin-bottom: 20px;
}

.subscribe-detail-heading h3 {
  font-family: 'sentaniaregular';
  font-size: 62px;
  color: #FF9700;
  position: absolute;
  top: 35%;
  left: 47%;

}

.subscribe-detail-heading h4 {
  font-family: 'satoshi_variablebold';
  font-size: 28px;
  color: #606060;
  font-weight: 600;
}

input.email {
  background: transparent;
  border: none;
  color: #C85D2D;
  font-family: 'satoshimedium';
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline !important;
  max-width: 330px;
  width: 100%;
}

input.email:focus-visible {
  border: none !important;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

input.middle:focus {
  outline-width: 0;
}

input[type="button"] {
  background: linear-gradient(90deg, #EFA63D 0%, #CA6029 100%);
  color: #ffffff;
  font-size: 18px;
  font-family: 'satoshi_variablebold';
  font-weight: 600;
  padding: 10px 50px;
  border: 1px solid;
  display: inline-block;
  transition: .5s;
}

input[type="button"]:hover {
  border: 1px solid #CA6029;
  color: #CA6029;
  background: transparent;
}

.subscribe-mail {
  background: #ffffff;
  padding: 20px;
  box-shadow: 10px 10px 20px rgb(0 0 0 / 10%);
  margin: 0px 20px;
}

.form-group.dflex {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.list-amenities {
  background: linear-gradient(263.57deg, rgba(235, 235, 235, 0.2) 0%, rgba(254, 254, 254, 0.2) 100%), linear-gradient(97.06deg, #FCF5EE 0%, #F9FAFA 101.09%);
  padding: 20px 40px;
  margin: 0 40px;
  border-radius: 10px;
}

.amenities-heading h2 {
  text-align: left;
  font-family: 'richstenregular';
  font-size: 50px;
  color: #C85D28;
  margin: 30px 0px 30px 50px;
}

.amenities-heading {
  border-bottom: 1px solid rgba(200, 96, 44, 1);
}

ul.amenities {
  padding-top: 30px;
  margin-left: 50px;
}

ul.amenities li {
  list-style: none;
  padding-bottom: 30px;
  text-align: start;
}

ul.amenities li a {
  font-family: 'satoshimedium';
  font-size: 18px;
  font-weight: 500;
  color: #696969;
}

ul.amenities li i {
  color: #C85D28;
}

/* media querry start */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  .subscribe-detail-heading h2 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .subscribe-detail-heading h3 {
    font-size: 51px;
    top: 12%;
    left: 46%;
  }

  .subscribe-detail-heading h4 {
    font-size: 24px;
  }

  .subscriber-bg {
    padding: 40px 15px;
  }

  .subscribe-mail {
    padding: 15px;
  }

  input.email {
    font-size: 16px;
  }

  input[type="button"] {
    font-size: 16px;
    padding: 10px 40px;
  }

  .amenities-heading h2 {
    font-size: 30px;
    margin: 25px 0px 25px 40px;
  }

  .list-amenities {
    padding: 15px 30px;
  }

  ul.amenities {
    padding-top: 25px;
    margin-left: 40px;
  }

  ul.amenities li {
    padding-bottom: 20px;
  }

  /* ul.amenities li a {
    font-size: 16px;
  } */

  .subscribe-heading {
    padding: 50px 0;
  }

}

@media only screen and (max-width: 767px) {
  .subscribe-top-bg {
    left: 30%;
  }

  .subscribe-detail-heading h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .subscribe-detail-heading h4 {
    font-size: 20px;
  }

  .subscribe-detail-heading h3 {
    font-size: 41px;
    top: 10%;
    left: 45%;
  }

  .subscriber-bg {
    padding: 30px 10px;
  }

  .subscribe-mail {
    padding: 10px;
  }

  input.email {
    font-size: 14px;
  }

  input[type="button"] {
    font-size: 14px;
    padding: 10px 30px;
  }

  .amenities-heading h2 {
    font-size: 22px;
    margin: 15px 0px 15px 20px;
  }

  ul.amenities {
    padding-top: 20px;
    margin-left: 20px;
  }

  ul.amenities li {
    padding-bottom: 15px;
  }

  /* ul.amenities li a {
    font-size: 14px;
  } */

  .subscribe-heading {
    padding: 40px 0;
  }

}

@media only screen and (max-width: 575px) {
  .subscribe-top-bg img {
    max-width: 150px;
  }

  .subscribe-detail-heading h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .subscribe-detail-heading h4 {
    font-size: 18px;
  }

  .subscribe-detail-heading h3 {
    font-size: 31px;
    top: 11%;
    left: 46%;
  }

  .subscriber-bg {
    padding: 20px 10px;
  }

  .subscribe-mail {
    padding: 10px;
  }

  input.email {
    font-size: 12px;
  }

  input[type="button"] {
    font-size: 12px;
    padding: 10px 20px;
  }

  .list-amenities {
    padding: 10px 20px;
    margin: 30px 20px 0 20px;
  }

  .amenities-heading h2 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
  }

  ul.amenities {
    padding-top: 15px;
    margin-left: 0;
  }

  ul.amenities li {
    padding-bottom: 5px;
    /* text-align: center; */
  }

  /* ul.amenities li a {
    font-size: 12px;
  } */

  .subscribe-heading {
    padding: 30px 0;
  }

  .subscribe-detail-heading {
    margin-bottom: 20px;
  }

}

@media only screen and (max-width: 420px) {


  .subscribe-detail-heading h4 {
    font-size: 16px;
  }

  .subscriber-bg {
    padding: 10px 10px;
  }

  .subscribe-mail {
    padding: 10px;
  }

  input[type="button"] {
    font-size: 12px;
    padding: 8px 10px;
  }

  .amenities-heading h2 {
    font-size: 20px;
    margin-bottom: 5px;
    margin: 20px 0 20px 0;
  }

  ul.amenities li a {
    font-size: 12px;
  }

  ul.amenities {
    padding-top: 10px;
    padding-left: 15px;
  }

  ul.amenities li i {
    color: #C85D28;
    margin-right: 10px;
  }

  ul.amenities li {
    padding-bottom: 5px;
  }

  /* ul.amenities li a {
    font-size: 8px;
  } */

  .subscribe-heading {
    padding: 40px 0;
  }



  .subscribe-detail-heading h3 {
    font-size: 40px;
    top: 11%;
    left: 45%;
  }
}

@media only screen and (max-width: 350px) {
  .subscribe-detail-heading h3 {
    top: 13%;
  }

}

/*--------------------- event section start ---------------------*/

section.event {
  padding: 70px 0;
  position: relative;
}

section.event .container {
  max-width: 1440px;
}

.event-slider-card {
  padding: 50px;
  /* background: linear-gradient(163.25deg, #FBF0E6 0%, #F6F7F8 99.16%); */
  border-radius: 20px;
  
}

.event-slider-image {
  margin-bottom: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-slider-image img {
  max-width: 200px;
  width: 100%;
}

.item.slider-event-image-bg-1 {
  background-image: url(../images/event18\ 1.png);
  background-repeat: no-repeat;
  border-radius: 20px;
  background-size: cover;
}

.item.slider-event-image-bg-2 {
  background-image: url(../images/event16\ 1.png);
  background-repeat: no-repeat;
  border-radius: 20px;
  background-size: cover;
}

.item.slider-event-image-bg-3 {
  background-image: url(../images/event22\ 1.png);
  background-repeat: no-repeat;
  border-radius: 20px;
  background-size: cover;
}

.item.slider-event-image-bg-4 {
  background-image: url(../images/event13\ 1.png);
  background-repeat: no-repeat;
  border-radius: 20px;
  background-size: cover;
}

.item.slider-event-image-bg-5 {
  background-image: url(../images/event14\ 1.png);
  background-repeat: no-repeat;
  border-radius: 20px;
  background-size: cover;
}

.event-slider-text {
  background: linear-gradient(163.25deg, #D07038 0%, #ECA748 99.16%);
  padding: 40px;
  border-radius: 10px;
  margin-top: 250px;
}

.event-slider-text h4 {
  font-size: 24px;
  font-family: 'satoshi_variablebold';
  color: #ffffff;
  margin-bottom: 10px;
}

.event-slider-text h6 {
  font-family: 'satoshimedium';
  font-weight: 500;
  font-size: 22px;
  color: #ffffff;
}

.event-slider-heading {
  position: relative;
}

.event-slider-heading h2 {
  font-size: 60px;
  font-family: 'richstenregular';
  color: #C85D28;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.event-slider-heading h4 a {
  font-size: 24px;
  font-family: 'richstenregular';
  color: #C85D28;
  position: absolute;
  top: 30%;
  right: 0;
}

/* media query start */

@media only screen and (max-width: 1199px) {
  .event-slider-card {
    padding: 50px 30px;
  }
}

@media only screen and (max-width: 991px) {
  .event-slider-heading h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .event-slider-heading h4 a {
    font-size: 20px;
  }

  .event-slider-text {
    padding: 30px;
  }

  .event-slider-text h4 {
    font-size: 22px;
  }

  .event-slider-text h6 {
    font-size: 20px;
  }

  .event-slider-card {
    padding: 40px 30px;
  }

  .event-slider-image {
    margin-bottom: 40px;
  }

  section.event {
    padding: 50px 0;
  }
}

@media only screen and (max-width: 767px) {
  .event-slider-heading h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .event-slider-heading h4 a {
    font-size: 18px;
  }

  .event-slider-card {
    padding: 30px 20px;
  }

  .event-slider-image {
    margin-bottom: 30px;
  }

  .event-slider-text {
    padding: 20px;
  }

  .event-slider-text h4 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .event-slider-text h6 {
    font-size: 18px;
  }

  section.event {
    padding: 40px 0;
  }
}

@media only screen and (max-width: 575px) {
  .event-slider-heading h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .event-slider-card {
    padding: 20px 10px;
  }

  .event-slider-heading h4 a {
    font-size: 16px;
    top: 20%;
  }

  .event-slider-text {
    padding: 30px 20px;
}

  .event-slider-text h4 {
    font-size: 18px;
  }

  .event-slider-text h6 {
    font-size: 16px;
  }

  .event-slider-image {
    margin-bottom: 20px;
  }

  section.event {
    padding: 30px 0;
  }

}

@media only screen and (max-width: 450px) {

  .event-slider-heading h4 a {
    font-size: 14px;
    top: 40%;
  }

  section.event {
    padding: 50px 0;
  }
}

/*--------------------- updhan section start ---------------------*/

section.updhan {
  padding-bottom: 50px;
  position: relative;
}

section.updhan .container {
  max-width: 1440px;
}

.updhan-slider-heading {
  position: relative;
}

.left-updhan-flower {
  position: absolute;
  top: -20%;
  left: 0;
}

.updhan-slider-heading h2 {
  text-align: center;
  margin-bottom: 50px;
  font-family: 'richstenregular';
  font-size: 60px;
  color: #C85D28;
}

.updhan-slider-card {
  padding: 200px 30px 100px 30px;
  /* background: linear-gradient(163.25deg, #FBF0E6 0%, #F6F7F8 99.16%); */
  border-radius: 20px;
  position: relative;
  /* background: #ffd4ba;
  opacity: 0.7; */
}

.item.updhan-img-1 {
  background-image: url(../images/gallery_108\ 1.png);
  background-repeat: no-repeat;
  border-radius: 20px;
    background-size: cover;
}

.item.updhan-img-2 {
  background-image: url(../images/gallery_110\ 1.png);
  background-repeat: no-repeat;
  border-radius: 20px;
    background-size: cover;
}

.item.updhan-img-3 {
  background-image: url(../images/gallery_192\ 1.png);
  background-repeat: no-repeat;
  border-radius: 20px;
    background-size: cover;
}

.item.updhan-img-4 {
  background-image: url(../images/gallery_162\ 1.png);
  background-repeat: no-repeat;
  border-radius: 20px;
    background-size: cover;
}

.item.updhan-img-5 {
  background-image: url(../images/gallery_153\ 1.png);
  background-repeat: no-repeat;
  border-radius: 20px;
    background-size: cover;
}

.item.updhan-img-6 {
  background-image: url(../images/gallery_113\ 1.png);
  background-repeat: no-repeat;
  border-radius: 20px;
    background-size: cover;
}

.updhan-slider-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.updhan-slider-image img {
  max-width: 150px;
  width: 100%;
}

.updhan-slider-text {
  padding: 10px 40px;
  background: linear-gradient(163.25deg, #D07038 0%, #ECA748 99.16%);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  position: absolute;
  top: 70%;
  right: 0;
}

.updhan-slider-text h4 {
  font-size: 24px;
  font-family: 'satoshimedium';
  color: #ffffff;
}

/* media querry start */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  .updhan-slider-heading h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .left-updhan-flower img {
    max-width: 100px;
    width: 100%;
  }

  .updhan-slider-card {
    padding: 25px 25px 90px 25px;
  }

  .updhan-slider-text h4 {
    font-size: 22px;
  }

  section.updhan {
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .updhan-slider-heading h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .left-updhan-flower img {
    max-width: 80px;
    width: 100%;
  }

  .left-updhan-flower {
    top: -15%;
  }

  .updhan-slider-card {
    padding: 20px 20px 80px 20px;
  }

  .updhan-slider-text {
    padding: 8px 30px;
  }

  .updhan-slider-text h4 {
    font-size: 20px;
  }

  section.updhan {
    padding-bottom: 30px;

  }
}

@media only screen and (max-width: 575px) {
  .updhan-slider-heading h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .left-updhan-flower {
    display: none;
  }

  .updhan-slider-image img {
    max-width: 130px;
  }

  .updhan-slider-card {
    height: 300px;
  }

  .updhan-slider-text {
    padding: 15px 20px;
}

.updhan-slider-text h4 {
  font-size: 20px;
  font-weight: 600;
}

  section.updhan {
    padding-bottom: 20px;
    padding-top: 20px;
  }
}

@media only screen and (max-width: 450px) {}

/*--------------------- section tabbing start ---------------------*/

section.tabbing {
  padding: 50px 0 0 0;
  background: linear-gradient(229.88deg, rgba(235, 235, 235, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%), linear-gradient(130.12deg, #FCF5EE 0%, #F9FAFA 100%);
  position: relative;
}

section.tabbing .container {
  max-width: 1440px;
}

.tabbing-bg {
  padding: 50px 40px;
  position: relative;

}

.tabbing-heading h2 {
  margin-bottom: 30px;
  font-family: 'richstenregular';
  font-size: 60px;
  color: #C85D28;
}

.tabbing-heading p.w-100 {
  max-width: 600px;
}

.tabbing-heading p {
  font-family: 'satoshimedium';
  font-size: 18px;
  line-height: 32px;
  max-width: 410px;
  color: #696969;
}

.tabbing-img {
  text-align: center;
  position: relative;
}

.tabbing-img img {
  width: 100%;
  max-width: 350px;
}

a.tab-btn {
  font-family: 'sentaniaregular';
  font-size: 32px;
  color: #ffffff;
  padding: 10px 40px;
  background: linear-gradient(90.81deg, #C95F29 0.17%, #F1A93E 99.79%);
  border-radius: 10px;
  display: inline-block;
}

.tabbing-btn {
  position: absolute;
  top: 70%;
  left: 28%;
}

.tab-right-flower {
  position: absolute;
  top: 10%;
  right: 0;
}

.tab-contrl {
  padding: 20px 80px;
  background: linear-gradient(90deg, #FCF0E6 0%, #E5E7E8 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.tabbing-btn {
  position: absolute;
  top: 90%;
  left: 7%;
}

.tab-cntrl-name h2 {
  font-family: 'sentaniaregular';
  font-size: 32px;
  color: #C85D28;
}

.tab-box-1 {
  background: #ffffff;
  height: 100px;
  width: 100px;
  margin-right: 20px;
}

.tab-box {
  display: flex;
}


/* media querry start */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  section.tabbing {
    padding: 40px 0 0 0;
  }

  .tabbing-bg {
    padding: 40px 30px;
  }

  .tabbing-heading h2 {
    margin-bottom: 20px;
    font-size: 40px;
  }

  .tabbing-heading p {
    font-size: 16px;
    max-width: 360px;
  }

  .tabbing-img img {
    width: 100%;
    max-width: 300px;
  }

  a.tab-btn {
    font-size: 28px;
    padding: 8px 30px;
  }

  .tabbing-btn {
    left: 22%;
  }

  .tab-cntrl-name h2 {
    font-size: 28px;
  }

  .tab-contrl {
    padding: 20px 50px;
  }
}

@media only screen and (max-width: 767px) {
  section.tabbing {
    padding: 30px 0 0 0;
  }

  .tabbing-bg {
    padding: 30px 20px;
  }

  .tabbing-heading h2 {
    margin-bottom: 15px;
    font-size: 30px;
  }

  .tabbing-heading p {
    font-size: 14px;
    max-width: 300px;
    line-height: 28px;
  }

  .tabbing-img img {
    width: 100%;
    max-width: 250px;
  }

  a.tab-btn {
    font-size: 26px;
    padding: 7px 20px;
  }

  .tabbing-btn {
    left: 19%;
  }

  .tab-right-flower img {
    max-width: 100px;
    width: 100%;
  }

  .tab-right-flower {
    top: 15%;
  }

  .tab-cntrl-name h2 {
    font-size: 26px;
  }

  .tab-box-1 {
    height: 60px;
    width: 60px;
    margin-right: 10px;
  }

  .tab-contrl {
    padding: 15px 30px;
  }
}

@media only screen and (max-width: 575px) {
  section.tabbing {
    padding: 20px 0 0 0;
  }

  .tabbing-heading {
    text-align: center;
    margin-bottom: 30px;
  }

  .tabbing-heading h2 {
    margin-bottom: 10px;
    font-size: 40px;
}

  .tabbing-heading p {
    font-size: 18px;
    max-width: 100%;
    line-height: 34px;
  }

  a.tab-btn {
    font-size: 24px;
    padding: 6px 15px;
  }

  .tabbing-btn {
    left: 31%;
    top: 85%;
  }

  .tab-right-flower {
    display: none;
  }

  .tab-cntrl-name h2 {
    font-size: 24px;
  }

  .tabbing-bg {
    padding: 20px 10px;
  }
}

@media only screen and (max-width: 420px) {

  a.tab-btn {
    font-size: 18px;
    padding: 6px 10px;
  }

  .tabbing-btn {
    left: 17%;
  }

  .tab-cntrl-name h2 {
    font-size: 18px;
  }

  .tab-box-1 {
    height: 40px;
    width: 40px;
    margin-right: 5px;
  }

  section.tabbing {
    padding: 10px 0 0 0;
  }

}


/*--------------------- section donation start ---------------------*/

section.donation {
  background: linear-gradient(144.74deg, #CB6937 0%, #F1AF4A 100%);
  position: relative;
  padding: 100px 40px 150px 40px;
}

.heart-img {
  position: absolute;
  left: 0;
  top: 0;
}

.heart-img img {
  max-width: 250px;
}

.hand-img {
  position: absolute;
  right: 0;
  top: 0;
}

.hand-img img {
  max-width: 300px;
}

.flower-bottom-image {
  position: absolute;
  bottom: 0;
  left: 40%;
}

section.donation .container {
  max-width: 1440px;
}

.donantion-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.donantion-heading h2 {
  font-family: 'richstenregular';
  font-size: 60px;
  color: #ffffff;
  margin-bottom: 50px;
}

.donantion-heading p {
  font-size: 24px;
  font-family: 'satoshimedium';
  color: #ffffff;
  max-width: 740px;
  text-align: center;
  margin-bottom: 70px;
  line-height: 40px;
}

.boxes {
  /* background: #ffffff; */
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.25));
  margin: 0px 100px;
}

.box-1-content {
  background: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 350px;
  position: relative;
  border: 1px solid #cfcfcf;
}

.box-1-content.hover:hover {
  background-image: url(../images/hover-img.png);
  background-repeat: no-repeat;
  color: #fff;
  background-position: center;
  background-size: cover
}

.box-1-content::after {
  position: absolute;
  content: '';
  width: 120px;
  height: 5px;
  bottom: 0;
  left: 33%;
  background: linear-gradient(89.57deg, #CB6836 0.42%, #F2AF4B 99.68%);
}

.box-1-content:hover .icon-middle-text p {
  color: #ffffff;
}

.box-1-content:hover .icon-box.white {
  display: block;
}

.box-1-content:hover .icon-box {
  display: none;
}

.box-1-content:hover .icon-middle-text::after {
  position: absolute;
  content: '';
  height: 2px;
  width: 50px;
  background: #ffffff;
  top: 150%;
  left: -60%;
}

.icon-box.white {
  display: none;
}

.icon-box img {
  max-width: 60px;
}


.icon-middle-text p {
  font-size: 22px;
  font-family: 'satoshimedium';
  color: #C85D28;
  position: relative;
  /* margin-bottom: 20px; */
}

.icon-middle-text {
  position: relative;
}

.icon-middle-text::after {
  position: absolute;
  content: '';
  height: 2px;
  width: 50px;
  background: #C85D28;
  top: 150%;
  left: -60%;
}

.icon-bottom-text h6 {
  font-size: 22px;
  font-family: 'satoshibold';
}

/* media query start */

@media only screen and (max-width: 1199px) {
  .boxes {
    margin: 0px 80px;
  }

  .box-1-content::after {
    left: 27%;
  }
}

@media only screen and (max-width: 991px) {
  .donantion-heading h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }

  section.donation {
    padding: 80px 40px 120px 40px;
  }

  .donantion-heading p {
    font-size: 22px;
    max-width: 640px;
    margin-bottom: 40px;
  }

  .boxes {
    margin: 0px 60px;
  }

  .box-1-content {
    padding: 15px;
  }

  .icon-middle-text p {
    font-size: 20px;
  }

  .icon-middle-text::after {
    width: 40px;
    left: -50%;
  }

  .icon-bottom-text h6 {
    font-size: 20px;
  }

  .box-1-content::after {
    left: 26%;
    width: 100px;
  }

  .heart-img img {
    max-width: 200px;
  }

  .hand-img img {
    max-width: 240px;
  }
}

@media only screen and (max-width: 767px) {
  .donantion-heading h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .heart-img img {
    max-width: 150px;
  }

  .hand-img img {
    max-width: 190px;
  }

  .flower-bottom-image img {
    max-width: 150px;
  }

  .flower-bottom-image {
    left: 36%;
  }

  section.donation {
    padding: 60px 20px 80px 20px;
  }

  .donantion-heading p {
    font-size: 20px;
    max-width: 590px;
    margin-bottom: 30px;
  }

  .boxes {
    margin: 0px 30px;
  }

  .box-1-content {
    padding: 10px;
    height: 300px;
  }

  .icon-box img {
    max-width: 40px;
  }

  .icon-middle-text p {
    font-size: 18px;
  }

  .icon-middle-text::after {
    width: 30px;
    left: -30%;
  }

  .icon-bottom-text h6 {
    font-size: 18px;
  }

  .box-1-content::after {
    width: 80px;
    height: 4px;
  }

}

@media only screen and (max-width: 575px) {

  .heart-img img {
    display: none;
  }

  .hand-img img {
    display: none;
  }


  section.donation {
    padding: 40px 10px 40px 10px;
  }

  .donantion-heading h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .donantion-heading p {
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 20px;
    line-height: 30px;
  }

  .boxes {
    margin: 0px 10px;
  }

  .box-1-content {
    height: 250px;
  }

  .icon-middle-text p {
    font-size: 16px;
  }

  .icon-middle-text::after {
    width: 20px;
    left: -20%;
  }

  .icon-bottom-text h6 {
    font-size: 16px;
  }

  .box-1-content::after {
    width: 60px;
    height: 2px;
    left: 45%;
  }

  .flower-bottom-image img {
    display: none;
  }

  .box-1-content.hover:hover {
    /* background-position: center;
    background-size: cover; */
  }
}

@media only screen and (max-width: 450px) {


  .box-1-content::after {
    left: 42%;
  }

}

@media only screen and (max-width: 350px) {
  .box-1-content {
    height: 200px;
    padding: 5px;
  }

  .donantion-heading h2 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .donantion-heading p {
    font-size: 14px;
  }

  .icon-box img {
    max-width: 30px;
  }

  .icon-middle-text p {
    font-size: 14px;
  }

  .icon-middle-text::after {
    width: 15px;
    left: 0%;
  }

  .icon-bottom-text h6 {
    font-size: 14px;
  }

  .box-1-content::after {
    width: 50px;
    height: 1px;
  }

  .boxes {
    margin: 0px 0px;
  }

}


/*--------------------- contact form section start ---------------------*/

section.contact-form {
  padding: 50px 0;
  background: linear-gradient(157.63deg, #FBEFE6 0%, #F5F6F6 98.9%);
  position: relative;

}

section.contact-form .container {
  max-width: 1440px;
}

.bg-contact {

  padding: 80px 50px;
  border-radius: 20px;
  /* position: relative; */
}

.contact-heading h2 {
  font-family: 'richstenregular';
  font-size: 60px;
  color: #C85D28;
  margin-bottom: 20px;
}


.contact-heading p {
  font-size: 18px;
  max-width: 310px;
  font-family: 'satoshi_variablebold';
  color: #696969;
}

input.placeholder-s {
  font-family: 'satoshimedium';
  background: #EBEBEB;
  border: none;
  padding: 0px 0px 0px 15px;
  border-radius: 10px;
  height: 50px;
  width: 320px;
  font-size: 14px;
}

input.placeholder-s.lg {
  height: 120px;
}

label.placeholder-name {
  font-size: 14px;
  font-family: 'satoshi_variablebold';
  color: #696969;
}

button.sent {
  background: linear-gradient(163.25deg, #D07038 0%, #ECA748 99.16%);
  padding: 10px 140px;
  color: #ffffff;
  border: 1px solid;
  font-weight: 600;
  border-radius: 10px;
  transition: .5s;
  font-size: 18px;
  font-family: 'satoshimedium';
}

button.sent:hover {
  background: #ffffff;
  border: 1px solid #ECA748;
  color: #ECA748;
}

.contact-bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.flower-to {
  position: absolute;
  top: 0;
  left: 23%;
}

.tample-bg img {
  max-width: 300px;
}

.tample-bg {
  position: absolute;
  bottom: 0;
  left: 23%;
}

.form-group.home-form {
  margin-bottom: 30px;
}

/* media querry star */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  .contact-heading h2 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .contact-heading p {
    font-size: 16px;
    max-width: 290px;
  }

  .flower-to {
    left: 13%;
  }

  .tample-bg {
    left: 13%;
  }

  .bg-contact {
    padding: 50px 30px;
  }

  section.contact-form {
    padding: 40px 0;
  }

  button.sent {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .tample-bg img {
    max-width: 250px;
  }

  .flower-to img {
    max-width: 250px;
  }

  .tample-bg {
    left: 5%;
  }

  .flower-to {
    left: 5%;
  }

  .contact-heading h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .bg-contact {
    padding: 30px 20px;
  }

  .contact-heading p {
    font-size: 14px;
    max-width: 240px;
  }

  button.sent {
    font-size: 14px;
  }

  section.contact-form {
    padding: 30px 0;
  }
}

@media only screen and (max-width: 575px) {
  .flower-to {
    display: none;
  }

  .tample-bg {
    display: none;
  }

  .contact-heading h2 {
    font-size: 40px;
    margin-bottom: 15px;
    text-align: center;
  }

  .contact-heading p {
    font-size: 14px;
    max-width: 240px;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'satoshimedium';
}

  input.placeholder-s {
    width: 100%;
  }

  label.placeholder-name {
    font-size: 12px;
  }

  button.sent {
    width: 100%;
    padding: 10px;
  }

  section.contact-form {
    padding: 20px 0;
  }

  input.placeholder-s.lg {
    height: 90px;
  }
}

@media only screen and (max-width: 450px) {}

/* --------------------- footer start --------------------- */

footer {
  padding: 50px 0;
}

footer .container {
  max-width: 1440px;
}

.footer-heading h3 {
  font-family: 'satoshi_variablebold';
  color: #C85D28;
  font-size: 28px;
  padding-bottom: 40px;
}

.footer-heading p {
  font-size: 16px;
  line-height: 24px;
  font-family: 'satoshiregular';
  color: #696969;
  margin-bottom: 20px;
}

.footer-heading a {
  font-size: 16px;
  line-height: 24px;
  font-family: 'satoshiregular';
  color: #696969;
}

.social-links i {
  font-size: 18px;
  background: linear-gradient(163.25deg, #D07038 0%, #ECA748 99.16%);
  transition: .3s;
  color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  margin-right: 10px;
  border: 1px solid;
}

.social-links i:hover {
  color: #C85D28;
  background: transparent;
  border: 1px solid #C85D28;
}


/* media querry start */

@media only screen and (max-width: 1199px) {
  iframe {
    width: 100%;
  }

  footer {
    padding: 40px 0;
  }

  .footer-logo img {
    max-width: 250px;
  }

  .footer-logo {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-logo img {
    max-width: 200px;
  }

  .footer-logo {
    margin-bottom: 10px;
  }

  .footer-heading h3 {
    font-size: 24px;
    padding-bottom: 30px;
  }

  .footer-heading p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .social-links i {
    font-size: 16px;
    margin-right: 5px;
  }

  footer {
    padding: 30px 0;
  }

  .footer-heading a {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .social-links {
    margin-bottom: 50px;
  }

  footer {
    padding: 20px 0;
  }

  .footer-heading h3 {
    font-size: 20px;
    padding-bottom: 20px;
  }

  .footer-heading p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .footer-heading a {
    font-size: 12px;
  }

  .social-links i {
    font-size: 14px;
  }

}

@media only screen and (max-width: 575px) {
  .social-links {
    margin-bottom: 0px;
  }

  footer {
    padding: 30px 0;
}

  .footer-logo img {
    max-width: 150px;
  }

  .social-links i {
    font-size: 12px;
    padding: 8px;
  }

  .footer-heading h3 {
    padding: 30px 0 10px 0;
  }

  .footer-heading p {
    margin-bottom: 10px;
    font-size: 12px;
}
}

/*--------------------- about us page style ---------------------*/
/*----------------------                   ---------------------*/

.vedio-popup.margin-t {
  margin-top: 80px;
}


/* section about inspiration start */

section.about-inspiration {
  padding: 50px 40px;
  position: relative;
  background: linear-gradient(229.88deg, rgba(235, 235, 235, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%), linear-gradient(130.12deg, #FCF5EE 0%, #F9FAFA 100%);
}

section.about-inspiration .container {
  max-width: 1440px;
}

.inspiration-text h2 {
  font-family: 'richstenregular';
  font-size: 60px;
  color: #C85D28;
  margin-bottom: 20px;
}

.inspiration-text h3 {
  font-family: 'sentaniaregular';
  font-size: 42px;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #CA6129 0%, #F0A73D 64.71%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.inspiration-text p {
  font-family: 'satoshimedium';
  font-size: 18px;
  font-weight: 500;
  max-width: 440px;
  color: #696969;
}

.inspiriation-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
}

.suriji-name-plate {
  margin-top: -40px;
}

a.name-plate {
  font-family: 'sentaniaregular';
  font-size: 32px;
  color: #ffffff;
  padding: 10px 40px;
  background: linear-gradient(90.81deg, #C95F29 0.17%, #F1A93E 99.79%);
  border-radius: 10px;
  display: inline-block;
}

.right-flower-bg {
  position: absolute;
  top: 10%;
  right: 0;
}

.left-flower-bg {
  position: absolute;
  bottom: 70px;
  left: 0;
}

.second-content {
  padding-top: 150px;
}

/* media querry start */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  .inspiration-text h2 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .inspiration-text h3 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .inspiration-text p {
    font-size: 16px;
    max-width: 390px;
  }

  .suriji-image img {
    max-width: 350px;
  }

  section.about-inspiration {
    padding: 40px 20px;
  }

  a.name-plate {
    font-size: 28px;
    padding: 10px 30px;
  }

  .second-content {
    padding-top: 120px;
  }
}

@media only screen and (max-width: 767px) {
  section.about-inspiration {
    padding: 30px 10px;
  }

  .inspiration-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .inspiration-text h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .inspiration-text p {
    font-size: 14px;
    max-width: 320px;
  }

  .second-content {
    padding-top: 90px;
  }
}

@media only screen and (max-width: 575px) {
  .inspiration-text {
    text-align: center;
  }

  .inspiration-text h2 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  section.about-inspiration {
    padding: 20px;
  }

  .inspiration-text h3 {
    font-size: 26px;
    margin-bottom: 5px;
  }

  .inspiration-text p {
    font-size: 18px;
    max-width: 100%;
    line-height: 34px;
  }

  .right-flower-bg {
    display: none;
  }

  .left-flower-bg {
    display: none;
  }

  .suriji-image img {
    max-width: 300px;
  }

  a.name-plate {
    font-size: 24px;
    padding: 8px 20px;
  }

  .second-content {
    padding-top: 60px;
  }
}

@media only screen and (max-width: 450px) {
  .suriji-image img {
    max-width: 200px;
  }

  a.name-plate {
    font-size: 20px;
    padding: 6px 18px;
  }

  .second-content {
    padding-top: 30px;
  }
}

/* donate section start */

section.about-donate {
  background: linear-gradient(90.81deg, #D26F2D 0.17%, #E89839 99.79%);
  padding: 50px;
  position: relative;
}

section.about-donate .container {
  max-width: 1440px;
}

.about-donate-heading h2 {
  font-family: 'richstenregular';
  font-size: 60px;
  color: #ffffff;
  margin-bottom: 40px;
  text-align: center;
}

.donation-strip {
  background: #ffffff;
  padding: 20px 50px 20px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.donation-strip h4 {
  font-size: 22px;
  color: #696969;
  font-weight: 600;
  font-family: 'satoshiregular';
}

button.donate {
  font-family: 'satoshiregular';
  padding: 10px 100px;
  background: linear-gradient(92.6deg, #F0A83D 0%, #CA6029 99.38%);
  border-radius: 5px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border: 1px solid;
}

.about-heart-hand img {
  max-width: 150px;
}

.about-heart-hand {
  position: absolute;
  top: 0;
  left: 0;
}

.about-flower-hand img {
  max-width: 170px;
}

.about-flower-hand {
  position: absolute;
  top: 0;
  right: 0;
}

/* media querry start */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  .about-donate-heading h2 {
    font-size: 40px;
    margin-bottom: 30px;
  }

  section.about-donate {
    padding: 40px 20px;
  }

  .donation-strip h4 {
    font-size: 20px;
  }

  button.donate {
    padding: 10px 80px;
    font-size: 16px;
  }

  .donation-strip {
    padding: 15px;
  }

  .about-heart-hand img {
    max-width: 100px;
  }

  .about-flower-hand img {
    max-width: 120px;
  }
}

@media only screen and (max-width: 767px) {
  /* section.about-donate {
    padding: 30px;
  } */

  .about-donate-heading h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .donation-strip {
    padding: 10px;
  }

  .donation-strip h4 {
    font-size: 18px;
  }

  button.donate {
    padding: 8px 60px;
    font-size: 14px;
  }

  .about-heart-hand img {
    max-width: 80px;
  }

  .about-flower-hand img {
    max-width: 100px;
  }
}

@media only screen and (max-width: 575px) {
  .about-heart-hand img {
    display: none;
  }

  .about-flower-hand img {
    display: none;
  }

  .about-donate-heading h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .donation-strip h4 {
    font-size: 14px;
  }

  button.donate {
    padding: 6px 40px;
    font-size: 12px;
  }

  /* section.about-donate {
    padding: 20px;
  } */
}

@media only screen and (max-width: 450px) {
  /* section.about-donate {
    padding: 10px;
  } */

  .about-donate-heading h2 {
    font-size: 22px;
    margin-bottom: 5px;
  }

  .donation-strip h4 {
    font-size: 12px;
  }

  button.donate {
    padding: 4px 20px;
    font-size: 10px;
  }
}

/*--------------------- event page style ---------------------*/
/*----------------------                   ---------------------*/


section.tirthdham-vedio.event {
  position: relative;
}

.event-vedio-text-box {
  text-align: center;
}

.event-vedio-heading {
  padding: 50px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-vedio-heading h2 {
  font-family: 'richstenregular';
  font-size: 60px;
  font-weight: 700;
  background: linear-gradient(180deg, #ECECEC 0%, #FAFAFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
  margin-bottom: 20px;
}

.event-vedio-heading h3 {
  font-family: 'sentaniaregular';
  font-size: 42px;
  color: #C85D28;
  position: absolute;
  top: 20%;
  left: 49%;
}

.event-vedio-heading p {
  font-family: 'satoshi_variablebold';
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  max-width: 485px;
  color: #696969;
}

.event-vedio-text-box {
  position: relative;
}

.event-vedio-heading.duplicate-section h3 {
  left: 46%;
}

.devider-images img {
  max-width: 300px;
}

.devider-images {
  padding: 20px 0;
}

.right-event-flwr {
  position: absolute;
  top: 45%;
  right: 0;
}

.left-event-flwr {
  position: absolute;
  bottom: 5%;
  left: 0;
}

/* media querry start */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  .event-vedio-heading {
    padding: 40px 0;
  }

  .event-vedio-heading h2 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .event-vedio-heading h3 {
    font-size: 32px;
    top: 15%;
  }

  .event-vedio-heading p {
    font-size: 16px;
    max-width: 431px;
  }

  .right-event-flwr img {
    max-width: 120px;
    width: 100%;
  }

  .devider-images {
    padding: 15px 0;
  }

  .left-event-flwr img {
    max-width: 120px;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .event-vedio-heading {
    padding: 30px 0;
  }

  .event-vedio-heading h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .event-vedio-heading h3 {
    font-size: 28px;
    top: 13%;
  }

  .event-vedio-heading p {
    font-size: 14px;
    max-width: 376px;
    line-height: 25px;
  }

  .devider-images {
    padding: 10px 0;
  }

  .event-vedio-heading.duplicate-section h3 {
    left: 45%;
    top: 16%;
  }

  .left-event-flwr img {
    max-width: 100px;
    width: 100%;
  }

  .right-event-flwr img {
    max-width: 100px;
    width: 100%;
  }

  .devider-images img {
    max-width: 200px;
  }

  .event-vedio-heading h2 {
    font-size: 24px;
    margin-bottom: 5px;
  }

  .event-vedio-heading h3 {
    font-size: 24px;
    top: 11%;
  }

  .event-vedio-heading.duplicate-section h3 {
    left: 44%;
  }

  .left-event-flwr {
    display: none;
  }

  .right-event-flwr {
    display: none;
  }

  .event-vedio-heading {
    padding: 20px 0;
  }

  .devider-images {
    padding: 5px 0;
  }

  .devider-images img {
    max-width: 150px;
  }

  .event-vedio-heading.duplicate-section h3 {
    left: 44%;
    top: 11%;
  }
}

@media only screen and (max-width: 575px) {
  .event-vedio-heading h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .event-vedio-heading p {
    font-size: 18px;
    max-width: 322px;
    line-height: 28px;
  }

  .event-vedio-heading {
    padding: 10px 0;
  }

  .devider-images img {
    max-width: 100px;
  }

  .vedio-box {
    padding: 10px;
  }

  .event-vedio-heading h3 {
    font-size: 32px;
    top: 6%;
  }

  .event-vedio-heading.duplicate-section h3 {
    left: 43%;
    top: 9%;
  }
}

@media only screen and (max-width: 420px) {}

@media only screen and (max-width: 350px) {}

/* event page slider section start */

section.event-page-slider {
  padding: 50px 0;
}

section.event-page-slider .container {
  max-width: 1440px;
}

section.event-page-slider .item img {
  max-width: 450px;
  width: 100%;
  border-radius: 20px;
}

section.event-page-slider .item-1 {
  /* padding: 20px; */
  /* background: linear-gradient(106.83deg, #FBF1E7 0%, #F6F7F8 100%); */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/gallery_108\ 1.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
}

section.event-page-slider .item-2 {
  background-image: url(../images/gallery_110\ 1.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  border-radius: 10px;
}

section.event-page-slider .item-3 {
  background-image: url(../images/gallery_113\ 1.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  border-radius: 10px;
}

section.event-page-slider .item-4 {
  background-image: url(../images/gallery_153\ 1.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  border-radius: 10px;
}

section.event-page-slider .item-5 {
  background-image: url(../images/gallery_162\ 1.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  border-radius: 10px;
}

section.event-page-slider .item-6 {
  background-image: url(../images/gallery_192\ 1.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  border-radius: 10px;
}

.bg-shadow-event-slider {
  
}

/* media querry start */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  section.event-page-slider {
    padding: 40px 0;
  }
}

@media only screen and (max-width: 767px) {
  section.event-page-slider {
    padding: 30px 0;
  }
}

@media only screen and (max-width: 575px) {
  section.event-page-slider {
    padding: 20px 0;
  }
}

@media only screen and (max-width: 420px) {}

/* pratistha event section start */

.pratistha-event-heading {
  padding: 50px 0;
  background: linear-gradient(106.83deg, #FBF1E7 0%, #F6F7F8 100%);
  border-radius: 10px;
  margin-bottom: 50px;
}

section.pratistha-event .container {
  max-width: 1440px;
}

.pratistha-event-heading h2 {
  font-family: 'sentaniaregular';
  font-size: 42px;
  color: #C85D28;
  text-align: center;
  margin-bottom: 10px;
}

.pratistha-event-heading h3 {
  font-size: 60px;
  font-family: 'richstenregular';
  color: #C85D28;
  text-align: center;
}

.bg-img-tample-eventpage {
  text-align: end;
}

/* media querry start */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  .pratistha-event-heading {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  .pratistha-event-heading h2 {
    font-size: 40px;
    margin-bottom: 5px;
  }

  .pratistha-event-heading h3 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .pratistha-event-heading {
    padding: 30px 0;
    margin-bottom: 30px;
  }

  .pratistha-event-heading h2 {
    font-size: 28px;
  }

  .pratistha-event-heading h3 {
    font-size: 28px;
  }


}

@media only screen and (max-width: 575px) {
  .pratistha-event-heading {
    padding: 20px 0;
    margin-bottom: 20px;
  }

  .pratistha-event-heading h2 {
    font-size: 24px;
  }

  .bg-img-tample-eventpage img {
    max-width: 250px;
  }

}

@media only screen and (max-width: 420px) {
  .pratistha-event-heading {
    padding: 10px 0;
    margin-bottom: 10px;
  }

  .pratistha-event-heading h2 {
    font-size: 22px;
  }

  .pratistha-event-heading h3 {
    font-size: 40px;
  }

  .bg-img-tample-eventpage {
    text-align: center;
  }

  .bg-img-tample-eventpage img {
    max-width: 150px;
  }
}

/* stay detail section start */

.subscribe-detail-heading.event-stay h5 {
  font-family: 'sentaniaregular';
  font-size: 42px;
  color: #C85D28;
  text-align: center;
}

.subscribe-heading.event-stay-section {
  padding: 50px 0;
}

.subscribe-detail-heading.event-stay h2 {
  margin: 0;
}

.placeholder-book {
  background: #EDEDED;
  padding: 10px;
  border-radius: 10px;
  /* width: 250px; */
  border: none;
  font-size: 18px;
  line-height: 24px;
  color: #606060;
  width: 100% !important;
  font-family: 'satoshimedium';
}
.counter, .mealCounter {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.counter button {
  border: none;
  font-size: 19px;
}
.counter span {
  margin: 0 5px;
  /* line-height: 22px;
  font-size: 20px; */
}
.mealCounter span {
  width: 33.33%;
  text-align: center;
  border-right: 2px solid #686868c2;
}
.mealCounter span:last-child {
  border-right: none;
}

.form-group {
  margin: 0;
  text-align: start;
}

.stay-detail-box {
  padding: 50px;
}

.view-pic-btn {
  margin: 30px 0;
  text-align: start;
}

.view-pic-btn a {
  font-family: 'satoshimedium';
  font-size: 18px;
  color: #696969;
}

.view-pic-btn span {
  border: 1px solid #696969;
  padding: 1px 10px;
  border-radius: 10px;
  margin-right: 10px;
}

/* media querry start */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  .stay-detail-box {
    padding: 40px 20px;
  }

  .subscribe-heading.event-stay-section {
    padding: 40px 0;
  }

  input.placeholder-book {
    width: 200px;
    font-size: 16px;
    line-height: 22px;
  }
  .mealCounter, .counter {
    font-size: 16px;
    line-height: 22px;
  }

  .view-pic-btn a {
    font-size: 16px;
  }

  .subscribe-detail-heading.event-stay h5 {
    font-size: 32px;
  }

  .view-pic-btn {
    margin: 20px 0;
  }
}

@media only screen and (max-width: 767px) {
  .subscribe-heading.event-stay-section {
    padding: 30px 0;
  }

  .subscribe-detail-heading.event-stay h5 {
    font-size: 28px;
  }

  .stay-detail-box {
    padding: 30px 20px;
  }

  label.placeholder-name {
    font-size: 12px;
  }

  input.placeholder-book {
    width: 300px;
    font-size: 14px;
    line-height: 20px;
  }
  .mealCounter, .counter {
    font-size: 14px;
    line-height: 20px;
  }

  .view-pic-btn a {
    font-size: 14px;
  }

  .view-pic-btn span {
    padding: 1px 8px;
  }
}

@media only screen and (max-width: 575px) {

  .subscribe-heading.event-stay-section {
    padding: 20px 0;
  }

  .subscribe-detail-heading.event-stay h5 {
    font-size: 24px;
  }

  input.placeholder-book {
    width: 100%;
    /* font-size: 12px; */
  }

  .view-pic-btn a {
    font-size: 12px;
  }

  .view-pic-btn span {
    padding: 1px 7px;
  }

  .view-pic-btn {
    margin: 10px 0;
  }

  .stay-detail-box {
    padding: 20px 20px;
  }
}

@media only screen and (max-width: 420px) {}



/* slick slider start */

section.slider-slik {
  padding: 50px 0 0;
  position: relative;
}

section.slider-slik .container {
  max-width: 1440px;
}

.item.sml-btn-img {
  width: 100px;
}

.owl-carousel.owl-theme.sldr-cntrl-btn.owl-loaded.owl-drag {
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
  background: linear-gradient(90deg, #FCF0E6 0%, #E7E9EA 100%);
  padding: 20px 0;
}

.name-slider-img h2 {
  font-family: 'sentaniaregular';
  font-size: 32px;
  color: #C85D28;
  display: none;
}

div#sync2 .owl-item.active {
  width: 120px !important;
}

div#sync2 .owl-stage {
  width: 100% !important;
  position: relative;
}

div#sync2 .owl-nav {
  display: none;
}



.carousel-cell-bottom {
  position: relative;
}



.carousel-cell-bottom.is-selected:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  border-top: solid 5px #000;
  animation: border_anim 3s linear forwards;
}

@keyframes border_anim {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

#container2 {
  max-width: 100vw;
}

#first2 {
  writing-mode: vertical-rl;
  transition-timing-function: cubic-bezier(.165, .84, .44, 1);
  transition-duration: 1s;
  transition-property: all;
  color: #000;
  font-size: 2.8vw;
  white-space: nowrap;
  cursor: vertical-text;
  position: absolute;
  display: block;
  height: auto;
  direction: rtl;
  z-index: 11;
  margin: 0;
  padding: 0;
  right: 40px;
  top: 120px;
  font-weight: 800;
  font-family: 'Domaine Extrabold';
}

section.teb-slider {
  position: relative;
}

section.teb-slider .container {
  max-width: 1440px;
}

.d-flex-pbr {
  align-items: center;
  justify-content: space-between;
  margin: 0px 50px;
}

.owl-carousel.owl-theme.sldr-cntrl-btn.owl-loaded.owl-drag {
  justify-content: center;
}

.tabbing-image-side {
  position: relative;
}

.owl-nav {
  display: none;
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  .d-flex-pbr {
    margin: 0px 40px;
  }

  

  section.slider-slik {
    padding: 40px 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .d-flex-pbr {
    margin: 0px 30px;
  }

  

  section.slider-slik {
    padding: 30px 0 0;
  }
}

@media only screen and (max-width: 575px) {
  .d-flex-pbr {
    flex-direction: column;
    margin: 40px 20px;
  }

  a.tab-btn.slidr-btn {
    font-size: 20px;
  }

  .item.sml-btn-img {
    width: 60px;
  }

  div#sync2 .owl-item.active {
    width: 70px !important;
  }

  

  

  section.slider-slik {
    padding: 20px 0 0;
  }

  
}

@media only screen and (max-width: 420px) {
  .d-flex-pbr {
    margin: 40px 10px;
  }

  section.slider-slik {
    padding: 10px 0 0;
  }

  
}

/* ---------------------                     --------------------- */
/* --------------------- event pages styling --------------------- */
/* ---------------------                     --------------------- */

section.fancybox-section {
  padding: 50px 0;
}

section.fancybox-section .container {
  max-width: 1440px;
}

section.fancybox-section h2 {
  background: linear-gradient(180deg, #CA6129 0%, #F0A73D 64.71%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 60px;
  font-family: 'richstenregular';
  text-align: center;
  margin-bottom: 50px;
}

.gallery {
  margin-bottom: 50px;
  position: relative;
  transition: .5s;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.gallery:hover i.fas.fa-eye {
  display: block;
}

.gallery a {
  position: relative;
}

i.fas.fa-eye {
  position: absolute;
  top: 50%;
  left: 45%;
  color: white;
  background: #EDA33B;
  padding: 13px 12px;
  border-radius: 20px;
  display: none;
}

.gallery img {
  max-width: 450px;
  max-height: 300px;
  width: 100%;
  border: 3px solid transparent;
}

.gallery img:hover {
  border: 3px solid #EDA33B;
}

/* event page media query start */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  section.fancybox-section {
    padding: 40px 0;
  }

  section.fancybox-section h2 {
    font-size: 50px;
    margin-bottom: 40px;
  }

  .gallery {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .gallery {
    margin-bottom: 30px;
  }

  section.fancybox-section {
    padding: 30px 0;
  }

  section.fancybox-section h2 {
    font-size: 40px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .gallery {
    margin-bottom: 20px;
    text-align: center;
  }

  section.fancybox-section {
    padding: 20px 0;
  }


}

/* banner slider css */

@media screen and (min-width: 992px) {
  .features-scrolling-section.seamless-dynamic-header.feature-page .scrolling-navigation-header {
    background-color: transparent;
    margin-top: -65px;
  }
}

@media screen and (max-width: 1440px) {
  .feature_section .banner_content_area {
    padding: 20px 15px;
  }

  .cpa_fearure_container {
    padding-top: 20px;
  }

  .cpa_feature_item_list_container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1366px) {
  .feature_section .cpa_abt_title {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .feature_section .cpa_abt_title h2.cpa_page_title.feature-title {
    padding-top: 30px !important;
    padding-bottom: 0 !important;
  }

  .cpa_feature_item {
    padding: 20px 10px;
  }

  .cpa_feature_item .right_content {
    font-size: 15px;
    padding-right: 0;
  }

  .cpa_feature_item .left_icon {
    width: 45px;
  }

  .feature_popups.modal .modal-body {
    padding: 15px 15px;
  }
}

@media screen and (max-width: 1024px) {
  ::-webkit-scrollbar {
    width: 10px;
    height: 0;
  }

  .cpa_feature .cpa_page_title {
    padding-left: 0;
    text-align: center;
  }

  .cpa_left_feature_menu {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .cpa_left_feature_icons .outer_circle {
    width: 60px;
    height: 60px;
  }

  .cpa_left_feature_icons:hover .outer_circle,
  .cpa_left_feature_icons.active .outer_circle {
    padding: 2px;
    width: 60px;
    height: 60px;
  }

  .cpa_left_feature_icons:hover .outer_circle .inner_circle,
  .cpa_left_feature_icons.active .outer_circle .inner_circle {
    transform: scale(0.7);
  }

  .cpa_fearure_container {
    padding-top: 0;
  }

  .cpa_feature_item_list_container {
    width: 100%;
    padding: 0;
  }

  .cpa_right_feature_item_container {
    width: 100%;
  }

  .right_icon_img {
    width: 120px;
    margin: 15px auto 0;
  }

  .cpa_art_blue_banner h6 {
    font-size: 22px;
    font-weight: 500;
  }

  .cpa_art_blue_banner p {
    font-size: 16px;
  }
}

@media screen and (max-width: 1023px) {
  .top-main-slider button.slick-next {
    right: 0;
  }

  .top-main-slider button.slick-prev {
    left: 0;
  }
}

@media screen and (max-width: 991px) {
  .feature-section-description .feature-section-image {
    margin: 0;
    padding: 0 15px 80px;
  }

  .feature-section-detail2 {
    padding-bottom: 80px !important;
  }

  .client-email-form-section img.laptop-image {
    max-width: 260px;
  }

  .mobile-image-parent img.mobile-image {
    max-width: 120px;
  }

  .slide-wrapper {
    flex-direction: column;
    padding: 28px;
  }

  .box_vision_mission {
    padding-top: 40px;
  }

  .container {
    width: 100%;
    max-width: 100% !important;
    padding: 0 15px;
  }

  .cpa_feature_item_list_container .row .box_padding:first-child {
    width: 30% !important;
  }

  .cpa_feature_item_list_container .row .box_padding:nth-child(2) {
    width: 25% !important;
  }

  .cpa_feature_item_list_container .row .box_padding:nth-child(3) {
    width: 36% !important;
  }

  .cpa_feature_item_list_container .row .box_padding:nth-child(4) {
    width: 29% !important;
  }

  .cpa_feature_item_list_container .row .box_padding:nth-child(5) {
    width: 26% !important;
  }

  .cpa_feature_item_list_container .row .box_padding:nth-child(6) {
    width: 37% !important;
  }

  .cpa_feature_item_list_container .row .box_padding:nth-child(7) {
    width: 28% !important;
  }

  .cpa_feature_item_list_container .row .box_padding:nth-child(8) {
    width: 33% !important;
  }

  .cpa_feature_item_list_container .row .box_padding:nth-child(9) {
    width: 30% !important;
  }

  .cpa_feature_item_list_container .row .box_padding:nth-child(10) {
    width: 32% !important;
  }

  .cpa_feature_item_list_container .row .box_padding:nth-child(11) {
    width: 33% !important;
  }

  .cpa_feature_item_list_container .row .box_padding:nth-child(12) {
    width: 26% !important;
  }

  .top-main-slider button.slick-arrow {
    width: 80px;
    height: 50px;
  }

  .hand-image-section img {
    max-width: 240px;
  }

  .cpa_art_blue_banner p br {
    display: none;
  }

  .client-email-form-section {
    flex-wrap: wrap;
  }

  .mobile-image-parent {
    width: 100%;
    height: 40px;
  }

  .client-email-form-title {
    width: 100%;
  }

  .laptop-image-parent {
    width: 100%;
    height: 60px;
  }

  .home-page-2 .scrolling-navigation-header>div {
    flex-direction: revert;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 16px;
  }

  .home-page-2 h3.scrolling-content-title {
    padding: 12px 0;
    font-size: 28px;
  }

  .our-blogs-section button.slick-arrow {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .scrolling-navigation-header1 ul.header_menu_item {
    width: 980px;
  }

  .scrolling-navigation-header2 ul.header_menu_item {
    width: 780px;
  }

  .scrolling-navigation-header3 ul.header_menu_item {
    width: 1040px;
  }

  .scrolling-navigation-header4 ul.header_menu_item {
    width: 940px;
  }

  .scrolling-navigation-header5 ul.header_menu_item {
    width: 680px;
  }

  .home-page-2 #feature-navigation2 ul.header_menu_item {
    width: 980px;
  }

  .home-page-2 #feature-navigation3 ul.header_menu_item {
    width: 780px;
  }

  .home-page-2 #feature-navigation4 ul.header_menu_item {
    width: 1040px;
  }

  .home-page-2 #feature-navigation5 ul.header_menu_item {
    width: 940px;
  }

  .home-page-2 #feature-navigation6 ul.header_menu_item {
    width: 680px;
  }

  .scrolling-navigation-header .navbar-collapse {
    overflow-x: auto;
    height: 64px;
    padding-top: 12px;
    width: calc(100vw - 60px);
    margin-left: -30px;
    padding-left: 30px;
  }

  h6.our-values-title.mission_heading {
    margin-bottom: -2px;
  }

  @keyframes right-to-left {
    0% {
      right: 0;
    }

    50% {
      right: 35px;
    }

    100% {
      right: 0;
    }
  }

  @keyframes left-to-right {
    0% {
      left: 0;
    }

    50% {
      left: 35px;
    }

    100% {
      left: 0;
    }
  }

  .bg_circle_20 {
    bottom: 8%;
    right: -10%;
  }

  .bg_circle_21 {
    right: -190px;
  }

  .bg_circle_5 {
    right: 0;
  }

  .client-email-form-title h3 {
    font-size: 21px;
  }

  .bg_circle_13 {
    width: 140px;
  }

  .custom-form-control-for-email::placeholder {
    font-size: 13px;
  }

  .custom-form-control-for-email {
    font-size: 13px;
  }

  .bg_circle_18 {
    display: none;
  }

  .left-right-animation-top-text,
  .left-right-animation-bottom-text {
    width: 90%;
    height: 60px;
  }

  .left-right-animation-top-text img,
  .left-right-animation-bottom-text img {
    width: 24px;
  }

  .left-right-animation-top-text>span,
  .left-right-animation-bottom-text>span {
    width: 230px;
  }

  div#feature-navigation2 ul.header_menu_item,
  div#feature-navigation1 ul.header_menu_item {
    position: unset;
    padding: 0;
  }

  .feature-title {
    margin-top: -50px;
  }

  img.content-start-quote {
    position: absolute;
    top: 30px;
    left: 61px;
    width: 50px;
    filter: brightness(4) opacity(0.3);
  }

  .feature-hover-detail {
    width: 100%;
    padding: 10px 30px 55px;
  }

  img.content-start-quote {
    top: -10px;
    left: 30px;
  }

  .footer-circle-five {
    right: -60px;
    bottom: 352px;
  }

  .create-client-sec {
    margin-top: 50px;
  }

  .d-flex.container>.col-12.col-lg-6.feature-section-image {
    padding-top: 0 !important;
    padding-bottom: 60px !important;
  }

  .feature-section-detail2 {
    padding-bottom: 30px !important;
  }

  .box_vision_mission p {
    font-size: 18px;
  }

  .box_vision_mission .mission_heading {
    font-size: 40px;
    line-height: 20px;
  }

  h3.scrolling-content-title {
    font-size: 24px;
    padding: 32px 0 28px 16px;
  }

  .scrolling-navigation-header>div {
    flex-direction: column;
  }

  h3.scrolling-content-title,
  .scrolling-navigation-header nav.banner_section.navbar {
    width: 100%;
    padding-left: 16px !important;
  }

  .scrolling-navigation-header:before {
    width: 100%;
    height: 130px;
    z-index: 1;
  }

  @keyframes bg_scrolling_width {
    from {
      width: 0;
    }

    to {
      width: 100%;
    }
  }

  .transform-text-title h6 span {
    font-size: 22px;
  }

  .left_content_banner h6 span.blue_text,
  .transform-text-title h6 span.blue_text {
    font-size: 28px;
  }

  .left_content_banner h6 {
    line-height: 26px;
  }

  .banner_section {
    position: relative;
    z-index: 99;
  }

  .bg_circle_1 {
    width: 210px;
    top: 0;
    left: 280px;
  }

  .bg_circle_2 {
    left: 55%;
    top: 35%;
  }

  .bg_circle_3 {
    width: 120px;
    display: none;
  }

  .bg_circle_4 {
    width: 120px;
    left: 0;
    bottom: 5%;
  }

  .bg_circle_6 {
    bottom: 10%;
    right: -80px;
  }

  .scroll_bottom_btn {
    width: 35px;
    height: 35px;
    line-height: 35px;
    right: 10px;
    bottom: 10px;
  }

  .left_contact_name {
    text-align: right;
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .cpa_page_title {
    font-size: 35px;
  }

  .contact_form {
    padding: 50px 0 0 0;
  }

  .cpa_feature_item_list_container .row .box_padding:first-child,
  .cpa_feature_item_list_container .row .box_padding:nth-child(2),
  .cpa_feature_item_list_container .row .box_padding:nth-child(3),
  .cpa_feature_item_list_container .row .box_padding:nth-child(4),
  .cpa_feature_item_list_container .row .box_padding:nth-child(5),
  .cpa_feature_item_list_container .row .box_padding:nth-child(6),
  .cpa_feature_item_list_container .row .box_padding:nth-child(7),
  .cpa_feature_item_list_container .row .box_padding:nth-child(8),
  .cpa_feature_item_list_container .row .box_padding:nth-child(9),
  .cpa_feature_item_list_container .row .box_padding:nth-child(10),
  .cpa_feature_item_list_container .row .box_padding:nth-child(11),
  .cpa_feature_item_list_container .row .box_padding:nth-child(12) {
    width: 48% !important;
  }

  .feature_name p {
    font-size: 16px;
  }

  .how-it-all-started-description:after,
  .how-it-all-started-description:before {
    content: unset;
  }

  .et-highlighted.cap_state_art.how-it-all-started-section .content_box {
    max-width: 80% !important;
  }

  .cpa_art_blue_banner .mission_heading {

    font-size: 36px;

    padding: 14px 14px 30px;

  }

  .how-it-all-started-description {
    border-radius: 20px;
    padding: 14px;
  }

  .cpa_art_blue_banner p {
    font-size: 14px;
    line-height: 20px;
    text-align: left;
  }

  .hand-image-description p {
    line-height: 27px;
  }

  .top-slider-slide .slider-slide-image-title {
    font-size: 18px;
  }

  .top-main-slider button.slick-arrow {
    top: 0;
    bottom: 0;
    margin: auto;
    width: 32px;
    overflow: hidden;
    height: 75px;
    /* box-shadow: 0 0 3px -1px #000; */
  }

  .top-main-slider button.slick-next.slick-arrow::before,
  .top-main-slider button.slick-prev.slick-arrow::before {
    color: #fff;
    font-size: 28px;
  }

  .slide-wrapper>img {
    margin-bottom: 16px;
    margin-top: 16px;
    width: 40%;
  }

  .client-says-description {
    width: 100%;
  }

  .hand-image-section img {
    width: 38%;
    height: auto;
    top: -50px;
    right: 0;
    bottom: unset;
  }

  .hand-image-section {
    padding: 32px 20px;
    flex-wrap: wrap;
  }

  .laptop-image-parent {
    height: 70px;
  }

  .mobile-image-parent {
    height: 0;
  }

  .client-email-form-title {
    width: 100%;
    padding: 60px 2% 60px;
    z-index: 1;
  }
}

@media screen and (max-width: 575px) {
  .scrolling-navigation-header1 ul.header_menu_item {
    width: 760px;
  }

  .scrolling-navigation-header2 ul.header_menu_item {
    width: 600px;
  }

  .scrolling-navigation-header3 ul.header_menu_item {
    width: 800px;
  }

  .scrolling-navigation-header4 ul.header_menu_item {
    width: 720px;
  }

  .scrolling-navigation-header5 ul.header_menu_item {
    width: 520px;
  }

  .home-page-2 #feature-navigation2 ul.header_menu_item {
    width: 760px;
  }

  .home-page-2 #feature-navigation3 ul.header_menu_item {
    width: 590px;
  }

  .home-page-2 #feature-navigation4 ul.header_menu_item {
    width: 800px;
  }

  .home-page-2 #feature-navigation5 ul.header_menu_item {
    width: 720px;
  }

  .home-page-2 #feature-navigation6 ul.header_menu_item {
    width: 520px;
  }

  .feature-section-detail1 {
    padding-bottom: 30px;
  }

  .bg_circle_21 {
    display: none;
  }

  .bg_circle_2 {
    left: 0;
  }

  .feature_section .cpa_abt_title {
    padding-bottom: 30px;
  }

  .about-page-css {
    padding: 0;
  }

  .about-page-css .cpa_art_blue_banner {
    padding-top: 60px;
  }

  .about-page-css .content_box p {
    line-height: 25px;
  }

  .about-character {
    padding-top: 66px;
  }

  .home-page-2 .right-arrow {
    font-size: 21px;
  }

  .home-page-2 .white-box {
    height: 110px;
  }

  .home-page-2 .scrolling-navigation-header nav.banner_section.navbar {
    padding: 20px 0 0 !important;
  }

  .cpa_art_blue_banner h6 {
    padding: 16px 16px 0 12px;
    line-height: 34px;
    font-weight: bold;
  }

  .left_contact_name h2.cpa_page_title {
    padding: 18px 0;
  }

  .client-email-form-title h3 {
    text-align: left;
    padding: 0 14px;
  }

  .feature-section-description .feature-section-detail .scrolling-items {
    padding-left: 16px;
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .feature-section-detail p {
    font-size: 14px;
  }

  .client-says-description {
    font-size: 12px;
    text-align: left;
    padding-top: 8px;
  }

  .slide-wrapper>img {
    margin-right: auto;
  }

  span.double-quotes-image {
    top: 4px;
  }

  .home-page-2 .header_menu_item li a {
    padding-bottom: 8px;
    padding-top: 0;
    margin-top: -10px;
  }

  .scrolling-navigation-header .header_menu_item li a.active:after {
    bottom: -10px;
  }

  .home-page-2 .scrolling-navigation-header .header_menu_item li a.active:after,
  .home-page-2 .scrolling-navigation-header .header_menu_item li a:after,
  .home-page-2 .scrolling-navigation-header .header_menu_item li a:hover:after {
    bottom: 4px;
  }

  h6.about-character-title {
    font-size: 34px;
    line-height: 28px;
  }

  .slick-active .top-slider-slide {
    padding: 0;
    margin: 0 26px 26px 0;
  }

  .top_bottom_animation {
    animation: top_bottom_ani 0.5s linear;
  }

  .navbar-collapse .top_bottom_animation {
    animation: top_bottom_out_ani 0.5s linear;
  }

  @keyframes top_bottom_ani {
    0% {
      top: -100%;
    }

    100% {
      top: 0;
    }
  }

  @keyframes top_bottom_out_ani {
    0% {
      top: 0;
    }

    100% {
      top: -100%;
    }
  }

  .navbar-light .navbar-toggler {
    z-index: 999;
  }

  .header_menu_item li {
    padding: 10px 10px 2px !important;
  }

  .about_team .team_img img {
    height: 220px;
    width: 100%;
  }

  .about_team {
    padding: 30px 4px;
    margin-bottom: 24px;
  }

  .about_team .about-character-description p {
    font-size: 14px;
    line-height: 26px;
    padding-top: 26px;
  }

  .open-main-navigation {
    z-index: 9;
    background-color: #fff;
    font-size: 20px;
    display: block;
  }

  .main-navigation-parent {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .main-navigation.header_menu_item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 16px;
    background: #fff;
    height: 100%;
  }

  .hand-image-section img {
    max-width: 190px;
    width: 53%;
    height: auto;
    bottom: 0;
    right: 0;
    top: unset;
  }

  .hand-image-section .hand-image-description {
    width: 100%;
  }

  .hand-image-section {
    padding: 32px 20px 170px;
    flex-wrap: wrap;
  }

  .home-page-2 .scrolling-navigation-header>div {
    flex-direction: column;
  }

  .top-main-slider button.slick-arrow {
    top: 50px;
    bottom: unset;
    width: 14%;
    /* background-color: rgba(255, 225, 255, 0.25); */
    height: 100px;
  }

  .top-slider-slide .slider-slide-image-title {
    border-radius: 0;
    width: 100%;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .slick-active .top-slider-slide img {
    border-radius: 0;
  }
}

@media screen and (max-width: 480px) {

  .cpa_feature_item_list_container .row .box_padding:first-child,
  .cpa_feature_item_list_container .row .box_padding:nth-child(2),
  .cpa_feature_item_list_container .row .box_padding:nth-child(3),
  .cpa_feature_item_list_container .row .box_padding:nth-child(4),
  .cpa_feature_item_list_container .row .box_padding:nth-child(5),
  .cpa_feature_item_list_container .row .box_padding:nth-child(6),
  .cpa_feature_item_list_container .row .box_padding:nth-child(7),
  .cpa_feature_item_list_container .row .box_padding:nth-child(8),
  .cpa_feature_item_list_container .row .box_padding:nth-child(9),
  .cpa_feature_item_list_container .row .box_padding:nth-child(10),
  .cpa_feature_item_list_container .row .box_padding:nth-child(11),
  .cpa_feature_item_list_container .row .box_padding:nth-child(12) {
    width: 100% !important;
  }

  .cpa_left_feature_icons .outer_circle {
    width: 50px;
    height: 50px;
  }

  .cpa_left_feature_icons:hover .outer_circle,
  .cpa_left_feature_icons.active .outer_circle {
    width: 50px;
    height: 50px;
  }

  .cpa_left_feature_icons p {
    font-size: 12px;
  }

  .box_padding {
    padding-bottom: 0;
  }

  .client-email-form-section img.laptop-image {
    top: -70px;
    left: 0;
  }

  .mobile-image-parent img.mobile-image {
    width: 30%;
    z-index: -1;
    right: 0;
  }

  .slider-image-bg {
    height: 280px;
  }

  .white-box {
    left: 10px;
    right: 10px;
  }

  .transform-text-title {
    padding-top: 0;
  }
}

/* history page css */

section.tirthdham-vedio.history-page {
  padding-bottom: 20px;
}


/**** New Style here ****/
.input-contant {
  margin-bottom: 20px;
}
.input-contant label {
  display: block;
  margin-bottom: 8px;
  display: block;
  margin-bottom: 8px;
  font-family: 'satoshibold';
  font-size: 14px;
  color: #636276;
  line-height: 18px;
}
.input-contant input[type="text"], 
.input-contant input[type="file"], 
.input-contant input[type="date"],
.input-contant input[type="number"],
.input-contant select {
  width: 100%;
  border: none;
  background: #e9e9e9;
  padding: 6px 12px;
  height: 40px;
  border-radius: 6px;
  font-family: 'satoshibold';
  font-size: 14px;
  color: #000;
  line-height: 18px;
  outline: 0;
}
.input-contant input[type="file"] {
  padding: 8px 12px;
}
.input-contant input[type="text"]::placeholder, 
.input-contant textarea::placeholder, 
.input-contant input[type="file"]::placeholder, 
.input-contant input[type="date"]::placeholder, 
.input-contant input[type="number"]::placeholder {
  color: #afafaf;
}
.input-contant textarea {
  width: 100%;
  border: none;
  background: #e9e9e9;
  padding: 12px;
  max-height: 120px;
  min-height: 120px;
  border-radius: 6px;
  font-family: 'satoshibold';
  font-size: 14px;
  color: #000;
  line-height: 18px;
  outline: 0;
}

/* Donation Modal */
.donationsModal .modal-dialog {
  max-width: 600px;
}
.donationsModal .modal-content {
  background: linear-gradient(144.74deg, #CB6937 0%, #F1AF4A 100%);
  border-radius: 0;
}
.donationsModal .modal-header {
  border-bottom: none;
  padding: 30px 30px 20px;
}
.donationsModal .modal-body {
  padding: 0 30px;
}
.donationsModal .closeBtn {
  color: #fff;
  opacity: 1;
  font-size: 28px;
}
.donationsModal .modalHead {
  color: #fff;
  /* margin: 16px 0 30px; */
  font-family: 'satoshi_variablebold';
  font-size: 20px;
}
.donationsModal .donationDetail {
  background-color: #ffffff1a;
  border-radius: 10px;
  padding: 20px 20px 24px;
  position: relative;
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 30px;
  font-family: 'satoshiregular';
}
.donationsModal .donationDetail i {
  position: absolute;
  top: -35px;
  left: 23px;
  color: #ffffff1a;
  font-size: 60px;
}
.donationsModal .modal-footer {
  padding: 20px 20px 35px;
  border: none;
}

.whiteBtn, .whiteBtn:hover, .whiteBtn:focus, .whiteBtn:active {
  margin: 0;
  background: #fff;
  border: none;
  border-radius: 0;
  color: #ca6029;
  width: 100%;
  font-size: 28px;
  height: 55px;
  outline: 0;
  box-shadow: none !important;
  font-family: 'richstenregular';
}
.donationsModal .input-contant label {
  color: #fff;
  font-family: 'satoshimedium';
  font-size: 15px;
}
.donationsModal .input-contant input {
  background: #ffffff1a;
  color: #fff;
  font-size: 15px;
  font-family: 'satoshimedium';
}
.donationsModal .input-contant input::placeholder {
  color: #ffffff66;
}
.bannerSlider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.slider-banner {
  padding: 0px 0 15px;
}
.banner-slider-card {
  background: linear-gradient(180deg, rgba(248, 234, 228, 0.2) 0%, rgba(255, 255, 255, 0.2) 68.67%), linear-gradient(180deg, #F8EAE4 0%, #e4e4e1 67.26%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  /*height: 330px;*/
  width: 330px;
  transition: 0.4s !important;
  display: flex;
  align-items: flex-end;
  width: calc(25% - 30px);
  /* max-width: 300px; */
  margin: 15px;
  cursor: pointer;
}

@media only screen and (max-width: 1024px) {
  .banner-slider-card {
    width: calc(50% - 30px);
  }
}
@media only screen and (max-width: 575px) {
  .banner-bg .main-content {
    padding: 180px 0 80px !important;
  }
}
@media only screen and (max-width: 460px) {
  .slider-banner {
    padding: 0px 0 0;
  }
  .banner-slider-card {
    width: 100%;
    /*height: 100%;*/
    margin: 0 0 35px;
    max-width: 100%;
  }
  .bannerSlider {
    margin: 0;
  }
}
.banner-slider-card:hover {
  box-shadow: 0px 1px 14px #dc823359;
}
.bannerSlider .owl-item {
  padding: 10px;
}
.banner-slider-bg {
  background: linear-gradient(90.81deg, #D26F2D 0.17%, #E89839 99.79%);
}
.banner-slider-bg::after {
  background: url(../images/banner3.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: -147px;
    content: '';
    width: 100%;
}
.banner-slider-bg1 {
  background: linear-gradient(90.81deg, #E89839 0.17%, #D26F2D 99.79%);
}
.banner-slider-bg1::after {
  background: url(../images/banner4.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0px;
  right: 0px;
  content: '';
  width: 200px;
  height: 220px;
}
.banner-slider-bg .banner-slider-text h4, .banner-slider-bg1 .banner-slider-text h4 {
  color: #fff;
}
.banner-slider-image {
  width: 100%;
  height: 100%;
  transition: 0.4s;
  height: 75%;
}
.banner-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-slider-text {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 30px;
}
.banner-slider-text h4 {
  font-size: 24px;
  font-family: 'satoshimedium';
  color: #ca6029;
  transition: 0.4s;
}
.download-btn {
  background: #0000000d !important;
  border: none !important;
  color: #000 !important;
  padding: 10px 16px !important;
  display: flex !IMPORTANT;
  align-items: center;
  MARGIN-LEFT: 10PX;
  height: 50px;
}
.download-btn i{ 
  font-size: 22px;
}

:root {
  scroll-behavior: smooth;
}

.banner-leftImage {
  position: absolute;
  left: -144px;
  top: 150px;
  transform: rotate(145deg);
}
.banner-rightImage {
  position: absolute;
  right: -142px;
  top: -50px;
  transform: rotate(-85deg);
}
.banner-bottomImage {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  width: 43%;
}
.banner-bg {
  margin-bottom: 50px;
  overflow: hidden;
  position: relative;
}
.banner-bg .main-content {
  padding: 250px 0 100px;
}
.slider-down {
  position: absolute;
  top: 0;
  right: 40px;
  width: 150px !important;
  margin: 0 auto;
}
.slider-down {
  position: absolute;
  top: 0;
  right: 40px;
  width: 150px !important;
  margin: 0 auto;
}
.slider-left {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 180px;
  width: unset !important;
}
.slider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 170px !important;
}

.bookDetail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 40px 40px;
}
.bookDetail p {
  text-align: left;
  font-family: 'satoshimedium';
  font-size: 15px;
  font-weight: 500;
  color: #696969;
}
.bookDetail span {
  height: 2px;
  width: 150px;
  background: linear-gradient(163.25deg, #fbfbfb 0%, #D07038 140.16%);
  margin: 0 20px;
}
.bookDetail span.foodBook {
  width: 340px;
  margin: 0 40px;
}
.bookDetail button {
  background: #c85d28;
  color: #ffffff;
  border: 1px solid;
  padding: 10px;
  font-weight: 600;
  border-radius: 10px;
  transition: .5s;
  font-size: 20px;
  line-height: 22px;
  height: 50px;
  width: 300px;
  max-width: 100%;
  font-family: 'satoshimedium';
}

.list-amenities h4 {
  font-family: 'satoshibold';
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-align: left;
  margin: 20px 0;
}

.list-amenities p {
  font-family: 'satoshiregular';
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #696969;
  text-align: left;
}
.mainImg {
  margin: 40px;
}
.mainImg img {
  width: 100%;
  height: 100%;
}
.detail-page-slider {
  margin: 0 30px 40px;
}
.detail-slider {
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}
.detail-slider img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 991px) {
  .bookDetail {
    flex-direction: column;
    margin: 0 20px 40px;
  }
  .bookDetail p {
    margin-bottom: 16px;
    text-align: center;
  }
  .bookDetail span {
    margin: 0 0 16px !important;
    width: 100% !important;
  }
}
@media only screen and (max-width: 575px) {
  .mainImg {
    margin: 30px 20px;
  }
  .detail-page-slider {
    margin: 0 10px 30px;
  }
}

.roomModal .modal-content {
  background: #fbfbfb;
}

.roomModal .modal-body {
  display: flex;
  align-items: flex-start;
  padding: 40px;
}
.roomModal .modal-body .room-container {
  flex: 1;
}
.roomModal .modal-body .room-container .roomCard {
  background-color: #f5f5f5;
  padding: 30px 30px 15px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.roomModal .modal-body .room-container .roomHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.modalHead {
  margin: 0;
  color: #000;
  font-family: 'satoshi_variablebold';
  font-size: 20px;
  line-height: 24px;
}
.roomModal .modal-body .room-container .roomStatus {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-left: 16px;
  width: 120px;
}
.roomModal .modal-body .room-container .roomStatus span {
  height: 25px;
  display: block;
  width: 30px;
  background-color: #e6e6e6;
  margin-right: 6px;
}
.roomModal .modal-body .room-container .roomStatus span.selected {
  background-color: #5ea940;
}
.roomModal .modal-body .room-container .roomStatus span.booked {
  background-color: #facbcb;
}
.roomModal .modal-body .room-container .roomStatus label {
  color: #000;
  font-family: 'satoshibold';
  font-size: 15px;
  line-height: 18px;
  margin: 0;
  display: block;
}
.roomModal .room-container .roomInner {
  margin-bottom: 20px;
}
.roomModal .room-container .roomInner h4 {
  color: #000;
  font-family: 'satoshibold';
  font-size: 16px;
  line-height: 18px;
  display: block;
  margin-bottom: 4px;
}
.roomBookingRow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -7px;
}
.roomCheckBox {
  margin: 7px;
  min-width: 100px;
  height: 60px;
  position: relative;
  cursor: pointer;
}
.roomCheckBox label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.roomCheckBox input {
  opacity: 0;
}
.roomCheckBox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e6e6e6;
  color: #8a8989;
  fill: #8a8989;
  pointer-events: none;
  display: flex;
  align-items: center;
  padding: 10px;
}
.roomCheckBox .checkmark span {
  font-family: 'satoshibold';
  font-size: 10px;
  line-height: 12px;
  display: block;
}
.roomCheckBox .checkmark label {
  position: unset;
  font-family: 'satoshibold';
  font-size: 21px;
  line-height: 25px;
  display: block;
  margin: 0;
}
.roomCheckBox .checkmark svg {
  height: 30px;
  margin-right: 5px;
}
.roomCheckBox input:checked ~ .checkmark {
	background: #5ea940;
  color: #fff;
  fill: #fff;
}
.roomCheckBox input.booked ~ .checkmark {
  background: #facbcb;
  color: #a06060;
  fill: #a06060;
}
.roomModal .modal-body .booking-detail {
  background: linear-gradient(120deg, #FCF0E6 0%, #E7E9EA 100%);
  padding: 30px;
  border-radius: 20px;
  width: 300px;
  margin-left: 30px;
}
.roomModal .modal-body .booking-detail h2 {
  margin: 0 0 20px;
  color: #000;
  font-family: 'satoshibold';
  font-size: 20px;
  line-height: 24px;
}
.roomModal .modal-body .booking-detail .valueSection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.roomModal .modal-body .booking-detail .valueSection span {
  color: #878584;
  font-family: 'satoshibold';
  font-size: 14px;
  line-height: 18px;
}
.roomModal .modal-body .booking-detail .valueSection label {
  color: #505050;
  font-family: 'satoshibold';
  font-size: 14px;
  line-height: 18px;
  margin: 0;
}
.roomModal .modal-body .booking-detail p {
  color: #878584;
  font-family: 'satoshibold';
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d0cfcf;
}

.roomModal .modal-footer, .bookingModal .modal-footer {
  padding: 20px 40px;
  justify-content: space-between;
  border: none;
  background: #fff;
}
.roomModal .modal-footer h4 {
  flex: 1;
  text-align: center;
  color: #CA6029;
  font-family: 'satoshibold';
  font-size: 22px;
  line-height: 24px;
  margin: 0;
}
.roomModal .modal-footer .footerBtn, .bookingModal .modal-footer .footerBtn {
  margin: 0;
  display: contents;
}

.roomModal .modal-footer .footerBtn button, .bookingModal .modal-footer .footerBtn button {
  font-size: 14px;
  line-height: 18px;
  height: 40px;
  border-radius: 8px;
}


.gradient-btn {
  border: none;
  background: #fc4a1a;
  background: -webkit-linear-gradient(to right, #CA6029, #EFA63D);
  background: linear-gradient(to right, #CA6029, #EFA63D);
  /* background: linear-gradient(163.25deg, #D07038 0%, #ECA748 99.16%); */
  font-family: 'satoshibold';
  font-size: 12px;
  line-height: 16px;
  height: 36px;
  color: #fff;
  max-width: 180px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.gradient-btn i {
  font-size: 14px;
  margin-right: 4px;
}
.gradient-btn:hover, .gradient-btn:focus, .gradient-btn:active {
  background: linear-gradient(to right, #CA6029, #EFA63D) !important;
  color: #fff !important;
  box-shadow: none;
}
.outline-btn {
  border: none;
  background: #fff;
  border: 2px solid #CA6029;
  font-family: 'satoshibold';
  font-size: 12px;
  line-height: 16px;
  height: 36px;
  color: #CA6029;
  max-width: 180px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outline-btn:hover, .outline-btn:focus, .outline-btn:active {
  background: #fff !important;
  border: 2px solid #CA6029 !important;
  color: #CA6029 !important;
  box-shadow: none;
}

.roomModal  {
  padding: 0 !important;
}
.modal-fullscreen {
  max-width: 100%;
  margin: 0;
  max-height: 100% !important;
  height: 100%;
}
.modal-fullscreen .modal-content {
  border-radius: 0;
  max-height: 100% !important;
}
.closeBtn {
  margin: 16px 16px 0;
  box-shadow: none !important;
  border: none;
  background: transparent;
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  font-family: 'richstenregular';
}
#stayInfoModal .proceed-btn {
  height: 55px;
  border-radius: 0;
  max-width: 100%;
  margin-top: 24px;
  font-family: 'richstenregular';
  font-size: 24px;
}
#stayInfoModal .modal-body .booking-detail .totalSection label, 
#stayInfoModal .modal-body .booking-detail .totalSection span {
  color: #000;
}
.user-item {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
}
.user-item .fitimg {
  height: 50px;
  width: 50px;
  background: linear-gradient(120deg, #FCF0E6 0%, #E7E9EA 100%);
  border-radius: 6px;
  margin-right: 20px;
}
.user-item .user-content {
  flex: 1;
}
.user-item .user-content .username , .hightlighted label {
  font-family: 'satoshibold';
  font-size: 16px;
  line-height: 18px;
  color: #000;
  margin-bottom: 6px;
}
.user-item .user-content p, .hightlighted span {
  font-family: 'satoshibold';
  font-size: 13px;
  line-height: 16px;
  color: #b6b6b6;
}
.hightlighted label {
  display: block;
  margin-bottom: 14px;
}
.hightlighted span {
  display: block;
  margin-bottom: 14px;
  color: #878584;
}
.selectedroomcard {
  background: #c85d28;
  border-radius: 20px;
  padding: 20px 30px;
}
.selectedroomcard span {
  font-size: 12px;
  line-height: 16px;
  color: #fff;
  font-family: 'satoshiregular';
}
.selectedroomcard label {
  display: block;
  margin: 8px 0 3px;
  font-size: 15px;
  line-height: 18px;
  color: #fff;
  font-family: 'satoshibold';
}
.infoDivider {
  display: flex;
  margin: 20px 0;
  align-items: center;
}
.infoDivider span {
  flex: 1;
  margin-right: 30px;
  height: 2px;
  background: linear-gradient(120deg, #f5f5f5 0%, #a6a6a6 100%);
}
.infoDivider label {
  font-size: 16px;
  line-height: 24px;
  font-family: 'satoshiregular';
  color: #696969;
  margin: 0;
}

@media only screen and (max-width: 1024px) {
  .roomModal .modal-body {
    flex-direction: column-reverse;
    padding: 20px;
  }
  .roomModal .modal-body .booking-detail {
    margin: 0 0 20px;
    width: 100%;
    padding: 20px;
  }
  .roomModal .modal-body .room-container .roomCard {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .roomModal .modal-body .room-container .roomHeader {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .roomModal .modal-body .room-container .roomHeader .modalHead {
    margin-bottom: 16px;
  }
  .roomModal .modal-body .room-container .roomStatus {
    justify-content: flex-start;
    margin: 0 10px 0 0;
    width: unset;
  }
  .roomModal .modal-footer {
    flex-direction: column;
  }
  .roomModal .modal-footer h4 {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 20px;
  }
  .roomModal .modal-footer .footerBtn {
    display: flex;
  }
  .roomModal .modal-footer .footerBtn button {
    width: 120px;
  }
  .roomBookingRow {
    margin-left: -5px;
  }
  .roomCheckBox {
    margin: 5px;
    min-width: 80px;
    height: 50px;
  }
  .roomCheckBox .checkmark {
    padding: 8px;
  }
  .roomCheckBox .checkmark label {
    font-size: 18px;
    line-height: 20px;
  }
  .roomModal .room-container .roomInner {
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 420px) {
  .res-column {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .roomModal .modal-body .room-container .roomStatus {
    margin: 0 0 10px 0;
  }
  .infoDivider {
    flex-direction: column;
  }
  .infoDivider span {
    margin: 0 0 12px;
    flex: unset;
    width: 100%;
  }
}

.mealsDetail {
  position: absolute;
  top: 78px;
  left: 8px;
  right: 8px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: none;
  box-shadow: 0 2px 15px #d2bb9af7;
  padding: 16px;
  z-index: 10;
}
.mealsDetail.active {
  display: block;
}
.p-relative {
  position: relative;
}
.mealsDetail .form-group {
  padding: 8px 6px 16px;
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 5px;
}
.mealsDetail .form-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding: 8px 6px;
}
.mealsDetail .form-group button.btn {
  font-size: 16px;
  line-height: 20px;
  height: 42px;
  max-width: 100%;
  border-radius: 10px;
}

.signInner {
  height: 100vh;
  position: relative;
}
.signInner .main-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 30px 20px;
}
.signInner .signContant {
  flex: 1;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.signInner .signContant h2 {
  color: #C85D28;
  font-size: 50px;
  line-height: 56px;
  font-family: 'richstenregular';
  margin: 0 0 30px;
}
.signInner .signContant p {
  font-size: 16px;
  font-family: 'satoshimedium';
  color: #696969;
}
.signInner .signContant p a {
  font-family: 'satoshibold';
  color: #C85D28;
  cursor: pointer;
}
.signInner .formCard {
  width: 320px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background: linear-gradient(92.63deg, #FBEFE6 0%, #F5F6F6 98.9%);
  overflow: hidden;
  padding: 20px;
  height: 100%;
  position: relative;
  max-height: 720px;
}
.sendOTP, .verifyOTP, .register {
  z-index: 10;
}
.signInner .formCard .form-group {
  margin-bottom: 15px;
}
.signInner .formCard .form-group label {
  font-family: 'satoshimedium';
}
.signInner .formCard .form-group .placeholder-book {
  font-size: 16px;
  border-radius: 8px;
  z-index: 1;
}
.signInner .formCard .form-group:last-child {
  margin-bottom: 0;
}
.signInner .formCard .btn {
  margin-top: 30px;
  max-width: 100%;
  font-size: 15px;
  height: 44px;
  border-radius: 8px;
}
.signInner .signImg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  z-index: 1;
}
.signInner .signIn-bottomImage {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  max-width: 320px;
  max-height: 210px;
  z-index: 1;
}
.signInner .inputContainer {
  display: flex;
  align-items: center;
}
.signInner .otp-input {
  background: #EDEDED;
  padding: 10px;
  border: none;
  line-height: 24px;
  color: #606060;
  font-family: 'satoshimedium';
  max-width: 40px;
  height: 44px;
  width: 100%;
  text-align: center;
  margin-right: 7px;
  font-size: 16px;
  border-radius: 8px;
  z-index: 1;
}
.signInner .otp-input:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .signInner .main-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 20px 6px;
  }
  .signInner .signContant {
    margin: 0 0 30px;
    flex: unset;
  }
  .signInner .signContant h2 {
    font-size: 40px;
    line-height: 42px;
    margin: 0 0 16px;
  }
  .signInner .formCard {
    width: 100%;
    min-height: 220px;
    height: unset;
  }
}

@media only screen and (max-height: 530px) {
  .signInner.registerPage {
    height: 100%;
  }
}
@media only screen and (max-height: 260px) {
  .signInner {
    height: 100%;
  }
}
@media only screen and (max-height: 620px) and (max-width: 767px) {
  .signInner.registerPage {
    height: 100%;
  }
}
@media only screen and (max-height: 380px) and (max-width: 767px) {
  .signInner {
    height: 100%;
  }
}

.working-hours p {
  margin-bottom: 4px;
  display: flex;
}
.working-hours p span {
  min-width: 110px;
}

label.error {
  color: red;
}

.table-container table tbody tr:first-child td {
  padding: 0px 0px 0px;
}