@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i");

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font: 16px "Open Sans", sans-serif;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #181818;
}

a {
  color: #f7902c;
  transition: all ease .2s;
}

a:hover {
  color: #f7902c;
  opacity: .7;
}

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

.button {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 12px 35px;
  margin-top: 30px;
  border-radius: 50px;
  transition: 0.2s;
  color: #fff;
  background: #f7902c;
  text-decoration: none;
}

.button:hover {
  color: #fff;
  opacity: .6;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #181818;
  z-index: 997;
  padding: 15px 0;
}

.header.header-scrolled {
  top: 0;
}

.header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

.header .logo img {
  width: 100%;
  max-height: 24px;
  margin: 0 auto 0 0;
}

@media (max-width: 768px) {
  .header {
    padding: 15px;
  }

  .header .logo {
    text-align: center;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 30px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 18px "Raleway";
  color: #f7902c;
  white-space: nowrap;
  transition: 0.2s;
  padding: 5px 2px;
}

.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: #fff;
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #f7902c;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

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

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

  .navbar ul {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80vw;
    height: 100vh;
    padding: 10px 0;
    background-color: #111;
    transition: all ease 0.3s;
  }

  .navbar ul li a {
    border: 0 !important;
    transition: none !important;
  }

  .navbar {
    position: absolute;
    right: 25px;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(33, 33, 33, 0.8);
  z-index: 999;
}

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

.navbar-mobile ul {
  left: 0;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 15px 25px;
  font-size: 22px;
  color: #f7902c;
  border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #fff;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
  background: url(../img/hero-bg.png) repeat;
  background-color: #222;
  position: relative;
  width: 100%;
  height: 600px;
  padding: 80px 0 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .container .hero-text {
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding-left: 50px;
}

.hero .container .hero-text span {
  display: inline-block;
}

.hero .hero-img {
  width: 100%;
}

.hero h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 125%;
  color: #fff;
}

.hero h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 12px 35px;
  margin-top: 40px;
  border-radius: 50px;
  transition: 0.2s;
  color: #fff;
  background: #f7902c;
  text-decoration: none;
}

.hero .btn-get-started-alt {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 12px 35px;
  margin: 40px 0 0 12px;
  border-radius: 50px;
  transition: 0.2s;
  border: 1px solid #f7902c;
  color: #f7902c;
  background: transparent;
  text-decoration: none;
}

.hero .btn-get-started:hover,
.hero .btn-get-started-alt:hover {
  opacity: .6;
}

@media (min-width: 1024px) {
  .hero {
    padding: 74px 0 0;
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 100px 0 50px;
    margin-bottom: 0;
    height: auto;
  }

  .hero .container .hero-text {
    padding: 0;
    align-items: center;
  }

  .hero h1 {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (max-width: 768px) {
  .hero .container {
    padding: 0 25px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
  padding: 60px 0;
  overflow: hidden;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1140px;
}

@media (max-width: 900px) {
  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 780px;
  }
}

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #1977cc;
  bottom: 0;
  left: calc(50% - 20px);
}

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

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.features {
  color: #fff;
  background-color: #f7902c;
}

.features h2 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.boxed-features {
  padding: 40px 0 0;
}
.boxed-features .flex-card {
  background-color: #fafafa;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
}
.boxed-features .flex-card .flex-cell {
  width: 25%;
  border-right: 1px solid #ddd;
  text-align: center;
  padding: 24px 16px;
}
.boxed-features .flex-card .flex-cell.full-width {
  width: 100%;
  border-right: 0;
  padding: 24px 16px;
}
.boxed-features .flex-card .flex-cell.full-width .full-width-content {
  flex: 1;
}
.boxed-features .flex-card .flex-cell.full-width .full-width-content p {
  max-width: 80%;
}
.boxed-features .flex-card .flex-cell.is-bordered {
  border-bottom: 1px solid #eddd;
}
.boxed-features .flex-card .flex-cell.no-border-edge {
  border-right: none;
}
.boxed-features .flex-card .flex-cell h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 8px 0;
  color: #333;
}
.boxed-features .flex-card .flex-cell p {
  font-size: .9rem;
  color: #333;
  max-width: 200px;
  margin: 0 auto;
}
.boxed-features-icon {
  height: 50px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .boxed-features {
    padding: 20px 25px 0;
  }

  .boxed-features .flex-card .flex-cell {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
  }
  .boxed-features .flex-card .flex-cell:last-child {
    border-bottom: none;
    padding: 24px 0 0;
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing {
  padding: 60px 0;
  color: #333;
  background-color: #f5f5f5;
}

.pricing h2 {
  font-size: 36px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.pricing-box {
  align-items: center;
  background-color: #fff;
  border-radius: 24px;
  display: flex;
  flex-flow: row wrap;
  height: 320px;
  margin-top: 30px;
}

.pricing-box .left-side {
  align-items: center;
  background-color: #222;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  color: #fff;
  display: flex;
  flex-flow: column;
  height: 100%;
  justify-content: center;
  padding: 25px;
  width: 300px;
}

.pricing-box .left-side b {
  font-size: 60px;
  font-weight: 700;
}

.pricing-box .left-side span {
  display: block;
  font-size: 14px;
  margin: 0 0 20px;
}

.pricing-box .left-side p {
  margin-top: 15px;
  text-align: center;
}

.pricing-box .right-side {
  align-items: start;
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  padding: 25px 50px;
}

.pricing-box .right-side b {
  font-size: 24px;
  margin-bottom: 16px;
  width: 100%;
}

.pricing-box .right-side ul {
  column-count: 2;
  margin: 0;
  padding: 0 0 0 20px;
  width: 100%;
}

.pricing-box .right-side ul li {
  margin-top: 4px;
}

.pricing-callout {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  margin-top: 24px;
  width: 100%;
}

.pricing-callout .left-side,
.pricing-callout .right-side {
  width: 50%;
}

.pricing-callout .left-side b {
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}

.pricing-callout .right-side {
  text-align: right;
}

@media (max-width: 768px) {
  .pricing-box {
    height: auto;
    margin: 30px 12px 0;
  }

  .pricing-box .left-side,
  .pricing-box .right-side {
    width: 100%;
  }

  .pricing-box .left-side {
    border-radius: 0;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }

  .pricing-box .right-side ul {
    columns: 1;
  }

  .pricing-callout {
    flex-flow: column;
  }

  .pricing-callout .left-side,
  .pricing-callout .right-side {
    text-align: center;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
  background-color: #fff;
  color: #333;
  padding: 60px 0;
}

.about .rounded-img {
  border-radius: 50px;
  height: auto;
  width: 65%;
}

.about h2 {
  font-size: 36px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .about .row .col-xl-7 {
    margin-top: 30px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding: 60px 0;
  background-color: #e5e5e5;
}

.contact .col-xl-9 {
  margin: auto;
}

.contact h2 {
  font-size: 36px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.contact .info {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background: #f7902c;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info b {
  padding: 0 0 0 15px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #292d33;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 16px;
  color: #222;
}

.contact .info .email,
.contact .info .address {
  margin: 25px 30px;
}

@media (max-width: 768px) {
  .contact .info .email,
  .contact .info .address {
    margin: 25px 0;
    width: 250px;
  }
}

.about .col-xl-12.text-center p,
.features .col-xl-12.text-center p,
.pricing .col-xl-12.text-center p,
.contact .col-xl-12.text-center p {
  font-size: 20px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  color: #fff;
  font-size: 14px;
  padding: 30px 0;
  background: #181818;
}

.footer .row {
  align-items: center;
}

.footer .footer-icons {
  align-items: center;
  display: flex;
  flex-flow: row;
  gap: 18px;
  justify-content: end;
}

.footer .footer-icons .bi {
  font-size: 24px;
}

@media (max-width: 768px) {
  body {
    font-size: 18px;
  }

  .footer .copyright {
    text-align: center;
  }

  .footer .col-xl-6:first-of-type {
    order: 2;
  }

  .footer .col-xl-6:last-of-type {
    order: 1;
  }

  .footer .footer-icons {
    justify-content: center;
    margin-bottom: 20px;
  }

  .about h2,
  .features h2,
  .pricing h2,
  .contact h2 {
    font-size: 36px;
    line-height: 125%;
  }

  .boxed-features .flex-card .flex-cell h3 {
    font-size: 22px;
  }

  .boxed-features .flex-card .flex-cell p {
    font-size: 18px;
    max-width: 100%;
  }
}
