@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&family=Marcellus&display=swap');

:root {
  --primary-color: #936D42;
  --secondary-color: #A8948E;
  --body-color: #141313;
  --light: #fdf8f4;
  --facebook: #4267b2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #ff0000;
  --whatsapp: #25d366;
  --instagram: #c92bb7;
  --serif: "Marcellus", serif;
  --golden-gradient: radial-gradient(
    ellipse farthest-corner at right bottom,
    #fdf5b0 0%,
    #FFEB3B 8%,
    #ffcc36 30%,
    #fce116 40%,
    transparent 80%
  ),
  radial-gradient(
    ellipse farthest-corner at left top,
    #ffffff 0%,
    #fce116 8%,
    #fff6b4 25%,
    #fce116 62.5%,
    #fce116 100%
  );
}

body {
  color: var(--body-color);
  background-color: var(--light);
  font: 400 1.125rem "Titillium Web", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

svg:not([fill]) {
  fill: currentColor;
}

.font-weight-bolder{
  font-weight: 800 !important;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

a {
  color: var(--body-color);
  transition: all 300ms ease-in-out;
}

a.bg-primary:hover {
  background-color: var(--primary-color) !important;
}
html {
  scroll-behavior: smooth;
}

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

.object-cover {
  object-fit: cover;
}

.container-fluid {
  padding-left: 3rem;
  padding-right: 3rem;
}

.filter-white {
  -ms-filter: brightness(70);
  filter: brightness(70);
}

.filter-dark {
  -ms-filter: grayscale(1) brightness(0.5);
  filter: grayscale(1) brightness(0.5);
}

.enquiryBtn{
  position: fixed;
  right: 10px;
  bottom: 10px;
  height: 100px;
  width: 100px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--golden-gradient);
  color: #000;
  border: 0;
  box-shadow: 0 0 0 2px rgb(0 0 0 / 85%), 0 5px 10px rgb(0 0 0 / 20%);
  z-index: 99;
}

.mbMenuContainer{
  position: fixed;
  top: 20px;
  width: 90%;
  right: 0;
  bottom: 0;
  height: 100%;
  overflow: auto;
  background-color: #fff;
  padding: 70px 20px 20px;
  display: none;
    margin-top: 20px;
  z-index: 99;
}
.mbMenuContainer ul li a{
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray);
  padding: 10px;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
} 
/*header*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: var(--light);
  z-index: 999;
  transition: all 300ms ease-in-out;
}

.header.fixed{
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}

.topLinks,
.mainHeader{
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

.topLinks{
  justify-content: space-between;
  font-size: 12px;
  background-color: var(--body-color);
  color: #fff;
}

.topLinks ul{
  gap: 1rem;
}

.topLinks ul a{
  color: #fff;
  display: flex;
  gap: 5px;
  align-items: center;
  font-weight: 600;
  padding: 8px 0;
}

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

.topLinks ul a i{
  color: #fff;
}

.topLinks ul a:hover i{
  color: var(--primary-color);
}

.logo {
  width: 180px;
  position: relative;
  min-height: 1px;
  transition: all 300ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  padding: 5px;
  transition: all 300ms ease-in-out;
}

.header.fixed .logo {
  width: 100px;
}

/* .header.fixed .logo img{
  padding: 0 10px;
} */

.mainHeader{
  justify-content: center;
  gap: 0 2rem;
}

.header .nav{
  gap: 0 1rem;
  flex: 1;
}

.header .nav > ul {
  display: flex;
  align-items: center;
  position: relative;
  gap: 1.75rem;
}

.header .nav > ul > li{
  height: 100%;
}

.header .nav > ul > li > a {
  height: 100%;
  color: var(--body-color);
  display: flex;
  align-items: center;
  gap: 0 10px;
  position: relative;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 300ms ease-in-out;
  padding: 1.5rem 0;
  z-index: 1;
}

.header.fixed .nav > ul > li > a {
  padding: 10px 0;
}

.header .nav > ul > li > a small{
    display: block;
}

.header .nav ul li a i{
  font-size: 75%;
}

.header .nav ul li:hover > a,
.header .nav ul li > a.active{
  color: var(--secondary-color);
}

.header .nav > ul > li > a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  transition: all 300ms ease-in-out;
  transform: scaleX(0);
  z-index: -1;
}

.header .nav ul li > a.active::before,
.header .nav ul li:hover > a::before {
  transform: scaleX(1);
}

.header .nav ul li .dropdown{
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background-color: #fff;
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  translate: 0 20px;
  pointer-events: none;
  transition: all 300ms ease-in-out;
}

.header .nav ul li:hover .dropdown{
  opacity: 1;
  visibility: visible;
  translate: 0 0;
  pointer-events: all;
}

.header .nav ul li .dropdown.dropdown-sm{
  width: max-content;
  padding: 10px 20px;
}

.header .nav ul li .dropdown.dropdown-sm ul li a{
  font-size: 15px;
  display: block;
  color: var(--primary-color);
  padding: 10px 0;
  border-bottom: 1px solid rgb(0 0 0 / 15%);
}

.header .nav ul li .dropdown.dropdown-sm ul li:last-of-type a{
  border-bottom: none;
}

.header .nav ul li .dropdown.dropdown-sm ul li a.active,
.header .nav ul li .dropdown.dropdown-sm ul li a:hover{
  color: var(--secondary-color);
}

.header .nav ul li .dropdown.dropdown-sm ul li a.btn.disabled{
  font-size: 15px;
  border-radius: 0;
  border: none;
  line-height: normal;
}

.header.fixed .menuBtn span::before {
  background: var(--primary-color);
}

.menuBtn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
  position: relative;
  cursor: pointer;
}

.header.fixed .menuBtn {
  width: 40px;
  height: 40px;
}

.menuBtn div {
  position: relative;
  width: 50%;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  transition: all 300ms ease-in-out;
}

.menuBtn span {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  margin: 3px 0;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform-origin: center center;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn.closeMenuBtn span#menuLine1 {
  -webkit-transform: rotate(45deg) translate(4px, 4px);
  transform: rotate(45deg) translate(4px, 4px);
}

.menuBtn.closeMenuBtn span#menuLine2 {
  right: 100px;
}

.menuBtn.closeMenuBtn span#menuLine3 {
  -webkit-transform: rotate(-45deg) translate(4px, -5px);
  transform: rotate(-45deg) translate(4px, -5px);
}

.menuContainer {
  position: fixed;
  inset: 0;
  padding-top: 61px;
  z-index: 996;
  background-color: rgb(0 123 255 / 13%);
  backdrop-filter: blur(5px);
  display: none;
}

.menuContainer .inner {
  padding: 5px 15px;
  width: 100%;
  visibility: hidden;
  background: var(--primary-color);
  background: radial-gradient(circle at 50% -10%, var(--secondary-color), var(--primary-color));
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 16%);
  transition: all 300ms ease-in-out;
}

.header.fixed + .menuContainer {
  padding-top: calc(1rem + 30px);
}

.menuContainer.active .inner {
  visibility: visible;
}

.menuContainer a{
  color: #fff;
  transition: all 300ms ease-in-out;
}

.mainMenu li:not(:last-child) a{
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.mainMenu a{
  padding: 10px 0;
  font-weight: 700;
  display: block;
  position: relative;
}

.mainMenu li.active > a,
.mainMenu li:hover > a{
  padding: 10px;
  background-color: #fff;
  color: var(--primary-color);
}

.mainMenu a i{
  font-size: 75%;
  position: absolute;
  right: 0;
  top: 50%;
  line-height: 0;
  transition: all 300ms ease-in-out;
}

.mainMenu li.active > a i,
.mainMenu li:hover > a i{
  right: 10px;
}

.mainMenu li.active > a i{
  transform: rotate(540deg);
}

.menuDrop{
  padding: 5px 15px;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  display: none;
}
.mainMenu ul ul li:last-child a{
	border-bottom: 0;
}
.dropdown-mob {
  display: none;
  background: #f7f7f7;
}
.MenuListBtn a{
  display: flex !important;
  align-items: center;
  justify-content: space-between;

}
/*header*/

.socialBtn ul i {
  width: 36px;
  height: 36px;
  font-size: 14px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  transition: all 300ms ease-in-out;
}

/* i.fa-facebook-f:hover {
  color: var(--facebook);
}
i.fa-twitter:hover {
  color: var(--twitter);
}
i.fa-linkedin-in:hover {
  color: var(--linkedin);
}
i.fa-instagram:hover {
  color: var(--instagram);
}
i.fa-youtube:hover {
  color: var(--youtube);
} */

.banner {
  position: relative;
  z-index: 1;
  margin-top:122px;
}

.bannerText{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  color: #fff;
}

.bannerText p{
  font-size: 3rem;
}
.scrollDown {
  position: absolute;
  left: 5%;
  bottom: 20px;
  width: 30px;
  cursor: pointer;
  z-index: 9;
  animation: bounce 1s alternate infinite;
}
.sideBanner{
  position: absolute;
  right: 10px;
  top: 20%;
  z-index: 9;
}

.sideBanner .inner{
  background-color: var(--primary-color);
  padding: 1rem 1.25rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 1px var(--secondary-color), -10px 10px 0 var(--secondary-color);
}

.sideBanner .inner::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.125);
  clip-path: circle(80% at 80% -10%);
  z-index: -1;
}

.sideBanner .projectLogo{
  margin-bottom: 1.25rem;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
}

.sideBanner .projectLogo h2{
  font-family: var(--serif);
  color: var(--secondary-color);
}

.sideBanner .projectLogo h6{
  letter-spacing: 2px;
  font-weight: 400;
  font-size: 0.875rem;
}

/* overview */
.iconBox .in {
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgb(0 0 0 / 15%);
  gap: 10px;
  padding: 1rem 0;
  transition: all 300ms ease-in-out;
}
.iconBox:last-child .in {
  border-bottom: 0;
}

.iconBox .in i {
  max-width: 50px;
  color: var(--secondary-color);
  padding-right: 10px;
  border-right: 1px solid rgb(0 0 0 / 15%);
}

.iconBox .in i svg{
  stroke: none;
}

.iconBox .in img {
  width: 70px;
}

.iconBox .in h4 {
  font-weight: 700;
  flex: 10;
  display: flex;
  justify-content: space-between;
  color: var(--primary-color);
}

.iconBox .in h4 i{
  padding-right: 0;
  padding-left: 10px;
  border-right: 0;
  border-left: 1px solid rgb(0 0 0 / 15%);
}

.iconBox .in:hover h4 i{
  color: var(--primary-color);
}
/* overview */



/* mid section */
.iconBox .inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 300ms ease-in-out;
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.iconBox .inner .img-fluid {
  width: 30px;
}

.iconBox .inner h6{
  font-weight: 800;
  color: var(--primary-color);
}
/* mid section */

/* sets above */
.iconsContainer .iconBox .in {
  height: 100%;
  transition: all 300ms ease-in-out;
  position: relative;
  isolation: isolate;
  flex-direction: column;
  align-items: self-start;
}
.iconsContainer .iconBox .in article
{
	margin-bottom:10px;
}

.iconsContainer .iconBox .in .img-fluid img {
  border-radius: 50%;
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
/* sets above */

/* testimonials */
.testimBox{
  height: auto;
}

.testimBox .inner{
  height: 100%;
  padding: 7rem 2.5rem;
  text-align: center;
  color: var(--body-color);
  border: solid rgb(0 0 0 / 15%);
  border-width: 0 1px 1px 0;
}

.testimBox.swiper-slide-active .inner{
  background-color: #fff;
}

.testim-img{
  width: 70px;
  height: 70px;
  overflow: hidden;
  margin: 0 auto  1.5rem;
  border-radius: 50%;
  border: 4px solid transparent;
  box-shadow: 0 0 0 1px rgb(0 0 0 / 15%);
}

.testim-text p{
  font-size: 1.25rem;
  font-family: var(--serif);
  color: var(--primary-color);
}

.testim-name{
  display: block;
  margin-top: 1.25rem;
}
/* testimonials */

/* products */
.productsContainer{
  border-top: 1px solid rgb(0 0 0 / 15%);
}
.productBox .inner{
  text-align: center;
  padding: 3rem 2rem;
  border-right: 1px solid rgb(0 0 0 / 15%);
  border-bottom: 1px solid rgb(0 0 0 / 15%);
}
.productBox .inner .img-fluid{
  max-width: 120px;
  margin: 0 auto;
}
.productBox .scroller {
    height: 120px;
}
/* products */

/* Consultation Form */
.formContainer {
  background-color: #fff;
  color: var(--body-color);
  position: relative;
  border-radius: 10px;
  z-index: 1;
}

.formContainer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/bg-white.jpg) top right / 50% no-repeat repeat #fff;
  transform: rotateY(180deg);
  z-index: -1;
}

.form-img .inner {
  height: 100%;
  background-color: #000;
  color: #fff;
  text-align: center;
}

.enquiry-form .inner {
  padding: 4rem;
}
/* Consultation Form */

/* infra */
svg {
  width: 100%;
  height: 100%;
  display: block;
}
svg:not([fill]) {
  fill: currentColor;
  stroke: currentColor;
}
/* infra */

p {
  line-height: 1.4;
}

.padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.headingContainer {
  margin-bottom: 30px;
}

.heading {
  display: table;
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.heading .h1,
.heading h2,
.heading h3,
.heading h4,
.heading h5,
.heading h6 {
  display: block;
  font-weight: 400;
}

.heading .h1 {
  line-height: 1.25;
  font-size: 3rem;
  font-family: var(--serif);
  color: var(--primary-color);
}

.heading h4 {
  font-family: var(--serif);
  color: var(--primary-color);
}

.heading h6 {
  letter-spacing: 1px;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 10px;
}

.heading h6::before{
  content: '';
  width: 80px;
  height: 1px;
  background-color: var(--secondary-color);
}

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

.text-normalcase {
  text-transform: none !important;
}

.text-serif {
  font-family: var(--serif);
}

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

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

.bg-dark {
  background-color: var(--body-color) !important;
  color: #fff;
}

.bg-primary-gradient {
  background-image: radial-gradient(circle at 50% -100%,var(--primary-color),#083233);
}

.bg-image {
  background: center / cover no-repeat fixed;
}

.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 70%);
  z-index: -1;
}

.bg-image.overlay-white::before {
  background: linear-gradient(
    to left,
    rgb(255 255 255 / 40%),
    rgb(255 255 255 / 95%)
  );
}

.scroller {
  overflow: auto;
}
.testimBox .scroller {
    height: 154px;
}

.scroller::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #cfcfcf;
  border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.gap-row {
  row-gap: 30px;
}
.gap-form-row {
  row-gap: 10px;
}

.moreText {
  display: none;
}

.viewmore .button {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);
  background-color: transparent;
  border: 0;
  padding: 0;
}

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

.viewmore .button.text-white:hover {
  text-decoration: underline;
}

.viewmore .button i {
  border-right: 0;
  padding-right: 0;
  transition: transform 300ms ease-in-out;
}

.viewmore .button:hover i {
  transform: translateX(5px);
}

.readmore {
  width: 100%;
  margin-top: 2.5rem;
}

.readmore .button {
  display: table;
  padding: 12px 1rem;
  min-width: 140px;
  color: #fff;
  background: var(--body-color);
  font-size: 13px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  transition: all ease-in-out 0.3s;
  position: relative;
  z-index: 1;
}

.readmore button {
  border-radius: 0;
  border: none;
  background: none;
}

.readmore .button.bg-primary:focus{
  background-color: var(--primary-color) !important;
}
.readmore .button:hover {
  background: var(--primary-color);
}

.readmore .button.w-auto{
  min-width: 1px;
}

.readmore .button.bg-secondary {
  color: var(--body-color);
  background: var(--secondary-color) !important;
}

.readmore .button.bg-secondary:hover {
  color: var(--body-color);
  background: #fff !important;
}
.readmore .button.bg-white {
  color: var(--body-color);
}

.readmore .button.bg-white:hover {
  color: #fff;
  background-color: var(--secondary-color) !important;
}

.readmore.d-flex{
  justify-content: center;
  gap: 10px;
}

.controls {
  position: absolute;
  width: 110px;
  height: 40px;
  right: 10px;
  bottom: 10px;
  z-index: 9;
}

.controls a {
  position: static;
  display: table;
  width: 100%;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  text-align: center;
  color: var(--primary-color);
  font-size: 13px;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  opacity: 1;
}

.controls a:last-child {
  border-bottom: none;
}

.controls a:focus,
.controls a:hover {
  color: var(--primary-color) !important;
  opacity: 1;
}

.multiply {
  mix-blend-mode: multiply;
}

.position-relative {
  z-index: 1;
}

/* custom swiper controls */
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border-radius: 50%;
  background: url(../images/arrow-left.png) center / 16px no-repeat var(--body-color);
  transition: all 300ms ease-in-out;
}

.bg-image .swiper-button-next, .bg-image .swiper-button-prev{
  box-shadow: 0 0 0 2px #fff;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--primary-color);
  box-shadow: 0 0 0 1px var(--secondary-color);
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  transform: rotate(-180deg);
}

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

.bottom-control {
  top: auto;
  bottom: 2px;
}

.bottom-control.swiper-button-next {
  right: calc(50% - 55px);
}
.bottom-control.swiper-button-prev {
  left: calc(50% - 55px);
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  width: 20px;
  border-radius: 10px;
}
/* custom swiper controls */

.footer-enquiryBtn {
  position: fixed;
  bottom: 2px;
  left: 2px;
  right: 2px;
  display: flex;
  justify-content: space-between;
  z-index: 99;
  background: var(--golden-gradient);
  text-align: center;
}
.footer-enquiryBtn a {
  color: #fff;
  text-align: center;
  display: block;
  width: calc(100% / 2);
  padding: 8px 5px;
  border: 1px solid rgb(0 0 0 / 15%);
  border-left: 0;
}
.footer-enquiryBtn a.whatsCall {
  background: linear-gradient(45deg,#0db634,#015c16);
  border: 0;
}

.watermark{
  position: absolute;
  inset: 0;
  z-index: -1;
}

.watermark::before{
  content: '';
  position: absolute;
  background: url(../images/logo-icon.svg) -20% center / 70% no-repeat;
  inset: 0;
  opacity: 0.02;
  z-index: -1;
}

/*Footer*/
.footer-area {
  background-color: var(--body-color);
  color: #fff;
  position: relative;
  z-index: 1;
  font-size: 14px;
}

.footer-area::before{
  content: '';
  position: absolute;
  background: url(../images/logo-icon.svg) top left / 40% no-repeat;
  inset: 0;
  filter: invert(1) opacity(0.02);
  z-index: -1;
}

.footer-area a{color:#fff;}
.footer-area a:hover{color: var(--secondary-color);}

.footer-logo{width: 120px;}

.footerAbout .footer-title{
  font-size: 14px;
  font-family: var(--serif);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

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

.footerAbout .footerSocial li a {
  color: #fff;
  font-size: 14px;
  display: block;
  width: 35px;
  height: 35px;
  line-height: 33px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 50%;
  transition: all 300ms ease-in-out;
  text-align: center;
}

.footerAbout .footerSocial li a:hover {
  background-color: var(--light);
}

.footerSocial li a:hover .fa-facebook-f{
	color: var(--facebook);
}
.footerSocial li a:hover .fa-linkedin-in{
	color: var(--linkedin);
}
.footerSocial li a:hover .fa-twitter{
	color: var(--twitter);
}
.footerSocial li a:hover .fa-youtube{
	color: var(--youtube);
}
.footerSocial li a:hover .fa-whatsapp{
	color: var(--whatsapp);
}
.footerSocial li a:hover .fa-instagram{
	color: var(--instagram);
}

.footerBox ul li {
  margin: 8px 0;
}

.footerBox ul li a {
  font-size: 14px;
  position: relative;
  padding-bottom: 5px;
  display: inline-block;
  transition: all 300ms ease-in-out;
}

.footerBox .footerLinks li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: 1px solid;
  transition: all 300ms ease-in-out;
}

.footerBox .footerLinks li a:hover:before {
  width: 100%;
}

.footer-area .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  margin: 1.25rem 0;
  border: solid rgb(255 255 255 / 15%);
  border-width: 1px 0;
}

.footer-area .bottom p {
  display: flex;
  font-size: 12px;
  align-items: center;
  margin-bottom: 0;
  flex-basis: 0;
  flex-grow: 1;
  gap: 5px;
}

.footer-area .bottom p:last-child {
  justify-content: flex-end;
}

.footer-area .bottom p img {
  width: 14px;
}

.button-top {
  background: var(--primary-color);
  position: fixed;
  cursor: pointer;
  left: 10px;
  bottom: 10px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  z-index: 99;
}

.button-top:hover {
  background: var(--secondary-color);
  color: var(--body-color);
}
/* Footer */

.socialBtn i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}
.socialIcons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.socialIcons a i {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 50%;
  transition: all 300ms ease-in-out;
  text-align: center;
}

.socialIcons.solid a i {
  border: none;
}

.socialIcons.stroke a:hover .fa-facebook-f,
.socialIcons.solid a .fa-facebook-f {
  background-color: var(--facebook);
}
.socialIcons.stroke a:hover .fa-linkedin-in,
.socialIcons.solid a .fa-linkedin-in {
  background-color: var(--linkedin);
}
.socialIcons.stroke a:hover .fa-twitter,
.socialIcons.solid a .fa-twitter {
  background-color: var(--twitter);
}
.socialIcons.stroke a:hover .fa-youtube,
.socialIcons.solid a .fa-youtube {
  background-color: var(--youtube);
}
.socialIcons.stroke a:hover .fa-whatsapp,
.socialIcons.solid a .fa-whatsapp {
  background-color: var(--whatsapp);
}
.socialIcons.stroke a:hover .fa-instagram,
.socialIcons.solid a .fa-instagram {
  background-color: var(--instagram);
}

.socialIcons.stroke a .fa-facebook-f {
  border-color: var(--facebook);
}
.socialIcons.stroke a .fa-linkedin-in {
  border-color: var(--linkedin);
}
.socialIcons.stroke a .fa-twitter {
  border-color: var(--twitter);
}
.socialIcons.stroke a .fa-youtube {
  border-color: var(--youtube);
}
.socialIcons.stroke a .fa-whatsapp {
  border-color: var(--whatsapp);
}
.socialIcons.stroke a .fa-instagram {
  border-color: var(--instagram);
}

.socialIcons.solid a:hover i,
.socialIcons a:hover i {
  background-color: #fff;
}

.socialIcons.stroke a .fa-facebook-f,
.socialIcons a:hover .fa-facebook-f {
  color: var(--facebook);
}
.socialIcons.stroke a .fa-linkedin-in,
.socialIcons a:hover .fa-linkedin-in {
  color: var(--linkedin);
}
.socialIcons.stroke a .fa-twitter,
.socialIcons a:hover .fa-twitter {
  color: var(--twitter);
}
.socialIcons.stroke a .fa-youtube,
.socialIcons a:hover .fa-youtube {
  color: var(--youtube);
}
.socialIcons.stroke a .fa-whatsapp,
.socialIcons a:hover .fa-whatsapp {
  color: var(--whatsapp);
}
.socialIcons.stroke a .fa-instagram,
.socialIcons a:hover .fa-instagram {
  color: var(--instagram);
}
.socialIcons.stroke a:hover i {
  color: #fff;
}

/* conssultation */
.priceBox .inner{
  height: 100%;
    background-color:#fffdda;
    text-align: center;
    padding: 1rem;
    border: 1px solid #ccc;
    min-height: 176px;
}
.priceBox .inner .readmore
{
  position: absolute;
  bottom: -14px;
  left: 0;
}
.priceBox .inner h5{
  font-weight: 700;
  font-size: 1.5rem;
}
.priceBox h3
{
  margin: 0;
  text-transform: uppercase;
  font-size: 24px;
}
.priceBox .inner .readmore .button {
  padding: 5px 6px;
  min-width: 120px;
  font-size: 18px;
}
.priceBox .price
{
  margin: 10px 0;
  border: 1px dotted;
  display: inline-block;
  padding: 3px 17px;
  background: #fff;
}
.priceBox b
{
  display: block;
}
.confirmpayment
{
  background: #efeeee;
}
.confirmpayment h5
{
  letter-spacing: 1px;
  font-size: 18px;
  color: var(--primary-color);
  text-transform: uppercase;
}
.qrBox{
  border: 1px solid rgb(0 0 0 / 15%);
  text-align: center;
  background-color: #fff;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 15%);
}
/* conssultation */
/***** Inside pages end *****/

.disclaimer p{
  font-size: 12px;
  line-height: 1.2;
}

.form-group {
  margin-bottom: 10px;
}

.form-group > div {
  margin-top: 15px;
}

.form-group label {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
}

.form-control {
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #b2b2b2;
  outline: none;
  height: auto;
  padding: 10px;
}

.form-control[readonly] {
  background: none;
}

.form-control:focus {
  box-shadow: 0 10px 20px rgb(0 0 0 / 15%);
  border-bottom-color: var(--secondary-color);
  background: #fff6dd;
}
/* customize modal */
.modal-backdrop.show {
  opacity: 1;
  background: rgba(27, 27, 27, 0.92);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: #fff;
  box-shadow: 0 8px 32px 0 rgba(0 0 0 / 20%);
  border-radius: 0;
}

button.close {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: red;
  color: #fff;
  opacity: 1;
  text-shadow: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 1;
  background-color: rgb(141, 0, 0);
  color: #fff;
}

.modal-content {
  background: url(../images/bg-white.jpg) #fff;
  border: none;
}
.modal-dialog {
  max-width: 700px;
}
.modal-content .modal-header {
  padding: 0;
  border: none;
}
.modal-content button.close {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  z-index: 1;
  text-shadow: none;
  opacity: 1;
}
.modal-header .close {
  color: #fff;
}
.modal-header {
  background: none;
  border: none;
}

.no-gutters .col-md-6:first-child {
  border-radius: 0;
  border-right: 1px solid rgb(0 0 0 / 20%);
}
.no-gutters .col-md-6:first-child .modal-body {
  background-size: 100% !important;
}

.modal-body {
  padding: 2rem;
}

.modal-details {
  height: 100%;
  padding: 2rem;
  text-align: center;
}

.modal-details h2{
  font-weight: 700;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.modal-details h2 small{
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  color: var(--secondary-color);
}
.modal-details h6{
  text-transform: uppercase;
  /* font-size: 13px; */
  padding: 5px 1rem 2px;
  background: var(--golden-gradient);
  color: var(--body-color);
}

.modal-details h5 {
  font-weight: 400;
}
.modal-details .banner-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
}
/* customize modal */

/*transformation Animation*/
.leftTranslate {
  -webkit-transform: translate(-200px, 0);
  transform: translate(-200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.rightTranslate {
  -webkit-transform: translate(200px, 0);
  transform: translate(200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.topTranslate {
  -webkit-transform: translate(0, -200px);
  transform: translate(0, -200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.bottomTranslate {
  -webkit-transform: translate(0, 200px);
  transform: translate(0, 200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.doneTranslate {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

.fadeOut {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 1000ms ease-in-out;
  transition: all 1000ms ease-in-out;
}

.fadeIn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.zoomOut {
  transform: scale(0);
  transition: all 0.8s ease-in-out;
}

.zoomIn {
  transform: scale(1);
}
/*transformation Animation*/

.list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
.list li::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  left: 0;
  top: 7px;
  pointer-events: none;
}
.bg-gradient
{
  background: var(--golden-gradient);
}
.services
{
	border:1px solid var(--secondary-color);
}
.services-img
{
	position:relative;
	overflow:hidden;
}
.services h4
{
    text-align: center;
    padding: 9px;
    background: var(--golden-gradient);
}
.services-hov
{
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    left: -100%;
}

.services-hov .img-fluid
{
    width: 100px;
    margin: auto;
    color: #fff;
    z-index: revert-layer;
}
.services:hover .services-hov 
{
    background: rgb(0 0 0 / 41%);
    right: 0;
	left:0;
	transition:all ease-in-out 500ms;
}
.bg-book-consultation
{
  background-color: #fff;
}
.bg-book-consultation p
{
  font-size: 13px;
  padding: 10px;
  margin: 0;
  background-color: #fff;
  
}
.col-md-3.priceBox
{    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;

}
