
@import url('https://fonts.googleapis.com/css2?family=Red+Rose:wght@300;400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

* {
   box-sizing: border-box;
   font-family: 'Red Rose', serif;
}

body {
   overflow-x: hidden;
   font-size: 16px;
   line-height: 1.6;
   background: var(--clr-white);
   color: var(--clr-darklight);
}

h1,h2,h3,h4{
   font-weight: 700;
}


h2.series{
   font-family: 'Poppins', sans-serif;
   text-align: center;
}

.heading-part {
   position: relative;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   width: fit-content;
   margin: auto;
}

.heading-part:before {
   content: "";
   position: absolute;
   width: 110px;
   height: 3px;
   background-color: #ff0000;
   left: 0;
   bottom: 3px;
}

.heading-part:after{
   content: "";
   position: absolute;
   width: 20px;
   height: 20px;
   background-color: #ff0000;
   border-radius: 100%;
   right: -30px;

}

.heading-part.short:before {
   display: none;
}
.heading-part.short:after {
   display: none;
}

.heading-part h2{
   font-size: 50px;
}

.heading-part span {
   color: var(--clr-primary);
}




:root {
   --clr-dark: #040507;
   --clr-darklight: #111;
   --clr-textlight: #ddd;
   --clr-light: #999;
   --clr-white: #fff;
   --clr-primary: #DC9408;
   --clr-gradient:linear-gradient(90deg, #9CBC13 0%, #32A892 22.5%, #158CE5 48.5%, #947BA2 74%, #F87253 100%);
}

.container {
   position: relative;
   z-index: 2;
}

p {
   color: var(--clr-darklight);
}


a {
   transition: 0.3s ease-in-out;
   text-decoration: none;
   color: var(--clr-primary);
}

a:hover {
   text-decoration: none;
   color: var(--clr-secondary);
}

ul {
   margin: 0;
   padding: 0;
   list-style-type: none;
}

img {
   max-width: 100%;
}


.modal-backdrop {
   backdrop-filter: blur(5px);
   background-color: rgba(20, 20, 20, 0.5);
   opacity: 1 !important;
}

/* Header css */

header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 99;
   will-change: transform;
   transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s;
   transform: translateY(0);
}

.hide-nav {
   transform: translateY(-120%) !important;
   -webkit-transform: translateY(-120%) !important;
}

.sticky-header {
   background: var(--clr-darklight);
   box-shadow: 0 5px 10px rgb(0 0 0 / 50%);
}

header .navbar {
   padding: 0;
}

.navbar-brand {
   padding: 0;
   display: flex;
   margin: 0;
   opacity: 0;
}

.sticky-header.show-nav .navbar-brand {
   opacity: 1;
}

.navbar-brand img {
   width: 100px;
}

.topNav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   padding: 30px 0;
   /* width: 100%; */
}


.ToggleBtn-menu {
   display: flex;
   align-items: center;
   gap: 10px;
}

.ToggleBtn-menu h6 {
   margin: 0;
   font-size: 24px;
   font-weight: 500;
   text-transform: uppercase;
}

.ToggleBtn {
   border: 0;
   background: transparent;
   display: inline-flex;
   flex-direction: column;
   align-items: flex-end;
   gap: 6px;
   min-width: 50px;
}

.ToggleBtn span {
   display: block;
   width: 30px;
   background: var(--clr-white);
   height: 2px;
   transition: 0.3s ease-in-out;
}

.ToggleBtn span:nth-child(2) {
   width: 20px;
}

.ToggleBtn:hover span:nth-child(2) {
   width: 30px;
}

.ToggleBtn:hover span:first-child,
.ToggleBtn:hover span:last-child {
   width: 20px;
}

/* side nav */

.sidenav {
   position: fixed;
   top: 0;
   right: var(--sidenav_right, -300px);
   width: 300px;
   height: 100vh;
   transition: all 0.2s ease-in-out;
   z-index: 9999;
}

.sidenav-body {
   width: 100%;
   height: 100%;
   background: var(--clr-darklight);
   padding: 20px;
   box-shadow: 0 0 15px rgb(0 0 0 / 15%);
   display: flex;
   flex-direction: column;
   gap: 20px;
   position: relative;
   z-index: 2;
}

.sidenav-overlay {
   position: fixed;
   top: 0;
   right: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.8);
   z-index: 1;
   transition: all 0.3s ease-in-out;
   opacity: 0;
   visibility: hidden;
   backdrop-filter: blur(5px);
}

.sidenav.active {
   --sidenav_right: 0;
}

.sidenav.active>.sidenav-overlay {
   opacity: 1;
   visibility: visible;
}

.sidenav__btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 32px;
   aspect-ratio: 1;
   border: 1px solid var(--clr-white);
   cursor: pointer;
   background: transparent;
   color: var(--clr-white);
}

.sidenav__list {
   flex: 1;
   overflow: auto;
}

.sidenav__list .sidenav__link {
   padding: 10px 0;
   display: flex;
   color: var(--clr-white);
   text-transform: uppercase;
   font-weight: 600;
   font-size: 16px;
}

.sidenav__list .sidenav__link:hover,
.sidenav__list .sidenav__link.active {
   color: var(--clr-primary);
}

/* side nav end */


/* Header css end */


/* Form inputs */

.form-group {
   margin: 0 0 15px;
}

.form-control,
.form-select {
   border-radius: 30px;
   transition: all 0.3s ease-in-out;
   min-height: 44px;
   padding: 5px 20px;
   background: #DFDFDF !important;
   /* color: var(--clr-white) !important; */
   font-size: 14px;
}

.form-control:focus,
.form-select:focus {
   box-shadow: none;
   outline: none;
   border-color: var(--clr-primary);
}

.form-group>label {
   margin: 0 0 5px;
   font-size: 14px;
   font-weight: 600;
}

.form-group>label span {
   color: #ff0000;
}

.verify-box{
   position: relative;
}

.verify-box .verify-btn {
   position: absolute;
   top: 7px;
   right: 10px;
   border: 0px;
   background: transparent;
   font-family: 'Staatliches', sans-serif;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   font-size: 17px;
   color: var(--clr-primary);
}



/* Button */

.ThemeBtn {
   border: 0;
   padding: 5px 30px;
   border-radius: 30px;
   color: var(--clr-white);
   position: relative;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   min-width: 100px;
   min-height: 44px;
   background: var(--clr-primary);
   font-size: 16px;
   letter-spacing: 1px;
   animation-duration: 1s;
   animation-fill-mode: both;
   animation-iteration-count: 1;
}

.ThemeBtn.white{
   background: var(--clr-white);
   color: var(--clr-primary);
}

/* .ThemeBtn:hover {
   animation-name: rubberBand;
   color: var(--clr-white);
} */


@keyframes rubberBand {
   from {
      transform: scale3d(1, 1, 1);
   }

   30% {
      transform: scale3d(1.02, 0.75, 1);
   }

   40% {
      transform: scale3d(0.75, 1.02, 1);
   }

   50% {
      transform: scale3d(1, 0.85, 1);
   }

   65% {
      transform: scale3d(.95, 1, 1);
   }

   75% {
      transform: scale3d(1, .95, 1);
   }

   to {
      transform: scale3d(1, 1, 1);
   }
}



/* Button end */


.custom-space {
   padding: 100px 0;
}



/* scroll top */

#scrollTotop {
   display: flex;
   align-items: center;
   justify-content: center;
   position: fixed;
   bottom: 25px;
   right: -50px;
   cursor: pointer;
   width: 40px;
   height: 40px;
   border-radius: 100%;
   background: var(--clr-gradient);
   z-index: 99;
   box-shadow: 0 3px 10px rgb(0 0 0 / 15%);
   transition: all 0.3s ease-in-out;
   border: 0;
   outline: none;
}

#scrollTotop.showscroll {
   right: 25px;
   animation: beat 1.5s infinite alternate;
}

.ScrollArrow {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: 100%;
}

.ScrollArrow i {
   font-size: 20px;
   color: var(--clr-white);
}

/* scroll top */

.PageBanner {
   height: 300px;
   padding-top: 100px;
   position: relative;
   display: flex;
   align-items: center;
   overflow: hidden;
}

.PageBanner #canvas {
   height: auto;
}

.PageBanner:before {
   content: "";
   width: 100%;
   height: 100%;
   background: rgb(0 0 0 / 70%);
   position: absolute;
   top: 0;
   left: 0;
   z-index: 1;
}





/* footer */

footer{
   background-color: var(--clr-white);
}

.footer-content {
   color: var(--clr-white);
   background: var(--clr-gradient);
   background-size: 200% 200%;
   animation: gradient 10s ease infinite;
   padding: 160px 0 0;
}
 
 .about-footer {
   padding-right: 50px;
 }
 
 footer p {
   font-size: 14px;
   line-height: 28px;
   color: var(--clr-white);
   margin: 0 0 10px;
   font-weight: 300;
 }
 
 .about-footer .brandLogo {
   display: flex;
   align-items: center;
   gap: 10px;
   margin: 0 0 10px -10px;
 }
 
 .about-footer .brandLogo img {
   width: 100%;
   max-width: 200px;
}
 
 /* .about-footer .brandLogo .gif-logo {
   width: 60px;
   min-width: 60px;
 } */
 
 .footer-social {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 20px;
   padding-bottom: 15px;
 }
 
 .footer-social a {
   border-radius: 50px;
 }
 
 .footer-social a:hover{
   background: transparent !important;
   border: 2px solid #fff;
 }
 
 .footer-social a:hover img {
   filter: invert(1);
 }
 
 .footer-info h5 {
   font-size: 16px;
   margin: 0 0 15px;
   text-transform: uppercase;
 }
 
 .footer-nav {
   display: flex;
   flex-direction: column;
   gap: 5px;
 }
 
 .footer-nav a {
   color: var(--clr-white);
   font-size: 14px;
   font-weight: 300;
 }
 
 .footer-nav a:hover {
   opacity: 0.6;
 }
 
 .copyright {
   padding: 25px 0 15px;
   margin-top: 20px;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
 }
 
 .copyright p {
   margin: 0;
   font-size: 12px;
   text-align: center;
 }


 .footer-content .verify-btn {
   color: var(--clr-white);
   background: var(--clr-primary);
   border-radius: 50px;
   padding: 4px 8px;
   top: 5px;
}

img.footer-up {
   width: 100%;
   position: relative;
   z-index: 1;
   bottom: -75px;
   height: 100px;
}

.social-icons {
   display: flex;
   gap: 15px;
}


/* footer end */

#canvas {
   position: fixed;
   left: 0;
   right: 0;
   top: 0;
   width: 100%;
   height: 100%;
   display: block;
   z-index: 0;
}

/* keyframe */

.heart {
   animation: beat 1s infinite alternate;
}

/* Heart beat animation */
@keyframes beat {
   to {
      transform: scale(1.3);
   }
}


/* Other-Page-Banner */

.secondary-Banner {
   height: 70vh !important;
}

.secondary-Banner .banner-logo .brand-logo-img {
   max-width: 450px !important;
}

.secondary-Banner .banner-logo .banner.doll {
   right: 310px !important;
   top: -60px !important;
}