*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Lora", serif;
   
}
@font-face{
  font-family:NewYork;
  src: url(../fonts/NewYork.otf);
}
@font-face{
  font-family:openSans;
  src: url(../fonts/miyake-signature.otf);
}
body{
  font-family: "Great Vibes";
}
a{
    text-decoration: none;
}

.btn:focus{
    box-shadow: none;
}
:root{
    --light:#fff;
    --dark: #000;
    --dark-grey:#595959;
    --lighter-white:#f3f8fc;
    --light-grey:#bebebe;
    --golden:#e5b45a;
    --text-color:#4e4c48;

}
h1{
    font-size: 60px;
    color: var(--dark);
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 30px;
    font-family: NewYork;
}
h2{
    font-size: 40px;
    color: var(--dark);
    line-height: 46px;
    margin-bottom: 20px;
    font-family: NewYork;
    
}

h6{
    font-size: 18px;
    color: var(--dark);
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 10px;
    font-family: NewYork;
}
h5{
  color: var(--dark);
  font-size: 22px;
  font-family: NewYork;
}
p{
    font-size: 16px;
    color: var(--text-color);
    text-align: center;
    line-height: 30px;
}
.btn-black{
  padding: 8px 30px;
  color: var(--dark);
  border: 2px solid var(--dark);
  color: var(--dark);
  font-weight: 600;
  transition: all .5s linear;
  border-radius: 0;
}
.btn-black:hover{
  background-color: var(--dark);
  color: var(--light);
}
.btn-light{
  padding: 8px 30px;
  color: var(--light);
  border: 2px solid var(--light);
  color: var(--light);
  font-weight: 600;
  transition: all .5s linear;
  border-radius: 0;
  background-color: transparent;
}
.btn-black:hover{
  background-color: var(--light);
  color: var(--dark);
}
.btn-light i{
  font-size: 14px;
}
  /* whatups=========== */
  .whatup-btn{
    position: fixed;
    bottom: 70px;
    left: 50px;
    z-index: 100;
    font-size: 20px;
    color: var(--golden);
    cursor: pointer;
}
.whatup-btn a img{
    width: 60px;
}

/* scroll-top button================ */
.backToTopBtn {
  position: fixed;
  bottom: 70px;
  right: 50px;
  z-index: 100;
  height: 50px;
  width: 50px;
  font-size: 20px;
  border: none;
  color: var(--golden);
  border-radius: 100%;
  transition: 0.5s;
  cursor: pointer;
  padding: 10px;
  background-color: transparent;
}
.backToTopBtn:not(:hover) {
  border: 2PX solid var(--golden);
}
.backToTopBtn:hover {
  background: var(--golden);
  color: var(--light);
  padding: 10px;
}
.backToTopBtn.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.backToTopBtn:not(.active) {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
/* header================== */
  .header {
    background-color: #fff;
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
    position: fixed;
    width: 100%;
    padding: 15px 0px;
    z-index: 3;
  }
  
  .header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #fff;
  }
  
  .header li a {
    display: block;
    margin: 0px 20px;
    text-decoration: none;
    color: var(--dark-grey);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}
  .header li a:hover,
  .header .menu-btn:hover {
    background-color: #f4f4f4;
  }
  /* .header li a.active{
    color: var(--golden);
  } */
  .header .logo {
    display: block;
    float: left;
    text-decoration: none;
    color: var(--dark-grey);
  }
  .header .logo img {
    width: 100px;
  }
  
  /* menu */
  
  .header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .5s ease-out;
    display: flex;
    align-items: center;
    margin-top: 5px;
  }
  
  /* menu icon */
  
  .header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
  }
  
  .header .menu-icon .navicon {
    background: var(--dark-grey);
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 25px;
  }
  
  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  
  .header .menu-icon .navicon:before {
    top: 8px;
  }
  
  .header .menu-icon .navicon:after {
    top: -8px;
  }
  
  /* menu btn */
  
  .header .menu-btn {
    display: none;
  }
  
  .header .menu-btn:checked ~ .menu {
    max-height: 100vh;
    display: block;
    background: var(--dark);
    left: 0;
    top: 89px;
    position: absolute;
    width: 100%;
    padding: 0;
}
  
  .header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }
  
 /* header===================== */
/* banner==================== */
.banner {
  height: 600px;
  position: relative;
}
.banner img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
/* .banner video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
} */
.banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
}
.bg-video-section video#first {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
}

.banner .home-content {
  position: absolute;
  color: #fff;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.banner .home-content h1{
  color: var(--light);
  font-weight: 300;
  margin-bottom: 0;
  text-transform: capitalize;
}
.banner .home-content h1 span {
  font-family: "Great Vibes";
  font-size: 124px;
  line-height: revert;
  letter-spacing: 1px;
}
.banner .home-content p{
  font-size: 30px;
  color: var(--light);
  line-height: inherit;
  margin-bottom: 30px;
}
.banner .home-content h3{
  font-family: "Great Vibes";
  color: var(--light);
  font-size: 40px;
  margin-bottom: 30px;
}
 /* .wedding-filmmaker=========== */

.wedding-filmmaker{
  padding: 50px 0px;
}
.wedding-filmmaker .inner-text{
  text-align: center;
}
.wedding-filmmaker .inner-text h2{
  font-size: 30px;
}
.wedding-filmmaker .inner-text ul{
  display: flex;
  align-items: center;
  padding-left: 0;
  margin-bottom: 0px;
  justify-content: center;
  margin-top: 30px;
}
.wedding-filmmaker .inner-text ul li{
  list-style: none;
  margin: 0px 20px;
}
.wedding-filmmaker .inner-text ul img{
  object-fit: contain;
  width: 90px;
}
.third{
  padding: 50px 0px;
}

.third .inner-text h2{
  text-align: center;
}
.third .inner-text h2 span{
  font-family: 'Great Vibes';
  font-size: 70px;
  text-transform: capitalize;
}
.third .inner-text .left-content p span{
  font-size: 25px;
  font-style: italic;

}
.third .inner-text .left-content .name{
  text-align: center;
  margin-top: 30px;
}
.third .inner-text .left-content .name h4{
  font-family: newYork;
}
.third .inner-text .right-content video{
  width: 100%;
}


.timeless-film{
  padding: 50px 0px;
  text-align: center;
}

.timeless-film .inner-text .owl-carousel .item video{
  width: 100%;
}

.timeless-film .inner-text p{
  margin-bottom: 40px;
}
.contact-form{
  padding-bottom: 50px;
}
.contact-form .inner-text .left-content img{
  width: 100%;
  filter: grayscale(1);
}
.contact-form2 .inner-text .left-content img{
  width: 100%;
  filter: none;
}
.contact-form .inner-text .right-content form .col-lg-6 .form-control{
  margin-bottom: 30px;
  padding: 12px;
}
.contact-form .inner-text .right-content form .col-lg-6 .form-control:focus{
  box-shadow: none;
  border-color: var(--dark);
}
.contact-form .inner-text .right-content form .col-lg-12 .form-control{
  margin-bottom: 30px;
  padding: 12px;
}
.contact-form .inner-text .right-content form .col-lg-12 .form-control:focus{
  box-shadow: none;
  border-color: var(--dark);
}
.contact-form .slider-social{
  margin-top: 60px;
}
.contact-form .slider-social .owl-carousel .item{
  position: relative;
}
.contact-form .slider-social .owl-carousel .item img{
  width: 100%;
  object-fit: cover;
}
.contact-form .slider-social .owl-carousel .item .box{
  position: absolute;
  top: 50%;
  left: 50%;
 transform: translate(-50%, -50%);
 content: "";
 display: none;
 transition: all .5s linear;
}
.contact-form .slider-social .owl-carousel .item:hover .box {
  color: var(--golden);
  display: block;
}
.contact-form .slider-social .owl-carousel .item:hover  img{
  filter: grayscale(1);
}

.contact-form .slider-social .btn-center{
  margin-top: 40px;
  text-align: center;
}


/* footer====================== */
footer{
  padding: 50px 0px 0px;
  background-color: #000000f2;
}
footer .inner-text{
  padding-bottom: 50px;
}
footer .inner-text .left img{
  width: 120px;
  margin-bottom: 20px;
}
footer .inner-text .left p{
  color: var(--light);
  margin-bottom: 0px;
  text-align: left;
}
footer .inner-text .left ul{
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 30px;
  display: flex;
  align-items: center;
}
footer .inner-text .left ul li{
  margin-right: 20px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--golden);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .5s linear;
}
footer .inner-text .left ul li:hover{
  background-color: var(--light);
}
footer .inner-text .left ul li:hover a i{
  color: var(--golden);
}
footer .inner-text .left ul li a i{
  color: var(--light);
  font-size: 18px;
}
footer .inner-text :is(.middle, .right) h4{
  color: var(--golden);
  margin-bottom: 20px;
}

footer .inner-text .middle ul{
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
}
footer .inner-text .middle ul li{
  list-style: none;
  margin: 10px 0px;
  width: 50%;
}

footer .inner-text .middle ul li a{
  color: var(--light);
  transition: all .3s linear;
}
footer .inner-text .middle ul li a:hover{
  color: var(--golden);
}
footer .inner-text .right ul{
  padding-left: 0;
  margin-bottom: 0;
}
footer .inner-text .right ul li {
  list-style: none;
}
footer .inner-text .right ul li a:hover{
  color: var(--golden);
}
footer .inner-text .right ul li a:hover p{
  color: var(--golden);
}
footer .inner-text .right ul li a{
  list-style: 0;
  margin-top: 30px;
  display: flex;
  color: var(--light);
  transition: all .3s linear;
}
footer .inner-text .right ul li i{
  margin-right: 10px;
  margin-top: 7px;
}
footer .inner-text .right ul li p{
  color: var(--light);
  margin: 0;
  text-align: left;
}
footer p.subfooter{
  padding: 10px 10px;
  text-align: center;
  color: var(--light);
  background-color: var(--dark);
  margin: 0;
}
footer .inner-text2 p.subfooter a{
  color: var(--golden);
}

.bg-video-section{
  position: relative;
  height: 600px;

}
.bg-video-section video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -2;
  }

.bg-video-section .text-content {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translate(-50%, -50%);
}
.bg-video-section .text-content p{
  font-size: 60px;
  color: var(--light);
  font-weight: 300;
  line-height: normal;
  width: 400px;
  font-family: newYork;
}
.bg-video-section .text-content p i{
  font-family: newYork;
}
.portfolio{
  padding:100px 0px
}
.portfolio .carousel-banner .carousel-inner{
  overflow: visible !important;
}

/*.portfolio .carousel-banner .carousel-inner .carousel-item .box{*/
/*    z-index:3;*/
/*    position: relative;*/
/*}*/
.portfolio .carousel-banner .carousel-inner .carousel-item .box img {
  max-width: 48%;
  height: auto;
  display: block;
}
.portfolio .carousel-banner .carousel-inner .carousel-item .box img:first-child {
  content: "";
  position: absolute;
  left: 15%;
  bottom: -10%;
  width: 300px;
}
.portfolio .carousel-banner .carousel-inner .carousel-item .box img:last-child {
  content: "";
  position: absolute;
  right: 15%;
  top: -10%;
  width: 300px;
}
.portfolio .carousel-banner .carousel-inner .carousel-item .carousel-caption{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.portfolio .carousel-banner .carousel-inner .carousel-item .carousel-caption h2{
  margin-bottom: 0;
  font-size: 50px;
  line-height: normal;
  color: var(--light);
}
.portfolio .carousel-banner .carousel-inner .carousel-item .carousel-caption h2 span{
  font-size: 76px;
  font-style: italic;
  font-family: 'Great Vibes';
  text-transform: capitalize;
}
.portfolio p.ptext {
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  margin-top: 100px;
  line-height: inherit;
}
.portfolio .name{
  text-align: center;
}
.portfolio .name{
  margin-top: 30px;
}
.portfolio .name h3{
  font-size: 46px;
  font-style: italic;
  font-family: 'Great Vibes';
  text-transform: capitalize;
}

.portfolio .btn-center{
  text-align: center;
  margin-top: 30px;
}

.faq-ask{
  padding: 50px 0px;
}
.faq-ask .inner-text h2{
  text-align: center;
}
.faq-ask .inner-text p.ptext{
  font-size: 18px;
}
.faq-ask .inner-text .accordion .accordion-item .accordion-header .accordion-button{
  font-size: 24px;
}
.faq-ask .inner-text .accordion .accordion-item .accordion-header .accordion-button:focus{
  box-shadow: 0px 0px 1px 0px var(--dark) !important;
  color: var(--dark);
  margin-bottom: 15px;
}
.faq-ask .inner-text .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  filter: grayscale(1);
}

.timeless-film-section{
  padding: 50px 0px;
}
.timeless-film-section .inner-text h2{
  text-align: center;
}
.timeless-film-section .inner-text p{
  font-size: 18px;
  text-align: center;
  line-height: inherit;
  margin-bottom: 30px;
}
.timeless-film-section .inner-text ul{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-left: 0;
  margin-bottom: 0;
}

.timeless-film-section .inner-text ul li{
  list-style: none;
}
/* wedding blogs=============== */
.wedding-blogs{
  padding: 50px 0px;
}
.wedding-blogs .inner-text h2{
  text-align: center;
}
.wedding-blogs .inner-text p.ptext{
  font-size: 18px;
}
.wedding-blogs .inner-text ul{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  margin-top: 50px;
  padding-left: 0;
  margin-bottom: 0;
}
.wedding-blogs .inner-text ul li{
  list-style: none;
  overflow: hidden;
}
.wedding-blogs .inner-text ul li a{
  cursor: pointer;
}
.wedding-blogs .inner-text ul li a img {
  transition: all .5s ease-in-out;
  height: 600px;
  width: 100%;
  object-fit: cover;
}
.wedding-blogs .inner-text ul li a .box {
  margin-top: 20px;
}
.wedding-blogs .inner-text ul li a .box h5{
  text-align: center;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.wedding-blogs .inner-text ul li a .box p{
  text-align: center;
  margin-bottom: 0;
  font-size: 14px;
  line-height: inherit;
  text-align: justify;
  text-align-last: center;
}
.wedding-blogs .inner-text ul li:hover a img{
  transform: scale(1.03);
  filter: grayscale(1);
}
/* testimonials=============== */
.testimonials .ourcrews{
  background-image: url(../images/testimonials1.jpg) !important;
}
.testimonials .banners{
  padding: 150px 0px;
  background-image: url(../images/testimonials_pics/ABC21188.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.testimonials .banners::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #00000057, #fff0);
  z-index: 0;
}
.testimonials .banners2{
  background-image: url(../images/testimonials_pics/DSCF0875.jpg);
  background-position: center top;
}
.testimonials .banners3{
  background-image: url(../images/testimonials_pics/ASC22604.jpg);
  background-position: center top;
}
.testimonials .banners4{
  background-image: url(../images/testimonials_pics/DSCF1929.jpg);
  background-position: center top;
}
.testimonials .ujjwal{
  background-image: url(../images/blog/PriyanshixUjjwal/DSCF9236.jpg);
  background-position: center bottom;
}
.testimonials .hitesh{
  background-image: url(../images/blog/HiteshxHarshita/ABHI0021.jpg);
  background-position: center bottom;
}
.testimonials .gravit{
  background-image: url(../images/blog/garvitxshraddha/WBK_2774.jpg);
  background-position: center bottom;
}
.testimonials .aman{
  background-image: url(../images/blog/AmanxAkanksha/ASCP2225.jpg);
  background-position: top;
}
.testimonials .daksha{
  background-image: url(../images/blog/DakshaxChanchal/ABHI9032.jpg);
  background-position: bottom;
}

.testimonials .bhupendra{
  background-image: url(../images/blog/BhupendraxManisha/DSC_8060.jpg);
  background-position: bottom;
}

.testimonials .akshit{
  background-image: url(../images/blog/AkshitxAkshi/ASC22600.jpg);
  background-position: top;
}



.testimonials .banners .inner-text p{
  color: var(--light);
  font-size: 40px;
  font-weight: 100;
  line-height: inherit;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  font-family:newYork;
}
.testimonials .banners .inner-text p i{
  font-family:newYork;
}
.testimonials .banners .inner-text  h3{
  text-align: center;
  color: var(--light);
  font-size: 80px;
  position: relative;
  z-index: 1;
  font-family: "Great Vibes";
}

.testimonials .banners .inner-text  .btn-center{
  text-align: center;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.testimonials .second-section{
  padding: 50px 0px;
}
.testimonials .second-section .inner-text  .left-content p{
  color: #00000094;
  font-size: 26px;
  font-weight: 100;
  line-height: inherit;
  margin-bottom: 30px;
  font-family: NewYork;
}
.testimonials .second-section .inner-text  .left-content p i{
  font-family: NewYork;
}
.testimonials .second-section .inner-text  .left-content  span{
  text-align: center;
  font-family: "Great Vibes";
  color: #00000094;
  font-size: 40px;
  display: block;
}
.testimonials .second-section .inner-text  .left-content .btn-center {
  text-align: center;
 margin-top: 30px;
} 
.testimonials .second-section .inner-text  .right-content img{
  max-width: 100%;
}

/* our crew====================== */
.our-crew .team-crew{
  padding: 50px 0px;
}
.our-crew .team-crew .our-team{
  text-align: center;
  cursor: pointer;
}
.our-crew .team-crew .our-team .team_img{
  position: relative;
  overflow: hidden;
}
.our-crew .team-crew .our-team .team_img:after{
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.2);
  position: absolute;
  bottom: -100%;
  left: 0;
  transition: all 0.3s ease 0s;
}
.our-crew .team-crew .our-team:hover .team_img:after{
  bottom: 0;
}
.our-crew .team-crew .our-team img{
  width: 100%;
  height: auto;
   filter: grayscale(1);
}
.our-crew .team-crew .our-team .social{
  padding: 0 0 18px 0;
  margin: 0;
  list-style: none;
  position: absolute;
  top: -100%;
  right: 10px;
  background: var(--golden);
  border-radius: 0 0 20px 20px;
  z-index: 1;
  transition: all 0.3s ease 0s;
}
.our-crew .team-crew .our-team:hover .social{
  top: 0;
}
.our-crew .team-crew .our-team .social li a{
  display: block;
  padding: 15px;
  font-size: 18px;
  color: #fff;
}
.our-crew .team-crew .our-team:hover .social li a:hover{
  color: var(--dark);
}
.our-crew .team-crew .our-team .team-content{
  padding: 20px 0;
  background: #fff;
}
.our-crew .team-crew .our-team .title{
  font-size: 24px;
  font-weight: bold;
  color: var(--dark);
  text-transform: capitalize;
  margin: 0 0 20px;
  position: relative;
  font-family: NewYork;
}
.our-crew .team-crew .our-team .title:before{
  content: "";
  width: 25px;
  height: 1px;
  background: var(--golden);
  position: absolute;
  bottom: -10px;
  right: 50%;
  margin-right: 9px;
  transition-duration: 0.25s;
}
.our-crew .team-crew .our-team .title:after{
  content: "";
  width: 25px;
  height: 1px;
  background:var(--golden);
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: 9px;
  transition-duration: 0.25s;
}
.our-crew .team-crew .our-team:hover .title:before,
.our-crew .team-crew .our-team:hover .title:after{
  width: 50px;
}
.our-crew .team-crew .our-team .post{
  display: inline-block;
  font-size: 18px;
  color:  var(--text-color);
  text-transform: capitalize;
}
.our-crew .team-crew .our-team .post:before{
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--golden);
  margin: 0 auto;
  position: relative;
  top: -13px;
}

/* our-crew-inner=============== */
.our-crew-inner .owl-carousel .item .owl-carousel .item{
  padding: 200px 0px;
   background-color: var(--golden);
  background-image: url(../images/teams/IMG_7222.JPG); 
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.our-crew-inner .owl-carousel .item .owl-carousel .items2{
    background-image: url(../images/teams/IMG_7226.JPG); 
}
.our-crew-inner .owl-carousel .item .owl-carousel .items3{
  background-image: url(../images/teams/IMG_7235.JPG); 
}
.our-crew-inner .owl-carousel .item .owl-carousel .items4{
  background-image: url(../images/teams/IMG_7236.JPG); 
}
.our-crew-inner .owl-carousel .item .owl-carousel .items5{
  background-image: url(../images/teams/IMG_7237.JPG); 
}
.our-crew-inner .owl-carousel .item .owl-carousel .items6{
  background-image: url(../images/teams/IMG_7238.JPG); 
}
.our-crew-inner .owl-carousel .item .owl-carousel .items7{
  background-image: url(../images/teams/IMG_7239.JPG); 
}
.our-crew-inner .owl-carousel .item .owl-carousel .items8{
  background-image: url(../images/teams/IMG_7240.JPG); 
}
.our-crew-inner .owl-carousel .item .owl-carousel .items9{
  background-image: url(../images/teams/IMG_7241.JPG); 
}
.our-crew-inner .owl-carousel .item .owl-carousel .items10{
  background-image: url(../images/teams/IMG_7242.JPG); 
}
.our-crew-inner .owl-carousel .item .owl-carousel .items11{
  background-image: url(../images/teams/IMG_7243.JPG); 
}
.our-crew-inner .owl-carousel .item .owl-carousel .items12{
  background-image: url(../images/teams/IMG_7244.jpg); 
}
.our-crew-inner .owl-carousel .item .owl-carousel .items13{
  background-image: url(../images/teams/crew1.jpg); 
}
.our-crew-inner .owl-carousel .item .owl-carousel .items14{
  background-image: url(../images/teams/crew2.jpg); 
}
.our-crew-inner .owl-carousel .item .owl-carousel .items15{
  background-image: url(../images/teams/crew3.jpg); 
}

.our-crew-inner .owl-carousel .item .owl-carousel .item::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/crew-slider-overlay.png) center center no-repeat;
  background-size: cover;
}


.our-crew-inner .owl-carousel .item .left-content hr{
  height: 1px;
  color: var(--golden);
  opacity: 1;
  position: relative;
  z-index: 1;
}
.our-crew-inner .owl-carousel .item .left-content h3{
  color: var(--light);
  z-index: 1;
  position: relative;
  font-family: NewYork;
} 
.our-crew-inner .owl-carousel .item .left-content h5 {
  color: var(--light);
  font-size: 20px;
  font-family: sans-serif;
  z-index: 1;
  position: relative;
}
.our-crew-inner .owl-carousel .item .left-content .data{
  margin: 20px 0px;
  z-index: 1;
  position: relative;
  padding-right: 20px;
}

.our-crew-inner .owl-carousel .item .left-content .data p{
  text-align: left;
  color: var(--light);
  margin-bottom: 20px;
  line-height: inherit;
}

.our-crew-inner .owl-carousel .item .left-content ul{
  display: flex;
  align-items: center;
  padding-left: 0px;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.our-crew-inner .owl-carousel .item .left-content ul li{
  list-style: none;
  margin-right: 20px;
}
.our-crew-inner .owl-carousel .item .left-content ul li a{
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light);
  transition: all .3s linear;
}
.our-crew-inner .owl-carousel .item .left-content ul li a:hover{
  background-color: var(--golden);
}
.our-crew-inner .owl-carousel .item .left-content ul li a i{
  font-size: 20px;
}

.our-crew-inner .owl-carousel .owl-nav .owl-prev::after{
  position: absolute;
  content: "\f053";
  left: 20px;
  bottom: 50%;
  font-size: 26px;
  font-family: fontawesome;
  color: var(--golden);
}
.our-crew-inner .owl-carousel .owl-nav .owl-next::after{
  position: absolute;
  content: "\f054";
  right: 20px;
  bottom: 50%;
  font-size: 26px;
  font-family: fontawesome;
  color: var(--golden);
}
.our-crew-inner .owl-carousel .owl-nav .owl-prev span{
  display: none;
}
.our-crew-inner .owl-carousel .owl-nav .owl-next span{
  display: none;
}

/* second=============== */
.our-crew-inner .owl-carousel  .owl-nav .owl-prev.disabled{
  opacity: .3;
}
.our-crew-inner .owl-carousel  .owl-nav .owl-next.disabled{
  opacity: .3;
}
.our-crew-inner .owl-carousel .item .owl-carousel .owl-nav .owl-prev span{
  display: none;
}
.our-crew-inner .owl-carousel .item .owl-carousel .owl-nav .owl-next span{
  display: none;
}

.our-crew-inner .owl-carousel .item .owl-carousel .owl-nav .owl-prev span {
  display: none;
}
.our-crew-inner .owl-carousel .item .owl-carousel .owl-nav .owl-next span {
   display: none;
}
.our-crew-inner .owl-carousel .item .owl-carousel .owl-dots {
  text-align: center;
  position: absolute;
  bottom: 33px;
  left: 50%;
  transform: translateX(-50%);
}
.our-crew-inner .owl-carousel .item .owl-carousel .owl-dots .owl-dot{
   height: 15px;
   width: 15px;
   border-radius: 50%;
   background-color: var(--light);
   margin: 0px 5px;
}
.our-crew-inner .owl-carousel .item .owl-carousel .owl-dots .owl-dot.active{
 background-color: var(--golden);
}
/* our crew====================== */

/* gallery======================= */
.gallery{
  padding: 50px 0px;
}
.gallery .inner-text .nav{
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.gallery .inner-text .nav .nav-item{
  width: 15%;
  margin-bottom: 20px;
}
.gallery .inner-text .nav .nav-item .nav-link{
   color: var(--dark);
   font-weight: 500;
   cursor: pointer;
   font-family: newYork;
}
.gallery .inner-text .nav .nav-item .nav-link.active{
  background-color: var(--golden);
}

.gallery .inner-text .tab-content .tab-pane ul{
  padding-left: 0;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.gallery .inner-text .tab-content .tab-pane ul li{
  list-style: none;
}
.gallery .inner-text .tab-content .tab-pane ul li img{
  width: 100%;
}
/* blog-inner css====================== */
.blog-inner-section{
  padding: 50px 0px;
}
.blog-inner-section .row-img img {
  width: 100%;
  transition: all .5s linear;
  height: 100%;
  object-fit: scale-down;
}
.blog-inner-section .row-img img:hover{
  transform: scale(1.02);
}