/**
* Template Name: Resi
* Updated: Jul 27 2023 with Bootstrap v5.3.1
* Template URL: https://bootstrapmade.com/resi-free-bootstrap-html-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

:root {
  --tb-color: #96c63d;
  --tb-accent-color: #abd442;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  scroll-padding-top: 5em;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: var(--tb-color);
}

a:hover {
  color: var(--tb-accent-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--tb-color);
  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(--tb-accent-color);
  color: #fff;
}

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

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

#header.header-scrolled,
#header.header-inner-pages {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  /* font-weight: 300; */
  letter-spacing: 2px;
  font-family: "Manrope", sans-serif;
}

#header .logo a {
  color: var(--tb-color);
}

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

@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: start;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #232c0e;
  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: var(--tb-color);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 6px 25px;
  margin-left: 30px;
  border-radius: 50px;
  /* color: var(--tb-color); */
  border: 2px solid var(--tb-color);
  font-family: "Manrope", sans-serif;
  /* font-weight: 300; */
  font-size: 15px;
  letter-spacing: 0.5px;
}

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

.navbar .getstarted img {
  vertical-align: middle;
}

.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;
}

.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(--tb-color);
}

.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: #232c0e;
  font-size: 28px;
  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(48, 47, 84, 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: #232c0e;
}

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

.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(--tb-color);
}

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

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

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

#hero h1 {
  margin: 0;
  font-size: 56px;
  /* font-weight: 300; */
  line-height: 58px;
  color: #232c0e;
  font-family: "Manrope", sans-serif;
}

#hero h2 {
  margin: 10px 0 0 0;
  font-size: 20px;
}

#hero ul {
  margin-top: 15px;
  list-style: none;
  padding: 0;
}

#hero ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

#hero ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: var(--tb-color);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 1399px) {
  #hero h1 {
    font-size: 48px;
    line-height: 52px;
  }
}

@media (max-width: 1199px) {
  #hero h1 {
    font-size: 44px;
    line-height: 46px;
  }
}

@media (max-width: 991px) {
  #hero .hero-img {
    text-align: center;
    margin-bottom: 1rem;
  }

  /* #hero .hero-img img {
    width: 65%;
  } */

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

@media (max-width: 768px) {
  #hero h1 {
    font-size: 36px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero ul {
    font-size: 14px;
  }

  /* #hero .hero-img img {
    width: 70%;
    margin-bottom: 1rem;
  } */
}

@media (max-width: 575px) {
  #hero ul {
    font-size: 14px;
  }

  /* #hero .hero-img img {
    width: 80%;
  } */

  /* #hero .btn-get-started,
  #hero .btn-get-quote {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;
  } */
}

/* #hero .hero-img {
  perspective: 1000px;
} */

#hero .hero-img img {
  /* scale: 0.95; */
  /* background: linear-gradient(200deg, hsl(0, 0%, 98%), #eeeeee); */
  /* transform: rotateX(-4deg) rotateY(-4deg) rotateZ(2deg) translateX(-1.5%); */
  border-radius: 8px;
  box-shadow: rgb(0, 0, 0, 0.2) 0.0rem 0.5rem 1rem 0rem;
}

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

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

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

.section-title h2 {
  /* font-size: 32px;
  font-weight: bold;
  text-transform: uppercase; */
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  /* color: #232c0e; */
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--tb-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about picture img {
  box-shadow: rgb(0, 0, 0, 0.2) 0.0rem 0.5rem 1rem 0rem;
  border-radius: 8px;
  scale: 0.95;
}

.about .about-list {
  padding: 0;
  list-style: none;
  margin-bottom: 0;
  list-style-position: inside;
  position: relative;

}

.about .about-list > li {
  border-bottom: 1px solid #f2f2fe;
  margin-bottom: 20px;
  padding-bottom: 20px;
}


.about .about-list .about-caption {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
}

.about .about-list .about-caption p {
  /* color: var(--tb-color); */
  color: #000;
  transition: all ease-in-out 0.3s;
}

.about .about-list .about-caption.collapsed p {
  /* color: var(--tb-color); */
  color: #888;
}

.about .about-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 6px;
  padding: 0 5px;
  border-radius: 40px; 
  transition: all ease-in-out 0.3s;
}

.about .about-list .about-caption:hover p {
  color: inherit;
}

.about .about-list .about-caption:hover i {
  background-color: var(--tb-accent-color);
  /* color: white; */
}

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

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

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

/* @media (max-width: 768px) {
  .about .about-list .about-caption p {
    font-size: inherit;
  }
} */

/*--------------------------------------------------------------
# Use Cases
--------------------------------------------------------------*/
.use-cases .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  height: 95%;
}

.use-cases .box span {
  display: block;
  font-size: 28px;
  /* font-weight: 700; */
  color: var(--tb-accent-color);
}

.use-cases .box h4 {
  padding: 0;
  margin: 20px 0;
}

.use-cases .box p {
  color: #888;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.use-cases .box:hover {
  background: var(--tb-color);
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.use-cases .box:hover span,
.use-cases .box:hover h4,
.use-cases .box:hover p {
  color: #fff;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  /* display: flex; */
  align-items: center;
  padding: 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 95%;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
  color: #888;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 {
  /* font-weight: 700; */
  margin: 20px 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
  transition: ease-in-out 0.3s;
}

.features .icon-box p {
  color: #888;
  transition: ease-in-out 0.3s;
  font-size: 15px;
}

.features .icon-box:hover p {
  color: inherit;
}

.features .icon-box:hover i {
  color: var(--tb-color);
}

.features .icon-box:hover h3 {
  color: black;
}



/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  /* font-weight: 300; */
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 20px;
  /* color: var(--tb-color); */
  /* font-weight: 400; */
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #888;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #888;
  text-align: left;
  line-height: 20px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: var(--tb-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .btn-buy {
  font-family: "Manrope", sans-serif;
  /* font-weight: 400; */
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 30px 9px 30px;
  margin-bottom: 15px;
  border-radius: 3px;
  transition: 0.5s;
  border-radius: 50px;
  background: #fff;
  color: #444444;
  border: 2px solid var(--tb-color);
  margin-right: 10px;
}

.pricing .btn-buy:hover {
  background: var(--tb-accent-color);
  color: #fff;
}

.pricing .btn-buy * {
  vertical-align: middle;
}

.pricing .btn-buy .ri-mail-line {
  font-size: 18px;
  margin-right: 4px;
  color: #444444;
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}

.pricing .featured .btn-buy {
  color: #fff;
  background: var(--tb-color);
  border-color: #232c0e;
}

.pricing .featured .btn-buy:hover {
  border-color: var(--tb-color);
  background: var(--tb-accent-color);
}

.pricing .payment-toggle label {
  border-color: #ccc;
  color: #ccc;
}

.pricing .payment-toggle .btn-check:checked + .btn {
  background-color: var(--tb-accent-color);
  border-color: var(--tb-color);
  transition: 0.3s;
}

.pricing .payment-toggle .btn-check:checked + .btn:hover {
  color: #fff;
  border-color: var(--tb-color);
}
.pricing .payment-toggle .btn-check + .btn:hover {
  color: var(--tb-accent-color);
  border-color: var(--tb-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

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

.faq .faq-list > li {
  border-bottom: 1px solid #f2f2fe;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  /* font-family: "Manrope", sans-serif; */
  font-size: 18px;
  line-height: 24px;
  /* font-weight: 400; */
  padding-left: 30px;
  cursor: pointer;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 5px;
  border-radius: 40px; 
  transition: all ease-in-out 0.3s;
}

.faq .faq-list p,
.faq .faq-list ol,
.faq .faq-list ul {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list ol,
.faq .faq-list ul {
  list-style-position: inside;
}

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

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .question:hover i {
  background-color: var(--tb-accent-color);
}

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

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

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f1f1f7;
  min-height: 40px;
  margin-top: 68px;
}

.breadcrumbs h3 {
  font-size: 28px;
  /* font-weight: 400; */
  color: #232c0e;
  margin-bottom: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #565396;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #eeeef5;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  color: var(--tb-color);
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Manrope", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  /* font-weight: bold; */
  color: #232c0e;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--tb-color);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 7px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--tb-color);
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  /* font-weight: bold; */
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #var(--tb-accent-color);
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--tb-color);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: var(--tb-accent-color);
}

#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: #232c0e;
  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(--tb-color);
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Template Page
--------------------------------------------------------------*/
.template-page .container {
  max-width: 760px;
}

.template-page h2,
.template-page h3 {
  margin: 2rem 0 1rem 0;
}