@import url("https://fonts.googleapis.com/css2?family=Fira+Sans: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&family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  font-size: 16px;
}
body {
  position: relative;
  background: #00212b;
  font-family: "Fira Sans", sans-serif;
  overflow-x: hidden;
}
:root {
  --white: #ffffff;
  --black: #000;
  --theme-color: #479e1d;
  --primary: #bde37a;
  --para-color: #5a5a5a;
  --dark: #01242e;
}
::selection {
  background: var(--theme-color);
  color: var(--white);
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--primary);
}
::-webkit-scrollbar-thumb {
  background: var(--theme-color);
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(0 0 0 / 0.8);
}
p {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.67;
  margin-bottom: 2rem;
  color: #739399;
  font-family: "Fira Sans", sans-serif;
}
h1,
h2,
h3,
h4 {
  font-family: "Fira Sans", sans-serif;
}
.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
figure {
  margin: 0;
}
section {
  padding: 5rem 0;
  position: relative;
}
.swiper-button-next,
.swiper-button-prev {
  border: 1px solid #fff;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: var(--theme-color);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
  color: var(--white);
}
.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  transition: all 0.3s ease;
  border-radius: 20px;
}
.swiper-pagination-bullet-active {
  width: 25px;
}
.swiper-slide-shadow-left {
  display: none;
}
.swiper-slide-shadow-right {
  display: none;
}
.swiper-pagination-bullet-active {
  background-image: var(--primary);
}
/* loader */

.loader-wrap span {
  overflow: hidden;
  display: block;
}
.loader-wrap {
  position: fixed;
  z-index: 9999;
  height: 100vh;
  width: 100vw;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.loader-wrap svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 110vh;
  fill: var(--primary);
}
.loader-wrap .loader-wrap-heading h2 {
  font-size: 50px;
  z-index: 20;
  color: var(--dark);
  text-transform: uppercase;
}
body:not(.home) .loader-wrap {
  display: none;
}
/* loader */

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  z-index: 10000001;
  background-color: var(--theme-color);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.cursor-inner:before {
  content: "Click Me";
  width: 100%;
  height: 100%;
  position: absolute;
  font-size: 1rem;
  top: 8px;
  left: 2px;
  display: flex;
  border-radius: 100%;
  opacity: 0;
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.cursor-inner.active::before {
  opacity: 1;
  top: 0;
}
.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 50px;
  height: 50px;
  background-color: var(--theme-color);
  opacity: 0.3;
}
.cursor-inner.cursor-hover.active {
  margin-left: -40px;
  margin-top: -40px;
  width: 120px;
  height: 120px;
  opacity: 1;
  background-color: #53be8470;
}
/* Cursor End */

/* btn css */

.themeBtn {
  background: var(--primary);
  padding: 8px 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.63;
  color: var(--dark);
  display: inline-flex;
  border: none;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  align-items: center;
  gap: 6px;
  font-family: "Noto Sans JP", sans-serif;
}
.themeBtn:before,
.themeBtn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 5px;
  transition: transform 0.4s ease, background-color 0.4s ease;
}
.themeBtn:before {
  background: #fff;
  transform: scaleX(0);
  transform-origin: right center;
}
.themeBtn:after {
  background: #000;
  transform: scaleX(0);
  transform-origin: left center;
}
.themeBtn:hover {
  color: var(--white);
  transform: scale(1.05);
}
.themeBtn:hover:before {
  transform: scaleX(1);
}
.themeBtn:hover:after {
  transform: scaleX(1);
}
/* btn css */

.reveal {
  visibility: hidden;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.reveal img {
  width: 100%;
}
/* Begin: Header CSS */

/* Header Css */

.main-header {
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}
/* .main-header:before {
	content: '';
	position: absolute;
	top: 0;
	width: 100%;
	background-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0) 100%);
	height: 100%;
	z-index: -1;
} */
header {
  width: 100%;
  transition: all 0.3s ease;
  background: var(--dark);
  position: fixed;
  top: 0;
  z-index: 99;
}
header.fixed.sticky {
    backdrop-filter: blur(4px);
    background: #00212b;
    padding: 0;
    box-shadow: 0 10px 20px #00222c;
}

header.fixed.sticky .main-header {
    padding: 0;
}
/* Hamburger Menu */

.menu-Bar {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0px;
  margin: auto;
  z-index: 22;
  display: none;
}
.menu-Bar span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--theme-color);
  position: absolute;
  transition: 0.6s all;
  border-radius: 100px;
}
.menu-Bar span:nth-child(1) {
  top: 0;
}
.menu-Bar span:nth-child(2) {
  top: 8px;
  transform-origin: left;
}
.menu-Bar span:nth-child(3) {
  top: 16px;
}
.menu-Bar.open span {
  background: #b70404;
}
.menu-Bar.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
  transform-origin: right-center;
}
.menu-Bar.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.menu-Bar.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 12px;
  transform-origin: right-center;
}
/* Menu Css */

.menuWrap .menu {
  display: flex;
  align-items: center;
  flex-direction: initial;
  gap: 2.5rem;
}
.main_nav {
  background: var(--theme-color);
}
.menu {
  font-size: 0px;
  display: inline-block;
  vertical-align: middle;
}
.menu li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.menu li:last-child {
  padding-right: 0;
}
.menu li a {
  font-size: 14px;
  color: var(--white);
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Noto Sans JP", sans-serif;
}
/* .menu > li:hover > a, */

.menu > li.active > a,
.menu > li:hover > a {
  color: var(--theme-color);
}
/* Menu Dropdown CSS */

.has-child,
.menu-item-has-children {
  position: relative;
  z-index: 1;
}
.dropdown,
.sub-menu {
  position: absolute;
  background: #1c7347;
  border-radius: 0px 0px 10px 10px;
  top: 100%;
  width: 190px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
  display: none;
}
.dropdown .dropdown,
.sub-menu .sub-menu {
  left: 100%;
  top: 0;
}
.dropdown ul li a,
.sub-menu li a {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  padding: 10px 20px;
  font-family: "Noto Sans JP", sans-serif;
}
.dropdown li:not(:last-child),
.sub-menu li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.chev.rotate {
  transform: rotate(180deg);
}
.chev {
  transition: 0.5s ease;
}
.dropdown-toggle::after {
  display: none;
}
.menuWrap .menu a i.fa-angle-down {
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  margin-top: -2px;
}
.menu li.dropitem {
  position: relative;
  display: block;
  opacity: 0;
  cursor: pointer;
}
.menu > li.dropitem > .dropdownHover {
  position: absolute;
  pointer-events: none;
}
.menu > li.dropitem > .dropdownHover > li {
  transition: transform 0.6s, opacity 0.6s;
  transform: translateY(150%);
  opacity: 0;
  width: 210px;
}
.menu > li.dropitem:hover > .dropdownHover {
  pointer-events: initial;
}
.menu > li.dropitem:hover > .dropdownHover > li.dropitem {
  transform: translateY(0%);
  opacity: 1;
  background: var(--primary); /* width: 210px; */
}
.menu > li.dropitem {
  opacity: 1;
}
.dropdownHover > li a {
  padding: 12px 10px;
  font-size: 1rem;
  border-bottom: 1px solid #2c2c2c59;
  color: var(--dark);
}
.dropdownHover > li:hover > a {
  background: var(--theme-color);
  color: var(--white);
}
.whitecol {
  color: var(--white);
}
/* Dropdown CSS*/
.menuWrap {
  display: flex;
  align-items: center;
  justify-content: end;
}

.headerBtns {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
}

.themeBtn span {
  font-weight: 300 !important;
  text-transform: lowercase;
}

.themeBtn i {
  padding-left: 10px;
}

.themeBtnDark {
  background: var(--theme-color);
}

.whiteBtn {
  background: var(--white);
  color: var(--dark) !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  padding: 11px 1.125rem;
  border-radius: 50px;
}

.whiteBtn i {
  padding-left: 10px;
}

.whiteBtn:hover {
  background: var(--primary);
}
.dropitem a i {
  padding-left: 7px;
}
/* END: Header */

.main-Banner {
  /* background: url(../images/banner/1.jpg) bottom center / cover no-repeat; */
  background: var(--dark);
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 13rem;
}
h6 {
  font-size: 1.563rem;
  color: var(--theme-color);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.bannertext h1 {
  font-size: 5rem;
  font-weight: 300;
  color: var(--white);
}
.bannertext h1 span {
  font-weight: bold;
}

.bannertext ul {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  margin: 1rem 0;
}

.bannertext ul li {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
}

.bannertext ul li span {
  color: #103c44;
  font-weight: 700;
}

.bannertext ul li .tag {
  background: var(--primary);
  border-radius: 50px;
  padding: 1px 1rem;
  font-size: 14px;
  color: var(--dark);
  font-weight: 700;
  font-style: normal;
}
.bannertext p {
  color: #739399;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.7;
}
.bannertext span {
  font-weight: 800;
}

.typed {
  color: var(--theme-color);
  font-weight: 800;
  font-size: 1.5rem;
}
.innerBanner {
  height: 60vh;
  padding-top: 12rem;
}
.btnSec {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.bubbleImg {
  position: absolute;
  bottom: -10rem;
  left: -5rem;
  z-index: 0;
}

.bannerImg {
  position: relative;
  z-index: 1;
}

.bannerImg::before {
  content: "";
  position: absolute;
  background: var(--primary);
  width: 360px;
  z-index: 0;
  height: 320px;
  border-radius: 15px;
  left: auto;
  right: 0;
  top: 2px;
  animation: topBtn 2s ease infinite;
}
@keyframes topBtn {
  0% {
    top: 0px;
  }
  50% {
    top: 14px;
  }
  100% {
    top: 0px;
  }
}
.bannerImg {
  padding: 2rem;
}

.bannerImg figure {
  border-radius: 15px;
}

.trustSec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  width: 50%;
  left: auto;
  height: 90%;
  top: 6rem;
}
.trustSec h2 {
  color: #d6ffd278;
  font-size: 9rem;
  font-weight: 700;
}

.trustSec ul {
  background: #012f38;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 2.5rem 4rem;
  margin-top: 1rem;
  transform: scale(1.06);
  z-index: 1;
  position: relative;
  border-radius: 5px;
  box-shadow: 0 20px 30px #0000002e;
}
.videoBox {
  position: relative;
  margin-top: -1rem;
  transition: all 0.5s ease;
}

.videoBox a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000000a1;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: var(--primary);
  border-radius: 100px;
}
.videoBox img {
  border-radius: 10px;
}
.videoBox:hover a {
  width: 150px;
  height: 150px;
  font-size: 3rem;
}

.addSec {
  background: #012f38;
  padding-bottom: 10rem;
}
.addSec .btnSec {
  justify-content: center;
}
h4 {
  font-size: 5rem;
  font-weight: 300;
  color: #f8f8f8;
  line-height: 1.4;
}
h4 span {
  font-weight: 800;
}
.format-typewriter {
  font-weight: 800;
  color: #d6ffd2;
}

.format-typewriter::after {
  content: "_";
  display: inline-block;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.5s infinite;
  margin-top: -7px;
}
.format-typewriter-cursor {
  opacity: 0;
  display: none;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mainHead p {
  color: #739399;
  font-size: 1.5rem;
}

.addBox {
  text-align: center;
  padding: 0 6rem;
  margin: 5rem 0 0;
}

.addBox h5 {
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #d6ffd2;
}

.addBox p strong {
  font-weight: 700;
}
.addBox p {
  margin-bottom: 1rem;
}
.chatImg {
  position: absolute;
  right: 0;
  bottom: -13rem;
}

.darkBoard {
  background: #01242e;
  box-shadow: 0 0 30px #0000003d;
  border-radius: 5px;
  padding: 3rem;
  position: relative;
  z-index: 111;
}

.darkBoard h3 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.darkBoard .searchBar input {
  background: #103c44;
  border: none;
  height: 3.75rem;
  width: 85%;
  border-radius: 15px;
  padding: 0 2rem;
  color: #fff;
  margin-right: 12px;
}

.darkBoard .searchBar button {
  background: #c9efc5;
  border: none;
  border-radius: 100px;
  width: 50px;
  height: 50px;
  font-size: 1.25rem;
}

.darkBoard .searchBar p {
  color: #fff;
  font-size: 1.25rem;
  margin: 1rem 0;
}

.darkBoard .searchBar p span {
  font-weight: 600;
}

.item {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #012f38;
  width: 92%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 4px solid transparent;
  transition: all 0.5s ease;
}

.item img {
  width: 11rem;
  height: 8rem;
  object-fit: cover;
  border-radius: 15px;
}

.item h5 {
  color: #fff;
  font-weight: 300;
  font-size: 15px;
}

.item h5 span {
  font-size: 1.75rem;
  display: block;
  font-weight: 500;
}

.darkBoard ul li .plus {
  background: var(--theme-color);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: var(--dark);
  border-radius: 50px;
}

.darkBoard ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
  margin: 1rem 0;
}

.item:hover {
  transform: scale(1.2);
  border-color: var(--theme-color);
}
.addTwo {
    padding-bottom: 20rem;
}

.mapSec {
    padding-top: 0;
    margin-top: -16rem;
}

.billSec {
    padding-top: 12rem;
}

.billSec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-color);
    width: 2px;
    height: 130px;
    left: 50%;
    transform: translateX(-50%);
}

.dayList {
    background: #013742;
    padding: 1.5rem;
    border-radius: 10px;
    margin-left: -6rem;
    padding-left: 6rem;
    box-shadow: 0 0 30px #0000004d;
}

.dayList ul {
    display: flex;
    justify-content: space-around;
}

.dayList ul li {
    font-size: 1.5rem;
    color: #727272;
}

.dateList {
    background: #013742;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.dateList ul li {
    font-size: 1.5rem;
    color: #727272;
    padding: 2rem 0;
}
.sliderSec {
    background: #013b46;
}


.inspoSec {
    padding: 13rem 0;
    position: relative;
    margin-top: 5rem;
}

.inspoSec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #01424f;
    box-shadow: 0 0 30px #00212b82;
    left: auto;
    width: 60%;
}

.inspoSec::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    height: 70%;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    left: auto;
}

.inspoHead h2 {
    font-size: 8rem;
    color: #00232D;
    font-weight: 700;
}

.inspoHead {
    position: absolute;
    right: 2rem;
    top: -1rem;
}

.sliderHead {
    position: absolute;
    top: -5rem;
    left: 3rem;
}

.sliderHead h2 {
    font-size: 8rem;
    color: #004a58;
    font-weight: 700;
}

.inspoHead,
.sliderHead , .locaHead {
    opacity: 0;  
    transform: translateY(50px); 
}
.mapBox {
    background: #013b46;
    padding: 6.5rem 3rem;
    border-radius: 15px;
}

.mapBox p strong {
    color: var(--primary);
}

.mapBox ul {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mapBox ul li {
    background: #164c56;
    border-radius: 5px;
    padding: 1.5rem;
    flex: 0 0 50%;
}

.mapBox ul li p {
    margin: 0;
}

.mapBox ul li h3 {
    font-size: 3rem;
    color: #fff;
}

.mapBox p {
    color: #fff;
}

.locationSec iframe {
    border-radius: 15px;
    filter: grayscale(1);
}

.locaHead h2 {
    font-size: 8rem;
    font-weight: 700;
    color: #103c44;
}

.locaHead {
    text-align: center;
    margin-top: -8rem;
    margin-bottom: 3rem;
}

.globalSec {
    box-shadow: 0 0 30px #000;
    padding-bottom: 8rem;
}

.lightSec .themeBtn {
    background: var(--dark);
    color: #fff;
}

.lightSec .themeBtnDark {
    color: var(--dark);
    background: var(--theme-color);
}

.lightSec .container {
    background: var(--primary);
    border-radius: 5px;
    position: relative;
    padding: 16rem 21rem;
    box-shadow: 0 0 20px #0000004a;
}

.aniOne {
    position: absolute;
    left: 0;
    bottom: 0;
}

.aniTwo {
    left: auto;
    right: 0;
}

.lightSec p {
    color: var(--dark);
    font-size: 1.25rem;
}

.lightSec h4 {
    color: var(--dark);
}



.socialIcons {
    display: flex;
    justify-content: end;
    gap: 1rem;
    position: absolute;
    right: 0;
    bottom: -2rem;
}

.socialIcons li a {
    background: var(--dark);
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(
    --theme-color);
    border-radius: 50px;
}

footer {
    background: var(--white);
    padding-top: 7rem;
}

footer h5 {
    font-size: 1.25rem;
}

footer ul li a {
    color: #506E7B;
    padding: 10px 0;
    display: inline-block;
    font-weight: 400;
}

footer ul li strong {
    color: var(--theme-color);
}

footer ul {
    margin: 0 0 3rem;
}

.copyRight {
    border-top: 1px solid #7393993b;
    padding: 1rem;
    text-align: center;
}

.copyRight p {
    margin: 0;
}

.socialIcons li a:hover {
    background: var(--primary);
}

footer ul li a:hover {
    color: var(--primary);
}
.lightSec {
    padding-bottom: 0;
    margin-bottom: -3rem;
}



.signSec {
  padding: 5rem 17rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.signSec a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.25rem;
}

.signSec a i {
  padding-right: 10px;
}

.signSec h4 {
  font-weight: 600;
  margin: 2rem 0 1rem;
}

.signSec h6 , .signSec h6 a {
  font-size: 1.45rem;
}

.signSec h6 a {
  text-decoration: underline !important;
}

.leadForm h5 {
  font-size: 3rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #afafaf;
}

.leadForm {
  padding-top: 2rem;
}

.leadForm input {
  width: 100%;
  height: 4rem;
  padding: 1rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid var(--theme-color);
  margin: 1rem 0;
  color: #fff;
  outline: none;
}

.leadForm h3 {
  color: #fff;
}


.leadForm input::placeholder {
  color: #739399;
}

.leadForm h3 {
  color: #fff;
  margin-top: 2rem;
}

.leadForm .themeBtn {
  padding: 1rem 2rem;
  margin-top: 2rem;
}
.signSec h2 {
  font-size: 10rem;
  color: #fff;
  margin: 1rem 0;
}
.forgetBox p a {
  font-size: 1rem;
  font-weight: 500;
  color: #739399;
}