@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

:root {
  --green: #66d729;
  --orange: #fda04b;
  --white: #fff;
  --black: #3a3737;
  --gry: #63627e;
  --dark-green: #216203;
  --green-shade1: #2e7e09;
  --green-shade: #3c9713;
  --gry-bg: #f8f9fb;
  --light-green: #627e69;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
p {
  margin: 0;
}
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  background: #fff;
  letter-spacing: 0.02em;
  color: var(--black);
}
a {
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  text-decoration: none;
}
a {
  color: #165cea;
  text-decoration: underline;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
figure {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
}
html {
  scroll-padding-top: 150px;
}

/*buttons*/
.btn {
  min-height: 42px;
  border-radius: 25px;
  font-size: 14px;
  padding: 0px 20px;
  line-height: 42px;
  transition: 0.3s ease-in-out;
}
.btn:hover {
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
}
.btn-white {
  background-color: var(--white) !important;
  color: var(--black);
}
.btn-orange {
  background-color: var(--orange) !important;
  color: var(--white) !important;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 11;
  transition: 0.3s ease-in-out;
  padding: 10px 0px;
}
body.fixed header {
  padding: 0;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(35px);
  backdrop-filter: blur(35px);
}
.banner-home {
  background-color: var(--dark-green);
  position: relative;
  z-index: 1;
}
.banner-home .shape-left {
  position: absolute;
  right: -2px;
  top: 120px;
  animation: animation2 6s linear 0s infinite alternate both;
  z-index: -1;
}
.banner-home .shape-right {
  position: absolute;
  left: -2px;
  position: absolute;
  right: -2px;
  top: 120px;
  animation: animation1 3s linear 0s infinite alternate both;
  z-index: -1;
}
.banner-text h1 {
  font-size: 65px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 15px;
}
.banner-text {
  text-align: center;
  max-width: 640px;
  margin: 100px auto;
  margin-top: 150px;
}
.banner-text p {
  color: var(--white);
  font-size: 20px;
}
header .navbar-nav {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  justify-content: center;
}
header .navbar-nav li {
  display: inline-flex;
  align-items: center;
}
header .navbar-nav li a {
  color: var(--white);
  pointer-events: initial;
}
.banner-home figure {
  margin-bottom: -150px;
}
.section-padding {
  padding: 100px 0px;
}
.about-us {
  margin-top: 150px;
}
.logo-nav {
  display: none;
}
body.fixed .logo-nav {
  display: block;
}
body.fixed .logo-main {
  display: none;
}
.navbar-brand img {
  width: 90px;
  /* width: 150px; */
}
.footer-logo a img {
  width: 115px;
}
body.fixed .navbar-expand-lg .navbar-nav .nav-link {
  color: var(--black);
}
.banner-home .container {
  background: url(../images/line.png);
  background-position: center;
}
.about-text h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
}
.about-text p {
  font-size: 18px;
  color: var(--gry);
}
ul.site-li {
  margin: 15px 0px;
}
ul.site-li li {
  padding-left: 30px;
  font-size: 18px;
  color: var(--gry);
  position: relative;
}
ul.site-li li:after {
  content: "";
  background-color: var(--orange);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}
body.fixed header .btn-white {
  background-color: var(--orange) !important;
  color: var(--white);
}
.heading-text h3 {
  font-size: 20px;
  color: var(--green);
  font-weight: 500;
  text-transform: uppercase;
}
.heading-text h2 {
  font-size: 45px;
  color: var(--black);
  font-weight: 700;
}
.heading-text {
  margin-bottom: 70px;
}
.how-it-works article {
  padding: 50px;
  border: 1px solid #e1e1e1;
  width: 100%;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s ease-in-out;
}
.how-it-works article:hover {
  box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.08);
}
.how-it-works article figure {
  height: 270px;
}
.how-it-works article:hover figure {
  animation: img-effect 1s linear 0s 1 reverse backwards;
}
.how-it-works article figure img {
  height: auto;
}
.how-it-works article figcaption {
  margin-top: 30px;
}
.how-it-works article figcaption h4 {
  font-size: 22px;
  margin-bottom: 10px;
}
.how-it-works article figcaption p {
  font-size: 16px;
  color: var(--gry);
}
@keyframes animation2 {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-300px);
  }
}

@keyframes animation1 {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-200px);
  }
}

@keyframes img-effect {
  0%,
  100% {
    transform: translateX(0%);
    transform-origin: 50% 50%;
  }

  15% {
    transform: translateX(-30px) rotate(-6deg);
  }

  30% {
    transform: translateX(15px) rotate(6deg);
  }

  45% {
    transform: translateX(-15px) rotate(-3.6deg);
  }

  60% {
    transform: translateX(9px) rotate(2.4deg);
  }

  75% {
    transform: translateX(-6px) rotate(-1.2deg);
  }
}
.screenshots-sec {
  background-color: var(--gry-bg);
  margin-top: 50px;
}
.heading-text-big {
  margin-bottom: 50px;
}
.heading-text-big h4 {
  font-size: 120px;
  font-weight: 700;
  text-align: center;
  margin-top: -180px;
  background: -webkit-linear-gradient(90deg, #dbdbdb, #5d5d5d 80%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0px 20px;
}

.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link:focus,
body.fixed .navbar-expand-lg .navbar-nav .nav-link:hover,
body.fixed .navbar-expand-lg .navbar-nav .nav-link:focus {
  color: var(--orange) !important;
}
.slider-screen .owl-item {
  transition: 0.3s ease-in-out;
}
.slider-screen .owl-item.active.center {
  transform: scale(1.2);
}
.slider-screen {
  max-width: 950px;
  margin: auto;
}
.slider-screen .owl-stage {
  padding: 55px 0px;
}
.owl-nav div {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.16));
  color: transparent;
  transition: 0.3s ease-in-out;
}
.owl-nav div:hover {
  background-color: var(--green);
}
.slider-screen .owl-nav {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.slider-screen .owl-next {
  margin-left: auto;
  margin-right: -100px;
  position: relative;
}
.slider-screen .owl-prev {
  margin-left: -100px;
  position: relative;
}
.slider-screen .owl-prev:after {
  content: "\EA64";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-family: remixicon !important;
  font-size: 28px;
}
.slider-screen .owl-next:after {
  content: "\EA6E";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-family: remixicon !important;
  font-size: 28px;
}
.text-orange {
  color: var(--orange) !important;
}
.contact-sec .heading-text h2 {
  max-width: 520px;
  margin: auto;
}
.list-contact li {
  display: flex;
  align-items: center;
  padding: 20px;
  height: 100%;
  border-bottom: 1px solid #f4f4f9;
}
.list-contact li:last-child {
  border-bottom: 0;
}
.list-contact li figure {
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.16));
  width: 50px;
  min-width: 50px;
  height: 50px;
  background-color: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.list-contact li figcaption {
  padding-left: 20px;
}
.contact-sec .container {
  max-width: 1024px;
}
.list-contact {
  box-shadow: 0px 5px 20px rgba(169, 167, 191, 0.16);
  border-radius: 15px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  width: 100%;
}
.list-contact li figcaption a {
  display: block;
  font-size: 16px;
  color: var(--gry);
  text-decoration: none;
}
.list-contact li figcaption a:hover {
  color: var(--orange);
}
.list-contact li figcaption h4 {
  font-size: 20px;
  margin-bottom: 5px;
}
.contact-sec-in .col-md-5 {
  display: flex;
}
.form-group .form-control {
  height: 45px;
  border-radius: 45px;
  font-size: 14px;
}
.form-group label {
  font-weight: 600;
  margin-bottom: 5px;
}
.form-group textarea.form-control {
  height: 120px;
  border-radius: 20px;
}
.app-download-sec-in {
  background: var(--green);
  color: var(--white);
  border-radius: 15px;
  padding: 0px 130px;
  margin-top: 70px;
}
.app-download-text span {
  display: block;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}
.app-download-text h4 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}
.app-download-text p {
  font-size: 16px;
  font-weight: 500;
}
.app-download-text .app-download-btns {
  margin-top: 40px;
}
.app-download-text .app-download-btns a {
  width: 155px;
  text-decoration: none;
  margin-right: 5px;
}
.app-download-sec-in figure {
  margin-top: -80px;
  margin-bottom: 60px;
}
footer {
  border-top: 4px solid #f4f4f9;
}
.app-download-sec {
  margin-bottom: 100px;
}
.footer-heading {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 15px;
}
.footer-content span {
  color: var(--light-green);
  letter-spacing: 3px;
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
}
.text-link {
  display: block;
  font-size: 15px;
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
}
.text-link:hover {
  color: var(--green);
}
.footer-logo a {
  display: block;
  margin-bottom: 30px;
}
.social-icon a {
  text-decoration: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid #d3d9d5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--black);
  transition: 0.3s ease-in-out;
}
.social-icon a:hover {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.footer-copyright span {
  display: block;
  padding: 25px 10px;
  color: var(--gry);
  opacity: 0.7;
  border-top: 1px solid #eeeef8;
}

.inner-banner {
  background-color: var(--dark-green);
  padding-top: 102px;
}
.inner-text {
  padding: 70px 0px;
  text-align: center;
}
.inner-text h1 {
  color: var(--white);
  font-weight: 600;
  margin: 0;
}
.content-box-area h1,
.content-box-area h2,
.content-box-area h3,
.content-box-area h4,
.content-box-area h5,
.content-box-area h6 {
  margin-bottom: 5px;
}
.content-box-area p {
  margin-bottom: 15px;
}
label.error {
  margin: 5px;
  color: red;
}
.rem {
  position: relative;
  margin-left: auto !important;
  z-index: 12 !important;
}
