@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');


* {
   box-sizing: border-box;
   font-family: "Montserrat", sans-serif;
}

body {
   overflow-x: hidden;
   font-size: 16px;
   line-height: 1.6;
}



:root {
   --clr-dark: #040507;
   --clr-darklight: #111;
   --clr-textlight: #ddd;
   --clr-light: #999;
   --clr-white: #fff;
   --clr-primary: #27292B;
}

p {
   color: var(--clr-textlight);
}


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%;
}

/* Header css */

header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 9999;
   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-primary);
   box-shadow: 0 5px 10px rgb(0 0 0 / 50%);
   padding: 15px 0px !important;
}
.sticky-header img {
   width: 60px;
}
header .navbar {
   padding: 0;
}

.navbar-brand {
   padding: 0;
   display: flex;
   margin: 0;
}

/* .navbar-brand img {
   width: 100px;
} */

.topNav {
   display: flex;
   align-items: center;
   gap: 20px;
}

.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: #C2E4D6;
   height: 2px;
   border-radius: 10px;
   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-light);
}

/* side nav end */

/* Header css end */


/* 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: linear-gradient(0deg, rgb(0 35 105) 0%, rgb(62 131 255) 100%);
   font-size: 16px;
   letter-spacing: 1px;
   animation-duration: 1s;
   animation-fill-mode: both;
   animation-iteration-count: 1;
}

/* Button end */


.custom-space {
   padding: 80px 0;
}

.secHead {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
}

.secHead h2 {
   font-size: 40px;
   margin-bottom: 15px;
   position: relative;
   z-index: 1;
}

.headCenter {
   text-align: center;
   display: flex;
   flex-direction: column;
   align-items: center;
}

/* 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-primary);
   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 */

.BgBack {
   background-color: #ECECEC;
}
