@import url('https://fonts.googleapis.com/css2?family=Cookie&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;600;800;900&display=swap');
*{
  margin: 0;
  padding: 0;
}
/* scroll style  */
::-webkit-scrollbar {
  width: 12px;
}
ul{
  padding: 0;
  margin: 0;
}
/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--primary);
  box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
::-webkit-scrollbar-thumb:window-inactive {
background: var(--primary); 
}
ul li{
  list-style: none;
}
html, body {
  overflow-x: hidden;
  color: #444444;
  margin: 0;
}
body{
  font-family: 'Cookie', cursive;
  font-family: 'Inter', sans-serif;
}
:root{
  --primary:#E33812;
  --danger:#c21029;
  --light:#F0F0F0;
  --dark:#202020;
  --color-secondary-rgb: 72, 86, 100;
  --text-black:#121212;
  --text-danger:#c21029;
  --angle: 60deg;
}
a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* Navbar Section */
#header {
  height: 85px;
  transition: all 0.5s;
  z-index: 9999;
  transition: all 0.5s;
  background: rgba(42, 44, 57, 0.9);
}
#header.header-transparent {
  background: transparent;
}
#header.header-scrolled {
  background: rgb(0 0 0);
}
#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 68px;
}

/*----# Navigation Menu -----*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px 7px 15px;
  margin-left: 5px;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  border-radius: 50px;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  background: var(--primary);
  color: #fff;
  border-radius: 22px;
  text-decoration: none;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 5px;
  top: calc(100% + 30px);
  margin: 5px 0 0 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 15px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #2a2c39;
  margin: 0 5px;
  font-size: 14px;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #fff;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block !important;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(20, 21, 28, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  margin: 5px;
  font-size: 15px;
  color: #2a2c39;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #fff;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #fff;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/* Banner */
.my_banner{
  position: relative;
}
.my_banner img{
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.overlay{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.banner_content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}
.banner_content h2{
  font-size: 35px;
  line-height: 45px;
  font-weight: 600;
  padding-bottom: 10px;
  text-align: center;
  color: #fff;
}
.banner_content .read-more{
  text-align: center;
  display: table;
  margin: 0 auto;
}

/* Overlap */
/* .overlap_wrapper{
  position: relative;
  top: -25px;
}
.overlap_row{
  padding: 15px;
  box-shadow: rgb(0 0 0 / 16%) 0px 3px 6px, rgb(0 0 0 / 23%) 0px 3px 6px;
  background-color: #fff;
  border-radius: 6px;
}
.overlap_box{
  
}
.overlap_box i{
  font-size: 35px;
  color: var(--primary);
}
.overlap_box h5{
  font-family: 'Cookie', cursive;
  color: #000;
  font-size: 28px;
  position: relative;
  padding-bottom: 6px;
}
.overlap_box h5::after{
  position: absolute;
  content: '';
  width: 30px;
  height: 2px;
  background-color: #E33812;
  bottom: 0;
  left: 45%;
}
.overlap_box p{
  color: #202020;
  font-size: 15px;
} */
.wedding_album_wrapper{
  position: relative;
}
.wedding_album_wrapper::after{
  position: absolute;
  content: '';
  background: url(../image/security-camera.png) no-repeat;
  width: 128px;
  height: 128px;
  top: 0;
  left: 0;
}
.radius10{
  width: 100%;
  height: 45vh;
  object-fit: cover;
}
.album_head{
  color: #000;
  font-weight: 500;
  font-family: 'Cookie', cursive;
  font-size: 38px;
  display: inline-block;
  position: relative;
}
.album_head::after{
  position: absolute;
  content: "";
  width: 35px;
  background-color: var(--primary);
  height: 2px;
  left: 104%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wedding_album_wrapper::before{
  position: absolute;
    content: '';
    clip-path: polygon(0% 45%, 100% 0%, 100% 100%, 0% 55%);
    transition: 4s;
    transform: translateY(-50%) translateX(-50%) rotate(var(--angle)) translateY(50%) translateX(50%) translateY(-50%);
    position: absolute;
    top: 96px;
    left: 8%;
    width: 110px;
    height: 50px;
    background: linear-gradient(0.25turn,rgba(255,255,0,0.7), rgba(255,255,100,0));
    /* animation-duration: 10s;
    animation-name: wave;
    animation-iteration-count: infinite; */
}
@keyframes wave {
  0% {
    --angle: 90deg;
  }
  50% {
    --angle: 110deg;
  }
  100% {
    --angle: 60deg;
  }
  
}
.album_head::before{
  position: absolute;
  content: "";
  width: 35px;
  background-color: var(--primary);
  height: 2px;
  right: 104%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.album_wrapper h4{
  margin-top: 15px;
  color: #000;
  font-size: 17px;
  font-weight: 600;
}
.album_wrapper span{
  color: #202020;
}
.customer_name {
  text-align: center;
  margin-top: 15px;
  color: #000;
  font-size: 17px;
  font-weight: 600;
}
/* About Section */
.radius10{
  border-radius: 10px;
}
.margin-b30 {
	margin-bottom: 30px;
}
.margin-t30 {
	margin-top: 30px;
}
.about_top_heading{
  font-family: 'Cookie', cursive;
  color: #000;
  font-size: 45px;
  margin-top: 16px;
  margin-bottom: 25px;
}
.small_title{
  font-family: 'Cookie', cursive;
  position: relative;
  color: var(--primary);
  font-size: 40px;
  font-weight: 500;
}
.small_title::before {
  content: "";
  position: absolute;
  width: 30px;
  background-color: var(--primary);
  height: 1px;
  left: 110%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.read-more{
  display: inline-block;
  background-color: var(--primary);
  padding: 10px 20px;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
}
.read-more:hover{
  color: #fff;
}
/* Other Services */
.services{
  position: relative;
}
.services::after{
  position: absolute;
  content: '';
  background: url(../image/camera.png);
  width: 90px;
  height: 79px;
  top: 0;
  left: 0;
}
.services .service-box .service-image::before{
  position: absolute;
  content: '';
  top: 0;
  left: -100%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(to right, rgba(255,255,255,0)0%, rgba(255,255,255,0.3)100%);
  background: linear-gradient(to right, rgba(255,255,255,0)0%, rgba(255,255,255,0.3)100%);
  transform: skewX(-25deg);
}
.services .service-box .service-image img{
  transform: scale(1.02);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services .service-box:hover .service-image::before{
  animation: effect_shine 1s;
} 
.services .offer-overlay::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.services .service-box .service-info{
  /* position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; */
  margin-bottom: 14px;
  z-index: 1;
  transition: all 250ms ease-out;
}
.services .service-box .service-info .service-title-1{
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color:#000;
  font-weight: 500;
  margin: 10px 0px ;
  letter-spacing: 2px;
}
.services .service-box .service-info .btn-outline-danger {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  transition:all 0.3s ease-in-out;
}
.services .service-box .service-info .btn-outline-danger:hover{
  border-color: var(--primary);
  color: var(--primary);
  background-color: transparent;
}
@keyframes effect_shine{
  100%{
      left: 150%;
  }
}
/* Cta Section */
.cta_wrapper{
  background: url(../image/cta_bg.jpg)no-repeat;
  background-size: cover;
  padding: 50px 0px;
  
}
.cta_content h4{
  font-family: 'Cookie', cursive;
  color: #fff;
  font-weight: 500;
  font-size: 40px;
}
.awesome {
  color:#fff;
  font-size:55px;
  font-weight: bold;
  padding: 10px 0px;
  animation:colorchange 20s infinite alternate;
}
.cta_content p{
  font-size: 15px;
  color: #fafafa;
  margin-bottom: 24px;
}
@keyframes colorchange {
  0% {
    
    color: blue;
  }
  
  10% {
    
    color: #8e44ad;
  }
  
  20% {
    
    color: #1abc9c;
  }
  
  30% {
    
    color: #d35400;
  }
  
  40% {
    
    color: blue;
  }
  
  50% {
    
    color: #34495e;
  }
  
  60% {
    
    color: blue;
  }
  
  70% {
    
    color: #2980b9;
  }
  80% {
 
    color: #f1c40f;
  }
  
  90% {
 
    color: #2980b9;
  }
  
  100% {
    
    color: pink;
  }
}
.book-now-btn{
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary);
  font-size: 16px;
  color: #fff;
  border-radius: 28px;
  transition: all 0.5s;
  border: 2px solid transparent;
}
.book-now-btn:hover{
  border: 2px solid var(--primary);
  color: #fff;
  background: transparent;
}
/* Other Photography Service  */
.card img{
  height: 30vh;
  object-fit: cover;
}
.card-body {
  background: #f9f9f9;
  border-radius: 4px;
  padding: 30px 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.card-body h6{
  color: #000;
  font-size: 16px;
  font-weight: 700;
}
.card-text{
  font-size: 14px;
}
.view-more{
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}
/* Footer */
.footer-section {
  background: #151414;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #fff;
  font-size: 15px;
}
.cta-text a {
  color: #fff;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #fff;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  font-size: 18px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.instagram-bg{
  background: #E1306C;
}
.youtube-bg{
  background: #FF0000;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #ff5e14;
}
.footer-widget ul li a {
  color: #fff;
  font-size: 14px;
  text-transform: capitalize;
}
.service-pills{
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.service-pills span{
  width: 100px;
  height: 100px;
  border-radius: 4px;
  padding: 5px;
}
.service-pills span img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #fff;
}
.copyright-text p a{
  color: var(--primary);
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #fff;
}
/* Harshit Wedding */
.all_page_banner img{
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.all_page_banner{
  position: relative;
}
.banner_text{
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 9;
  color: #fff;
}
.banner_text h2{
  font-size: 50px;
  color: #fff;
}
/* gallery */
.lightbox_img{
  width: 100%;
  display: block;
  height: 40vh;
  margin-bottom: 25px;
}
.lightbox_img img{
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}
/* About us Page */
.section_all {
  position: relative;
  padding-top: 40px;
  padding-bottom: 50px;
}
.section-title {
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.section-subtitle {
  letter-spacing: 0.4px;
  line-height: 28px;
  max-width: 550px;
}

.section-title-border {
  background-color: #000;
  height: 1 3px;
  width: 44px;
}

.section-title-border-white {
  background-color: #fff;
  height: 2px;
  width: 100px;
}
.text_custom {
  color: #00bd2a;
}

.about_icon i {
  font-size: 22px;
  height: 65px;
  width: 65px;
  line-height: 65px;
  display: inline-block;
  background: #fff;
  border-radius: 35px;
  color: #00bd2a;
  box-shadow: 0 8px 20px -2px rgba(158, 152, 153, 0.5);
}

.about_header_main .about_heading {
  max-width: 450px;
  font-size: 24px;
}

.about_icon span {
  position: relative;
  top: -10px;
}

.about_content_box_all {
  padding: 28px;
}
/* Contact Us Page */
.serviceBox{
    text-align: center;
    position: relative;
}
.serviceBox .service-icon{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 10px;
    margin: 0 auto 45px;
    border: 2px solid var(--primary);
    z-index: 1;
    position: relative;
    transition: all 0.5s ease 0s;
}
.serviceBox .service-icon:before,
.serviceBox .service-icon:after{
    content: "";
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--primary);
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
    position: absolute;
    bottom: -15px;
    left: 50%;
    opacity: 1;
    transform: translateX(-50%) rotate(135deg);
    transition: all 0.3s ease 0s;
}
.serviceBox .service-icon:after{
    width: 20px;
    height: 20px;
    background: var(--primary);
    border: none;
}
.serviceBox:hover .service-icon:before{
    bottom: -16px;
    opacity: 1;
}
.serviceBox:hover .service-icon:after{
    bottom: -8px;
    opacity: 1;
}
.serviceBox .service-icon span{
    display: block;
    width: 100%;
    height: 100%;
    font-size: 50px;
    color: var(--primary);
    line-height: 104px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}
.serviceBox .service-icon span:before,
.serviceBox .service-icon span:after{
    content: '';
    display: block;
    width: 3px;
    height: 30px;
    background: var(--primary);
    position: absolute;
    bottom: -30px;
    left: 50%;
    opacity: 1;
    transform: translateX(-50%);
    transition: all 0.3s ease 0s;
}
.serviceBox .service-icon span:after{
    width: 20px;
    height: 20px;
    background: transparent;
    border: 3px solid var(--primary);
    border-left: 3px solid transparent;
    border-top: 3px solid transparent;
    transform: translateX(-48%) rotate(45deg);
}
.serviceBox:hover .service-icon span:before,
.serviceBox:hover .service-icon span:after{
    bottom: -30px;
    opacity: 1;
}
.serviceBox .title{
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 10px 0;
}
.serviceBox .description{
    font-size: 15px;
    color: #555;
    padding: 0 10px;
    margin: 0;
}
.serviceBox.skyblue .service-icon{ border-color: #05b4b7; }
.serviceBox.skyblue .service-icon:before{
    border-bottom-color: #05b4b7;
    border-left-color: #05b4b7;
}
.serviceBox.skyblue .service-icon:after,
.serviceBox.skyblue .service-icon span:before{ background: #05b4b7; }
.serviceBox.skyblue .service-icon span{
    border-color: #05b4b7;
    color: #05b4b7;
}
.serviceBox.skyblue .service-icon span:after{
    border-right-color: #05b4b7;
    border-bottom-color: #05b4b7;
}
.serviceBox.skyblue .title{ color: #05b4b7; }
.serviceBox.pink .service-icon{ border-color: #d41271; }
.serviceBox.pink .service-icon:before{
    border-bottom-color: #d41271;
    border-left-color: #d41271;
}
.serviceBox.pink .service-icon:after,
.serviceBox.pink .service-icon span:before{ background: #d41271; }
.serviceBox.pink .service-icon span{
    border-color: #d41271;
    color: #d41271;
}
.serviceBox.pink .service-icon span:after{
    border-right-color: #d41271;
    border-bottom-color: #d41271;
}
.serviceBox.pink .title{ color: #d41271; }
.serviceBox.green .service-icon{ border-color: #0fb513; }
.serviceBox.green .service-icon:before{
    border-bottom-color: #0fb513;
    border-left-color: #0fb513;
}
.serviceBox.green .service-icon:after,
.serviceBox.green .service-icon span:before{ background: #0fb513; }
.serviceBox.green .service-icon span{
    border-color: #0fb513;
    color: #0fb513;
}
.serviceBox.green .service-icon span:after{
    border-right-color: #0fb513;
    border-bottom-color: #0fb513;
}
.serviceBox.green .title{ color: #0fb513; }
@media only screen and (max-width:990px){
    .serviceBox{ margin-bottom: 30px; }
}






















/********** Responsive Breakpoins *********/
/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .my_banner img {
    width: 100%;
    height: 219px;
    object-fit: cover;
  }
  .banner_content h2{
    display: none;
  }
  .small_title{
    font-size: 30px;
  }
  .margin-t30{
    margin-bottom: 30px;
  }
  .about_top_heading {
    font-size: 27px;
    margin-top: 12px;
    margin-bottom: 19px;
  }
  .album_head{
    font-size: 33px;
  }
  .cta_content h4{
    font-size: 34px;
  }
  .awesome{
    font-size: 34px;
  }
  .cta_content p{
    font-size: 13px;
  }
  .book-now-btn {
    padding: 9px 14px;
    font-size: 14px;
  } 
  .services::after{
    display: none;
  }
  .wedding_album_wrapper::before{
    display: none;
  }
  .wedding_album_wrapper::after{
    display: none;
  }
  .card-body{
    padding: 13px 7px;
  }
  .card-text{
    display: none;
  }
  .banner_text h2 {
    font-size: 38px;
  }
  .card-body h6 {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .view-more{
    font-size: 12px;
  }
  .cta-text h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }
}










/* // Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) { 
  
}

/* // Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  
  
}

/* // Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) { 
  
}

/* // X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
  
}
