body {
	width: 100%;
	min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* navigation menu */

.navigation_main{
  position: fixed;
  z-index: 11;   
  top: 0;
  background-color: #fff;
  min-height: 60px;
  width: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.nav-container{
	cursor: pointer;
	position: absolute;
	top: 20px;
	right: 40px;
	width: 30px;
	height: 20px;
}

.nav-bars{
	width: 30px;
	height: 4px;
	background: #000;
}

.nav-bars::before,
.nav-bars::after{
	content: '';
	position: absolute;
	width: 30px;
	height: 4px;
	background: #000;
}

.nav-bars::before{
	margin-top: 9px;
}

.nav-bars::after{
	margin-top: 18px;
}

nav{
	position: absolute;
	width: 100%;
	height: 70px;
	/* background: #000; */
  background: linear-gradient(180deg, #000000 0%, #000000a8 100%),url(../img/a-2.jpg);
  background-position: top;
  background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	right: -200vw;
  top: 0;
}

nav ul {
	list-style: none;
  padding: 5rem;
}

nav ul li{
  margin: 20px 0;
  text-align: right;
}

nav ul li a{
	color: #fafafa;
	font-size: 2em;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	opacity: 0;
	pointer-events: none;
}

nav ul li a:after{
	content: '';
	width: 100%;
	position: absolute;
	height: 3px;
	border-radius: 5px;
	background: #fff;
	bottom: -10px;
	left: 0;
	transform-origin: left;
	transition: transform .5s ease;
	transform: scaleX(0);
}


nav ul li a:hover:after{
	transform: scaleX(1);
}
nav .row {
    height: 100%;
}
nav .close {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 5%;
	right: 5%;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
}

nav .bar-logo{
	width: 300px;
	position: absolute;
	top: 5px;
	left: 5%;
	cursor: pointer;
	pointer-events: none;
}

nav h2{
	position: absolute;
	top: 5%;
	left: 5%;
	opacity: 0;
	pointer-events: none;
	color: #fff;
	font-size: 2em;
}

nav .close div::before,
nav .close div::after{
	content: '';
	position: absolute;
	width: 30px;
	height: 4px;
	background: #fff;
	transition: background .5s ease;
}
nav .close div::before{
	transform: rotate(-45deg);
}

nav .close div::after{
	transform: rotate(45deg);
}

nav .close:hover div::before,
nav .close:hover div::after{
	background: rgb(209, 3, 3);
}

.menu-list{
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
}
.menu-list-item{
  padding: 1rem;
}
.menu-list-item a{
  font-weight: 600;
  font-size: 20px;
  color: var(--btn-color);
}
.menu-list-item a:hover{
  color: var(--primary-color);
}

.brand-logo{
  width: 310px;
  height: 60px;
}
.brand-logo img{
  height: 100%;
}

/* navigation ends */

.inner-page-banner_main{
  padding-top: 60px;
  /*border-bottom: 10px solid var(--primary-color);*/
}

.news_main{
  margin-top: 4rem !important;
}

/* owl crousal */


.owl-carousel .item img{
  aspect-ratio: 3/2.2;
}
.owl-carousel .item{
  padding: 20px;
}
.owl-carousel .item .owl-img-container{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 5px;
  overflow: hidden;
}
.owl-news-card{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 5px;
  overflow: hidden;
}
.owl-news-card-body{
  padding: 1rem;
  font-size: 20px;
  height: 80px;
}
.owl-news-card-body p{
  direction: ltr;
}
/* owl crousal ends */

.line-banner-container{
  margin-top: 2rem;
}

/* header slider */
.owl-carousel .owl-stage-outer{
  height: 100%;
}
.owl-carousel .owl-stage{
  height: 100%;
}
.owl-carousel.owl-drag .owl-item{
  height: 100%;
}
.owl-carousel .item{
  height: 100%;
}
.owl-img-box{
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-height: 500px;
}
.owl-carousel-header{
  margin-top: 60px;
}
.owl-carousel-header img{
  aspect-ratio: unset !important;
  height: 100%;
  border-radius: none !important;
}

/* header slider ends */

/* about  */

.about-title{
  font-size: 35px;
  font-weight: 900;
  color: var(--btn-color);
  margin-bottom: 10px;
}
.about-text{
  color: #000;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 1rem;
}
.about-img-container-main{
    
}
.about-img-container{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  overflow: hidden;
  height: 100%;
}
.about-img-container img{
}

/* about end */

/* gallery */

.ag-photo-gallery_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ag-photo-gallery_item {
  width: 32%;
  margin-bottom: 1.5rem;
}
.ag-photo-gallery_figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ag-photo-gallery_img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}
.ag-photo-gallery_item{
  border: 5px solid var(--primary-color);
  overflow: hidden;
}
.ag-photo-gallery_item figure{
  transition: all 0.3s ease-in-out;
}
.ag-photo-gallery_item figure:hover{
  scale: 1.1;
}

/* gallery ends */

.gallery-slider_wrapper .owl-carousel .item{
  padding: 5px;
}
.gallery-slider_wrapper{
  width:100%;
  margin:auto;
}
.single-gallery-carousel-thumbnail-box{
  /* padding: 0 4rem; */
  margin: 0 auto;
}
.single-gallery-carousel-thumbnail-box img{
  border-radius: 10px;
  object-fit: cover;
}
.single-gallery-carousel-content-box{
  padding: 0 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.single-gallery-carousel-content-box img{
  border-radius: 10px;
  object-fit: cover;
  object-position: top;
  height: 600px;
  border: 5px solid var(--primary-color);
}
.gallery-slider_wrapper .single-gallery-carousel-thumbnail-box .item {
    position: relative;
    margin: 0 5px;
    height: auto;
}
.gallery-slider_wrapper .single-gallery-carousel-thumbnail-box .item img {
    height: 100%;
    cursor: pointer;
}

#ninja-slider {
  width: 100%;
  height: 100%;
  background-color: #fff;
}
#ninja-slider .slider-inner,
#ninja-slider li,
#ninja-slider ul,
#ninja-slider .ns-img{
  height: 100%;
}
#thumbnail-slider{
  height: 570px;
}
#thumbnail-slider .thumb {
  background-size: cover !important;
}
#ninja-slider .ns-img {
  background-size: cover !important;
}
#thumbnail-slider div.inner{
  padding: 0 !important;
}
#thumbnail-slider ul li{
  filter: grayscale(0);
}
#thumbnail-slider div.inner{
  background-color: #fff;
}
#thumbnail-slider-prev, #thumbnail-slider-next{
  width: 145px;
  right: 0;
}


/* owl crousal */

.owl-carousel .item img{
  aspect-ratio: 3/2.2;
}
.owl-carousel .item{
  padding: 20px;
}
.owl-carousel .item .owl-img-container{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 5px;
  overflow: hidden;
}
.owl-news-card{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 5px;
  overflow: hidden;
}
.owl-news-card-body{
  padding: 1rem;
  font-size: 20px;
  height: 80px;
}
.owl-news-card-body p{
  direction: ltr;
}
/* owl crousal ends */

.line-banner-container{
  margin-top: 2rem;
}

/* header slider */
.owl-carousel .owl-stage-outer{
  height: 100%;
}
.owl-carousel .owl-stage{
  height: 100%;
}
.owl-carousel.owl-drag .owl-item{
  height: 100%;
}
.owl-carousel .item{
  height: 100%;
}
.owl-img-box{
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-height: 500px;
}
.owl-carousel-header{
  margin-top: 60px;
}
.owl-carousel-header img{
  aspect-ratio: unset !important;
  height: 100%;
  border-radius: none !important;
}

/* header slider ends */

/* about  */

.about-title{
  font-size: 35px;
  font-weight: 900;
  color: var(--btn-color);
  margin-bottom: 10px;
}
.about-text{
  color: #000;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 1rem;
}
.about-img-container{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  overflow: hidden;
  height: 100%;
}
.about-img-container img{
  height: 100%;
}

/* about end */

/* gallery */

.ag-photo-gallery_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ag-photo-gallery_item {
  width: 32%;
  margin-bottom: 1.5rem;
}
.ag-photo-gallery_figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ag-photo-gallery_img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}
.ag-photo-gallery_item{
  border: 5px solid var(--primary-color);
  overflow: hidden;
}
.ag-photo-gallery_item figure{
  transition: all 0.3s ease-in-out;
}
.ag-photo-gallery_item figure:hover{
  scale: 1.1;
}

/* gallery ends */

.footer_main{
  padding: 0 3rem;
  margin-top: 50px;
  background-color: var(--primary-color);
  color: #fff;
}
.footer_main .container{
    padding: 2rem 0;
    border: 2px solid var(--primary-color);
    border-bottom: none;
}
.footer-bottom-bar{
      /*background-color: var(--primary-color);*/
      padding: 1rem 3rem;
}
.footer-bottom-bar p{
    color: var(--primary-color);
}
.footer-bottom-bar .text-right{
    text-align: right;
}
.footer-logo{
  width: 100%;
}
.footer-logo img{
  width: 100%;
}
.footer-text{
  height: 100%;
  display: flex;
  align-items: center;
}
.footer-text p{
  font-size: 20px;     
  font-weight: 400;
}
.footer-social-container{
  display: flex;
  font-size: 30px;
  padding: 2rem 0;
  align-items: center;
  justify-content: center;
}
.footer-social{
    display: flex;
    margin-left: 10px;
    padding-bottom: 0;
}
.footer-social-nav{
    display: flex;
    justify-content: end;
    padding: 0;
}
.footer-social a{
  display: block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  color: var(--primary-color);
  margin-right: 10px;
  text-align: center;
  padding: 1.5rem;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.footer-social-nav a{
  display: block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  color: var(--primary-color);
  text-align: center;
  padding: 1.2rem;
  margin-left: 10px;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.footer-menu{
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-menu-list-item a{
    padding: 0 1rem;
    color: #fff;
    font-size: 24px;
}
.gallery-slider_wrapper .owl-carousel .item{
  padding: 5px;
}
.gallery-slider_wrapper{
  width:100%;
  margin:auto;
}
.single-gallery-carousel-thumbnail-box{
  /* padding: 0 4rem; */
  margin: 0 auto;
}
.single-gallery-carousel-thumbnail-box img{
  border-radius: 10px;
  object-fit: cover;
}
.single-gallery-carousel-content-box{
  padding: 0 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.single-gallery-carousel-content-box img{
  border-radius: 10px;
  object-fit: cover;
  object-position: top;
  height: 600px;
  border: 5px solid var(--primary-color);
}
.gallery-slider_wrapper .single-gallery-carousel-thumbnail-box .item {
    position: relative;
    margin: 0 5px;
    height: auto;
}
.gallery-slider_wrapper .single-gallery-carousel-thumbnail-box .item img {
    height: 100%;
    cursor: pointer;
}

#ninja-slider {
  width: 100%;
  height: 100%;
  background-color: #fff;
}
#ninja-slider .slider-inner,
#ninja-slider li,
#ninja-slider ul,
#ninja-slider .ns-img{
  height: 100%;
}
#thumbnail-slider{
  height: 570px;
}
#thumbnail-slider .thumb {
  background-size: cover !important;
}
#ninja-slider .ns-img {
  background-size: cover !important;
}
#thumbnail-slider div.inner{
  padding: 0 !important;
}
#thumbnail-slider ul li{
  filter: grayscale(0);
}
#thumbnail-slider div.inner{
  background-color: #fff;
}
#thumbnail-slider-prev, #thumbnail-slider-next{
  width: 145px;
  right: 0;
}



/*  carousel */


.carousel.pointer-event{
  margin-bottom: 7rem !important;
}
.carousel-item {
	height: 100vh;
	min-height: 300px;
}

.bg-1 {
	background-image: url(img/1.jpg);
}

.bg-2 {
	background-image: url(img/2.jpg);
}

.bg-3 {
	background-image: url(img/3.jpg);
}

.bg-1,
.bg-2,
.bg-3 {
	-webkit-background-size: cover;
	background-size: cover;
}

.carousel-caption {
	bottom: 220px;
	z-index: 2;
}

.carousel-caption h5 {
	font-size: 85px;
	text-transform: capitalize;
	letter-spacing: 2px;
	margin-top: 25px;
	font-family: 'Moon Dance', cursive;
}

.carousel-caption p {
	width: 60%;
	margin: auto;
	font-size: 18px;
	line-height: 1.9;
}


.carousel-caption a {
	text-transform: uppercase;
	text-decoration: none;
	padding: 5px 20px;
	display: inline-block;
	color: #fff;
	margin-top: 15px;
	border-radius: 5px;
}

.carousel-inner:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0);
	z-index: 1;
}

.carousel-indicators {
	bottom: -100px;
}

.carousel-indicators button {
	width: 100px !important;
  height: 60px !important;
}
.carousel-indicators button img{
  width: 100%;
  height: 100%;
}
.about-text .gap{
  display: block;
}

.section-title.text-left{
  justify-content: start;
}

.carousel-indicators {
    padding: 0;
    margin-right: 0%;
    margin-bottom: 1rem;
    margin-left: 0%;
}