/* ========================================================================================================================== */
/* ========================================================================================================================== */
:root {
  --primary-color: #2d2417;
  /* Your main dark brown */
  --primary-bg: #fcfaf7;
  /* Bright matching background */
  --primary-border: #e8dfd3;
  /* Optional border */
  --primary-text: #2d2417;
  /* Text color */
}

body {
  background: #fff;

  margin: 0;

  padding: 0;
  font-size: 15px;
  line-height: 1.6;
  box-sizing: border-box;
  position: relative;
}

p {
  margin: 0px 0px 10px;
  padding: 0px;
}

a,
button {
  line-height: inherit;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  -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;
}

a:hover {
  text-decoration: none;
  color: #efbc72;
}

ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

textarea:hover,
textarea:focus,
input:hover,
input:focus {
  outline: none !important;
  box-shadow: none !important;
}

@font-face {
  font-family: Baskerville Regular;
  src: url(../fonts/baskervi.woff) format("woff");
}

@font-face {
  font-family: Baskerville Bold;
  src: url(../fonts/Baskerville-Bold.woff) format("woff");
}

@font-face {
  font-family: Baskerville SemiBold;
  src: url(../fonts/Baskerville-SemiBold.ttf);
}

@font-face {
  font-family: Georgia Bold;
  src: url(../fonts/Georgia-Bold.ttf);
}

@font-face {
  font-family: Georgia Regular;
  src: url(../fonts/Georgia-Regular.ttf);
}

@font-face {
  font-family: GillSans Regular;

  src: url(../fonts/GillSansStd.otf);
}

@font-face {
  font-family: "GillSans SemiBold";

  src: url(../fonts/Gill-Sans-SemiBold.ttf);
}

@font-face {
  font-family: GillSans Bold;

  src: url(../fonts/Gill-Sans-Bold.otf);
}

@font-face {
  font-family: GillSans Medium;

  src: url(../fonts/Gill-Sans-Medium.otf);
}

.ptb60 {
  padding: 60px 0px;
}

.fixed {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 9999;

  background: #fff;

  animation-name: menu_sticky;

  animation-duration: 0.4s;

  animation-timing-function: ease-in;

  /* -webkit-box-shadow: 0px 13px 30px -12px rgb(239 188 114 / 49%);

    -moz-box-shadow: 0px 13px 30px -12px rgb(239 188 114 / 49%);

    box-shadow: 0px 13px 30px -12px rgb(239 188 114 / 49%);*/
}

@keyframes menu_sticky {
  0% {
    margin-top: -100px;
  }

  50% {
    margin-top: -80px;
  }

  100% {
    margin-top: 0;
  }
}

/********Header***********/

header {
  padding: 4px 0px;
}

header .header-logo {
  width: 100%;
}

/* Dark hamburger icon */
.custom-toggler {
  border: 1px solid #000;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-menu ul {
  font-weight: 400;

  display: -webkit-box;

  display: -webkit-flex;

  display: -ms-flexbox;

  display: flex;

  -webkit-flex-wrap: wrap;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

  margin: 0;

  padding-left: 0;

  list-style: none;
}

.main-menu ul li {
  position: relative;

  margin-right: 15px;

  padding-top: 10px;

  padding-right: 10px;

  padding-bottom: 10px;

  font-family: "GillSans SemiBold";

  color: #000;

  font-size: 12px;

  text-transform: uppercase;
}

/*.main-menu ul li.active a{

    color:#efbc72;

}*/

.main-menu ul li ul {
  position: absolute;

  z-index: 2;

  top: 150%;

  left: -15px;

  display: block;

  visibility: hidden;

  min-width: 230px;

  margin: 0;

  padding: 10px 15px;

  list-style: none;

  -webkit-transition: all 0.5s ease 0s;

  -o-transition: all 0.5s ease 0s;

  transition: all 0.5s ease 0s;

  letter-spacing: 0;

  opacity: 0;

  background-color: #fff;

  -webkit-box-shadow: -1px 10px 80px -15px rgba(0, 0, 0, 0.3);

  box-shadow: -1px 10px 80px -15px rgba(0, 0, 0, 0.3);
}

.main-menu ul li ul li a {
  display: block;

  padding: 0;

  color: #000;
}

.main-menu ul li:hover ul {
  top: 100%;

  visibility: visible;

  opacity: 1;
}

.main-menu ul li ul li {
  margin-right: 0px;

  font-size: 12px;
}

.main-menu ul li ul li:last-child {
  border-bottom: none;
}

/*.topbar-menu ul li:hover,.main-menu ul li ul li:hover a{

    color:#efbc72;

}*/

.cal-btn a {
  background: var(--primary-color);

  border-radius: 4px;

  font-size: 12px;

  padding: 12px 20px;

  text-transform: uppercase;

  font-weight: 500;

  line-height: 1;

  font-family: "GillSans SemiBold";

  color: #efbc72;
}

.cal-btn a:hover {
  background: rgba(45 36 23, 0.8);
  color: #fff;
}

/*************Footer***************/

footer {
  background: var(--primary-color);

  padding: 30px 0px 0px;

  font-family: GillSans Regular;

  font-size: 16px;

  font-weight: 500;
}

.fright>ul>li>a,
.fright>ul>li {
  color: #fff;

  display: block;
}

.fright>ul>li {
  margin-bottom: 6px;
}

.fright>ul>li>a:hover {
  color: #efbc72;
}

.copy {
  padding: 15px 0;

  text-align: center;

  color: #fff;

  font-size: 15px;
}

.copy span {
  position: relative;

  padding-left: 10px;
}

.copy span:before {
  content: "|";

  position: absolute;

  left: 0;
}

.copy span:first-child {
  padding-left: 0px;
}

.copy span:first-child:before {
  display: none;
}

.copy a {
  color: #efbc72;
}

.fcopyright li {
  margin-left: 15px;
}

.fcopyright li:first-child {
  margin-left: 0px;
}

.fcopyright li span {
  color: #fff;

  padding-left: 0px;
}

.fcopyright li span:before {
  display: none;
}

/**************slider************/

#slider,
.slider {
  border-radius: 8px;

  overflow: hidden;
}

#slider .item {
  width: 100%;

  height: 70vh;

  background-position: center;

  background-size: cover;

  position: relative;

  padding: 0 8px;
}

.slider-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

#slider .item .slider-content {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  text-align: center;

  width: 100%;
}

#slider .item .slider-content span {
  font-family: Baskerville SemiBold;

  font-size: 40px;

  color: #000;
}

#slider .item .slider-content .title {
  font-family: "GillSans SemiBold";

  color: #000;

  font-size: 60px;

  line-height: 1.2;

  margin-bottom: 10px;
}

#slider .item .slider-content .para {
  font-family: GillSans Regular;

  color: #000;

  font-size: 20px;

  width: 35%;

  margin: 0 auto;
}

/**************fform***************/

.fform {
  background: var(--primary-bg);
}

.fform .title {
  font-family: Georgia Regular;

  font-size: 52px;

  color: #000;

  line-height: 1;
}

.fcfrm {
  width: 75%;

  margin: 0 auto;
}

.fcfrm .ffrm {
  width: 45%;

  float: left;

  background: #fff;

  box-shadow: 0px 4px 15px 0px rgb(239 188 114 / 38%);

  padding: 40px 55px;

  border-radius: 8px;
}

.fcfrm .fadd {
  width: 55%;

  float: left;

}

.ffrm .form-control {
  border: none;

  border-bottom: 1.5px solid #efbc72;

  border-radius: 0px;

  padding: 1rem 0rem;

  font-family: Georgia Regular;
}

.ffrm label {
  font-family: Georgia Regular;

  color: #111;

  padding: 1rem 0rem;
}

.site-btn {
  background: #333;

  color: #efbc72;

  padding: 8px 35px;

  text-transform: uppercase;

  font-family: GillSans Medium;

  border-radius: 4px;

  font-size: 13px;
}

.site-btn:hover {
  color: #fff;
}

.site-btn1 {
  background: #efbc72;

  color: #333;

  padding: 10px 30px;

  text-transform: uppercase;

  font-family: GillSans Regular;

  border-radius: 4px;
}

.site-btn1:hover {
  color: #fff;
}

.fadd .title {
  font-family: "GillSans SemiBold";

  font-size: 36px;

  line-height: 1.2;

  margin-bottom: 15px;
}

.fsaddress {
  padding: 20px 0px;

  border-top: 1px solid #efbc72;

  border-bottom: 1px solid #efbc72;
}

.fsaddress ul li {
  margin-bottom: 15px;

  font-family: GillSans Regular;

  font-size: 20px;

  color: #000;

  line-height: 1.2;
}

.fssocial li {
  margin-left: 15px;
}

.fssocial li:first-child {
  margin-left: 0px;
}

.fssocial li i {
  color: #efbc72;
  font-size: 28px;
}

.fssocial li span {
  color: #000;

  font-family: GillSans Regular;

  font-size: 16px;
}


/**********wwd**************/

.wwd .wwd-img {
  width: 50%;

  height: 730px;

  overflow: hidden;

  border-radius: 8px;
}

.wwd .wwd-img img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.wwd .wwd-sec {
  width: 50%;

  float: left;

  padding-left: 50px;
}

.wwd .wwd-sec span {
  display: block;

  color: #adadad;

  font-size: 20px;

  font-family: "GillSans SemiBold";

  margin-bottom: 10px;
}

.wwd .wwd-sec .text {
  font-family: Georgia Regular;

  font-size: 40px;

  line-height: 1.2;

  margin-bottom: 15px;

  color: #000;
}

.wwd-btn-sec {
  margin-top: 40px;
}

.wwd-btn-sec a {
  margin-right: 15px;
}

.wwd-btn-sec a.btn-1 {
  background: transparent;

  border: 2px solid #333;

  color: #333;

  padding: 6px 20px;

  text-transform: uppercase;

  font-family: "GillSans SemiBold";

  border-radius: 4px;

  font-size: 12px;
}

.wwd-btn-sec a.btn-1:hover {
  background: #efbc72;

  color: #333;

  border: 2px solid #efbc72;
}

.wwd-btn-sec a.btn-2 {
  background: #efbc72;

  color: #333;

  padding: 6px 20px;

  text-transform: uppercase;

  font-family: "GillSans SemiBold";

  border-radius: 4px;

  font-size: 12px;

  border: 2px solid #efbc72;
}

.wwd-btn-sec a.btn-2:hover {
  background: transparent;

  border: 2px solid #333;

  color: #333;
}

/******expert*******/

.expert .title {
  width: 100%;

  margin: 0 auto;
}

.expert .title h1 {
  font-family: Georgia Regular;

  font-size: 60px;

  line-height: 1.2;

  margin-bottom: 15px;

  color: #000;
}

.expert-img {
  border-radius: 8px;

  overflow: hidden;

  height: 400px !important;
}

.expert-img img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.wcu {
  padding-left: 25px;
}

.wcu li {
  margin-bottom: 50px;

  padding-left: 75px;

  position: relative;
}

.wcu li span {
  position: absolute;

  left: 0;

  font-family: Georgia Bold;

  font-size: 40px;

  line-height: 1.2;

  color: #000;

  font-weight: 600;
}

.wcu li .sub-title {
  font-family: Georgia Regular;

  font-size: 40px;

  line-height: 1.2;

  color: #000;

  font-weight: 500;

  margin-bottom: 8px;
}

.wcu li p {
  font-family: GillSans Regular;

  color: #000;

  font-size: 20px;

  line-height: 1.2;
}

/***********static***********/

.static {
  background: var(--primary-bg);
}

.static ul {
  flex-wrap: wrap;
}

.static ul li {
  text-align: center;

  flex-basis: 33.33%;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;
}

.static ul li .sicon {
  width: 70px;

  height: 70px;

  margin-bottom: 15px;
}

.static ul li .sicon img {
  height: 100%;

  width: 100%;

  object-fit: cover;
}

.static ul li .counter {
  font-family: Georgia Bold;

  font-size: 40px;

  color: #000;

  font-weight: 600;

  line-height: 1;

  margin-bottom: 8px;
}

.static ul li .title {
  font-family: "GillSans SemiBold";

  color: #000;

  font-size: 30px;
}

/************test***************/

.test .title {
  width: 80%;

  margin: 0 auto;
}

.test .title h2 {
  font-family: Georgia Regular;

  font-size: 60px;

  line-height: 1.2;

  margin-bottom: 15px;

  color: #000;
}

.our-matrimony-services li .inner-wrapper {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  text-align: center;
}

.our-matrimony-services .img-box-s {
  margin-bottom: 25px;
  box-shadow: 0px 4px 15px 0px rgb(208 208 208 / 28%);
  width: 280px;

  height: 280px;

  -webkit-border-radius: 50%;

  border-radius: 50%;

  overflow: hidden;
}

.our-matrimony-services .img-box-s img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.our-matrimony-services .title {
  font-size: 20px;

  font-family: Georgia Regular;

  line-height: 1.2;

  margin-bottom: 10px;
}

.our-matrimony-services li .inner-wrapper p {
  border-top: 1.5px solid #efbc72;

  padding-top: 10px;

  color: #000;

  font-family: GillSans Regular;

  font-size: 16px;

  width: 75%;

  margin: 0 auto;
}

.testimonials.owl-nav>button {
  display: block;

  width: 40px;

  height: 80px;

  font-size: 0 !important;

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  opacity: 0.6;

  -webkit-transition: 0.2s;

  -o-transition: 0.2s;

  transition: 0.2s;

  -webkit-transform: translateY(-50%);

  -moz-transform: translateY(-50%);

  -ms-transform: translateY(-50%);

  -o-transform: translateY(-50%);
}

.testimonials.owl-nav [class*="owl-"]:hover {
  background: transparent !important;
}

.testimonials.owl-nav [class*="owl-"]:focus {
  outline: transparent !important;
}

.testimonials.owl-nav>button.owl-prev {
  left: 0;
}

.testimonials.owl-nav>button.owl-next {
  right: 0;
}

.testimonials.owl-nav>button.owl-prev:before {
  -webkit-transform: rotate(-135deg);

  -o-transform: rotate(-135deg);

  -ms-transform: rotate(-135deg);

  transform: rotate(-135deg);

  left: 15px;
}

.testimonials.owl-nav>button:before {
  content: "";

  display: block;

  position: absolute;

  width: 18px;

  height: 18px;

  border-top: 2px solid #efbc72;

  border-right: 2px solid #efbc72;

  top: 31px;
}

.testimonials.owl-nav>button.owl-next:before {
  -webkit-transform: rotate(45deg);

  -o-transform: rotate(45deg);

  -ms-transform: rotate(45deg);

  transform: rotate(45deg);

  right: 16px;
}

/*****************************/

.provide {
  position: relative;

  padding: 150px 0px;
}

.provide:before {
  content: "";

  position: absolute;

  background: #efbc72;

  width: 1px;

  height: 100%;

  left: 50%;

  top: 0;

  transform: translateX(-50%);

  z-index: -1;
}

.provide .provide-sec {
  flex-direction: column;

  min-height: 300px;

  background: #fff;

  padding: 40px 0px;
}

.provide .provide-sec .title {
  width: 70%;

  margin: 0 auto;
}

.provide .provide-sec .title h2 {
  font-family: Georgia Regular;

  font-size: 60px;

  line-height: 1.2;

  color: #000;
}

.provide .provide-sec p {
  width: 55%;

  margin: 0 auto;

  color: #000;

  font-family: GillSans Regular;

  font-size: 20px;

  font-weight: 500;

  line-height: 1.2;
}

.achievementsec {
  padding-bottom: 0;
}

.achievementsec .title h2 {
  font-family: Georgia Regular;
  font-size: 60px;
}

.achievements {
  position: relative;
  padding-bottom: 180px;
}

.achievements:before {
  content: "";
  position: absolute;
  background: #efbc72;
  width: 1px;
  height: 150px;

  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: -1;
}

.achievements.globle .g-sec .text {
  font-size: 42px;
}

.achievements .g-img {
  order: 2;
}

/********************************/

.globle .g-img {
  width: 50%;

  float: left;
}

.globle .g-sec {
  width: 50%;

  float: left;

  padding-left: 40px;
}

.globle .g-sec .text {
  font-family: Georgia Regular;

  font-size: 60px;

  line-height: 1.2;

  color: #000;

  margin-bottom: 25px;
}

.globle .g-sec p {
  color: #000;

  font-family: GillSans Regular;

  font-size: 20px;

  line-height: 1.2;

  width: 75%;
}

/************************/

#inner-img .i-img {
  border-radius: 8px;

  overflow: hidden;
}

#inner-img .i-img .item {
  width: 100vw;

  height: 60vh !important;

  background-position: center;

  background-size: cover;

  border-radius: 5px;
}

.inner-heading .title,
.inner-heading .sub-title {
  font-family: Georgia Regular;

  font-size: 40px;

  line-height: 1.2;

  margin-bottom: 15px;

  letter-spacing: -1px;

  color: #000;

  position: relative;

  display: inline-block;

  padding-bottom: 10px;
}

.inner-heading .title:before {
  content: "";

  position: absolute;

  background: #efbc72;

  height: 2px;

  width: 100%;

  left: 0;

  bottom: 0;
}

.inner-heading p {
  color: #000;

  font-family: GillSans Regular;

  font-size: 20px;

  font-weight: 500;

  width: 70%;

  margin: 0 auto;
}

.inner-heading .innerText {
  color: #000;

  font-family: GillSans Regular;

  font-size: 20px;

  font-weight: 500;

  width: 90%;

  margin: 0 auto;
}

.founder .f-img {
  width: 50%;

  float: left;

  height: 500px;

  border-radius: 10px;

  overflow: hidden;
}

.founder .f-img img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.founder .f-sec {
  width: 50%;

  float: left;

  padding-right: 80px;
}

.founder .f-sec .text {
  font-family: Georgia Regular;

  font-size: 40px;

  line-height: 1.2;

  margin-bottom: 15px;

  letter-spacing: -1px;

  color: #000;
}

.founder .f-sec p {
  color: #000;

  font-family: GillSans Regular;

  font-size: 20px;

  font-weight: 500;

  line-height: 1.2;
}

/*********map********/

.map {
  width: 100%;

  height: 400px;

  border-radius: 10px;

  overflow: hidden;
}

.map iframe {
  width: 100%;

  height: 400px;
}

/*****************************************/

.oslist {
  position: relative;
}

.oslist:before,
.oslist:after {
  content: "";

  position: absolute;

  background: #efbc72;

  width: 30%;

  height: 2px;

  left: 50%;

  transform: translateX(-50%);

  z-index: -1;
}

.oslist:before {
  top: 0;
}

.oslist:after {
  bottom: 0;
}

.oslist ul li {
  margin-bottom: 15px;

  display: inline-block;

  width: 100%;
}

.oslist ul li .os-sec {
  width: 45%;

  float: left;
}

.oslist ul li:nth-child(even) .os-sec {
  float: right;
}

.oslist ul li:last-child {
  margin-bottom: 0px;
}

.oslist ul li .os-sec .title {
  font-family: Georgia Regular;

  font-size: 28px;

  line-height: 1.2;

  margin-bottom: 8px;

  color: #efbc72;

  position: relative;

  display: inline-block;
}

.oslist ul li .os-sec p {
  color: #000;

  font-family: GillSans Regular;

  font-size: 20px;
}

/****************Mobile Menu****************/

#menu-right {
  display: none;
}

#menu-right {
  float: right;

  width: 34px;

  height: 21px;

  position: relative;

  top: 35%;

  z-index: 3;

  -webkit-transition: all 0.7s ease;

  -moz-transition: all 0.7s ease;

  -ms-transition: all 0.7s ease;

  -o-transition: all 0.7s ease;

  transition: all 0.7s ease;

  margin-left: 15px;
}

#menu-right.active {
  top: 20px;

  right: 10px;

  z-index: 99999;

  -webkit-transition: all 0.7s ease;

  -moz-transition: all 0.7s ease;

  -ms-transition: all 0.7s ease;

  -o-transition: all 0.7s ease;

  transition: all 0.7s ease;

  position: fixed;
}

#menu-right:hover .bar-right:nth-of-type(2) {
  width: 100%;

  transition: all 0.1s ease-in-out;
}

.bar-right {
  float: right;

  width: 34px;

  height: 2px;

  background-color: #333;

  transition: all 0.1s ease-in-out;
}

.bar-right:nth-of-type(2) {
  margin: 7px 0;
}

#menu-right:hover .bar-right:nth-of-type(2) {
  transition: all 0.1s ease-in-out;
}

#menu-right.active .bar-right:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);

  transform: translateY(9px) rotate(-45deg);
}

#menu-right.active .bar-right:nth-of-type(2) {
  opacity: 0;
}

#menu-right.active .bar-right:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);

  transform: translateY(-9px) rotate(45deg);
}

#mobile-menu {
  height: 100%;

  width: 275px;

  position: fixed;

  top: 0;

  z-index: 9999;

  right: -500px;

  background-color: #f4f4f4;

  opacity: 0;

  -webkit-transition: all 0.7s ease;

  -moz-transition: all 0.7s ease;

  -ms-transition: all 0.7s ease;

  -o-transition: all 0.7s ease;

  transition: all 0.7s ease;

  overflow-y: auto;

  overflow-x: hidden;
}

#mobile-menu.active {
  opacity: 1;

  z-index: 9999;

  right: 0;

  -webkit-transform: translateY(0px);

  -moz-transform: translateY(0px);

  -ms-transform: translateY(0px);

  -o-transform: translateY(0px);

  transform: translateY(0px);

  -webkit-box-shadow: 0 6px 8px rgba(0, 0, 0, 0.42);

  -moz-box-shadow: 0 6px 8px rgba(0, 0, 0, 0.42);

  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.42);
}

#mobile-menu ul ul {
  position: static;

  width: 100%;

  padding: 0;

  transition: none;

  visibility: visible;

  opacity: 1;

  box-shadow: unset;
}

#mobile-menu ul ul ul {
  width: 100%;
}

#mobile-menu ul li {
  width: 100%;

  position: relative;

  padding: 0px;
}

#mobile-menu ul li a {
  display: block;

  padding: 10px 0px;
}

#mobile-menu ul li li {
  padding: 0px 15px;

  margin-left: 0px;

  float: unset;
}

#mobile-menu .has-child .submenu-toogle {
  position: absolute;

  right: 0px;

  top: 0px;

  color: #333;

  background-color: transparent;

  z-index: 900;

  cursor: pointer;

  padding: 10px;

  font-size: 18px;

  display: block;
}

/***************************************/

.ser div {
  display: block;

  width: 100%;
}

.ser div:before {
  display: none;
}

.ser div span {
  color: #efbc72;
}

.ser .sheading h2 {
  display: block;

  color: #000;

  font-family: GillSans Regular;

  font-size: 36px;

  margin-bottom: 10px;

  text-transform: uppercase;
}

.hlist {
  width: 45%;

  margin: 0 auto;
}

.hlist ul li {
  padding-left: 125px;

  position: relative;

  margin-bottom: 10px;

  position: relative;
}

.hlist ul li span {
  position: absolute;

  left: 0px;

  top: 0;

  width: 80px;

  height: 80px;

  border-radius: 50%;

  background: #fff5e7;

  padding: 10px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.hlist ul li span:before {
  content: "";

  width: 90px;

  height: 90px;

  border-radius: 50%;

  background: #fff;

  position: absolute;

  z-index: -1;
}

.hlist ul li span:after {
  content: "";

  position: absolute;

  background: #000;

  width: 2px;

  height: 70%;

  left: 50%;

  top: 85px;

  transform: translatex(-50%);
}

.hlist ul li .hsec .title {
  font-family: Georgia Regular;

  font-size: 24px;

  line-height: 1.2;

  margin-bottom: 10px;

  color: #000;
}

.hlist ul li .hsec p {
  color: #000;

  font-family: GillSans Regular;

  font-size: 20px;

  font-weight: 500;

  padding-bottom: 20px;
}

.hlist ul li:last-child .hsec p {
  padding-bottom: 0px;

  margin: 0px;
}

.hlist ul li:last-child span:after {
  display: none;
}

/***********wwu***********/

.wwu {
  background: #fff5e7;
}

.wwu ul {
  flex-wrap: wrap;
}

.wwu ul li {
  text-align: center;
  flex-basis: 33.33%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 20px;
}

.wwu ul li .sicon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.wwu ul li .sicon img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.wwu ul li .main-title {
  font-family: Georgia Bold;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 15px;
}

.wwu ul li .title {
  color: #000;
  font-family: GillSans Regular;
  font-size: 16px;
  font-weight: 500;

  padding-bottom: 20px;
}

.sd-sec .inner-heading {
  width: 70%;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  padding: 50px 30px;
  margin-top: -170px;
}

.sd-sec .inner-heading h2 {
  letter-spacing: unset;
}

.sd-sec .inner-heading p {
  width: 100%;
}

.sd-sec .para h3 {
  font-family: Georgia Bold;
  font-size: 20px;
  line-height: 1.2;
  color: #000;

  display: inline-block;

  padding-bottom: 10px;

  font-weight: 600;
}

.sd-sec .para p {
  color: #000;

  font-family: GillSans Regular;

  font-size: 18px;

  font-weight: 500;

  margin-bottom: 20px;
}

.glist ul {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-wrap: wrap;
}

.glist ul li {
  flex-basis: 33.33%;

  margin-bottom: 15px;
}

.glist ul li a {
  margin: 0 8px;
}

.glist ul li .gimg {
  height: 250px;

  width: 100%;

  border-radius: 5px;

  border: 1px solid #efbc72;

  overflow: hidden;
}

.glist ul li .gimg img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center center;
}

.glist ul li .gtitle {
  min-height: 70px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #000;

  font-family: GillSans Regular;

  font-size: 18px;

  font-weight: 500;

  padding-bottom: 20px;
}

.clist ul {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-wrap: wrap;
}

.clist ul li {
  flex-basis: 24%;

  margin: 0 5px;

  /*border:1px solid #efbc72;*/

  border-radius: 5px;

  height: 120px;

  margin-bottom: 12px;

  padding: 10px;
}

.clist ul li img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.success-board .title:before {
  display: none;
}

.success-board .title {
  padding-bottom: 20px;
}

.success-board .inner-heading {
  position: relative;

  z-index: 0;
}

.success-board .inner-heading:before {
  content: "";

  position: absolute;

  background: #ddd;

  height: 1px;

  width: 100%;

  left: 0;

  bottom: 15px;

  z-index: -2;
}

.success-board .inner-heading:after {
  content: "";

  background-image: url("../img/heart.jpg");

  background-size: contain;

  background-position: center;

  background-repeat: no-repeat;

  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  z-index: -1;

  width: 180px;

  height: 40px;

  bottom: 0;
}

.success-board .glist ul li .inner-wrapper {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  text-align: center;
}

.success-board .glist li a {
  display: inline-block;

  width: 100%;

  text-align: center;

  margin: 0px;
}

.success-board .glist li .img-box-s {
  margin-bottom: 25px;

  box-shadow: 0px 4px 15px 0px rgb(208 208 208 / 28%);

  width: 280px;

  height: 280px;

  -webkit-border-radius: 50%;

  border-radius: 50%;

  overflow: hidden;

  margin: 0 auto;

  margin-bottom: 20px;
}

.success-board .glist li .img-box-s img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center top;
}

.success-board .glist li .title {
  font-size: 20px;

  font-family: Georgia Regular;

  line-height: 1.2;

  padding-bottom: 10px;
}

.success-board .glist li .title:before {
  display: none;
}

.success-board .glist li .inner-wrapper p {
  color: #000;

  font-family: GillSans Regular;

  font-size: 16px;

  width: 75%;

  margin: 0 auto;
}

.success-board .glist li {
  margin-bottom: 50px;
}

.pagination {
  justify-content: center;

  gap: 3px;

  margin-top: 20px;
}

.pagination .paginate_button {
  border: 1px solid #333;

  padding: 6px 12px;

  margin: 0 2px;

  transition: 0.3s;

  margin-bottom: 6px;

  border-radius: 3px;
}

.pagination a.paginate_button {
  color: #333;

  transition: 0.3s;
}

.pagination .paginate_button.disable {
  display: none;
}

.pagination .paginate_button:hover {
  background: #333;

  color: #efbc72;
}

.pagination .paginate_button.active {
  background: #333;

  color: #efbc72;
}

.thankyou .static,
.notFound .static {
  background: #fff;
}

.thankyou #ffrm {
  display: none;
}

.licon {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  text-align: center;

  background: rgb(255 245 231 / 90%);

  z-index: 9999;

  height: 100vh;
  display: none;
}

.licon .limg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#msg_display {
  visibility: hidden;
  width: 350px;
  background-color: #333;
  color: #fff;
  border-radius: 2px;
  padding: 5px 10px;
  position: fixed;
  z-index: 999999;
  right: 15px;
  top: 110px;
  font-size: 14px;
  text-transform: capitalize;
}

#msg_display .icon {
  width: 60px;
  height: 60px;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
}

#msg_display .icon .la {
  font-size: 28px;

  color: #fff;
}

#msg_display .msg .msg-type {
  font-weight: 600;
}

#msg_display .msg p {
  color: #fff;

  font-weight: 100;

  margin-bottom: 0px;

  font-size: 14px;
}

#msg_display a.cross {
  position: absolute;

  top: 5px;

  right: 10px;

  color: #fff;

  font-size: 15px;
}

#msg_display.show {
  visibility: visible;

  display: flex !important;

  align-items: center;
}

#msg_display.success {
  background: #28a745 !important;
}

#msg_display.error {
  background: #e74c3c !important;
}

#msg_display.warning {
  background: #fcf8e3 !important;

  border: 1px solid #8a6d3b;

  border-radius: 2px;
}

#msg_display.warning .icon .la,
#msg_display.warning .msg #msg-type,
#msg_display.warning .msg p {
  color: #8a6d3b !important;
}

.inner-heading .title:before {
  display: block !important;
}

.inner-heading .title {
  width: auto;
}

.accordion-item {
  border: 1px solid #ccc;
  margin-bottom: 16px;
}

.accordion-header {
  background: #f9f9f9;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  margin-bottom: 0;
  font-family: GillSans Regular;
  font-size: 20px;
  line-height: 1.5;
  border-radius: 0 !important;
}

.accordion-collapse {
  background: #fff;
  /* padding: 16px; */
  display: none;
}

.accordion-collapse p {
  font-family: GillSans Regular;
  font-size: 16px;
}

.accordion-header i {
  transform: rotate(180deg);
}

.accordion-header.active i {
  transform: rotate(0);
}

.disc_li {
  padding-left: 1rem;
  list-style: disc;
}

.floating-icn {
  position: fixed;
  bottom: 48px;
  right: 15px;
  width: 38px;
  height: 38px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  z-index: 99;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 3px 10px rgb(0 0 0 / 16%), 0px 3px 10px rgb(0 0 0 / 16%);
  background: #fff;
  box-shadow: 0.5px 0.5px 5px #adadad;
}

.floating-icn img {
  width: 2.8rem;
  position: relative;
  /* top: 50%; */
}

/* FIX testimonials styling */

.testimonials .inner-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.testimonials .img-box-s {
  margin-bottom: 25px;
  box-shadow: 0px 4px 15px 0px rgb(208 208 208 / 28%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonials .img-box-s img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials .title {
  font-size: 20px;
  font-family: Georgia Regular;
  line-height: 1.2;
  margin-bottom: 10px;
}

.testimonials .inner-wrapper p {
  border-top: 1.5px solid #efbc72;
  padding-top: 10px;
  color: #000;
  font-family: GillSans Regular;
  font-size: 16px;
  width: 75%;
  margin: 0 auto;
}

.provide:before {
  background: var(--primary-color);
}