:root {

  /* Colors */

  --theme-color: #ECC08C;
  --theme-color-second: #1e3f3d;
  --theme-color-third: #fff;
  --theme-color-fourth: #000;

  /* Fonts */

  --heading-font: "rocgrotesk-medium", sans-serif;
  --paragraph-font: "rocgrotesk-regular", sans-serif;
  --span-font: "rocgrotesk-regular", sans-serif;

  /* Shadows */

  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);

}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;

}

body {
  margin: 0;
  padding: 0;
  outline: none;
  font-size: 17px;
  color: #1e1e1e;
  background-color: #fff;
  overflow-x: hidden;
  font-family: var(--paragraph-font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: #0055f1;
  text-decoration: none;
  transition: color 0.3s ease;

}

a:hover {
  text-decoration: none;
  transition: color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
  font-family: var(--heading-font);
  line-height: 1.06;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 55px;
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

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



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




.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}



.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  z-index: 999;
}

.m-backtotop>div.text {
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 0px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}

a.navbar-brand {
  position: absolute;
  left: 50%;
  top: 75px;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 99;
}

a.navbar-brand img {
  width: 115px;
}

.header_menu {
  background: var(--theme-color);
  /* position: absolute;
  left: 0;
  right: 0; */
}

.header_menu li a:hover {
  color: var(--theme-color-second) !important;
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

a.comon-btn {
  background: transparent;
  color: #fff;
  display: flex;
  font-size: 16px;
  align-items: center;
  /* padding: 12px 6px; */
  border-radius: 5px;
  /* width: 14rem; */
  text-align: center;
  text-transform: capitalize;
  font-weight: 600;
  gap: 10px;
  color: var(--theme-color);
  text-align: left;
}

a.comon-btn i {
  width: 40px;
  height: 40px;
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: var(--theme-color-fourth);
  font-size: 20px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-weight: normal;
}

a.comon-btn:hover i {
  background-color: var(--theme-color-fourth);
  color: var(--theme-color-third);
  border: 1px solid var(--theme-color-third);
}

a.btn-2 {
  color: var(--theme-color-second);
  font-weight: 600;
}

a.btn-2 i {
  background: var(--theme-color-second);
  color: var(--theme-color-third);
  font-weight: normal;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.header_menu li a {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  padding: 6px 19px;
  display: inline-block;
  font-weight: 500;
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 200px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999;
}

/* .sticky-top-1 .navbar-brand {
  background-color: var(--theme-color-second) !important;
  padding: 10px 10px;
  padding-top: 0px;
  border-radius: 3px;
} */

/*? ====== Banner Sec ========  */

.banner_sec {
  background-attachment: fixed !important;
  padding-top: 136px;
  padding-bottom: 0px;
  overflow: hidden;
  /* height: 100%; */
}

.banner_sec .banner_content {
  color: var(--theme-color-third);
}

.banner_sec h1 span {
  color: var(--theme-color);
}

.banner_sec h3 {
  font-size: 25px;
}

.banner_sec .banner_big_text {
  padding-top: 70px;
  font-family: "rocgrotesk-bold", sans-serif;
  color: var(--theme-color-third);
  margin-bottom: 0px;
  line-height: 0.5;
  font-size: 192px;

  /* responsive font size */
  font-size: clamp(60px, 12vw, 192px);
}

/*? ====== banner_bottom_strip ========  */

.banner_bottom_strip p {
  color: var(--theme-color-third);
}

/*? ====== home_sec1 ========  */

.home_sec1 h2 {
  transform: translateX(-60px);
  color: var(--theme-color-second);
}

/*? ====== home_sec2 ========  */

.home_sec2 {
  padding: 120px 0px;
  background-attachment: fixed !important;
  
}

/*? ====== home_sec2 ========  */

.home_sec3 .reviewSwiper {
  padding-inline: 14px;
}

.home_sec3 .reviewbox {
  border: 2px solid var(--theme-color);
  padding: 30px;
  border-radius: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home_sec3 h2 {
  margin-bottom: 20px;
}

.home_sec3 .reviewbox .rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home_sec3 .reviewbox h6 {
  margin-bottom: 0px;
  font-size: 16px;
}

.home_sec3 .reviewbox .content {
  /* height: 160px;
  overflow: auto;
  scrollbar-width: thin; */
  margin: 20px 0px;
  margin-bottom: 30px;
}

.home_sec3 .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home_sec3 .reviewbox .bottom_content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.home_sec3 .swiper_button {
  display: flex;
  align-items: center;
  position: relative;
  gap: 10px;
}

.home_sec3 .swiper_button .swiper-button-prev,
.home_sec3 .swiper_button .swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: var(--theme-color);
  font-size: 30px;
  color: var(--theme-color-third);
}


.home_sec3 .swiper_button .swiper-button-prev::after,
.home_sec3 .swiper_button .swiper-button-next::after {
  display: none;
}


/*? ====== home_sec5 ========  */

.home_sec5 {
  padding-bottom: 325px;
}

/*? ====== home_sec6 ========  */

.home_sec6 {
  position: relative;
}

.home_sec6 .imgSlideSwiper {
  padding-bottom: 32px;
}

.home_sec6 .swiper-pagination {
  position: absolute;
  margin-top: 0px;
}

.home_sec6 .swiper-pagination-bullet {
  width: 10px;
  height: 5px;
  background: #d2d9d8;
  opacity: 1;
  border-radius: 10px;
  margin: 0 2px !important;
  transition: all 0.3s ease;
}

.home_sec6 .swiper-pagination-bullet-active {
  background: var(--theme-color-second);
}



/*? ====== home_sec7 ========  */

.home_sec7 {
  background-color: var(--theme-color-second);
  padding-top: 50px;
  padding-bottom: 20px;
}

.home_sec7 .logo_info .footer_logo img {
  width: 370px;
}

.home_sec7 .logo_info p {
  color: var(--theme-color-third);
  margin-top: 20px;
}

.home_sec7 .logo_info,
.home_sec7 .right_side_content {
  margin-top: 50px;
}

/* .home_sec7 .footer_img{
  width: 100%;
  height: 100%;
} */

.home_sec7 .contact_info a,
.home_sec7 .contact_info p {
  color: var(--theme-color);
  font-size: 20px;
  text-decoration: underline;
}

.home_sec7 .contact_info {
  margin-top: 45px;
  margin-bottom: 45px;
}

.home_sec7 .copyright {
  margin-top: 40px;
}

.home_sec7 .logo_info h5 {
  margin-bottom: 5px;
  color: var(--theme-color);
}

.home_sec7 .logo_info .mail_id {
  color: var(--theme-color-third);
}

.home_sec7 .social_links {
  display: flex;
  gap: 10px;
}

.home_sec7 .social_links a {
  width: 30px;
  height: 30px;
  background-color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--theme-color-second);
}

.home_sec7 .right_side_content h5 {
  color: var(--theme-color);
}

.home_sec7 .right_side_content p {
  color: var(--theme-color-third);
  margin-bottom: 5px;
}

.home_sec7 .footer_links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home_sec7 .footer_links a {
  color: var(--theme-color-third);

}

.home_sec7 .footer_links {
  margin-bottom: 40px;
}


/*? ============ INNER PAGES ===========  */

.inner_banner_sec {
  padding: 175px 0 175px;
}

.inner_banner_sec .banner_content {
  color: var(--theme-color-third);
  text-align: center;
}

/*? ====== enquire page ========  */

.enquire_sec1 .contact-top {
  padding-block: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.enquire_sec1 .ph_no {
  border-right: 1px solid var(--theme-color);
  border-left: 1px solid var(--theme-color);
  padding-inline: 0px;
}

.enquire_sec1 .contact-icon {
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--theme-color-second);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.enquire_sec1 .contact-top h4 {
  color: var(--theme-color-second);
}

.enquire_sec1 .contact-top a {
  color: var(--theme-color-fourth);
}

.enquire_sec1 .contact-top:hover .contact-icon {
  background: var(--theme-color-third);
  border: 1px solid var(--theme-color);
}

.enquire_sec2 .heading {
  text-align: center;
}

.enquire_sec2 input,
.enquire_sec2 textarea,
.enquire_sec2 button {
  padding: 14px 20px;
  border-radius: 10px;
  outline: none;
  border: 1px solid transparent;
  background-color: rgba(229, 174, 112, 0.123);
  transition: all 0.3s ease;
}

.enquire_sec2 .submit_btn {
  background: var(--theme-color-second);
  width: 100%;
  color: var(--theme-color-third);
}

.enquire_sec2 .submit_btn:hover {
  background-color: var(--theme-color-third);
  border: 1px solid var(--theme-color-second);
  color: var(--theme-color-fourth);
}

.enquire_sec2 input:focus {
  border: 1px solid var(--theme-color);
}

.enquire_sec2 .enquiry_type {
  display: flex;
  gap: 20px;
  padding-left: 20px;
}

.enquire_sec2 .enquiry_type input {
  width: auto;
}

.enquire_sec2 .enquiry_type .select_type {
  display: flex;
  align-items: center;
  gap: 10px;
}

.enquire_sec2 .enquiry_type .select_type p {
  margin-bottom: 0;
}

.enquire_sec3 h2 {
  color: var(--theme-color-second);
}

.enquire_sec3 .pricing_card {
  border: 1px solid var(--theme-color);
  height: 100%;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}

.enquire_sec3 .enquire_img1 {
  border-radius: 10px;
}

.enquire_sec3 .pricing_card img {
  width: 50px;
}

.enquire_sec3 .pricing_card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.enquire_sec3 .pricing_card h5 {
  color: var(--theme-color-second);
  line-height: 1.2;
  margin-top: 24px;
}

.enquire_sec3 .pricing_card li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.enquire_sec3 .pricing_card p {
  margin-bottom: 0;
}

/*? ====== about page ========  */

.about_sec2 img {
  border-radius: 20px;
}

.about_sec3 h2 span {
  color: var(--theme-color-second);
}


.about_sec3 .why_choose_box {
  border: 1px solid var(--theme-color-second);
  padding: 25px;
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
}

.about_sec3 .why_choose_box .icon {
  background-color: #fff5e2;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--theme-color-second);
  margin-bottom: 20px;
}

.about_sec3 .why_choose_box:hover {
  background-color: var(--theme-color-second);
  border: 1px solid var(--theme-color-second);
  transform: translateY(-10px);
  color: var(--theme-color-third);
}

.testimonial_sec1 .reviewbox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial_sec1 .heading {
  justify-content: center;
}


/*? =============== dj_hire_page ===============  */

.dj_hire_sec1 img {
  border-radius: 20px;
}

.dj_hire_sec3 .service-box,
.dj_hire_sec3 .service-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}


/* =========================
   Overlay Positions
========================= */
.dj_hire_sec3 .over-lay-top {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  color: var(--theme-color-third);
}

.dj_hire_sec3 .over-lay-bottom,
.dj_hire_sec3 .over-lay-1 {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  color: var(--theme-color-third);
}


/* =========================
   Overlay Text
========================= */
.dj_hire_sec3 .over-lay-top h4,
.dj_hire_sec3 .over-lay-1 h5 {
  font-size: 25px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
}


/* =========================
   Gradient Overlay
========================= */
.dj_hire_sec3 .service-box::before,
.dj_hire_sec3 .service-box::before {
  content: "";
  position: absolute;
  inset: 0;
/*   background: radial-gradient(circle,
      rgba(237, 242, 245, 0) 0%,
      rgba(0, 0, 0, 0.84) 86%); */
  transition: opacity 0.35s ease;
}

/* Darken overlay on hover */
.dj_hire_sec3 .service-box:hover::before,
.dj_hire_sec3 .service-box:hover::before {
  opacity: 0.95;
}



/* =========================
   Overlay Positions
========================= */
.dj_hire_sec3 .over-lay-top {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  color: var(--theme-color-third);
}

.dj_hire_sec3 .over-lay-bottom,
.dj_hire_sec3 .over-lay-1 {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  color: var(--theme-color-third);
}


/* =========================
   Overlay Text
========================= */
.dj_hire_sec3 .over-lay-top h4,
.dj_hire_sec3 .over-lay-1 h5 {
  font-size: 25px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
}


/* =========================
   Gradient Overlay
========================= */
.dj_hire_sec3 .service-box::before,
.dj_hire_sec3 .service-box::before {
  content: "";
  position: absolute;
  inset: 0;
/*   background: radial-gradient(circle,
      rgba(237, 242, 245, 0) 0%,
      rgba(0, 0, 0, 0.84) 86%); */
  transition: opacity 0.35s ease;
}

/* Darken overlay on hover */
.dj_hire_sec3 .service-box:hover::before,
.dj_hire_sec3 .service-box:hover::before {
  opacity: 0.95;
}


.artist_sec1 .artist_video_box video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.artist_sec1 .artist_video_box iframe {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/*? =============== dj_hire_page ===============  */

.dj_hire_sec1 img {
  border-radius: 20px;
}

.dj_hire_sec1 h3 {
  font-size: 34px;
  color: var(--theme-color-second);
}

.dj_hire_sec3 .service-box,
.dj_hire_sec3 .service-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.align-item-center {
    position: absolute;
    right: 90px;
    bottom: 0px;
}

section.dj_hire_sec3 .row {
    position: relative;
    z-index: 11;
}




div.comon-btn {
  background: transparent;
  color: #fff;
  display: flex;
  font-size: 16px;
  align-items: center;
  border-radius: 5px;
  text-align: center;
  text-transform: capitalize;
  font-weight: 600;
  gap: 10px;
  color: var(--theme-color);
  text-align: left;
}

div.comon-btn .comon1,
div.comon-btn .comon2{
  color: var(--theme-color);
}

div.comon-btn .comon2 {
  font-size: 14px;
}

div.comon-btn i {
  width: 40px;
  height: 40px;
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: var(--theme-color-fourth);
  font-size: 20px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-weight: normal;
}

div.comon-btn:hover i {
  background-color: var(--theme-color-fourth);
  color: var(--theme-color-third);
  border: 1px solid var(--theme-color-third);
}

div.btn-2 {
  color: var(--theme-color-second);
  font-weight: 600;
}

div.btn-2 .comon1,
div.btn-2 .comon2{
  color: var(--theme-color-second);
}

div.btn-2 .comon2 {
  font-size: 14px;
}

div.btn-2 i {
  background: var(--theme-color-second);
  color: var(--theme-color-third);
  font-weight: normal;
}

