@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=Heebo:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
   box-sizing: border-box;
   font-family: "Poppins", sans-serif;
}

body {
   overflow-x: hidden;
   font-size: 16px;
   line-height: 1.6;
   padding: 0px !important;
}



:root {
   --clr-dark: #000000;
   --clr-darklight: #111;
   --clr-textlight: #ddd;
   --clr-light: #999;
   --clr-white: #fff;
   --clr-primary: #008E77;
   --clr-secondary:#C4E0DC;
   --clr-gradient:linear-gradient(180deg, #008E77 0%, #002822 100%);
}

p {
   font-family: "Outfit", sans-serif !important;
   margin: 0px;
}


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%;
}

h1,h2,h3,h4,h5,h6{
    margin: 0px;
}


section{
   overflow: hidden;
}

/* 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 {
    background: var(--clr-primary);
    color: #fff;
    border: 0px;
    padding: 10px 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    transition: all 0.1s ease-in-out;
     
}

.ThemeBtn:hover{
   background-color: #00a589;
}

.search-box .ThemeBtn:after {
    content: url(../images/btn-arrow.svg);
}
/* Button end */


.custom-space {
   padding: 80px 0;
}

.secHead {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: auto;
    gap: 10px;
}


.secHead h5 {
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.secHead h2 {
    font-weight: 600;
    font-size: 35px;
    line-height: normal;
    font-family: "Heebo", sans-serif !important;
}




/* 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;
}



/* search-box css */

.search-box {
    display: flex;
    position: relative;
    align-items: center;
    width: 100%;
}

.search-box .ThemeBtn {
    position: absolute;
    right: 10px;
}

.search-box input {
    height: 60px;
    border-radius: 0px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 50px 0px #00000080;
}

.search-box input:focus{
    box-shadow: 0 0 50px 15px #C4E0DC !important;
    border-color: #ffffff00 !important;
}

footer {
    background: url(../images/footer-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.footer-text {
   color: #fff;
   font-weight: 300;
}

.copyright-div {
    color: #fff;
    position: absolute;
    bottom: 0px;
    width: 100%;
    padding: 10px 15px;
    background: #333333;
}

.copyright-div p{
    font-family: "Heebo", sans-serif !important;
}

.logo {
    text-align: center;
}

.logo img {
    max-width: 200px;
}

.social-links .social {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-links {
    border-bottom: 1px solid #ffffff21;
    padding-bottom: 30px;
}

.social-links .social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.social li a {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Heebo", sans-serif !important;
}

.footer-row {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modal-backdrop {
   backdrop-filter: blur(5px);
   background-color: rgba(20, 20, 20, 0.5);
   opacity: 1 !important;
}


.text-modal {
   text-align: center;
}

.btn-row {
   margin: 20px 0;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 30px;
}

.btn-row .ThemeBtn {
   width: 100px;
   background: var(--clr-white);
   color: var(--clr-dark);
}

.auth-img {
   width: 100%;
   max-width: 280px;
   margin: auto;
}

.modal-content {
   border-radius: 0px;
}

.modal-body{
   background: var(--clr-gradient);
}

.text-modal .secHead {
   color: var(--clr-white);
}

div.modal {
   height: 100vh;
   position: fixed;
   overflow: hidden;
   
}

footer{
   overflow: hidden;
}
