@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* 
font-family: 'Lato', sans-serif;
font-family: 'Poppins', sans-serif; */


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

:root {
  --white: #fff;
  --black: #000;
  --navigation: #002444;
  --headingblue1: #000f1b;
  --headingblue2: #2f84c8;
  --paragraph: #393939;
  --grey2: #6b6a71;
  --white2: #fdfcfc;
  --grey3: #3c3b47;
  --testistroke: #d6d6d6;
  --testiuser: #e5eafb;
  --footerbg: #3c3b47;
  --copyrightbg: #090819;
  --buttongreen:#2bc48a;
}




body {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 18px;
  overflow-x: hidden;


}

img {
  width: auto;
} 



/* ================================HEADER HERE================================== */


.navigation {
  height: 85px;
  margin: 12px 0;
  padding: 0 30px;
}

.brand {
  position: absolute;
  float: left;
  line-height: 55px;
  text-transform: uppercase;
  font-size: 1.4em;
}


nav {
  float: right;
}

nav ul {
  list-style: none;
  margin: 26px 0 0 0;
  padding: 0;
}

nav ul li {
  float: left;
  position: relative;
}

nav ul li a,
nav ul li a:visited {
  display: block;
  padding: 0 20px;
  color: var(--navigation);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

nav ul li a {
  background: transparent;
  color: var(--mainblack);

}

nav ul li a:hover,
nav ul li a:visited:hover {
  color: #2581DC;
}


nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: ' \025BE';
}

nav ul li ul li {
  min-width: 190px;
}

nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.navbar-dropdown {
  position: absolute;
  display: none;
  z-index: 1;
  background: #fff;
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.25);
}

/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  height: 55px;
  width: 70px;
}

@media only screen and (max-width: 800px) {
  .nav-mobile {
    display: block;
  }

  nav {
    width: 100%;
    padding: 55px 0 15px;
  }

  nav ul {
    display: none;
  }

  nav ul li {
    float: none;
  }


  .navbar-dropdown {
    position: static;
  }
}


@media screen and (min-width:800px) {
  .nav-list {
    display: block !important;
  }
}

#navbar-toggle {
  position: absolute;
  left: 18px;
  top: 15px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}

#navbar-toggle span,
#navbar-toggle span:before,
#navbar-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 30px;
  background: #000;
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
}

#navbar-toggle span:before {
  top: -8px;
}

#navbar-toggle span:after {
  bottom: -8px;
}

#navbar-toggle.active {
  background: none;
}

#navbar-toggle.active span {
  background-color: transparent;
}

#navbar-toggle.active span:before,
#navbar-toggle.active span:after {
  top: 0;
}

#navbar-toggle.active span:before {
  transform: rotate(45deg);
}

#navbar-toggle.active span:after {
  transform: rotate(-45deg);
}



/* ================================BOTTOM HEADER HERE================================== */
/* nav a{display: none;} */
.bottom-head{z-index: 9999;}




/* ================================BANNER HERE================================== */



.banner {
  background: url(../images/banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 700px;
  position: relative;
}

.banner .banner-text {
  width: 34%;
  text-align: left;
  position: absolute;
  top: 35%;
  left: 55%;
  transform: translate(-50% -50%);

}

.banner .banner-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 62px;
  line-height: 72px;
  color: var(--white);
  font-weight: 700;
}

.banner .banner-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 74px;
  line-height: 72px;
  color: var(--white);
  font-weight: 700;
}




/* ================================ABOUT US================================== */



.aboutus {
  margin: 120px 0;
  padding: 0 30px;
}


.aboutus .aboutarea div:nth-child(1) {
  padding: 0 80px 0 0;
}

.aboutus .aboutarea div:nth-child(2) {
  padding: 50px 0 0 0;
}

.aboutus .aboutarea div:nth-child(2) h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  line-height: 55px;
  color: var(--headingblue1);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.aboutus .aboutarea div:nth-child(2) span {
  color: var(--headingblue2);
}


.aboutus .aboutarea div:nth-child(2) p {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: var(--paragraph);
  font-weight: 500;
  text-align: justify;
  margin-bottom: 5px;
}



/* ================================WHY RISHANI================================== */

.why-rishani {
  background: url(../images/why-rishani-bg.jpg);
  background-size: cover;
  padding: 80px 30px;
}

.why-rishani .whyrishai-area h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  line-height: 55px;
  color: var(--headingblue1);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.why-rishani .whyrishai-area h2 span {
  color: var(--headingblue2);
}

.why-rishani .whyrishai-area p {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: var(--paragraph);
  font-weight: 500;
  text-align: justify;
}


.why-rishani .whyrishai-area div:nth-child(1) {
  width:50%;
  padding: 0 80px 0 0;
 
}
.why-rishani .whyrishai-area div:nth-child(2) {
  width:50%;
 
}


/* ================================FACILITIES================================== */





.owl-carousel {
	margin: 0 auto;
	padding: 30px 0;
  width: auto;
 
}
.owl-carousel .item {
	font-size: 30px;
	text-align: center;
	padding: 40px 20px;
	line-height: 2;
	font-weight: 700;
  
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
	z-index: 1;
	width: 40px;
	height: 40px;
	background-color:#393939;
	border-radius: 50%;
	position: absolute;
	top: 40%;
	transform: translatey(-50%);
  
}

.owl-nav button span {
	font-size: 30px;
	height: 100%;
	display: block;
	width: 100%;
  background: #bca38b;
    border-radius: 60px;
    padding: 7px;
}
.owl-carousel .owl-nav button.owl-prev {
	left: 0;
}
.owl-carousel .owl-nav button.owl-next {
	right: 0;
}
.owl-carousel .owl-nav {
	margin: 0;
}
.btn-wrap {
	text-align: center;
	width: 100%;
}
button {
	background-color: #ddd;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	margin: 10px;
	font-size: 18px;
	font-weight: 600;
	transition: all 0.5s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.owl-theme .owl-nav .disabled,
button.disabled {
	opacity: 0.6;
}


.facilities {
  margin: 120px 0 60px;
  padding: 0 30px;
}


.facilities h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  line-height: 55px;
  color: var(--headingblue1);
  font-weight: 700;
  text-align: center;
}

.facilities h2 span {
  color: var(--headingblue2);
}


.facilities .facility-area div:nth-child(1) {
  padding: 0 80px 0 0;
}

.facilities .facility-area {
  padding: 60px 0 0 0;
}


.facilities .facility-area h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  line-height: 40px;
  color: var(--headingblue1);
  font-weight: 600;
  width: 70%;
  margin-top: 5rem;
  margin-bottom: 2rem;
}

.facilities .facility-area h3 span {
  color: var(--headingblue2);
}


.facilities .facility-area p {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: var(--paragraph);
  font-weight: 500;
  text-align: justify;
}


.facilities .facility-carousel h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  line-height: 40px;
  color: var(--headingblue1);
  font-weight: 600;
  text-align: center;
  margin: 80px 0 50px 0;
}

.facilities .facility-carousel h3 span {
  color: var(--headingblue2);
}

.facilities .facility-carousel h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: var(--headingblue1);
  font-weight: 400;
  text-align: center;
  margin: 18px 0 0 0;

}


/* ================================ACTIVITIES================================== */


.video-frame {
  padding: 0 50px 0 0;
  height: 400px;
  width: 100%;
  margin-top: 6rem;
}

.activity {
  background: url(../images/Activity-Bg.png);
  background-size: cover;
  min-height: 758px;
  padding: 80px 0 0 0;
}

.activity .activity-area {
  padding: 0 30px;
}

.activity .activity-area h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  line-height: 55px;
  color: var(--headingblue1);
  font-weight: 700;
  width: 65%;
}

.activity .activity-area h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  line-height: 55px;
  color: var(--grey2);
  font-weight: 500;
  text-transform: uppercase;
  background: url(../images/activity-line.png) 0px 0px;
  background-repeat: no-repeat;

}

.activity .activity-area h2 span {
  color: var(--headingblue2);
}

.activity .activity-area h5 {
  font-family: 'Lato', sans-serif;
  font-size: 25px;
  line-height: 30px;
  color: var(--headingblue1);
  font-weight: 600;
  padding: 15px 0;
}


.activity .activity-area p {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: var(--paragraph);
  font-weight: 500;
  text-align: justify;

}


.container_grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, calc(10% - -18rem));
  justify-content: center;
  gap: 1.5rem;
}



@media (width <=768px) {
  .container_grid {
    grid-template-columns: 100%;
  }
}



.tile {
  margin: 3rem auto;
  transform-style: preserve-3d;
  transform-origin: center right;
  transition: all 0.5s;
  color: var(--black);
  font-family: sans-serif;
  background-color: var(--white2);
  height: 340px;
  width: 100%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 30px 40px;

}

.tile:hover {
  transform: translateY(-5%);
  box-shadow: 0px 0px 40px -15px rgba(66, 68, 90, 1);
}

.tile__face {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 2.3rem;
  backface-visibility: hidden;
  
}

.tile__face--back {
  transform: rotateY(180deg);
  position: relative;
}


.tile__face--front {
  position: absolute;
}

.tile__face--front p {
  padding: 0 80px 0 0;
}


.tile.is-flipped {
  transform: translateX(-100%) rotateY(-180deg);
}



.mile {
  margin: 3rem auto;
  transform-style: preserve-3d;
  transform-origin: center right;
  transition: all 0.5s;

  color: var(--black);
  font-family: sans-serif;

  background-color: var(--white2);
  height: 340px;
  width: 100%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 30px 40px;

}

.mile:hover {
  transform: translateY(-5%);
  box-shadow: 0px 0px 40px -15px rgba(66, 68, 90, 1);
}

.mile__face {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 2.3rem;
  backface-visibility: hidden;
  /*hide element on back*/
}

.mile__face--back {
  transform: rotateY(180deg);
  position: relative;
}


.mile__face--front {
  position: absolute;
}

.mile__face--front p {
  padding: 0 80px 0 0;
}


.mile.is-flipped {
  transform: translateX(-100%) rotateY(-180deg);
}





.nile {
  margin: -3rem auto;
  transform-style: preserve-3d;
  transform-origin: center right;
  transition: all 0.5s;

  color: var(--black);
  font-family: sans-serif;

  background-color: var(--white2);
  height: 340px;
  width: 100%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 30px 40px;

}

.nile:hover {
  transform: translateY(-5%);
  box-shadow: 0px 0px 40px -15px rgba(66, 68, 90, 1);
}

.nile__face {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 2.3rem;
  backface-visibility: hidden;
  /*hide element on back*/
}

.nile__face--back {
  transform: rotateY(180deg);
  position: relative;
}


.nile__face--front {
  position: absolute;
}

.mile__face--front p {
  padding: 0 80px 0 0;
}


.nile.is-flipped {
  transform: translateX(-100%) rotateY(-180deg);
}


.pile {
  margin: -3rem auto;
  transform-style: preserve-3d;
  transform-origin: center right;
  transition: all 0.5s;

  color: var(--black);
  font-family: sans-serif;

  background-color: var(--white2);
  height: 340px;
  width: 100%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 30px 40px;

}

.pile:hover {
  transform: translateY(-5%);
  box-shadow: 0px 0px 40px -15px rgba(66, 68, 90, 1);
}

.pile__face {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 2.3rem;
  backface-visibility: hidden;
  /*hide element on back*/
}

.pile__face--back {
  transform: rotateY(180deg);
  position: relative;
}


.pile__face--front {
  position: absolute;
}

.pile__face--front p {
  padding: 0 80px 0 0;
}


.pile.is-flipped {
  transform: translateX(-100%) rotateY(-180deg);
}

.activity .activity-pic img{width:100%;
}

.activity-two{margin: 150px 0 0 0;}

/* ===============================GUEST SAY TESTIMONIAL================================== */



.testimonials {
  margin: 120px 0 100px;
  padding: 0 30px;
}

.testimonials h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  line-height: 55px;
  color: var(--headingblue1);
  font-weight: 700;
  text-align: center;
}

.testimonials h2 span {
  color: var(--headingblue2);
}

.testimonials .review{position:absolute;
  top:52px;
  left:18rem;
}
.testimonials .review span{
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 16px;
}

.shadow-effect {
	background: #fff;
	padding: 20px;
	border-radius: 4px;
	text-align: center;
	border: 1px solid #ececec;
	box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.02);
}
#customers-testimonials .shadow-effect p {
	font-family: inherit;
	font-size: 17px;
	line-height: 1.5;
	margin: 0 0 17px 0;
	font-weight: 300;
  text-align: left;
}
.testimonial-name {
  font-size: 15px;
  line-height: 20px;
	margin: -17px auto 0;
	display: table;
	width: auto;
	background: #3190e7;
	padding: 9px 35px;
	border-radius: 12px;
	text-align: center;
	color: #fff;
	box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}
#customers-testimonials .item {
	text-align: center;
	padding: 50px;
	margin-bottom: 80px;
	opacity: 0.2;
	-webkit-transform: scale3d(0.8, 0.8, 1);
	transform: scale3d(0.8, 0.8, 1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  position: relative;
}
#customers-testimonials .owl-item.active.center .item {
	opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}
.owl-carousel .owl-item img {
	transform-style: preserve-3d;
	max-width: 90px;
	margin: 0 auto 17px;
  border-radius: 60px;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
	background: #3190e7;
	transform: translate3d(0px, -50%, 0px) scale(0.7);
}
#customers-testimonials.owl-carousel .owl-dots {
	display: inline-block;
	width: 100%;
	text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot {
	display: inline-block;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
	background: #3190e7;
	display: inline-block;
	height: 20px;
	margin: 0 2px 5px;
	transform: translate3d(0px, -50%, 0px) scale(0.3);
	transform-origin: 50% 50% 0;
	transition: all 250ms ease-out 0s;
	width: 20px;
}


/* ================================FOOTER================================== */



footer .footerarea {
  padding: 80px 30px 50px;
  background: var(--footerbg);
}

footer .footerarea .footer-one {
  padding: 0 80px 0 0;
}

footer .footerarea .footer-two {
  padding: 0 0 0 80px;
}

footer .footerarea p {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: var(--white);
  font-weight: 500;
  text-align: justify;
  padding: 20px 0 0 0;
}

footer .footerarea h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 20px;
  color: var(--white);
  font-weight: 500;

}

footer .footerarea ul {
  list-style-type: none;
  margin: 25px 0 0 0;
  padding: 0;
}

footer .footerarea ul li a {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 33px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

footer .footerarea ul li a:hover {
  text-decoration: underline;
}

footer .footerarea .footer-three ul li {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: var(--white);
  text-decoration: none;
  margin-top: 15px;
}

footer .footerarea .footer-three .footer-follow {
  padding: 25px 0 10px 0;
}



footer .footerarea h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 25px;
  line-height: 20px;
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  padding: 30px 0 0 0;
}

footer .footerarea .footermob {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: var(--white);
  text-decoration: none;

}

footer .footerarea .footer-three span {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: var(--white);
  text-transform: uppercase;

}

footer .copyright {
  padding: 14px 30px 0px;
  background: var(--copyrightbg);
}

footer .copyright .copy-area {
  display: flex;
  justify-content: space-between;
}


footer .copyright p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 20px;
  color: var(--white);
  font-weight: 400;
}

footer .truepid {
  color: var(--white);
  text-decoration: none;
}

footer .truepid:hover {
  text-decoration: underline;
}

/* ===========FLOATING BUTTON PHONE========================= */
.site-floating-phone {
  font-family: "Lexend Deca", sans-serif;
  font-size: 15px;
  line-height:18px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  padding: 5px 5px;
  background: #4da9ba;
  border-radius:4px;
  color: #fff !important;
  transition: all .6s ease;
  z-index: 99999;
  position: fixed;
  top:7rem !important;
  right: 0px;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width:480px) {
  .site-floating-phone {
    display: none;
  }
}


/* ================================ARIJIT CODE================================== */


.column {
  padding: 10px;

}

#featured {
  width:100%;
  max-height: 600px;
  object-fit: cover;
  cursor: pointer;

}

.thumbnail {
  object-fit: cover;
  max-height: 100px;
  cursor: pointer;
  opacity: 0.5;
  margin: 5px;

}

.thumbnail:hover {
  opacity: 1;
}

.active {
  opacity: 1;
}

#slide-wrapper {
  display: flex;
  min-height: 100px;
  align-items: center;
  width: 100%;
}

#slider {
   width:auto;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;


}

#slider::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

#slider::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);

}

#slider::-webkit-scrollbar-thumb {
  background-color: #e0e0e0;
  border-radius: 100px;

}

#slider::-webkit-scrollbar-thumb:hover {
  background-color: #18b5ce;
}