:root {
  --black: #1A191E;
  --primary: #01FE01;
  --secondary: #25B51F;
  --gray: #646466;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Sora', sans-serif;
  color: var(--black);
  background-color: #F8F9FF;
}

a {
  text-decoration: none;
  color: #5a5af3;
}

a:hover {
  color: #2a2af0;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--secondary);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--primary);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  background: transparent;
}

#header.header-scrolled, #header.header-inner-pages {
  padding: 8px 0;
  background-color: var(--secondary);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo img {
  max-height: 60px;
}

@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 20px;
  font-size: 16px;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
  color: #fefefe;
}

.navbar .getstarted, .navbar .getstarted:focus {
  padding: 6px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: var(--black);
  border: 2px solid var(--secondary);
}

.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: var(--secondary);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  color: var(--black);
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover>a {
  color: var(--secondary);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--secondary);
  font-size: 38px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 254, 1, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--secondary);
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover>a {
  color: var(--secondary);
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover>a {
  color: var(--secondary);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  /* background: #F5F6FA;
  border-bottom: 2px solid white; */
}

.section-1 {
  background-color: #F2F4FD;
}

.section-2 {
  background-color: var(--secondary);
}

#hero .container {
  padding-top: 80px;
}

#hero h1 {
  margin-bottom: 10px;
  font-size: 55px;
  font-weight: 600;
  line-height: 60px;
  color: var(--black);
}

#hero p {
  font-size: 23px;
  font-weight: 500;
}

.btn-get-started,
.btn-get-quote {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 5px 40px;
  margin-bottom: 15px;
  transition: 0.5s;
  border-radius: 4px;
}

.btn-get-started {
  color: #fff;
  margin-right: 10px;
  background: linear-gradient(220.94deg, #01FE01 14.43%, rgb(46, 187, 41) 85.28%);
  /* background: var(--secondary); */
  /* border: 2px solid var(--secondary); */
}

.btn-get-started:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-get-started i {
  font-size: 35px;
  vertical-align: middle;
}

.btn-get-quote {
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-get-quote:hover {
  color: var(--primary);
}


@media (max-width: 768px) {
  #header {
    background: #F2F4FD;
  }

  #hero {
    height: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  #hero h1 {
    font-size: 40px;
    line-height: 36px;
  }

  .section-2 {
    background-color: #F2F4FD;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #eeeef5;
}

.waves {
  background-image: url(../img/wave.png);
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h3 {
  font-size: 26px;
  color: var(--secondary);
  text-transform: uppercase;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 50px;
}

.section-title p {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: var(--gray);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 50px;
  margin: 0 0 20px;
  color: var(--black);
}

.about h2>span {
  color: var(--secondary);
}

.about p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--gray);
}

.about .about-list {
  list-style: none;
  padding: 0;
}

.about .about-item {
  display: flex;
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 15px;
}

.about .about-text span {
  font-weight: 600;
  font-size: 18px;
  line-height: 42px;
}

.about .about-text p {
  font-size: 15px;
  line-height: 17px;
  color: var(--gray);
  margin: 0;
}

@media (max-width: 768px) {
  .about h2 {
    font-size: 28px;
    line-height: 35px;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
#why-us {
  background-color: #F2F4FD;
}

.why-us h2 {
  font-weight: 600;
  font-size: 36px;
  color: var(--black);
  margin-bottom: 20px;
}

.why-us h2>span {
  color: var(--secondary);
}

.why-us .card-body img {
  margin-bottom: 10px;
}

.why-us .card-body h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
}

.why-us .card-body p {
  font-size: 15px;
  color: var(--gray);
  line-height: 17px;
}

.why-us .card-link {
  font-size: 15px;
  font-weight: 600;
  line-height: 17px;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: var(--secondary);
}

@media (max-width: 768px) {
  .why-us h2 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Testimonials 
--------------------------------------------------------------*/
.testimonials h3 {
  font-size: 26px;
  color: var(--secondary);
  text-transform: uppercase;
}

.testimonials h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 50px;
}

.testimonials p {
  font-size: 23px;
  font-weight: 500;
}

.testimonials .card-body {
  padding: 10px;
}

.testimonials .card-body .li-style {
  padding-left: 10px;
  border-left: 3px solid var(--secondary);
}

.testimonials .card-body h5 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -.014em;
  color: var(--black);
}

.testimonials .card-body p {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--gray);
  font-style: italic;
}

/*--------------------------------------------------------------
# Call action
--------------------------------------------------------------*/
.call-action h2,
.call-action h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
}

.call-action h3>span {
  color: var(--secondary);
}

.call-action p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--gray);
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 20px;
  padding: 10px;
  background-color: transparent;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  color: var(--black);
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  right: 0;
  top: -2px;
  color: var(--secondary);
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  color: var(--gray);
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: var(--black);
}

.faq .faq-list .collapsed:hover {
  color: var(--black);
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  background: #F2F4FD;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .credits a {
  transition: 0.3s;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #deddec;
  color: var(--secondary);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}