/**
* Template Name: FlexStart - v1.4.0
* Template URL: https://bootstrapmade.com/flexstart-bootstrap-startup-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
  --fontFamily: "Nunito", sans-serif;
  --bodyFontFamily: "Open Sans", sans-serif;
  --FAQFontFamily: "Poppins", sans-serif;

  --bodyColor: #444444;
  --mainColor: #128045;
  --lightColor: #53e974;
  --lightColorDimmed: rgba(83, 233, 116, 0.50);
  --darkColor: #094826;
  --darkColorDimmed: rgba(9, 72, 38, 0.75);
  --helpNoteColor: #666;
  --helpHighLightColor: #333;
  --footerColor: #e1ecff;
  --white: #fff;
  --black: #000;
  --red: red;
  --blue: blue;

  --xmasColor: #D6001C;

  --BGColor: #ffa70f;
  --BGColorDimmed: rgba(255, 167, 15, 0.35);
  --BGHelp: #e6eae1;
  --BGHelpAssumption: #d3f3c3;
  --BGHelpTable: #bcc0b8;
  --BGExampleTable: #ccf7c8;

  --BGGradient: linear-gradient(to bottom right, var(--darkColor), var(--lightColor));
}

body {
  font-family: var(--bodyFontFamily);
  color: var(--darkColor);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fontFamily);
}

code {
  color: var(--darkColor);
  font-size: 100%;
  font-weight:700;
}

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

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: var(--mainColor);
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  color: var(--darkColor);
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------
.breadcrumbs {
  padding: 15px 0;
  background: var(--darkColor);
  min-height: 40px;
  margin-top: 82px;
  color: var(--white);
}

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

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol a {
  color: var(--white);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

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

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--lightColor);
  content: "/";
}
*/

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

.back-to-top i {
  font-size: 24px;
  color: var(--white);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--lightColor);
  color: var(--white);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

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

.header.header-scrolled {
  background: var(--white);
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--darkColor);
  font-family: var(--fontFamily);
  margin-top: 3px;
}

/*--------------------------------------------------------------
# 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 30px;
  font-family: var(--fontFamily);
  font-size: 16px;
  font-weight: 700;
  color: var(--darkColor);
  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(--BGColor);
}

.navbar .getstarted {
  background: var(--mainColor);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: var(--white);
}

.navbar .getstarted:hover {
  color: var(--white);
  background: #5969f3;
}

.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: var(--white);
  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;
  font-weight: 600;
}

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

.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%;
    color: var(--darkColor);
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: 100%;
    color: var(--darkColor);
  }
}

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

.mobile-nav-toggle.bi-x {
  color: var(--white);
}

@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, 22, 61, 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: var(--white);
  overflow-y: auto;
  transition: 0.3s;
}

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

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

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

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--white);
  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(--mainColor);
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 100vh;
  background: url(../img/hero-bg.png) top center no-repeat;
  background-size: cover;
}

.hero h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: var(--darkColor);
}

.hero h2 {
  color: var(--mainColor);
  margin: 15px 0 0 0;
  font-size: 26px;
}

.hero .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--white);
  background: var(--mainColor);
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.hero .btn-get-started span {
  font-family: var(--fontFamily);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .hero-img {
  text-align: right;
}

.hero .hero-testimony {
  background-color: var(--BGColorDimmed);
  color: var(--darkColor);
  margin-top: 10px;
  border-radius: 10px;;
  text-align: left;
  font-size: small;
  font-style: italic;
  padding: 10px 15px 1px 15px;
}
.hero .hero-testimony .author {
  font-style: normal;
  margin-bottom: 0;
}
.hero .hero-testimony .company {
  font-style: normal;
  font-weight: bold;
  margin-top: 0;
}

.hero .btn-statistics {
  font-size: 18px;
  transition: 0.5s;
  margin-top: 10px;
  margin-left: 40px;
  color: var(--mainColor);
}

.hero .btn-statistics:hover {
  color: var(--BGColor);
  font-weight: bold;
}

.hero .btn-watch-video i {
  color: var(--mainColor);
  font-size: 40px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video {
  font-size: 22px;
  transition: 0.5s;
  margin-top: 35px;
  margin-left: 0px;
  color: var(--mainColor);
}

.hero .btn-watch-video:hover {
  color: var(--BGColor);
}

.hero a.email {
  color: var(--white);
  font-weight: 600;
  background: var(--BGColor);
  border-radius: 5px;
  padding: 2px 10px;
}

.hero a.email:hover {
  color: var(--xmasColor);
  font-weight: 700;
}

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

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
  }
  .hero .hero-img {
    text-align: center;
    margin-top: 80px;
  }
  .hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero h2 {
    font-size: 24px;
  }
  .hero .hero-img img {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  background-color: #f6f9ff;
  padding: 40px;
}

.about h3 {
  padding-top: 30px;
  font-size: 12px;
  font-weight: 700;
  color: var(--darkColor);
  text-transform: uppercase;
}

.about h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--darkColor);
}

.about p {
  margin: 5px 0 10px 0;
  line-height: 24px;
  color: var(--mainColor);
}

.about ul {
  color: var(--mainColor);
}

.about .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--white);
  background: var(--mainColor);
  box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}

.about .btn-read-more span {
  font-family: var(--fontFamily);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .btn-read-more:hover i {
  transform: translateX(5px);
}



/*--------------------------------------------------------------
# Workbooks
--------------------------------------------------------------*/
.workbooks .workbook-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  height: 100%;
  padding: 20px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.workbooks .workbook-box .icon {
  font-size: 20px;
  padding: 40px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  /* display: inline-block; */
  line-height: 0;
  transition: 0.3s;
}

.workbooks .workbook-box h3 {
  color: #444444;
  font-weight: 700;
}

.workbooks .workbook-box .download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.workbooks .workbook-box .download i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.workbooks .workbook-box.blue {
  border-bottom: 3px solid #2db6fa;
}

.workbooks .workbook-box.blue .icon {
  color: #2db6fa;
  background: #dbf3fe;
}

.workbooks .workbook-box.blue .download {
  color: #2db6fa;
}

.workbooks .workbook-box.blue:hover {
  background: #2db6fa;
}

.workbooks .workbook-box.orange {
  border-bottom: 3px solid #f68c09;
}

.workbooks .workbook-box.orange .icon {
  color: #f68c09;
  background: #fde3c4;
}

.workbooks .workbook-box.orange .download {
  color: #f68c09;
}

.workbooks .workbook-box.orange:hover {
  background: #f68c09;
}

.workbooks .workbook-box.green {
  border-bottom: 3px solid #08da4e;
}

.workbooks .workbook-box.green .icon {
  color: #08da4e;
  background: #cffddf;
}

.workbooks .workbook-box.green .download {
  color: var(--BGColor);
}

.workbooks .workbook-box.green .download:hover {
  color: black;
  /* font-size: 1.2em; */
}

/* .workbooks .workbook-box.green:hover {
  background: #08da4e;
} */

.workbooks .workbook-box.red {
  border-bottom: 3px solid #e9222c;
}

.workbooks .workbook-box.red .icon {
  color: #e9222c;
  background: #fef7f8;
}

.workbooks .workbook-box.red .download {
  color: #e9222c;
}

.workbooks .workbook-box.red:hover {
  background: #e9222c;
}

.workbooks .workbook-box.purple {
  border-bottom: 3px solid #b50edf;
}

.workbooks .workbook-box.purple .icon {
  color: #b50edf;
  background: #f8e4fd;
}

.workbooks .workbook-box.purple .download {
  color: #b50edf;
}

.workbooks .workbook-box.purple:hover {
  background: #b50edf;
}

.workbooks .workbook-box.pink {
  border-bottom: 3px solid #f51f9c;
}

.workbooks .workbook-box.pink .icon {
  color: #f51f9c;
  background: #feecf7;
}

.workbooks .workbook-box.pink .download {
  color: #f51f9c;
}

.workbooks .workbook-box.pink:hover {
  background: #f51f9c;
}

/* .workbooks .workbook-box:hover h3, .workbooks .workbook-box:hover p, .workbooks .workbook-box:hover .download {
  color: #fff;
} */

/* .workbooks .workbook-box:hover .icon {
  background: #fff;
} */

.workbooks .bullet {
  margin-bottom: 5px;
}

.workbooks .workbook-box.green p.bullet:hover {
  background-color: #cffddf;
  border-radius: 5px;
}

/*--------------------------------------------------------------
# Tutorials (from the Medicio BootstrapMade template)
--------------------------------------------------------------*/
.tutorials h4 {
  color: var(--mainColor);
}

.tutorials .icon-box h4 {
  color: var(--darkColor);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 0 15px;
}

.tutorials .icon-box i {
  font-size: 48px;
  float: right;
  color: var(--darkColor);
}

.tutorials .icon-box i:not(.coming-soon):hover {
  font-size: 49px;
  color: var(--BGColor);
}

.tutorials .icon-box .col-1 {
  margin-top: 13px;
}

.tutorials .icon-box p {
  font-size: 15px;
  color: var(--darkColorDimmed);
  margin-left: 15px;
}

.tutorials .icon-box h4 {
  margin-top: 15px;
}

.tutorials .icon-box p:last-of-type {
  padding-bottom: 5px;
  margin-bottom: 10px;
  margin-left: 15px;
  border-bottom: 1px solid var(--darkColor);
}

.tutorials .icon-box .minutes {
  font-size: 12px;
  font-style: italic;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--darkColor);
}

.tutorials .icon-box .minutes-soon {
  color: var(--red);
}

.tutorials .image {
  background-position: top center;
  background-repeat: repeat-y;
  min-height: 260px;
}

.tutorials .new {
  border-radius: 12px;
  background-color: var(--BGColor);
  color: var(--mainColor);
  font-weight: 500;
  font-size: 60%;
  font-style: italic;
  padding: 1px 10px 1px 10px;
}

.tutorials a.btn-download,
.help a.btn-download
 {
  font-size: 12px;
  background: var(--BGColor);
  text-align: right;
  padding: 5px 10px;
  margin: 0 0 50px 0;
  border-radius: 6px;
}

.tutorials a.btn-download:hover,
.help a.btn-download:hover {
  color: var(--white);
}

/*--------------------------------------------------------------
# Free Trial (and Download)
--------------------------------------------------------------*/
#free-trial {
  background-image: var(--BGGradient);
  margin-bottom: 200px;
}

#btn-free-trial {
  background: var(--BGColor);
  margin-top: 20px;
}

.free-trial {
  overflow: hidden;
}

.free-trial .nav-tabs {
  border: 0;
}

.free-trial .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--white);
  border-radius: 0;
  border-right: 2px solid var(--BGColor);
  font-weight: 600;
  font-size: 15px;
}

.free-trial .nav-link:hover {
  color: var(--BGColor);
}

.free-trial .nav-link.active {
  color: white;
  background: var(--BGColor);
  border-color: var(--BGColor);
}

.free-trial .nav-link:hover {
  border-color: var(--BGColor);
}

.free-trial .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.free-trial .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.free-trial h2, .free-trial li {
  color: var(--white);
}

.free-trial .section-title p {
  color: #bbb;
}

.free-trial p .instructions a {
  color: var(--white);
  background: var(--BGColor);
}

.free-trial .details p {
  color: var(--white);
}

.free-trial .details p .instructions {
  margin-top: 0;
  margin-bottom: 0;
}

.free-trial .details p:last-child {
  margin-bottom: 0;
}

.free-trial .btn-get-started {
  margin-top: 0px;
  margin-bottom: 20px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--white);
  background: var(--BGColor);
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.free-trial .btn-get-started span {
  font-family: var(--fontFamily);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.free-trial .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.free-trial .btn-get-started:hover i {
  transform: translateX(5px);
}

.free-trial a {
  color: var(--BGColor);
  font-weight: 600;
  padding: 0 0 0 0;
}

.free-trial a:hover {
  color: var(--white);
}

@media (max-width: 992px) {
  .free-trial .nav-link {
    border: 0;
    padding: 15px;
  }
}

/*--------------------------------------------------------------
# F.A.Q - NEW (remember)
--------------------------------------------------------------*/
.faq {
  background: #f5faf0;
}

.faq .section-title h2 {
  background: var(--lightColor);
}

.faq .faq-list {
  padding: 0 100px;
}

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

.faq .faq-list li:not + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: var(--white);
  border-radius: 4px;
  position: relative;
}

.faq ul.faq-answer-list {
  padding: 0;
  list-style-type: disc;
}

.faq ul.faq-answer-list li {
  margin: 0 0 0 50px;
  padding: 0 0 0 20px;
}

.faq .faq-list a:not(.email) {
  display: block;
  position: relative;
  font-family: var(--FAQFontFamily);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: var(--lightColor);
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 30px;
}

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

.faq .faq-list a.active {
  color: var(--lightColor);
}

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

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

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}
.faq p a.email {
  color: var(--mainColor);
  background: var(--BGColor);
  border-radius: 5px;
  padding: 0 10px;
}

.faq p a.email:hover {
  color: var(--white);
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------
.contact .info-box {
  color: var(--bodyColor);
  background: #fafbff;
  padding: 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: var(--mainColor);
}

.contact .info-box h3 {
  font-size: 20px;
  color: var(--darkColor);
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: #fafbff;
  padding: 30px;
  height: 100%;
}

.contact .php-email-form .error-message {
  display: none;
  color: var(--white);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: var(--white);
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--white);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: var(--mainColor);
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--mainColor);
  border: 0;
  padding: 10px 30px;
  color: var(--white);
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #5969f3;
}
*/

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--mainColor);
  background: #f6f9ff;
  padding: 0 0 30px 0;
  font-size: 14px;
}

.footer .footer-top {
  background: white url(../img/footer-bg.png) no-repeat right top;
  background-size: contain;
  border-top: 1px solid var(--footerColor);
  border-bottom: 1px solid var(--footerColor);
  padding: 60px 0 30px 0;
}

@media (max-width: 992px) {
  .footer .footer-top {
    background-position: center bottom;
  }
}

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

.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
  color: var(--darkColor);
}

.footer .footer-top .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--fontFamily);
  margin-top: 3px;
}

.footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--fontFamily);
}

.footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--darkColor);
  text-transform: uppercase;
  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: #d0d4fc;
  font-size: 12px;
  line-height: 0;
}

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

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

.footer .footer-links a {
  transition: 0.2s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links a:hover {
  color: var(--BGColor);
  font-weight: 600;
}

.footer .footer-top .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: var(--darkColor);
}

.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--darkColor);
}

.footer h5.smarter {
  color: var(--mainColor);
  padding-left: 45px;
}

/*--------------------------------------------------------------
# Help (help_on_functions called from the ActuarialExcelAddin)
--------------------------------------------------------------*/

section.help {
  padding-top: 20px;
}

.help {
  background: var(--BGHelp);
}

.help .help-example {
  margin: 0;
  padding: 0 0 0 15px;
  background-color: var(--BGExampleTable);
}

.help .help-muted {
  font-style: italic;
  font-weight: 300;
}

.help .help-example .help-example-title {
  margin-bottom: 20px;
}

.help .help-example .help-example-title p,
.help .help-example .help-example-title dl,
.help .help-example .help-example-title ol {
  margin-bottom: 0;
}

.help .help-example .help-example-line p {
  margin: 0 0 0 0;
  font-size:85%;
}

.help .help-example-answer {
  font-size: 95%;
  font-weight: 600;
}

.help .help-example .help-example-line p::first-line {
  margin-top: 20px;
}

.help .help-table {
  margin: 0;
  padding: 0 0 0 15px;
  background-color: var(--BGHelpTable);
}

.help .assumption {
  background: var(--BGHelpAssumption);
}

.help .help-table .help-table-title {
  font-weight: 600;
  font-size: 130%;
  font-family: var(--fontFamily);
  color: var(--darkColor);
}

.help .help-required {
  color: var(--darkColor);
}
.help .help-param-required {
  font-weight: 600;
}
.help .help-param {
  font-family: 'Courier New', monospace;
  font-weight: 800;
  color: red;
}

.help a {
  font-size: 36px;
  color: var(--lightColor);
}

.help a:hover {
  color: var(--BGColor);
}

.help a.formula {
  font-size: 24px;
  color: blue;
}

.help a.formula:hover {
  color: var(--BGColor);
}

.help p.function-definition a,
.help div.function-definition a {
  font-size: inherit;
  color: blue;
  text-decoration: underline;
}

.help p.function-definition a:hover,
.help div.function-definition a:hover {
  font-weight: 600;
}
.help dl {
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.help dl.left-margin,
.help p.left-margin  {
  margin: 35px;
}
.help dt {
  float: left;
  width: 15%;
  /* adjust the width; make sure the total of both is 100% */
  padding: 0;
  margin: 0;
}
.help dd {
  float: left;
  width: 85%;
  /* adjust the width; make sure the total of both is 100% */
  padding: 0;
  margin: 0;
}

.help .note {
  font-size: smaller;
  color: var(--helpNoteColor);
}

.help .blue {
  color: blue;
  text-align: center;
}

.help .blue-footnote {
  color: blue;
  margin-bottom: 0;
}

.help .highlight {
  /* color: var(--helpNoteColor); */
  color: var(--mainColor);
  font-weight: 600;
}

.help .right {
  text-align: right;
  font-size: 90%;
  font-style: italic;
}

.help .see-also {
  margin-left: 50px;
  margin-bottom: 0;
  font-size: 90%;
  font-style: italic;
}

.help p.see-also a,
.help div.see-also a {
  font-size: inherit;
  color: blue;
  text-decoration: underline;
}

.help p.see-also a:hover,
.help div.see-alse a:hover {
  font-weight: 600;
}

.help a.btn-download
 {
  font-size: 12px;
  font-weight: bold;
  color: var(--darkColor);
  background: var(--BGColor);
  padding: 5px 10px;
  border-radius: 6px;
}

.help a.btn-download:hover {
  color: var(--white);
}

.carousel {
  padding-bottom: 30px;
}

.testimonial .testimonial-text::before {
  content: "bozo";
}


/*--------------------------------------------------------------
# Statistics
--------------------------------------------------------------*/

.statistics form
 {
  font-size: 1.1rem;
 }

.statistics .title {
  background-color: var(--lightColorDimmed);
  padding: 10px 20px 1px 20px;
  border-radius: 10px;; 
}
.statistics button
 {
  font-size: 20px;
  background: var(--BGColor);
  text-align: right;
  padding: 5px 10px;
  margin: 0 0 50px 0;
  border-radius: 6px;
}

.statistics button:hover {
  /* background: var(--lightColor); */
  color: var(--white);
}

.statistics table {
  text-align: right;
}

.statistics table tr {
  line-height: 10px;
}

.statistics table td:nth-child(1),
.statistics table th:nth-child(1) {
  text-align: left;
}

.statistics a {
  text-decoration: underline;   
}

.statistics .quote {
  font-size: 0.85rem;
  font-style: italic;
}

.statistics table .right-align td {
  text-align: right;
}

.statistics .error-message {
  background-color: var(--red);
}

.statistics input[type="number"] {
  text-align: right;
}

.statistics input[type="checkbox"] {
  height:25px;
  width:25px;
  border: 2px solid #000;
  text-align: center;
}

.statistics td, .statistics th {
  vertical-align: middle;
}

.statistics .table-performance tr {
  height: 2.5em;
}

.spinner {
  border: 16px solid #f3f3f3;
  border-top: 16px solid var(--BGColor);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  display: none;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.video-link {
  display: inline-block;
  background: linear-gradient(135deg, #128045, #53e974);
  color: white;
  margin-top: 30px;
  padding: 0px 24px 0px 10px;
  border-radius: 8px;
  font-size: 25px;
  text-decoration: none;
  font-weight: 400;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-link:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: black;
}

.video-badge {
  padding: 10px;
  background-color: var(--BGColor);
  border-radius: 10px;
  transform: rotate(-45deg);
  transform-origin: left top;
  display: inline-block;
  color: white;
  font-size: 25px;
  font-weight: normal;
}

.video-link span.video-badge:hover {
  color:white;
}

a.video-link,
a.video-link:hover,
a.video-link:visited,
a.video-link:active {
  text-decoration: none;
}
