
@import url('../fonts/teko.ttf');
@import url('../fonts/outfit.ttf');
@import url('../fonts/bengali.ttf');
@import url('../fonts/ComicNeue-Regular.ttf');
@font-face {
	font-family: Teko;
  
	src: url(../fonts/teko.ttf);
  }
@font-face {
	font-family: Outfit;
  
	src: url(../fonts/outfit.ttf);
  }
  
@font-face {
	font-family: Bengali;
  
	src: url(../fonts/bengali.ttf);
  }
@font-face {
	font-family: Comic;
  
	src: url(../fonts/ComicNeue-Regular.ttf);
  }
  
body {
    font-family: "Outfit",'Bengali', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #181818;
    color: #fff;
}

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

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0;
    box-shadow: none;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

p {
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Teko",'Bengali', sans-serif;

    font-weight: normal;
    margin-top: 0px;
    font-style: normal;
    font-weight: 500;
}

b,
strong {
    font-weight: 400;
    color: #c88d12;
}

/* preloader */
.loader-wrapper{
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999;
    margin-top: 0px;
    top: 0px;
    background: #c88d12;
}
.loader img{
    width: 100%;
}
.loader {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    width: 300px;
    z-index: 1001;
    transform: translate(-50%, -50% );
    animation: blink 2s infinite;
}
.loaded .loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}
@keyframes blink {
    0%, 50%, 100% {
      opacity: 1;
    }
    25%, 75% {
      opacity: 0;
    }
  }

.loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    background: #2e2e2e;
    width: 51%;
    height: 100%;
    z-index: 1000;
}
.loader-wrapper .loader-section.section-left {
    left: 0;
}
.loader-wrapper .loader-section.section-right {
    right: 0;
}
.loaded .loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded .loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded .loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}

/* navbar */
.navbar {
    background: #181818;
}

.navbar-nav {
    margin-left: auto;
}

.navbar-nav .nav-link {
    font-size: 30px;
    font-weight: 300;
    font-family: "Teko", sans-serif;
    color: #fff;
    padding: 0;
    padding-left: 25px !important;
    padding-right: 25px !important;
}

.navbar-brand {
    width: 200px;
    flex-shrink: 0;
}

.navbar-brand img {
    width: 100%;
}

.navbar-nav .active>.nav-link,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .show>.nav-link {
    color: #c88d12;
}

.nav-item {
    position: relative;
    transition: all 200ms linear;
}

.nav-item:after {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    content: '';
    background-color: #c88d12;
    opacity: 0;
    transition: all 200ms linear;
}

.nav-item:hover:after {
    bottom: 0;
    opacity: 1;
}

.nav-btn {
    background: transparent;
    color: #fff;
    font-size: 16px;
    padding: 8px 30px;
    background: #c88d12;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
    display: block;
    border: 2px solid transparent;
}

.nav-btn:hover {
    background: transparent;
    border: 2px solid #c88d12;
    color: #fff;
}

.navbar-toggler {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    flex-shrink: 0;
}

/* .navbar-toggler:hover{
    background: #c88d12;
} */

.navbar-toggler:focus {
    box-shadow: none;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    animation: slideDown 0.5s ease;
    /* background: #faf2e0; */
    background: #181818;
    z-index: 99;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* banner */
.slider {
    position: relative;
}

.slider.fixed-slider {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.slider .swiper-slide-active {
    z-index: 3;
}

.slider .parallax-slider {
    position: relative;
}

.slider .parallax-slider .swiper-slide {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 50px;
}

.slider .parallax-slider .swiper-slide .bg-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
}

.slider .parallax-slider .swiper-slide-active .caption h1 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.slider .parallax-slider .caption{
    position: absolute;
    left: 40px;
    bottom: 80px;
    z-index: 8;
}

.slider .parallax-slider .caption h1 {
    font-size: 100px;
    font-weight: 400;
    margin-bottom: 5px;
    line-height: 1em;
    color: #fff;
   
 -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    -webkit-transition-delay: .6s;
    -o-transition-delay: .6s;
    transition-delay: .6s;
}

.slider .parallax-slider .swiper-slide-active .caption p {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.slider .parallax-slider .caption p {
    font-size: 20px;
    color: #fff;
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
    -webkit-transition-delay: .8s;
    -o-transition-delay: .8s;
    transition-delay: .8s;
}

.slider .setone {
    position: absolute;
    bottom: 8%;
    right: 40px;
    z-index: 8;
}

.slider .setone .swiper-nav-ctrl {
    color: #fff;
    font-size: 13px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin: 5px 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: static;
}

.slider .setone .swiper-nav-ctrl:hover {

    border: 1px solid rgba(255, 255, 255, 0.9);
}

.slider .setone .swiper-nav-ctrl:after {
    display: none;
}

.slider .setone.setwo {
    position: static;
}

.slider .setone.setwo .swiper-nav-ctrl {
    border-radius: 50%;
}

.slider .setone.setwo .next-ctrl {
    position: absolute;
    top: 45%;
    right: 30px;
}

.slider .setone.setwo .prev-ctrl {
    position: absolute;
    top: 45%;
    left: 30px;
}

.slider .swiper-pagination-fraction {
    display: none;
}

.slider .social-icon {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 8;
}

.slider .social-icon a {
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 12px;
    width: 50px;
    height: 50px;
    display: inline-block;
    line-height: 50px;
}

.slider .social-icon a:hover {
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.slider .bg-1 {
    background: url(../images/banner/banner-1.jpg)no-repeat center;

}

.slider .bg-2 {
    background: url(../images/banner/banner-2.jpg)no-repeat center;

}

.slider .bg-3 {
    background: url(../images/banner/banner-3.jpg)no-repeat center;

}

.slider .bg-4 {
    background: url(../images/banner/banner-4.jpg)no-repeat center;

}

.slider .bg-5 {
    background: url(https://upload.wikimedia.org/wikipedia/commons/8/81/Nirupama_Rajendra_Dance_Theater_musical_Shakunthala.jpg)no-repeat center;

}

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

/* upcoming sec */
.upcoming-wrapper{
    padding-top: 70px;
}
.pr-0 {
    padding-right: 0;
}

.pl-0 {
    padding-left: 0;
}

.upcoming-img {
    width: 100%;
    height: 80vh;

}

.upcoming-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upcoming-text {
    padding: 30px;
    background: #2e2e2e;
    height: 80vh;
    overflow: hidden;
    /* border-left: 1px solid #c88d12; */
}

.event-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.event-head h4 {
    display: inline-block;
    color: #c88d12;
}

.event-head h4:last-child {
    color: #fff;
}

.upcoming-text h2 a {
    color: #fff;
    margin-bottom: 25px;
}

.upcoming-text p {
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 20;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-book {
    color: #fff;
    font-size: 16px;
    padding: 8px 30px;
    background: #c88d12;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-book:hover {
    background: transparent;
    border: 2px solid #c88d12;
    color: #fff;
}

.dot {
    width: 1px;
    height: 15px;
    background: #ffffff4d;
    margin: 0 10px;
    display: inline-block;
}

/* about us */
.section-padding span {
    font-size: 20px;
    line-height: 1.5em;
    color: #c88d12;
    font-weight: 400;
    font-family: 'Comic', 'Bengali', cursive;
}

.line-one {
    -webkit-box-flex: 1;
    flex: 1 0;
    height: 1px;
    background-color: #c88d12;
    display: -webkit-box;
    display: flex;
    margin-top: 13px;
}

.services .item {
    position: relative;
    overflow: hidden;
}
.services .item .pos-rel{
    height: 300px;
    border: 1px solid #c88d12;
}

.services .item img {
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-filter: brightness(100%);
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.services .item .con {
    margin: -80px 20px 75px;
    padding: 14px 15px 10px 15px;
    background-color: #181818 !important;
    border-top: none;
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, .05);
    border-radius: 0;
    overflow: hidden;
    -webkit-transition: .2s cubic-bezier(.3, .58, .55, 1);
    transition: .2s cubic-bezier(.3, .58, .55, 1);
    bottom: -50px;
    position: relative;
}

.services .item .con h5,
.services .item .con h5 a {
    color: #c88d12;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 0;
    text-transform: none;
    margin-bottom: 25px;
}

.con p {
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.services .item:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}

.services .item:hover .con {
    bottom: 0;
}


/* testimonial */
.testimonial-bg {
    background: url(../images/banner/2.jpg)no-repeat center;
    background-attachment: fixed;
    background-size: cover;
}

.testimonial-bg .owl-stage-outer {
    padding: 15px 0;
}

.testimonial-bg .owl-item {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: .8;
    -webkit-transition: all .3s;
    transition: all .3s;
    border-bottom: 3px solid transparent;
}

.testimonial-bg .owl-item.active.center {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    border-bottom: 3px solid #c88d12;
}

.testimonial-bg .item-box {
    background: #2e2e2e;
    padding: 50px 30px;
    position: relative;
}

.testimonial-bg .item-box .quote {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 60px;
    opacity: 0.04;
}

.testimonial-bg .item-box .info {
    margin-top: 30px;
    overflow: hidden;
}

.testimonial-bg .item-box .info .author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    float: left;
}

.testimonial-bg .item-box .info .cont {
    /* margin-left: 75px; */
    margin-top: 15px;
}

.testimonial-bg .item-box .info .cont h6 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 0;
    line-height: 0.75em;
}

.testimonial-bg .item-box .info .cont span {
    font-size: 14px;
    color: #c88d12;
}

.testimonial-bg .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0px;
    line-height: .7;
    position: relative;
}

.testimonial-bg .owl-theme .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    margin: 0 2px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #fff;
}

.testimonial-bg .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #c88d12;
    border: 1px solid #c88d12;
}
.masonry {
    /* Masonry container */
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    padding: 0;
    -moz-column-gap: 1.5em;
    -webkit-column-gap: 1.5em;
    column-gap: 1.5em;
    font-size: 0.85em;
    position: relative;
  }
  .masonry .item-box{
    display: inline-block;
    width: 100%;
    -webkit-transition: 1s ease all;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: 0.3s ease-in-out;
    margin-bottom: 25px;
    position: relative;
  }
/* innerpage banner */
.abt-banner {
    background: url(../images/banner/about-1.jpeg)no-repeat center;
background-size: cover;
}
.gal-banner {
    background: url(../images/banner/gallery-1.JPG)no-repeat center;
background-size: cover;
}
.testi-banner {
    background: url(../images/banner/testimonial-1.JPG)no-repeat center;
background-size: cover;
}
.cont-banner {
    background: url(../images/banner/contact-1.jpeg)no-repeat center;
background-size: cover;
}

.banner-padding {
    height: 65vh;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}

.banner-padding h1 {
    color: #c88d12;
    font-size: 80px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1em;
}

.banner-padding h6 {
    color: #fff;
    font-size: 25px;
    font-family: 'Comic', 'Bengali', cursive;

    line-height: 1em;
}

.about-img .img {
    padding: 0 15px 0 15px;
    position: relative;
}

.about-img .img img {
    position: relative;
    z-index: 2;
    transition: all 0.5s;
    width: 100%;
}

.about-img .img:after {
    content: '';
    width: 90%;
    position: absolute;
    top: 10%;
    bottom: -5%;
    right: -2%;
    z-index: -1;
    background: #c88d12;
}

.about-img img:hover {
    transform: scale(0.95);
}

.team .titem .team-img {
    position: relative;
    overflow: hidden;
    margin: auto;
}

.team .titem .team-img img {
    -webkit-transition: all .5s;
    transition: all .5s;
    width: 100%;
}

.team .titem .team-img:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.team .titem h6 {
    font-size: 25px;
    margin: 20px 0 0 0;
    line-height: 1em;
}

.team .titem span {
    font-size: 20px;
    color: #ACACAC;
    font-family: 'Comic', 'Bengali', cursive;

    word-spacing: -4px;
}

.team .titem .social {
    margin-top: 10px;
    padding: 0;
}


.team .titem .social li {
    display: inline-block;
    background-color: transparent;
    margin-right: 10px;
}

.team .titem .social li i {
    color: #fff;
}

.team .titem .social li a i:hover {
    color: #c88d12;
}

/* gallery */
.gallery-img {
    display: block;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}
.gallery-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.gallery-img::before {
    position: absolute;
    content: "";
    background: none;
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.gallery-img:hover::before {
    content: "\2b";
    font-family: 'fontAwesome';
    z-index: 1;
    color: #fff;
    font-size: 20px;
}

.gallery-img:hover::after {
    background: #000;
    opacity: 0.3;
}
.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* contact us */
.contact__form input[type="password"],
.contact__form input[type="email"],
.contact__form input[type="text"],
.contact__form input[type="file"],
.contact__form textarea {
    max-width: 100%;
    margin-bottom: 15px;
    border-color: #ececec;
    padding: 18px 10px 10px;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 1.5em;
    font-weight: 400;
    color: #ACACAC;
    background-image: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__form input[type="submit"],
.contact__form input[type="reset"],
.contact__form input[type="button"],
.contact__form button {
    text-shadow: none;
    padding: 9px 24px 6px 24px;
    -webkit-box-shadow: none;
    box-shadow: none;
    line-height: 1.75em;
    font-size: 20px;
    font-weight: 400;
    border-style: solid;
    color: #fff;
    border-width: 0;
    -webkit-transition: background-color .15s ease-out;
    transition: background-color .15s ease-out;
    background-color: #c88d12;
    margin: 3px 0;
    font-family: 'Teko', sans-serif;
    outline: none;
    margin-top: 25px;
}

.map-wrapper iframe {
    width: 100%;
    height: 500px;
    border: 0;
}
.info-column a{
    color: #fff;
}
/* footer */
.footer-section h6 {
    display: block;
    margin-bottom: 5px;
    font-size: 35px;
    color: #c88d12;
}

.footer-section p {
    color: #ACACAC;
}
.footer-section p a{
    color: #ACACAC;
}
.btn-cont a {
    background: #c88d12;
    border: 1px solid #c88d12;
    color: #fff;
    padding: 13px 24px;
    margin: 0;
    position: relative;
    display: inline-block;

}

footer .sub-footer {
    padding: 30px 0;
    margin-top: 100px;
    background: #c88d12;
}

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

footer .sub-footer p {
    margin-bottom: 0;
}

footer .sub-footer p a {
    font-size: 16px;
    margin-bottom: 0;
    color: #181818;
    font-weight: 600;
    text-decoration: underline;
}

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

.footer-social-link {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.footer-social-link li {
    display: inline-block;
    background-color: transparent;
    margin-right: 10px;
}

.footer-social-link li i {
    color: #fff;
}

/* back to top */
.totop {
    height: 9px;
    opacity: 0;
    position: fixed;
    right: -60px;
    width: 49px;
    z-index: 999;
    display: block;
    top: 85%;
    background-repeat: no-repeat;
    background-position: center 15px;
    background-color: #c88d12;
    font-size: 9px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 28px 0 21px 0;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    border: 1px solid rgba(255,255,255,0.2);
}
.totop.totop-visible {
    right: 10px;
    opacity: 1;
}
.totop:before {
    position: absolute;
    content: "\f062";
    top: 10px;
    left: 50%;
    margin-left: -6px;
    font-size: 11px;
    display: inline-block;
    font-family: "fontAwesome";
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}
.totop:hover {
    color: #fff;
    background: #c88d12;
    border: 1px solid rgba(255,255,255,0.2);
}
.totop:focus {
    color: #fff;
}


/* random css */
.btn-2 {
    background: #c88d12;
    border: 1px solid #c88d12;
    color: #fff;
    padding: 13px 24px;
    margin: 0;
    position: relative;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.btn-2:hover {
    background: transparent;
    color: #fff;

}
.bg-grey{
    background: #2e2e2e;
}
#ben-sec {
    display: none;
}