/* GENERAL */

/* body {
  font-family: "capitana", neue-haas-unica;
  padding: 0;
  margin: 0;
  background-color: #ffffff;
  height: 100%;
  color: #414141;
}

a {
  text-decoration: none;
} */

/* Header */

.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

.header-container {
  margin-left: 50px;
  margin-right: 50px;
}

.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 70px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  margin-top: 3px;
}

.liv-navbar {
  padding: 0;
}

.liv-navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.liv-navbar li {
  position: relative;
}
.liv-navbar a i,
.liv-navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.liv-navbar .active,
.liv-navbar .active:focus,
.liv-navbar li:hover > a {
  color: #4154f1;
}

.liv-navbar .getstarted {
  background: #4154f1;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.liv-navbar .getstarted:hover {
  color: #fff;
  background: #5969f3;
}

.liv-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;
}

.liv-navbar .dropdown ul li {
  min-width: 200px;
}

.liv-navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.liv-navbar .dropdown ul a i {
  font-size: 12px;
}

.liv-navbar .dropdown ul a:hover,
.liv-navbar .dropdown ul .active:hover,
.liv-navbar .dropdown ul li:hover > a {
  color: #4154f1;
}

.liv-navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.liv-navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.liv-navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .liv-navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .liv-navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

.nav-user-type-links {
  display: inline-block;
  background: rgba(187, 190, 220, 0.3);
  border: 1px solid rgba(187, 190, 220, 0.4);
  box-shadow: 0px 12px 24px -8px rgba(0, 0, 0, 0.065);
  border-radius: 320px;
}

.nav-user-type-links a {
  font-family: 'neue-haas-unica';
  font-size: 15;
  font-weight: 350;
  letter-spacing: 1px;
  line-height: 14px;
  color: var(--blue-indigo);
  padding: 14px 20px;
}

.nav-user-type-links a:hover {
  background: #dddeed;
  text-decoration: underline;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.nav-user-type-links a:first-child {
  padding-left: 28px;
  border-radius: 320px 0 0 320px;
}

.nav-user-type-links a:last-child {
  padding-right: 28px;
  border-radius: 0 320px 320px 0;
}

.nav-user-type-links a:not(:last-child) {
  border-right: 1px solid rgba(187, 190, 220, 0.4);
}

#get-quote {
  font-weight: 700;
  border: 4px solid var(--teal-bright);
  border-radius: 20px 10px;
  padding: 9px 16px;
}

.liv-btn-primary {
  text-align: center;
  background: var(--teal-bright);
  padding: 13px 20px;
  border-radius: 20px 10px;
  border-style: none;
  color: var(--blue-indigo);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
}

.liv-btn-primary:hover {
  background: var(--teal-light);
  color: var(--blue-dark);
  box-shadow: 0px 12px 24px -8px rgba(15, 40, 91, 0.18);
}

.liv-btn-primary:disabled {
  background: var(--teal-bright);
  color: var(--blue-indigo);
  opacity: 0.3;
  box-shadow: none;
}

.liv-btn-secondary {
  text-align: center;
  background: var(--blue-indigo);
  padding: 13px 20px;
  border-radius: 20px 10px;
  border-style: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
}

.liv-btn-secondary:hover {
  background: #06338e;
  box-shadow: 0px 12px 24px -8px rgba(15, 40, 91, 0.3);
}

.liv-btn-secondary:disabled {
  background: var(--blue-indigo);
  color: #b0b8c7;
  opacity: 0.5;
}

.liv-btn-nav {
  font-family: 'capitana';
  font-weight: 500;
  font-size: 15px;
  color: var(--blue-indigo);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  padding-top: 4px;
  border-bottom: 4px solid transparent;
}

.liv-btn-nav:hover {
  color: #414141;
  border-bottom: 4px solid var(--teal-bright);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.liv-btn-nav:not(:last-child) {
  margin-right: 30px;
}

#top-nav-container {
  margin-right: 2.25rem;
}

.liv-mobile-nav-toggle {
  color: #012970;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  margin-right: 10px;
}

.liv-mobile-nav-toggle.bi-x {
  color: #fff;
}

.liv-navbar-mobile {
  visibility: hidden;
  position: fixed;
  overflow: scroll;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #00e3de;
  padding: 30px;
  padding-top: 75px;
  display: flex;
  flex-direction: column;
}

.liv-navbar-mobile .liv-mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 15px;
  color: #012970;
  font-size: 36px;
  cursor: pointer;
  padding: 0 9px 0 9px;
}

.liv-navbar-mobile > a {
  font-family: 'capitana';
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 22.26px;
  color: var(--blue-indigo);
  text-transform: uppercase;
  padding: 5px 0 5px 0;
  margin-bottom: 37px;
}

.liv-navbar-mobile div {
  display: inherit;
  justify-content: center;
  margin-bottom: 37px;
}

.liv-navbar-mobile .liv-navbar-mobile-user-type-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 12px 24px -8px rgba(15, 40, 91, 0.1);
}

.liv-navbar-mobile .liv-navbar-mobile-user-type-links a {
  width: 100%;
  text-align: center;
  font-family: 'neue-haas-unica';
  font-size: 16px;
  font-weight: 350;
  line-height: 14px;
  letter-spacing: 1px;
  color: var(--blue-indigo);
  opacity: 0.9;
  padding-top: 25px;
  padding-bottom: 25px;
}

.liv-navbar-mobile .liv-navbar-mobile-user-type-links a:not(:last-child) {
  border-bottom: 2px solid #41414110;
}

.liv-navbar-mobile.active {
  transition: 0.3s;
  visibility: visible;
}

/* FOOTER */

.footer {
  background: var(--blue-indigo);
  padding-bottom: 22px;
  font-size: 12px;
}

.footer .footer-newsletter {
  padding: 50px 0;
  background: #f6f9ff;
  border-top: 1px solid #e1ecff;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

.footer .footer-newsletter form {
  margin-top: 20px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  border: 1px solid #e1ecff;
}

.footer .footer-newsletter form input[type='email'],
.footer .footer-newsletter form input[type='text'] {
  border: 0;
  padding: 8px;
  width: calc(100% - 140px);
}

.footer .footer-newsletter form input[type='submit'] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 30px;
  margin: 3px;
  background: #4154f1;
  color: #fff;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter form input[type='submit']:hover {
  background: #5969f3;
}

.footer .footer-top {
  background: var(--blue-indigo);
  background-size: contain;
}

@media (max-width: 992px) {
  .footer .footer-top {
    background-position: center bottom;
  }

  .header .logo img {
    max-height: 47px;
    margin-right: 6px;
  }
}

.footer .footer-top .footer-info {
  justify-content: center;
}

.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}

.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;
  color: #fff;
  margin-top: 3px;
}

.footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

.footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
  color: #012970;
}

.footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}

.footer .footer-top .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer .footer-top .footer-links div {
  padding: 0px 10px;
  margin-bottom: 1.5rem !important;
  cursor: pointer;
}
.footer .footer-top .footer-links div a {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'capitana';
  letter-spacing: 2px;
  color: #fff;
}

.footer .footer-top .footer-links div:hover a {
  text-decoration: underline;
}

.footer .footer-top .footer-links div:not(:last-child) {
  margin-right: 10px;
}

.footer .footer-top .footer-user-type-links {
  display: inline-block;
  background-color: #ffffff14;
  padding: 14px 20px;
  box-shadow: 0px 12px 24px -8px rgba(0, 0, 0, 0.2);
  border-radius: 320px;
}

.footer .footer-top .footer-user-type-links a {
  font-family: 'neue-haas-unica';
  font-size: 14px;
  letter-spacing: 1px;
  color: #ffffff95;
  /* opacity: 0.8; */
  padding: 0px 10px;
}

.footer .footer-top .footer-user-type-links a:hover {
  text-decoration: underline;
}

.footer .footer-top .footer-user-type-links a:not(:last-child) {
  margin-right: 20px;
}

.footer .footer-top .footer-linkedin-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .footer-top .footer-linkedin-link a {
  font-family: 'capitana';
  font-size: 15px;
  letter-spacing: 1px;
  color: #fff;
}

.footer .footer-top .footer-linkedin-link a:hover {
  text-decoration: underline;
}

.footer .footer-top .footer-info-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer .footer-top .footer-info-legal div {
  font-family: 'neue-haas-unica';
  font-size: 14px;
  letter-spacing: 1px;
  color: #ffffff85;
  /* opacity: 0.65; */
  margin-left: 0.5rem;
}
.footer .footer-top .footer-contact p {
  line-height: 26px;
}

#back-to-top-btn.hidden {
  display: none !important;
}

/* RESPONSIVE STYLING */
@media (max-width: 600px) {
  .app-logo {
    margin-left: 10px;
  }
}

@media (max-width: 744px) {
  .header-container {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (max-width: 1050px) {
  .liv-mobile-nav-toggle {
    display: block;
  }

  #liv-navbar-links {
    display: none;
  }
}
