@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Open+Sans:wght@300;400;500;600;700;800&family=Raleway: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');
:root {
  --main-color: #302a82;
  --second-color: #d80a16;
  --third-color: #282828;
  --heading:'Raleway', sans-serif;
  --sub-heading:'Dancing Script', cursive;
  --text-font: 'Open Sans', sans-serif;
  --swiper-navigation-size: 28px;
}
body{
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
p,span,li,ul,label,i,b{
  font-family: var(--text-font);
}
h1,h2,h3,h4,a{
  font-family: var(--heading);
}
h5,h6{
  font-family: var(--sub-heading);
}
@media (min-width: 1280px){
.container{
    max-width: 1200px;
  }
}
@media (min-width: 1400px){
  .container {
      max-width: 1350px;
  }
}
header{
  background: #fff;
  -webkit-box-shadow:0 10px 30px -15px rgb(255 255 255 / 30%);
          box-shadow:0 10px 30px -15px rgb(255 255 255 / 30%);
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  z-index: 1030;
}
header.darkHeader{
	background: #fff;
	-webkit-transition: all 200ms;
	-o-transition: all 200ms;
	transition: all 200ms;
	position: fixed;
    -webkit-box-shadow: 0 5px 25px -5px rgb(0 0 0 / 35%);
            box-shadow: 0 5px 25px -5px rgb(0 0 0 / 35%);
	-webkit-animation-name: fadeInDown;
	        animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
}

.navbar-brand img{
  width: 150px;
}
.navbar-nav{
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.darkHeader .navbar{padding: 10px 0;}
.navbar-nav .nav-link{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .5px;
  color: #312b82;
}
.navbar-nav .nav-link.active{color: var(--second-color);}
.darkHeader .nav-link{
  color: var(--main-color);
}
.nav-btn{
  padding:12px 25px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .7px;
  background: -o-linear-gradient(45deg, rgb(216 10 22) 0%, rgb(219, 60, 68) 100%);
  background: linear-gradient(45deg, rgb(216 10 22) 0%, rgb(219, 60, 68) 100%);
  -webkit-box-shadow: 0 20px 30px -10px rgba(219, 60, 68, 0.3);
          box-shadow: 0 20px 30px -10px rgba(219, 60, 68, 0.3);
  border-radius: 5px;
  -webkit-transition: background 1s ease;
  -o-transition: background 1s ease;
  transition: background 1s ease;
  position: relative;
  overflow: hidden;
  display: block;
}
.nav-btn::after{
  position: absolute;
  content: '';
  width: 15px;
  height: 140%;
  background-image: -webkit-gradient(linear , left bottom, left top , from(#e2e2e2) ,to(transparent));
  background-image: -o-linear-gradient(bottom , #e2e2e2 ,transparent);
  background-image: linear-gradient(0deg , #e2e2e2 ,transparent);
  right: -20%;
  top: -3%;
  -webkit-transform: rotate(-20deg);
      -ms-transform: rotate(-20deg);
          transform: rotate(-20deg);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.nav-btn:hover.nav-btn::after{right: 110%;}
.nav-btn:hover{
  color: #fff;
  text-decoration: none;
  background: -o-linear-gradient(232deg, rgb(89, 80, 207) 0%, rgb(219, 60, 68) 100%);
  background: linear-gradient(218deg, rgb(89, 80, 207) 0%, rgb(219, 60, 68) 100%);
}
.nav-btn img{
  width: 20px;
  position: relative;
  top: -2px;
}
#hero-section{
  position: relative;
  height: calc(100vh - 91px);
  top: 91px;
  margin-bottom: 91px;
}
.swiper{
  height: 100%;
  overflow: hidden;
}
.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}
.swiper-slide-hero-outer{
  text-align: center;
  max-width: 80%;
  width: 80%;
}
.swiper-slide-hero-outer h5{
  font-size: 24px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  position: relative;
  color: #dbdbdb;
}
.swiper-slide.swiper-slide-active svg{
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(5px);
}
.swiper-slide.swiper-slide-active svg text{
  stroke: #fff;
  font-size:90px;
  font-weight:700;
  stroke-width:1;
  -webkit-animation:animatetext 3.5s linear;
          animation:animatetext 3.5s linear;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
  opacity: 1;
  font-family: var(--heading);
}

@-webkit-keyframes animatetext{
  0%{
    opacity: 0;
    stroke-dasharray: 0 50%;
  }
  100%{
    opacity:1;
    stroke-dasharray: 50% 0%;
  }
}
@keyframes animatetext{
  0%{
    opacity: 0;
    stroke-dasharray: 0 50%;
  }
  100%{
    opacity:1;
    stroke-dasharray: 50% 0%;
  }
}
.swiper-slide-hero-outer h3{
  font-size: 60px;
  font-weight: 600;
  letter-spacing: .6px;
  margin: 10px 0;
  text-transform: capitalize;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-transition-delay: 1.4s;
       -o-transition-delay: 1.4s;
          transition-delay: 1.4s;
  color: #fff;
}
.swiper-slide-hero-outer p{
  font-weight: 400;
  font-size: 24px;
  letter-spacing: .5px;
  text-transform: capitalize;
}

.swiper-slide.swiper-slide-active .swiper-slide-hero-outer h5{  
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

  @-webkit-keyframes fadeInUp {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
    }
      100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
    }
    100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  } 
  .swiper-slide.swiper-slide-active .swiper-slide-hero-outer h3{ 
      -webkit-animation-name: fadeInDown;
      animation-name: fadeInDown;
      -webkit-animation-duration: 1s;
      animation-duration: 1s;
      -webkit-animation-fill-mode: both;
      animation-fill-mode: both;
      -webkit-animation-delay: 1.3s;
              animation-delay: 1.3s;
      text-shadow: 0 5px 20px #604fc7, 0 0px 30px #d9101b;
    }
  @-webkit-keyframes fadeInDown {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  @keyframes fadeInDown {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  } 
.hero-slider .swiper-slide{
  position: relative;
  z-index: 1;
}
.hero-slider .swiper-slide::before{
  position: absolute;
  content: '';
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.55);
  z-index: -1;
}
.hero-slider .swiper-slide.n1slide{
      background-image: url(../images/gallery/gu\ \(5\).jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
}
.hero-slider .swiper-slide.n2slide{
    background-image: url(../images/Banner\ 1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.hero-slider .swiper-slide.n3slide{
    background-image: url(../images/gallery/gu\ \(3\).jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.hero-slider .swiper-button-next, .hero-slider .swiper-button-prev {
  color: #fff;
  background: #00000075;
  width: 30px;
  height: 80px;
  opacity: 0.7;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.hero-slider .swiper-button-next:hover, .hero-slider .swiper-button-prev:hover {
  opacity: 1;
  -webkit-box-shadow: 0 0 3px var(--second-color);
  box-shadow: 0 0 3px var(--second-color);
}
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}
.down-hero-arrow{
  position: absolute;
  bottom: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  z-index: 2;
  background-image: url(../images/icon/way-point-white.svg);
  width: 280px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  height: 40px;
  cursor: pointer;
}
.down-hero-arrow a{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
  color: crimson;
  -webkit-animation: shake infinite;
          animation: shake infinite;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes shake {
  0% {
    top: 30%;
  }
  100% {
    top: 80%;
  }
}
@keyframes shake {
  0% {
    top: 30%;
  }
  100% {
    top: 80%;
  }
}
.down-hero-arrow svg{
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
    width: 25px;
    height: 25px;
}

/*--------about_part-------------*/
/* .abtbg{
  padding:60px 0 30px;
  background-image: url('../images/speaker_bg.png');
}
.abtbg .column-title {
  font-size: 36px;
  font-weight: bold;
  color: #3b1d82;
  position: relative;
  margin-bottom: 35px;
  line-height: 40px;
  text-align: left;
  font-family: 'Raleway', sans-serif;
}
.abtbg .single-intro-text {
  -webkit-box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.08);
  padding: 40px 45px 40px 40px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  overflow: hidden;
  position: relative;
  background: #fff;
  z-index: 2;
  margin-bottom: 30px;
}
.abtbg .single-intro-text i {
  position: absolute;
  right: -10px;
  top: 20px;
  font-size: 55px;
  color: #bababa;
}
.abtbg .ts-title{
  color: #1c1c24;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  margin-top: 0;
}
.abtbg .single-intro-text .count-number {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  background: #e7015e;
  color: #fff;
  display: block;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  padding: 25px 30px;
}
.abtbg .ft{
  padding-bottom: 10px;
  margin:15% 0 5%;
}
.intro-left-content .vmr{
  display: block;
    padding: 8px 20px;
    text-decoration: none;
    color: var(--second-color);
    background: #fff;
    border: 1px solid;
    width: fit-content;
    overflow: hidden;
    transition: all .3s;
    font-size: 18px;
}
.column-title span {
  margin-top: 0;
  display: block;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 26px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
} */

/* About Section */
#about-section{
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  background-image: url(../images/speaker_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-section-outer-wrapper{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  -webkit-box-shadow: 0 10px 20px -5px rgb(0 0 0 / 20%);
          box-shadow: 0 10px 20px -5px rgb(0 0 0 / 20%);
}

.about-section-left-wrapper{
  background-image: url(../images/img-02.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  -webkit-box-shadow: 19px 0px 20px rgb(0 0 0 / 20%);
          box-shadow: 19px 0px 20px rgb(0 0 0 / 20%);
  z-index: 2;
  width: 40%;
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
}
.about-section-right-wrapper{
  padding: 30px 50px;
  width: 60%;
  position: relative;
  background: #f0f8ff85;
  z-index: 1;
}
.about-section-right-wrapper h5{
  font-size: 20px;
  color: var(--second-color);
  letter-spacing: 1px;
  font-weight: 700;
}
.about-section-right-wrapper h3{
  font-size: 40px;
  font-weight: 700;
  letter-spacing: .7px;
  color: #3b34a1;
}
.about-section-right-wrapper p{
  font-size: 15px;
  line-height: 24px;
  letter-spacing: .5px;
}
.about-section-right-wrapper::after{
  position: absolute;
  content: '';
  width: 200px;
  height: 200px;
  background-image: url(../images/icon/abt-bg-icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 0;
  z-index: -1;
  right: 0;
  opacity: .2;
}
/* End About Section */

/* Service Section */
#services-sec{
  position: relative;
  padding: 6rem 0 2.5rem;
  background-image: url(../images/bgsern.jpg);
  background-position: top;  
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
#services-sec::before{
  position: absolute;
  content: '';
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgb(93,93,93);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(59, 42, 46, 0.9)), to(rgb(0, 0, 0)));
  background: -o-linear-gradient(bottom, rgba(59, 42, 46, 0.9) 0%, rgb(0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(59, 42, 46, 0.9) 0%, rgb(0, 0, 0) 100%);
  opacity: .95;
  z-index: -1;
}
.services-sec-left-wrapper {
  text-align: right;
}
.services-sec-left-wrapper ul,.services-sec-right-wrapper ul {
  position: relative;
  padding: 0;
  list-style: none;
}
.services-sec-left-wrapper ul li,.services-sec-right-wrapper ul li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  color: #fff;
}
.services-sec-right-wrapper ul li{
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.ss-right h2{
  font-family: sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #c4c4c4;
  line-height: 32px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.ss-left h4{
  position: relative;
  padding-bottom: 5px;
  border-bottom: 1px solid #646464;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  opacity: .7;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  color: #ffffff;
}
.ss-left p{
  color: #c4c4c4;
}
.ss-right img{
  width: 40px;
}
.services-sec-right-wrapper .ss-left h4{margin-left: 0;}
.services-img{
  text-align: center;
  margin: auto;
  margin-top: 50px;
  width: 320px;
  height: 320px;
  border-radius: 100%;
  overflow: hidden;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-box-shadow: 0 10px 20px -5px rgb(0 0 0 / 30%);
          box-shadow: 0 10px 20px -5px rgb(0 0 0 / 30%);
}
.services-img img{
  width: 320px;
  height: 320px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.services-img:hover.services-img img{-webkit-transform: scale(1);-ms-transform: scale(1);transform: scale(1);}
.services-heaing{
  text-align: center;
  position: relative;
}
.services-heaing h5{
  font-size: 20px;
  color: var(--second-color);
  letter-spacing: 1px;
  font-weight: 600;
  font-family: var(--heading);
}
.services-heaing h3{
  color: #000000;
  font-weight: 500;
  font-size: 40px;
  line-height: 45px;
  margin: 0;
  letter-spacing: 2px;
  font-family: var(--sub-heading);
}
.services-sec-center-wrapper{
  position: relative;
}
.services-sec-center-wrapper::before{
  position: absolute;
  content: 'SERVICES';
  font-size: 80px;
  color: #241c43;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -75px;
  font-weight: 700;
  opacity: .2;
  text-shadow: 0 0 2px #ffffff;
}
.services-sec-left-wrapper ul li:hover .ss-left h4
,.services-sec-right-wrapper ul li:hover .ss-left h4{
  opacity: 1;
  color: var(--second-color);
  border-color: var(--second-color);
}
.services-sec-left-wrapper ul li:hover .ss-right h2
,.services-sec-right-wrapper ul li:hover .ss-right h2{
  opacity: 1;
  color: var(--second-color);
}

/* End Service Section */

/* Quick Inquery */
#quick-contact{
  padding: 4rem 0;
  position: relative;
}
.quick-con-left-wrapper{
  background-image: url(../images/img-02.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  -webkit-box-shadow: 0 10px 20px -5px rgb(0 0 0 / 30%);
          box-shadow: 0 10px 20px -5px rgb(0 0 0 / 30%);
  overflow: hidden;
  border-radius: 20px;
  -webkit-filter: brightness(.6);
          filter: brightness(.6);
}
.quick-con-right-wrapper{
  background-image: url(../images/img-03.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  -webkit-box-shadow: 0 10px 20px -5px rgb(0 0 0 / 30%);
          box-shadow: 0 10px 20px -5px rgb(0 0 0 / 30%);
  overflow: hidden;
  border-radius: 20px;
  -webkit-filter: brightness(.6);
          filter: brightness(.6);
}
.quick-con-center-wrapper{
  position: relative;
  padding-bottom: 40px;
}
.quick-con-center-wrapper::after{
  position: absolute;
  content: 'INQUIRY';
  font-size: 80px;
  color: #f5f5f5;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -75px;
  font-weight: 700;
  opacity: .2;
  text-shadow: 0 0 4px #5f52ff;
}
.quick-form button{
  display: block;
  margin: auto;
  margin-top: 20px;
  background: #5c55a7;
  border: 1px solid transparent;
  outline: none;
  color: #fff;
  padding: 8px 35px;
  border-radius: 0;
}
.quick-form a{
  position: relative;
  display: block;
  text-align: center;
  color: #000;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: .6px;
  font-size: 15px;
}
.quick-form a span{
  color: #de3d24;
}
.quick-form .star{
    color: #de3d24;
}
.quick-form .form-control{
  height: 45px;
  border-radius: unset;
  margin: 5px 0;
  border: 1px solid #e6e6e6;
}
.quick-form{
  position: relative;
  top: 20px;
  padding: 0 20px;
}
.quick-form label{
  font-size: 13px;
  font-weight: 400;
}
.quick-form .form-control:focus,
.quick-form .form-control:hover{
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.1);
          box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-color: #c4c4c4;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/* End Quick Inquery */

/* Footer Section */
footer{
  padding: 4rem 0 0rem;
  background-image: url(../images/dubai.png);
  background-position: center;
  background-repeat: repeat-x;
  background-size: contain;
  position: relative;
  z-index: 1;
  color: #a3a3a3;
  -webkit-box-shadow: 0px -20px 25px rgb(0 0 0 / 8%);
          box-shadow: 0px -20px 25px rgb(0 0 0 / 8%);
}
footer::after{
  position: absolute;
  content: '';
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgb(255,255,255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(0 0 0)), to(rgb(22 4 4)));
  background: -o-linear-gradient(top, rgb(0 0 0) 0%, rgb(22 4 4) 100%);
  background: linear-gradient(180deg, rgb(0 0 0) 0%, rgb(22 4 4) 100%);
  z-index: -1;
  opacity: .9;
}
.footer-sec-logo img{
  width: 200px;
  margin-bottom: 20px;
}
.footer-quicklinks h3, .footer-team h3 ,.footer-contact h1{
  font-size: 26px;
  color: #fff;
}
.footer-quicklinks ul{
  padding-left: 25px;
  list-style: none;
}
.footer-quicklinks ul li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 5px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.footer-quicklinks ul li:hover{
  padding-left: 15px;
}
.footer-quicklinks ul li::before{
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  left: -20px;
  top: 5px;
  background-image: url(../images/icon/right-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.footer-quicklinks ul li a{
  text-decoration: none;
  color: #a3a3a3;
}
.footer-team{
  position: relative;
}
.footer-contact ul{
  padding-left: 18px;
  position: relative;
  list-style: none;
}
.footer-team ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding-left: 0;
  gap: 30px;
}
.footer-contact ul li{
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
}
.footer-contact ul li:after{
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  left: -20px;
  top: 5px;
  background-image: url(../images/icon/user.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.footer-contact ul li:nth-child(1):after{
  background-image: url(../images/icon/location.png);
}
.footer-contact ul li:nth-child(2):after{
  background-image: url(../images/icon/phone.png);
}
.footer-contact ul li:nth-child(3):after{
  background-image: url(../images/icon/email.png);
}
.footer-team ul li h3,.footer-contact ul li h4{
  color: #a3a3a3;
  font-size: 18px;
  line-height: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: none;
}
.footer-team ul li h4,.footer-team ul li p{
  font-size: 15px;
  font-family: sans-serif;
  margin-bottom: 5px;
}
.footer-contact{
  position: relative;
}
.footer-contact p{
  font-size: 14px;
}
.footer-team ul li a{
  font-size: 24px;
  color: #a3a3a3;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.footer-team ul li a:hover{
  color: var(--second-color);
}
.sub-footer{
  background: rgb(63 54 159 / 34%);
  text-align: center;
  padding: 15px 0;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  color: #FFF;
  font-weight: 400;
  font-size: 15px;
}
.sub-footer P{
  margin: 0;
}
/* End Footer Section */

/*--------about_part-------------*/
.mngbtm30{
  margin-bottom: 30px;
}
.abtbg{
  padding:60px 0 30px;
  background-image: url('../images/speaker_bg.png');
}
.abtbg .column-title {
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
  color: #3930a3;
  position: relative;
  margin-bottom: 35px;
  line-height: 40px;
  text-align: left;
  font-family: var(--sub-heading);
}
.abtbg .single-intro-text {
  -webkit-box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.08);
  padding: 40px 45px 40px 40px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  overflow: hidden;
  position: relative;
  background: #fff;
  z-index: 2;
}
.abtbg .single-intro-text i {
  position: absolute;
  right: -10px;
  top: 20px;
  font-size: 55px;
  color: #bababa;
}
.abtbg .ts-title{
  color: #1c1c24;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 22px;
  margin-top: 0;
}
.abtbg .single-intro-text .count-number {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  background: var(--second-color);
  color: #fff;
  display: block;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  padding: 25px 30px;
}
.abtbg .ft{
  padding-bottom: 10px;
  margin:15% 0 5%;
}
/*---------heading-------------*/
.column-title {
  font-size: 36px;
  font-weight: bold;
  color: #3b1d82;
  position: relative;
  margin-bottom: 35px;
  line-height: 29px;
  text-align: left;
  font-family: 'Raleway', sans-serif;
}
.column-title span {
  margin-top: 0;
  display: block;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 26px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
}
.column-title:after {
  right: auto;
  position: absolute;
  left: 0;
  top: 165px;
  content: '';
  background-image: url('../images/title.png');
  background-repeat: no-repeat;
  background-size: center center;
  background-position: contain;
  width: 70px;
  height: 10px;
  margin: auto auto 0;
}
.vmr {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  background: var(--second-color);
  height: 50px;
  padding: 13px 35px;
  line-height: 50px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  margin-top:30px;
}
.vmr:focus {
  outline: none; 
}
.vmr:hover {
  color: #fff;
  background: #d20055;
  -webkit-box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.15); 
}
.count-number img{
  position: absolute;
  width: 45px;
  left: 17px;
  top: 17px;
}
/* End About */
/* Information */
#inform-sec{
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
.inform-sec-outer{
  -webkit-box-shadow: 0 10px 25px -5px rgb(0 0 0 / 20%);
          box-shadow: 0 10px 25px -5px rgb(0 0 0 / 20%);
  overflow: hidden;
}
.inform-sec-outer,.inform-sec-right-outer{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.inform-sec-left-outer{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.inform-sec-right-outer>*,.inform-sec-left-outer>*{height: 300px;}
.inform-sec-outer>* ,.inform-sec-right-outer>*{
  position: relative;
  width: 50%;
}
.inform-sec-outer .inform-sec-left-outer-btmdiv{
  background-image: url(../images/informbg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #fff;
}
.inform-sec-outer .inform-sec-left-outer-btmdiv p{
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .6px;
  color: #ff3d55;
}
.inform-sec-right-outer-top-left{
  background-image: url(../images/event1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-box-shadow: 20px 0px 30px -5px rgb(0 0 0 / 50%);
          box-shadow: 20px 0px 30px -5px rgb(0 0 0 / 50%);
  z-index: 1;
}
.inform-sec-right-outer-btm-right{
  background-image: url(../images/event.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-box-shadow: -20px 1px 30px -10px rgb(0 0 0 / 30%);
          box-shadow: -20px 1px 30px -10px rgb(0 0 0 / 30%);
}
.inform-sec-right-outer-top-right{
  background-color: #372fa0;
  color: #fff;
  padding: 25px 40px;
}
.inform-sec-right-outer-btm-left{
  position: relative;
  padding: 50px 40px;
  background: #fff;
  color: #282828;
}
.inform-sec-left-outer-topdiv{
  padding: 20px;
  position: relative;
  -webkit-box-shadow: inset -20px -15px 20px 5px rgb(0 0 0 / 10%);
          box-shadow: inset -20px -15px 20px 5px rgb(0 0 0 / 10%);
}
.inform-sec-left-outer-topdiv h3{
  font-family: var(--sub-heading);
  color: var(--main-color);
  letter-spacing: .6px;
  font-size: 36px;
}
.inform-sec-left-outer-topdiv P b{
  line-height: 24px;
  font-size: 18px;
}
.inform-sec-left-outer-topdiv P{
  font-size: 15px;
  line-height: 23px;
  color: #000000;
  margin-bottom: 8px;
}
.inform-sec-left-outer-topdiv a{
  font-family: var(--heading);
  font-size: 18px;
  text-decoration: none;
  color: #ff3d55;
}

.inform-sec-right-outer-top-right h3 ,.inform-sec-right-outer-btm-left h3{
  padding-bottom: 30px;
  border-bottom: 1px dashed;
  font-size: 24px;
  letter-spacing: 1px;
  font-family: var(--sub-heading);
  line-height: 30px;
  margin-top: 5px;
}
.inform-sec-right-outer-btm-left p{
  font-size: 15px;
  margin: 0;
}
/* End Information */
/* Galley */
.gallery {
  padding: e;
  position: relative;
  top: -80px;
  z-index: 1;
}

.img-wrapper {
  position: relative;
  margin-top: 15px;
  cursor: pointer;
}

.img-wrapper img {
  width: 100%;
}

.img-overlay {
  background: rgb(255 61 85 / 75%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
}

.img-overlay img {
  width: 40px;
}

.hght {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

#overlay {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1033;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#overlay img {
  margin: 0;
  width: 400px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 2% 5%;
}

@media screen and (min-width: 768px) {
  #overlay img {
      width: 60%;
  }
}

@media screen and (min-width: 1200px) {
  #overlay img {
    width: 600px;
    height: 425px;
    background: #ffffff29;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    -webkit-box-shadow: 0 10px 20px -5px rgb(255 255 255 / 24%);
            box-shadow: 0 10px 20px -5px rgb(255 255 255 / 24%);
  }
}

#nextButton {
  color: #fff;
  font-size: 1em;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
  padding: 5px 8px;
  background: #000;
  border: 2px solid;
  line-height: 14px;
  border-radius: 100%;
}

#nextButton:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  #nextButton {
      font-size: 1em;
  }
}

#prevButton {
  color: #fff;
  font-size: 1em;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
  padding: 5px 8px;
  background: #000;
  border: 2px solid;
  line-height: 14px;
  border-radius: 100%;
}

#prevButton:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  #prevButton {
      font-size: 1em;
  }
}

#exitButton {
  color: #fff;
  font-size: 1em;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: absolute;
  top: 13%;
  right: 26%;
  cursor: pointer;
  padding: 5px 7px;
  background: #000;
  border-radius: 100%;
  border: 2px solid;
  line-height: 14px;
}

#exitButton:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  #exitButton {
      font-size: 1em;
  }
}
.gallery-bannner{
  background-image: url(../images/abcbg.jpg);
  background-position: center;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0 100px;
  color: #fff;
}
.gallery-bannner::before{
  position: absolute;
  z-index: -1;
  content: '';
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .6;
  background: rgb(60,4,7);
  background: -o-linear-gradient(185deg, rgba(60,4,7,1) 0%, rgba(2,8,36,1) 70%);
  background: linear-gradient(265deg, rgba(60,4,7,1) 0%, rgba(2,8,36,1) 70%);
}
.gallery-bannner h3{
  font-family: var(--sub-heading);
  letter-spacing: .6px;
  font-size: 40px;
}
.gallery-bannner p{
  width: 70%;
  font-family: var(--heading);
  font-size: 18px;
}
.gallery-bannner-r{
  position: relative;
}
.gallery-bannner-r::before{
  position: absolute;
  content: 'GALLERY';
  font-size: 80px;
  color: #f5f5f5;
  top: -50px;
  font-weight: 700;
  opacity: .2;
  text-shadow: 0 0 2px #ffffff;
  z-index: -1;
}
.gallery-bannner-r a{
  position: absolute;
  right: 16px;
  top: 60px;
  background-color: var(--main-color);
  color: #fff;
  text-decoration: none;
  padding: 8px 25px;
  letter-spacing: .5px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  border: 1px solid transparent;
  font-weight: 600;
}
.gallery-bannner-r a:hover{
  border-color: var(--main-color);
  color: var(--main-color);
  background-color: #a0aeff;
}
/* Breadcrumb Section */
#breadCrumb_section{
  position: relative;
  background-position: bottom;
  padding: 40px 0 40px;
  color: #fff;
  z-index: 1;
  background-size: cover;
  top: 91px;
  margin-bottom: 91px;
}
.abt-ban{
  background-image: url(../images/B1.jpg);
}
.con-ban{
  background-image: url(../images/B2.jpg);
}
.gal-ban{
  background-image: url(../images/B3.jpg);
}
.ser-ban{
  background-image: url(../images/B4.jpg);
}
.drp-ban{
  background-image: url(../images/B5.jpg);
}
#breadCrumb_section::before{
  position: absolute;
  content: '';
  inset: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(27, 3, 3)), color-stop(70%, rgb(11, 2, 46)));
  background: -o-linear-gradient(bottom, rgb(27, 3, 3) 0%, rgb(11, 2, 46) 70%);
  background: linear-gradient(0deg, rgb(27, 3, 3) 0%, rgb(11, 2, 46) 70%);
  opacity: .5;
}
.breadCrumb_section-outer{
  padding-top: 40px;
  text-align: center;
  position: relative;
}
.breadCrumb_section-outer h1{
  font-family: var(--sub-heading);
    font-size: 50px;
    letter-spacing: 1px;
    text-shadow: 3px 1px 3px rgb(106 106 106);
}
.breadcrumb-outer ul{
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  font-size: 18px;
  font-weight: 500;
  padding-left: 0;
}
.breadcrumb-outer ul li{
  position: relative;
}
.breadcrumb-outer ul li:first-child a{
  text-decoration: none;
  color:var(--second-color);
  font-weight: 600;
}
.breadcrumb-outer ul li:first-child::after{
  position: absolute;
  content: '';
  width: 1.5px;
  height: 90%;
  right: -10px;
  top: 2px;
  background-color: rgb(214, 214, 214);
  -webkit-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
          transform: rotate(10deg);
}
/* End Breadcrumb Section */
/* Product Section */

#prod-sec{
  padding: 4rem 0 2.8rem;
  position: relative;
}
.prod-sec-outer {
  position: relative;
  padding: 20px;
  -webkit-box-shadow: 0 10px 20px -10px rgb(0 0 0 / 15%), inset 5px 9px 20px -9px rgb(0 0 0 / 5%);
          box-shadow: 0 10px 20px -10px rgb(0 0 0 / 15%), inset 5px 9px 20px -9px rgb(0 0 0 / 5%);
  text-align: center;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  margin-bottom: 20px;
  overflow: hidden;
  padding-bottom: 40px;
}
.prod-sec-outer:hover {
  -webkit-box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.25), inset 6px 11px 20px -10px rgb(0 0 0 / 5%);
          box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.25), inset 6px 11px 20px -10px rgb(0 0 0 / 5%);
}
.prod-sec-outer h3{
  text-transform: capitalize;
  font-weight: 400;
  font-size: 20px;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  bottom: 10px;
}
.prod-sec-outer:hover.prod-sec-outer h3{
  bottom: -100px;
}
.prod-sec-outer .svg-icon{
  width: 150px;
  height: 150px;
  margin: 0 auto;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  margin-bottom: 10px;
}
.prod-sec-outer .svg-icon path{
  fill: transparent;
  stroke-width: 40px;
  stroke: var(--main-color);
}
.prod-sec-outer .svg-icon.sofa path{
  stroke-dashoffset: 0;
  stroke-dasharray: 17400;
}
.prod-sec-outer:hover .svg-icon.sofa{
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}
.prod-sec-outer:hover .svg-icon.sofa path{
  -webkit-animation: animate-sofa 1.5s linear forwards alternate;
          animation: animate-sofa 1.5s linear forwards alternate;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}
@-webkit-keyframes animate-sofa{
  0%{
    stroke-dashoffset: 0;
  }
  40%{
    stroke-dashoffset: 17400;
  }
  80%{
    stroke-dashoffset: 34800;
    fill: transparent;
  }
  100%{
    stroke-dashoffset: 34800;
    fill: var(--main-color);
  }
}
@keyframes animate-sofa{
  0%{
    stroke-dashoffset: 0;
  }
  40%{
    stroke-dashoffset: 17400;
  }
  80%{
    stroke-dashoffset: 34800;
    fill: transparent;
  }
  100%{
    stroke-dashoffset: 34800;
    fill: var(--main-color);
  }
}
.prod-sec-outer .quick-inq{
    padding: 5px 20px;
    display: block;
    margin-top: 5px;
    color: #fff;
    text-decoration: none;
    border: 1px solid transparent;
    background: #fa0000;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    -webkit-box-shadow: 0 10px 40px rgb(0 0 0 / 20%);
            box-shadow: 0 10px 40px rgb(0 0 0 / 20%);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: absolute;
    width: 85%;
    bottom: -50px;
}
.prod-sec-outer:hover .quick-inq{
  bottom: 10px;
} 
/* End Product Section */
.chat-icon {
  position: fixed;
  z-index: 99;
  right: 20px;
  bottom: 20px;
}
.chat-icon img {
  width: 45px;
}


#contact-section{
  padding: 4rem 0;
  position: relative;
}
.details-contact-section{
  overflow: hidden;
  padding: 40px 30px 20px;
  -webkit-box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  border-bottom: 3px solid transparent;
  text-align: center;
}
.details-contact-section-img img{
  width: 50px;
  margin-bottom:10px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  position: relative;
}
.details-contact-section-inner{
  height: 100px;
  overflow: hidden;
}
.details-contact-section:hover .details-contact-section-inner .details-contact-section-img img{
  -webkit-transform: translateY(-67px);
      -ms-transform: translateY(-67px);
          transform: translateY(-67px);
  opacity: 0;
}
.details-contact-section-text{
  position: relative;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.details-contact-section:hover .details-contact-section-inner .details-contact-section-text{
  -webkit-transform: translateY(-60px);
      -ms-transform: translateY(-60px);
          transform: translateY(-60px);
}
.details-contact-section:hover{
  /* box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15); */
  -webkit-box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.25);
  border-bottom: 3px solid #3b34a1;
}
.details-contact-section-text ul{
  padding: 0;
  margin: 0;
  font-size: 16px;
}
.details-contact-section-text ul a{
  color: #1c1c24;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  display: block;
  text-decoration: none;
  font-weight: 600;
}
.details-contact-section-text ul a:hover{
  color: var(--main-color);
}
.details-contact-section-text p{
  margin-bottom: 5px;
}
#g-map-sec{
  position: relative;
}
#g-map-sec iframe{
  width: 100%;
  height: 600px;
  position: relative;
}
.g-map-sec-con-wrapper{
  width: 430px;
  height: calc(100% - 40px);
  position: absolute;
  right: 0;
  top: 0;
  background-color: #fff;
  z-index: 10;
  -webkit-box-shadow: 0 20px 30px -10px rgb(0 0 0 / 40%);
          box-shadow: 0 20px 30px -10px rgb(0 0 0 / 40%);
  margin: 20px;
  padding: 25px 30px;
}
.g-map-sec-con-wrapper h3{
  font-weight: 500;
  font-size: 40px;
  line-height: 45px;
  margin: 0;
  margin-bottom: 15px;
  letter-spacing: 2px;
  font-family: var(--sub-heading);
  padding-bottom: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px dashed #c7c7c7;
}
.g-map-sec-con-wrapper p{
  font-size: 14px;
  font-weight: 600;
  color: #646464;
  margin: 15px 0;
}
.g-map-sec-con-wrapper label{
  font-size: 14px;
  font-family: var(--heading);
  letter-spacing: .7px;
  color: #000;
  font-weight: 500;
  text-align: right;
}
.g-map-sec-con-wrapper .form-control {
  height: 45px;
  border-radius: unset;
  margin: 8px 0;
  border: 1px solid #e6e6e6;
}
.g-map-sec-con-wrapper .form-control:focus,
.g-map-sec-con-wrapper .form-control:hover{
  -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 10%);
          box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  border-color: #c4c4c4;
}
.g-map-sec-con-wrapper button{
  background: #fff;
  color: var(--second-color);
  border: 2px solid;
  padding: 6px 20px;
  margin-top: 10px;
  letter-spacing: .6px;
  font-size: 17px;
  font-weight: 600;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.g-map-sec-con-wrapper button:hover{
  background: var(--second-color);
  color: #fff;
  border-color: var(--second-color);
  -webkit-box-shadow: 0 15px 20px -5px rgba(0,0,0,0.3);
          box-shadow: 0 15px 20px -5px rgba(0,0,0,0.3);
}

/* Gallery Page */
#galpage_sec .gallery {
  padding: 4rem 0;
  position: relative;
  top: 0;
  z-index: 15;
}
/* End Gallery Page */


.container.gallery-container {
  background-color: #fff;
  color: #35373a;
  min-height: 100vh;
  padding: 30px 50px;
}

.gallery-container p.page-description {
  text-align: center;
  margin: 25px auto;
  font-size: 18px;
  color: #999;
}
/* Override bootstrap column paddings */
.tz-gallery .row > div {
  padding: 2px;
}
.lightbox{position: relative;display: block;height: 270px;}
.tz-gallery .lightbox img {
  width: 100%;
  border-radius: 0;
  position: relative;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tz-gallery .lightbox:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  opacity: 0;
  color: #fff;
  font-size: 26px;
  font-family: 'Font Awesome 5 Brands';
  content: '\f00e';
  font-weight: 400;
  z-index: 9000;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}


.tz-gallery .lightbox:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(39, 39, 39, 0.7);
  content: '';
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
  opacity: 1;
}
.baguetteBox-button#next-button, .baguetteBox-button#previous-button{
    background: #0000005e;
    border-radius: 0;
}
.baguetteBox-button#close-button{
  background: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 3px solid;
    border-radius: 100%;
    padding: 3px;
    width: 35px;
    height: 35px;
}
.baguetteBox-button#close-button svg{
  position: static;
  margin-left:-1px;
}
/* Menu Toggler */
.menu-toggler-wrapper{
	display: none;
}
#menuToggle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
	position: relative;
	top: 0px;
	z-index: 1;
	-webkit-user-select: none;
	-moz-user-select: none;
	 -ms-user-select: none;
		 user-select: none;
	outline: none;
  }
  
  .navbar-light .navbar-toggler {
	color: rgba(0, 0, 0, 0) !important;
	border-color: rgba(0, 0, 0, 0) !important;
  }
  
  #menuToggle input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 24px;
	height: 18px;
	position: absolute;
	cursor: pointer;
	opacity: 0;
	z-index: 2;
  }
  
  #menuToggle span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 26px;
	height: 3px;
	margin-bottom: 7px;
	position: relative;
	background: #000;
	border-radius: 3px;
	z-index: 1;
	-webkit-transform-origin: 5px 0px;
		-ms-transform-origin: 5px 0px;
			transform-origin: 5px 0px;
	-webkit-transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
		opacity 0.55s ease,
		-webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
	transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
		opacity 0.55s ease,
		-webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
	-o-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
		background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
		opacity 0.55s ease;
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
		background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
		opacity 0.55s ease;
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
		background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
		opacity 0.55s ease,
		-webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  }
  
  #menuToggle span:first-child {
	-webkit-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
			transform-origin: 0% 0%;
  }
  #menuToggle span:last-child {
	margin-bottom: 0;
  }
  #menuToggle span:nth-last-child(2) {
	-webkit-transform-origin: 0% 100%;
		-ms-transform-origin: 0% 100%;
			transform-origin: 0% 100%;
  }
  
  #menuToggle input:checked~span {
	opacity: 1;
	-webkit-transform: rotate(-45deg) translate(-3px, -1px);
		-ms-transform: rotate(-45deg) translate(-3px, -1px);
			transform: rotate(-45deg) translate(-3px, -1px);
	background: rgb(7, 7, 7);
  }
  
  #menuToggle input:checked~span:nth-last-child(2) {
	opacity: 1;
	-webkit-transform: rotate(45deg) translate(-4px, -2px);
		-ms-transform: rotate(45deg) translate(-4px, -2px);
			transform: rotate(45deg) translate(-4px, -2px);
  }
  
  #menuToggle input:checked~span:nth-last-child(3) {
	opacity: 0;
	-webkit-transform: rotate(45deg) translate(-3px, -1px);
		-ms-transform: rotate(45deg) translate(-3px, -1px);
			transform: rotate(45deg) translate(-3px, -1px);
  }
  
  /* end menu toggler */

  #services-sec .services-heaing h3{
    color: #fff;
  }
  .dd-nn{
      display: none;
  }


  .loader_outer {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0px;
    z-index: 9999;
    background: rgba(0,0,0,0.8);
    display: none;
}

.lader_layer {
    width: 100%;
    min-height: 150px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0%,-50%);
        -ms-transform: translate(0%,-50%);
            transform: translate(0%,-50%);
}
.loaderbox 
{
    width: 65px;
    height: 65px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
}

.popouterz {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
}
.popcontainerz {
    width: 100%;
    max-width: 100%;
    margin: 0px auto;
    z-index: 9999;
}
.popupinnerz {
    width: 100%;
    float: left;
    position: relative;
    z-index: 9999;
    padding: 15px35px;
    -webkit-box-shadow: 0 2px 5px #000;
            box-shadow: 0 2px 5px #000;
    height: 100vh;
    min-height: 550px;
}
.ksopd {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    width: 100%;
}
.xxareaposu {
    width: 100%;
    float: left;
    position: relative;
}
.xxinnerxa {
    width: 100%;
    max-width: 399px;
    margin: 0 auto;
}
.xxyyyxzy {
    width: 100%;
    float: left;
    position: relative;
    padding: 25px;
}
a.closez {
    text-decoration: none;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 0;
    top: 0;
    border: 1px solid #fff;
    border-radius: 100px;
    padding: 5px;
}
a.closez img {
    width: 11px;
    position: absolute;
    left: 6px;
    top: 7px;
    margin: 0;
}
.ccclofz {
    width: 100%;
    float: left;
    -webkit-box-shadow: 0px 0px 5px 1px rgb(0 0 0 / 15%);
            box-shadow: 0px 0px 5px 1px rgb(0 0 0 / 15%);
}
.wwxyzare {
    width: 100%;
    float: left;
    position: relative;
    padding: 30px 19px 0;
    background: #fff;
}
.wwxyzare .payxztz {
    text-align: center;
    width: 100%;
    float: left;
}
.wwxyzare h2 {
    color: #23b53f;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 15px;
    width: 100%;
    float: left;
    position: relative;
    padding-top: 85px;
}
.wwxyzare h2 span {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%,0%);
        -ms-transform: translate(-50%,0%);
            transform: translate(-50%,0%);
    width: 100%;
    height: 75px;
}
.wwxyzare h2 img {
    max-width: 95px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
}
.wwxyzare .payxztz p {
    font-size: 14px;
    line-height: 23px;
    margin: 0;
    color: #555;
    width: 100%;
    float: left;
    margin-bottom: 25px;
}
.suxyambk {
    width: 100%;
    float: left;
    margin-top: 0px;
    background: #f7f7f7;
    text-align: center;
}
.suxyambk a {
    display: inline-block;
    color: #555;
    font-size: 15px;
    line-height: 19px;
    font-weight: 600;
    padding: 19px 35px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}