@import url("../css/comman.css");

/* loader  */
.loader-container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000a8;
  z-index: 999999;
  backdrop-filter: blur(14px);
}

.loader-container .loading {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  color: var(--primary-color);
  margin: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.loader-container .loading p{
  font-size: 28px;
  font-family: 'Norden-JRMpm', serif;
  letter-spacing: 2px;
  
}
.loader-container .loading span {
  position: absolute;
  height: 10px;
  width: 84px;
  top: 100px;
  overflow: hidden;
  text-align: center;
  left: -144px;
  right: 0;
  margin: auto;
}
.loader-container .loading span > i {
  position: absolute;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  -webkit-animation: wait 4s infinite;
  -moz-animation: wait 4s infinite;
  -o-animation: wait 4s infinite;
  animation: wait 4s infinite;
}
.loader-container .loading span > i:nth-of-type(1) {
  left: -28px;
  background: yellow;
}
.loader-container .loading span > i:nth-of-type(2) {
  left: -21px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: lightgreen;
}

@-webkit-keyframes wait {
  0%   { left: -7px  }
  30%  { left: 52px  }
  60%  { left: 22px  }
  100% { left: 100px }
}
@-moz-keyframes wait {
  0%   { left: -7px  }
  30%  { left: 52px  }
  60%  { left: 22px  }
  100% { left: 100px }
}
@-o-keyframes wait {
  0%   { left: -7px  }
  30%  { left: 52px  }
  60%  { left: 22px  }
  100% { left: 100px }
}
@keyframes wait {
  0%   { left: -7px  }
  30%  { left: 52px  }
  60%  { left: 22px  }
  100% { left: 100px }
}  
.loader-container .loading img{
  width: 200px;
}

/* dark and light theme css  */
#dark_mode_icon {
  width: 24px;
  padding: 15px 0;
  cursor: pointer;
}
#dark_mode_mobile{
  width: 24px;
  margin-right: 60px;
  cursor: pointer;
}

/* desktop navbar section start  */
.set_desktopNavs{
  position: absolute;
  top: 0;
  z-index: 9;
  width: 100%;
}
.desktop_navbar {
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  padding: 12px 12px;
  border-radius: 20px;
  background: #f0f0f00f;
}
.set_desktopNavs.active .desktop_navbar{
  background: #00556773;
}
.set_desktopNavs.active{
  position: fixed;
  width: 100%;
}
.logo_desktop .logo{
  width: 234px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #c0795c;
}
.desktop_navbar ul li a{
  color: var(--white-color);
  font-weight: 400;
  font-size: 14px;
  padding: 8px 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.set_desktopNavs.anotherpages_set{
  position: relative;
  padding-top: 12px;
}

/* header banner section start  */
.click_litbottom_arrows{
  position: absolute;
  bottom: 40px;
  left: 0;
  z-index: 1;
  right: 0;
  margin: auto;
  text-align: center;
  border: 1px solid var(--secondary-color);
  height: 52px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  border-radius: 50px;
  font-size: 28px;
  -webkit-animation: mover 2s infinite  alternate;
  animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
@keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
.banner__slider .slide {
  position: relative;
  transition: 1s;
}
.banner__slider .slide .slide__img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.banner__slider .slide .slide__img::after{
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: transparent linear-gradient(180deg, #0d0d0d 0%, #0b0b0b 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7 !important;
}
.banner__slider .slide .slide__img img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  animation-duration: 3s;
  transition: all 1s ease;
}
.banner__slider .slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner__slider .slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}
.banner__slider .slide .slide__content--headings .top-title {
  color: var(--secondary-color);
  font-size: 20px;
  font-family: 'Norden-JRMpm', serif;
}
.banner__slider .slide .slide__content--headings .title {
  font-size: 40px;
  font-weight: 500;
  color: var(--white-color);
  line-height: 68px;
  margin-top: 10px;
  text-shadow: 2px 0 #867156, -2px 0 #867156, 0 2px #867156, 0 -2px #867156, 1px 1px #867156, -1px -1px #867156, 1px -1px #867156, -1px 1px #867156;
}
.banner__slider .slide .slide__content--headings .button-custom {
  color: var(--primary-color);
  padding: 14px 52px;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  font-size: 19px;
  font-weight: 400;
  margin-top: 16px;
  transition: all 0.4s;
  clip-path: polygon(0% 0%,calc(100% - 10px) 0%,100% 10px,100% 100%,10px 100%,0% calc(100% - 10px));
  display: inline-block;
  background: var(--white-color);
}
.banner__slider .slide .slide__content--headings .button-custom:hover{
  background: transparent;
}
.banner__slider .slider [data-animation-in] {
  opacity: 0;
  animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
  transition: 1s;
}
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: 25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button:hover, .simple-dots .slick-dots li button:focus {
  opacity: 1;
}
.simple-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}
.stick-dots .slick-dots li {
  height: 3px;
  width: 50px;
}
.stick-dots .slick-dots li button {
  position: relative;
  background-color: white;
  opacity: 0.25;
  width: 50px;
  height: 3px;
  padding: 0;
}
.stick-dots .slick-dots li button:hover, .stick-dots .slick-dots li button:focus {
  opacity: 1;
}
.stick-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}
.stick-dots .slick-dots li.slick-active button:hover, .stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}
/* /////////// IMAGE ZOOM /////////// */
@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
 }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
 }
}
.zoomInImage {
  animation-name: zoomInImage;
}
@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
 }
  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
 }
}
.zoomOutImage {
  animation-name: zoomOutImage;
  transition: 1s;
}
.slick-nav {
  --active: #fff;
  --border: rgba(255, 255, 255, .12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
  z-index: 1;
}
.slick-nav.prev-arrow {
  left: 3%;
  transform: scaleX(-1);
  z-index: 1;
}
.slick-nav.next-arrow {
  left: auto;
  right: 3%;
}
.slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}
.slick-nav i:before, .slick-nav i:after {
  content: '';
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}
.slick-nav i:before {
  transform: rotate(-40deg);
}
.slick-nav i:after {
  transform: rotate(40deg);
}
.slick-nav:before, .slick-nav:after {
  content: '';
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--primary-color);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}
.slick-nav.animate svg {
  animation: stroke 1s ease forwards 0.3s;
}
.slick-nav.animate i {
  animation: arrow 1.6s ease forwards;
}
.slick-nav.animate i:before {
  animation: arrowUp 1.6s ease forwards;
}
.slick-nav.animate i:after {
  animation: arrowDown 1.6s ease forwards;
}
@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
 }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
 }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
 }
}
@keyframes arrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
 }
  23% {
    transform: translateX(17px);
    opacity: 1;
 }
  24%, 80% {
    transform: translateX(-22px);
    opacity: 0;
 }
  81% {
    opacity: 1;
    transform: translateX(-22px);
 }
}
@keyframes arrowUp {
  0%, 100% {
    transform: rotate(-40deg) scaleX(1);
 }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
 }
}
@keyframes arrowDown {
  0%, 100% {
    transform: rotate(40deg) scaleX(1);
 }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
 }
}


/* our specialist cuisine section start  */
.special_listboxed.design_round1{
  border-radius: 20px 20px 0px 0px;
  border: 1px solid var(--black-light-color);
}
.special_listboxed.design_round2{
  border-radius: 0px 0px 20px 20px;
  border: 1px solid var(--black-light-color);
}
.specialist_design11{
  width: 340px;
  position: absolute;
  top: 52px;
  right: -109px;
  transform: rotate(345deg);
  -webkit-animation: mover 2s infinite  alternate;
  animation: mover 2s infinite  alternate;
}
@-webkit-keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
@keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.specialist_design22{
  width: 340px;
  position: absolute;
  bottom: -58px;
  left: -87px;
  -webkit-animation: mover 1.5s infinite  alternate;
  animation: mover 1.5s infinite  alternate;
}

/* our menu section start  */
.menu_tabsfaster ul li button{
  background: transparent !important;
  color: var(--white-light-color);
  font-size: 16px;
  font-weight: 500;
}
.menu_tabsfaster ul li button:hover i{
  animation: shake 1s;
}
.menu_tabsfaster .nav-pills .nav-link.active, .nav-pills .show > .nav-link{
  color: var(--primary-color);
}
.nav-link:hover, .nav-link:focus{
  color: var(--primary-color);
}
.left_foods-com .single-food{
  width: 60px;
  height: 60px;
  border-radius: 100%;
  object-fit: cover;
  border: 2px solid var(--white-color-d);
}
.prise_andnamelist.border-set:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: 0px;
  width: 100%;
  height: 6px;
  border-top: 1px dashed var(--primary-color);
}
@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}
.view_all_menubtn{
  border: 1px solid var(--primary-color);
  color: var(--white-color);
  width: 194px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  border-radius: 4px;
  background: var(--primary-color);
  transition: all 0.5s;
  clip-path: polygon(0% 0%,calc(100% - 10px) 0%,100% 10px,100% 100%,10px 100%,0% calc(100% - 10px));
}
.view_all_menubtn:hover{
  border: 1px solid var(--primary-color);
  background: transparent;
  color: var(--white-color-d);;
  /* background: var(--white-color-d); */
}
.menu_bgdesigns{
  position: absolute;
  left: 0;
  top: 0;
  width: 514px;
  opacity: 0.4;
}
.menu_bgdesigns22{
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.4;
  animation: mover 1.5s infinite  alternate;
}
.menu_tabsfaster .over_flowcontentssets{
  border-top: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  overflow: auto;
}
.menu_tabsfaster .nav{
  flex-wrap: unset;
  width: max-content;
  margin: auto;
}

/* footer section start  */
.footer_logo .logo{
  width: 234px;
}
.footer_boxflower{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 124px;
}
.social_linkfooter ul li a{
  clip-path: polygon(0% 0%,calc(100% - 10px) 0%,100% 10px,100% 100%,10px 100%,0% calc(100% - 10px));
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: transparent;
  color: var(--primary-color);
  font-size: 24px;
  border: 1px solid var(--primary-color);
}
.left_squirs1{
  height: 30px;
  width: 30px;
  background: var(--black-color);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -18px;
  transform: rotate(45deg);
}
.left_squirs2{
  height: 30px;
  width: 30px;
  background: var(--black-color);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -18px;
  transform: rotate(45deg);
}
.custom-tooltip {
  --bs-tooltip-bg: var(--primary-color);
}
.footer_links ul li{
  line-height: 34px;
}
.footer_links ul li a:hover{
  color: var(--primary-color);
}
.color_setfooternumb{
  color: var(--white-color-d) !important;
}
.input_maildiv_svf .input_tyfoter{
  width: 100%;
  height: 48px;
  border-radius: 60px;
  resize: none;
  padding: 11px 50px 11px 26px;
  background: var(--black-light-color);
  border: none;
  font-size: 16px;
  font-weight: 400;
  outline: none;
}
.input_maildiv_svf .btn_sendany{
  height: 40px;
  width: 40px;
  border: 1px solid var(--primary-color);
  border-radius: 100%;
  color: var(--primary-color);
  background: var(--black-color);
  position: absolute;
  right: 3px;
  bottom: 4px;
}
.input_maildiv_svf{
  z-index: 2;
}
.footer_links{
  position: relative;
  z-index: 4;
}
.footer_flowerdivsas{
  position: absolute;
  left: -71px;
  top: 5px;
  transform: rotate(333deg);
  -webkit-animation: topbotomsl 2s infinite  alternate;
  animation: topbotomsl 2s infinite  alternate;
}
.footer_flowerdivsas22{
  position: absolute;
  right: -37px;
  bottom: -80px;
  transform: rotate(333deg);
  z-index: 1;
  -webkit-animation: topbotomsl 2s infinite  alternate;
  animation: topbotomsl 2s infinite  alternate;
}
@-webkit-keyframes topbotomsl {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
@keyframes topbotomsl {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
.copyright_textfance{
  border-top: 1px solid var(--black-light-color);
}
.copyright_textfance h4{
  position: relative;
  z-index: 9;
}
.copyright_textfance h4 a{
  color: var(--primary-color);
}

/* our gallery section start  */
.gallary_images{
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  clip-path: polygon(0% 0%,calc(100% - 20px) 0%,100% 20px,100% 100%,20px 100%,0% calc(100% - 20px));
}
.inner_galarytextd{
  width: 100%;
  height: 320px;
  border-radius: 6px;
  clip-path: polygon(0% 0%,calc(100% - 20px) 0%,100% 20px,100% 100%,20px 100%,0% calc(100% - 20px));
  background: linear-gradient(179deg, rgb(0 0 0 / 13%) -12%, rgb(0 0 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.gallary_multiespic:hover .inner_galarytextd{
  visibility: visible;
}
.mfp-arrow.mfp-arrow-left.mfp-prevent-close::before{
  content: "\f106";
  font-family:'Font Awesome 5 pro', serif;
  font-weight: 400;
}
.mfp-content .mfp-figure button.mfp-close{
  display: none;
}
.mfp-bottom-bar .mfp-title{
  display: none !important;
  color: transparent;
}
img.mfp-img{
  width: 600px;
  height: 440px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  padding: 0px;
}
.mfp-bottom-bar{
  text-align: center;
}
.mfp-counter {
  position: absolute;
  top: -20px;
  right: 0;
  color: var(--white-color-d);
  font-size: 14px;
  line-height: 18px;
  white-space: nowrap;
  left: 0;
  background: #0000005c;
  width: min-content;
  margin: auto;
  padding: 10px 37px;
  border-radius: 40px;
  font-weight: 400;
}
.center_sectionslinesd{
  width: 100%;
  height: 1px;
  background: var(--primary-color);
  position: relative;
}
.center_sectionslinesd::after{
  content: "";
  height: 16px;
  width: 16px;
  background: var(--primary-color);
  display: block;
  position: absolute;
  left: 0;
  top: -8px;
  transform: rotate(45deg);
  -webkit-animation: rotate 5s normal linear infinite;
  animation: rotate 5s normal linear infinite;
}
.center_sectionslinesd::before{
  content: "";
  height: 16px;
  width: 16px;
  background: var(--primary-color);
  display: block;
  position: absolute;
  right: 0;
  top: -8px;
  transform: rotate(45deg);
  -webkit-animation: rotate 5s normal linear infinite;
  animation: rotate 5s normal linear infinite;
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

.view_all_menubtn.moveRight i{
  -webkit-animation: moverRight 2s infinite  alternate;
  animation: moverRight 1s infinite  alternate;
  margin-left: 20px;
}
@-webkit-keyframes moverRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(-8px); }
}
@keyframes moverRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(-8px); }
}

/* whatsapp sticky  */
.wp_leftfixedSetsd .btn-whatsapp-pulse{
  background: #25d366;
  color: var(--white-color);
  position: fixed;
  bottom: 53px;
  left: 32px;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 30px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  z-index: 99991;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

/* about section start  */
.iner_effectaboutcolr .about-img{
  width: 100%;
  height: 268px;
  border-radius: 30px;
  object-fit: cover;
}
.about_contentalltext p{
  line-height: 26px;
}
.about_inner_videosds {
  width: 353px;
  position: relative;
  padding: 28px 0px;
  z-index: 8;
  margin-left: 85px;
}
.about_squir1{
  height: 22px;
  width: 22px;
  background: var(--black-color);
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: -12px;
  transform: rotate(45deg);
}
.about_squir122{
  height: 22px;
  width: 22px;
  background: var(--black-color);
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: -12px;
  transform: rotate(45deg);
}
.about_contentalltext {
  padding-left: 48px;
}
.video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: flex;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 68px;
  height: 68px;
  background: #ba1f24;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 68px;
  height: 68px;
  background: #fa183d;
  border-radius: 50%;
  transition: all 200ms;
}
.video-play-button:hover:after {
  background-color: darken(#fa183d, 10%);
}
.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}
.video-play-button i {
  position: relative;
  z-index: 9;
  font-size: 44px;
  color: var(--white-color);
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.modal_abouotsets .modal-dialog .modal-content{
  background: var(--black-light-color);
  border-radius: 20px;
}
.btn-close.close_videoabout{
  position: absolute;
  right: -7px;
  top: -7px;
  background: var(--primary-color);
  border-radius: 100%;
  height: 36px;
  width: 36px;
  font-size: 24px;
  opacity: 1;
  padding: 0;
  color: var(--white-color);
  z-index: 9;
  box-shadow: none;
}
.modal-body .youtube_videoAbout{
  width: 100%;
  object-fit: cover;
  height: 600px;
  border-radius: 14px;
}

/* services section start  */
.service_main-boxed{
  clip-path: polygon(0% 0%,calc(100% - 20px) 0%,100% 20px,100% 100%,20px 100%,0% calc(100% - 20px));
}
.service_main-boxed .srvparty{
  width: 100%;
  height: 342px;
  object-fit: cover;
  border-radius: 4px;
  clip-path: polygon(0% 0%,calc(100% - 20px) 0%,100% 20px,100% 100%,20px 100%,0% calc(100% - 20px));
  transition: 0.7s;
}
.service_main-boxed:hover .srvparty{
  transform: scale(1.3);
}
.service_main-boxed .text_sevicesetfs{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  padding: 31px 19px 23px 23px;
  background: #0000007a;
  margin-bottom: 14px;
  width: 88%;
  border-radius: 25px;
  -webkit-backdrop-filter: blur(1rem) saturate(400%);
  backdrop-filter: blur(1rem) saturate(400%);
}
.service_backshapede{
  position: absolute;
  right: -98px;
  top: 0;
  width: 800px;
  transform: rotate(-68deg);
}

/* testimonial review section start  */
.items_innerewviews{
  background: var(--black-light-color);
  border-radius: 12px;
  transition: all 0.5s;
  position: relative;
  min-height: 205px;
}
.items_innerewviews::after{
  content: "";
  height: 20px;
  width: 20px;
  background: var(--black-color);
  display: block;
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
.items_innerewviews::before{
  content: "";
  height: 20px;
  width: 20px;
  background: var(--black-color);
  display: block;
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
.review_sliders.owl-theme .owl-dots .owl-dot span{
  margin: 0px 5px;
  height: 6px;
  width: 6px;
  background-color: var(--primary-color);
  opacity: 1;
  border-radius: 100%;
}
.review_sliders.owl-theme .owl-dots .owl-dot.active span,
.review_sliders.owl-theme .owl-dots .owl-dot:hover span{
  outline: 1px solid var(--primary-color);
  border: 5px solid var(--black-color);
  background: var(--primary-color);
  height: 13px;
  width: 13px;
}
.review_sliders.owl-theme .owl-nav.disabled + .owl-dots{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
.bg_testimonialimas{
  position: absolute;
  left: -274px;
  top: -51px;
  width: 696px;
}
.revew_jquitsdsa img{
  width: 94px !important;
  position: absolute;
  right: 3px;
  bottom: -10px;
  transform: rotate(326deg);
  opacity: 0.3;
}

/* event diwali post modal  */
.event_postmodalsds{
  width: 100%;
  border-radius: 20px;
  height: 560px;
  object-fit: cover;
  object-position: top;
}

/* contact us section start  */
.items_ .bread_banners{
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.breadcrumb_bannermains .items_::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: black linear-gradient(174deg, #000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
}
.contents_breadinner{
  position: absolute;
  top: 160px;
  left: 0;
  width: 100%;
}
.contents_breadinner ul li a{
  color: var(--white-color);
}
.contents_breadinner ul .squir_brads{
  height: 10px;
  width: 10px;
  background: var(--primary-color);
  transform: rotate(45deg);
}
.left_inquiry_formmain .heading-forms{
  background: var(--contact-bgColor);
  padding: 27px 40px 30px;
  border-radius: 12px 12px 0px 0px;
}
.inner_forminputmain{
  background: var(--contact-bgColor);
  padding: 22px 40px 35px;
  border-radius: 0px 0px 12px 12px;
}
.center_designinner{
  height: 26px;
  width: 26px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  background: var(--black-light-color);
  bottom: -16px;
  transform: rotate(45deg);
  z-index: 9;
}
.contact_emalskaffn{
  background: var(--contact-bgColor);
  display: flex;
  justify-content: center;
  padding: 10px;
  border-radius: 12px 12px 0px 0px;
  height: 148px;
  padding-top: 44px;
  transition: all 0.3s;
  cursor: pointer;
}
.contact_emalskaffn:hover{
  transform: translateY(-5px);
  background: var(--primary-color);
}
.contact_emalskaffn:hover i,
.contact_emalskaffn:hover p{
  color: var(--white-color);
}
.contact_emalskaffn p{
  word-break: break-all;
}
.google_mapssets iframe{
  width: 100%;
  height: 504px;
  border-radius: 0px 0px 12px 12px;
}
.flower_contactsgvaf {
  position: absolute;
  bottom: -27px;
  right: -31px;
  width: 255px;
  transform: rotate(325deg);
  opacity: 0.4;
}
.addrestop_borders .box_address h4::after{
  content: "";
  height: 1px;
  width: 50px;
  background: var(--primary-color);
  display: inline-block;
}
.addrestop_borders .box_address h4::before{
  content: "";
  height: 1px;
  width: 50px;
  background: var(--primary-color);
  display: inline-block;
}
.addrestop_borders .box_address{
  background: var(--contact-bgColor);
  padding: 27px 40px;
  border-radius: 12px;
}
.box_address p a{
  color: var(--white-color-d);
}