@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
}
body {
  font-family: 'Roboto', sans-serif;
}

:root {
  --deep-turquoise: #016e79;
  --blood-orange: #ff4b00;
  --charcoal-grey: #36464f;
  --pale-grey: #f8fafb;
  --teal-blue: #009cac;
  --cool-grey: #9aa2a7;
  --very-light-pink: #fcede7;
  --white: #ffffff;
  --dark-teal: #004249;
  --deep-orange: #da4000;
  --duck-egg-blue: #ccebee;
  --primary: var(--blood-orange);
  --secondary: var(--teal-blue);
}

.button {
  --normal: var(--blood-orange);
  --hover: var(--blood-orange);
  --pressed: var(--deep-orange);
  border: 1px solid var(--normal);
  text-transform: uppercase;
  border-radius: 20px;
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 1px;
  min-width: 128px;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
}

.button--size-small {
  min-width: 154px;
  padding-top: 0.35em;
  padding-bottom: 0.35em;
}

.button--style-outline {
  color: var(--normal);
  background-color: transparent;
}

.button--style-outline:hover {
  color: #fff;
  border: solid 1px var(--hover);
  background-color: var(--hover);
}

.button--style-outline:not(:disabled):not(.disabled):active {
  color: #fff;
  border: solid 1px var(--pressed);
  background-color: var(--pressed);
}

.button--style-outline:not(:disabled):not(.disabled):focus {
  box-shadow: 0 0 0 0.2rem rgba(218, 64, 0, 0.5);
}

.button--color-gray {
  --normal: var(--cool-grey);
  --hover: var(--cool-grey);
  --pressed: var(--charcoal-grey);
}

.button--color-secondary {
  --normal: var(--teal-blue);
  --hover: var(--deep-turquoise);
  --pressed: var(--dark-teal);
}

.button-large {
  border-radius: 25px;
  line-height: 1.31;
  letter-spacing: 1.33px;
  text-transform: uppercase;
  padding: 0.9rem 3.25rem;
  white-space: nowrap;
}

.button-large__icon {
  margin-right: 0.25rem;
}

.button-large--secondary {
  box-shadow: 15px 15px 40px 0 rgba(3, 39, 97, 0.2);
  background-color: var(--teal-blue);
  border-color: var(--teal-blue);
  color: var(--pale-grey);
}

.button-large--secondary:hover {
  background-color: var(--deep-turquoise);
  border-color: var(--deep-turquoise);
  color: var(--pale-grey);
}

.button-large--secondary:not(:disabled):not(.disabled):active {
  background-color: var(--dark-teal);
  border-color: var(--dark-teal);
  color: var(--pale-grey);
}

.button-large--secondary:not(:disabled):not(.disabled):focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 66, 73, 0.5);
  color: var(--pale-grey);
}

.button-large--secondary-light {
  background-color: #e6eef1;
  border-color: #e6eef1;
  color: var(--teal-blue);
}

.button-large--secondary-light:hover {
  background-color: var(--teal-blue);
  border-color: var(--white);
  color: var(--white);
}

.button-large--secondary-light:not(:disabled):not(.disabled):active {
  background-color: var(--deep-turquoise);
  border-color: var(--deep-turquoise);
  color: var(--white);
}

.button-large--secondary-light:not(:disabled):not(.disabled):focus {
  box-shadow: 0 0 0 0.2rem rgba(1, 110, 121, 0.5);
}

.button-large--primary-light {
  background-color: var(--very-light-pink);
  border-color: var(--very-light-pink);
  color: var(--blood-orange);
}

.button-large--primary-light:hover {
  background-color: var(--blood-orange);
  border-color: var(--blood-orange);
  color: var(--white);
}

.button-large--primary-light:not(:disabled):not(.disabled):active {
  background-color: var(--deep-orange);
  border-color: var(--deep-orange);
  color: var(--white);
}

.button-large--primary-light:not(:disabled):not(.disabled):focus {
  box-shadow: 0 0 0 0.2rem rgba(218, 64, 0, 0.5);
}

.button-large--primary-light.button-large--arrow-right:after {
  background: url(../img/icon-angle-right-primary.svg);
}

.button-large--arrow-right:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
  margin-left: 25px;
  width: 5px;
  height: 8px;
  background: url(../img/icon-angle-right.svg);
}

.button-large--arrow-right:hover:after,
.button-large--arrow-right:not(:disabled):not(.disabled):active:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='8' viewBox='0 0 5 8'%3E%3Cpath fill='%23ffffff' fill-rule='evenodd' d='M137.540191,14.2656387 L133.858926,17.89063 C133.712076,18.0375108 133.474558,18.0375108 133.327677,17.89063 L133.105815,17.6687678 C132.958934,17.521887 132.958934,17.2843693 133.105815,17.137519 L136.302676,14.0000143 L133.108928,10.8625096 C132.962077,10.7156593 132.962077,10.4781416 133.108928,10.3312608 L133.33082,10.1093986 C133.477701,9.96251783 133.715188,9.96251783 133.862069,10.1093986 L137.543304,13.7343899 C137.687042,13.8812707 137.687042,14.1187579 137.540191,14.2656387 Z' transform='translate(-133 -10)'/%3E%3C/svg%3E%0A");
}

.navbar {
  padding: 1.5rem 0;
  z-index: 1020;
}

@media (min-width: 768px) {
  .navbar {
    padding: 2.75rem 0;
  }
}
.navbar-brand {
  padding-top: 0;
}

.navbar .navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.57;
  letter-spacing: 0.5px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--charcoal-grey);
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--blood-orange);
}

.navbar-light .navbar-nav .nav-link:active {
  color: var(--deep-orange);
}

.navbar .navbar-nav .nav-link.dropdown-toggle {
  z-index: 1001;
  position: relative;
}

@media (min-width: 992px) {
  .navbar-expand-md .navbar-nav .nav-link {
    padding-left: 1.75em;
    padding-right: 1.75em;
  }
}
.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
}

@media (max-width: 767.98px) {
  .navbar-nav .dropdown-menu {
    display: block;
  }
}
.dropdown-toggle::after {
  width: 8px;
  height: 3px;
  background-image: url('../img/dropdown-toggle.svg');
  border: none;
}

.dropdown-item {
  opacity: 1;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--charcoal-grey);
}

.dropdown-item:hover {
  color: var(--blood-orange);
  background-color: transparent;
}

.dropdown-item:active {
  color: var(--deep-orange);
  background-color: transparent;
}

.dropdown-menu {
  min-width: 8rem;
  border-radius: 0 0 15px 15px;
  background-color: var(--white);
  border: none;
  top: -8px;
}

@media (min-width: 768px) {
  .dropdown-menu {
    padding: 2.75rem 0 0.8rem;
    box-shadow: 0 5px 20px 0 rgba(3, 39, 97, 0.1);
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .dropdown-menu {
    left: -15px;
  }
}
.text-secondary {
  color: var(--secondary) !important;
}

.font-weight-500 {
  font-weight: 500;
}

@media (max-width: 767px) {
  .navbar-dark {
    background-color: var(--charcoal-grey);
  }
}
.header-scrolled {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;

  @media (min-width: 768px) {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
.header-scrolled.navbar-dark {
  background-color: var(--charcoal-grey);
}
.navbar-dark .button {
  --normal: var(--white);
  --hover: var(--white);
}

.navbar-dark .button:hover {
  color: var(--charcoal-grey);
}

.navbar-dark .dropdown-menu {
  background-color: var(--charcoal-grey);
}

@media (min-width: 768px) {
  .navbar-dark .dropdown-menu {
    /*padding: 2.75rem 0 0.8rem;*/
    box-shadow: 0 5px 20px 0 rgba(255, 255, 255, 0.1);
  }
}
.navbar-dark .dropdown-item {
  color: var(--cool-grey);
  opacity: 1;
}

.navbar-dark .dropdown-item:hover {
  color: var(--white);
  background-color: transparent;
}

.navbar-dark .dropdown-item:active {
  color: var(--white);
  background-color: transparent;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--cool-grey);
}

.home-banner {
  padding-bottom: 9%;
}

/*.home-banner img {
  max-height: calc(100vh - 548px);
}*/

.home-banner__title {
  font-weight: 500;
  color: var(--charcoal-grey);
  max-width: 14em;
  font-size: 29px;
}

@media (min-width: 768px) {
  .home-banner__title {
    font-size: 55px;
  }
}
.home-banner__text {
  font-size: 18px;
  max-width: 24em;
  line-height: 1.44;
  letter-spacing: 0.2px;
  color: var(--cool-grey);
}

.home-banner__explore {
  font-size: 12px;
  letter-spacing: 1.97px;
  color: rgba(46, 56, 77, 0.5);
}

.home-banner__explore:hover {
  color: inherit;
}

.home-banner__explore:after {
  content: '';
  width: 9px;
  height: 14px;
  display: block;
  margin: 0 auto;
  background: url(../img/arrow-down.svg);
  margin-top: 10px;
}

.bg-gray {
  background-color: #fafafa;
}

.feature-section {
  --bg: #ff6f33;
  --border: var(--primary);
  padding-top: 9%;
  padding-bottom: 9%;
}

.feature-section__icon {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .feature-section__icon {
    margin-bottom: 38px;
  }
}
.feature-section__subhead {
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(54, 70, 79, 0.5);
  margin-bottom: 5px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .feature-section__subhead {
    margin-bottom: 28px;
    font-size: 18px;
  }
}
.feature-section__title {
  font-size: 32px;
  font-weight: 500;
  color: var(--charcoal-grey);
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .feature-section__title {
    margin-bottom: 60px;
    font-size: 50px;
  }
}
.feature-section__text {
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: rgba(54, 70, 79, 0.5);
  margin-bottom: 2rem;
}

.feature-section__button--narrow {
  padding-left: 1em;
  padding-right: 1em;
  flex-grow: 1;
  flex-basis: 0;
}

.feature-section__button--narrow:after {
  margin-left: 5px;
}

.feature-section__button--narrow:first-child {
  margin-right: 20px;
}

.feature-section__buttons {
  display: flex;
  justify-content: space-between;
}

.feature-section--secondary {
  --bg: #4db9c5;
  --border: var(--teal-blue);
}

@media (min-width: 1200px) {
  .feature-section__illustration {
    position: absolute;
  }
}
@media (min-width: 1200px) {
  .feature-section--inventory .feature-section__illustration {
    top: -215px;
    left: 73px;
  }
}
@media (min-width: 1200px) {
  .feature-section--warehousing .feature-section__illustration {
    top: -20px;
    left: 75px;
  }
}
@media (min-width: 1200px) {
  .feature-section--reporting .feature-section__illustration {
    top: -20px;
    left: 75px;
  }
}
@media (min-width: 1200px) {
  .feature-section--manufacturing .feature-section__illustration {
    right: 61px;
    top: -25px;
  }
}
@media (min-width: 1200px) {
  .feature-section--sales .feature-section__illustration {
    top: -25px;
    left: -10px;
  }
}
.section-distillery {
  padding-top: 10%;
  padding-bottom: 7.5%;
  background: linear-gradient(to bottom, #fafafa 45.5%, transparent 45.5%);
}

.section-distillery .container {
  background-color: var(--charcoal-grey);
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 576px) {
  .section-distillery .container {
    border-radius: 21px;
  }
}
@media (min-width: 768px) {
  .section-distillery .container {
    /*padding-top: 110px;
    padding-bottom: 110px;*/
    padding-left: 6%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-distillery .container {
    max-width: 600px;
  }
}
@media (min-width: 992px) {
  .section-distillery .container {
    max-width: 911px;
  }
}
.section-distillery__content {
  max-width: 460px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .section-distillery__illustration {
    margin-left: -55px;
  }
}
@media (min-width: 992px) {
  .section-distillery__illustration {
    position: absolute;
    bottom: -95px;
    right: -135px;
  }
}
.section-distillery__title {
  font-size: 28px;
}

@media (min-width: 768px) {
  .section-distillery__title {
    font-size: 34px;
  }
}
.section-distillery .form-control {
  border-radius: 25px;
  background-color: var(--white);
  line-height: 1.5;
  letter-spacing: 0.2px;
  padding-left: 20px;
  padding-right: 20px;
  height: 50px;
}

.section-distillery .form-control::placeholder {
  color: rgba(54, 70, 79, 0.5);
}

.section-distillery .input-group {
  box-shadow: 15px 15px 40px 0 rgba(2, 20, 48, 0.48);
  border-radius: 25px;
  margin-right: 20px;
}

.section-distillery .btn {
  border-radius: 25px;
  background-color: var(--teal-blue);
  color: #fff;
  text-transform: uppercase;
  height: 50px;
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 768px) {
  .section-distillery .btn {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/*.section-distillery .btn::before {
  content: '';
  display: inline-block;
  margin-bottom: -2px;
  width: 16px;
  height: 16px;
  background: url('../img/icon-download.svg');
}*/

@media (min-width: 768px) {
  .section-distillery .btn::before {
    margin-right: 15px;
  }
}
.section-our-clients {
  font-size: 34px;
  color: var(--charcoal-grey);
  padding-bottom: 7%;
}

.section-our-clients .container {
  max-width: 830px;
}

.section-our-clients__title {
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .section-our-clients__title {
    margin-bottom: 65px;
  }
}
.section-our-clients .carousel {
  margin-bottom: 65px;
}

.section-our-clients .carousel-control-prev,
.section-our-clients .carousel-control-next {
  opacity: 1;
  stroke: #9aa2a7;
}

.section-our-clients .carousel-control-prev:hover,
.section-our-clients .carousel-control-next:hover {
  stroke: var(--teal-blue);
}

.section-our-clients .carousel-control-prev:active,
.section-our-clients .carousel-control-next:active {
  stroke: var(--deep-turquoise);
}

@media (max-width: 767.98px) {
  .section-our-clients .carousel-control-prev {
    margin-left: -15px;
  }
}
@media (max-width: 767.98px) {
  .section-our-clients .carousel-control-next {
    margin-right: -15px;
  }
}
.section-our-clients .carousel-control-prev-icon,
.section-our-clients .carousel-control-next-icon {
  width: 19px;
  height: 32px;
  transform: translateY(-50%);
}

.section-our-clients__slide {
  margin: 0 auto;
  max-width: 450px;
  padding-left: 40px;
}

@media (max-width: 767.98px) {
  .section-our-clients__slide {
    padding-right: 40px;
  }
}
.section-our-clients__slide::before {
  content: '';
  width: 24px;
  height: 20px;
  background: url(../img/quote-mark.svg);
  position: absolute;
  left: 0;
}

.section-our-clients__slide .blockquote {
  font-size: 15px;
  letter-spacing: 0.2px;
  color: var(--cool-grey);
}

.section-our-clients__slide .truncate {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}

@media (min-width: 768px) {
  .section-our-clients__slide .blockquote {
    font-size: 18px;
  }
}
.section-our-clients__slide .media img {
  width: 72px;
  height: 72px;
}

.section-our-clients__slide .media-body {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: rgba(54, 70, 79, 0.5);
}

.footer {
  background-color: var(--charcoal-grey);
}

.footer__title {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 1.6px;
  color: var(--cool-grey);
  text-transform: uppercase;
  padding-top: 0.5rem;
}

.footer__features .nav-item {
  margin-bottom: 8px;
}

.footer__features .nav-link {
  padding-left: 0;
  opacity: 0.6;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--cool-grey);
}

.footer__features .nav-link:hover {
  color: var(--white);
}

.footer__features .nav-link:active {
  color: var(--very-light-pink);
}

@media (min-width: 768px) {
  .footer__side-menu {
    margin-left: -40px;
  }
}
.footer__side-menu .nav-item {
  margin-bottom: 10px;
}

.footer__side-menu .nav-link {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 1.6px;
  color: var(--cool-grey);
  text-transform: uppercase;
}

.footer__side-menu .nav-link:hover {
  color: var(--white);
}

.footer__side-menu .nav-link:active {
  color: var(--very-light-pink);
}

.footer-rights {
  background-color: #273339;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--cool-grey);
}
.footer-rights a {
  color: var(--cool-grey);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  border: solid 3px var(--border);
  background-color: var(--bg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-banner {
  /*background: url(../img/features-bg.svg) center -47px;*/
  padding: 110px 0 240px;
  background-color: var(--charcoal-grey);
}

.inventory-banner {
  background: url(../img/inventory-features-bg.svg) center -47px;
}

.purchasing-banner {
  background: url(../img/purchasing-features-bg.svg) center -47px;
}

.warehousing-banner {
  background: url(../img/warehousing-features-bg.svg) center -47px;
}

.manufacturing-banner {
  background: url(../img/manufactoring-features-bg.svg) center -47px;
}

.sales-banner {
  background: url(../img/salesand-crm-features-bg.svg) center -47px;
}

.reporting-banner {
  background: url(../img/reporting-features-bg.svg) center -47px;
}

@media (min-width: 768px) {
  .features-banner {
    padding-top: 160px;
    background-position-y: 2px;
  }
}
@media (min-width: 992px) {
  .features-banner {
    padding-bottom: 240px;
  }
}
.features-banner__icon {
  --bg: #4db9c5;
  --border: var(--teal-blue);
}

.features-banner__subhead {
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--white);
}

.features-banner__title {
  font-size: 37px;
  font-weight: 500;
  color: var(--white);
  max-width: 720px;
}

@media (min-width: 768px) {
  .features-banner__title {
    font-size: 55px;
  }
}
.features-banner__text {
  font-size: 18px;
  line-height: 1.44;
  letter-spacing: 0.2px;
  color: var(--white);
  max-width: 450px;
}

.features-benefits {
  transform: translateY(-30%);
  margin-bottom: -115px;
}

@media (min-width: 768px) {
  .features-benefits {
    margin-bottom: -90px;
  }
}
@media (min-width: 992px) {
  .features-benefits {
    transform: translateY(-50%);
    margin-bottom: 70px;
  }
}
.features-benefits__col-main {
  border-radius: 20px;
  box-shadow: 15px 15px 40px 0 rgba(3, 39, 97, 0.1);
  background-color: var(--white);
}

@media (min-width: 992px) {
  .features-benefits__col-main {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 49%;
    padding: 34px 40px !important;
  }
}
.features-benefits__col-main--inventory::after {
  content: '';
  position: absolute;
  left: 0;
  top: -62px;
  width: 122px;
  height: 85px;
  background: url(../img/inventory_illustration.png) center no-repeat;
  background-size: contain;
}

@media (min-width: 768px) {
  .features-benefits__col-main--inventory::after {
    left: -41px;
  }
}
.features-benefits__col-main--warehousing::after {
  content: '';
  position: absolute;
  left: 0;
  top: -42px;
  width: 192px;
  height: 58px;
  background: url(../img/warehousing-illustration.png) center no-repeat;
  background-size: contain;
}

@media (min-width: 768px) {
  .features-benefits__col-main--warehousing::after {
    left: -41px;
  }
}
.features-benefits__col-main--manufacturing::after {
  content: '';
  position: absolute;
  left: 0;
  top: -62px;
  width: 54px;
  height: 103px;
  background: url(../img/manufacturing-illustration.png) center no-repeat;
  background-size: contain;
}

@media (min-width: 768px) {
  .features-benefits__col-main--manufacturing::after {
    left: -21px;
  }
}
.features-benefits__col-main--sales::after {
  content: '';
  position: absolute;
  left: 0;
  top: -66px;
  width: 100px;
  height: 109px;
  background: url(../img/salesand-crm-illustration.png) center no-repeat;
  background-size: contain;
}

@media (min-width: 768px) {
  .features-benefits__col-main--sales::after {
    left: -31px;
  }
}
.features-benefits__col-main--reporting::after {
  content: '';
  position: absolute;
  left: 0;
  top: -49px;
  width: 104px;
  height: 73px;
  background: url(../img/reporting-illustration.png) center no-repeat;
  background-size: contain;
}

@media (min-width: 768px) {
  .features-benefits__col-main--reporting::after {
    left: -38px;
  }
}
.features-benefits__col-benefits {
  border-radius: 20px;
  box-shadow: 15px 15px 40px 0 rgba(3, 39, 97, 0.1);
  background-color: var(--teal-blue);
  padding: 34px 40px;
  z-index: -1;
}

@media (min-width: 992px) {
  .features-benefits__col-benefits {
    padding-left: 53% !important;
  }
}
.features-benefits__main-top-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.44;
  letter-spacing: 0.2px;
  color: var(--charcoal-grey);
  margin-bottom: 1.5em;
}

.features-benefits__main-text {
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: rgba(54, 70, 79, 0.5);
}

.features-benefits__title {
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--white);
  font-weight: 400;
}

.features-benefits__list {
  list-style-type: none;
  padding-left: 40px;
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: var(--white);
}

.features-benefits__list li {
  position: relative;
}

.features-benefits__list li::before {
  content: '';
  display: block;
  position: absolute;
  left: -40px;
  top: -3px;
  width: 25px;
  height: 25px;
  background: url(../img/checkmark.svg) center no-repeat;
}

.features-tabs {
  background-color: #fafafa;
}

.features-tabs .nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--charcoal-grey);
}

.features-tabs .nav .nav-link.active {
  color: var(--teal-blue);
}

@media (min-width: 768px) {
  .features-tabs .nav .nav-link.active::after {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--duck-egg-blue) url(../img/arrow-right.svg) center
      no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    z-index: 1;
  }
}
.features-tabs .tab-content {
  border-radius: 20px;
  box-shadow: 15px 15px 40px 0 rgba(3, 39, 97, 0.1);
  background-color: var(--white);
}

.tab-item-content__subhead {
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(54, 70, 79, 0.5);
}

@media (min-width: 768px) {
  .tab-item-content__subhead {
    font-size: 18px;
  }
}
.tab-item-content__title {
  font-size: 24px;
  color: var(--charcoal-grey);
}

@media (min-width: 768px) {
  .tab-item-content__title {
    font-size: 34px;
  }
}
.tab-item-content__text {
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: rgba(54, 70, 79, 0.5);
  margin: auto;
  max-width: 533px;
}

.tab-item-content--short {
  max-width: 100%;
  /*533px;*/
  /*border: solid 1px #36464f;*/
}

.tab-item-content img {
  border: solid 1px var(--cool-grey);
  border-radius: 10px;
}

@media (min-width: 992px) {
  .tab-item-content--long .tab-item-content__text {
    columns: 2;
    column-gap: 35px;
  }
}
.additional-features__title {
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 3px;
  color: var(--charcoal-grey);
}

.additional-features__number {
  background-color: var(--duck-egg-blue);
  font-size: 27px;
  color: #009cac;
  width: 65px;
  height: 65px;
  flex-basis: 65px;
  text-shadow: rgba(0, 156, 172, 0.3) 1px 1px, rgba(0, 156, 172, 0.3) 2px 2px;
}

.additional-features__text {
  color: rgba(54, 70, 79, 0.5);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: rgba(54, 70, 79, 0.5);
}

@media (min-width: 1200px) {
  .additional-features .row > *:not(:first-child)::before {
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--pale-grey);
  }
}
.schedule-demo {
  background-color: var(--teal-blue);
  color: var(--white);
}

.schedule-demo__main-text {
  font-size: 21px;
  line-height: normal;
  font-weight: 500;
}

@media (min-width: 768px) {
  .schedule-demo__main-text {
    font-size: 50px;
  }
}
.schedule-demo__text {
  font-weight: 500;
  line-height: 1.44;
  letter-spacing: 0.2px;
}

@media (min-width: 768px) {
  .schedule-demo__text {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .schedule-demo .row:after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    width: 2px;
    height: 350px;
    opacity: 0.2;
    background-color: var(--white);
  }
}
.rw-words {
  display: inline-block;
  vertical-align: top;
  text-indent: 10px;
  position: relative;
  width: 205px;
}

@media (min-width: 768px) {
  .rw-words {
    width: 371px;
  }
}
.rw-words-1 span {
  position: absolute;
  right: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-animation: rotateWord 24s linear infinite 0s;
  -ms-animation: rotateWord 24s linear infinite 0s;
  animation: rotateWord 24s linear infinite 0s;
}

.rw-words-1 span:nth-child(2) {
  -webkit-animation-delay: 3s;
  -ms-animation-delay: 3s;
  animation-delay: 3s;
}

.rw-words-1 span:nth-child(3) {
  -webkit-animation-delay: 6s;
  -ms-animation-delay: 6s;
  animation-delay: 6s;
}

.rw-words-1 span:nth-child(4) {
  -webkit-animation-delay: 9s;
  -ms-animation-delay: 9s;
  animation-delay: 9s;
}

.rw-words-1 span:nth-child(5) {
  -webkit-animation-delay: 12s;
  -ms-animation-delay: 12s;
  animation-delay: 12s;
}

.rw-words-1 span:nth-child(6) {
  -webkit-animation-delay: 15s;
  -ms-animation-delay: 15s;
  animation-delay: 15s;
}

.rw-words-1 span:nth-child(7) {
  -webkit-animation-delay: 18s;
  -ms-animation-delay: 18s;
  animation-delay: 18s;
}

.rw-words-1 span:nth-child(8) {
  -webkit-animation-delay: 21s;
  -ms-animation-delay: 21s;
  animation-delay: 21s;
}

@keyframes rotateWord {
  0% {
    opacity: 0;
  }
  1.5% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  3.75% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  12.75% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  15% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    opacity: 0;
  }
}
/*# sourceMappingURL=site.css.map */
.main-title {
  max-width: 776px;
  font-size: 30px;
  font-weight: 500;
  color: var(--charcoal-grey);
}
@media (min-width: 768px) {
  .main-title {
    font-size: 55px;
  }
}

.main-text {
  max-width: 438px;
  font-size: 16px;
  line-height: 1.44;
  letter-spacing: 0.2px;
  color: var(--cool-grey);
}
@media (min-width: 768px) {
  .main-text {
    font-size: 18px;
  }
}

.pricing-bg {
  background: url(../img/pricing-bg.svg) center bottom no-repeat;
}

.shadow-wrapper {
  position: relative;
}
.shadow-wrapper::before {
  content: '';
  position: absolute;
  box-shadow: 0 0 10px 0 rgba(3, 39, 97, 0.1);
  width: 80%;
  height: 100%;
  left: 20%;
  top: 0;
}
@media (min-width: 992px) {
  .shadow-wrapper {
    margin-top: -130px;
    margin-bottom: 20px;
  }
}

.pricing {
  font-size: 12px;
  position: relative;
  width: 100%;
}
.pricing td {
  color: var(--plan-color);
}
.pricing thead th:not(:first-child) {
  border-top: 5px solid var(--plan-color);
  color: var(--plan-color);
}
.pricing thead th {
  background-repeat: no-repeat;
  background-position: center 0;
  padding-top: 10px;
}
.pricing thead th:nth-child(4) {
  --plan-color: #9550a4;
  background-image: url(../img/triangle-purple.svg);
}
.pricing thead th:nth-child(5) {
  --plan-color: #009cac;
  background-image: url(../img/triangle-teal.svg);
}
.pricing thead th:nth-child(3) {
  --plan-color: #e19900;
  background-image: url(../img/triangle-yellow.svg);
}
.pricing thead th:nth-child(2) {
  --plan-color: #ff4b00;
  background-image: url(../img/triangle-orange.svg);
}
@media (min-width: 768px) {
  .pricing thead th {
    padding-left: 2px;
    padding-right: 2px;
    padding-top: 23px;
    padding-bottom: 30px;
  }
}
.pricing th,
.pricing td {
  width: 20%;
  padding: 3px;
}
@media (min-width: 768px) {
  .pricing th,
  .pricing td {
    padding: 12px;
  }
}
.pricing th:not(:first-child),
.pricing td:not(:first-child) {
  text-align: center;
}
.pricing th:not(:first-child):hover:after,
.pricing td:not(:first-child):hover:after {
  content: '';
  position: absolute;
  top: 0;
  width: 20%;
  height: 100%;
  box-shadow: 15px 15px 40px 0 rgba(3, 39, 97, 0.2);
  pointer-events: none;
  z-index: 1002;
}

.floatThead-container .pricing th:not(:first-child):hover:after {
  content: none;
}

.pricing th:not(:first-child),
.pricing td:not(:first-child) {
  border-right: 1px solid #fafafa;
}
.pricing th:nth-child(2),
.pricing td:nth-child(2) {
  --plan-color: #ff4b00;
}
.pricing th:nth-child(2):hover:after,
.pricing td:nth-child(2):hover:after {
  left: 20%;
}
.pricing th:nth-child(3),
.pricing td:nth-child(3) {
  --plan-color: #e19900;
}
.pricing th:nth-child(3):hover:after,
.pricing td:nth-child(3):hover:after {
  left: 40%;
}
.pricing th:nth-child(4),
.pricing td:nth-child(4) {
  --plan-color: #9550a4;
}
.pricing th:nth-child(4):hover:after,
.pricing td:nth-child(4):hover:after {
  left: 60%;
}
.pricing th:nth-child(5),
.pricing td:nth-child(5) {
  --plan-color: #009cac;
}
.pricing th:nth-child(5):hover:after,
.pricing td:nth-child(5):hover:after {
  left: 80%;
}
.pricing tr:not(.pricing__row-category) td:not(:first-child),
.pricing tr:not(.pricing__row-category) th:not(:first-child) {
  background-color: #fff;
}
.pricing th {
  font-weight: normal;
}
.pricing__shadow td {
  border-bottom: 5px solid var(--plan-color);
  padding: 2px;
}
.pricing__btn {
  --normal: var(--plan-color);
  --hover: var(--plan-color);
}
@media (max-width: 767px) {
  .pricing__btn {
    text-transform: none;
    min-width: 0;
    text-decoration: underline;
    border-color: transparent;
    padding: 3px;
  }
}
.pricing__price-row {
  color: rgba(54, 70, 79, 0.5);
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .pricing__price-row {
    font-size: 16px;
    margin-bottom: 7px;
  }
}
.pricing__price {
  color: var(--plan-color);
  font-weight: 700;
}
@media (min-width: 768px) {
  .pricing__price {
    font-size: 34px;
  }
}
.pricing__name {
  margin-bottom: 0.3rem;
}
@media (min-width: 768px) {
  .pricing__name {
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0;
  }
}
.pricing__price-enterprise {
    /*color: rgba(54, 70, 79, 0.5);
    margin-bottom: 0;*/
    margin-top: 18px;
    margin-bottom: 18px;
    font-size: 16px;
    margin-bottom: 7px;
}
.pricing__price-no {
  height: 1em;
  width: 100%;
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
}
@media (min-width: 768px) {
  .pricing__price-no {
    height: 51px;
  }
}
.pricing__price-no:before {
  height: 3px;
  margin-left: auto;
  margin-right: auto;
  width: 25px;
  background-color: #9aa2a7;
  content: '';
  display: block;
}
@media (min-width: 992px) {
  .pricing__price-no:before {
    width: 70px;
  }
}
.pricing__row-category {
  background-color: rgba(154, 162, 167, 0.05);
}
.pricing__row-category th {
  cursor: pointer;
  font-weight: 500;
  line-height: 1.44;
  letter-spacing: 0.2px;
  color: var(--charcoal-grey);
  border-bottom: 2px solid #fafafa;
  position: relative;
}
@media (min-width: 768px) {
  .pricing__row-category th {
    font-size: 18px;
    padding-left: 30px;
  }
}
/*.pricing__row-category th::before {
  content: "";
  width: 8px;
  height: 23px;
  position: absolute;
  right: -3px;
  top: 0;
  background: url(../img/arrow-bottom.svg) center no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .pricing__row-category th::before {
    right: auto;
    left: -10px;
    width: 28px;
    height: 28px;
    box-shadow: 0 0 10px 0 rgba(3, 39, 97, 0.1);
    background-color: var(--white);
    border-radius: 50%;
    background-size: initial;
    top: 10px;
  }
}*/
.pricing__row-category th.collapsed::before {
  transform: rotate(0deg);
}
.pricing__row-category td {
  border-bottom: 2px solid white;
}
@media (min-width: 768px) {
  .pricing__row-category + .pricing__row-item th,
  .pricing__row-category + .pricing__row-item td {
    padding-top: 15px;
  }
}
.pricing__row-item.collapsing {
  transition: none !important;
}
.pricing__row-item th {
  font-size: 10px;
  letter-spacing: 0.2px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(54, 70, 79, 0.5);
  word-break: break-word;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .pricing__row-item th {
    padding-top: 0;
    padding-bottom: 15px;
    padding-left: 30px;
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .pricing__row-item td {
    padding-top: 0;
    padding-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
  }
}
.pricing__row-item th sup {
  font-size: 8px;
}
@media (min-width: 768px){
    pricing__row-item th sup {
        font-size: 10px;
    }
}

.pricing__footnotes {
  margin-top: 40px;
  padding-top: 5px;
  border-top: 1px solid rgba(3, 39, 97, 0.1);
  font-size: 10px;
  letter-spacing: 0.2px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(54, 70, 79, 0.5);
}

.about-us {
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .about-us {
    padding-bottom: 7rem;
  }
}
.about-us__text {
  max-width: 532px;
}

@media (min-width: 768px) {
  .we-want {
    margin-top: -200px;
  }
}
@media (min-width: 992px) {
  .we-want {
    margin-top: -300px;
  }
}
@media (min-width: 768px) {
  .we-want .container {
    position: relative;
  }
}
.we-want .container::before {
  content: '';
  display: block;
  background: url(../img/we-want.svg) center no-repeat;
  height: 200px;
  background-size: contain;
}
@media (min-width: 768px) {
  .we-want .container::before {
    display: none;
  }
}
@media (min-width: 1200px) {
  .we-want .container::before {
    display: block;
    position: absolute;
    background: url(../img/circle.svg) center no-repeat;
    width: 91px;
    height: 86px;
    right: 58px;
    top: 159px;
  }
}
@media (min-width: 768px) {
  .we-want .container::after {
    content: '';
    background: url(../img/we-want-large.png) center no-repeat;
    display: block;
    background-size: contain;
    height: 415px;
    position: relative;
    left: -85px;
  }
}
@media (min-width: 992px) {
  .we-want .container::after {
    width: 1250px;
    height: 755px;
    left: -200px;
  }
}
@media (min-width: 1200px) {
  .we-want .container::after {
    left: -95px;
  }
}
.we-want__text-box {
  border-radius: 20px;
  box-shadow: 15px 15px 40px 0 rgba(3, 39, 97, 0.1);
  background-color: var(--white);
  padding: 15px;
}
@media (min-width: 768px) {
  .we-want__text-box {
    position: absolute;
    left: 260px;
    top: 45%;
    transform: translateY(-50%);
    padding: 20px;
    padding-left: 50px;
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .we-want__text-box {
    padding-left: 250px;
    padding-top: 40px;
    padding-right: 50px;
  }
}
@media (min-width: 1200px) {
  .we-want__text-box {
    padding-left: 355px;
    right: 90px;
  }
}
.we-want__title {
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--charcoal-grey);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .we-want__title {
    font-size: 18px;
  }
}
.we-want__text {
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: rgba(54, 70, 79, 0.5);
}

@media (min-width: 992px) {
  .our-story .container {
    margin-bottom: 50px;
  }
}
.our-story__title {
  font-weight: 500;
  color: var(--charcoal-grey);
}
@media (min-width: 768px) {
  .our-story__title {
    font-size: 50px;
  }
}
.our-story__subtitle {
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--charcoal-grey);
  font-size: 18px;
}
@media (min-width: 768px) {
  .our-story__subtitle {
    line-height: 1.44;
  }
}
.our-story__text {
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: rgba(54, 70, 79, 0.5);
}
.our-story .row:not(:last-child) {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .our-story .row:not(:last-child) {
    margin-bottom: 8%;
  }
}
@media (min-width: 992px) {
  .our-story__line {
    background: url(../img/connection-line-03.svg) center no-repeat;
    width: 390px;
    height: 224px;
    margin-top: -130px;
    margin-bottom: -25px;
  }
}

.contact {
  padding-bottom: 300px;
  background: url(../img/contact-us-image@2x.png) center bottom 38px no-repeat;
  background-size: 280px auto;
}
@media (min-width: 1200px) {
  .contact {
    padding-top: 3%;
    padding-bottom: 7%;
    background: linear-gradient(to bottom, transparent 53%, #fafafa 53%);
  }
}
@media (min-width: 1200px) {
  .contact .container {
    background: url(../img/contact-us-image@2x.png) top 150px right/480px auto
      no-repeat;
  }
}
.contact__title {
  text-align: center;
  max-width: initial;
}
@media (min-width: 1200px) {
  .contact__title {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .contact__form {
    border-radius: 20px;
    box-shadow: 15px 15px 40px 0 rgba(3, 39, 97, 0.1);
    background-color: var(--white);
    padding: 50px;
    width: 530px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
}
@media (min-width: 1200px) {
  .contact__form {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .contact__form::before {
    content: '';
    width: 104px;
    height: 140px;
    position: absolute;
    bottom: -30px;
    left: -50px;
    background: url(../img/bg-circles-contact.svg) center no-repeat;
    z-index: 0;
  }
}
@media (min-width: 1200px) {
  .contact__form::after {
    content: '';
    width: 400px;
    height: 447px;
    position: absolute;
    top: -30px;
    left: 470px;
    background: url(../img/connection-line-03.svg) center no-repeat;
    z-index: -1;
  }
}
.contact__button {
  width: 250px;
}
@media (min-width: 768px) {
  .contact .form-group {
    margin-bottom: 30px;
  }
}
.contact .form-control {
  border-radius: 25px;
  box-shadow: 10px 10px 30px 0 rgba(2, 20, 48, 0.05);
  background-color: var(--white);
  border: none;
  min-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.2px;
}
.contact .form-control::placeholder {
  color: rgba(54, 70, 79, 0.5);
}
.contact textarea {
  height: 160px;
  padding-top: 10px;
}

.contact-info {
  margin-top: 2rem;
  color: var(--charcoal-grey);
  font-size: 0.9rem;
}

.privacy-policy-text {
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: rgba(54, 70, 79, 0.5);
}

@media (min-width: 768px) {
  .contact-info {
    margin-top: 5rem;
  }
}

@media (min-width: 992px) {
  .contact-info {
    margin-top: 2rem;
  }
}

@media (min-width: 1200px) {
  .contact-info {
    margin-top: 460px;
  }
}


ul.tour-links {
    list-style-type: none; /* Remove bullets */    
}

    ul.tour-links span.tour-section-title {
        font-weight: 500;
        font-size: 1.15em;
    }

    ul.tour-links li.tour-section {
        margin-bottom: 20px;
    }




/*# sourceMappingURL=site.css.map */


