:root {
  --primary-color: linear-gradient(49.81deg, #063e41 16.76%, #018751 22.87%);
  --secondary-color: #121212;
  --green:#087657;
  --text-color: #4d4d4d;
  --placholder: #646464;
  --head-font: 30px;
  --subHead-font: 26px;
  --headDesc-font: 15px;
  --headDesc-font-mob: 13px;
  --bg-cta: #087657;
  --bullet-color: rgba(179, 223, 211, 1);
  --text-font: 14px;
  --wrap-space: 70px;
  --sec-space-filled: 100px 0;
  --sec-space: 120px 0;
  --border-hover: #087657;
}
*,
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter;
  font-weight: 400;
}

textarea::-webkit-scrollbar {
  width: 6px; /* Width of the scrollbar */
}
.buttonsWrapper img {

cursor: pointer;
}



textarea::-webkit-scrollbar-track {
  background: #f0f0f0; /* Background of the scrollbar track */
  border-radius: 4px;
  transform: translateX(-4px)

}

textarea::-webkit-scrollbar-thumb {
  background: #087657;
  /* Color of the scrollbar thumb */
  border-radius: 4px;
}

textarea::-webkit-scrollbar-thumb:hover {
  background: #087657;
  /* Darker color when hovered */
}

.session_links {
  position: absolute;


  min-width: 121px;
    background: #fff;
    border-radius: 9px;
    border: 1px solid rgba(179, 223, 211, 1);
}
.sessionLogin {
  border-bottom: 1px solid rgba(179, 223, 211, 1);
}
.session_links a {
  display: flex;
  padding: 10px;
}
.login-new,
.signup-new {
  color: #121212 !important;
  font-size: 14px;
  font-weight: 500;
}

.login-new:hover {
  background: #E1F8F0;
  color: #087657 !important;
  border-radius: 10px 10px 0px 0px;
}

.signup-new:hover {
  background: #E1F8F0;
  color: #087657 !important;
  border-radius: 0px 0px 10px 10px;
}

.newLoginBtn .session-wraper.userMenu {
  position: relative;
  top: 8px;
  right: 90px;
}

.newLoginBtn:hover .session-wraper.userMenu {
  visibility: visible;
  opacity: 1;
 
}


.session-wraper.userMenu {
  max-width: 125px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease all;
}
.session-wraper {

}
.session_links ul li:first-child {
  border-radius: 10px 10px 0 0;
}

.session_links ul li {
  display: block;
  list-style: none;
  border-bottom: 1px solid #CEE4FD;
}
.session_links ul li:first-child a {
  border-radius: 9px 9px 0px 0px;
}

.session_links ul li a {
  font-size: 14px;
  font-weight: 450;
  line-height: 19px;
  padding: 10px 15px;
  color: #01305C;
  display: flex
;
  align-items: center;
  column-gap: 15px;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.modalOverlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: block;
  transition: 0.3s;
  backdrop-filter: blur(4px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
}
a,
button {
  outline: none;
  cursor: pointer;
  text-decoration: none;
}
.secTitle h2 span,
.secTitle h1 span {
  background: var(--primary-color);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.secTitle h1 {
  font-size: var(--head-font);
  text-align: center;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 39px;
  color: var(--secondary-color);
}
.secTitle h2 {
  font-size: var(--subHead-font);
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 39px;
  color: var(--secondary-color);
}
.secTitle p {
  font-size: var(--headDesc-font);
  font-weight: 400;
  line-height: 18.15px;
  text-align: center;
  color: var(--text-color);
}

.ctaBtn {
  background-color: var(--bg-cta);
  display: flex;
  align-items: center;
  justify-content: center;
}
.secWraper {
  padding-top: var(--wrap-space);
}
.navlink {
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  line-height: 16.94px;
  color: rgba(18, 18, 18, 1);
}
/* .navlink:before {
  content: "";
  width: 24px;
  height: 1.5px;
  border-radius: 15px;
  background: #fff;
  position: absolute;
  bottom: 16px;
}

.navlink:hover:before {
  width: 100%;
} */

.navlink {
  position: relative;
}
.navlink::before {
  content: "";
  width: 0;
  height: 0.5px;
  border-radius: 15px;
  background: #fff;
  position: absolute;
  bottom: -3px;
  transition: width 0.2s;
}

.navlink.active::before {
  background: #087657; /* New background color */
}
.navlink:hover::before {
  width: 100%;
  transition: width 0.2s;
}
/* header */

header {
  position: fixed;
  top: 0;
  padding: 21px 0;
  background: transparent;

  z-index: 11;
  width: 100%;
  transition: all 0.2s ease;
}

header.scrolled {
  padding: 20px 0px;
  background: #ffffff;
  box-shadow: 0px 4px 6.5px 0px #00000008;
  transition: all 0.2s ease;
}
.navBar-wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}
.loginBtn {
  border-radius: 6px;
  height: 39px;
  width: 80px;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.94px;
  color: #fff;
}
.navbar-collapse ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
.burgerMenu {
  display: none;
}
.closeIcon {
  display: none;
}

/* footer */
.footer-logo {
  padding: 20px 0px 0px 0px;
}

.footer-content {
  text-align: center;
}
.footer-Lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  gap: 42px;

  margin: auto;
}

footer {
  background: #fafffd;
  padding-top: 40px;
}
.footer-Lists-parent {
  border-bottom: 1px solid #e7f5f1;
  padding: 20px 0px;
}

.end-footer {
  display: flex;
  justify-content: center;
  padding: 20px 0px;
}

.footer-Lists li a {
  font-size: 14px;
  color: #121212;
  font-weight: 400;
  line-height: 26px;
}

.footer-Lists li a:hover {
  text-decoration: underline;
  color: var(--bg-cta);
}

.end-footer p {
  font-size: 12px;
  color: #585858;
  line-height: 26px;
  font-weight: 400;
}

.end-footer img {
  margin-right: 11px;
}
.displayOnMob {
  display: none;
}
#lgout {
  color: #121212 !important;
  justify-content: center;
  font-size: 14px;
    font-weight: 500;
}

#lgout:hover {
 background: #E1F8F0;
 border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .navbar-collapse ul li a {
    color: #121212 !important;
  }
  .navbar-header a img {
    height: 21px;
  }

  .loginBtnNavparent {
    display: flex;
    justify-content: center;
  }
  .loginBtnNav {
   
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
  
    background: #087657;
  }

.logoutBtnNav {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;

  background: #087657;
}
#logoutTextNav {
  color: #fff !important;
}


  #loginTextNav {
    color: #fff !important;
  }
  .displayOnMob {
    display: block;
    margin-top: 10px;
  }
  header.scrolled {
    padding: 12px 0px;
    background: #ffffff;
    box-shadow: none;
    transition: all 0.2s ease;
  }

  .navbar-collapse ul {
    list-style: none;
    display: block;
    text-align: start;
  }
  .session_links {
    margin-top: 18px;
    margin-left: 121px;
  }
  .displayOnDesk {
    display: none;
  }
  .closeIcon {
    display: flex
    ;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 10px;
  }
  .overLay {
    position: fixed;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.65);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .overLay.show {
    pointer-events: all;
    opacity: 1;
    transition: all 0.3s ease;
  }

  .navbar-collapse ul li {
    padding: 10px 0px;
    /* border-bottom: 1px solid #EAF6EB; */

  }

  .navbar-collapse ul li:nth-child(1),
.navbar-collapse ul li:nth-child(2) {
  border-bottom: 1px solid #EAF6EB;
}

  .navbar-content {
    position: fixed;
    display: block;
    top: 0;
    right: 0;
    width: 280px;
    background-color: #fff;
    height: 100vh;
    z-index: 1000;
    transition: all 0.3s ease;
    transform: translateX(280px);
    text-align: right;
    padding: 35px 20px;
  }

  .navbar-content.showMenu {
    position: fixed;
    display: block;
    top: 0;
    right: 0;
    width: 280px;
    background-color: #fff;
    height: 100vh;
    z-index: 1000;
    transition: all 0.3s ease;
    transform: translateX(0px);
    text-align: right;
    padding: 35px 20px;
  }
 
  .burgerMenu {
    display: block;
    z-index: 999;
  }

  /* footer */
  .footer-Lists {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    /* row-gap: 14px; */
    justify-content: center;
    max-width: 811px;
    margin: auto;
    /* gap: 13px; */
    gap: 0px;
    column-gap: 22px;
    row-gap: 14px;
  }
  .footer-Lists li a {
    font-size: 13px;
    color: #121212;
    font-weight: 400;
    line-height: 26px;
  }
  .end-footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
    flex-direction: column;
    gap: 10px;
  }
}
