:root {
  --primary-color: #9F6637;
  --light-gray: #302f2f;
  --heading-font: 'Poppins Black';
  --body-font: 'Rubik';
  --body-font-medium: 'Rubik Medium';
}

.relative,
body,
html {
  position: relative
}

body,
ul {
  margin: 0;
  padding: 0
}

html {
  max-width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  font-weight: 400;
  line-height: 1.4 !important;
  font-size: 0.9em;
  font-family: var(--body-font);
  color: var(--bs-gray);
  background: var(--bs-white);
  overflow: hidden;
}

html {
  height: 100%
}

ul {
  list-style: none
}

.btn,
a,
button {
  display: inline-block;
  outline: 0 !important;
  box-shadow: none !important;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  -ms-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.btn,
a,
a:focus,
a:hover,
button {
  text-decoration: none;
  outline-style: none
}

.btn {
  padding: 10px 30px;
  font-family: var(--body-font-medium);
  text-transform: uppercase;
  border-radius: 30px;
  letter-spacing: 2px;
  font-size: 0.8rem;
  position: relative;
}

.btn:hover::before {
  width: 100%;
}

i {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1.1;
  font-family: var(--heading-font);
}

.p-v-30 {
  padding: 30px 0;
}

.p-v-50 {
  padding: 50px 0;
}

.p-v-60 {
  padding: 60px 0;
}

h1 {
  font-size: 4vw;
}

h2 {
  font-size: 4vw;
}

h3 {
  font-size: calc(20px + (45 - 20) * ((100vw - 300px) / (1920 - 300)));
}

h4 {
  font-size: calc(20px + (28 - 20) * ((100vw - 300px) / (1920 - 300)));
}

h5 {
  font-size: calc(18px + (24 - 18) * ((100vw - 300px) / (1920 - 300)));
}

h6 {
  font-size: calc(18px + (20 - 18) * ((100vw - 300px) / (1920 - 300)))
}

.tshadow {
  text-shadow: 2px 7px 4px rgba(0, 0, 0, .5)
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.logo a {
  display: inline-block;
  text-align: center;
  font-family: var(--heading-font);
  color: var(--bs-dark);
  padding: 15px 0;
  font-size: 2em;
}

header {
  position: relative;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 99;
  font-size: 80%;
}

.infos li {
  padding: 0 25px;
  border-right: #eee 1px solid;
}

.infos li:last-child {
  padding-right: 0;
  border-right: transparent;
}

.infos li a {
  color: var(--bs-secondary);
}

.infos li span {
  display: block;
  font-size: 1.5rem;
  color: var(--primary-color);
  font-family: var(--heading-font);
}

.infos li i {
  margin-right: 15px;
  font-size: 2.3rem;
  color: var(--primary-color)
}

.navBar {
  padding: 10px 0;
}

.navBar li a {
  color: var(--bs-white);
}

.siteNav ul {
  flex-direction: row;
  display: flex;
}

.siteNav li {
  padding: 1px 12px;
}

.siteNav li a {
  color: var(--bs-white);
  text-transform: uppercase;
  font-size: 0.9rem;
  position: relative;
}

.stellarnav .siteNav li a::before {
  position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    right: 0;
    height: 3px;
    width: 0;
    background-color: #e7d9cd;
    transition: 0.3s ease-in;
}
.stellarnav>.siteNav>li>a:hover::before {
  width: 100%;
}

.siteNav ul a:hover::before,
.siteNav ul li.active a:before {
  opacity: 1;
  width: 100%;
}

.logo {
  width: 100px;
}

.banner {
  position: relative;
  color: var(--bs-white);
  background: var(--primary-color);
}

.banner .swiper-slide {
  position: relative;
}

.banner .swiper-slide::before {
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.27) 0%, rgba(0, 0, 0, 0.74) 100%);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
}

.banner .swiper-slide .row {
  height: 80vh;
  align-items: center;
  position: relative;
  z-index: 3;
}

.banner .swiper-slide .image-container {
  transition: 5s ease-out;
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
  height: 550px;
}

.banner .swiper-slide p {
  margin: 15px 0;
  font-size: 1.2em;
}

.banner .cta span {
  color: var(--bs-white);
}

.banner .cta svg {
  stroke: var(--bs-white);
}

.cta {
  position: relative;
  margin: auto;
  padding: 19px 22px;
  transition: all 0.2s ease;
  color: var(--bs-dark);
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 28px;
  background: rgba(159, 102, 55, 0.6);
  width: 56px;
  height: 56px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  line-height: 18px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  vertical-align: middle;
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--bs-dark);
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: var(--primary-color);
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.96);
}

.box {
  background: var(--bs-white);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.12);
  width: 100%;
  float: left;
}

.box p {
  margin: 15px 0 30px;
  padding: 0 3em;
}

.box h3 {
  margin-top: 40px;
}

.innerBox strong {
  display: block;
  color: var(--bs-dark);
  text-transform: uppercase;
  margin-top: 10px;
}

.innerBox p {
  margin: 8px 0 30px;
}

.innerBox h4 {
  color: var(--bs-white);
  background: var(--primary-color);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  margin-top: 30px;
}

.innerBox {
  border-right: #ddd 1px solid;
}

.innerBox:last-child {
  border-color: transparent;
}

.box hr {
  margin-bottom: 0;
}

.headings strong {
  padding-left: 60px;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.headings strong::before {
  position: absolute;
  left: 0;
  width: 50px;
  background: var(--primary-color);
  height: 2px;
  bottom: 0;
  content: "";
}

.borderLeft {
  border-left: #ddd 1px solid;
}

.testimony .headings strong::before {
  background: var(--bs-white);
}

.lists li {
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
}

.lists li a {
  color: var(--bs-secondary);
  font-family: var(--body-font-medium);
  font-size: 18px;
}

.lists li a:hover {
  color: var(--primary-color);
  padding-left: 15px;
}

.lists li i {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-size: 22px;
  -webkit-text-fill-color: var(--primary-color);
  -webkit-text-stroke: 0px;
}

.services .box {
  padding: 40px;
}

.box2 {
  padding: 40px;
}

.overview {
  padding-bottom: 60px;
}

.overview h3 {
  margin-bottom: 15px;
}

.overview .box2 {
  padding: 40px 30px;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.12);
  margin-top: 30px;
  height: calc(100% - 30px);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.overview .box2 i {
  font-size: 2.5em;
  color: var(--primary-color);
}

.overview .box2 h5 {
  color: var(--bs-dark);
  margin: 10px 0;
}

.overview .box2::before {
  position: absolute;
  background: var(--primary-color);
  bottom: 0;
  right: -10%;
  width: 10%;
  height: 0;
  content: "";
  transition: all 0.3s ease;
  z-index: -1;
  border-radius: 50%;
}

.overview .box2:hover::before {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 25%;
}

.overview .box2:hover,
.overview .box2:hover i,
.overview .box2:hover h5 {
  color: var(--bs-white);
}

.overview .cta:hover {
  color: var(--bs-white);
}

.overview .cta:hover svg {
  stroke: var(--bs-white);
}

.overview .cta {
  margin-top: 30px;
}

/* process */

.title {
  font: bold 42px/52px Open Sans Condensed, sans-serif;
  text-align: center;
  padding: 20px;
  transition: all 0.8s ease-in-out;
}

.each-event {
  color: var(--bs-white);
  padding: 30px 30px 15px;
  margin: 0 20px;
  width: 40%;
  position: relative;
  border-radius: 4px;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  border: rgba(255, 255, 255, 0.3) 1px solid;
}

.each-event:before {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: -27px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 20px -4px rgba(64, 64, 64, 0.8);
}

.each-event:nth-child(odd) {
  margin-left: calc(50% + 20px);
}

.each-event:nth-child(even) {
  margin-left: calc(50% - 42%);
}

.each-event:nth-child(even):before {
  left: calc(100% + 14px);
}

.title.non-focus {
  font-size: 24px;
  line-height: 34px;
  transition: all 0.8s ease-in-out;
}

.each-event.non-focus {
  color: #d2d2d2;
  background: #e6e6e6;
  margin-top: 90px;
  transform: rotateZ(45deg);
  transition: all 0.8s ease-in-out;
}

.each-event.non-focus:before {
  opacity: 0;
  background-color: #aaa;
}

.block {
  z-index: 1;
  position: relative;
  margin-top: 50px;
}

.block:before {
  content: "";
  position: absolute;
  height: calc(100% - 180px);
  width: 1px;
  background-color: #f2f2f2;
  left: 50%;
  margin-top: 90px;
  top: -4px;
}

.each-event h4 {
  margin-bottom: 15px;
}

.block .badge.bg-light {
  background: rgba(255, 255, 255, 1) !important;
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 10px;
  font-weight: 400;
  position: absolute;
  top: -15px;
  color: var(--bs-dark);
}

.faqs .accordion-button::after {
  background-image: none !important;
  content: "\f0fe";
  font-family: var(--fa-style-family, "Font Awesome 6 Pro");
  transition: all 0.5s;
  font-size: 20px;
}

.faqs .accordion-button:not(.collapsed)::after {
  background-image: none !important;
  content: "\f146";
  font-family: var(--fa-style-family, "Font Awesome 6 Pro");
}

.faqs .accordion-button::after {
  transition: all 0.5s;
}

.faqs .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: transparent;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.faqs .accordion-item {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, .125);
  border-radius: 0;
  padding: 30px 15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.faqs .accordion-item::after {
  position: absolute;
  right: -100px;
  top: -100px;
  background: var(--primary-color);
  height: 100px;
  width: 100px;
  border-radius: 100%;
  z-index: -1;
  content: "";
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  -ms-transition: .3s ease-in-out;
  transition: .3s ease-in-out
}

.faqs .accordion-item:hover::after {
  width: calc(100% + 100px);
  border-radius: 0;
  top: 0;
  height: 100%;
}

.faqs .accordion-button {
  background-color: transparent;
  font-family: var(--body-font-medium);
  text-transform: capitalize;
}

.faqs .accordion-item:hover {
  color: var(--bs-white);
}

.faqs .accordion-item:hover .accordion-button {
  color: var(--bs-white);
}

.faqs .headings {
  margin-bottom: 30px;
}

.testimony {
  position: relative;
  color: var(--bs-white);
}

.testimony h4 {
  margin: 30px 0 20px;
  line-height: 1.5;
}

.clientDetails {
  max-width: 310px;
  width: 100%;
  margin: 0 auto;
}

.clientDetails span {
  flex: 0 0 80px;
  width: 80px;
  margin-right: 15px;
}

.text-left {
  text-align: left !important;
}

.clientDetails small {
  margin-top: 10px;
  display: inline-block;
}

.quotes {
  position: absolute;
  top: -30px;
  left: 15px;
  font-size: 6vw;
}

.relative {
  position: relative;
}

.testimony .swiper-wrapper {
  padding-bottom: 60px;
}

.testimony .swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, #fff);
}

footer {
  background: var(--light-gray);
  padding: 80px 0 20px;
  font-size: 16px;
  color: var(--bs-light);
}

footer .infos li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  border: none;
}

footer .infos li a {
  color: var(--bs-light);
}

footer .infos li i {
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 18px;
  color: var(--bs-light);
}

.flinks a {
  color: var(--bs-light);
  margin-top: 6px;
  font-size: 16px;
}

footer .followus a {
  color: var(--bs-light);
  padding-right: 10px;
}

footer .form-control {
  border-radius: 0;
  border-color: var(--secondary-color);
}

footer .btn {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 0;
  padding: 0 15px;
  height: 38px;
  color: var(--bs-white);
}

.followus li a {
  font-size: 2em;
}




/* ria */
.inner-page-banner {
  background-size: cover;
  padding: 50px 0;
  position: relative;
}

.inner-page-banner::after {
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.27) 0%, rgba(0, 0, 0, 0.74) 100%);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";

}

.inner-banner-text {
  position: relative;
  z-index: 1;
  color: #fff;
}

.inner-banner-text p {
  background-color: #ffffff5c;
  width: auto;
  display: inline-block;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}

.inner-banner-text p a {
  color: #fff;
  padding-right: 10px;
}

.inner-banner-text p a:hover {
  color: var(--light-gray);
  font-weight: 600;
}

.inner-banner-text p span {
  padding-right: 10px;
}

.inner-banner-text h2 {
  padding-bottom: 24px;
  font-size: 47px;
}



.schedule {
  /* margin-top: -2rem; */
  padding: 0 0 60px 0;
}

.schedule .schedule-inner {
  position: relative;
}

.schedule .single-schedule {
  position: relative;
  text-align: left;
  z-index: 3;
  border-radius: 5px;
  background: var(--primary-color);
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  -ms-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  height: 100%;
}

.schedule .single-schedule .inner {
  overflow: hidden;
  position: relative;
  padding: 30px;
  z-index: 2;
}

.schedule .single-schedule:before {
  position: absolute;
  z-index: -1;
  content: '';
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80%;
  height: 90%;
  background: var(--primary-color);
  opacity: 0;
  filter: blur(10px);
}

.schedule .single-schedule:hover:before {
  opacity: 0.8;
}

.schedule .single-schedule:hover {
  transform: translateY(-5px);
}

.schedule .single-schedule .icon i {
  position: absolute;
  font-size: 110px;
  color: #fff;
  z-index: -1;
  visibility: visible;
  opacity: 0.2;
  right: -25px;
  bottom: -30px;
}

.schedule .single-schedule span {
  display: block;
  color: #fff;
}

.schedule .single-schedule h4 {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  text-transform: capitalize;
  color: #fff;
  margin-top: 13px;
}

.schedule .single-schedule p {
  color: #fff;
  margin-top: 22px;
}

.schedule .single-schedule a {
  color: #fff;
  margin-top: 25px;
  font-weight: 500;
  display: inline-block;
  position: relative;
}

.schedule .single-schedule a:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background: #fff;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.schedule .single-schedule a:hover:before {
  width: 100%;
  width: 100%;
}

.schedule .single-schedule a i {
  margin-left: 10px;
}

.schedule .single-schedule .time-sidual {
  overflow: hidden;
  margin-top: 17px;
}

.schedule .single-schedule .time-sidual li {
  display: block;
  color: #fff;
  width: 100%;
  margin-bottom: 3px;
}

.schedule .single-schedule .time-sidual li:last-child {
  margin: 0;
}

.schedule .single-schedule .time-sidual li span {
  display: inline-block;
  float: right;
}

.schedule .single-schedule .day-head .time {
  font-weight: 400;
  float: right;
}


.aboutus-part h3 {
  text-align: center;
  margin-bottom: 3rem;
}

.aboutus-part .headings .lists , .features .list {
  display: grid;
  grid-template-columns: auto auto;
}

.aboutus-part .headings .lists a  , .features .list{
  font-size: 15px;
}

.about-part-img img {
  width: 100%;
}

.aboutus-part .headings h3 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.aboutus-part .headings p {
  font-size: 17px;
  margin-bottom: 2rem;
}

.about-part-img {
  position: relative;
}

.about-part-img .play {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 45px;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-part-img .play i {
  color: #fff;
}

.about-part-img .play {
  width: 100px;
  height: 100px;
  background: var(--primary-color);
  border-radius: 50%;
  color: #FFF;
  text-align: center;
  line-height: 100px;
  animation: animate-pulse 2s linear infinite;

}

@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(159 102 55) 0 0 0 0 rgb(159 102 55);
  }

  40% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0.0), 0 0 0 0 rgba(159 102 55);
  }

  80% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0.0), 0 0 0 30px rgba(255, 109, 74, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0.0), 0 0 0 30px rgba(255, 109, 74, 0);
  }

}



.fun-facts {
  position: relative;
}

.fun-facts.section {
  padding: 89px 0;
  margin-top: 5rem;
}

.fun-facts {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  
}
.fun-facts::after{
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.27) 0%, rgba(0, 0, 0, 0.74) 100%);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.fun-facts .single-fun i {
  background-color: var(--primary-color);
  font-size: 43px;
  display: inline-flex;
  padding: 13px;
  border-radius: 50%;
  color: #fff;
  border: 3px solid var(--primary-color);
  width: auto;
  height: 75px;
}

.fun-facts .single-fun:hover i {
  color: #fff;
  background: transparent;
  border: 3px solid #ffff;
}

.fun-facts .single-fun .content {
  padding-left: 36px;
}

.single-fun {
  display: inline-flex;
  position: relative;
  z-index: 1;
  align-items: center;
}

.fun-facts .single-fun span {
  color: #fff;
  font-weight: 600;
  font-size: 45px;
  position: relative;
  display: block;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s eas;
  display: block;
  margin-bottom: 7px;
}

.fun-facts .single-fun p {
  color: #fff;
  font-size: 20px;
}


.gallery{
	background:#FDFDFD;
}
.gallery h3 {
  margin-bottom: 1rem;
}
.gallery .headings p {
  color: #000000ab;
  margin-bottom: 2rem;
  font-size: 19px;
  margin-top: 14px !important;
}



.contact-us .inner {
  box-shadow: 0px 0px 10px #00000024;
  border-radius: 5px;
  overflow: hidden;
  /* height: 540px; */
}
.contact-us .contact-us-left{
    width: 100%;
    height: 100%;
}
.contact-us .contact-us-form{
	padding:50px 40px 0;
}
.contact-us .contact-us-form h2 {
	position: relative;
	font-size: 32px;
	color: #333;
	font-weight: 600;
	line-height: 27px;
	text-transform: capitalize;
	margin-bottom: 12px;
	padding-bottom: 20px;
	text-align: left;
}
.contact-us .contact-us-form h2:before{
	position:absolute;
	content:"";
	left:0;
	bottom:0;
	height:2px;
	width:50px;
	background:var(--primary-color)
}
.contact-us .contact-us-form p {
  font-size: 14px;
  color: #333;
  font-weight: 400;
  text-align: left;
  margin-bottom: 40px;
}
.contact-us .form {
	margin-top: 30px;
}
.contact-us .form .form-group {
	margin-bottom: 22px;
}
.contact-us .form .form-group input {
	width: 100%;
	height: 50px;
	border: 1px solid #eee;
	text-transform: capitalize;
	padding: 0px 18px;
	color: #555;
	font-size: 14px;
	font-weight: 400;
	border-radius: 4px;
}
.contact-us .form .form-group textarea {
	width: 100%;
	height:100px;
	border: 1px solid #eee;
	text-transform: capitalize;
	padding:18px;
	color: #555;
	font-size: 14px;
	font-weight: 400;
	border-radius: 4px;
}
.contact-us .form .form-group.login-btn {
	margin: 0;
}
.contact-us .form button {
	border: none;
}
.contact-us .form .btn {
	display: inline-block;
	margin-right: 10px;
	color: #fff;
	line-height: 20px;
	width:100%;
  background-color: var(--primary-color);
}
.contact-us .form .btn:hover{
	background:var(--light-gray);
	color:#fff;
}
.contact-us .contact-us-form .checkbox {
	text-align: left;
	margin: 0;
	margin-top: 20px;
	display:inline-block;
	
}
.contact-us .contact-us-form .checkbox label {
	font-size: 14px;
	font-weight: 400;
	color: #333;
	position: relative;
	padding-left: 20px;
}
.contact-us .contact-us-form .checkbox label:hover{
	cursor:pointer;
}
.contact-us .contact-us-form .checkbox label input{
	display:none;
}
.contact-us .contact-us-form .checkbox label::before {
	position: absolute;
	content: "";
	left: 0;
	top: 5px;
	width: 15px;
	height: 15px;
	border: 1px solid var(--primary-color);
	border-radius: 100%;
}
.contact-us .contact-us-form .checkbox label::after {
	position: relative;
	content: "";
	width: 7px;
	height: 7px;
	left: -16px;
	top: -15px;
	opacity: 0;
	visibility: hidden;
	transform: scale(0);
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: block;
	font-size: 9px;
	background: var(--primary-color); 
	border-radius: 100%;
}
.contact-us .contact-us-form .checkbox label.checked::after{
	opacity:1;
	visibility:visible;
	transform:scale(1);
}
.contact-us .contact-info{
	margin-top:50px;
}
.contact-us .single-info {
	background: var(--primary-color);
	padding: 40px 60px;
	height: 150px;
	border-radius: 10px;
	position:relative;
	-webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}
.contact-us .single-info:before{
	position: absolute;
    z-index: -1;
    content: '';
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 80%;
    height: 90%;
    background:var(--primary-color);
    opacity: 0;
    filter: blur(10px);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}
.contact-us .single-info:hover:before{
	opacity: 0.8;
}
.contact-us .single-info:hover{
	transform: translateY(-5px);
}
.contact-us .single-info i{
	font-size:42px;
	color:#fff;
	position:absolute;
	left:40px;
}
.contact-us .single-info .content {
	margin-left: 45px;
}
.contact-us .single-info .content h3{
	color:#fff;
	font-size:18px;
	font-weight:600;
	
}
.contact-us .single-info .content p{
	color:#fff;
	margin-top:5px;
}



.how-work h3{
  margin-bottom: 15px;
}
.work-box{
  text-align: center;
  position: relative;
}
.work-img {
  background-color: #fff;
  display: inline-flex;
  width: 91px;
  padding: 10px 22px;
  justify-content: center;
  font-size: 42px;
  height: 92px;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px;
  position: relative;
}
.work-img::before{
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  background-color: #fbfbfb;
  width: 100px;
  height: 100%;
  z-index: -1;
}


/* step */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@200&display=swap");
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.road-map-main {
  margin: 50px 0 51px;
  .road-map-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 175px;
    @media (max-width: 991px) {
      margin-bottom: 25px;
      height: auto;
      display: block;
    }

    &::before {
      content: "";
      width: 100%;
      clear: both;
      display: block;
    }
    &::after {
      content: "";
      width: 100%;
      clear: both;
      display: block;
    }
    .road-map-circle {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      border: 25px solid transparent;
      border-top-color: var(--primary-color);
      border-right-color: var(--primary-color);
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      transform: rotate(45deg);
      @media (max-width: 992px) {
        position: unset;
        border: 25px solid #7a7bd7;
      }

      .road-map-circle-text {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        background-color: var(--light-gray);
        font-size: 37px;
        font-weight: 600;
        line-height: 26px;
        text-transform: capitalize;
        color: #fff;
        box-shadow: 0px 0px 10px 5px #00000021;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        transform: rotate(-45deg);
      }
    }
    .road-map-card {
      width: 35%;
      float: right;
      background: var(--primary-color);
      padding: 20px 20px;
      z-index: 1;
      position: absolute;
      right: 0;
      border-radius: 5px;
      height: 200px;
      box-shadow: -1px 5px 10px #3d3d3db8;
      &::before {
        content: "";
        width: 25%;
        height: 20px;
        background: var(--primary-color);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -23%;
        z-index: -1;
       
      }
      @media (max-width: 991px) {
        width: 100%;
        margin-top: 30px;
        position: unset;
        &::before {
          content: "";
          width: 20px;
          height: 30%;
          top: 50%;
          transform: translateX(-50%);
          left: 50%;
        }
      }
      @media (max-width: 425px) {
        top: 45%;
      }
      .card-head {
        font-size: 20px;
        font-weight: 600;
        text-transform: capitalize;
        margin: 0 0 15px;
        color: #fff;
      }
      .card-text {
        color: #fff;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        @media (max-width: 1199px) {
          -webkit-line-clamp: 4;
        }
      }
    }
    &:nth-of-type(even) {
      .road-map-circle {
        border-bottom-color: var(--primary-color);
        border-left-color: var(--primary-color);
        border-top-color: transparent;
        border-right-color: transparent;
        @media (max-width: 991px) {
          border-color: var(--primary-color);
        }
      }
      .road-map-card {
        float: left;
        left: 0;
        position: relative;
        box-shadow: -1px 5px 10px #3d3d3db8;
        &::before {
          right: -23%;
          left: unset;
          @media (max-width: 991px) {
            content: "";
            width: 20px;
            height: 30%;
            top: 50%;
            transform: translateX(-50%);
            left: 50%;
          }
          @media (max-width: 425px) {
            top: 45%;
          }
        }
      }
    }
  }
}
.how-work  p {
  word-break: break-all;
  font-size: 15px;
  letter-spacing: 0;
}
.road-map-card .number {
  position: absolute;
  left: -48px;
  background: #ffffff;
  box-shadow: 0 0 8px #000000a1;
  font-size: 45px;
  top: -36px;
  width: 60px;
  display: flex;
  justify-content: center;
  border-radius: 10px 0;
  padding: 0 13px;
}
.road-map-card .number2 {
  position: absolute;
  right: -48px;
  background: #ffffff;
  box-shadow: 0 0 8px #000000a1;
  font-size: 45px;
  top: -36px;
  width: 60px;
  display: flex;
  justify-content: center;
  border-radius: 10px 0;
  padding: 0 13px;
}


.siteNav{
  text-align: start !important;
}
.stellarnav>ul>li>a {
  padding: 11px 1px;
}


.sticky{
  position: fixed;
  width: 100%;
  z-index: 999;

}

.sticky .top-header{
display: none !important;
}
.nav-logo{
  display: none;
}
.nav-logo img{
  width: auto;
  height: 32px;
}
.sleep-wrap2 .sleep-img img {
  width: 100%;
  height: 233px;
  object-fit: cover;
  /* box-shadow: 0 0 5px 0px #0000008f; */
  margin-top: 4rem;
  margin-left: -38px;
  position: relative;
}
.sleep-wrap2 .sleep-text {
  background-color: var(--primary-color);
  padding: 91px 71px;
  height: 571px;
  box-shadow: 0 0 5px 0px #0000008f;
}
.sleep-wrap4 .sleep-img img{
  width: 100%;
  height: 233px;
  object-fit: cover;
  /* box-shadow: 0 0 5px 0px #0000008f; */
  margin-top: 3srem;
  margin-left: -38px;
  position: relative;
}
.sleep-wrap6 {
  margin: 2rem 0 2rem 0;
}
.sleep-wrap6 .sleep-text {
  background-color: var(--primary-color);
  padding: 91px 71px;
  height: 693px;
  box-shadow: 0 0 5px 0px #0000008f;
}
.sleep-wrap6 .sleep-img img{
  width: 100%;
  height: 233px;
  object-fit: cover;
  /* box-shadow: 0 0 5px 0px #0000008f; */
  margin-top: 3rem;
  margin-left: 17px;
  position: relative;
}
.sleep-wrap-7 .sleep-text {
  height: 497px;
}
.sleep-wrap-7 .sleep-img img{
  height: 363px;
}

.sleep-wrap3{
  margin: 2rem 0 2rem 0;
}
.sleep-img img {
  width: 100%;
  height: 233px;
  object-fit: cover;
  /* box-shadow: 0 0 5px 0px #0000008f; */
  margin-top: 3rem;
  margin-left: 17px;
  position: relative;
}
.sleep-text {
  background-color: var(--primary-color);
  padding: 51px 71px;
  height: 336px;
  box-shadow: 0 0 5px 0px #0000008f;
}
.sleep-wrap1{
  margin-bottom: 2rem;
}
.sleep-text h4{
  padding-bottom: 1rem;
  color: #fff;
}
.sleep-text p {
  color: #fff;
  font-size: 17px;
}
.sleep-page-text p{
  color: #000;
}
.sleep-page-text{
  margin-bottom: 3rem;
}
.sleep-page-text h4 {
  margin-bottom: 2rem;
  font-size: 31px;
  position: relative;
}
.sleep-page-text h4::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -12px;
  width: 69px;
  height: 2px;
  background-color: var(--primary-color);
}
.sleep-2 {
  padding: 100px;
  background-size: cover;
  height: 400px;
}
.sleep2-text h3 {
  
  margin-bottom: 2rem;
  position: relative;
}
.sleep2-text h3::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -12px;
  width: 69px;
  height: 2px;
  background-color: var(--primary-color);
}
.sleep2-text p {
  /* font-size: 20px; */
  letter-spacing: 0px;

  color: #000;
}
.sleep2-list h5 {
  color: var(--light-gray);
  margin: 2rem 0 1rem 0;
  font-size: 20px;
  font-weight: 300;
}
.sleep2-list span i {
  margin-right: 17px;
  font-size: 15px;
  color: var(--light-gray);
}
.sleep2-list p span i {
  
  border-radius: 10px;
  /* font-size: 15px; */
}
.sleep2-list p {
  /* font-size: 20px; */
  margin-bottom: 5px;
  display: flex;
  color: #000;
}
.sleep2-list h5 {
  color: #000;
  margin: 2rem 0 1rem 0;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.sleep2-text h3{
  margin-top: 15px;
}
.sleep2-last p{
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
  font-weight: 600;
}
.fa-circle:before {
  content: "\f111";
  
  border-radius: 100%;
  font-size: 9px;
  /* display: flex; */
  /* align-items: center; */
}
.sleep2-text{
  margin-bottom: 2rem;
}
.sleep-top{
  margin-top: 2rem;
}

.sleep2-text p{
  
 
}
.sleep2-text .accordion-button:not(.collapsed){
  font-size: 20px;
  color: var(--primary-color);
  background-color: #302f2f29;
}
.sleep2-text  .accordion-button{
  color: #000;
  font-size: 17px;
}
.sleep-text .accordion-body p span{
  margin-right: 10px;
}
.sleep-head-text{
  margin: 1rem 0 2rem 0;
}
.sleep-head-text p{
  margin-top: 10px;
}

/* Deepak */

.cstm-margin{
  margin-bottom: 1rem !important;
}

.wpcf7-submit{
  color:#fff !important;
}

.sleep-wrap1:nth-child(odd) {
  flex-direction: row-reverse;
}

/* .sleep-img img:nth-child(odd){
  margin-left: 17px;
} */

/* .sleep-img img:nth-child(even){
  margin-left: 0px;
  margin-right: 0px;
} */

.sleep-text {
  min-height: 480px;
  height: inherit;
}

.sleep-wrap1:nth-child(odd) > div > .sleep-img img {
  margin-left: -38px;
  margin-right: 0px;
  height: 430px;
}

.sleep-wrap1:nth-child(odd) > div > .sleep-text{
  height: auto;
}



.sleep-img img{
  margin-top: 0px;
  margin-left: 0px;
  height: auto;
}
.sleep-wrap1:nth-child(even) > div > .sleep-img {
  margin-left: 38px;
}

.sleep-img{
  height: 100%;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.ptt-60{
  padding-top: 60px;
}
.features .headings {color: var(--bs-white);}
.gallery.features .headings p , .gallery.features p , .gallery.features li  {
  color: #fff;
  font-size: 19px;
  margin: 15px 0;
}
.gallery.features li {position: relative; padding-left:40px; padding-right: 20px; font-weight: 200;}
.gallery.features li i {position: absolute; left: 0; top: 3px;}
.sleep {border: #E6E6E6 10px solid;}