@import url("https://fonts.googleapis.com/css2?family=Forum&family=Public+Sans:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --primary-color: #0878c8;
  --secondary-color: #7cb401;
  --dark-color: #000;
  --white-color: #ffffff;
  --light-green-color: #f3f9eb;
  --light-blue-color: #ebf4fb;
  --primary-font: "Forum", cursive;
  --secondary-font: "Public Sans", sans-serif;
}

/* ---------------------
Gobal
--------------------- */

body {
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--dark-color);
  line-height: 1.75;
}

a {
  text-decoration: none;
  -webkit-transition: ease all 0.3s;
  -moz-transition: ease all 0.3s;
  -o-transition: ease all 0.3s;
  transition: ease all 0.3s;
}

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

ul {
  /* list-style: block; */
  padding: 0;
  margin: 0;
}

ol {
  margin: 0;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
  font-family: var(--primary-font);
}

p {
  margin-bottom: 30px;
}

/* -------------------------
Miscellanous
------------------------- */

.block {
  padding: 45px 0;
}

.section-head {
  margin-bottom: 35px;
}

.section-head h3 {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 600;
  font-family: var(--secondary-font);
  text-transform: capitalize;
}

.section-head h2 {
  color: var(--dark-color);
  font-size: 38px;
}

.section-head h2 span {
  color: var(--secondary-color);
}

.link {
  color: var(--white-color);
  font-weight: 600;
  text-decoration: none;
}

.link svg {
  transition: ease all 0.3s;
  -webkit-transition: ease all 0.3s;
  -moz-transition: ease all 0.3s;
  -o-transition: ease all 0.3s;
}

.link:hover {
  color: var(--primary-color);
}

.link:hover svg {
  transform: translateX(5px);
}

/* -----Colors----- */

.dark-bg {
  background-color: var(--dark-color);
}

.gray-color-bg {
  background-color: var(--secondary-color);
}

.dark-gray-bg {
  background-color: var(--dark-gray-color);
}

.text-success {
  color: #44cd14 !important;
}

/* Buttons */
.btn {
  position: relative;
  font-size: 14px !important;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  overflow: hidden;
}

.btn span {
  position: relative;
}

.btn svg {
  margin-left: 10px;
  -webkit-transition: ease all 0.4s;
  -moz-transition: ease all 0.4s;
  -o-transition: ease all 0.4s;
  transition: ease all 0.4s;
}

.btn:hover svg {
  transform: translateX(5px);
}

.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  -webkit-transition: ease all 0.4s;
  -moz-transition: ease all 0.4s;
  -o-transition: ease all 0.4s;
  transition: ease all 0.4s;
  overflow: hidden;
}

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

.btn-primary,
.btn-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary,
.btn-secondary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/*
.btn.btn-primary:before{
    background-color: var(--secondary-color);
} */

.btn-dark {
  background-color: var(--dark-gray-color);
}

.btn-outline-light {
  border: 1px solid #fff;
}

/* ---Modal---- */
.modal{
  z-index: 9999;
}

.modal-header {
  justify-content: center;
  border: none;
}

.modal-title {
  color: #000;
}

.modal .btn-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  color: var(--dark-color);
  background-image: none;
  opacity: 1;
  z-index: 1;
}

.modal-footer {
  border: none;
}

/* -----Card----- */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.08);
}

.card-img img {
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

/* .card-body {
  padding: 30px;
} */

.card .icon {
  margin-bottom: 20px;
}

.card-body h5 {
  color: var(--dark-color);
  margin-bottom: 0;
}

.rounded {
  border-radius: 20px !important;
}

/* ------Form-------- */

.form-label {
  color: #000;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 3px;
}

.form-control,
.form-select {
  height: 50px;
  background-color: #f8f8f8;
  border: none;
}

.form-control::placeholder,
.form-select::placeholder{
  font-size: 15px;
  font-weight: 300;
}


/* -------Inner Page Banner------------ */

.page-banner-wrap {
  position: relative;
  color: var(--white-color);
  height: 400px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.page-banner-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(38, 38, 41, 0.65);
}

.page-banner {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: table;
}

.page-banner-inner {
  display: table-cell;
  vertical-align: middle;
}

.page-banner-inner h1 {
  font-size: 38px;
  font-weight: 500;
}

.page-banner-inner nav .breadcrumb {
  justify-content: center;
}

.page-banner-inner nav .breadcrumb .breadcrumb-item {
  font-weight: 500;
}

.page-banner-inner nav .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white-color);
}

.page-banner-inner nav .breadcrumb .breadcrumb-item.active {
  color: var(--secondary-color);
}

.page-banner-inner nav .breadcrumb .breadcrumb-item a {
  color: var(--white-color);
}



/* -------------------------
Slick Slider
------------------------- */

.slick-next,
.slick-prev {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: 1;
}

.slick-next:hover,
.slick-prev:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.slick-prev:before,
.slick-next:before {
  font-family: "Fontawesome";
}

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

.slick-dots li {
  width: auto;
  height: auto;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
  background-color: var(--secondary-color);
  border-radius: 15px;
}

.slick-dots li.slick-active button {
  width: 30px;
}

.slick-dots li button:before {
  width: 0;
  height: 0;
  opacity: 0;
  color: transparent;
}

.slick-dots li.slick-active button:before {
  color: transparent;
}

/* -------------------------
Header
------------------------- */

/* -----Top Header------ */

.top-header {
  color: var(--white-color);
  background-color: var(--primary-color);
  font-size: 12px;
  padding: 10px 0;
}

.top-header ul li,
.si-wrap li {
  display: inline-block;
  margin-right: 10px;
}

.top-header ul li:last-child {
  margin-right: 0;
}

.top-header ul li svg {
  margin-right: 5px;
}

.top-header ul li a {
  color: var(--white-color);
}

.top-header ul li a:hover {
  color: var(--secondary-color);
}

.top-contact ul li {
  margin-right: 40px;
}

.top-contact ul li:last-child {
  margin-right: 0;
}

/* -----Bottom Header------ */

.bottom-header{
  border-bottom: 1px solid #eee;
}

.bottom-header nav .nav-item .nav-link {
  color: var(--white-color);
  padding: 10px 15px;
  border-bottom: 1px solid #0b85dc;
}

.bottom-header .navbar-brand img {
  width: 110px;
}

.header-btn {
  white-space: nowrap;
}

.bottom-header nav .nav-item .nav-link:hover,
.bottom-header nav .nav-item .nav-link.active,
.bottom-header nav li.current-menu-item {
  color: var(--secondary-color);
  background-color: var(--light-blue-color);
}

.bottom-header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: none;
  background-color: var(--dark-color);
  -webkit-transition: ease all 0.3s;
  -moz-transition: ease all 0.3s;
  -o-transition: ease all 0.3s;
  transition: ease all 0.3s;
  animation: smoothScroll 1s forwards;
  z-index: 9999;
}

.bottom-header.fixed-header nav .nav-item .nav-link {
  color: var(--white-color);
}

.bottom-header.fixed-header nav .nav-item .nav-link:hover,
.bottom-header.fixed-header nav .nav-item .nav-link.active,
.bottom-header.fixed-header nav li.current-menu-item {
  color: var(--secondary-color);
}

.bottom-header.fixed-header .navbar-brand img {
  width: 100px;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}

.dropdown-menu {
  background-color: var(--dark-color);
  padding: 0;
  overflow: hidden;
}

.dropdown-menu .dropdown-item {
  padding-top: 8px;
  padding-bottom: 8px;
  color: var(--white-color);
  font-size: 14px;
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--primary-color);
}

* mobile-menu */
/* Menu */

.navbar-toggler {
  color: var(--secondary-color);
}
.home-header .navbar-toggler {
  color: var(--light-color);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler svg {
  color: var(--primary-color);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-collapse {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  padding-top: 20px;
  background-color: var(--primary-color);
  transform: translateX(350px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: ease all 0.3s;
  -o-transition: ease all 0.3s;
  -moz-transition: ease all 0.3s;
  transition: ease all 0.3s;
  z-index: 10;
}

.navbar-collapse{
  background-image: url('../img/video-overlay.png');
  background-position: center;
  background-size: contain;
}

.navbar-collapse .couple{
  position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    filter: hue-rotate(143deg);
    opacity: 0.3;
}


.navbar-collapse.show {
  transform: translate(0);
}

.navbar-collapse svg{
  color: var(--white-color);
}

.sticky-btn{
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 99;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

.sticky-btn a{
  padding: 12px 10px;
  width: 100%;
  border-radius: 0;
}


/* -------------------------
Banner Section
------------------------- */

.banner-section .banner-slider-item {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white-color);
  height: 650px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-slider-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,0878c8+100&1+0,0+100 */
  background: -moz-linear-gradient(
    left,
    rgba(0, 0, 0, 1) 0%,
    rgba(8, 120, 200, 0) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 1) 0%,
    rgba(8, 120, 200, 0) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(8, 120, 200, 0) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000878c8',GradientType=1 ); /* IE6-9 */
}

.banner-section .banner-slider-item h1 span {
  color: var(--secondary-color);
}

.banner-section .banner-slider-item p {
  font-size: 20px;
  margin-bottom: 40px;
}

.banner-slider .slick-next,
.banner-slider .slick-prev{
  top: unset;
  bottom: 50px;
}

.banner-slider .slick-next {
  right: 50%;
  margin-right: -45px;
}

.banner-slider .slick-prev {
  left: 50%;
  margin-left: -45px;
}

/* -------------------------
Welcome section
------------------------- */

.welcome-img {
  position: relative;
}
.welcome-img .circle-hrt {
  position: absolute;
  top: -55px;
  left: -20px;
  width: 100px;
  z-index: -1;
  animation: rotate 4s infinite alternate;
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(50deg);
  }
}

/* -------------------------
What We Do section
------------------------- */

.what-we-do-section {
  background-color: var(--light-blue-color);
}

/*.what-we-do-section .section-head {*/
/*  margin-bottom: 90px;*/
/*}*/

.process-card {
  position: relative;
}

.process-card .card-body {
  padding: 15px 10px;
}

.process-card .icon svg,
.process-card .icon img {
  height: 40px;
  object-fit: contain;
}

.process-card h5{
  font-size: 16px;
}

.process-card:hover {
  background-color: var(--primary-color);
}

.process-card:hover svg path {
  fill: var(--white-color);
}

.process-card:hover img{
    filter:brightness(30);
}

.process-card:hover h5 {
  color: var(--white-color);
}

/* -------------------------
Video Section
------------------------- */

.video-section {
  position: relative;
  background-color: var(--primary-color);
}

.video-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/video-overlay.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: gradient-animation 15s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 20% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 20% 50%;
  }
}

/* -------------------------
Available Client Section
------------------------- */

.available-client-section {
  background-color: var(--light-green-color);
}

.available-client-section .slick-list {
  padding: 30px 0 50px 0;
}

.available-client-item {
  margin: 0 10px;
}

.available-client-item .card {
  -webkit-transition: ease all 0.3s;
  -moz-transition: ease all 0.3s;
  -o-transition: ease all 0.3s;
  transition: ease all 0.3s;
}

.available-client-item .link {
  color: var(--secondary-color);
}

.client-detail {
  margin-bottom: 30px;
}

.client-detail ul {
  line-height: 2.2;
}

.client-detail ul li{
    display:flex;
}

.client-detail ul li span {
  display: inline-block;
  width: 50%;
}

.available-client-item .card:hover {
  color: var(--white-color);
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

.available-client-item .card:hover svg path {
  fill: var(--white-color);
}

.available-client-item .card:hover .link {
  color: var(--white-color);
}

.available-client-slider .slick-dots {
  bottom: 0;
}

/* -------------------------
Wedding Category Section
------------------------- */

.cat-card {
  position: relative;
}

.cat-card .cat-card-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.cat-card .cat-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55px;
  font-size: 12px;
  text-align: center;
  background-color: var(--primary-color);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  -webkit-transition: ease all 0.4s;
  -moz-transition: ease all 0.4s;
  -o-transition: ease all 0.4s;
  transition: ease all 0.4s;
}

.cat-card:hover .cat-card-footer {
  height: 100%;
  background-color: rgba(8, 120, 200, 0.9);
  -webkit-transition: ease all 0.4s;
  -moz-transition: ease all 0.4s;
  -o-transition: ease all 0.4s;
  transition: ease all 0.4s;
}

/* -------------------------
Testimonals Section
------------------------- */

.testimonails-section {
  background-color: var(--light-blue-color);
}

.testimonials-slider .slick-track {
  padding: 30px 0;
}

.testimonials-slider-item {
  margin: 0 10px;
}

.testimonials-slider-item .card {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonials-slider-item .quote-icon {
  position: absolute;
  top: -15px;
  left: 30px;
}

.testimonials-slider-item .card .card-body {
  padding: 60px 40px 40px;
}

.testimonials-slider-item .card .card-body .client-info .name {
  font-family: var(--secondary-font);
  font-weight: 700;
  margin-bottom: 0;
}

.testimonials-slider-item .card .card-body .client-info p {
  color: #777777;
  margin-bottom: 0;
}

.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
  background-color: var(--primary-color);
}

.testimonials-slider .slick-prev {
  left: -50px;
}

.testimonials-slider .slick-next {
  right: -50px;
}

/* -------------------------
Blog Section
------------------------- */

.blog-section {
  background-color: var(--light-green-color);
}

.blog-card {
  -webkit-transition: ease all 0.4s;
  -moz-transition: ease all 0.4s;
  -o-transition: ease all 0.4s;
  transition: ease all 0.4s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card .card-body p {
  line-height: 1.5;
}

.blog-card h4 a {
  display: block;
  color: var(--dark-color);
  font-family: var(--secondary-font);
  font-weight: 700;
  margin-bottom: 15px;
}

.blog-card h4 a:hover {
  color: var(--secondary-color);
}

/* -------------------------
Partner Section
------------------------- */

.partner-section .logo-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap img{
  width: 100px;
}

/* -------------------------
Footer
------------------------- */

footer {
  font-weight: 300;
  color: var(--white-color);
  background-color: #212226;
}

.footer-item{
  margin-bottom: 40px;
}

footer a {
  color: var(--white-color);
}
footer a:hover {
  color: var(--secondary-color);
}

.top-footer {
  padding: 70px 0 10px 0;
  border-bottom: 1px solid #525252;
}

.footer-logo {
  display: block;
  margin-bottom: 30px;
}

footer .si-wrap li {
  margin-right: 20px;
}

footer .si-wrap li a {
  color: var(--white-color);
}

.footer-title {
  font-weight: 700;
  font-family: var(--secondary-font);
  margin-bottom: 20px;
}

.footer-item .menu-list {
  line-height: 2.5;
}

.contact-area .icon {
  color: var(--secondary-color);
  float: left;
  margin-right: 10px;
}

.contact-area p {
  overflow: hidden;
}

.btm-footer {
  padding: 20px 0 70px;
}

/* -------------------------
About Page
------------------------- */

.introduction-section .welcome-img .circle-hrt {
  top: inherit;
  bottom: -55px;
}

.who-we-serve-section {
  color: var(--white-color);
  background-color: var(--secondary-color);
}

.who-we-serve-section h2 {
  color: var(--white-color);
}

.who-we-serve-lft {
  padding: 80px 15px 50px 14%;
}

.who-we-serve-rtl {
  width: 100%;
  height: 100%;
}

.who-we-serve-rtl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------
Why Choose Us Section
------------------------- */

.why-choose-us-list-section {
  background-color: var(--light-blue-color);
}

.why-choose-us-list-section .why-choose-us-lists li {
  margin-bottom: 10px;
}

.why-choose-us-list-section .why-choose-us-lists li:last-child,
.why-choose-us-list-section .why-choose-us-lists li:last-child p {
  margin-bottom: 0;
}

.why-choose-us-list-section .why-choose-us-lists li::marker {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 700;
}

.why-choose-us-list-section .why-choose-us-lists h4 {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 700;
  font-family: var(--secondary-font);
  margin-bottom: 15px;
}

/* -------------------------
Team Page
------------------------- */

.team-listing-section {
  background: -moz-linear-gradient(
    -45deg,
    rgba(124, 180, 1, 0.12) 0%,
    rgba(8, 120, 200, 0.14) 51%,
    rgba(124, 180, 1, 0.1) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    -45deg,
    rgba(124, 180, 1, 0.12) 0%,
    rgba(8, 120, 200, 0.14) 51%,
    rgba(124, 180, 1, 0.1) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    135deg,
    rgba(124, 180, 1, 0.12) 0%,
    rgba(8, 120, 200, 0.14) 51%,
    rgba(124, 180, 1, 0.1) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1f7cb401', endColorstr='#1a7cb401',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.team-card {
  -webkit-transition: ease all 0.4s;
  -moz-transition: ease all 0.4s;
  -o-transition: ease all 0.4s;
  transition: ease all 0.4s;
}

.team-card .card-body {
  padding-top: 50px;
}

.team-card .member-img {
  margin-bottom: 30px;
}

.team-card .member-img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 4px solid var(--secondary-color);
  border-radius: 50%;
}

.team-card .member-detail h4,
#member-detail-modal .member-detail h4 {
  font-family: var(--secondary-font);
  font-weight: 700;
  margin-bottom: 0;
}

.team-card .member-detail .designation {
  color: var(--secondary-color);
  margin-bottom: 0;
}

.team-card .member-detail .si {
  margin: 20px 0 30px 0;
}

.team-card .member-detail .si a,
#member-detail-modal .member-detail .si a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--white-color);
  background-color: var(--secondary-color);
  border-radius: 50%;
  margin: 0 3px;
}

.team-card .member-detail .link {
  color: var(--secondary-color);
}

.team-card:hover {
  color: var(--white-color);
  background-color: var(--secondary-color);
}

.team-card:hover .member-img img {
  border-color: var(--white-color);
}

.team-card:hover .member-detail .designation {
  color: var(--white-color);
}

.team-card:hover .member-detail .si a {
  color: var(--secondary-color);
  background-color: var(--white-color);
}

.team-card .member-detail .si a:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}

.team-card:hover .member-detail .link {
  color: var(--white-color);
}

.team-card .member-detail .link:hover {
  color: var(--primary-color);
}

#member-detail-modal .modal-body {
  padding: 30px;
}

#member-detail-modal .member-detail .si {
  margin: 15px 0 30px 0;
}

/* -------------------------
FAQ's
------------------------- */

.faq-wrap .accordion-item {
  border-color: #d9d9d9;
  margin-bottom: 15px;
  border-radius: 8px;
}

/* .faq-wrap .accordion-item:first-of-type,
.faq-wrap .accordion-item:last-of-type,
.accordion-item:first-of-type .accordion-button,
.accordion-item:last-of-type .accordion-button.collapsed{
  border-radius: 0;
} */

.faq-wrap .accordion-button {
  color: var(--white-color);
  font-weight: 500;
  font-family: var(--secondary-font);
  background-color: var(--primary-color);
  box-shadow: none;
  border-radius: 8px;
}

.faq-wrap .accordion-button[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.faq-wrap .accordion-button::after {
  color: var(--white-color);
}

.accordion-button:not(.collapsed)::after {
  content: "-";
  background-image: none;
}
.accordion-button::after {
  content: "+";
  background-image: none;
}

/* -------------------------
Registration
------------------------- */

.registration-form-section,
.constultant-page {
  position: relative;
  background-color: var(--light-green-color);
  overflow: hidden;
}

.registration-form-section::before,
.constultant-page::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 35px;
  background-image: url("../img/grass.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

.dancing-couple {
  position: absolute;
  right: 40px;
  bottom: 20px;
  width: 100px;
  opacity: 0.5;
}



.registration-form .card-body,
.contact-form .card-body {
  padding: 25px;
}

.registration-form,
.contact-form {
  position: relative;
}

.registration-form .heart-md,
.registration-form .heart-sm,
.contact-form .heart-md,
.contact-form .heart-sm {
  position: absolute;
  animation:  img-pulse 3s infinite alternate;
}

.registration-form .heart-md{
  top: -40px;
  left: -50px;
}

.contact-form .heart-md  {
  top: -40px;
  right: -50px;
}


.registration-form .heart-sm,
.contact-form .heart-sm {
  top: 60%;
  right: -35px;
  width: 50px;
  transform: rotate(30deg);
}

@keyframes img-pulse {
  0%{
    transform: scale(1);
    opacity: 1;
  }
  100%{
    transform: scale(1.2);
    opacity: 0.5;
  }
}


/* -------------------------
BLog Detail
------------------------- */

.blog-detail .hero-blog{
  margin-bottom: 30px;
}

.blog-detail .hero-blog img{
  width: 100%;
  height: 500px;
  border-radius: 15px;
}

.hero-title{
  margin-bottom: 20px;
}

/* -------------------------
Parlour Detail
------------------------- */

.parlour-detail .hero-parlour img{
  border-radius: 15px;
}

.parlour-contact-info li{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.parlour-contact-info .icon{
  flex: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: var(--white-color);
  background-color: var(--secondary-color);
  float: left;
  margin-right: 20px;
}

.parlour-contact-info li .info a{
  color: var(--dark-color);
  word-break: break-all;
}

.parlour-contact-info li .info a:hover{
  color: var(--secondary-color);
}

/* -------------------------
Sidebar
------------------------- */

.sidebar .sidebar-item{
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.sidebar .sidebar-item .sidebar-title{
  margin-bottom: 20px;
}

.sidebar .sidebar-item .recent-blog-item{
padding-bottom: 20px;
margin-bottom: 20px;
border-bottom: 1px solid #e4e4e4;
}

.sidebar .sidebar-item .recent-blog-item:last-child{
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
  }

.sidebar .sidebar-item .recent-blog-item .img{
  float: left;
  margin-right: 15px;
}

.sidebar .sidebar-item .recent-blog-item .img img{
  width: 100px;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 10px;
}

.sidebar .sidebar-item .recent-blog-item .content h5{
  margin-bottom: 0;
  font-family: var(--secondary-font);
}
.sidebar .sidebar-item .recent-blog-item .content h5 a{
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 500;
}

.sidebar .sidebar-item .recent-blog-item .content h5 a:hover{
  color: var(--secondary-color);
}

/* -------------------------
Consultant Page
------------------------- */

.constultant-page .contact-section .contact-img img{
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
  border-radius: 15px;
}

/* -------------------------
Service Page
------------------------- */
.service-process-section{
  background-color: var(--light-green-color);
}
.service-process-item .card{
  width: 100%;
  margin: 0 auto;
}

.service-process-item {
  position: relative;
  padding:50px 0 70px 0;
}

.service-process-item .misc-wrap{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 1px;
}

.service-process-item .misc-wrap .misc{
  position: relative;
  height: 100%;
}

.service-process-item .mid-line{
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  background-color: var(--secondary-color);
}

.service-process-item .step{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: -19px auto 0 auto;
  display: inline-block;
  background-color: var(--secondary-color);
  border-radius: 35px;
  color: var(--white-color);
}

.service-process-item .arrow-line{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  margin:-10px auto 0 auto;
}

.point{
  display: none;
  width: 20px;
  height: 20px;
  line-height: 18px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--white-color);
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
}

.point span{
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--secondary-color);
  border-radius: 50%;
}

.arrow-line .arrow{
  display: none;
  position: absolute;
  top: 6px;
  left: 60px;
}



.service-process-item .card .card-img img{
  width: 100%;
  border-radius: 15px;
}

.service-process-item .card .card-body h4{
  font-family: var(--secondary-font);
  font-weight: 700;
  margin-bottom: 10px;
}

.service-process-item .card .card-body ol{
  padding-left: 20px;
}





.service-process-item:nth-child(even) .arrow-line .arrow{
  left: unset;
  right: 60px;
  transform: rotate(180deg);
}

.service-include-points{
  position: relative;
  padding: 40px;
  line-height: 2.2;
  color: var(--white-color);
  background-color: var(--secondary-color);
  border-radius: 20px;
  z-index: 1;
}

.service-include-points li{
  position: relative;
  padding-left: 20px;
}

.service-include-points li::before{
  content: "\f00c";
  position: absolute;
  left: 0;
  font-family: 'Fontawesome';
}

.shortlisting-initiating-section{
  background-color: var(--light-blue-color);
}

.shortlisting-initiating-section ol{
  line-height: 2.2;
}

/* -------------------------
Press Page
------------------------- */

.press-listing .card-img{
  padding: 20px 20px 0;
}

.press-listing .card-body small{
  display: block;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.press-listing .link{
  color: var(--primary-color);
}

.press-listing .link:hover{
  color: var(--secondary-color);
}

/* -------------------------
Scroll top Top
------------------------- */
#scroll {
  position: fixed;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  border: 1px solid var(--white-color);
  text-indent: -9999px;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  z-index: 99;
}
#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #ffffff;
}
#scroll:hover {
  background-color: var(--primary-color);
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

/* ------Scroll------ */

body::-webkit-scrollbar,
.navbar .megamenu::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track,
.navbar .megamenu::-webkit-scrollbar-track {
  background-color: var(--primary-color);
  border-radius: 8px;
}

body::-webkit-scrollbar-thumb,
.navbar .megamenu::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  border-radius: 8px;
}

.navbar .megamenu {
  padding: 1rem;
}
/* ============ desktop view ============ */
@media all and (min-width: 992px) {
  .navbar .has-megamenu {
    position: static !important;
  }
  .navbar .megamenu {
    left: 0;
    right: 0;
    width: 100%;
    height: 90vh;
    margin-top: 0;
    overflow-y: scroll;
  }
}
/* ============ desktop view .end// ============ */

/* ============ mobile view ============ */
@media (max-width: 991px) {
  .navbar .navbar-collapse,
  .navbar .navbar-collapse {
    overflow-y: auto;
    max-height: 100vh;
    margin-bottom: 20px;
  }
}
/* ============ mobile view .end// ============ */

.tb-row{
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#7cb401+0,0878c8+50,7cb401+100&0.15+0,0.15+50,0.15+100 */
    background: radial-gradient(ellipse at center,  rgba(124,180,1,0.15) 0%,rgba(8,120,200,0.15) 50%,rgba(124,180,1,0.15) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    }

    .evt-schedule .icon{
      display: inline-block;
      width: 30px;
      height: 30px;
      line-height: 30px;
      text-align: center;
      background-color: var(--secondary-color);
      margin-right: 5px;
      border-radius: 50%;
    }

    /*.event-card{*/
    /*  padding:20px;*/
    /*}*/

    .event-card .icon svg,
    .event-card .icon img {
      height: 40px;
      object-fit: contain;
    }

    .event-card h5{
      font-size: 18px;
    }

    .event-card:hover {
      background-color: var(--primary-color);
    }

    .event-card:hover svg path {
      fill: var(--white-color);
    }

    .event-card:hover h5 {
      color: var(--white-color);
    }

    .about-you-inner thead th:nth-child(2),
    .about-you-inner thead th:nth-child(3),
    .about-you-inner thead th:nth-child(4){
      background-color: #F3F9EB;
    }

    .about-you-inner thead th:nth-child(2){
      border-radius: 5px 0 0 5px;
    }

    .about-you-inner thead th:nth-child(4){
      border-radius: 0 5px  5px 0;
    }

    .about-you-inner{
      border: 1px solid #e0e0e0;
      padding: 30px;
      border-radius: 10px;
    }

    .about-you-inner .form-check-input[type=radio]{
      border-radius: 4px;
    }

    /* File Uploader */
    .uploader {
      display: block;
      clear: both;
      margin: 0 auto;
      width: 100%;
    }
    .uploader label {
      clear: both;
      width: 100%;
      padding: 2rem 1.5rem;
      text-align: center;
      background: #fff;
      border-radius: 7px;
      border: 3px solid #eee;
      transition: all 0.2s ease;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
    }
    .uploader label:hover {
      border-color: var(--primary-color);
    }
    .uploader label.hover {
      border: 3px solid var(--primary-color);
      box-shadow: inset 0 0 0 6px #eee;
    }
    .uploader label.hover #start i.fa {
      transform: scale(0.8);
      opacity: 0.3;
    }
    .uploader #start {
      float: left;
      clear: both;
      width: 100%;
    }
    .uploader #start.hidden {
      display: none;
    }
    .uploader #start i.fa {
      font-size: 50px;
      margin-bottom: 1rem;
      transition: all 0.2s ease-in-out;
    }
    .uploader #response {
      float: left;
      clear: both;
      width: 100%;
    }
    .uploader #response.hidden {
      display: none;
    }
    .uploader #response #messages {
      margin-bottom: 0.5rem;
    }
    .uploader #file-image {
      display: inline;
      margin: 0 auto 0.5rem auto;
      width: auto;
      height: auto;
      max-width: 180px;
    }
    .uploader #file-image.hidden {
      display: none;
    }
    .uploader #notimage {
      display: block;
      float: left;
      clear: both;
      width: 100%;
    }
    .uploader #notimage.hidden {
      display: none;
    }
    .uploader progress,
    .uploader .progress {
      display: inline;
      clear: both;
      margin: 0 auto;
      width: 100%;
      max-width: 180px;
      height: 8px;
      border: 0;
      border-radius: 4px;
      background-color: #eee;
      overflow: hidden;
    }
    .uploader .progress[value]::-webkit-progress-bar {
      border-radius: 4px;
      background-color: #eee;
    }
    .uploader .progress[value]::-webkit-progress-value {
      background: linear-gradient(to right, #393f90 0%, #454cad 50%);
      border-radius: 4px;
    }
    .uploader .progress[value]::-moz-progress-bar {
      background: linear-gradient(to right, #393f90 0%, #454cad 50%);
      border-radius: 4px;
    }
    .uploader input[type=file] {
      display: none;
    }
    .uploader div {
      margin: 0 0 0.5rem 0;
      color: #5f6982;
    }
    .uploader .btn {
      display: inline-block;
      margin: 0.5rem 0.5rem 1rem 0.5rem;
      clear: both;
      font-family: inherit;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      text-transform: initial;
      border: none;
      border-radius: 0.2rem;
      outline: none;
      padding: 0 1rem;
      height: 36px;
      line-height: 36px;
      color: #fff;
      transition: all 0.2s ease-in-out;
      box-sizing: border-box;
      background: #454cad;
      border-color: #454cad;
      cursor: pointer;
    }

    .event-detail{
      /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0878c8+0,7cb401+50,0878c8+100&0.12+0,0.14+51,0.1+100 */
    background: radial-gradient(ellipse at center,  rgba(8,120,200,0.12) 0%,rgba(124,180,1,0.14) 50%,rgba(122,179,5,0.14) 51%,rgba(8,120,200,0.1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    }

    .registration-form .input-group-text{
        background-color:#f8f8f8;
        border:none;
    }
    .dropdown:hover>.dropdown-menu {
        display: block;
      }

      .dropdown>.dropdown-toggle:active {
        pointer-events: none;
    }
   .card-header-right {
            float: right;
            margin-top: -35px;
        }

        .form-error-message {
            color: red;

        }


            .note-editor {
            -webkit-border-radius: 6px;
            -moz-border-radius: 6px;
            border-radius: 6px;
            border: 1px solid #c0c8cf;
            background: #fff;
            }


        input[type="file"] {
        display: block;
        }
        .imageThumb {
        max-height: 75px;
        border: 2px solid;
        padding: 1px;
        cursor: pointer;
        }
        .pip {
        display: inline-block;
        margin: 10px 10px 0 0;
        }
        .remove {
        display: block;
        background: #444;
        border: 1px solid black;
        color: white;
        text-align: center;
        cursor: pointer;
        }
        .remove:hover {
        background: white;
        color: black;
        }

        @media (max-width: 575.98px) {
            .card-header-right{
                margin-top:0;
                float:none;
            }
        }

        label:not(.form-check-label):not(.custom-file-label) {
    font-weight: 700;
    font-size: 12px;
}
