@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
.preLoader {
  background-color: rgba(239, 232, 226, 0.5);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: grid;
  place-content: center;
  z-index: 1041;
}
.preLoader .animWrapper {
  height: 5px;
  width: 150px;
  overflow: hidden;
  background-color: rgba(30, 33, 40, 0.2);
  position: relative;
}
.preLoader .animWrapper::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  background-color: #43b76e;
  animation: 5s wide ease-in-out infinite;
}

@keyframes wide {
  0% {
    width: 0;
    left: 0;
    right: 100%;
  }
  20% {
    width: 101%;
    left: 0;
    right: 0;
  }
  40% {
    width: 0;
    left: 100%;
    right: 0;
  }
  60% {
    width: 0;
    left: 100%;
    right: 0;
  }
  75% {
    width: 101%;
    left: 0;
    right: 0;
  }
  100% {
    width: 0;
    left: 0;
    right: 100%;
  }
}
body {
  font-family: "Figtree", serif;
  color: #777777;
  background-color: #efe8e2;
}

.btn {
  padding: 10px 20px;
}
.btn.btn-acnt {
  background-color: #43b76e;
  border-color: #43b76e;
  color: #fff;
}
.btn.btn-acnt:hover {
  background-color: #3ca562;
  border-color: #3ca562;
}

#mainNav {
  position: sticky;
  z-index: 1040;
  left: 0;
  top: 0;
  background-color: #efe8e2;
}
#mainNav::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  background: radial-gradient(#000, transparent 50%);
  z-index: 1;
  -webkit-clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0 100%);
          clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0 100%);
  opacity: 0;
  transition: 0.5s all ease;
}
#mainNav .navBtn, #mainNav .closeBtn {
  display: none;
}
#mainNav .container {
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
#mainNav .container .navBrand {
  list-style-type: none;
  color: #1e2128;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  margin-right: 100px;
}
#mainNav .container .navBrand span {
  color: #43b76e;
}
#mainNav .container .navCollapse {
  display: flex;
  flex: 1 0 auto;
  align-items: center;
}
#mainNav .container .navCollapse ul {
  display: flex;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  gap: 10px;
}
#mainNav .container .navCollapse .navList {
  margin-right: auto;
  gap: 40px;
}
#mainNav .container .navCollapse .navLink {
  color: #1e2128;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  z-index: 1;
  padding-left: 2px;
  padding-right: 2px;
}
#mainNav .container .navCollapse .navLink::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: 0;
  height: 100%;
  background-color: #43b76e;
  z-index: -1;
  transition: 0.3s width ease;
}
#mainNav .container .navCollapse .navLink:hover {
  color: #1e2128;
  text-decoration: none;
}
#mainNav .container .navCollapse .navLink:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
#mainNav.scrolled::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  background: radial-gradient(#000, transparent 50%);
  z-index: 1;
  -webkit-clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0 100%);
          clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0 100%);
  opacity: 0.1;
}

.card {
  border: none;
  border-radius: 26px;
}
.card .card-body {
  padding: 30px;
}
.card .card-title {
  font-weight: 700;
}

#home {
  background-image: url(../img/lineanim.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#home .row {
  min-height: calc(100svh - 86px);
  align-items: center;
}
#home .row h1 {
  font-size: 4.3rem;
  font-weight: 800;
  color: #1e2128;
}
#home .card .card-title {
  font-size: 1.4rem;
}

.link {
  display: inline-block;
  text-decoration: none;
  color: #1e2128;
  padding: 1px;
  border: none;
  background-color: transparent;
  position: relative;
}
.link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: auto;
  height: 1px;
  width: 0;
  transition: 0.3s width ease;
  background-color: #1e2128;
}
.link:hover {
  color: #1e2128;
  text-decoration: none;
}
.link:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

.form-label {
  color: #1e2128;
  font-weight: 600;
}

.sectionTitle {
  font-weight: 700;
  color: #1e2128;
  margin-bottom: 35px;
  font-size: 3rem;
}

#howthiswork h4 {
  color: #1e2128;
}

#faq .accordion-button:not(.collapsed) {
  color: #1e2128;
  background-color: #a8f1c3;
  box-shadow: inset 0 -1px 0 #c9fbdb;
}
#faq .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 253, 121, 0.25);
}

.pt100 {
  padding-top: 100px;
}

.pb100 {
  padding-bottom: 100px;
}

.iti.iti--allow-dropdown {
  width: 100%;
}

footer {
  padding-top: 100px;
  background-color: rgba(30, 33, 40, 0.06);
}
footer .navBrand {
  list-style-type: none;
  color: #1e2128;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  margin-right: 100px;
  margin-bottom: 15px;
  display: inline-block;
}
footer .navBrand span {
  color: #43b76e;
}
footer .col-md-4.col-lg-3 {
  padding-top: 18px;
}
footer .col-md-4.col-lg-3 h5 {
  color: #1e2128;
}
footer .unlist {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
footer .unlist li:not(:last-child) {
  margin-bottom: 10px;
}
footer .unlist.icon li {
  display: flex;
  gap: 10px;
  color: #777777;
}
footer .unlist.icon li:not(:last-child) {
  margin-bottom: 18px;
}
footer .unlist.icon li .icon {
  flex: 0 0 16px;
  width: 16px;
  padding-top: 2px;
  color: #43b76e;
}
footer .copy {
  border-top: 1px solid rgba(30, 33, 40, 0.1);
}

.socialList {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-left: 0;
  gap: 10px;
  list-style-type: none;
}
.socialList li {
  margin-bottom: 10px;
  flex: 0 0 50px;
  width: 50px;
}
.socialList li a {
  display: inline-grid;
  transition: 0.5s background-color ease;
  width: 50px;
  height: 50px;
  place-content: center;
  background-color: #777777;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
}
.socialList li a.fb:hover {
  background-color: #1877F2;
}
.socialList li a.insta:hover {
  background-color: #E4405F;
}
.socialList li a.pin:hover {
  background-color: #BD081C;
}
.socialList li a.twtr:hover {
  background-color: #1DA1F2;
}
.socialList li a.yt:hover {
  background-color: #CD201F;
}
.socialList li a.lin:hover {
  background-color: #0A66C2;
}

@media (max-width: 1399px) {
  #home .row h1 {
    font-size: 3.73rem;
  }
}
@media (max-width: 1199px) {
  #home .row h1 {
    font-size: 3.1rem;
  }
}
@media (max-width: 991px) {
  header#mainNav .container .navCollapse {
    position: fixed;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #efe8e2;
    min-width: 300px;
    padding: 40px;
    transform: translateX(100%);
    transition: 0.3s all ease;
    display: grid;
    align-items: center;
    align-content: center;
  }
  header#mainNav .container .navCollapse .closeBtn {
    display: block;
    margin-left: 15px;
    width: 50px;
    height: 50px;
    border: none;
    background-color: rgba(30, 33, 40, 0.1);
    color: #43b76e;
    border-radius: 10px;
    position: absolute;
    right: 10px;
    top: 10px;
  }
  header#mainNav .container .navCollapse ul {
    display: grid;
  }
  header#mainNav .container .navCollapse .navList {
    margin-bottom: 30px;
  }
  header#mainNav .container .navCollapse.active {
    transform: translateX(0);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  }
  header#mainNav .container .navBtn {
    display: block;
    order: 3;
    margin-left: 15px;
    width: 50px;
    height: 50px;
    border: none;
    background-color: #43b76e;
    color: #efe8e2;
    border-radius: 10px;
    margin-left: auto;
  }
  .pt100 {
    padding-top: 70px;
  }
  .pb100 {
    padding-bottom: 70px;
  }
  #home .row h1 {
    font-size: 2.29rem;
  }
}
@media (max-width: 767px) {
  #home {
    padding-bottom: 70px;
  }
  #home .row {
    justify-content: center !important;
    align-content: center;
  }
  #home .row h1 {
    font-size: 3rem;
  }
}/*# sourceMappingURL=main.css.map */
