/*==================================================
Template Name : Your Storyteller Wedding
Author : Sonu
Version : 1.0
===================================================*/

/*==============================
Google Font
==============================*/

:root {
  --primary: #ff0048;
  --primary-dark: #7d1523;
  --secondary: var(--primary);

  --white: #ffffff;
  --black: #222222;

  --text: #000;
  --light: #fdf8f5;

  --border: #eeeeee;

  --transition: 0.4s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

input,
textarea,
select {
  width: 100%;
  outline: none;
  border: 1px solid var(--border);
  padding: 12px 15px;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
}

textarea {
  resize: none;
}

.container {
  max-width: 1200px;
}

/*==============================
Typography
==============================*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
  color: var(--black);
  margin-bottom: 15px;
  line-height: 1.2;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 34px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 18px;
}

p {
  margin-bottom: 15px;
}

.subtitle {
  font-family: "Great Vibes", cursive;
  color: var(--primary);
  font-size: 38px;
  margin-bottom: 15px;
}

/*=====================================
Premium Wedding Button
======================================*/

.theme-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
  padding: 7px 7px 7px 20px;

  background: #000;

  color: #fff;

  border-radius: 50px;

  overflow: hidden;

  font-size: 13px;
  font-weight: 600;

  transition: 0.45s;
}

/* Shine Effect */

.theme-btn::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 70%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );

  transform: skewX(-25deg);

  transition: 0.8s;
}

.theme-btn:hover::before {
  left: 150%;
}

.theme-btn:hover {
  color: #fff;
  box-shadow: 0 18px 40px rgba(208, 148, 156, 0.4);
  background: #ff0048;
}

.theme-btn i {
  width: 25px;
  height: 25px;
  border-radius: 30px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  color: #000;
}

.theme-btn:hover i {
  background: #fff;
  color: #222;
}

/*=====================================
Outline Button
======================================*/

.outline-btn {
  position: relative;

  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 16px 38px;

  border: 2px solid var(--primary);

  color: #ff0048;

  border-radius: 50px;

  overflow: hidden;

  font-weight: 600;

  transition: 0.45s;
}

.outline-btn::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 0%;
  height: 100%;

  background: linear-gradient(135deg, var(--primary), #f2d46c);

  transition: 0.45s;

  z-index: -1;
}

.outline-btn:hover::before {
  width: 100%;
}

.outline-btn:hover {
  color: #222;

  border-color: var(--primary);

  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
}

.outline-btn i {
  transition: 0.4s;
}

.outline-btn:hover i {
  transform: rotate(-20deg) scale(1.2);
}

/*==============================
Section Heading
==============================*/

.section-title {
  text-align: center;
  margin-bottom: 25px;
}

.section-title span {
  color: var(--primary);
  font-family: "Great Vibes", cursive;
  font-size: 34px;
}

.section-title h2 {
  margin-top: 10px;
}

.section-title p {
  max-width: 650px;
  margin: auto;
}

@media (min-width: 1300px) {
  .container {
    max-width: 1250px;
  }
}
/*==============================
Spacing
==============================*/

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

/*==============================
Background
==============================*/

.bg-light {
  background: var(--light);
}

.bg-primary {
  background: var(--primary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

/*==============================
Scrollbar
==============================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

::-webkit-scrollbar-track {
  background: #f3f3f3;
}

/*==============================
Selection
==============================*/

::selection {
  background: var(--primary);
  color: #fff;
}

/*==============================
Owl Carousel
==============================*/

.owl-nav button {
  width: 45px;
  height: 45px;
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 50% !important;
}

.owl-dots {
  margin-top: 25px;
}

.owl-dot span {
  background: #ddd !important;
}

.owl-dot.active span {
  background: var(--primary) !important;
}

/*=========================
HEADER
=========================*/

.header-area {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  padding: 15px 0;
  transition: 0.4s;

  /*! background: linear-gradient( 0deg, rgba(46, 46, 46, 0) 13%, rgba(0, 0, 0, 0.6) 88% ) !important; */
  /*! backdrop-filter: blur(15px); */
  /*! box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); */
}

.header-area.sticky {
  background: #000 !important;
  backdrop-filter: blur(15px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.desktop-menu {
  width: 42%;
}

.desktop-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;

  /*! flex-direction: column; */
}

.desktop-menu li {
  position: relative;
}

.desktop-menu a {
  font-size: 15px;
  font-weight: 500;
  color: #e7e7e7;
  padding: 17px 0;
  text-transform: capitalize;
}

.desktop-menu a:hover {
  color: var(--primary);
}

.logo {
  width: 16%;
  text-align: center;
}

.logo img {
  height: 70px;
  margin: auto;
  transition: 0.4s;

  object-fit: contain;
}

.header-area.sticky .logo img {
  height: 65px;
}

/* submenu */

.submenu {
  position: absolute;
  left: 0;
  top: 140%;
  width: 270px;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  flex-direction: column;
  text-align: left;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  gap: 10px !important;
}

.dropdown:hover .submenu {
  top: 150%;
  opacity: 1;
  visibility: visible;
}

.submenu li {
  display: block;
}

.submenu a {
  display: block;
  padding: 0;
  color: #222 !important;
  text-transform: none;

  font-size: 15px;
  line-height: 1.2;
  text-transform: capitalize;
}

.submenu a:hover {
  color: var(--primary) !important;
}

/* Mobile */

.mobile-toggle {
  display: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
}

.header-area.sticky .mobile-toggle span {
  background: #fff;
}

/* sidebar */

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 320px;
  height: 100%;
  background: #fff;
  z-index: 99999;
  transition: 0.4s;
  overflow: auto;
}

.mobile-sidebar.active {
  right: 0;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.52);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-top {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-top img {
  height: 65px;
}

.close-menu {
  font-size: 28px;
  cursor: pointer;
}

.mobile-sidebar ul {
  padding: 20px;
}

.mobile-sidebar li {
  border-bottom: 1px solid #eee;
}

.mobile-sidebar a {
  display: block;
  padding: 15px 0;
  font-weight: 500;
  color: #222;
}

.mobile-dropdown ul {
  display: none;
  padding-left: 20px;
}

.mobile-dropdown ul li {
  border: none;
}

/* Responsive */

@media (max-width: 991px) {
  .desktop-menu {
    display: none;
  }

  .logo {
    width: auto;
  }

  .logo img {
    height: 65px;
  }

  .mobile-toggle {
    display: block;
  }
}

/*=====================================
Hero Gallery
======================================*/

.hero-gallery {
  position: relative;
  overflow: hidden;
  padding: 90px 0 0;
  background: url("../images/gallery9.webp") center center/cover no-repeat;
}

.hero-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 15, 30, 0.72);
  backdrop-filter: blur(3px);
}

.hero-gallery .container-fluid {
  position: relative;
  z-index: 2;
}

/*=====================================
Rows
======================================*/

.gallery-row {
  margin: 8px 0;
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 10px;
}

.gallery-right .gallery-track {
  animation: marqueeRight 60s linear infinite;
}

.gallery-left .gallery-track {
  animation: marqueeLeft 60s linear infinite;
}

.gallery-row:hover .gallery-track {
  animation-play-state: paused;
}

/*=====================================
Animation
======================================*/

@keyframes marqueeRight {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeLeft {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/*=====================================
Photo
======================================*/

.gallery-item {
  position: relative;
  flex: none;
  width: 269px;
  padding: 0;
  background: #fff;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
  transition: 0.45s;
  cursor: all-scroll;
}

/* random rotation */

/* .gallery-item:nth-child(3n+1){

    transform: rotate(-4deg);

}

.gallery-item:nth-child(3n+2){

    transform: rotate(3deg);

}

.gallery-item:nth-child(3n+3){

    transform: rotate(-2deg);

} */

/* photo */

.gallery-item img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  display: block;
}

/* tape top */

/* .gallery-item::before,
.gallery-item::after{

    content:"";
    position:absolute;

    width:60px;
    height:22px;

    background:
    repeating-linear-gradient(
        90deg,
        rgba(255,255,255,.18) 0px,
        rgba(255,255,255,.18) 2px,
        transparent 2px,
        transparent 6px
    ),
    linear-gradient(
        180deg,
        #d8a16a 0%,
        #c7844c 50%,
        #b56b35 100%
    );

    border:1px solid rgba(120,70,30,.18);

    box-shadow:
        0 4px 12px rgba(0,0,0,.28),
        inset 0 1px rgba(255,255,255,.25),
        inset 0 -2px rgba(0,0,0,.12);

    opacity:0.98;
}
.gallery-item::before{
    top:-10px;
    right:-18px;
    transform:rotate(34deg);
}

.gallery-item::after{

    bottom:-10px;
    left:-18px;
    transform:rotate(34deg);

} */

/* paper shadow */

.gallery-item span {
  display: none;
}

.gallery-item:after,
.gallery-item:before {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* hover */

.gallery-item:hover {
  z-index: 99;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

/* zoom */

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  transition: 0.5s;
}
.gallery-item {
  transition: 1.5s ease-out;
}
.gallery-item img {
  transform: scale(1);
  transition: 1.5s ease-out;
}
.gallery-item:hover img {
  transform: scale(1.2);
  transition: 1.5s ease-out;
}

/*=====================================
Responsive
======================================*/

@media (max-width: 991px) {
  .hero-gallery {
    padding: 90px 0;
  }

  .gallery-item {
    width: 220px;
  }

  .gallery-item img {
    height: 240px;
  }

  .gallery-track {
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .gallery-item {
    width: 170px;
  }

  .gallery-item img {
    height: 130px;
  }

  .gallery-track {
    gap: 10px;
  }

  .hero-gallery {
    padding: 65px 0 0;
  }

  .gallery-item::before,
  .gallery-item::after {
    width: 60px;
    height: 15px;
  }
}

/*=====================================
About Area
======================================*/

.sec_padding {
  padding: 70px 0;
}
.about_left {
  padding-right: 15px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  display: block;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Content */

.about-content {
  position: relative;
  padding: 50px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Inner Border */

.about-content::before {
  content: "";

  position: absolute;

  inset: 12px;

  border: 1px solid rgba(212, 175, 55, 0.45);

  border-radius: 10px;

  pointer-events: none;
}

/* Floral */

.flower {
  position: absolute;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;

  color: var(--primary);

  font-size: 24px;

  border-radius: 50%;
}

.flower-top-left {
  top: -20px;
  left: -20px;
}

.flower-top-right {
  top: -24px;
  right: -24px;

  transform: rotate(90deg);
}

.flower-bottom-left {
  bottom: -24px;
  left: -24px;

  transform: rotate(-90deg);
}

.flower-bottom-right {
  bottom: -24px;
  right: -24px;

  transform: rotate(180deg);
}

.sub-title {
  font-size: 15px;

  color: #ff0048;

  margin-bottom: 10px;

  font-weight: 500;
  text-align: center;
  display: block;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

.about-content h2 {
  font-size: 35px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
}

.title-line {
  width: 380px;
  height: 60px;

  margin: 20px auto;

  position: relative;
}

/* Left Line */

.title-line::before {
  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: 150px;
  height: 2px;

  background: linear-gradient(to right, transparent, #fff0, #ff0048);
}

/* Right Line */

.title-line::after {
  content: "";

  position: absolute;

  right: 0;
  top: 50%;

  width: 150px;
  height: 2px;

  background: linear-gradient(to left, transparent, #fff0, #ff0048);
}

/* Camera Circle */

.title-line span {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  width: 60px;
  height: 60px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    inset 4px 8px 8px #0000002b,
    4px 8px 8px #0000002e;
  background: #fff;
  color: #ff0048;
  font-size: 20px;
}

/* Camera */

.title-line img {
  width: 34px;

  transition: 0.4s;
}

/* Hover */

.title-line:hover img {
}

.title-line:hover span {
}

.about-content p {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 18px;
  color: #000;
  text-align: center;
  font-family: "Rubik", sans-serif;
}

.about-content strong {
  color: #ff0048;

  font-weight: 600;
}

.cus_bg {
  background-color: beige;
}

/*=========================
Whatsapp Bar
==========================*/

.whatsapp-bar {
  width: 100%;

  background: #fff;

  border-radius: 15px;

  padding: 15px 18px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);

  margin-top: 25px;
}

.whatsapp-icon {
  width: 58px;

  height: 58px;

  border-radius: 50%;

  background: #25d366;

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  font-size: 28px;
}

.whatsapp-info {
  flex: 1;

  padding: 0 18px;
}

.whatsapp-info span {
  display: block;

  font-size: 13px;

  color: #666;

  text-transform: uppercase;

  letter-spacing: 0.5px;
}

.whatsapp-info h4 {
  margin: 4px 0 0;

  font-size: 18px;

  color: #222;

  font-family: "Rubik", sans-serif;
  font-weight: 500;
}

.whatsapp-bar a {
  display: inline-block;

  padding: 12px 26px;

  border-radius: 40px;

  background: linear-gradient(135deg, #25d366, #128c7e);

  color: #fff;

  font-weight: 600;

  transition: 0.35s;
}

.whatsapp-bar a:hover {
  color: #fff;

  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}
.about_btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

/*==================================
Album Card
==================================*/

.album-frame {
  position: relative;

  background: #fff;

  border-radius: 180px 180px 15px 15px;

  overflow: hidden;

  border: 1px solid #000;

  padding: 18px;

  transition: 0.45s;
  box-shadow:
    inset 4px 8px 8px #0000002b,
    4px 8px 8px #0000002e;
  background: #fff;
  margin-right: auto;
  margin-left: auto;
  max-width: 300px;
}

/* Golden Inner Border */

.album-frame::before {
  content: "";

  position: absolute;

  left: 8px;
  right: 8px;
  top: 8px;
  bottom: 8px;

  /*! border:1px solid rgba(156, 28, 45, 0.17); */

  border-radius: 170px 170px 12px 12px;

  pointer-events: none;
}

/*==================================
Image
==================================*/

.album-image {
  height: 240px;
  overflow: hidden;
  width: 240px;
  margin: 15px auto 0;
  background-image: url("../images/circle.png");
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: bottom;
  background-repeat: no-repeat;
}

.album-image img {
  width: 180px !important;
  height: 180px;

  object-fit: cover;

  transition: 0.6s;

  border-radius: 89%;
}

/*==================================
Content
==================================*/

.album-content {
  padding: 15px 0 0;

  text-align: center;
}

.album-content h3 {
  font-size: 20px;

  color: #ff0048;

  margin-bottom: 5px;

  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.25;
}

.album-content p {
  color: #000;

  font-size: 16px;

  margin-bottom: 15px;

  font-family: "Rubik", sans-serif;
}

/*==================================
Hover
==================================*/

.album-frame:hover {
  border-color: #ff0048;
}

/*==================================
Button
==================================*/

.album-content .theme-btn {
  justify-content: center;
}

/*==================================
Owl
==================================*/

.wedding-album-slider .owl-stage {
  padding: 20px 0;
}

.wedding-album-slider .owl-nav {
  margin-top: 0px;

  text-align: center;
}

.wedding-album-slider .owl-prev,
.wedding-album-slider .owl-next {
  width: 40px;

  height: 40px;

  border-radius: 50% !important;

  background: #ff0048 !important;

  color: #fff !important;

  margin: 0 8px;

  transition: 0.4s;
}

.wedding-album-slider .owl-prev:hover,
.wedding-album-slider .owl-next:hover {
  background: #000 !important;
  color: #fff !important;
}

/*==================================
Responsive
==================================*/

@media (max-width: 991px) {
  .album-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .album-image {
    border-radius: 110px 110px 10px 10px;
  }

  .album-frame::before {
    border-radius: 110px 110px 10px 10px;
  }
}

.intro_txt {
  padding: 20px;
  border-radius: 10px;
  font-family: "Rubik", sans-serif;
  color: #000;
  line-height: 1.5;
  background: beige;
  background-size: auto;
  background-size: cover;
}
.intro_txt p {
  margin-bottom: 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
}

/*====================================
WHY US
====================================*/

.why-us {
  position: relative;
}

.why-image {
  position: relative;

  margin-top: 30px;
}

.why-image img {
  width: 100%;

  border-radius: 250px;

  border: 10px solid #fff;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);

  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.why-list {
  display: flex;

  flex-direction: column;

  gap: 25px;

  margin-top: 30px;
}

.why-item {
  display: flex;

  align-items: center;

  gap: 18px;

  padding: 20px;

  background: #fff;

  border-radius: 10px;

  transition: 0.4s;

  border: 1px solid rgba(212, 175, 55, 0.44);

  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.why-item:hover {
  border-color: var(--primary);

  box-shadow: 0 20px 45px rgba(156, 28, 45, 0.12);
}

.why-item i {
  width: 55px;

  height: 55px;

  background: #000;

  color: #fff;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 20px;

  flex-shrink: 0;

  transition: 0.4s;
}

.why-item:hover i {
  background: #ff0048;

  color: #fff;

  transform: rotate(360deg);
}

.why-item h4 {
  margin-bottom: 8px;

  font-size: 20px;
}

.why-item p {
  margin: 0;

  color: #000;

  line-height: 1.3;

  font-family: "Rubik", sans-serif;
  font-size: 16px;
}
.cus_bg2 {
  background-size: cover;
  background-image: url("../images/bg1.png");
  background-repeat: no-repeat;
  background-position: center;
}
.cus_bg22 {
  background-size: cover;
  background-image: url("../images/bg22.png");
  background-repeat: no-repeat;
  background-position: center;
}
.cus_bg2 .intro_txt {
  background: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.cus_bg .intro_txt {
  background: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
/*==================================
Counter Area
==================================*/

.counter-area {
  position: relative;

  padding: 100px 0;

  background: url(../images/gallery2.webp) center center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.counter-overlay {
  position: absolute;

  inset: 0;
  background: rgba(1, 24, 58, 0.83);
}

.counter-area .container {
  position: relative;

  z-index: 2;
}

.counter-box {
  text-align: center;

  padding: 50px 25px 30px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  border: 1px solid #ffffff36;

  border-radius: 10px;

  transition: 0.4s;
}

.counter-box:hover {
  background: rgb(255, 255, 255);
  border-color: #fff;
}
.counter-box:hover .counter-icon::before {
  border: 2px dashed #ff0048;
}
.counter-box:hover h2 {
  color: #ff0048;
}
.counter-icon {
  width: 75px;

  height: 75px;

  margin: auto auto 32px;

  border-radius: 50%;

  background: var(--primary);

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  font-size: 25px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.counter-box h2 {
  font-size: 40px;

  color: #fff;

  margin-bottom: 10px;
}

.counter-box h5 {
  color: #fff;

  font-size: 14px;

  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  background: #000;
  padding: 8px;
  border-radius: 30px;
}

.counter-icon {
  position: relative;
}

.counter-icon::before {
  content: "";

  position: absolute;

  width: 105px;

  height: 105px;

  border: 2px dashed #fff;

  border-radius: 50%;

  animation: rotateRing 12s linear infinite;
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/*=================================
Services
=================================*/

.service-card {
  background: #fff;
  border-radius: 9px;
  overflow: hidden;
  transition: 0.4s;
  margin: 30px 0 0;
  border: 1px solid;
}

.service-card:hover {
  /*! box-shadow:0 25px 55px rgba(156,28,45,.15); */
}

.service-image {
  position: relative;

  height: 220px;

  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: 0.6s;
}

.service-card:hover img {
  transform: scale(1.12);
}

.service-icon {
  position: absolute;
  bottom: -27px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ff0048;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  border: 3px solid #fff;
}

.service-content {
  padding: 20px;
  text-align: center;
}

.service-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary);
}

.service-content p {
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.services-area .owl-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
}

/*==================================
Testimonials
==================================*/

.testimonial-card {
  position: relative;

  background: #fff;

  padding: 45px 30px 30px;

  border-radius: 20px;

  border: 1px solid #e1e1e1;

  margin: 65px 0 0;

  transition: 0.4s;
}

.testimonial-card:hover {
}

.quote-icon {
  width: 70px;
  height: 70px;

  margin: auto;

  background: #ff0048;

  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 26px;

  color: #fff;

  margin-top: -80px;

  margin-bottom: 25px;
}

.rating {
  margin-bottom: 10px;
}

.rating i {
  color: #ff8f00;

  margin: 0px 0px;
}

.testimonial-card p {
  font-style: italic;

  color: #000;

  margin-bottom: 22px;

  line-height: 1.3;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  height: 85px;
  overflow: auto;
}

.client {
  display: flex;

  align-items: center;

  /*! justify-content:center; */

  gap: 15px;

  margin-top: 20px;
}

.client img {
  width: 65px !important;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #000;
}

.client h4 {
  margin-bottom: 2px;

  color: #ff0048;

  font-size: 16px;

  font-family: "Poppins", sans-serif;
}

.client span {
  font-size: 14px;

  color: #000;

  line-height: 1.3;
  font-family: "Rubik", sans-serif;
  text-align: left;
}
.testimonial-area .owl-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
}

/*==========================
FAQ
==========================*/
.faq-area {
  position: relative;
  background: url(../images/gallery6.webp) center center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.faq-area .container {
  position: relative;
  z-index: 2;
}
.faq-area .section-title h2 {
  color: #fff;
}
.faq-image {
  position: sticky;

  top: 100px;
}

.faq-image img {
  width: 100%;

  border-radius: 20px;

  border: 10px solid #fff;

  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.custom-faq .accordion-item {
  margin-bottom: 20px;

  border: none;

  background: #fff;

  border-radius: 10px;

  overflow: hidden;

  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.custom-faq .accordion-button {
  background: #fff;

  padding: 15px 20px;

  font-size: 15px;

  font-weight: 600;

  color: #222;

  box-shadow: none;

  font-family: "Poppins", sans-serif;
}

.custom-faq .accordion-button:not(.collapsed) {
  background: #ff0048;

  color: #fff;
}

.custom-faq .accordion-button::after {
  filter: brightness(0);
}

.custom-faq .accordion-button:not(.collapsed)::after {
  filter: brightness(10);
}

.custom-faq .accordion-body {
  padding: 15px 20px;

  font-size: 16px;

  line-height: 1.5;

  color: #000;

  border-top: 1px solid rgba(212, 175, 55, 0.2);

  font-family: "Rubik", sans-serif;
}
.faq-area .intro_txt {
  margin-bottom: 30px;
}

/*==================================
Blogs
==================================*/

.blog-card {
  background: #fff;

  border-radius: 10px;

  overflow: hidden;

  transition: 0.4s;

  margin-top: 30px;
  display: block;
  border: 1px solid #00000047;
}

.blog-image {
  position: relative;

  height: 270px;

  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.6s;
}

.blog-card:hover img {
  transform: scale(1.12);
}

.blog-image span {
  position: absolute;

  left: 20px;

  top: 20px;

  background: #ff0048;

  color: #fff;

  padding: 8px 18px;

  border-radius: 30px;

  font-size: 13px;
}

.blog-content {
  padding: 22px;

  min-height: 212px;
}

.blog-date {
  display: inline-block;

  margin-bottom: 8px;

  font-size: 12px;

  color: #000;
}

.blog-date i {
  color: #ff0048;

  margin-right: 6px;
}

.blog-content h3 {
  font-size: 17px;

  line-height: 1.35;

  margin-bottom: 10px;

  transition: 0.3s;

  font-family: "Poppins", sans-serif;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-card:hover h3 {
  color: #ff0048;
}

.blog-content p {
  margin-bottom: 10px;

  font-family: "Rubik", sans-serif;
  color: #000;
  line-height: 1.3;
  font-size: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-content .blog_button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff0048;
  font-weight: 600;
  font-size: 15px;
}

.blog-content .blog_button i {
  transition: 0.4s;
}

.blog-content .blog_button:hover i {
  transform: translateX(8px);
}

/*===================================
CTA
===================================*/

/*===================================
CTA
===================================*/

.cta-area {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: #111;
}

/* Video */

.cta-video {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: translate(-50%, -50%);

  z-index: 1;
}

/* Dark Overlay */

.cta-overlay {
  position: absolute;

  inset: 0;

  /*! background:
    linear-gradient(
        rgba(20,10,15,.72),
        rgba(20,10,15,.72)
    ); */

  /*backdrop-filter: blur(2px);*/

  z-index: 2;
}

/* Content */

.cta-area .container {
  position: relative;

  z-index: 5;
}

.cta-box {
  position: relative;
  z-index: 5;
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 50px 35px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(18px);
  border-radius: 15px;
  overflow: hidden;
}

/* Subtitle */

.cta-subtitle {
  display: inline-block;

  font-family: "Great Vibes", cursive;

  font-size: 38px;

  color: var(--primary);

  margin-bottom: 20px;
}

/* Heading */

.cta-box h2 {
  font-size: 41px;

  color: #fff;

  margin-bottom: 15px;

  line-height: 1.2;
}

/* Text */

.cta-box p {
  font-size: 16px;

  line-height: 1.4;

  color: #ddd;

  margin: auto auto 25px;

  font-family: "Rubik", sans-serif;
  font-size: 15px;
  line-height: 1.4;
}

/* Buttons */

.cta-contact {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.cta-call,
.cta-whatsapp {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 8px 25px;

  border-radius: 60px;

  font-weight: 600;

  font-size: 14px;

  transition: 0.4s;

  font-family: "Poppins", sans-serif;
}

.cta-call {
  background: #ff0048;

  color: #fff;
}

.cta-call:hover {
  background: var(--primary);

  color: #222;
}

.cta-whatsapp {
  background: #25d366;

  color: #fff;
}

.cta-whatsapp:hover {
  background: #1aa84d;

  color: #fff;
}

/* Trust */

.trust-line {
  font-size: 18px;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
}

.trust-line i {
  color: #ff4d6d;

  margin-right: 8px;

  animation: heartbeat 1.3s infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.25);
  }
}

@media (max-width: 768px) {
  .cta-box {
    padding: 25px 25px;
  }

  .cta-box h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .cta-box p {
    font-size: 15px;
    line-height: 1.3;
  }
  .cta-contact {
    gap: 12px;
  }
  .cta-contact {
    flex-direction: column;
  }

  .cta-call,
  .cta-whatsapp {
    justify-content: center;

    width: 100%;
  }
}

/*==================================
Footer
===================================*/

.footer-area {
  padding: 90px 0 0;

  color: #bbb;

  position: relative;

  overflow: hidden;

  position: relative;
  
  background-attachment: scroll;
  background-attachment: fixed;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.footer-area .container {
  position: relative;
  z-index: 2;
}
.footer-logo {
  height: 70px;

  margin-bottom: 10px;
}

.footer-widget p {
  margin-bottom: 20px;

  font-family: "Rubik", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.footer-widget h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 30px;
  position: relative;
}

.footer-widget h3::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -10px;

  width: 60px;
  height: 2px;

  background: #ff0048;
}

.footer-widget ul {
  padding: 0;

  margin: 0;

  list-style: none;
}

.footer-widget ul li {
  margin-bottom: 5px;

  font-family: "Rubik", sans-serif;
  font-size: 15px;
  line-height: 1.4;
}

.footer-widget ul li a {
  color: #bbb;

  transition: 0.35s;

  font-family: "Rubik", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.footer-widget ul li a:hover {
  color: var(--primary);

  padding-left: 8px;
}

.footer-contact i {
  width: 24px;

  color: #ff0048;
}

.footer-social {
  display: flex;

  gap: 12px;
}

.footer-social a {
  width: 35px;

  height: 35px;

  border-radius: 50%;

  background: #ffffff21;

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  transition: 0.35s;

  font-size: 14px;
}

.footer-social a:hover {
  background: var(--primary);

  color: #111;

  transform: translateY(-5px);
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.footer-gallery img {
  width: 100%;

  height: 120px;

  object-fit: cover;

  border-radius: 12px;

  transition: 0.4s;
}

.footer-gallery img:hover {
  transform: scale(1.08);
}

.footer-bottom {
  margin-top: 70px;

  padding: 15px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  font-size: 15px;

  position: relative;
  z-index: 9;
}

.footer-bottom i {
  color: #ff5f75;

  animation: heartbeat 1.2s infinite;
}

@media (max-width: 767px) {
  .footer-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    text-align: center;
  }
}

/*==================================
Instagram Gallery
===================================*/

.footer-gallery-area {
  margin-top: 40px;
}

.footer-gallery-head {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 30px;

  flex-wrap: wrap;

  gap: 20px;
}

.footer-gallery-head h3 {
  color: #fff;

  margin: 0;

  font-size: 28px;
}

.footer-gallery-head h3 i {
  color: #ff0048;

  margin-right: 10px;
}

.footer-insta-btn {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 8px 25px;

  border: 1px solid #ff0048;

  border-radius: 50px;

  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  transition: 0.35s;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.footer-insta-btn:hover {
  background: #ff0048;

  color: #fff;
}

.footer-gallery {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 18px;
}

.footer-gallery a {
  position: relative;

  overflow: hidden;

  border-radius: 10px;

  display: block;
}

.footer-gallery img {
  width: 100%;

  height: 180px;

  object-fit: cover;

  transition: 0.6s;
}

.footer-gallery span {
  position: absolute;

  inset: 0;

  background: rgba(156, 28, 45, 0.75);

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  font-size: 36px;

  opacity: 0;

  transition: 0.4s;
}

.footer-gallery a:hover span {
  opacity: 1;
}

.footer-gallery a:hover img {
  transform: scale(1.12);
}

@media (max-width: 991px) {
  .footer-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-gallery {
    grid-template-columns: 1fr 1fr;

    gap: 12px;
  }

  .footer-gallery img {
    height: 140px;
  }

  .footer-gallery-head {
    justify-content: flex-start;
    text-align: center;
  }
}

/*==================================
Floating Buttons
===================================*/

.floating-whatsapp {
  position: fixed;

  left: 25px;
  bottom: 25px;

  width: 50px;
  height: 50px;

  border-radius: 50%;

  background: #25d366;

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  font-size: 26px;

  z-index: 9999;

  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);

  animation: whatsappPulse 2s infinite;

  transition: 0.35s;
}

.floating-whatsapp:hover {
  color: #fff;

  transform: scale(1.12);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/*============================*/

.back-top {
  position: fixed;

  right: 25px;
  bottom: 25px;

  width: 50px;
  height: 50px;

  border-radius: 50%;

  background: #ff0048;

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  font-size: 28px;

  cursor: pointer;

  z-index: 9999;

  opacity: 0;

  visibility: hidden;

  transition: 0.35s;
}

.back-top.active {
  opacity: 1;

  visibility: visible;

  bottom: 30px;
}

.back-top::before {
  content: "";

  position: absolute;

  inset: -6px;

  border-radius: 50%;

  border: 2px dashed #ff0048;

  animation: rotateBorder 10s linear infinite;
}

@keyframes rotateBorder {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Mobile */

@media (max-width: 767px) {
  .floating-whatsapp {
    width: 35px;
    height: 35px;
    font-size: 17px;

    left: 15px;
    bottom: 15px;
  }

  .back-top {
    width: 35px;
    height: 35px;
    font-size: 17px;
    right: 15px;
    bottom: 15px;
  }
  .back-top.active {
    bottom: 15px;
  }
}

/*=========================================
Popup
=========================================*/

.wedding-popup {
  position: fixed;

  inset: 0;

  z-index: 99999;

  display: flex;

  justify-content: center;

  align-items: center;

  visibility: hidden;

  opacity: 0;

  transition: 0.45s;
}

.wedding-popup.show {
  visibility: visible;

  opacity: 1;
}

.popup-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.75);

  backdrop-filter: blur(6px);
}

.popup-box {
  position: relative;

  width: 1100px;

  max-width: 95%;

  background: #fff;

  border-radius: 20px;

  overflow: hidden;

  display: flex;

  z-index: 10;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);

  transform: scale(0.85);

  transition: 0.45s;
}

.wedding-popup.show .popup-box {
  transform: scale(1);
}

/*============================
Left
============================*/

.popup-left {
  width: 45%;

  position: relative;

  overflow: hidden;
}

.popup-left img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 8s;
}

.popup-left::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,
    rgba(25, 10, 15, 0.85),
    rgba(25, 10, 15, 0.15)
  );

  z-index: 1;
}

.popup-left-content {
  position: absolute;

  left: 0;

  bottom: 0;

  z-index: 2;

  color: #fff;

  width: 100%;
  padding: 30px;
}

.popup-left-content span {
  color: var(--primary);

  letter-spacing: 2px;

  text-transform: uppercase;

  font-size: 13px;
}

.popup-left-content h2 {
  font-size: 30px;

  margin: 0px 0 15px;

  line-height: 1.1;

  color: #fff;
  text-align: center;
}

.popup-left-content p {
  margin: 0;

  text-align: center;
  color: #fff;
  background: var(--primary);
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  padding: 5px;
  border-radius: 30px;
}

/*============================
Right
============================*/

.popup-right {
  width: 55%;
  padding: 35px;
  background: #fff;
}

.popup-right h3 {
  font-size: 35px;

  color: #ff0048;

  margin-bottom: 25px;
}

.popup-right > p {
  color: #666;

  margin-bottom: 20px;

  font-family: "Rubik", sans-serif;
}

/*============================
Form
============================*/

.popup-form-group {
  margin-bottom: 12px;
}

.popup-form-group label {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  font-family: "Rubik", sans-serif;
}

.popup-form-group input,
.popup-form-group select,
.popup-form-group textarea {
  width: 100%;

  height: 38px;

  border: 1px solid #ddd;

  border-radius: 5px;

  padding: 0 16px;

  transition: 0.3s;

  outline: none;

  background: #fff;

  font-family: "Rubik", sans-serif;
  font-size: 15px;
  line-height: 1.4;
}

.popup-form-group textarea {
  height: 70px;

  padding-top: 15px;

  resize: none;
}

.popup-form-group input:focus,
.popup-form-group select:focus,
.popup-form-group textarea:focus {
  border-color: #ff0048;

  box-shadow: 0 0 0 4px rgba(156, 28, 45, 0.08);
}

/*============================
Close
============================*/

.popup-close {
  position: absolute;

  top: 4px;

  right: 4px;

  width: 35px;

  height: 35px;

  border: none;

  border-radius: 50%;

  background: #ff0048;

  color: #fff;

  cursor: pointer;

  z-index: 20;

  transition: 0.35s;

  font-size: 14px;
}

.popup-close:hover {
  background: #000;
  color: #fff;
  transform: rotate(180deg);
}

/*============================
Button
============================*/

.popup-right .theme-btn {
  width: 100%;

  justify-content: center;
}

/*============================
Image Zoom
============================*/

.wedding-popup.show .popup-left img {
  transform: scale(1.08);
}

/*============================
Responsive
============================*/

@media (max-width: 991px) {
  .popup-box {
    flex-direction: column;

    width: 95%;
  }

  .popup-left,
  .popup-right {
    width: 100%;
  }

  .popup-left {
    height: 320px;
  }

  .popup-right {
    padding: 30px;
  }

  .popup-left-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .popup-right {
    padding: 20px 15px;
  }

  .popup-right h3 {
    font-size: 28px;
  }

  .popup-left {
    height: 250px;
  }

  .popup-left-content {
    left: 0px;

    bottom: 0px;
  }

  .popup-left-content h2 {
    font-size: 20px;
    margin: 0px 0 12px;
  }
}

.hero-gallery .container-fluid {
  position: relative;
  overflow: hidden;
}

/* Left Fade */
.hero-gallery .container-fluid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px; /* Fade Width */
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to right, #000 0%, rgba(255, 255, 255, 0) 100%);
}

/* Right Fade */
.hero-gallery .container-fluid::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to left, #000 0%, rgba(255, 255, 255, 0) 100%);
}

/*==================================
How We Work
==================================*/

.how-work {
  position: relative;
  overflow: hidden;
}

.work-process-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: nowrap;
}

.work-card {
  position: relative;

  flex: 1;

  background: #fff;

  padding: 25px 15px;

  text-align: center;

  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);

  transition: 0.4s;

  overflow: hidden;
}

.work-card:hover {
  box-shadow: 0 25px 60px rgba(156, 28, 45, 0.15);
}

.step-no {
  font-size: 45px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.1);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.work-icon {
  width: 85px;

  height: 85px;

  margin: 0 auto 20px;

  border-radius: 50%;

  background: #fff;

  border: 1px dashed #000;

  display: flex;

  justify-content: center;

  align-items: center;

  transition: 0.4s;
}

.work-card:hover .work-icon {
  transform: rotate(360deg);

  background: #fff;
}

.work-icon img {
  width: 44px;

  filter: brightness(0) saturate(100%) invert(18%) sepia(100%) saturate(7497%)
    hue-rotate(334deg) brightness(101%) contrast(108%);
}

.work-card h3 {
  font-size: 23px;

  color: #ff0048;

  margin-bottom: 8px;

  line-height: 1.2;
}

.work-card p {
  color: #000;

  line-height: 1.3;

  margin: 0;

  font-size: 16px;

  font-family: "Rubik", sans-serif;
}

/*==========================
Arrow
==========================*/

.work-arrow {
  width: 65px;

  text-align: center;

  flex-shrink: 0;
}

.work-arrow img {
  width: 70px;

  animation: arrowMove 1.5s infinite;
}

/*==========================
Animations
==========================*/

@keyframes arrowMove {
  0% {
    transform: translateX(0);

    opacity: 0.5;
  }

  50% {
    transform: translateX(12px);

    opacity: 1;
  }

  100% {
    transform: translateX(0);

    opacity: 0.5;
  }
}

@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*==========================
Responsive
==========================*/

@media (max-width: 991px) {
  .work-process-wrapper {
    flex-direction: column;
  }

  .work-arrow {
    transform: rotate(90deg);

    width: 70px;
  }

  .work-arrow img {
    width: 55px;
  }

  .work-card {
    width: 100%;
  }
}

/*==============================
Wedding Films
==============================*/

.video-gallery {
  position: relative;
}

/*==================================
Wedding Video Card
==================================*/

/*==================================
Wedding Video Card
==================================*/

.video-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(108, 108, 108, 0.25);
  transition: 0.45s;
  position: relative;
  margin-top: 30px;
}
.video-frame {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 8px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s;
}

.video-card:hover .video-frame::after {
  border-color: rgba(212, 175, 55, 0.35);
}

.video-content {
  padding: 20px;
  text-align: center;
  min-height: 120px;
}

.video-content h3 {
  font-size: 22px;
  color: #9c1c2d;
  margin-bottom: 10px;
}

.video-content p {
  color: #000;
  line-height: 1.3;
  margin: 0;
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.video-gallery .owl-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
}

.owl-nav .owl-prev {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}
.owl-nav .owl-next {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}

/*==================================
Promise Section
==================================*/

.promise-area {
  padding: 60px 0;

  overflow: hidden;

  position: relative;
}

.promise-wrapper {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 35px;
}

/*=========================
Card
=========================*/

.promise-card {
  position: relative;
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  padding: 40px;
  display: flex;

  align-items: center;

  gap: 30px;

  transition: 0.45s;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);

  flex-direction: column;
}

/*=========================
Delivery Card
=========================*/

.delivery-card {
  background: #ff0048;
}

/*=========================
Response Card
=========================*/

.response-card {
  background: #000;
}

.response-card h3,
.response-card h3 span,
.response-card p,
.response-card li {
  color: #222;
}

.response-card li i {
  color: #9c1c2d;
}

/*=========================
Badge
=========================*/

.promise-badge {
  position: absolute;

  top: 20px;

  right: 20px;

  width: 65px;

  height: 65px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(10px);

  display: flex;

  justify-content: center;

  align-items: center;

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

.promise-badge span {
  color: #fff;

  font-size: 22px;

  font-weight: 700;
}

/*=========================
Icon
=========================*/

.promise-icon {
  width: 65px;

  height: 65px;

  min-width: 65px;

  border-radius: 50%;

  background: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);

  position: relative;

  z-index: 5;
}

.promise-icon img {
  width: 45px;
}

/*=========================
Content
=========================*/

.promise-content {
  position: relative;

  z-index: 5;

  width: 100%;
}

.promise-content h3 {
  color: #fff;

  font-size: 27px;

  line-height: 1.2;

  margin-bottom: 15px;
}

.promise-content h3 span {
  display: block;

  font-size: 16px;

  color: #000;

  font-weight: 400;

  margin-top: 10px;

  background: #fffb00;
  padding: 3px 10px;
  font-family: "Rubik", sans-serif;
  border-radius: 5px;
  line-height: 1.4;
  width: fit-content;
}

.promise-content p {
  color: #fff;

  line-height: 1.4;

  margin-bottom: 0;

  font-size: 15px;

  font-family: "Rubik", sans-serif;
}

.promise-content ul {
  margin: 0;

  padding: 0;

  list-style: none;

  display: flex;
  width: 100%;
  gap: 10px;
}

.promise-content ul li {
  color: #fff;

  margin-bottom: 0px;

  font-weight: 500;

  font-family: "Rubik", sans-serif;
  border: 1px solid #ffffff73;
  flex-grow: 1;
  text-align: center;
  font-size: 15px;
  padding: 5px;
}

.promise-content ul li i {
  color: #ffd35c;

  margin-right: 8px;
}

/*=========================
Animated Shapes
=========================*/

.shape {
  position: absolute;

  border-radius: 50%;

  opacity: 0.15;
}

.shape.one {
  width: 220px;

  height: 220px;

  background: #fff;

  right: -80px;

  top: -80px;

  animation: rotateShape 18s linear infinite;
}

.shape.two {
  width: 130px;

  height: 130px;

  background: #fff;

  left: -40px;

  bottom: -40px;

  animation: floatShape 5s ease-in-out infinite;
}

/*=========================
Light Effect
=========================*/

.promise-card::before {
  content: "";

  position: absolute;

  left: -140%;

  top: 0;

  width: 70%;

  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );

  transform: skewX(-25deg);
}

.promise-card:hover::before {
  animation: shine 1.2s linear;
}

/*=========================
Arrow
=========================*/

.promise-arrow {
  width: 110px;

  flex-shrink: 0;

  text-align: center;
}

.promise-arrow img {
  width: 85px;

  animation: moveArrow 1.2s ease-in-out infinite;
}

/*=========================
Animations
=========================*/

@keyframes moveArrow {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(15px);
  }
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotateShape {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@keyframes shine {
  100% {
    left: 160%;
  }
}

/*=========================
Hover
=========================*/

.promise-card:hover .promise-icon {
  transition: 0.45s;
}

.promise-content-top {
  display: flex;
  gap: 25px;
  flex-direction: column;
  align-items: flex-start;
}

/*=========================
Responsive
=========================*/

@media (max-width: 991px) {
  .promise-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .promise-arrow {
    width: 50px;
  }

  .promise-arrow img {
    width: 55px;
  }

  .promise-card {
    flex-direction: column;

    text-align: center;

    padding: 25px 25px;
  }

  .promise-icon {
    margin-bottom: 10px;

    width: 65px;
    height: 65px;
    min-width: 65px;
  }
}

@media (max-width: 576px) {
  .promise-content h3 {
    font-size: 22px;

    text-align: left;
  }

  .promise-content h3 span {
    font-size: 14px;
  }

  .promise-content p {
    font-size: 14px;

    text-align: left;
  }

  .promise-card {
    min-height: auto;
  }
}

.for_all_btn .theme-btn {
  color: #fff;
  background: #ff0048;
}
.for_all_btn .theme-btn i {
  background: #fff;
}
.for_all_btn .theme-btn:hover {
  color: #fff;
  background: #000;
}
.for_all_btn .theme-btn:hover i {
  background: #ff0048;
  color: #fff;
}

.trust-line-main {
  margin-top: 30px;
  background: #000;
  border-radius: 8px;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}

.trust-line-main .theme-btn {
  color: #fff;
  background: #ff0048;
}
.trust-line-main .theme-btn i {
  background: #fff;
  color: #4285f4;
}
.trust-line-main .theme-btn:hover {
  color: #ff0048;
  background: #fff;
}
.trust-line-main .theme-btn:hover i {
  background: #4285f4;
  color: #fff;
}

@media (max-width: 767px) {
  .header-area {
    padding: 5px 0;
  }
  .hero-gallery .container-fluid::after {
    width: 45px;
  }
  .hero-gallery .container-fluid::before {
    width: 45px;
  }
  .title-line span {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  .title-line {
    width: 300px;
    height: 40px;
    margin: 15px auto;
  }
  .title-line::before {
    width: 120px;
  }
  .title-line::after {
    width: 120px;
  }
  .about-content::before {
    inset: 5px;
    border-radius: 5px;
  }
  .about-content {
    border-radius: 5px;
    padding: 25px;
  }
  .about-content h2 {
    font-size: 23px;
    margin-bottom: 15px;
  }
  .about-content p {
    font-size: 14px;
    line-height: 1.4;
  }
  section {
    overflow: hidden;
  }
  .promise-content ul li {
    font-size: 14px;
    line-height: 1.3;
  }
  .promise-content ul {
    flex-direction: column;
  }
  .sec_padding {
    padding: 40px 0;
  }
  .about_left {
    padding-right: 0;
  }
  .g-5,
  .gy-5 {
    --bs-gutter-y: 2rem;
  }
  .sub-title {
    font-size: 14px;
  }
  .section-title h2 {
    margin-top: 0;
  }
  h2 {
    font-size: 28px;
  }
  .intro_txt p {
    font-size: 14px;
  }
  .intro_txt {
    padding: 15px;
    border-radius: 5px;
  }

  .album-content p {
    font-size: 14px;
  }
  .owl-nav .owl-prev {
    left: 0;
  }
  .owl-nav .owl-next {
    right: 0;
  }
  .wedding-album-slider .owl-prev,
  .wedding-album-slider .owl-next {
    width: 30px;
    height: 30px;
  }
  .mt-4 {
    margin-top: 1rem !important;
  }
  .service-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .service-content p {
    font-size: 14px;
  }
  .counter-area {
    padding: 40px 0;
  }
  .g-4,
  .gy-4 {
    --bs-gutter-y: 1rem;
  }
  .g-4,
  .gx-4 {
    --bs-gutter-x: 1rem;
  }
  .counter-box h5 {
    margin-bottom: 0;
  }
  .counter-box {
    padding: 35px 15px 15px;
  }
  .counter-box h2 {
    font-size: 35px;
  }
  .counter-box h5 {
    font-size: 12px;
    padding: 6px;
  }
  .counter-icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
    margin: auto auto 25px;
  }
  .counter-icon::before {
    width: 85px;
    height: 85px;
  }
  .why-item h4 {
    font-size: 18px;
  }
  .why-item p {
    font-size: 14px;
  }
  .owl-nav button {
    width: 30px;
    height: 30px;
  }
  .video-gallery .owl-nav {
    margin-top: 10px;
  }
  .work-card p {
    font-size: 14px;
  }
  .work-card h3 {
    font-size: 20px;
  }
  .faq-image img {
    border-radius: 10px;
    border: 6px solid #fff;
    margin-bottom: 30px;
  }
  .custom-faq .accordion-button {
    padding: 12px 12px;
  }
  .custom-faq .accordion-body {
    padding: 12px 12px;
    font-size: 14px;
    line-height: 1.3;
  }
  .custom-faq .accordion-item {
    border-radius: 5px;
    margin-bottom: 15px;
  }
  .trust-line-main {
    align-items: center;
    padding: 20px;
    justify-content: center;
    flex-direction: column;
  }
  .trust-line {
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
  }
  .trust-line-main {
    gap: 20px;
  }
  .testimonial-card p {
    margin-bottom: 15px;
    line-height: 1.3;
    font-size: 14px;
    height: 75px;
  }
  .testimonial-card {
    padding: 40px 25px 30px;
  }
  .client h4 {
    font-size: 14px;
  }
  .client span {
    font-size: 13px;
    line-height: 1.3;
  }
  .client img {
    width: 55px !important;
    height: 55px;
  }
  .blog-date {
    font-size: 11px;
  }
  .blog-content h3 {
    font-size: 16px;
  }
  .blog-content p {
    font-size: 14px;
  }
  .footer-area {
    padding: 40px 0 0;
  }
  .footer-widget h3 {
    font-size: 18px;
    margin-bottom: 22px;
  }
  .g-5,
  .gy-5 {
    --bs-gutter-y: 1.5rem;
  }
  .footer-gallery-head h3 {
    font-size: 22px;
  }
  .footer-bottom {
    margin-top: 40px;
    padding: 10px 0;
    font-size: 11px;
  }
  .popup-form-group label {
    font-size: 13px;
  }
  .popup-form-group input,
  .popup-form-group select,
  .popup-form-group textarea {
    height: 35px;
    padding: 0px 12px;
    font-size: 12px;
    line-height: 1.3;
  }
  .popup-left-content {
    padding: 15px;
  }
  .popup-left-content p {
    font-size: 13px;
  }

  .header-area.sticky {
    padding: 5px 0;
  }
  .header-area.sticky .logo img {
    height: 55px;
  }
  .sidebar-top {
    padding: 20px;
    background: #000;
  }
  .close-menu {
    color: #fff;
  }
  .mobile-sidebar a {
    padding: 6px 0;
    font-size: 15px;
  }
}

/*==================================
Page Banner
==================================*/

.page-banner {
  position: relative;

  padding: 240px 0 175px;
  background-size: cover;

  background-attachment: fixed;

  overflow: hidden;
}

.banner-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(rgba(25, 12, 18, 0.37), rgba(25, 12, 18, 0.42));
}

.page-banner-content {
  position: relative;

  z-index: 2;

  text-align: center;
}

.page-banner h2 {
  font-size: 60px;

  color: #fff;

  margin: 0 0 10px;

  font-family: "Cormorant Garamond", serif;

  font-weight: 700;

  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.35);

  line-height: 1.1;
}

.breadcrumb-list {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 14px;

  padding: 0;

  margin: 0;

  list-style: none;
}

.breadcrumb-list li {
  color: #fff;

  font-size: 14px;
}

.breadcrumb-list a {
  color: #d4af37;

  text-decoration: none;

  transition: 0.35s;
}

.breadcrumb-list a:hover {
  color: #fff;
}

.breadcrumb-list i {
  margin-right: 6px;
}

@keyframes rotateBanner {
  100% {
    transform: rotate(360deg);
  }
}

/*=====================
Responsive
=====================*/

@media (max-width: 991px) {
  .page-banner {
    padding: 140px 0 90px;
    background-attachment: scroll;
  }

  .page-banner h2 {
    font-size: 54px;
  }
}

@media (max-width: 576px) {
  .page-banner {
    padding: 140px 0 80px;
  }
  .breadcrumb-list li {
    font-size: 12px;
  }
  .page-banner h2 {
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 5px;
  }

  .breadcrumb-list {
    font-size: 14px;
    gap: 8px;
  }
  .promise-area {
    padding: 35px 0;
  }
}

/*==================================
Founder Section
==================================*/

.founder-section {
  position: relative;

  overflow: hidden;
}

/*=========================
Image
=========================*/

.founder-image {
  position: relative;
}

.founder-image::before {
}

.founder-image img {
  width: 100%;

  border-radius: 15px;

  display: block;

  transition: 0.5s;
}

.founder-image:hover img {
}

/*=========================
Experience Badge
=========================*/

.experience-box {
  position: absolute;

  right: -10px;

  bottom: 40px;

  width: 150px;

  height: 150px;

  border-radius: 50%;

  background: #000;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  color: #fff;

  border: 6px solid #fff;

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);

  animation: floatBadge 4s ease-in-out infinite;
}

.experience-box h3 {
  font-size: 42px;

  margin: 0;

  line-height: 1;

  color: #ff0048;
}

.experience-box span {
  font-size: 10px;

  text-align: center;

  line-height: 1.5;

  margin-top: 8px;

  padding: 0 10px;
}

/*=========================
Content
=========================*/

.founder-content {
  padding-left: 40px;
}

.founder-subtitle {
  color: #ff0048;

  text-transform: uppercase;

  font-size: 14px;

  font-weight: 600;
}

.founder-content h2 {
  font-size: 50px;

  margin: 0 0 12px;

  color: #000;

  font-family: "Cormorant Garamond", serif;
}

.founder-content h5 {
  color: #fff;

  margin-bottom: 20px;

  font-size: 20px;

  font-weight: 600;

  background: #000;
  padding: 10px 20px;
  border-radius: 38px;
  width: fit-content;
}

.founder-content p {
  color: #000;

  line-height: 1.4;

  margin-bottom: 18px;

  font-size: 16px;
}

/*=========================
Service Box
=========================*/

.founder-services {
  margin-top: 35px;
}

.service-item {
  display: flex;

  gap: 22px;

  margin-bottom: 25px;

  padding: 20px;

  background: #fff;

  border-radius: 12px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);

  transition: 0.4s;

  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  align-items: center;
  /*! border: 1px solid #0000002b; */
}

.service-item:hover {
}

.service-item .icon {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  justify-content: center;
}
.service-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-item h4 {
  margin-bottom: 8px;

  color: #ff0048;

  font-size: 20px;

  line-height: 1.2;
}

.service-item p {
  margin: 0;

  font-size: 15px;

  line-height: 1.4;
}

/*=========================
Signature
=========================*/

.founder-sign {
  margin-top: 35px;
}

.founder-sign img {
  width: 220px;
}

/*=========================
Animation
=========================*/

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes rotateBorder {
  100% {
    transform: rotate(360deg);
  }
}

/*=========================
Responsive
=========================*/

@media (max-width: 991px) {
  .founder-content {
    padding-left: 0;

    margin-top: 35px;
  }

  .founder-content {
    text-align: center;
  }

  .service-item {
    text-align: left;
  }

  .experience-box {
    right: 20px;

    bottom: -20px;
  }
}

@media (max-width: 576px) {
  .founder-content h2 {
    font-size: 35px;
  }

  .founder-content h5 {
    font-size: 16px;
    padding: 8px 20px;
    margin: 0 auto 15px;
  }

  .service-item {
    flex-direction: column;

    align-items: center;

    text-align: center;
  }

  .service-item i {
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 20px;
  }

  .experience-box {
    width: 120px;

    height: 120px;
  }

  .experience-box h3 {
    font-size: 34px;
  }
}

/*==================================
We Adore Weddings
==================================*/

.adore-section {
  position: relative;
}

.adore-title span {
  color: var(--primary);

  font-size: 15px;

  font-weight: 500;
}

.adore-title h2 {
  font-size: 55px;

  line-height: 1;
  letter-spacing: -3px;
  margin: 10px 0 20px;

  color: #222;

  font-family: "Cormorant Garamond", serif;
}

.adore-content {
  background: #fffaf7;

  padding: 40px;

  border-radius: 20px;

  border: 5px solid #d4af37;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);

  transition: 0.4s;

  margin-left: 20px;
}

.adore-content p {
  color: #000;
  line-height: 1.5;
  margin-bottom: 25px;
  font-size: 16px;
}
.adore-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
}
.wedding-album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.films_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.films_grid .video-card {
  margin-top: 0;
}
.adore-content h1 {
  font-size: 30px;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .adore-title {
    text-align: center;

    margin-bottom: 25px;
  }

  .adore-title h2 {
    font-size: 54px;
  }

  .adore-bottom {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .adore-content {
    padding: 18px;

    margin-left: 0;
    border: 2px solid #d4af37;
    border-radius: 10px;
  }

  .adore-title h2 {
    font-size: 38px;

    margin: 10px 0 20px;
  }
  .adore-content p {
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
  }
  .whatsapp-bar {
    border-radius: 10px;
    padding: 15px 15px;
    margin-top: 25px;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
  }
  .whatsapp-bar a {
    padding: 7px 20px;
    font-weight: 500;
    font-size: 14px;
  }
  .whatsapp-info {
    padding: 0 0;
  }
  .whatsapp-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 23px;
  }
  .whatsapp-info span {
    letter-spacing: 0px;
  }
  .founder-subtitle {
    font-size: 13px;
  }
  .founder-content p {
    margin-bottom: 12px;
    font-size: 14px;
  }
  .service-item {
    gap: 8px;
    margin-bottom: 25px;
    border-radius: 10px;
  }
  .service-item h4 {
    font-size: 18px;
  }
}

.team-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.45s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.6s;
}

.team-card:hover img {
  transform: scale(1.08);
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-content {
  padding: 22px;

  text-align: center;
}

.team-content h3 {
  font-size: 20px;

  margin-bottom: 10px;

  font-weight: 700;
  font-family: "Urbanist", sans-serif;
  line-height: 1.2;
}

.team-content span {
  color: #fff;

  text-transform: uppercase;

  font-size: 12px;

  font-weight: 600;

  background: #ff0048;
  padding: 5px 10px;
  width: 100%;
  display: block;
  border-radius: 32px;
}
.testimonial_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial_grid .testimonial-card {
  margin: 25px 0 0;
}
.blog_list_page .blog-card {
  margin: 15px 0;
}

@media (max-width: 767px) {
  .adore-content h1 {
    font-size: 21px;
    margin-bottom: 15px;
    text-align: center;
  }

  .team-image img {
    object-fit: cover;
    transition: 0.6s;
    height: auto;
  }
}

.blog-single img {
  width: 100%;

  border-radius: 18px;
}

.blog-meta {
  display: flex;

  gap: 20px;

  flex-wrap: wrap;

  margin: 20px 0 10px;

  color: #777;

  font-size: 14px;
}

.blog-meta i {
  color: #ff0048;

  margin-right: 6px;
}

.blog-single h1 {
  font-size: 30px;

  margin-bottom: 15px;

  line-height: 1.2;
}

.blog-single h2 {
  font-size: 22px;

  margin: 20px 0 12px;

  line-height: 1.2;
}

.blog-single p {
  line-height: 1.5;

  color: #555;

  margin-bottom: 15px;

  font-size: 15px;
}

.blog-single blockquote {
  background: #faf5ef;

  border-left: 5px solid #ff0048;

  padding: 35px;

  font-size: 22px;

  font-style: italic;

  margin: 45px 0;

  border-radius: 15px;
}

.blog-check {
  margin: 20px 0;

  padding-left: 0;
}

.blog-check li {
  list-style: none;

  padding: 7px 0;

  border-bottom: 1px solid #eee;

  position: relative;

  padding-left: 30px;

  font-size: 15px;
  line-height: 1.4;
}

.blog-check li:before {
  content: "✓";

  position: absolute;

  left: 0;

  color: #c9a24c;

  font-weight: bold;
}

.blog-sidebar {
  position: sticky;

  top: 120px;
}

.sidebar-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.sidebar-box h3 {
  margin-bottom: 12px;

  font-size: 25px;
  font-weight: 700;
}

.sidebar-box form {
  position: relative;
}

.sidebar-box input {
  width: 100%;

  height: 55px;

  border: 1px solid #ddd;

  border-radius: 50px;

  padding: 0 60px 0 20px;
}

.sidebar-box button {
  position: absolute;

  right: 6px;

  top: 6px;

  width: 43px;

  height: 43px;

  border: none;

  border-radius: 50%;

  background: #ff0048;

  color: #fff;
}

.latest-post {
  display: flex;

  gap: 15px;

  margin-bottom: 20px;

  align-items: center;
}

.latest-post img {
  width: 85px;

  height: 85px;

  object-fit: cover;

  border-radius: 12px;
}

.latest-post h4 {
  font-size: 16px;

  line-height: 1.3;

  margin-bottom: 5px;
}

.latest-post h4 a {
  color: #222;

  text-decoration: none;
}

.latest-post span {
  color: #888;

  font-size: 13px;
}

.category-list {
  padding: 0;

  margin: 0;
}

.category-list li {
  list-style: none;
}

.category-list li a {
  display: block;

  padding: 14px 0;

  color: #444;

  text-decoration: none;

  border-bottom: 1px solid #eee;

  transition: 0.3s;
}

.category-list li a:hover {
  color: #ff0048;

  padding-left: 10px;
}

.blog-sidebar .cta-box {
  background: #ff0048;

  color: #fff;

  text-align: center;
}

.blog-sidebar .cta-box h3,
.blog-sidebar .cta-box p {
  color: #fff;

  line-height: 1.3;
  margin-bottom: 10px;
}

.blog-sidebar .cta-box .theme-btn {
  display: inline-block;

  margin-top: 15px;

  padding: 8px 25px;

  background: #000;

  color: #fff;

  border-radius: 40px;

  text-decoration: none;
}
.sidebar-box.cta-box {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .blog-sidebar {
    position: relative;

    top: 0;

    margin-top: 25px;
  }

  .blog-single h1 {
    font-size: 24px;

    margin-bottom: 12px;
  }

  .blog-single h2 {
    font-size: 19px;

    margin: 15px 0 8px;
  }
}

.contact-card {
  background: #fff;

  padding: 35px 20px;

  border-radius: 10px;

  text-align: center;

  transition: 0.4s;

  height: 100%;

  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.contact-card:hover {
}

.contact-card .icon {
  width: 70px;

  height: 70px;

  margin: auto;

  border-radius: 50%;

  background: #ff0048;

  color: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 24px;

  margin-bottom: 20px;
}

.contact-card h4 {
  margin-bottom: 12px;

  font-size: 25px;
}

.contact-card p {
  color: #646464;

  line-height: 1.4;
}

.contact-form-box {
  background: #fff;

  padding: 40px;

  border-radius: 10px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
}

.contact-form-box span {
  color: #ff0048;

  text-transform: uppercase;
}

.contact-form-box h3 {
  margin: 10px 0 25px;

  font-size: 30px;
}

.contact-form-box .form-control {
  height: 50px;

  margin-bottom: 20px;

  border-radius: 6px;

  border: 1px solid #ddd;

  box-shadow: none;

  font-size: 14px;
}

.contact-form-box textarea.form-control {
  height: 120px;

  padding-top: 15px;

  resize: none;
}

/* .theme-btn{

    background:#ff0048;

    color:#fff;

    border:none;

    padding:10px 40px;

    border-radius:50px;

    transition:.4s;

}

.theme-btn:hover{

    background:#000;

} */

.map-box {
  height: 565px;

  border-radius: 10px;

  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
}

.map-box iframe {
  width: 100%;

  height: 100%;

  border: 0;
}

@media (max-width: 991px) {
  .contact-form-box {
    padding: 35px;

    margin-bottom: 30px;
  }

  .map-box {
    min-height: 300px;
  }
}

.wedding-info-bar {
  margin-top: 70px;
  position: relative;
  z-index: 10;
}

.info-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  background: #000;

  padding: 25px;

  border-radius: 10px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.info-item {
  flex: 1;

  text-align: center;

  position: relative;
}

.info-item:not(:last-child)::after {
  content: "";

  position: absolute;

  right: -12px;
  top: 50%;

  width: 1px;
  height: 70px;

  background: #ececec;

  transform: translateY(-50%);
}

.info-icon {
  width: 60px;
  height: 60px;

  margin: auto;

  border-radius: 50%;

  background: #ff0048;

  color: #fff;

  display: flex;

  justify-content: center;
  align-items: center;

  font-size: 20px;

  margin-bottom: 15px;
}

.info-item span {
  display: block;

  color: #ffcb00;

  text-transform: uppercase;

  font-size: 12px;

  margin-bottom: 5px;

  font-weight: 600;
}

.info-item h5 {
  margin: 0;

  font-size: 16px;

  color: #fff;

  font-weight: 600;

  line-height: 1.6;
}

@media (max-width: 991px) {
  .info-wrapper {
    display: grid;

    grid-template-columns: repeat(2, 1fr);
  }

  .info-item::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .info-wrapper {
    padding: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .info-item {
    border-bottom: none;
  }

  .info-item:last-child {
    border: none;
  }
}

.masonry-gallery {
  column-count: 4;
  column-gap: 15px;
}

.gallery-item2 {
  display: block;

  margin-bottom: 18px;

  break-inside: avoid;

  overflow: hidden;

  border-radius: 10px;

  position: relative;
}

.gallery-item2 img {
  width: 100%;

  height: auto;

  display: block;

  border-radius: 10px;

  transition: 0.6s;
}

/* Overlay */

.gallery-item2::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));

  opacity: 0;

  transition: 0.4s;

  z-index: 1;
}

/* Plus Icon */

.gallery-item2::after {
  content: "+";

  position: absolute;

  width: 50px;
  height: 50px;

  border-radius: 50%;

  background: #ff0048;

  color: #fff;

  font-size: 27px;

  display: flex;

  align-items: center;

  justify-content: center;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%) scale(0.5);

  opacity: 0;

  transition: 0.35s;

  z-index: 2;
}

.gallery-item2:hover img {
  transform: scale(1.08);
}

.gallery-item2:hover::before {
  opacity: 1;
}

.gallery-item2:hover::after {
  opacity: 1;

  transform: translate(-50%, -50%) scale(1);
}

/* Responsive */

@media (max-width: 1200px) {
  .masonry-gallery {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .masonry-gallery {
    column-count: 2;
    column-gap: 8px;
  }
  .gallery-item2 {
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .gallery-item2 img {
    border-radius: 5px;
  }
}

@media (max-width: 576px) {
  .masonry-gallery {
    column-count: 2;
    column-gap: 8px;
  }
}

.quick-action-bar {
  padding: 30px 0px 0;
}

.action-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  padding: 12px 22px;

  border-radius: 60px;

  color: #fff;
  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  transition: 0.35s;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.action-btn i {
  font-size: 22px;
}

.action-btn:hover {
  color: #fff;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.call {
  background: #1d3557;
}

.whatsapp {
  background: #25d366;
}

.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcaf45);
}

.location {
  background: #3798ff;
}

@media (max-width: 768px) {
  .action-btn {
    min-width: 100%;
  }
  .info-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
    margin-bottom: 12px;
  }
  .info-item span {
    font-size: 10px;
    margin-bottom: 0;
  }
  .info-item h5 {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
  }
}

.style-card {
  background: #fff;

  border-radius: 10px;

  padding: 25px;

  display: flex;

  align-items: center;

  gap: 20px;

  position: relative;

  overflow: hidden;

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);

  transition: 0.4s;

  height: 100%;

  border: 1px solid;
}

.style-card:hover {
  border-color: #ff0048;
}

.style-card::before {
}

.style-card:hover::before {
}

.style-number {
  position: absolute;

  top: 15px;
  right: 20px;

  font-size: 60px;

  font-weight: 700;

  color: #f2f2f2;

  line-height: 1;
}

.style-icon {
  width: 75px;
  height: 75px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #ff0048;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 28px;
}

.style-content h3 {
  margin-bottom: 8px;

  font-size: 22px;

  line-height: 1.2;
}

.style-content p {
  margin: 0;

  color: #666;

  line-height: 1.5;

  font-size: 15px;
}

@media (max-width: 991px) {
  .style-card {
    padding: 25px;
  }

  .style-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .style-card {
    flex-direction: column;

    text-align: center;
  }

  .style-number {
    display: none;
  }
}

.service_page.hero-gallery {
  padding: 0;
  background: none;
}
.service_page.hero-gallery::before {
  display: none;
}
.service_page .album-image {
  background-image: url("../images/circle2.png");
}
.service_page .album-image img {
  width: 169px !important;
  height: 169px;
  object-fit: cover;
  transition: 0.6s;
  border-radius: 89%;
  margin-top: -3px;
  margin-right: -3px;
}
.service_page .album-frame {
  border: 1px solid #000;
}
.service_page .album-frame:hover {
  border-color: var(--primary);
}
.team-social {
  display: flex;

  gap: 7px;

  justify-content: center;
  margin-top: 15px;
}
.team-social a {
  width: 35px;

  height: 35px;

  border-radius: 50%;

  background: #000;

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  transition: 0.35s;

  font-size: 14px;
}

.team-social a:hover {
  background: var(--primary);

  color: #fff;

  transform: translateY(-5px);
}
.custom-pagination {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 8px;

  margin-top: 30px;
}

.custom-pagination a {
  width: 38px;

  height: 38px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  font-size: 14px;

  font-weight: 600;

  color: #444;

  background: #fff;

  border: 1px solid #c7c7c7;

  transition: 0.35s;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.custom-pagination a:hover {
  background: #ff0048;

  color: #fff;

  border-color: #ff0048;

  transform: translateY(-4px);
}

.custom-pagination .active {
  background: #ff0048;

  color: #fff;

  border-color: #ff0048;
}

@media (max-width: 576px) {
  .custom-pagination {
    gap: 8px;
  }

  .custom-pagination a {
    width: 42px;

    height: 42px;

    font-size: 15px;
  }
}
.blog-service-cta {
  margin-top: 40px;
  background: #000;
  border-radius: 10px;
  padding: 50px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-service-cta .cta-content {
  position: relative;
  z-index: 2;
}

.blog-service-cta span {
  display: inline-block;
  color: #ff0048;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
}

.blog-service-cta h3 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #fff;
}

.blog-service-cta p {
  max-width: 760px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-size: 15px;
}

.blog-service-cta .theme-btn {
  background: #ff0048;
  padding: 8px 25px;
}

.blog-service-cta .theme-btn:hover {
  background: #fff;
  color: #111;
}
.gallery_video {
  width: 100%;
}
.gallery_video iframe {
  width: 100% !important;
  height: 250px !important;
  border-radius: 10px;
}
.video_gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 767px) {
  .blog-service-cta {
    padding: 40px 25px;
  }

  .blog-service-cta h3 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .wedding-album-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
  }
  .style-content h3 {
    font-size: 21px;
  }
  .style-icon {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }
  .style-content p {
    line-height: 1.35;
    font-size: 15px;
  }
}

/*==========================
IMPORTANT PART
==========================*/

.important_part {
  position: relative;

  overflow: hidden;
}

/*==========================
Heading
==========================*/

.important_part .important_heading {
  text-align: center;

  margin-bottom: 45px;
}

.important_part .important_heading span {
  display: inline-block;

  text-transform: uppercase;

  letter-spacing: 4px;

  color: #b88b2d;

  font-size: 16px;

  font-weight: 600;

  position: relative;

  font-family: "Poppins", sans-serif;
}

.important_part .important_heading span:after {
  content: "";

  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: #d4af37;

  position: absolute;

  left: 50%;

  bottom: -18px;

  transform: translateX(-50%);
}

.important_part .important_heading span:before {
  content: "";

  position: absolute;

  left: 50%;

  bottom: -14px;

  width: 90px;

  height: 1px;

  background: #ead8b0;

  transform: translateX(-50%);
}

/*==========================
Card
==========================*/

.important_part .important_card {
  background: #fff;

  border-radius: 15px;

  padding: 40px;

  border: 1px solid #f0ece4;

  height: 100%;

  transition: 0.35s;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.important_part .important_card:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/*==========================
Icon
==========================*/

.important_part .important_icon {
  width: 75px;

  height: 75px;

  border: 2px solid #d6b46b;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  margin-bottom: 16px;
}

.important_part .important_icon i {
  font-size: 30px;

  color: #c89c3d;
}

/*==========================
Title
==========================*/

.important_part h3 {
  font-size: 40px;

  font-weight: 700;

  color: #222;

  margin-bottom: 16px;

  font-family: "Cormorant Garamond", serif;
}

/*==========================
Badge
==========================*/

.important_part .important_badge {
  display: inline-block;

  background: #c8942e;

  color: #fff;

  padding: 6px 20px;

  border-radius: 5px;

  font-size: 15px;

  font-weight: 600;

  margin-bottom: 20px;

  line-height: 1.4;
}

/*==========================
Line
==========================*/

.important_part .important_line {
  width: 65px;

  height: 2px;

  background: #ead8b0;

  margin-bottom: 15px;
}

/*==========================
Paragraph
==========================*/

.important_part p {
  color: #555;

  font-size: 16px;

  line-height: 1.5;

  margin-bottom: 20px;
}

/*==========================
Features
==========================*/

.important_part .important_features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  border: 1px solid #ececec;
}

.important_part .feature_box {
  padding: 10px 15px;

  display: flex;

  align-items: center;

  gap: 12px;

  border-right: 1px solid #ececec;

  line-height: 1.3;
  font-size: 14px;
}

.important_part .feature_box:last-child {
  border-right: none;
}

.important_part .feature_box i {
  color: #c89c3d;

  font-size: 18px;
}

.important_part .feature_box span {
  font-weight: 600;

  color: #444;
}

/*==========================
Buttons
==========================*/

.important_part .important_buttons {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;

  margin-top: 35px;
}

.important_part .important_buttons a {
  background: #191919;

  color: #fff;

  border-radius: 7px;

  padding: 15px 22px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  text-decoration: none;

  transition: 0.35s;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);

  line-height: 1.3;
}

.important_part .important_buttons a:hover {
  background: #c8942e;

  color: #fff;

  transform: translateY(-5px);
}

.important_part .important_buttons span {
  display: flex;

  align-items: center;

  gap: 14px;

  font-size: 16px;

  font-weight: 600;
}

.important_part .important_buttons span i {
  font-size: 23px;

  color: #d4af37;
}

.important_part .important_buttons a:hover span i {
  color: #fff;
}

.important_part .important_buttons > a > i {
  font-size: 22px;
}

/*==========================
Footer
==========================*/

.important_part .important_footer {
  position: relative;

  text-align: center;

  margin-top: 30px;

  font-family: "Allura", cursive;

  font-size: 20px;

  color: #d4af37;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 20px;
}

.important_part .important_footer::before,
.important_part .important_footer::after {
  content: "";

  width: 180px;

  height: 1px;

  background: #e6d5b4;
}

.important_part .important_footer strong {
  font-weight: 400;
}

.important_part .important_footer i {
  color: #d4af37;

  margin-left: 6px;
}

@media (max-width: 767px) {
  .important_part .important_footer {
    font-size: 30px;

    gap: 12px;

    display: block;
  }

  .important_part .important_footer::before,
  .important_part .important_footer::after {
    width: 60px;
  }
}
.cus_mb_40px {
  margin: 0 0 40px 0 !important;
}
.contact-form-box .theme-btn {
  padding: 7px 20px;
}

/*==========================
Responsive
==========================*/

@media (max-width: 1199px) {
  .important_part .important_buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .important_part h3 {
    font-size: 42px;
  }

  .important_part p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .important_part .important_card {
    padding: 25px;
  }
  .testimonial_grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .important_part .important_features {
    grid-template-columns: 1fr;
  }

  .important_part .feature_box {
    border-right: none;

    border-bottom: 1px solid #ececec;
  }

  .important_part .feature_box:last-child {
    border-bottom: none;
  }

  .important_part .important_buttons {
    grid-template-columns: 1fr;
  }

  .important_part .important_footer {
    font-size: 12px;

    margin-top: 15px;
  }
}

@media (max-width: 575px) {
  .important_part h3 {
    font-size: 30px;

    margin-bottom: 12px;
  }

  .important_part .important_icon {
    width: 60px;

    height: 60px;
  }

  .important_part .important_icon i {
    font-size: 25px;
  }

  .important_part p {
    font-size: 15px;
  }
}

/*========================================
Fixed Vertical Button
========================================*/

.storyteller-babies {
  position: fixed;

  top: 50%;

  right: -85px;

  transform: rotate(-90deg);

  transform-origin: center;

  z-index: 9999;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 10px 20px;

  background: var(--primary);

  color: #fff;

  text-decoration: none;

  overflow: hidden;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: 0.35s;

  line-height: 1.3;
  text-transform: uppercase;
  border: 1px solid #fff;
}

.storyteller-babies i {
  color: #ffae00;
}

.storyteller-babies:hover {
  color: #fff;

  background: #000;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.page_banner_img{
position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.storyteller-babies::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );

  transform: translateX(-120%);

  animation: shineBtn 3s linear infinite;
}


@keyframes shineBtn {
  100% {
    transform: translateX(120%);
  }
}

.storyteller-babies span,
.storyteller-babies i {
  position: relative;

  z-index: 2;
}






@media (max-width: 767px) {
  .storyteller-babies {
    right: -71px;
    padding: 8px 15px;
    font-size: 12px;
  }
  .important_part .important_heading span {
    letter-spacing: 3px;
  }
  .important_part .important_buttons span {
    font-size: 14px;
  }
  .important_part .important_buttons span i {
    font-size: 20px;
  }
  .important_part .important_buttons a {
    border-radius: 4px;
    padding: 12px 20px;
  }
}
