body {
 background-color:#fffcf8 !important
}
/*** Spinner Start ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
   transition: opacity .8s ease-out, visibility 0s linear .0s;
   visibility: visible;
   opacity: 1;
}
/*** Spinner End ***/


.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

h1, h2, h3, .h1, .h2, .h3 {
  font-weight: 400 !important;
}

h4, h5, h6, .h4, .h5, .h6 {
  font-weight: 600 !important;
  font-family: 'Open Sans', sans-serif !important;
}

.my-6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.wow,
.animated {
  animation-duration: 2s !important;
}


/*** Button Start ***/
.btn.btn-primary {
  border: 0;
}

.btn.btn-primary:hover {
  background: var(--bs-dark) !important;
  color: var(--bs-primary) !important;
}

.btn {
  font-weight: 600;
  transition: .5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 38px;
  height: 38px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}
/*** Button End ***/


/*** Navbar Start ***/
.nav-bar {
  background: var(--bs-light);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.navbar .navbar-nav .nav-link {
  padding: 10px 12px;
  font-weight: 600;
  font-size: 17px;
  transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
      display: block;
      visibility: hidden;
      top: 100%;
      transform: rotateX(-75deg);
      transform-origin: 0% 0%;
      transition: .5s;
      opacity: 0;
  }
  
  .navbar .nav-item:hover .dropdown-menu {
      transform: rotateX(0deg);
      visibility: visible;
      opacity: 1;
  }
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

#searchModal .modal-content {
  background-color: rgba(255, 255, 255, .95);
}
/*** Navbar End ***/


/*** Events Start ***/
.event .tab-class .nav-item a.active {
  background: var(--bs-primary) !important;
}

.event .event-img .event-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(212, 167, 98, 0.7);
  border-radius: 8px;
  transition: 0.5s;
  opacity: 0;
  z-index: 1;
}

.event .event-img:hover .event-overlay {
  opacity: 1;
}
/*** Events End ***/


/*** service start ***/
.service .service-item {
  position: relative;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-content::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  bottom: auto;
  background: var(--bs-primary);
  border-radius: 8px;
  transition: 1s;
}

.service-item:hover .service-content::after {
  height: 100%;
  opacity: 1;
}

.service-item .service-content-icon {
  position: relative;
  z-index: 2;
}

.service-item .service-content-icon i,
.service-item .service-content-icon p {
  transition: 1s;
}

.service-item:hover .service-content-icon i {
  color: var(--bs-dark) !important;
}

.service-item:hover .service-content-icon p {
  color: var(--bs-white);
}

.service-item:hover .service-content-icon a.btn-primary {
  background: var(--bs-white);
  color: var(--bs-dark);
}

.service-item .service-content-icon a.btn-primary {
  transition: 1s !important;
}
/*** Services End ***/


/*** Menu Start ***/
.menu .nav-item a.active {
  background: var(--bs-primary) !important;
}

.menu .menu-item .border-bottom {
  border-bottom-style: dashed !important;
}
/*** Menu End ***/


/*** Youtube Video start ***/
.video {
  position: relative;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(rgba(254, 218, 154, 0.1), rgba(254, 218, 154, 0.1)), url(../img/fact.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--bs-primary);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--bs-white);
  border-radius: 50%;
  transition: all 200ms;
}

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--bs-dark);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
  }

  100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #FFFFFF;
  background: #000000;
  opacity: 1;
}
/*** Youtube Video End ***/


/*** Blog Start ***/
.blog-item {
  position: relative;
}

.blog-item img {
  transition: 0.5s;
}

.blog-item:hover img {
  transform: scale(1.3)
}

.blog-item .blog-content {
  position: relative;
  transform: translateY(-50%);
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog-item .blog-content a.btn h5 {
  transition: 0.5s;
}

.blog-item:hover .blog-content a.btn h5 {
  color: var(--bs-primary) !important;
}
/*** Blog End ***/


/*** Team Start ***/
.team-item {
  width: 100%;
  height: 100%;
  position: relative;
}

.team-item .team-icon {
  position: absolute;
  top: 0;
  right: 0;
}

.team-item .team-icon .share-link {
  opacity: 0;
  transition: 0.9s;
}

.team-item:hover .share-link {
  opacity: 1;
}

.team-item .team-content {
  transition: 0.9s;
}

.team-item:hover .team-content {
  background: var(--bs-primary) !important;
  color: var(--bs-dark) !important;
}

.team-item .team-content h4,
.team-item .team-content p {
  transition: 0.5s;
}

.team-item:hover .team-content h4 {
  color: var(--bs-dark) !important; 
}

.team-item:hover .team-content p {
  color: var(--bs-white);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial-item {
  border: 1px solid var(--bs-primary);
  padding: 20px 20px;
}

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel.owl-rtl .testimonial-item {
  direction: ltr !important;
}
/*** testimonial End ***/


/*** Contact start ***/
.contact-form {
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

/*** Contact End ***/


/*** Footer Start ***/
.footer .footer-item a.text-body:hover {
  color: var(--bs-primary) !important;
}
/*** Footer End ***/


.text-pur{
  color: rgb(255, 25, 71);
  text-shadow:1px 1px 2px rgb(0, 0, 0),1px 1px 20px rgb(21, 247, 255);
}
.text-pure{
color: rgb(255, 25, 71);
text-shadow:1px 1px 2px rgb(0, 0, 0);
font-size: 40px;
}






/* Round Img Start */

.container11 {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-top: 100px;
-webkit-perspective: 1000px;
perspective: 1000px;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
overflow: hidden;
padding-bottom: 200px;
margin-bottom: -50px;
margin-top: 200px;
}
.nm{
text-align: center;
}
#drag-container, #spin-container {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin: auto;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: rotateX(-10deg);
transform: rotateX(-10deg);
}

#drag-container img, #drag-container video {
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
line-height: 200px;
border-radius: 10%;
font-size: 50px;
text-align: center;
-webkit-box-shadow: 0 0 8px #fff;
box-shadow: 0 0 8px #fff;
-webkit-box-reflect: below 10px linear-gradient(transparent, transparent, #0005);
}


#ground {
width: 900px;
height: 900px;
position: absolute;
top: 100%;
left: 50%;
-webkit-transform: translate(-50%,-50%) rotateX(90deg);
transform: translate(-50%,-50%) rotateX(90deg);
background: -webkit-radial-gradient(center center, farthest-side , #9993, transparent);
}

@-webkit-keyframes spinRevert {
from{
-webkit-transform: rotateY(360deg);
transform: rotateY(360deg);
} to{
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
}
}

/* Round Img End */



/*seconf font start*/

@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");

@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");

.content1 {
display: flex;
align-items: center;
justify-content: center;
font-family: "Poppins", sans-serif;
}

.content2 {
position: relative;
}

.content3 {
color: #fff;
font-size: 3em;
position: absolute;
transform: translate(-50%, -50%);
}

.content3:nth-child(1) {
color: transparent;
-webkit-text-stroke: 2px #8338ec;
}

.content3:nth-child(2) {
color: #fbff01;
animation: animate 2s ease-in-out infinite;
}

@keyframes animate {
0%,
100% {
  clip-path: polygon(
    0% 45%,
    16% 44%,
    33% 50%,
    54% 60%,
    70% 61%,
    84% 59%,
    100% 52%,
    100% 100%,
    0% 100%
  );
}

50% {
  clip-path: polygon(
    0% 60%,
    15% 65%,
    34% 66%,
    51% 62%,
    67% 50%,
    84% 45%,
    100% 46%,
    100% 100%,
    0% 100%
  );
}
}

/*second font end*/



/*Story Start*/

.btmm{
  margin-top: 10%;
}
.btmnew{
  margin-top: 10%;
}

@media only screen and (max-width: 600px) {
  .btmnew{
      margin-top: 50%;
  }

}


.section-title::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 3px;
  bottom: 11px;
  left: calc(50% - 80px);
  background: #d4a762;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 3px;
  bottom: 11px;
  right: calc(50% - 80px);
  background: #d4a762;
}
.container11 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 100px;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  overflow: hidden;
  padding-bottom: 200px;
  margin-bottom: -50px;
  }

/*Story End*/

.bt11{
  margin-top: 100%;
}


/***********Extra Design***********/

.bxs{
  box-shadow:
  0 1.7px 2.1px -10px rgba(0, 0, 0, 0.019),
  0 4.3px 5.2px -10px rgba(0, 0, 0, 0.027),
  0 8.9px 10.6px -10px rgba(0, 0, 0, 0.033),
  0 18.3px 21.9px -10px rgba(0, 0, 0, 0.041),
  0 50px 60px -10px rgba(0, 0, 0, 0.06);
  color:#d4a762;
}
/***********Bold***Shaking********/
.title1 {
font-size: 1.3rem;
text-align: center;
color: #020202;
text-shadow:1px 1px 1px #ff1bfb,
-1px -1px 1px #e5ff50,
1px -1px 1px #8338ec,
-1px 1px 1px #00fffb;
font-family: "Acme", sans-serif;
}
.mask {
font-size: 1.2rem;
color: var(--white-color);
position: relative;
font-family: "Alegreya Sans", sans-serif;
height: 100%;
z-index: 99;
opacity: 0;
display: grid;
grid-template-rows: 3fr 1fr;
transform: scale(0.3);
transition: transform 500ms ease-in-out, opacity 500ms ease-in-out;
}

.mask h2 {
grid-row: 2/3;
font-size: 2rem;
text-align: center;
animation: vibrate-2 500ms linear infinite both;
}

.mask h2:hover {
cursor: pointer;
animation: none;
text-shadow: 5px 5px 8px var(--primary-color),
-5px -5px 8px var(--primary-color);
}


/*****************************************/



/*Nav Start*/

.circle_nav1 {
  position: fixed;
  bottom: -1px;
  right: 0;
  left: 0;
  display: block;
  width: 5em;
  height: 5em;
  font: 500 14px/14px arial normal;
  margin: auto;
  z-index: 10;
  overflow:visible; 
  border-radius: 50%;
  }
  .circle_nav1 .hamburger1 {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 2;
      width: 60px;
      height: 60px;
      border-radius: 100%;
      background: #d4a762;
      color: white;
      text-align: center;
      box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.44);
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      margin: auto;
      line-height: 70px;
      margin-bottom: 6px;
  }
  .circle_nav1 .hamburger1 i { font-size: 22px; }
  .circle_nav1 .hamburger1:active, 
  .circle_nav1 .hamburger1:hover {
    box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.44);
    background: #d4a762;
  }
  .circle_nav1 a {
    color: white;
    text-decoration: none;
  }
  .circle_nav1.active .hamburger1 {
    box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.44);
    background: #d4a762;
  }
  .circle_nav1.active .menu1 {
    pointer-events: auto;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  
  .menu1{
    position: absolute;
    top: -55px;
    right: -165%;
    z-index: 0;
    width: 300px;
    height: 300px;
    -webkit-transform: scale(0.1);
    -ms-transform: scale(0.1);
    -moz-transform: scale(0.1);
    transform: scale(0.1);
    pointer-events: none;
    -webkit-transition: all .15s ease;
    -moz-transition: all .15s ease;
    transition: all .15s ease;
  }
  .menu1 > li:nth-of-type(1){
    -moz-transform: rotate(0deg) skew(50deg);
    -ms-transform: rotate(0deg) skew(50deg);
    -webkit-transform: rotate(0deg) skew(50deg);
    transform: rotate(0deg) skew(50deg);
  }
  .menu1 > li:nth-of-type(2){
    -moz-transform: rotate(35deg) skew(50deg);
    -ms-transform: rotate(35deg) skew(50deg);
    -webkit-transform: rotate(35deg) skew(50deg);
    transform: rotate(35deg) skew(50deg);
  }
  .menu1 > li:nth-of-type(2) > a,
  .menu1 > li:nth-of-type(4) > a{ background-color: #d85c32; }
  .menu1 > li:nth-of-type(3){
    -moz-transform: rotate(70deg) skew(50deg);
    -ms-transform: rotate(70deg) skew(50deg);
    -webkit-transform: rotate(70deg) skew(50deg);
    transform: rotate(70deg) skew(50deg);
  }
  .menu1 > li:nth-of-type(4){
    -moz-transform: rotate(105deg) skew(50deg);
    -ms-transform: rotate(105deg) skew(50deg);
    -webkit-transform: rotate(105deg) skew(50deg);
    transform: rotate(105deg) skew(50deg);
  }

  .menu1 > li:nth-of-type(5){
    -moz-transform: rotate(140deg) skew(50deg);
    -ms-transform: rotate(140deg) skew(50deg);
    -webkit-transform: rotate(140deg) skew(50deg);
    transform: rotate(140deg) skew(50deg);
  }
  .menu1 > li{
    position: absolute;
    bottom: 50%;
    right: 50%;
    font-size: 1.5em;
    width: 10em;
    height: 10em;
    -webkit-transform-origin: 100% 100%;
    -moz-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    overflow: hidden;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all 0.3s ease;
  }
  .menu1 > li a{
    position: absolute;
    bottom: -7.25em;
    right: -7.25em;
    display: block;
    height: 14.5em;
    width: 14.5em;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    padding-top: 0em;
    text-align: center;
    font-size: 1.18em;
    -webkit-transform: skew(-50deg) rotate(-70deg) scale(1);
    -ms-transform: skew(-50deg) rotate(-70deg) scale(1);
    -moz-transform: skew(-50deg) rotate(-70deg) scale(1);
    transform: skew(-50deg) rotate(-70deg) scale(1);
    -webkit-backface-visibility: hidden;
    -webkit-transition: opacity 0.3s, color 0.3s;
    -moz-transition: opacity 0.3s, color 0.3s;
    transition: opacity 0.3s, color 0.3s;
    background-color: #ec693d;
  }
  .menu1 > li a i, 
  .submenu > li a i { padding: 20px 15px 0 0; }
  .menu1 > li a:active, 
  .menu1 > li a:hover, 
  .submenu > li a:active, 
  .submenu > li a:hover { background-color: #bf4f29; }
  li, ul{
      display: block;
      margin:0;
      padding: 0;
  }

.logo1{
  width: 25%;
  margin-top: -70px;
  position: fixed;
  z-index: 99;
}
/*LOGO FOOTER STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-footer {
  position: fixed;
  right: 0;
  top: 5px;
  display: flex;
  align-items: center;
  padding: 5px;
  z-index: 1;
}

.page-footer a {
  display: flex;
  margin-left: 4px;
}
.txs{
  font-size: 15px;
}




/*Nav End*/




/* Move Img Strat */

.box{
  position: absolute;
  z-index: -2;
  border-radius: 1rem;
    box-shadow: 
    inset 0px 0px 0px 1px rgba(255, 255, 255, .1),
    inset 0px 0px 7px 1px rgba(255, 255, 255, .1),
    6px 6px 15px 0px rgba(0, 0 ,0, .4)
    ;
  animation-name: box-1-animation;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.box[data-variant="1"]{
  animation-name: box-1-animation;
  top: -2rem;
  left: -6rem;
  height: 6rem;
  width: 6rem;

}
.box[data-variant="2"]{
  animation-name: box-2-animation;
  animation-delay: -1s;
  animation-duration: 2s;
  top: 4rem;
  left: -6rem;
  height: 8rem;
  width: 14rem;
}
.box[data-variant="5"]{
  animation-name: box-5-animation;
  animation-delay: -1s;
  animation-duration: 2s;
  top: -10rem;
  left: -14rem;
  height: 8rem;
  width: 14rem;
}
.box[data-variant="3"]{
  animation-name: box-3-animation;
  animation-delay: -1s;
  animation-duration: 2s;
  top: -10rem;
  right: -8rem;
  height: 14rem;
  width: 8rem;
}
.box[data-variant="4"]{
  animation-name: box-4-animation;
  animation-delay: -1s;
  animation-duration: 2s;
  top: -2rem;
  right: 6rem;
  height: 14rem;
  width: 8rem;
}

.container3{
  height: 100vh;
  width: 70vw;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: 240px;
}
.bic{
 height: auto;
 width: auto;
 border-radius: 10%;
}
.biu{
 border-radius: 7%;
 height: 100%;
 width: auto;
}
.bia{
  height: 100%;
  width: 100%;
  border-radius: 7%;
}

.bg-container{
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  pointer-events: none;
}
@keyframes box-1-animation{
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes box-2-animation{
  0% {
    transform: translate(5rem , 0rem);
  }
  50%{
    transform: translate(0rem, 0rem);
  }
  100%{
    transform: translate(5rem, 0rem);
  }
}
@keyframes box-5-animation{
  0% {
    transform: translate(-5rem , 0rem);
  }
  50%{
    transform: translate(0rem, 0rem);
  }
  100%{
    transform: translate(-5rem, 0rem);
  }
}
@keyframes box-3-animation{
  0% {
    transform: translate(0rem , -5rem);
  }
  50%{
    transform: translate(0rem, 0rem);
  }
  100%{
    transform: translate(0rem, -5rem);
  }
}

@keyframes box-4-animation{
  0% {
    transform: translate(0rem , 5rem);
  }
  50%{
    transform: translate(0rem, 0rem);
  }
  100%{
    transform: translate(0rem, 5rem);
  }
}

.header8,.header8,.header9 {
text-align: center;
padding: 32px;
margin-bottom: -5%;
}

@media only screen and (max-width: 600px) {

.btmt{
  margin-top: -15%;
}

.container3{
  height: 55vh;
  width: 110vw;
  margin-left: -65px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.box{
  position: absolute;
  z-index: -2;
  border-radius: 1rem;
    box-shadow: 
    inset 0px 0px 0px 1px rgba(255, 255, 255, .1),
    inset 0px 0px 7px 1px rgba(255, 255, 255, .1),
    6px 6px 15px 0px rgba(0, 0 ,0, .4)
    ;
  animation-name: box-1-animation;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.box[data-variant="1"]{
  animation-name: box-1-animation;
  top: 0rem;
  left: 0rem;
  height: 6rem;
  width: 6rem;  
}
.box[data-variant="2"]{
  animation-name: box-2-animation;
  animation-delay: -1s;
  animation-duration: 2s;
  top: 6.5rem;
  left: -6rem;
  height: 6rem;
  width: 12rem;
}
.box[data-variant="5"]{
  animation-name: box-5-animation;
  animation-delay: -1s;
  animation-duration: 2s;
  top: -6.5rem;
  left: 0rem;
  height: 6rem;
  width: 12rem;
}
.box[data-variant="3"]{
  animation-name: box-3-animation;
  animation-delay: -1s;
  animation-duration: 2s;
  top: 0rem;
  right: -12.5rem;
  height: 12rem;
  width: 6rem;
}
.box[data-variant="4"]{
  animation-name: box-4-animation;
  animation-delay: -1s;
  animation-duration: 2s;
  top: -6rem;
  right: 0.5rem;
  height: 12rem;
  width: 6rem;
}

.bg-container{
  display: flex;
  align-items: center;
  justify-content: center;
    background: #000;
  position: absolute;
  pointer-events: none;
}
@keyframes box-1-animation{
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes box-2-animation{
  0% {
    transform: translate(0rem , 0rem);
  }
  50%{
    transform: translate(6rem, 0rem);
  }
  100%{
    transform: translate(0rem, 0rem);
  }
}
@keyframes box-5-animation{
  0% {
    transform: translate(0rem , 0rem);
  }
  50%{
    transform: translate(-6rem, 0rem);
  }
  100%{
    transform: translate(0rem, 0rem);
  }
}
@keyframes box-3-animation{
  0% {
    transform: translate(0rem , 0rem);
  }
  50%{
    transform: translate(0rem, -6rem);
  }
  100%{
    transform: translate(0rem, 0rem);
  }
}

@keyframes box-4-animation{
  0% {
    transform: translate(0rem , 0rem);
  }
  50%{
    transform: translate(0rem, 6rem);
  }
  100%{
    transform: translate(0rem, 0rem);
  }
}
}
/* Move Img End */



/* marquee start*/

.marquee2 {
min-height: 100vh;
}

.marquee2 {
--space: 2rem;

display: grid;
align-content: center;
overflow: hidden;
gap: var(--space);
width: 100%;
font-family: "Corben", system-ui, sans-serif;
font-size: 1.5rem;
line-height: 1.5;
}

.marquee {
--duration: 60s;
--gap: var(--space);

display: flex;
overflow: hidden;
user-select: none;
gap: var(--gap);
transform: skewY(-3deg);
}

.marquee__group {
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: space-around;
gap: var(--gap);
min-width: 100%;
animation: scroll var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
.marquee__group {
  animation-play-state: paused;
}
}

.marquee__group img {
max-width: clamp(10rem, 1rem + 28vmin, 20rem);
aspect-ratio: 1;
object-fit: cover;
border-radius: 1rem;
}

.marquee__group p {
background-image: linear-gradient(
  75deg,
  hsl(240deg 70% 49%) 0%,
  hsl(253deg 70% 49%) 11%,
  hsl(267deg 70% 49%) 22%,
  hsl(280deg 71% 48%) 33%,
  hsl(293deg 71% 48%) 44%,
  hsl(307deg 71% 48%) 56%,
  hsl(320deg 71% 48%) 67%,
  hsl(333deg 72% 48%) 78%,
  hsl(347deg 72% 48%) 89%,
  hsl(0deg 73% 47%) 100%
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-family:fantasy;
font-weight: bolder;
}

.marquee--borders {
border-block: 3px solid #d4a762;
padding-block: 0.75rem;
}

.marquee--reverse .marquee__group {
animation-direction: reverse;
animation-delay: calc(var(--duration) / -2);
}

@keyframes scroll {
0% {
  transform: translateX(0);
}

100% {
  transform: translateX(calc(-100% - var(--gap)));
}
}

/* marquee end*/

/* New Image start*/

.overflowHidden {
overflow: hidden;
}

.scene { 
width: 200px;
height: 200px;
perspective: 900px;
margin-top: 200px;
margin-bottom: 40px;
margin-left: auto;
margin-right: auto;
}

.cube {
position: relative;
transform-style: preserve-3d;
transform: translateZ(-100px);
animation: spin 10s linear 0s infinite forwards;

}

.cube-face {
width: 200px;
height: 200px;
color: rgba(41, 41, 41, 0.8);
border: 8px solid #d4a762;
position: absolute;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
text-transform: uppercase;
}

.front{
transform: translateZ(100px);
}

.back {
transform: rotateY(180deg) translateZ(100px);

}

.left {
transform: rotateY(-90deg) translateZ(100px);
}

.right{
transform: rotateY(90deg) translateZ(100px);
}

.top {
transform: rotateX(90deg) translateZ(100px);
}
.bottom {
transform: rotateX(-90deg) translateZ(100px);
}

@keyframes spin {
0% {
    transform: rotateY(0deg) rotateX(0deg);
}
50% {
  transform: rotateY(180deg) rotateX(180deg);
}
100% {
    transform: rotateY(360deg) rotateX(360deg);
}
} 

.im1{
height: 100%;
width: 100%;
}
/* New Image End */





/* Video Start */

.video-container {
width: 90%;
border-radius: 4px;
margin: 0 auto;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
box-shadow: 
inset 0px 0px 0px 1px var(--bs-primary),
inset 0px 0px 7px 1px var(--bs-primary),
4px 4px 1px 0px var(--bs-primary);
margin-top: 10%;
}
.video-wrapper {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
border-radius: 5%;
}
video {
width: 100%;
height: 100%;
border-radius: 5px;
}
.play-button-wrapper {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
pointer-events: none;

#circle-play-b {
cursor: pointer;
pointer-events: auto;

svg {
width: 100px;
height: 100px;
fill: #fff;
stroke: #fff;
cursor: pointer;
background-color: rgba(black, 0.2);
border-radius: 50%;
opacity: 0.9;
}
}
}



@media only screen and (max-width: 600px) {
.nnn1{
margin-top: 10%;
}
.video-container {
width: 90%;
border-radius: 4px;
margin: 0 auto;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
box-shadow: 
inset 0px 0px 0px 1px var(--bs-primary),
inset 0px 0px 7px 1px var(--bs-primary),
4px 4px 1px 0px var(--bs-primary);
margin-top: -4%;
}
.video-wrapper {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;  

}
video {
width: 100%;
height: 100%;
border-radius: 5px;    
}
.play-button-wrapper {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
pointer-events: none;
}
#circle-play-b {
cursor: pointer;
pointer-events: auto;

svg {
width: 100px;
height: 100px;
fill: #fff;
stroke: #fff;
cursor: pointer;
background-color: rgba(black, 0.2);
border-radius: 50%;
opacity: 0.9;
}
}
}

/* Video End */





/* Squar Images start */

.containerS{
min-height: 10vh;
display: grid;
place-content: center;
align-items: center;

}


.gallery3 {
--s: 250px; /* control the size */
--g: 10px;  /* control the gap */
--f: 1.5;   /* control the scale factor */
margin: 4%;
display: grid;
gap: var(--g);
width: calc(3*var(--s) + 2*var(--g));
aspect-ratio: 1;
grid-template-columns: repeat(3,auto);

margin-top: 10%;

}

.gallery3 > img {
  width: 0;
  height: 0;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: .35s linear;
 }

.gallery3 img:hover{
filter: grayscale(0);
width:  calc(var(--s)*var(--f));
height: calc(var(--s)*var(--f));
}

/* Media query for mobile devices */
@media only screen and (max-width: 600px) {
.header8,.header8,.header9 {
  text-align: center;
  padding: 32px;
  margin-bottom: -10%;
  }
.containerS{
 min-height: 10vh;
 display: grid;
 place-content: center;
 align-items: center;
 margin-right: 25px;

}
.gallery3{
 --s: 114px; /* control the size */
 --g: 10px;  /* control the gap */
 --f: 1.5;   /* control the scale factor */
 margin: 4%;
 margin-top: 10%;
 display: grid;
 gap: var(--g);
 width: calc(3*var(--s) + 2*var(--g));
 aspect-ratio: 1;
 grid-template-columns: repeat(3,auto);
}
.gallery3 > img {
  width: 0;
  height: 0;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: .35s linear;
}
.gallery3 img:hover{
 filter: grayscale(0);
 width:  calc(var(--s)*var(--f));
 height: calc(var(--s)*var(--f));
}
}


/* Squar Images end */




/* CountUp Start */

.timer1 {
text-align: center;
padding: 70px 50px;
margin-top: -90px;
}
#timer {
font-size: 3em;
color: #ff2793;
font-family: "Leckerli One", cursive;
font-weight: 400;
font-style: normal;
}
#timer div {
display: inline-block;
min-width: 90px;

}
#timer div span {
color: #000000;
display: block;
font-size: .35em;
font-weight: 700;
}

#since { 
color: #B1CDF1;
display: block;
font-size: .35em;
font-weight: 400;
padding-bottom: 10px;
text-shadow: 0 0 10px #48C8FF;

}
/* CountUp End */



.aaa3{
margin-left: auto;
margin-right: auto;
}

.logo3{
width: 200px;
margin-bottom: 50px;
} 







/* Language Start */

.language11{

font-size: 25px;
width: 5%;
height: 5%;
text-align: center;
}

@media only screen and (max-width: 600px) {
.language11{
  font-size: 25px;
  width: 14%;
  height: 5%;
  text-align: center;
}
}


/* Language End */


.overflow2 {
overflow: hidden;
}

.margintopn {
margin-top: 200px;
}

#about {
top: -250px;
}

.newtop{
margin-top: -140px;
}


.cardalign1 {
margin-top: -100px;
margin-bottom: 300px;
}
.cardalign2 {
margin-top: -100px;
}

.lineh {
line-height: 20px;
}

.nnn {
margin-top: -20px;
margin-bottom: 50px;
}

/********* Font Start ***********/

/* English */
/*(1)*/
.font-1 {
font-family: "Shrikhand", serif;
font-weight: 400;
font-style: normal;
}

/*(2)*/
.font-2 {
font-family: "Leckerli One", cursive;
font-weight: 400;
font-style: normal;
}

/*(3)*/
.font-3 {
font-family: "Italianno", cursive;
font-weight: 400;
font-style: normal;
}

/*(4)*/
.font-4 {
font-family: "Montez", cursive;
font-weight: 400;
font-style: normal;
}

/*(5)*/
.font-5 {
font-family: "Sarina", cursive;
font-weight: 400;
font-style: normal;
}

/*(6)*/
.font-6 {
font-family: "Sevillana", cursive;
font-weight: 400;
font-style: normal;
}



.hindi .heading {
text-align: center;
font-family: "Dekko", cursive;
font-weight: 400;
font-style: normal;
}

.hindi .lang {
text-align: center;
font-family: "Alkatra", system-ui;
font-optical-sizing: auto;
font-weight: 600;
font-style: normal;
}

/* Marathi */
/*(1)*/
.font-a {
font-family: "Amita", serif;
font-weight: 400;
font-style: normal;
}
.font-aa {
font-family: "Amita", serif;
font-weight: 700;
font-style: normal;
}

/*(2)*/
.font-b {
font-family: "Modak", system-ui;
font-weight: 400;
font-style: normal;
}

/*(3)*/
.font-c {
font-family: "Alkatra", system-ui;
font-optical-sizing: auto;
font-weight: 500;
font-style: normal;
}

/*(4)*/
.font-d {
font-family: "Alkatra", system-ui;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}

/*(5)*/
.font-e {
font-family: "Dekko", cursive;
font-weight: 400;
font-style: normal;
}

.font-f {
font-family: "Ranga", cursive;
font-weight: 400;
font-style: normal;
}
.font-ff {
font-family: "Ranga", cursive;
font-weight: 700;
font-style: normal;
}



.player__btn {
  color: #fff;
}

.hide {
  display: none;
}



/************************ Audio *******************************/


.box-shadow1 {
box-shadow: 
inset 0px 0px 0px 1px var(--bs-primary),
inset 0px 0px 7px 1px var(--bs-primary),
4px 4px 1px 0px var(--bs-primary);
}

.shd6 {
text-shadow:0px 1px 1px #000;
font-weight: 600;
}

.paran {
color: #000;
font-family: "Leckerli One", cursive;
font-weight: 400;
font-style: normal;
font-size: 1.2rem;
}
















    /*countup start*/

             /* Your existing CSS styles can go here */
             #wrapper {
                color: rgb(255, 0, 0);
                top: 50%;
                width: 100%;
                font-size: 15px;
                text-shadow: 1px 0.5px 1px var(--bs-primary);
                line-height: 1;
                margin-bottom: 120px;
            }
    
            #content {
                top: -35px;
                width: auto;
                height: 70px;
                text-align: center;
            }
    
            #counter {
                color: #cc00d7;
                letter-spacing: 0.2em;
                font-size: 25px;
                line-height: 1.5;
                text-rendering: optimizeLegibility;
                text-align: center;
                text-shadow: 1px 0.5px 1px var(--bs-primary);
                font-weight: 900;
            }

            #counter:hover {
              color: #ffffff;
            }
    
            .years, .months, .days {
                white-space: pre;
                font-size: 40px;
                text-align: center;
                height: 100%;
                width: 100%;
                color: rgb(255, 0, 0);
                letter-spacing: -2px;
                text-shadow: 2px 2px 1px var(--bs-primary);
            }

            .mkmk {
              color: crimson;
              font-size: 18px;
              margin-top: 20px;
          }
    
  
  /*end*/






















/*//////////////////////////////// Main Alignmenr /////////////////////////////////*/

/*(1)*/
@media (max-width: 975px) {
.footer22{
  margin-bottom: 35px;
}
.align-center {
  padding: 0 170px 0 170px;
}
.swiper44{
  margin-top: 350px;
}
.gallery3{
  --s: 200px; /* control the size */
  --g: 10px;  /* control the gap */
  --f: 1.5;   /* control the scale factor */
  margin: 4%;
  margin-top: 10%;
  display: grid;
  gap: var(--g);
  width: calc(3*var(--s) + 2*var(--g));
  aspect-ratio: 1;
  grid-template-columns: repeat(3,auto);
 }
 .margintop4 {
  margin-bottom: -30px;
}
.margintop5 {
  margin-top: 130px;
  margin-bottom: -20px;
}
.topnew2 {
  margin-top: -150px;
  margin-bottom: 0px;
}


.cardalign1 {
  margin-top: -100px;
  margin-bottom: 300px;
  left: -50px;

 }
.cardalign2 {
  margin-top: -100px;
  margin-bottom: 100px;
  left: -50px;
}

.container3{
  left: -85px;
}

}



/*(2)*/
@media (max-width: 750px) {
.footer22{
  margin-bottom: 35px;
}
.align-center {
  padding: 0 80px 0 80px;
}
.swiper44{
  margin-top: 350px;
}
.top-bottom-cube {
  margin-top: -30%;
  margin-bottom: -60%;
}
.gallery3{
  --s: 190px; /* control the size */
  --g: 5px;  /* control the gap */
  --f: 1.5;   /* control the scale factor */
  margin: 4%;
  margin-top: 10%;
  display: grid;
  gap: var(--g);
  width: calc(3*var(--s) + 2*var(--g));
  aspect-ratio: 1;
  grid-template-columns: repeat(3,auto);
 }
.margintop4 {
  margin-bottom: -30px;
}
.margintop5 {
  margin-top: 130px;
  margin-bottom: -20px;
}
.topnew2 {
  margin-top: -150px;
  margin-bottom: 0px;
}

.cardalign1 {
  margin-top: -150px;
  margin-bottom: 300px;
  left: -50px;
 }
.cardalign2 {
  margin-top: -150px;
  left: -50px;
  margin-bottom: -200px;
}


.container3{
  left: -100px;
}

}



/*(3)*/
@media (max-width: 670px) {
.swiper44{
  margin-top: 350px;
}
.footer22{
  margin-bottom: -30px;
}
.align-center {
  padding: 0 60px 0 60px;
}
.top-bottom-cube {
  margin-top: -20%;
  margin-bottom: -50%;
}
.top-bottom-cube {
  margin-top: -20%;
  margin-bottom: -50%;
}
.gallery3{
  --s: 150px; /* control the size */
  --g: 10px;  /* control the gap */
  --f: 1.5;   /* control the scale factor */
  margin: 4%;
  margin-top: 10%;
  display: grid;
  gap: var(--g);
  width: calc(3*var(--s) + 2*var(--g));
  aspect-ratio: 1;
  grid-template-columns: repeat(3,auto);
 }
 .margintop4 {
  margin-bottom: -30px;
}
.margintop5 {
  margin-top: 130px;
  margin-bottom: -20px;
}
.topnew2 {
  margin-top: -150px;
  margin-bottom: -20px;
}



.cardalign1 {
  margin-top: -150px;
  margin-bottom: 300px;
  left: -50px;
 }
.cardalign2 {
  margin-top: -150px;
  left: -50px;
  margin-bottom: -200px;
}

.lineh {
  line-height: 25px;
}


.container3{
  left: -110px;
}
}
@media (max-width: 600px) {
.container3{
  left: -30px;
}
}


/*(4)*/

@media (max-width: 530px) {
.swiper44{
  margin-top: 300px;
}
.footer22{
  margin-bottom: -40px;
}
.align-center {
  padding: 0 50px 0 50px;
}
.scene {
  width: 99%;
  height: 400px;
  padding: 70% 0 60% 0;
  overflow: hidden;
  margin-top: 0px;
}
.top-bottom-cube {
  margin-top: -20%;
  margin-bottom: -50%;
}
.margintop4 {
  margin-bottom: -30px;
}
.margintop5 {
  margin-top: 130px;
  margin-bottom: -20px;
}
.topnew2 {
  margin-top: -150px;
  margin-bottom: 100px;
}



.cardalign1 {
  margin-top: -150px;
  margin-bottom: 300px;
  left: -50px;
 }
.cardalign2 {
  margin-top: -150px;
  left: -50px;
  margin-bottom: -200px;
}

.lineh {
  line-height: 20px;
}

.container3{
  left: -20px;
}

}



/*(5)*/
@media (max-width: 460px) {
.swiper44{
margin-top: 300px;
}
.footer22{
margin-bottom: 10px;
}
.margintop3{
margin-top: 150px;
}
.align-center {
padding: 0 0 0 0;
}
.scene {
width: 99%;
height: 400px;
padding: 70% 0 60% 0;
overflow: hidden;
margin-top: 0px;
}
.top-bottom-cube {
margin-top: -10%;
margin-bottom: -30%;
}
.lasttext {
font-size: 2.3rem;
margin-top: -10%;
}
.gallery3{
--s: 114px; /* control the size */
--g: 10px;  /* control the gap */
--f: 1.5;   /* control the scale factor */
margin: 4%;
margin-top: 10%;
display: grid;
gap: var(--g);
width: calc(3*var(--s) + 2*var(--g));
aspect-ratio: 1;
grid-template-columns: repeat(3,auto);
}
.margintop4 {
margin-bottom: -30px;
}
.margintop5 {
margin-top: 130px;
margin-bottom: -20px;
}
.topnew2 {
margin-top: -150px;
margin-bottom: 100px;
}


.abcd1{
position:absolute;
width: 200px;
 height: 260px;
text-align: center;
}
.abcd2{
  position:absolute;
  width: 200px;
   height: 260px;
  text-align: center;
  }

  .cardalign1 {
    margin-top: -150px;
    margin-bottom: 220px;
    left: -40px;
   }
  .cardalign2 {
    margin-top: -150px;
    left: -40px;
    margin-bottom: -200px;
  }
  .lineh {
    line-height: 0;
  }
  .cen{
    margin-left: 30%;
    }

    .container3{
      left: -5px;
    }

}


.logo3 {
width: 40%;
margin-bottom: -0px;
}

.text3 {
font-size: 2.8rem;
}

@media only screen and (max-width: 600px) {

.logo3 {
  width: 60%;
  margin-bottom: -5px;
}
}

.fontsize {
font-size: 15px;
}











/* Hide slide content initially */
.slide-content {
display: none;
}

.bounce {
position: absolute;
top: 50%; left: 50%;
width: 40px; height: 40px;
margin-top: 80px;
background: transparent; border-radius: 50%;
transform: translate(-50%,-50%); }

.bounce:before {
content: '';
position: absolute; z-index: 10;
width: 100%; height: 100%;
background: var(--bs-primary);
border-radius: 50%;
box-shadow: inset 0 -10px rgba(0,0,0,0.1);
animation: bounce 0.75s infinite linear; }

.bounce:after {
content: '';
position: absolute;
width: 100%; height: 100%;
background: rgba(0,0,0,0.1); border-radius: 50%;
transform: scale(1,0.25);
animation: bounceshadow 0.75s infinite linear; }

@keyframes bounce {
0% { transform: translate(0,-50%) scale(1,0.8); }
30% { transform: translate(0,-250%) scale(0.8,1); }
60% { transform: translate(0,-300%) scale(0.8,1); }
85% { transform: translate(0,-50%) scale(0.8,1); }
88% { transform: translate(0,-50%) scale(0.8,1); }
95%, 100% { transform: translate(0,-50%) scale(1,0.8); }
}

@keyframes bounceshadow {
0% { transform: scale(1,0.25) }
30% { transform: scale(1.5,0.25) }
60% { transform: scale(2,0.25) }
85% { transform: scale(1,0.25) }
90% { transform: scale(1,0.25) }
100% { transform: scale(1,0.25) }
}
















.container-last-x {
background-color: var(--bs-dark); /* black bg */
color: #fff;
padding: 40px 20px;
text-align: center;
font-family: 'Segoe UI', sans-serif;
}

.flex-x {
display: flex;
justify-content: center;
align-items: center;
gap: 12px;
flex-wrap: wrap;
margin: 10px 0;
}

.btn-x {
background-color: #1f1f1f;
border: 1px solid #555;
color: #fff;
padding: 10px 18px;
margin: 5px;
border-radius: 30px;
cursor: pointer;
font-size: 16px;
transition: 0.3s ease;
}

.btn-x:hover {
background-color: #333;
color: #0f0;
}

.text-1 {
font-size: 30px;
font-weight: 500;
color: var(--bs-primary);
display: inline-block;
margin: 8px 0;
}

.text-2 {
font-size: 16px;
color: #ccc;
}

.text-2 i {
margin-right: 6px;
color: var(--bs-light);
}

.text-3 {
font-size: 17px;
color: #ffffff;
margin-top: 20px;
}

.logo7 {
width: 100px;
height: auto;
border-radius: 12px;
margin-right: 10px;
}

a.flex-x {
text-decoration: none;
color: var(--bs-primary);
transition: 0.3s ease;
}

a.flex-x:hover {
color: #fff;
}



@media only screen and (max-width: 600px) {
.text-1 {
  font-size: 20px;
}  
.logo7 {
  width: 90px;
}
}


.x-x {
font-size: 25px;
}




.f-1 {
font-family: "Engagement", cursive;
font-weight: 400;
font-style: normal;
}

.f-2 {
font-family: "Leckerli One", cursive;
font-weight: 400;
font-style: normal;
}

.f-3{
font-family: "Volkhov", serif;
font-weight: 700;
font-style: normal;
}

.f-4 {
font-family: "Volkhov", serif;
font-weight: 400;
font-style: italic;
}

.f-5 {
font-family: "Bodoni Moda", serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}

.f-6 {
font-family: "Josefin Sans", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}

.f-7 {
font-family: "Roboto Slab", serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}


.image-x {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}



.max-width-set {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.main-image {
  width: 200px;
  border-radius: 5px;
}

.margin-top-last {
  margin-top: -50px;
}

.grid-section {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.top-section-only {
  margin-top: -150px !important;
}

.main-bar {
  margin-left: auto;
  margin-right: auto;
  margin: 15px;
}

/* Top header bar */
.top-header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffffdc;               /* Needed so content doesn’t overlap */
  border-bottom: 1px solid #eee;  /* Subtle bottom border */
  box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Nice shadow */
  z-index: 1000;                  /* Keeps header above content */
  border-radius: 25px;
}

.top-header-main {
  transition: top 0.4s ease-in-out;
}

.hide-header {
  top: -100px;   /* moves header up out of view */
}


/* Logo */
.top-header-main .logo2 {
  height: 45px;   /* adjust to fit nicely */
}

/* Social icons container */
.social-icons {
  display: flex;
  gap: 20px;      /* spacing between icons */
}

/* Social icons */
.social-icons a {
  font-size: 28px;
  transition: 0.3s;
}

.social-icons .fa-whatsapp { color: #25d366; }
.social-icons .fa-instagram { color: #E4405F; }
.social-icons .fa-facebook { color: #1877f2; }

/* Hover effect */
.social-icons a:hover {
  transform: scale(1.2);
  opacity: 0.8;
}
 


/* Social icons container */
.social-icons-x {
  text-align: center;
  gap: 20px;      /* spacing between icons */
}

/* Social icons */
.social-icons-x a {
  font-size: 34px;
  transition: 0.3s;
  padding: 5px;
}

.social-icons-x .fa-whatsapp { color: #25d366; }
.social-icons-x .fa-instagram { color: #E4405F; }
.social-icons-x .fa-facebook { color: #1877f2; }

/* Hover effect */
.social-icons-x a:hover {
  transform: scale(1.2);
  opacity: 0.8;
}



.grid-buttons h1 {
  font-family: "Roboto Slab", serif;
  margin-bottom: 20px;
  color: var(--bs-primary);
  font-size: 25px !important;
  padding: 0 20px;
  text-shadow: 0 1px 1px #000000a1;
}



@media only screen and (max-width: 600px) {
/* Top header bar */
.top-header-main {
  margin: 5px;
}
.main-image {
  width: 90%;
}

.hide-slide {
  display: none;
}
}

@media only screen and (max-width: 768px) {
.hide-slide {
  display: none;
}
.grid-buttons button {
  display: none;
}
}