body {
  /* font-family: "Poppins", sans-serif; */
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #FFF7E7;
}

p {
  /* color: #442611; */
  color: #171A1FFF;
  font-size: 16px;
  font-family: "Rubik", sans-serif;
}

a {
  text-decoration: none;
  color: #F05522;
}

.z1 {
  z-index: 1;
  position: relative;
}

.berkshire {
  font-family: "Berkshire Swash", serif;
  font-weight: 400;
  font-style: normal;
}

.oswald {
  font-family: "Oswald", serif;
}

.rubik {
  font-family: "Rubik", sans-serif;
}

.ptb-80 {
  padding: 80px 0;
}

.mt-7 {
  margin-top: 70px;
}

.orange {
  color: #F05522 !important;
}

.red {
  color: #991F04;
}

.bg-orange {
  background-color: #F47527;
}

/* .bg-white{
  background-color: #ffffff !important;
} */

.navbar {
  background: rgb(253, 190, 87);
  background: linear-gradient(90deg, rgba(253, 190, 87, 1) 0%, rgba(252, 187, 88, 1) 10%, rgba(244, 119, 40, 1) 40%, rgba(244, 119, 40, 1) 100%);
  /* background-image: url(../images/header-pattern.svg); */
  background-repeat: repeat-x;
  padding: 0px 40px;
  z-index: 9;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, .1);
}

.nav-pattern {
  background-image: url(../MMM/header-pattern.svg);
  background-repeat: repeat-x;
  height: 18px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  opacity: .5;
}

.navbar-brand img {
  width: 200px;
}

.navbar-nav .nav-item {
  margin: 0 10px;
}

.navbar-nav .nav-link {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 40px 20px;
  display: inline-block;
  text-decoration: none;
  position: relative;
}

.navbar-nav .nav-item .active,
.navbar-nav .nav-link:hover {
  color: #182856;
}

.navbar-nav .nav-link::before {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: #182856;
  transition: width .3s;
  position: absolute;
  bottom: 0px;
  left: 0;
}


.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-item .active {
  width: 100%;
  transition: width .3s;
}

.top-nav .dropdown-menu {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 20px 25px;
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, .1);
  border: 0;
}

.top-nav .dropdown-menu li a {
  color: #232323;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
}

/* .dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
  display: block;
} */



.circular {
  animation: move-circular 9s ease-in-out infinite;
  animation-iteration-count: infinite;
}

@keyframes move-circular {
  from {
    -webkit-transform: rotate(0deg) translateX(20px) rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg) translateX(20px) rotate(-360deg);
  }
}

.float {
  transform: translatey(0px);
  -webkit-animation: float 4s ease-in-out infinite;
  animation: float 4s ease-in-out infinite;
}


@-webkit-keyframes float {
  0% {

    transform: translatey(0px);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {

    transform: translatey(0px);
  }
}


/* circle content */
.circle {
  animation: circle-rotate 20s linear infinite;
  -webkit-animation: circle-rotate 20s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(360deg);
  -webkit-transform: translate(-50%, -50%) rotate(360deg);
  width: 50%;
  height: 50%;
  /* border: 3px solid #6495f2; */
  border-radius: 100%;
}

.circle .icon-block img {
  animation: img-rotate 20s linear infinite;
  -webkit-animation: img-rotate 20s linear infinite;
}


/* keyframe animation */

@keyframes Rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes Rotate {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes Rotate-reverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@-webkit-keyframes Rotate-reverse {
  from {
    -webkit-transform: rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes circle-rotate {
  from {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(405deg);
  }
}

@-webkit-keyframes circle-rotate {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
  }

  to {
    -webkit-transform: translate(-50%, -50%) rotate(405deg);
  }
}

@keyframes img-rotate {
  from {
    transform: rotate(-45deg);
  }

  to {
    transform: rotate(-405deg);
  }
}

@-webkit-keyframes img-rotate {
  from {
    -webkit-transform: rotate(-45deg);
  }

  to {
    -webkit-transform: rotate(-405deg);
  }
}


/* Home Banner */
.home-banner {
  background-color: #FFF6D6;
  min-height: 100vh;
  overflow: hidden;
}

.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

.home-slider .slick-arrow {
  top: 45%;
  background-color: #182856;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  z-index: 2;
  opacity: .9;
}

.home-slider .slick-arrow:hover {
  opacity: .8;
}

.banner2 {
  background-image: url(../images/home/Website-Banner.webp);
  background-size: cover;
  height: 100vh;
  width: 100%;
  background-position: center center;
}

.banner3 {
  background-image: url(../images/home/slider3-new.jpg);
  background-size: cover;
  height: 100vh;
  width: 100%;
  background-position: center center;
}



.btn1 {
  background-color: #182856;
  border-radius: 25px;
  color: #ffffff;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  transition: .3s;
  position: relative;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.btns {
  border: 0;
}

.btns:hover {
  -webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, .15);
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, .15);
  -webkit-transform: translate3d(0, -2px, 0);
  transform: translate3d(0, -2px, 0);
}

.btns .btn-double-text {
  transition: opacity .65s, transform .85s;
  transition-timing-function: cubic-bezier(.15, .85, .31, 1);
}

.btns .btn-double-text:before {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  top: 50%;
  opacity: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  transition: opacity .5s, transform .8s;
  transition-timing-function: cubic-bezier(.15, .85, .31, 1);
}

.btns:hover .btn-double-text {
  transform: translateY(-200%);
}

.btns:active .btn-double-text:before,
.btns:hover .btn-double-text:before {
  transform: translate(-50%, 150%);
  opacity: 1;
}

/* Home Banner 1 */
.flower-left {
  top: 0;
  left: -100px;
  width: 190px;
}

.flower-right {
  top: 0;
  right: -100px;
  width: 190px;
}

.flower-left-small {
  top: 40%;
  left: 15%;
  width: 90px;
}

.flower-right-small {
  top: 20%;
  right: 20%;
  width: 90px;
}

.toran-left {
  top: 100px;
  left: 0;
  max-width: 250px;
  width: 16%;
}

.toran-right {
  top: 100px;
  right: 0;
  max-width: 250px;
  width: 16%;
}

.base-pat {
  background-image: url(../images/home/banner1/base.svg);
  background-repeat: repeat-x;
  bottom: 0;
  left: 0;
  height: 80px;
  width: 100%;
  z-index: 1;
}

.aasan {
  left: 0;
  right: 0;
  bottom: 80px;
  margin: 0 auto;
  z-index: 0;
}

.ganesha {
  left: 0;
  right: 0;
  bottom: 25px;
  margin: 0 auto;
  z-index: 2;
  width: 250px;
}

.ganesha-chakra {
  left: 0;
  right: 0;
  bottom: 220px;
  margin: 0 auto;
  z-index: 1;
  width: 180px;
}

.chakra1 {
  left: 0;
  right: 0;
  width: 140px;
  bottom: 470px;
  margin: 0 auto;
  z-index: 1;
  transition: .2s ease-out;
  /* transform: translatey(0px);
    -webkit-animation: float 6s ease-in-out infinite;
    animation: float 6s ease-in-out infinite; */
}

.chakra1:hover,
.chakra2:hover,
.chakra3:hover,
.chakra4:hover,
.chakra5:hover {
  transform: scale(1.1);
}

.chakra2 {
  right: 28%;
  width: 140px;
  bottom: 350px;
  margin: 0 auto;
  z-index: 1;
  transition: .3s ease-in;
}

.chakra3 {
  right: 18%;
  width: 140px;
  bottom: 160px;
  margin: 0 auto;
  z-index: 1;
  transition: .3s ease-in;
}

.chakra4 {
  left: 28%;
  width: 140px;
  bottom: 350px;
  margin: 0 auto;
  z-index: 1;
  transition: .3s ease-in;
}

.chakra5 {
  left: 18%;
  width: 140px;
  bottom: 160px;
  margin: 0 auto;
  z-index: 1;
  transition: .3s ease-in;
}


@keyframes float1 {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0px);
  }
}


/* Rotation CSS */
.rotate-1 {
  animation: animName 6s linear infinite;
}

@keyframes animName {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.rotate-2 {
  animation: animName2 12s linear infinite;
}

@keyframes animName2 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.rotate-3 {
  animation: animName3 22s linear infinite;
}

@keyframes animName3 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Home  */
.home-section2 {
  /* background-color: #781102; */
  background: rgb(87, 12, 2);
  background: linear-gradient(0deg, rgba(104, 12, 0, 1) 0%, rgba(87, 12, 2, 1) 100%);
  padding: 80px 0;
  position: relative;
}

.pattern1 {
  background-image: url(../images/header-pattern.svg);
  background-repeat: repeat-x;
  height: 18px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.pattern2 {
  background-image: url(../images/header-pattern.svg);
  background-repeat: repeat-x;
  height: 18px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(180deg);
}

.title1 {
  font-size: 42px;
  font-family: "Berkshire Swash", serif;
}

.ganesh-box {
  padding: 70px 80px;
  /* border-right: 1px #AA440C solid; */
  height: 100%;
}

.ganesh-box {
  transition: .3s;
}

.ganesh-box:hover {
  background-color: #af2713;
  border-radius: 100px;
}

.ganesh-box-border {
  border-left: 1px #AA440C solid;
  border-right: 1px #AA440C solid;
}

.ganesh-text {
  color: #F2A23F;
  font-size: 22px;
  font-style: italic;
  margin-top: 25px;
}

.ganesha-icon {
  max-width: 95px;
  width: 100%;
}

.diya-left {
  left: 30px;
  top: 0;
  z-index: 1;
}

.diya-right {
  right: 30px;
  top: 0;
  transform: rotateY(180deg);
  z-index: 1;
}

/* Home Section 3 */
.home-tabs .nav-pills .nav-link:first-child {
  border-top: 1px rgba(68, 38, 17, .3) solid;
}

.home-tabs .nav-pills .nav-link {
  background-color: #FCF0D8;
  height: 120px;
  border-radius: 0;
  color: #272B37;
  border-bottom: 1px rgba(68, 38, 17, .3) solid;
  text-align: left;
  padding: 0 35px;
  font-weight: 500;
  font-size: 18px;
  transition: .3s;
  position: relative;
}

.home-tabs .nav-pills .nav-link.active,
.home-tabs .nav-pills .show>.nav-link {
  background-color: #F05522;
  color: #ffffff;
  transition: 0.3s ease-out;
}

.home-tabs .nav-pills .nav-link:hover {
  color: #ffffff;
}

.home-tabs .nav-pills .nav-link:after {
  background-color: transparent;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  transition: 0.2s ease-out;
  z-index: 0;
}

.home-tabs .nav-pills .nav-link:hover::after {
  background-color: #F05522;
  transform: translateX(0);
}

.home-tabs .nav-pills .nav-link span {
  z-index: 1;
  position: relative;
}



.cover-background {
  background-size: cover;
  background-position: center center !important;
  position: relative;
  background-repeat: no-repeat !important;
  overflow: hidden;
}

.home-tabs .tab-content h4 {
  font-size: 28px;
  color: #272B37;
  font-weight: 600;
}

.home-tabs .tab-content p {
  font-size: 16px;
  color: #272B37;
  opacity: .75;
  margin: 25px 0;
}

.tc-content {
  padding: 60px;
}

.btn-dark {
  background-color: #182856;
  border-radius: 25px;
  color: #ffffff;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 14px;
  transition: .3s;
  position: relative;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.hub-tabs .tab-content {
  padding-bottom: 0px;
}

.hub-tabs .tab-content h4 {
  font-size: 30px;
  color: #841717;
  font-weight: 600;
  font-style: italic;
}

.hub-tabs .tab-content p {
  font-size: 17px;
  color: #ffffff;
  opacity: .80;
  margin: 25px 0 35px 0;
}

.hub-tabs .nav-pills .nav-link {
  background-color: transparent;
  height: 110px;
  border-radius: 0;
  color: #ffffff;
  border: 1px #AA440C solid;
  text-align: center;
  padding: 0 35px;
  font-weight: 500;
  font-size: 20px;
  transition: 0.2s ease-out;
}

.hub-tabs .nav-pills .nav-link.active,
.hub-tabs .nav-pills .show>.nav-link,
.hub-tabs .nav-pills .nav-link:hover {
  background-color: #991F04;
  color: #F7961D;
}

.flwp-left {
  left: 0px;
  top: 0;
  z-index: -1;
}

.flwp-right {
  right: 0px;
  top: 0;
  transform: rotate(90deg);
  width: 220px;
  max-width: 100%;
  z-index: -1;
}

.numbers {
  font-family: "Oswald", sans-serif;
  font-size: 50px;
  color: #F05522;
  font-weight: 600;
  position: relative;
}

.numbers:after {
  content: '';
  position: absolute;
  background-color: #FCE79C;
  height: 15px;
  width: 75%;
  bottom: 7px;
  left: 0;
  z-index: -1;
  right: 0;
  margin: 0 auto;
}

.number-text {
  color: #7E4555;
  font-weight: 500;
  font-style: italic;
  text-transform: uppercase;
}

.numbers2 .numbers {
  color: #192651;
  font-size: 40px;
}

.numbers2 .number-text {
  color: #343A4E;
}

#v-pills-tabContent {
  background-color: #FCF0D8;
}

.verticals-section {
  background: rgb(244, 119, 40);
  height: 350px;
  margin-bottom: 450px;
  /* background: linear-gradient(180deg, rgba(244,119,40,1) 0%, rgba(244,119,40,1) 65%, rgba(255,247,231,1) 65%, rgba(255,247,231,1) 100%); */
}

.mandir-right {
  right: 0;
  left: auto;
  top: auto;
  bottom: 0;
  z-index: 0;
  width: 400px;
}

.mandir-left {
  right: auto;
  left: 0;
  top: auto;
  bottom: 0;
  transform: rotateY(180deg);
  z-index: 0;
  width: 400px;
}

.vert-card {
  background-color: #ffffff;
  padding: 35px 35px;
  width: 100%;
  /* max-width: 270px; */
  border-radius: 40px;
  min-width: 300px;
  max-width: 300px;
}

.vert-card a {
  text-decoration: none;
}


.vert-card .vert-title {
  color: #182856;
  font-size: 20px;
  font-weight: 600;
  margin: 15px 0;
  /* height: 100px; */
  margin-bottom: 15px;
}

.vert-card p {
  color: #272B37;
  opacity: .75;
  font-size: 15px;
  margin-bottom: 0;
  /* height: 150px; */
}

.vert-card img {
  width: 90px;
}

.verticals-slider .slick-center {
  background-color: #112150;
}

.verticals-slider .slick-center .vert-title,
.verticals-slider .slick-center p {
  color: #ffffff;
}

/* .slick-center {
  transform: scale(1.08);
} */

/* Default slide */
.verticals-slider .slick-slide {
  margin: 0 20px;
  transform: scale(0.9);
  transition: all 0.4s ease-in-out;
}

.verticals-slider .slick-slide,
.verticals-slider .slick-slide[aria-hidden="true"]:not(.slick-cloned)~.slick-cloned[aria-hidden="true"] {
  transform: scale(0.9, 0.9);
  transition: all 0.4s ease-in-out;
}

/* Active center slide (You can change anything here for cenetr slide)*/
.verticals-slider .slick-center,
.verticals-slider .slick-slide[aria-hidden="true"]:not([tabindex="-1"])+.slick-cloned[aria-hidden="true"] {
  transform: scale(1.1);
}

.verticals-slider .slick-current.slick-active {
  transform: scale(1);
}




.verticals-slider .slick-arrow {
  bottom: -100px;
  margin: 0 auto;
  top: auto;
  background-color: #182856;
  width: 44px;
  height: 44px;
  border-radius: 100%;
}

.verticals-slider .slick-prev {
  left: 45%;
}

.verticals-slider .slick-next {
  right: 45%;
}

.slick-prev:before {
  content: "\f060";
  font-family: "Font Awesome 6 Free";
}

.slick-next:before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
}

/* .borders{
  border-top: 1px rgba(68, 38, 17, .3) solid;
  border-bottom: 1px rgba(68, 38, 17, .3) solid;
} */

.video-card {
  background-color: #ffffff;
  height: 100%;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 20px 0 rgb(0 0 0 / 4%);
  -moz-box-shadow: 0 10px 20px 0 rgb(0 0 0 / 4%);
  box-shadow: 0 10px 20px 0 rgb(0 0 0 / 4%);
}

.video-card .card-body {
  padding: 25px 30px;
  font-size: 18px;
  font-weight: 500;
  color: #182856;
}

.video-card .card-head {
  position: relative;
}

.video-card .card-head img {
  border-radius: 0 0 0 40px;
}

.video-card .card-head::before {
  content: '';
  background-color: rgba(0, 0, 0, .5);
  border-radius: 0 0 0 40px;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  transition: .3s;
}

.video-card .card-head::after {
  content: '\f144';
  font-family: "Font Awesome 6 Free";
  color: #ffffff;
  position: absolute;
  top: 40%;
  left: 45%;
  font-size: 45px;
  transition: .3s;
}

.video-card .card-head:hover::before {
  background-color: rgba(0, 0, 0, .7);
}

.video-card .card-head:hover::after {
  transform: scale(1.2)
}

.video-modal .modal-dialog {
  max-width: 800px;
  margin: 30px auto;
}

.video-modal .modal-body {
  position: relative;
  padding: 0px;
}

.video-modal .btn-close {
  position: absolute;
  right: -30px;
  top: 0;
  background-image: url(../images/close-btn.svg);
  opacity: .9;

}

/* footer */

footer {
  background-color: #781102;
  position: relative;
  padding: 0px 0 15px 0;
  font-size: 14px;
}

.footer-pattern {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 18px;
  background-image: url(../images/footer-pattern.svg);
  background-repeat: repeat-x;
  background-size: contain;
  opacity: .5;
}

.footer-logo {
  background-color: #fcbc58;
  padding: 15px;
  border-radius: 0px 0px 10px 10px;
  display: inline-block;
}

.footer-logo img {
  width: 200px;
  display: block;
  margin: 0 auto;
}

.footer-txt {
  font-size: 24px;
  color: #f6961d;
  font-weight: 500;
  font-style: italic;
}

.footer-btn {
  background-color: #f6961d;
  padding: 10px 20px;
  border-radius: 50px;
  color: #781102 !important;
  font-weight: 500;
  margin-left: 25px;
  border-color: #f6961d
}

.footer-btn:hover {
  background-color: #ffffff;
  color: #f6961d;
}

.footer-menu {
  font-size: 20px;
  color: #f6961d;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.footer-menu-ul {
  list-style-type: none;
  color: #ffffff;
  opacity: .9;
  font-size: 14px;
  padding-left: 0;
  font-weight: 300;
}

.footer-menu-ul li {
  margin-bottom: 15px;
}

footer .input-group-text {
  border: 1px solid #895008;
  background-color: #560c01;
  border-radius: 0 5px 5px 0 !important;
  padding: 6px 10px;
  height: 50px;
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  background-color: transparent;
}

footer .form-control {
  border: 1px solid #895008;
  background-color: #fff;
  border-right: 0;
  font-size: 14px;
  height: 50px;
}


::placeholder {
  color: #746c6c !important;
}

::-ms-input-placeholder {
  /* Edge 12-18 */
  color: #746c6c !important;
}

.footer-border {
  border-top: 1px solid rgba(201, 121, 24, 0.65);
  padding-top: 30px;
  color: rgba(255, 255, 255, .9);
}

.bottom-footer-ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
}

.bottom-footer-ul li {
  margin-right: 25px;
  color: #ffff;
  opacity: .9;
  font-size: 14px;
  font-weight: 300;
}

.bottom-footer-ul li:last-child {
  margin-right: 0px;
}


.footer-menu-ul li a,
.bottom-footer-ul li a {
  color: #ffffff;
  text-decoration: none;
}


.footer-menu-ul li a:hover,
.bottom-footer-ul li a:hover {
  color: #f6961d;
}


.inner-banner {
  background-size: cover;
  height: 65vh;
  background-position: top center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}


.inner-banner::after {
  content: '';
  background-color: #000000;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.inner-banner .h1 {
  font-size: 40px;
  margin-top: 10%;
}

.breadcrumb {
  background-color: #f05523;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  margin-top: 10px;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item.active {
  color: #ffffff;
}

.about-line {
  width: 23%;
}

.inner-flower {
  width: 85px;
  z-index: -5;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -10px;
  opacity: 0.5;
}

.diya-top {
  margin-top: -48px;
  width: 75%;
}

.certificate-div {
  border-radius: 15px 15px 0 15px;
  background-color: #ffffff;
  padding: 20px;
  text-align: center;
  margin: 0 20px 0;
}



.certificate-div p {
  font-size: 18px;
  font-weight: 700;
  color: #991F04;
  margin-top: 10px;
  margin-bottom: 0;
}

.certificate-div-mt {
  margin-top: -50px !important;
}

.certificate-div-mt2 {
  margin-top: 50px;
}



.about-left-img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;

  border-radius: 15px;
}

.about-right-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;

  border-radius: 15px;
}

.more {
  display: none;
}

/*  */

.setup_inner .setup_item .line {
  z-index: 1;
}

setup_inner {
  max-width: 830px;
  margin: -30px auto 0;
}

.setup_inner .setup_item {
  /* -webkit-box-align: center; */
  /* -ms-flex-align: center; */
  /* align-items: center; */
  padding: 40px 0;
  position: relative;
}

.setup_inner .setup_item.flex-row-reverse .setup_content {
  text-align: right;
  padding-right: 30px;
  padding-left: 0;
}

.setup_inner .setup_item .setup_img {
  text-align: center;
}

.setup_inner .setup_item .round {
  border-radius: 50%;
  background-color: #fdc119;
  -webkit-box-shadow: 0 10px 30px 0 rgba(1, 1, 64, 0.08);
  box-shadow: 0 10px 30px 0 rgba(1, 1, 64, 0.08);
  width: 80px;
  height: 80px;
  text-align: center;
  margin: 0 auto;
  font-size: 30px;
  color: #000;
  font-weight: 500;
  line-height: 80px;
}

.setup_inner .setup_item .line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 0;
  height: 100%;
  border-right: 2px dashed #fdc119;
  opacity: 0.5;
  margin-left: -1px;
  z-index: -1;
}

.setup_inner .setup_item:first-child .line {
  top: 23%;
  height: 100%;
}

.setup_inner .setup_item:last-child .line {
  top: 0;
  height: 50%;
}

.setup_inner .setup_content {
  padding-left: 30px;
}

.setup_inner .setup_content h5 {
  font-size: 20px;
  font-weight: 600;
  color: #2c2c51;
  line-height: 28px;
  margin-bottom: 15px;
}

.setup_inner .setup_content p {
  font-size: 16px;
  color: #231f20;
  font-weight: 400;
  margin-bottom: 0;
}

.timeline_star img {
  margin-left: -7px;
}

.timeline_star h4 {
  font-size: 40px;
  font-weight: 700;
  color: #182856FF;
  margin-bottom: 15px;
}


.journey-left {
  left: 0;
  top: 42%;
  width: 12%;
}


.journey-right {
  right: 0;
  top: 4%;
  width: 14%;
}

.trusts-name {
  position: absolute;
  bottom: 14px;
  background-color: #ffffff;
  border-radius: 50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  color: #313642;
  margin: 0 15px;
  font-size: 16px;
  font-weight: 600;
  padding: 8px;
}

.trusts-name span {
  font-size: 14px;
  font-weight: 500;
}


.charitable-trusts img {
  border-radius: 15px;
  width: 100%;
}

.charitable-trusts {
  margin: 0 20px;
}


.trusts-slider .slick-list {
  padding-bottom: 50px !important;
}

.trusts-slider .slick-prev,
.trusts-slider .slick-next {
  top: auto;
  bottom: -9%;
  z-index: 1;
}


.trusts-slider .slick-dots li.slick-active button:before {
  width: 50%;
}

.trusts-slider .slick-prev:before {
  content: "\f053" !important;
}


.trusts-slider .slick-next:before {
  content: "\f054" !important;
}

.trusts-slider .slick-prev {
  left: 41%;
}

.trusts-slider .slick-next {
  right: 41%;
}


.trusts-slider .slick-dots li button:before {
  color: #FFF9A5;
  font-size: 15px;
}

.trusts-slider .slick-dots li.slick-active button:before {
  color: #ffffff;
}

.date {
  color: #8E94A0;
  font-size: 12px;
  display: inline-block;
}

.blog-read {
  float: right;
  display: inline-block;
}

.blog-read .btns {
  font-size: 12px;
  margin-top: 0 !important;
  padding: 8px 15px !important;
  text-decoration: none;
  text-decoration: none;
}

.blog-div p {
  color: #16191E;
  font-weight: 500;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  margin-top: 10px;
}

.blog-div {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
}

.blog-div img {
  border-radius: 0 0 0 40px;
}


.hover-transition {
  transition: all .2s ease-in-out;
  /* cursor: pointer; */
}

.hover-transition:hover {
  transform: translateY(-0.4rem);
  webkit-box-shadow: 0 15px 35px 0 rgb(255 137 78 / 15%);
  -moz-box-shadow: 0 15px 35px 0 rgb(255 137 78 / 15%);
  box-shadow: 0 15px 35px 0 rgb(255 137 78 / 15%);
}


/* Temple */

.text-blue {
  color: #10204F;
}

.number1 {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 80px;
}

.achieve-div {
  margin-bottom: 470px;
}

.title-txt {
  color: #EF5521FF;
  font-size: 45px;
  /* font-weight: 600; */
}

.temple-solution {
  margin-bottom: 25px;
}



.temple-solution img {
  width: 45px;
  height: 45px;
  margin-right: 20px;
}

.temple-solution p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: #171A1FFF;
  margin-bottom: 0;
  text-transform: capitalize;
}

.dwn-btn {
  background-color: transparent;
  color: #182756;
  border: 1px solid #182756;
  margin-left: 20px;
}

.small-heading {
  font-size: 16px;
  line-height: 26px;
  color: #112150FF;
  font-weight: 700;
  text-transform: uppercase;
}

.accordion-button::after {
  background-image: url('../images/icons/right-arrow.svg');
}

.accordion-button:not(.collapsed)::after {
  background-image: url('../images/icons/down-arrow.svg');
}

.accordion-button:not(.collapsed) {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #EF5521FF;
  background-color: #ffffff;
}

.accordion-button {
  background-color: #FFF7E8;
  border-radius: 10px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #171A1FFF;

}

.list-style li::marker {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  color: #10204F;
}


.list-style li {
  font-size: 16px;
  font-weight: 400;
  color: #171A1FFF;
  padding-left: 10px;
  margin-bottom: 10px;

}

.accordion-body p {
  /* font-size: 15px; */
  /* line-height: 24px; */
  font-weight: 400;
  /* color: #9095A1FF; */
}

.accordion-item {
  margin-bottom: 25px;
  border: 1px solid #eeeeee;
  border-radius: 10px;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, .125);
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid #eeeeee;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
}

.social-div {
  background: #F4772866;
  border-radius: 150px;
  /* padding: 40px 20px; */
  height: 260px;
}

.icon-div {
  background: #FFFFFFFF;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 130px;

}



.icon-div p {
  margin-bottom: 0;
  margin-left: 20px;
  font-size: 18px;
  font-weight: 700;
  color: #171A1FFF;
}

.icon-div span {
  font-size: 16px;
  font-weight: 500
}

.whatsapp-div {
  position: absolute;
  right: 10%;
  z-index: 1;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  top: 12%;
}

.whatsapp-div img {
  width: 40px;
}

.payment-div {
  position: absolute;
  bottom: 14%;
  left: 17%;
}

.mail {
  position: absolute;
  top: -14%;
  left: 14%;
  /* background-color: #EF5521;
    height: 80px;
    width: 80px;
    padding: 10px;
    border-radius: 100%; */
}

.chat {
  position: absolute;
  right: 37px;
  top: -15px;
  z-index: 2;
  /* background-color: #EF5521;
    height: 80px;
    width: 80px;
    padding: 10px;
    border-radius: 100%; */
}

.payment-card {
  position: absolute;
  bottom: -26px;
  right: 12%;
  /* background-color: #EF5521;
    height: 80px;
    width: 80px;
    padding: 10px;
    border-radius: 100%; */
}


.float1 {
  animation-name: float1;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

.float2 {
  animation-name: float2;
  animation-duration: 6s;
  animation-iteration-count: infinite;
}


@keyframes float1 {
  0% {
    transform: translate(0, 0);
  }

  35% {
    transform: translate(0, -12px);
    animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  }

  100% {
    transform: translate(0, 0);
    animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  }
}

@keyframes float2 {
  0% {
    transform: translate(0, 0);
  }

  35% {
    transform: translate(0, -12px);
    animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  }

  100% {
    transform: translate(0, 0);
    animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  }
}

.nav-justified .nav-item,
.nav-justified>.nav-link {
  z-index: 1;
}


/* Default slide */
.privacy-slider .slick-slide {
  margin: 0 20px;
  transform: none !important;
  transition: all 0.4s ease-in-out;
}

.privacy-slider .slick-slide,
.privacy-slider .slick-slide[aria-hidden="true"]:not(.slick-cloned)~.slick-cloned[aria-hidden="true"] {
  transform: none !important;
  transition: all 0.4s ease-in-out;
}

/* Active center slide (You can change anything here for cenetr slide)*/
.privacy-slider .slick-center,
.privacy-slider .slick-slide[aria-hidden="true"]:not([tabindex="-1"])+.slick-cloned[aria-hidden="true"] {
  transform: none !important;
}

.privacy-slider .slick-current.slick-active {
  transform: none !important;
}


.privacy-slider {
  margin: 60px 0;
}

.privacy-slider .vert-card {
  padding: 34px 15px;
  max-width: 350px;
}

.privacy-slider .vert-card .vert-title {
  height: auto;
  margin-bottom: 15px;
}

/* 

.privacy-card{
  background-color: #ffffff;
  padding: 35px 35px;
  width: 100%;
  max-width: 270px;
}
.privacy-card a{
  text-decoration: none;
}
.privacy-card .privacy-title{
  color: #182856;
  font-size: 20px;
  font-weight: 600;
  margin: 15px 0;
}
.privacy-card p{
  color: #272B37;
  opacity: .75;
  font-size: 14px;
}
.privacy-card img{
  width: 90px;
}
.privacy-slider .slick-center{
  background-color: #112150;
}

.privacy-slider .slick-center{
  background-color: #112150;
}


.privacy-slider .slick-center .vert-title, .privacy-slider .slick-center p{
  color: #ffffff !important;
} */


/* Navbar  */



body.offcanvas-active {
  overflow: hidden;
}

.offcanvas-header {
  display: none;
}

.screen-darken {
  height: 100%;
  width: 0%;
  z-index: 30;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(34, 34, 34, 0.6);
  transition: opacity .2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active {
  z-index: 10;
  transition: opacity .3s ease, width 0s;
  opacity: 1;
  width: 100%;
  visibility: visible;
}



.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #ae8875;
}




/* ============ mobile view ============ */
@media all and (max-width: 991px) {

  .offcanvas-header {
    display: block;
  }

  .mobile-offcanvas {
    visibility: hidden;
    transform: translateX(-100%);
    border-radius: 0;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1200;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: visibility .3s ease-in-out, transform .3s ease-in-out;
    /* background-color: #781102 !important; */
  }

  .navbar {
    background-color: #781102 !important;
    background: none;
  }

  .mobile-offcanvas.show {
    visibility: visible;
    transform: translateX(0);
  }

  .mobile-offcanvas .container,
  .mobile-offcanvas .container-fluid {
    display: block;
  }

  .offcanvas-header .btn-close {
    height: 15px;
    background-color: #ffffff;
    opacity: 1;
    width: 15px;
    padding: 6px;
    border-radius: 100%;
    margin-top: 10px;
  }

  .hamburger img {
    width: 22px;
  }

  .hamburger {
    float: right;
    /* margin: 20px 20px 0; */
    background-color: transparent;
    border: 0;
    margin-top: 5px !important;
  }

  .connect-mobile {
    display: block;
  }

  .mobile-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background: linear-gradient(90deg, rgba(253, 190, 87, 1) 0%, rgba(252, 187, 88, 1) 10%, rgba(244, 119, 40, 1) 40%, rgba(244, 119, 40, 1) 100%);
  }

  .navbar-nav .nav-item .active,
  .navbar-nav .nav-link:hover {
    color: #ffffff !important;
  }

  .navbar-nav .nav-link::before {
    display: none;
  }

  .navbar-nav .nav-item {
    margin: 0 !important;
    opacity: .9;
  }

  .navbar .btn-close {
    opacity: 1 !important;
    background-image: none !important;
  }

  .navbar .btn-close img {
    width: 16px;
  }

  .navbar-nav {
    margin-top: 25px;
  }

  .navbar-logo {
    background-color: #fcbc58;
    margin-top: 8px;
    border-radius: 8px;
    padding: 10px;
  }

  .navbar-logo img {
    width: 100px !important;
  }


}

/* ============ mobile view .end// ============ */

.slick-track {
  display: flex;
  align-items: stretch;
}

.slick-slide {
  height: auto;
  flex: 1;
}


.connect-form h4 {
  font-size: 32px;
  font-weight: 600;
  color: #171A1FFF;
  text-align: center;
  margin-bottom: 30px;
}


.connect-form .btn-close {
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 9;
}

.form-div {
  border: 1px solid #8E94A0 !important;
  border-radius: 15px;
  padding: 8px 15px;
  position: relative;

  -webkit-box-shadow: 0px 0px 0px 5px rgba(242, 243, 244, 1);
  -moz-box-shadow: 0px 0px 0px 5px rgba(242, 243, 244, 1);
  box-shadow: 0px 0px 0px 5px rgba(242, 243, 244, 1);
}




.connect-form .form-control {
  border: 0;
  padding: 10px 0 5px;
}


.connect-form label {
  color: #424856 !important;
  font-weight: 600;
  font-size: 14px;
}

.connect-form .form-floating {
  border: 6px solid #F2F3F4 !important;
  border-radius: 15px;
  /* margin-bottom: 20px; */
}

.connect-form .form-floating input,
.connect-form .form-floating textarea {
  border: 1px solid #8E94A0 !important;
  border-radius: 10px;
}

.connect-form .modal-content {
  padding: 15px 30px;
}


.connect-form .btns {
  width: 100%;
  display: flex;
  justify-content: center;
}

.form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 12px;
}

.form-control:focus {
  box-shadow: none;
}

.connect-div {
  background-color: #F47527;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1);
  transition: .4s;
}

.connect-div:hover {
  transform: scale(.9);
}

.connect-div h4 {
  font-size: 40px;
  font-weight: 700;
  color: #FFFFFFFF;

}

.website-div {
  margin-bottom: 30%;
}


.moretext {
  display: none;
}



.slick-slider2 .slick-prev:before,
.slick-slider2 .slick-next:before {
  color: #991F04;
}

.slick-slider2 .slick-dots li button:before {
  color: #182856;
  font-size: 15px;
}

.slick-slider2 .slick-dots li.slick-active button:before {
  color: #991F04;
}



/* ============ Navbar only desktop view ============ */
@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    border-radius: 0.4rem;
    box-shadow: 0 0 1.25rem rgb(30 34 40 / 6%);
    border: 0;
    font-size: 15px;
    color: #343f52;
    padding: 1rem 0;
  }

  /* .navbar .nav-item:hover .nav-link{ color: #F37225;  } */
  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar .nav-item:hover .dropdown-menu,
  .navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }

}

/* ============ desktop view .end// ============ */



.navbar .nav-item .dropdown-submenu .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.dropend>.dropdown-menu {
  right: auto;
  left: 100%;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
  margin-top: 0;
  top: 0%;
}

.dropend li a {
  font-size: 14px !important;
  margin-bottom: 5px !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #F05522 !important;
  background-color: transparent;
}

/* 
.navbar-logo img{
  width: 200px;
} */

/* Timeline */


.timeline {
  width: 100%;
  position: relative;
}

.timeline-nav__item {
  width: auto;
  height: auto;
  text-align: center;
  background: transparent;
  color: #182856 !important;
  font-weight: 600 !important;
  margin: 15px 25px !important;
  position: relative;
  outline: none;
  cursor: pointer;
  border-radius: 40px;
  box-shadow: 0px 5px 5px 0 rgb(0 0 0 / 10%);
  border: 1px #f47728 solid;
  background: white;
  font-size: 17px;
}

.timeline-nav__item::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: transparent;
  transition: 0.2s;
}

.timeline-nav__item.slick-current {
  color: #f05523 !important;
  opacity: 1;
  font-weight: 700 !important;
  font-size: 17px;
}

.timeline-nav__item.slick-current::before {
  background-color: #f05523;
}

.timeline-wrapper {
  position: relative;
  width: 100%;
  margin-top: 15px;
}

/* .timeline .slick-list {
  overflow: visible;
} */

.slider-wrapper {
  width: calc(100% + 30px);
  padding: 0 15px;
  margin-left: -15px;
  overflow: hidden;
}

.journey-section {
  background-image: url('../images/about/temple-bg2.webp');
  background-position: bottom;
  background-size: cover;
  padding: 80px 0 100px 0;
  background-attachment: fixed;
}

.timeline-slider {
  height: 100%;
}

.timeline .slick-list {
  height: 100%;
}

.timeline .slick-track {
  height: 100%;
}

.timeline-slide {
  position: relative;
  overflow: visible;
  outline: none;
  margin: 0;
  z-index: 1;

}

.timeline-slide__content {
  z-index: 5;
  background: #f05523;
  padding: 40px;
  opacity: 0;
  /* box-shadow: rgba(240,87,36, 0.15) 0px 48px 100px 0px; */
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  border-radius: 20px;
}

.timeline-nav .slick-track {
  margin: 0px auto;
  text-align: center;
  display: contents;

}

.timeline-nav .slick-list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline-year {
  z-index: 5;
  font-size: 35px;
  color: #ffffff;
  background: #f05523;
  padding: 15px 26px;
  transition: opacity 1.2s;
  position: absolute;
  right: 0;
  opacity: 0;
}

.timeline-title {
  color: #f05523;
  font-size: 26px;
  line-height: 30px;
  font-weight: 400;
}

.timeline-text {
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  text-align: center;
}

.timeline .slick-current:after {
  background-color: rgba(0, 52, 113, 0);
}

.timeline .slick-current .timeline-year {
  opacity: 1;
}

.timeline .slick-current .timeline-slide__content {
  opacity: 1;
}


/* Solution Css*/


.solution-div {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 10px;
  margin: 0 20px;
}

.solution-div img {
  background-color: #E5B657;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.solution-div p {
  font-size: 14px;
  margin-top: 10px;
  font-weight: 600;
  color: #171A1FFF;
  margin-bottom: 0;

}


.solution_slider .slider {
  display: flex;
}

.solution_slider .slick-track {
  will-change: transform;
}

.solution_slider .slick-list {
  overflow: hidden;
  will-change: transform;
}

.pr-0 {
  padding-right: 0 !important;
}

.solution_slider .slick-arrow {
  top: auto;
  bottom: -63px;
  background-color: #112150;
  border-radius: 100%;
  height: 30px;
  width: 30px;
}

.solution_slider .slick-next {
  right: 84%;
}


.solution_slider .slick-prev {
  left: 4%;
}


.solutions-tab .nav-item.show .nav-link,
.solutions-tab .nav-link.active {
  border: 0;
  border-bottom: 4px solid #EF5521;
  font-weight: 500;
  color: #EF5521FF;
  background-color: transparent;
}

/* 
 .nav-link:focus, .solutions-tab  .nav-link:hover {
  border: 0;
} */

.solutions-tab .nav-link {
  font-size: 17px;
  font-weight: 500;
  color: #171A1FFF;
  padding: 0 0 15px 0;
  margin-right: 40px;
  border: 0;
  border-bottom: 4px solid #ffffff00;
  transition: all ease-in-out .2s;
}


/* .solutions-content p{
  color: #5D6068;
  font-size: 18px;
} */

.solutions-tab {
  padding-left: 16.66666667%;
}



.solutions-content {
  padding-left: 16.66666667%;
  padding-right: 15%;
}

.solutions-tab .nav-link {
  position: relative;

}


.solutions-tab .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background-color: #182856;
  left: 0;
  right: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 1s ease-out;
}

.solutions-tab .nav-link.active:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Team */
.team-row {
  max-width: 1500px;
}

.team-row .col-lg-3 {
  flex: 0 0 auto;
  width: 20%;
}

.flip-container {
  margin: 0 auto;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  /* float: left; */
  /* margin-right: 20px; */
}

.flip-container:hover .flipper {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
}

.flipper {
  -webkit-transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  -moz-transition: 0.6s;
  -moz-transform-style: preserve-3d;
  position: relative;
}

.front,
.back {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  /* border: 1px solid #ccc; */
}

.front {
  z-index: 1;
  background: #fff;
}

.flip-container,
.front,
.back {
  width: 100%;
  height: 300px;
}

.back {
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  background-color: #F47527;
  color: #ffffff;
}

.flip-padding {
  padding: 50px 30px;
  height: 100%;
  overflow: hidden;
}

.flip-padding h6 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.flip-padding p {
  font-size: 15px;
  color: #ffffff;
}

.profile-picture {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.profile-name,
.profile-title {
  text-align: center;
}

.profile-name {
  font-size: 18px;
  margin-top: 20px;
  font-weight: 500;
  margin-bottom: 0px;
  color: #262b35;
}

.profile-title {
  font-size: 16px;
  margin-top: 5px;
  margin-bottom: 25px;
  font-weight: 300;
  color: #868d98;
}

.profile-devider {
  width: 100%;
  height: 4px !important;
  background: #F47527;
  position: relative;
  margin: 0 auto;
  margin-top: -4px;
}

.profile-devider:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 15px 15px 0;
  border-color: #F47527 transparent;
  display: block;
  width: 0;
  z-index: 1;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* Key focus */

.key-focus {
  background-color: #ffffff;
  padding: 35px 35px;
  width: 100%;
  /* max-width: 270px; */
  border-radius: 40px;
  margin: 0 20px;
}

.key-focus a {
  text-decoration: none;
}


.key-focus .key-focus-title {
  color: #182856;
  font-size: 20px;
  font-weight: 600;
  margin: 15px 0;
  /* height: 100px; */
  margin-bottom: 15px;
}

.key-focus:hover {
  background-color: #182856;

}

.key-focus:hover p,
.key-focus:hover .key-focus-title {
  color: #ffffff;
}


.key-focus p {
  color: #272B37;
  opacity: .75;
  font-size: 14px;
  margin-bottom: 0;
  /* height: 150px; */
}

.key-focus img {
  width: 90px;
}

.key-focus-slider.slick-center {
  background-color: #112150;
}

.key-focus-slider.slick-center .key-focus-title,
.key-focus-slider.slick-center p {
  color: #ffffff;
}

/* .slick-center {
  transform: scale(1.08);
} */

/* Default slide */
.key-focus-slider.slick-slide {
  margin: 0 20px;
  transform: scale(0.9);
  transition: all 0.4s ease-in-out;
}

.key-focus-slider.slick-slide,
.key-focus-slider.slick-slide[aria-hidden="true"]:not(.slick-cloned)~.slick-cloned[aria-hidden="true"] {
  transform: scale(0.9, 0.9);
  transition: all 0.4s ease-in-out;
}

/* Active center slide (You can change anything here for cenetr slide)*/
.key-focus-slider.slick-center,
.key-focus-slider.slick-slide[aria-hidden="true"]:not([tabindex="-1"])+.slick-cloned[aria-hidden="true"] {
  transform: scale(1.1);
}

.key-focus-slider.slick-current.slick-active {
  transform: scale(1.1);
}




.key-focus-slider .slick-arrow {
  bottom: -100px;
  margin: 0 auto;
  top: auto;
  background-color: #182856;
  width: 44px;
  height: 44px;
  border-radius: 100%;
}

.key-focus-slider .slick-prev {
  left: 45%;
}

.key-focus-slider .slick-next {
  right: 45%;
}


.solutions-tab-add-ons {
  padding-left: 14.333333%;
}

.solutions-content-add-ons {
  padding-left: 14.333333%;
  padding-right: 10% !important;
}

/* FAQ  */

.faq-div {
  border-radius: 100px;
  padding: 50px 40px;
  text-align: center;
  cursor: pointer;
  border: 4px solid #F7961DFF;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center
}

.faq-div img {
  position: absolute;
  right: 0;
  top: -5px;
}

.faq-div:hover {
  background-color: #112150FF;
  border-color: #112150FF;
}

.faq-div:hover>h4 {
  color: #ffffff !important;
}



.faq-div h4 {
  font-size: 16px;
  color: #16191E;
  margin: 0;
}

.faq-scroll {
  height: 600px;
  overflow-x: hidden;
  overflow-y: scroll;
}

.faq-scroll::-webkit-scrollbar {
  width: 12px;
}

.faq-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.faq-scroll::-webkit-scrollbar-thumb {
  background: #781102;
  border-radius: 5px;
  margin: 10px 0;
}

.faq-scroll::-webkit-scrollbar-thumb:hover {
  background: #182756;
}

.faq-scroll::-webkit-scrollbar-button {
  display: none;
}


.faq-body h4 {
  font-size: 28px;
  font-weight: 600;
  color: #112150FF;
  margin-bottom: 25px;
}

.faq-body {
  padding: 40px;
}

.faq-modal .btn-close {
  background-image: none;
  opacity: 1;
  position: absolute;
  right: 50px;
  top: 32px;
  z-index: 1;
}

.faq-modal .btn-close img {
  height: 35px;
  width: 35px;
}


.btn-close:focus {
  box-shadow: none;
}

.ecosystem-title .title1 {
  line-height: 1.2;
}

.ecosystem-title p {
  margin: 20px 0 30px 0;
}

.faq-div img {
  height: 30px;
  width: 30px;
}

.embed-responsive-item {

  border-radius: 10px;
}

/* Inner  blog */

.blog-heading {
  font-size: 28px;
  font-weight: 600;
  color: #112150FF;

}

.blog-date {
  font-size: 14px;
  font-weight: 400;
  color: #9095A1FF;
  margin: 15px 0 30px 0;
}

.blog-section {
  padding: 50px 0 130px;
  margin-top: 104px;
}

.blog-txt p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #171A1FD9;
}

.blog-sidebar {
  background-color: #FFEECCFF;
  border-radius: 8px;
  padding: 20px 20px;
}

.blog-sidebar h3 {
  font-size: 20px;
  font-weight: 600;
  color: #171A1FFF;
  margin-bottom: 20px;
}

.blog-sidebar .card {
  padding: 15px 0;
  margin: 15px 0;
  border-color: transparent;
  background: transparent;
  border-bottom: 1px #ebdab7 solid;
  border-radius: 0;
}

.blog-sidebar img {
  width: 100%;
  object-fit: cover;
  border: 1px #ebdab7 solid;
}

.blog-sidebar .card-body {
  padding: 0 0 0 15px;
}

.blog-slidebar-date,
.blog-sidebar-date {
  font-size: 12px;
  font-weight: 400;
  color: #f47728;
  margin-bottom: 5px;
}

.blog-slidebar-heading,
.blog-sidebar-heading {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #16191EFF;
  margin: 0;
}

.blog-slidebar-heading a,
.blog-sidebar-heading a {
  color: #16191EFF !important;
}


.blog-slidebar-heading a:hover {
  color: #F05522 !important;
}

.blog-section h2 strong {
  font-weight: 600;
  font-size: 20px;
}

.blog-section ul {
  font-family: Rubik, sans-serif;
}

.page-link {
  font-size: 16px;
  font-weight: 500;
  color: #16191EFF;
}

.page-link a {
  color: #16191EFF !important;
  opacity: .9;
}

.page-link a:hover {
  color: #F05522 !important;
}

.blog-slider .blog-div {
  margin: 30px;
}

.blog-slider .slick-arrow {
  bottom: -100px;
  margin: 0 auto;
  top: auto;
  background-color: #182856;
  width: 44px;
  height: 44px;
  border-radius: 100%;
}

.blog-slider .slick-prev {
  left: 45%;
}

.blog-slider .slick-next {
  right: 45%;
}

.media-heading {
  font-size: 20px !important;
  color: #182856 !important;
  font-weight: 600 !important;
  margin: 10px 0 20px;
}

.media-div {
  margin-bottom: 0 !important;
  padding-bottom: 20px !important;
}

.media-txt {
  font-size: 16px !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}


/* contact */

.add-info {
  background-color: #ffffff;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.add-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #171A1FFF;
  margin-bottom: 15px;
}

.add-info p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #9095A1FF;
  margin-bottom: 0;
}


.contact-info a {
  color: #9095A1FF;
  text-decoration: none;
}

.contact-info a:hover {
  color: #F05522;
}

.contact-heading {
  font-size: 32px;
  line-height: 48px;
  font-weight: 600;
  color: #171A1FFF;
}

.contact-info {
  display: flex;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.contact-txt {
  margin-left: 30px;
}

.contact-txt h4 {
  font-size: 18px;

  font-weight: 600;
  color: #171A1FFF;
  margin-bottom: 15px;
}

.contact-txt p {
  font-size: 14px;
  font-weight: 400;
  color: #9095A1FF;
  line-height: 30px;
  margin-bottom: 0;
}


.contact-form h4 {
  font-size: 32px;
  font-weight: 600;
  color: #171A1FFF;
  text-align: center;
  margin-bottom: 30px;
}

.contact-form {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 50px 60px;
}

.contact-form .form-div {
  border-radius: 10px;
}

.contact-form .form-control {
  border: 0;
}

.contact-form .btns {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-info img {
  width: 70px;
  height: 70px;
}

.list-style2 li::marker {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  color: #10204F;
}


.list-style2 li {
  font-size: 16px;
  font-weight: 400;
  color: #171a1f;
  padding-left: 10px;
  margin-bottom: 10px;

}


.terms h3 {
  font-size: 23px;
  font-weight: 600;
  font-family: "Rubik", sans-serif;
}

/* .blog-div img{
  width: 100%;
  height: auto;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.blog-div:hover img {
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
} */


/* Video gallery */

.video-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 30px;
  display: block;
  background-color: #000;
}

.gallery-item .video-frame {
  position: relative;
  width: 100%;
  height: auto;
  transition: .6s;
  opacity: .6;
}

.gallery-item:hover .video-frame {
  transform: scale(1.08);
  opacity: .3;
}

.gallery-item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 30px;
  background-color: #000000;
  top: 0;
  left: 0;
  z-index: 1;
}

.gallery-item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 30px;
  background-color: #000000;
  bottom: 0;
  left: 0;
  z-index: 1;
}


.gallery-item .gallery-item-caption,
.gallery-item .gallery-item-caption>a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.color-tab .nav-link.active {
  background-color: #fff7e7;
}

.mt-80 {
  margin-top: 80px;
}

.mandal-h5 {
  line-height: 35px;
}

.plr-0 {
  padding-left: 0;
  padding-right: 0;
}

.pl-0 {
  padding-left: 0;
}

.mandal-title .title-txt {
  font-size: 38px;
  font-family: "Berkshire Swash", serif;
  text-transform: capitalize;
}

.mandal-title .title1 {
  font-size: 22px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #212529;
}

.ml-15 {
  margin-left: 15px;
}

.mandal-flex {
  margin-bottom: 10px;
}

.mandal-flex img {
  width: 10px;
  height: 10px;
  margin-right: 15px;
}

.mandal-flex p {
  margin-bottom: 0;
  font-size: 15px;
}

.mandal-page .list-style li,
.mandal-page .solutions-tab .nav-link,
.mandal-page p {
  font-size: 15px;
}

.left-pad {
  padding-left: 40px;
}


.sitemap h4 {
  font-size: 24px;
  line-height: 1.3;
  min-height: 50px;
  font-weight: 600;
  position: relative;
  color: #F05522;
  margin-bottom: 20px;
}


.sitemap ul {
  padding-left: 20px;
}

.sitemap li {
  margin-bottom: 10px;
}

.sitemap li a {
  color: #555555;
  font-size: 16px;
  text-decoration: none;
}

.sitemap li::marker {
  color: #F05522;
}

.video-gallery h5 {
  line-height: 30px;
  font-weight: 600;
}

.text-height {
  line-height: 1.4;
}

.seva-ul {
  list-style-type: none;
  margin: 20px 0;
}

.seva-ul li {
  position: relative;
  font-size: 16px;
  margin-bottom: 15px;
}


.seva-ul li::before {
  content: '';
  position: absolute;
  background-image: url(../images/arrow.svg);
  left: -22px;
  top: 0;
  height: 20px;
  width: 20px;
}

.io-benefits {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  text-align: center;
  margin: 0 5px
}

.io-benefits img {
  width: 80px;
  display: block;
  margin: 0 auto;
}

.io-benefits h3 {
  font-size: 18px;
  color: #112150;
  font-weight: 600;
  margin: 15px 0;
  line-height: 1.4;
}

.io-benefits p {
  font-size: 16px;
}

/* .bg-white p{
  color: #5D6068 !important;
} */

.f_w600 {
  font-weight: 600;
}

.mt-8 {
  margin-top: 80px !important;
}


.dot-circle {
  height: 10px;
  width: 10px !important;
  margin-top: 6px;
}

.f_w400 {
  font-weight: 400 !important;
}

.green-img {
  width: 50%;
}

.seva-contact {
  background-color: #182856;
  padding: 50px;
  border-radius: 25px;
  margin: 0 auto;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  max-width: 1000px;
}


.seva-contact .btns {
  background-color: #ffffff;
  color: #182856;
}


.seva-contact h4 {
  font-size: 28px;
  line-height: 1.6;
  color: #ffffff;
  text-align: left;
}


.manpower-txt {
  font-size: 18px;
  line-height: 1.5;
}

/* .text-heading{
    margin: 0 auto;
    text-align: center;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    line-height: 1.5;
} */

.secure-div {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 0 55px 0 55px;
  margin: 0 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.secure-div h4 {
  font-size: 18px;
  text-align: center;
  margin-top: 30px;
  font-weight: 600;
  line-height: 1.5;
}

.secure-div img {
  width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 0 55px 0 55px;
}

.secure-div-mt {
  margin-top: 80px;
}


.secure-div-mt h4 {
  margin: 0 0 30px;
}

.secure-div-mt img {
  border: 1px solid #e2e2e299;
}

.seva-banner h1,
.seva-banner .h1 {
  font-size: 24px !important;
  line-height: 1.4;
}

.pos-img {
  background-color: #E5B657;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  height: auto;
  object-fit: contain;
}

.team-row .col-lg-3 {
  flex: 0 0 auto;
  width: 21%;
}


.faq-sec {
  margin-top: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-sec h1 {
  font-size: 30px;
  text-align: center;
}

.faq-accordion {
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px;
}

.faq-sec img {
  top: 100px !important;
}

.b-radiu20 {
  border-radius: 20px;
}

.hub-slider {
  z-index: 2;
}

.hub-slider .vert-card {
  margin: 0 15px;
  min-width: auto;
  max-width: none;
}

.social-media {
  list-style-type: none;
  padding: 0;
  display: flex;
  margin-top: 30px;
}

.social-media li {
  margin-right: 15px;
}

.social-media svg {
  width: 22px;
  height: 22px;
  fill: #f6961d;
}

.key-focus-slider2 .slick-arrow {
  bottom: -100px;
  margin: 0 auto;
  top: auto;
  background-color: #182856;
  width: 44px;
  height: 44px;
  border-radius: 100%;
}

.key-focus-slider2 .slick-prev {
  left: 45%;
}

.key-focus-slider2 .slick-next {
  right: 45%;
}

.key-focus-slider2 .vert-card .vert-title {
  font-size: 18px !important;
}

.blog-txt h3 {
  font-size: 18px;
}

.blog-txt h2 {
  font-size: 20px;
}

.devotee-div {
  margin-bottom: 360px;
}

.vert-card:hover {
  background-color: #182856;

}

.vert-card:hover p,
.vert-card:hover .vert-title {
  color: #ffffff;
}

.contact-info2 i {
  background-color: #182856;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 30px;
  border-radius: 100px;
  font-size: 14px;
}

.contact-info2 p {
  font-size: 16px;
  font-weight: 400;
  color: #9095A1FF;
  line-height: 30px;
  margin-bottom: 0;
}


.enlarge-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: 0 auto;
  text-align: center;
}

.enlarge-btn2 {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

/* .coming-song {
  margin-top: 100px;
} */

@media (min-width:1440px) {
  .ganesha {
    bottom: 20px;
    width: 280px;
  }

  .ganesha-chakra {
    left: 0;
    right: 0;
    bottom: 250px;
    margin: 0 auto;
    z-index: 1;
    width: 200px;
  }

  .chakra1 {
    bottom: 495px;
    width: 160px;
  }

  .chakra2,
  .chakra4 {
    bottom: 380px;
    width: 160px;
  }

  .chakra5,
  .chakra3 {
    bottom: 105px;
    width: 160px;
  }




}

@media (max-width:1366px) {
  .ganesha {
    bottom: 20px;
    width: 200px;
  }

  .ganesha-chakra {
    left: 0;
    right: 0;
    bottom: 188px;
    margin: 0 auto;
    z-index: 1;
    width: 165px;
  }

  .aasan {
    width: 470px;
  }

  .chakra1 {
    bottom: 375px;
  }

  .chakra2,
  .chakra4 {
    bottom: 280px;
  }

  .chakra5,
  .chakra3 {
    bottom: 105px;
  }

  /* .vert-card p {
  height: 250px !important;
} */
  .vert-card {
    min-width: 200px;
    max-width: 270px;
  }

  .verticals-section {
    height: 390px !important;
  }
}


@media(max-width:1024px) {

  .achieve-div,
  .website-div {
    margin-bottom: 56%;
  }
}

@media(max-width:768px) {

  .navbar {
    padding: 0px 5px;
    border-radius: 0;
    padding-top: 15px;
  }

  .navbar-brand img {
    width: 120px;
  }

  .navbar-toggler {
    /* border: 0;
    margin-left: 43%; */
    border: 0;
    /* margin-left: 0; */
    padding: 0;
  }

  .connect-mobile {
    position: absolute;
    top: 25px;
    right: 8%;
  }

  .connect-mobile .btn1 {
    padding: 6px 17px;
  }


  .navbar .btn1 {
    /* border-radius: 0; */
    padding: 5px 10px;
  }

  .btn1 .me-2 {
    margin-right: 10px !important;
  }

  /* .btns .btn-double-text {
    display: none;
  }
   */
  .navbar-nav .nav-link {
    padding: 10px;
  }

  .navbar-nav {
    margin-left: 0 !important;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .home-banner {
    min-height: 65vh;
  }

  .banner2,
  .banner3 {
    height: 65vh;
  }

  .chakra1 {
    bottom: 430px;
  }

  .chakra2,
  .chakra4 {
    bottom: 290px;
  }

  .chakra2 {
    right: 20%;
  }

  .chakra4 {
    left: 20%;
  }

  .cover-background {
    height: 200px !important;
  }

  .footer-txt {
    font-size: 15px;
  }

  .footer-btn {
    font-size: 14px;
  }

  .numbers,
  .numbers2 .numbers {
    font-size: 35px;
  }

  /* .inner-banner {
  height: 35vh;
} */

  .inner-banner .h1 {
    font-size: 28px;
    margin-top: 26%;
  }

  .inner-flower {
    bottom: 0;
  }

  .title1 {
    font-size: 35px;
  }


  .title-txt {
    font-size: 28px;
  }

  .temple-solution img {
    width: 30px;
    margin-right: 20px;
  }

  .temple-solution p {
    font-size: 12px;
  }

  .btn-dark {
    padding: 8px 20px;
    font-size: 12px;
  }

  .number1 {
    top: -25px;
    left: -25px;
    width: 70px;
  }

  .social-div {
    height: 220px;
  }

  .mail,
  .chat,
  .payment-card {
    width: 60px;
  }

  .icon-div {
    width: 180px;
    height: 80px;
  }

  .whatsapp-div {
    right: 9%;
    top: 21%;
  }

  .icon-div span {
    font-size: 12px;
  }

  .icon-div {
    font-size: 14px;
  }

  .hub-tabs .tab-content h4,
  .hub-tabs .tab-content p {
    text-align: center;
  }

  .hub-tabs .btns {
    text-align: center;
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .blog-read .btns {
    font-size: 12px;
    padding: 4px 19px !important;
  }

  .blog-read {
    float: unset;
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }


  .date {
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .blog-div p {
    text-align: center;
    font-size: 14px;
  }

  .connect-div h4 {
    font-size: 30px;
  }

  .slick-dots {
    bottom: -55px;
  }

  .achieve-div,
  .website-div {
    margin-bottom: 55%;
  }

  .top-nav .dropdown-menu li a {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 5px;
  }

  .top-nav .dropdown-menu {
    padding: 5px 15px;
    border: 0;
    background-color: transparent;
    box-shadow: none;
  }

  .dropend .dropdown-menu a {
    padding-left: 0;
  }

  .team-row .col-lg-3 {
    width: 33.33%;
  }

  .faq-div {
    padding: 48px 20px;
    height: 100px !important;
  }

  .add-info {
    margin-bottom: 30px;
    height: 170px !important;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form h4 {
    font-size: 28px;
  }

  .contact-heading {
    font-size: 28px;
  }

  .mandla-img {
    margin-bottom: 30px !important;
    width: 80% !important;
    display: block;
    margin: 0 auto;
  }

  .left-pad {
    padding-left: 0;
  }

  .mandla-sec h5 {
    font-size: 18px;
  }

  .mandla-sec .mt-5 {
    margin-top: 20px !important;
  }

  .mandla-sec .solutions-content {
    padding: 0;
  }

  .mandla-sec .solutions-tab .nav-link {
    margin-left: 0;
    margin-right: 20px !important;
    text-align: left;
  }

  .mandla-sec .ml-15 {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  .mandla-sec .list-style li {
    font-size: 14px;
  }

  .mandla-sec .mandal-title .title-txt {
    font-size: 28px;
  }

  .mandla-sec .mandal-title .title1 {
    font-size: 24px;
  }

  .io-benefits {
    margin-bottom: 30px !important;
  }

  .tc-content h4 {
    margin-top: 0 !important;
  }

  .tc-content {
    padding: 30px;
  }

  .home-tabs .tab-content h4 {
    font-size: 24px;
  }

  .verticals-section {
    height: 480px !important;
  }

  .key-focus-slider .slick-prev,
  .key-focus-slider2 .slick-prev,
  .solution_slider .slick-prev,
  .blog-slider .slick-prev {
    left: 40%;
  }

  .key-focus-slider .slick-next,
  .key-focus-slider2 .slick-next,
  .solution_slider .slick-next,
  .blog-slider .slick-next {
    right: 40%;
  }



  .key-focus-slider .slick-dots,
  .key-focus-slider2 .slick-dots,
  .solution_slider .slick-dots {
    display: none !important;
  }

  .yt-div {
    height: auto !important;
    margin-bottom: 0;
  }

  .mobile-mb2 {
    margin-bottom: 40px;
  }

  .enlarge-btn2 {
    top: 17%;
  }

  .slick-dotted.slick-slider {
    margin-top: 35px;
  }

  .pos-img,
  .our-services-img {
    margin-top: 30px;
  }

  .solutions-tab .nav-link {
    margin-right: 16px;
  }

  .diya-top {
    margin-top: -116px;
    width: 9%;
  }

  .timeline-nav__item {
    font-size: 14px;
  }

  /* .coming-song {
    margin-top: 60px;
} */

}




@media(max-width:576px) {
  .footer-logo img {
    width: 100px;
  }

  .footer-logo {
    position: relative;
    /* left: 0; */
    /* margin: 0 78px; */
    margin-bottom: 20px;
  }

  footer {
    padding: 0px 0 15px 0;
  }

  .footer-btn {
    margin-top: 13px;
    font-size: 14px;
    margin-left: 0;
  }

  .footer-txt {
    text-align: center;
    font-size: 20px;
  }

  .footer-menu {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer-menu-ul {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .footer-menu-ul li {
    margin-bottom: 8px;
  }

  .bottom-footer-ul li {
    width: 30%;
    text-align: center;
    margin-bottom: 10px;
    margin: 0;
    margin-bottom: 15px;
  }

  .bottom-footer-ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }


  /* New */

  .connect-mobile {
    right: 19%;
  }


  .chakra1,
  .chakra2,
  .chakra3,
  .chakra4,
  .chakra5 {
    width: 70px;
  }

  .aasan {
    width: 365px;
  }

  .home-banner {
    min-height: auto;
  }

  .chakra1 {
    bottom: 336px;
    left: 0;
  }

  .chakra2,
  .chakra4 {
    bottom: 235px;
  }

  .chakra2 {
    right: 14%;
  }

  .chakra4 {
    left: 14%;
  }

  .chakra5,
  .chakra3 {
    bottom: 105px;
  }

  .chakra5 {
    left: 5%;
  }

  .chakra3 {
    right: 5%;
  }

  .ganesha {
    width: 180px;
  }

  .banner2,
  .banner3 {
    height: auto;
    background-image: none;
  }

  .title1 {
    font-size: 28px;
  }

  .title-box img {
    width: 60%;
  }

  .verticals-section {
    height: auto !important;
    margin-bottom: 40px;
    padding-bottom: 120px !important;
  }

  .diya-left {
    left: 0;
    top: 0;
    width: 20%;
  }

  .diya-right {
    right: 0;
    top: 0;
    width: 20%;
  }

  .video-card .card-head::after {
    top: 30%;
    left: 40%;
    font-size: 35px;
  }

  .video-card .card-body {
    padding: 8px;
    font-size: 12px;
    text-align: center;
  }

  .home-tabs .nav-pills .nav-link {
    padding: 15px;
    font-size: 17px;
    height: auto;
  }


  .home-tabs .tab-content h4 {
    font-size: 24px;
    margin-top: 10px !important;
  }

  .home-tabs .tab-content p {
    font-size: 14px;

  }

  .tc-content {
    padding: 40px;
  }

  .cover-background {
    height: 300px !important;
  }

  .numbers,
  .numbers2 .numbers {
    font-size: 20px;
  }

  .number-text {
    font-size: 10px;
    margin-top: 10px;
  }

  .flwp-left {
    width: 100px;
    left: 0px;
    top: 0;
  }

  .flwp-right {
    width: 100px;
    right: 0px;
    top: 0;
  }

  p {
    font-size: 14px;
  }

  .ptb-80 {
    padding: 40px 0;
  }

  .vert-card {
    padding: 15px 20px;
  }

  .vert-card .vert-title {
    font-size: 16px;
  }

  .vert-card p {
    font-size: 13px;
    padding-bottom: 15px;
  }

  .vert-card img {
    width: 60px;
  }

  .inner-flower {
    width: 66px;
    bottom: -6px;
  }

  .inner-banner {
    height: 45vh;
  }

  .inner-banner .h1 {
    font-size: 16px !important;
    margin-top: 37%;
  }

  .breadcrumb {
    padding: 4px 18px;
    font-size: 10px;
    justify-content: center;
  }


  .certificate-div-mt {
    margin-top: 0 !important;
  }

  .certificate-div-mt2 {
    margin-top: 0;
  }


  .diya-top {
    display: none;
  }

  .certificate-div {
    border-radius: 15px;
    margin: 0;
    margin-bottom: 20px;
  }

  .p15-mobile {
    padding: 15px !important;
  }

  .blog-div {
    margin-bottom: 20px;
  }

  .timeline_star img {
    position: absolute;
    top: 0px;
    left: 14px;
  }

  .timeline_star h4 {
    font-size: 30px;
  }

  .timeline_star {
    padding-left: 60px;
    /* margin-top: 22px; */
    /* position: relative; */
  }

  .setup_inner .setup_item {
    padding: 0;
  }

  .setup_inner .setup_item .line {
    left: 0;
  }

  .setup_inner .setup_item:first-child .line {
    top: 43px;
  }

  .blog-read .btns {
    font-size: 10px;
    padding: 5px 10px !important;
  }

  .date {
    font-size: 9px;
  }

  .blog-div p {
    font-size: 12px;
  }

  .connect-mobile {
    top: 25px;
    right: 15%;
  }

  .connect-mobile .btn1 {
    padding: 6px 14px;
    font-size: 10px;
  }

  .computer-img,
  .devotee-img {
    /* width: 80% !important; */
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .number1 {
    top: -15px;
    left: 15px;
    width: 40px;
  }

  .title-txt {
    font-size: 28px;
  }

  .temple-solution p {
    font-size: 14px;
  }

  .temple-solution img {
    width: 30px;
  }

  .temple-solution {
    margin-bottom: 15px;
  }

  .btns {
    font-size: 10px;
  }

  .accordion-button {
    font-size: 14px;
    padding: 10px;
  }

  .accordion-body p {
    font-size: 12px;
    line-height: 20px;

  }

  .list-style li {
    font-size: 12px;
    line-height: 20px;
  }

  .icon-div {
    height: 80px;
    padding: 0 10px;
    width: auto;
  }

  .social-div {
    height: 204px;
  }

  .icon-div span {
    font-size: 12px;
  }

  .icon-div p {
    font-size: 14px;
  }

  .social-div {
    height: 170px;
    margin-top: 50px;

  }


  .hub-tabs img {
    width: 55%;
  }

  .hub-tabs .tab-content h4 {
    font-size: 24px;
    text-align: center;
    margin-top: 0 !important;
  }


  .hub-tabs .tab-content p {
    font-size: 14px;
    text-align: center;
  }

  .hub-tabs .tab-content p {
    margin: 20px 0;
    text-align: center;
  }

  .hub-tabs .btns {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .hub-tabs .nav-pills .nav-link {
    padding: 0 15px;
    font-size: 14px;
    height: 75px;
  }

  .cycle-tabs {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }

  .vert-card p,
  .vert-card .vert-title {
    height: auto;
  }

  .connect-form .modal-content {
    padding: 20px;
  }

  .connect-form h4 {
    font-size: 24px;
  }

  .home-banner-img,
  .banner2,
  .banner3 {
    height: auto;
    width: 100%;
  }

  .connect-form label {
    font-size: 11px;
  }

  .list-style {
    padding-left: 15px;
  }

  .solution-img {
    display: none !important;
  }

  .mt-mobile {
    margin-top: 10px !important;
  }

  .title-box {
    margin-bottom: 15px !important;
  }

  .trusts-slider .slick-dotted.slick-slider {
    margin-bottom: 30px;
  }

  .trusts-slider .slick-dots {
    margin-bottom: 10px;
  }


  /* Timeline */

  .timeline-slide__content {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .timeline-nav__item {
    margin: 17px 8px !important;
    font-size: 12px;

  }

  .timeline-text {
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .timeline-year {
    font-size: 16px;
    padding: 10px;
  }

  .solution_slider {
    margin-top: 30px;
  }

  .solutions-tab .nav-link {
    font-size: 16px;
    margin: 0 10px;
    text-align: center;
  }

  .solutions-tab {
    padding: 0 16px;
    display: flex;
    flex-wrap: nowrap;

  }

  .solutions-content {
    padding: 0 15px;
    padding-top: 25px !important;
  }

  .solutions-content p {
    font-size: 14px;
  }

  .team-row .col-lg-3 {
    width: 50%;
  }

  .profile-picture,
  .flip-container,
  .front,
  .back {
    height: 240px;
  }

  .profile-name {
    font-size: 16px;
  }

  .profile-title {
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 0px;
  }

  .flip-padding {
    padding: 20px 15px;
  }

  .flip-padding p {
    font-size: 13px;
  }

  .flip-padding h6 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .solutions-tab-add-ons,
  .solutions-content-add-ons {
    padding: 0 16px;
  }

  .solutions-content-add-ons img {
    margin-top: 20px
  }

  .faq-body h4 {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .faq-body {
    padding: 20px;
  }

  .accordion-button:not(.collapsed) {
    font-size: 14px;
    line-height: 22px;
  }

  .faq-modal .btn-close img {
    height: 28px;
    width: 28px;
  }

  .faq-modal .btn-close {
    right: 27px;
    top: 8px;
  }

  .blog-div .card-body {
    padding: 10px 8px;
  }

  .faq-div {
    padding: 30px 20px;
    height: 85px !important;
  }

  .faq-sec .mb-5 {
    margin-bottom: 25px !important;
  }

  .faq-div h4 {
    font-size: 14px;
  }

  .faq-div img {
    height: 20px;
    width: 20px;
  }

  .blog-heading {
    font-size: 18px;
    line-height: 28px;
  }

  .blog-slidebar-heading {
    font-size: 12px;
    line-height: 16px;
  }

  .blog-section {
    padding: 20px 0 70px;
    margin-top: 70px;
  }

  .blog-date {
    font-size: 12px;
    margin: 8px 0 20px 0;
  }

  .media-heading {
    font-size: 16px !important;
    line-height: 22px !important;
  }

  .media-txt {
    font-size: 12px !important;
    line-height: 20px !important;
  }


  /* contact */


  .add-info {
    padding: 40px 12px;
    height: 180px !important;
    margin-bottom: 20px;
  }

  .add-info h3 {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
  }

  .add-info p {
    font-size: 12px;
    line-height: 18px;
    text-align: center;
  }

  .contact-heading {
    text-align: center;
    font-size: 24px;
    line-height: 40px;
  }


  .contact-info {
    margin-top: 25px;
    margin-bottom: 0;
    justify-content: center;
  }

  .contact-info img {
    width: 60px;
    height: 60px;
  }

  .contact-txt h4 {
    font-size: 16px;
  }

  .contact-txt p {
    font-size: 12px;
  }

  .contact-form {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px 30px;
    margin-top: 30px;
  }

  .contact-form h4 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .video-div {
    margin-bottom: 30px;
  }

  .mt-7 {
    margin-top: 40px;
  }

  .gallery-item {
    display: inline-block;
    float: none;
    margin: 5px auto;
    width: 100%;
  }

  .io-benefits {
    margin-bottom: 30px;
  }

  .io-benefits p {
    font-size: 14px;
  }

  .io-benefits h3 {
    font-size: 16px;
  }

  .seva-ul li {
    font-size: 14px;
  }

  .mt-8 {
    margin-top: 40px !important;
  }

  .seva-contact h4 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .seva-contact {
    padding: 20px;
  }

  .faq-sec {
    margin-top: 95px;
  }

  .faq-sec img {
    top: 55px !important;
  }

  .faq-sec h1 {
    font-size: 22px;
  }

  .secure-div-mt {
    margin-top: 80px;
    margin: 30px;
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }

  .mandal-title .title-txt {
    font-size: 24px;
  }

  .mandal-title .title1 {
    font-size: 16px;
  }

  .mobile-mb2 {
    margin-bottom: 20px;
  }

  .hub-slider .vert-card {
    margin: 0 25px;
  }

  .secure-div h4 {
    font-size: 16px;
    margin-top: 20px;
  }

  .secure-div-mt h4 {
    margin: 20px 0 .5rem;
  }

  .blog-txt h3 {
    font-size: 16px;
  }

  .blog-txt h3 {
    font-size: 18Fpx;
  }

  .coming-song img {
    width: 100%;
    margin: 0 20px;
  }

  .contact-info2 .d-flex {
    justify-content: center;
  }

  .enlarge-btn2 {
    display: none !important;
  }

  .key-focus-slider .slick-next,
  .key-focus-slider2 .slick-next,
  .solution_slider .slick-next,
  .blog-slider .slick-next {
    right: 35% !important;
  }

  .key-focus-slider .slick-prev,
  .key-focus-slider2 .slick-prev,
  .solution_slider .slick-prev,
  .blog-slider .slick-prev {
    left: 35% !important;
  }

  .impact-section-slider {
    padding-bottom: 80px !important;
  }

  .trusts-slider .slick-list {
    padding-bottom: 20px !important;
  }

  .solution_slider_div {
    padding-bottom: 100px;
  }

  .solution_slider .slick-arrow {
    bottom: -75px;
  }

  .manpower-txt {
    font-size: 16px;
  }

  .yt-div {
    margin-bottom: 0;
    padding-bottom: 25px !important;
  }

  .timeline-nav__item.slick-current {
    font-size: 12px;
  }

  .blog-slider .slick-next {
    right: 30%;
  }


  .blog-slider .slick-arrow {
    bottom: -60px;
  }


}


@media(max-width:320px) {

  .navbar .btns {
    font-size: 12px;
  }

  .navbar .btn1 {
    padding: 2px 9px;
  }

  .home-banner {
    min-height: 60vh;
  }

  .banner2,
  .banner3 {
    height: 60vh;
  }

  .navbar-brand img {
    width: 90px;
  }

  .navbar-toggler-icon {
    width: 20px;
    height: 20px;
  }


}

.swal2-confirm {
  background-color: #182856;
  border-radius: 25px;
  color: #fff;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 14px;
  transition: .3s;
  position: relative;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}