@charset "UTF-8";
/**
* @version   $1.0.0: custom.scss 2022-06-15 18:24 [Son Nguyen] $
* @author PHPKUNGFU https://phpkungfu.com/
* @copyright Copyright (C) 2022 PHPKUNGFU (Son Nguyen)
* @support info@phpkungfu.com
*/
/* @group VARIABLES */
/* @end */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Roboto-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Roboto-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
}
/*
 * Typography is configured in YOOtheme Styler with Roboto for the default,
 * primary, secondary and tertiary font families. Keep this compiled fallback
 * until the next Styler recompile so every existing YOOtheme component uses
 * the same local font immediately.
 */
:root {
  --hatm-font-family: "Roboto", sans-serif;
}

html,
body,
button,
input,
optgroup,
select,
textarea,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6,
.uk-heading-small,
.uk-heading-medium,
.uk-heading-large,
.uk-heading-xlarge,
.uk-heading-2xlarge,
.uk-heading-3xlarge,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
.form-label,
.uk-form-label,
.uk-button,
.uk-card-title,
.uk-card-badge,
.uk-badge,
.uk-label,
.uk-article-title,
.uk-article-meta,
.uk-comment-meta,
.uk-accordion-title,
.uk-modal-title,
.uk-nav,
.uk-navbar-item,
.uk-navbar-nav > li > a,
.uk-navbar-toggle,
.uk-navbar-dropdown-nav,
.uk-subnav > * > :first-child,
.uk-breadcrumb > * > *,
.uk-pagination > * > *,
.uk-tab > * > a,
.uk-text-lead,
.uk-text-meta,
.uk-logo,
.uk-font-default,
.uk-font-primary,
.uk-font-secondary,
.uk-font-tertiary,
.tm-section-title {
  font-family: var(--hatm-font-family) !important;
}

/**
* @version   $1.0.0: custom.scss 2022-06-15 18:24 [Son Nguyen] $
* @author PHPKUNGFU https://phpkungfu.com/
* @copyright Copyright (C) 2022 PHPKUNGFU (Son Nguyen)
* @support info@phpkungfu.com
*/
/* @group VARIABLES */
/* @end */
/* @group BUTTONS */
/* @end */
/* @group COMPONENTS */
/* Hanging Around header */
.tm-header,
.tm-header-mobile {
  position: relative;
  z-index: 100;
  font-family: "Roboto", sans-serif;
}

.tm-header .uk-navbar-container {
  min-height: 80px;
  background: #fff;
  box-shadow: none;
}

.tm-header .uk-navbar {
  min-height: 80px;
}

.tm-header .uk-container-expand {
  padding-right: 45px;
  padding-left: 45px;
}

.tm-header .uk-logo {
  position: relative;
  flex: none;
  min-height: 80px;
  padding-right: 45px;
}

.tm-header .uk-logo::after {
  position: absolute;
  top: 10px;
  right: 15px;
  bottom: 10px;
  width: 2px;
  background: rgba(80, 80, 80, 0.2);
  pointer-events: none;
  content: "";
}

.tm-header .uk-navbar-left {
  justify-content: flex-start;
}

.tm-header .uk-logo img {
  width: auto;
  height: 45px;
}

.tm-header .uk-navbar-nav {
  gap: 0;
}

.tm-header .uk-navbar-nav > li > a {
  min-height: 80px;
  padding: 0 15px;
  color: #101010;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* Match the original site's small down chevron on parent menu items. */
.tm-header .uk-navbar-nav > li.uk-parent > a::after {
  display: inline-block;
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.tm-header .uk-navbar-nav > li.uk-active > a,
.tm-header .uk-navbar-nav > li > a:hover,
.tm-header .uk-navbar-nav > li > a[aria-expanded=true] {
  color: #20c0fc !important;
}

.tm-header .uk-navbar-dropdown {
  width: 240px;
  padding: 0;
  border: 0;
  background: #20c0fc;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.tm-header .uk-navbar-dropdown-nav {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: capitalize;
}

.tm-header .uk-navbar-dropdown-nav > li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.tm-header .uk-navbar-dropdown-nav > li:last-child {
  border-bottom: 0;
}

.tm-header .uk-navbar-dropdown-nav > li > a {
  display: block;
  padding: 16px 22px;
  color: #fff;
  line-height: 1.2;
}

.tm-header .uk-navbar-dropdown-nav > li > a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.tm-header .uk-navbar-dropdown-nav > li.uk-active > a {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

/* Header mobile của site cũ là nền trắng, cao 60px. */
.tm-header-mobile .uk-navbar-container,
.tm-header-mobile .uk-navbar {
  min-height: 60px;
  background: #fff;
}

.tm-header-mobile .uk-container-expand {
  padding-right: 15px;
  padding-left: 15px;
}

.tm-header-mobile .uk-logo {
  min-height: 60px;
}

.tm-header-mobile .uk-logo img {
  width: auto;
  height: 36px;
}

.tm-header-mobile .uk-navbar-toggle {
  min-height: 60px;
  color: #101010;
}

#tm-dialog-mobile .uk-offcanvas-bar {
  width: 300px;
  background: #fff;
  color: #101010;
  font-family: "Roboto", sans-serif;
}

#tm-dialog-mobile .uk-close,
#tm-dialog-mobile .uk-nav-default > li > a,
#tm-dialog-mobile .uk-nav-default .uk-nav-sub a {
  color: #101010;
}

#tm-dialog-mobile .uk-nav-default > li > a {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

#tm-dialog-mobile .uk-nav-default > li.uk-parent > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#tm-dialog-mobile .uk-nav-default > li.uk-parent > a::after {
  display: inline-block;
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

#tm-dialog-mobile .uk-nav-default .uk-nav-sub a {
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
}

#tm-dialog-mobile .uk-nav-default > li.uk-active > a,
#tm-dialog-mobile .uk-nav-default a:hover {
  color: #20c0fc !important;
}

/* Hanging Around homepage, built with native YOOtheme Pro elements */
.hatm-home-about,
.hatm-home-story,
.hatm-home-services-intro,
.hatm-home-services,
.hatm-home-faq-intro,
.hatm-home-faq-section,
.hatm-home-cta {
  font-family: "Roboto", sans-serif;
}

.hatm-home-about > .uk-container,
.hatm-home-story > .uk-container,
.hatm-home-services-intro > .uk-container,
.hatm-home-services > .uk-container,
.hatm-home-faq-intro > .uk-container,
.hatm-home-faq-section > .uk-container,
.hatm-home-cta > .uk-container {
  box-sizing: border-box;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.hatm-home-about > .uk-container > .uk-grid-margin,
.hatm-home-story > .uk-container > .uk-grid-margin,
.hatm-home-services-intro > .uk-container > .uk-grid-margin,
.hatm-home-services > .uk-container > .uk-grid-margin,
.hatm-home-faq-intro > .uk-container > .uk-grid-margin,
.hatm-home-faq-section > .uk-container > .uk-grid-margin,
.hatm-home-cta > .uk-container > .uk-grid-margin {
  margin-top: 0;
}

.hatm-home-hero,
.hatm-home-hero .uk-grid,
.hatm-home-hero .uk-slideshow,
.hatm-home-hero .uk-slideshow-items {
  margin: 0;
}

.hatm-home-hero .uk-slideshow-items > .el-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
  transform: none;
}

/* Match the legacy fullscreen slider, which excludes the 80px desktop header. */
@media (min-width: 992px) {
  .hatm-home-hero .uk-slideshow-items {
    min-height: max(450px, 100vh - 80px) !important;
  }
}
.hatm-home-hero .uk-dotnav > * > * {
  width: 10px;
  height: 10px;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.35);
}

.hatm-home-hero .uk-dotnav > .uk-active > * {
  background: #fff;
}

.hatm-home-about,
.hatm-home-story {
  padding-top: 50px;
  padding-bottom: 50px;
  color: #707070;
}

@media (min-width: 992px) {
  .hatm-home-story {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .hatm-home-about .tm-grid-expand > :last-child {
    margin-top: 20px;
  }
  .hatm-home-story .tm-grid-expand > :first-child {
    margin-top: 15px;
  }
  .hatm-home-services-intro .hatm-section-intro {
    width: 100%;
    max-width: none;
  }
  .hatm-home-services .hatm-service-card {
    padding-bottom: 10px;
  }
  .hatm-home-services .hatm-service-title {
    margin-top: 0 !important;
  }
  .hatm-home-faq-section {
    padding-bottom: 36px !important;
  }
  .hatm-home-cta {
    padding-bottom: 77px !important;
  }
}
.hatm-home-about .tm-grid-expand,
.hatm-home-story .tm-grid-expand {
  margin-left: -30px;
}

.hatm-home-about .tm-grid-expand > *,
.hatm-home-story .tm-grid-expand > * {
  padding-left: 30px;
}

.hatm-home-image,
.hatm-home-image picture,
.hatm-home-image img {
  display: block;
  width: 100%;
}

.hatm-home-eyebrow {
  color: #20c0fc;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hatm-home-heading {
  color: #101010;
  font-family: "Roboto", sans-serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hatm-home-about .hatm-home-heading,
.hatm-home-story .hatm-home-heading {
  margin-top: 20px !important;
  margin-bottom: 40px !important;
}

.hatm-home-copy {
  color: #707070;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.hatm-home-services-intro {
  padding-top: 90px;
  padding-bottom: 1px;
  color: #707070;
}

.hatm-home-services {
  padding-top: 50px;
  padding-bottom: 50px;
  color: #707070;
}

.hatm-section-heading {
  color: #101010;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.hatm-section-intro {
  margin-top: 0 !important;
  margin-right: auto;
  margin-bottom: 30px !important;
  margin-left: auto;
  color: #707070;
  font-size: 20px;
  line-height: 1.6;
}

.hatm-home-services-intro .hatm-section-heading {
  margin-bottom: 8px !important;
}

.hatm-home-services .tm-grid-expand {
  margin-left: -30px;
}

.hatm-home-services .tm-grid-expand > * {
  padding-left: 30px;
}

.hatm-service-card {
  padding-bottom: 30px;
  color: #707070;
}

.hatm-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin-right: auto;
  margin-left: auto;
  border: 0;
  color: #101010;
  transition: transform 0.25s ease;
}

.hatm-service-icon > .uk-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  padding: 7px;
  border: 2px solid #101010;
  border-radius: 50%;
  color: #101010;
}

.hatm-service-icon > .uk-icon svg {
  width: 18px;
  height: 18px;
}

.hatm-service-card:hover .hatm-service-icon {
  transform: scale(1.08);
}

.hatm-service-title {
  margin-bottom: 8px !important;
  color: #101010;
  font-family: "Roboto", sans-serif;
  font-size: 25.16px;
  font-weight: 500;
  line-height: 1.2;
}

.hatm-service-copy {
  margin-top: 0 !important;
  color: #707070;
  font-size: 20px;
  line-height: 1.6;
}

.hatm-home-faq-intro {
  padding-top: 50px;
  padding-bottom: 1px;
  color: #707070;
}

.hatm-home-faq-intro .hatm-section-heading {
  margin-bottom: 30px !important;
}

.hatm-home-faq-section {
  padding-top: 50px;
  padding-bottom: 50px;
  color: #707070;
}

.hatm-home-faq {
  margin-right: auto;
  margin-left: auto;
}

.hatm-home-faq > .el-item,
.hatm-home-faq > li {
  margin-top: 0;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid #e8eff1;
  border-radius: 4px;
  background: #fff;
}

.hatm-home-faq > .el-item:last-child,
.hatm-home-faq > li:last-child {
  margin-bottom: 0;
}

.hatm-home-faq .uk-accordion-title {
  position: relative;
  padding: 17px 48px 17px 15px;
  color: #101010;
  background: #f6fafb;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.hatm-home-faq .uk-accordion-title::before {
  display: none;
}

.hatm-home-faq [uk-accordion-icon] {
  position: absolute;
  top: 50%;
  right: 15px;
  display: inline-flex;
  width: 18px;
  height: 18px;
  margin: 0;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.hatm-home-faq .uk-open > .uk-accordion-title,
.hatm-home-faq .uk-accordion-title:hover {
  color: #20c0fc;
}

.hatm-home-faq .uk-accordion-content {
  margin-top: 0;
  padding: 15px;
  border-top: 1px solid #e8eff1;
  color: #707070;
  font-size: 20px;
  line-height: 1.6;
}

.hatm-home-cta {
  padding-top: 80px;
  padding-bottom: 80px;
  color: #fff;
}

.hatm-cta-heading {
  margin-bottom: 8px !important;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 50px;
  letter-spacing: -2px;
}

.hatm-cta-copy {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  max-width: 1050px;
  color: #fff;
  font-size: 20px;
  line-height: 1.6;
}

.hatm-cta-buttons {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.hatm-cta-buttons .uk-grid > * {
  width: 41.666666%;
}

.hatm-cta-buttons .uk-button {
  width: 100%;
}

.hatm-cta-buttons .uk-button {
  height: 68px;
  min-height: 68px;
  padding: 0 48px;
  border: 0;
  border-radius: 100px;
  color: #20c0fc;
  background: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 68px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hatm-cta-buttons .uk-button:hover,
.hatm-cta-buttons .uk-button:focus {
  color: #fff;
  background: #101010;
}

/* Hanging Around footer, built in YOOtheme Pro Footer Builder */
footer {
  position: relative;
  isolation: isolate;
  background: #06191f url("../../../images/hatm/footer-bg.jpg") 50% 50%/cover no-repeat;
  font-family: "Roboto", sans-serif;
}

footer::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  content: "";
}

footer > * {
  position: relative;
  z-index: 1;
}

.hatm-footer {
  padding-top: 135px;
  padding-bottom: 40px;
  background: transparent !important;
  color: #999;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

@media (min-width: 1200px) {
  .hatm-footer {
    padding-bottom: 115px;
  }
  .hatm-footer > .uk-container,
  .hatm-copyright > .uk-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1280px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .hatm-footer > .uk-container > .uk-grid-margin + .uk-grid-margin {
    margin-top: 0 !important;
  }
  .hatm-footer > .uk-container > .uk-grid-margin + .uk-grid-margin > :nth-child(2) > h3:first-of-type + .uk-panel {
    margin-bottom: 49px !important;
  }
  .hatm-footer > .uk-container > .uk-grid-margin + .uk-grid-margin > :nth-child(2) > h3:nth-of-type(2) {
    margin-top: 49px !important;
  }
  .hatm-footer > .uk-container > .uk-grid-margin + .uk-grid-margin > :nth-child(2) > h3:nth-of-type(2) + .uk-panel {
    margin-top: 36px !important;
    margin-bottom: 0 !important;
  }
  .hatm-footer > .uk-container > .uk-grid-margin + .uk-grid-margin > :nth-child(2) > h3:nth-of-type(3) {
    margin-top: 0 !important;
  }
}
.hatm-footer h2,
.hatm-footer h3,
.hatm-footer h4,
.hatm-footer h5 {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: none;
}

.hatm-footer a {
  color: #8b9bb9;
}

.hatm-footer a:hover,
.hatm-footer a:focus {
  color: #20c0fc;
}

.hatm-footer .hatm-footer-logo {
  margin: 30px 0 40px !important;
}

.hatm-footer .hatm-footer-logo img {
  width: auto;
  height: 45px;
}

.hatm-footer .hatm-footer-intro {
  margin-bottom: 50px !important;
  font-size: 16px;
}

.hatm-footer .hatm-social {
  margin-top: 40px !important;
}

.hatm-footer .hatm-accreditation {
  margin-bottom: 30px !important;
}

.hatm-footer .hatm-accreditation:last-child {
  margin-bottom: 0 !important;
}

.hatm-footer .hatm-accreditation img {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.hatm-footer .uk-icon-button {
  width: 42px;
  height: 42px;
  color: #aaa;
  background: transparent;
  font-size: 15px;
}

.hatm-footer .uk-icon-button:hover {
  color: #20c0fc;
  background: transparent;
}

.hatm-copyright {
  padding-top: 0;
  padding-bottom: 49px;
  background: transparent !important;
  color: #999;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

.hatm-copyright .uk-container {
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.hatm-copyright a {
  color: #8b9bb9;
}

.hatm-copyright a:hover {
  color: #20c0fc;
}

@media (max-width: 1199px) {
  .tm-header .uk-navbar-nav > li > a {
    letter-spacing: -0.5px;
  }
  .hatm-footer {
    padding-top: 80px;
    padding-bottom: 30px;
  }
  .hatm-copyright {
    padding-bottom: 50px;
  }
  .hatm-copyright .uk-container {
    padding-top: 40px;
  }
  .hatm-home-heading {
    font-size: 40px;
    line-height: 48px;
  }
  .hatm-section-heading {
    font-size: 31px;
  }
}
@media (min-width: 576px) {
  .hatm-home-about > .uk-container,
  .hatm-home-story > .uk-container,
  .hatm-home-services-intro > .uk-container,
  .hatm-home-services > .uk-container,
  .hatm-home-faq-intro > .uk-container,
  .hatm-home-faq-section > .uk-container,
  .hatm-home-cta > .uk-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .hatm-home-about > .uk-container,
  .hatm-home-story > .uk-container,
  .hatm-home-services-intro > .uk-container,
  .hatm-home-services > .uk-container,
  .hatm-home-faq-intro > .uk-container,
  .hatm-home-faq-section > .uk-container,
  .hatm-home-cta > .uk-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .hatm-home-about > .uk-container,
  .hatm-home-story > .uk-container,
  .hatm-home-services-intro > .uk-container,
  .hatm-home-services > .uk-container,
  .hatm-home-faq-intro > .uk-container,
  .hatm-home-faq-section > .uk-container,
  .hatm-home-cta > .uk-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .hatm-home-about > .uk-container,
  .hatm-home-story > .uk-container,
  .hatm-home-services-intro > .uk-container,
  .hatm-home-services > .uk-container,
  .hatm-home-faq-intro > .uk-container,
  .hatm-home-faq-section > .uk-container,
  .hatm-home-cta > .uk-container {
    max-width: 1140px;
  }
}
@media (min-width: 1360px) {
  .hatm-home-about > .uk-container,
  .hatm-home-story > .uk-container,
  .hatm-home-services-intro > .uk-container,
  .hatm-home-services > .uk-container,
  .hatm-home-faq-intro > .uk-container,
  .hatm-home-faq-section > .uk-container,
  .hatm-home-cta > .uk-container {
    max-width: 1280px;
  }
}
/* Bootstrap của site cũ chuyển sang offcanvas dưới 992px. */
@media (min-width: 960px) and (max-width: 991px) {
  .tm-header {
    display: none !important;
  }
  .tm-header-mobile {
    display: block !important;
  }
  .hatm-home-about .tm-grid-expand > *,
  .hatm-home-story .tm-grid-expand > *,
  .hatm-home-services .tm-grid-expand > * {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .hatm-section-intro,
  .hatm-service-copy,
  .hatm-home-faq .uk-accordion-content,
  .hatm-cta-copy {
    font-size: 16px;
  }
  .hatm-cta-buttons .uk-grid > * {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .hatm-home-heading {
    font-size: 36px;
    line-height: 42px;
  }
  .hatm-home-copy {
    font-size: 15px;
  }
  .hatm-home-about .hatm-home-heading,
  .hatm-home-story .hatm-home-heading {
    margin-top: 15px !important;
    margin-bottom: 35px !important;
  }
}
/* Careers article and RSForm Pro form, matched to the original Careers page */
.hatm-careers-intro,
.hatm-careers-main {
  font-family: "Roboto", sans-serif;
}

.hatm-careers-intro {
  padding-top: 39px !important;
  padding-bottom: 60px !important;
  background: #f6f6f6;
  color: #707070;
  text-align: center;
}

.hatm-careers-main {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
  color: #707070;
}

.hatm-careers-intro > .uk-container,
.hatm-careers-intro > .uk-section > .uk-container,
.hatm-careers-main > .uk-container,
.hatm-careers-main > .uk-section > .uk-container {
  box-sizing: border-box;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.hatm-careers-eyebrow {
  margin: 0 0 20px !important;
  color: #20c0fc;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hatm-careers-title {
  margin: 20px 0 30px !important;
  color: #101010;
  font-size: 48px;
  font-weight: 400;
  line-height: 52px;
  letter-spacing: 0;
}

.hatm-careers-intro-copy {
  width: 75%;
  margin: 0 auto !important;
  color: #707070;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.hatm-careers-shortcode,
.hatm-careers-shortcode form {
  width: 100%;
  max-width: 100%;
  margin: 0 !important;
}

.hatm-careers-form {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 20px;
  border: 0;
  background: #fff;
}

.hatm-careers-form .rsform-block {
  margin-bottom: 20px;
}

.hatm-careers-form .formControlLabel {
  display: block;
  width: auto;
  margin: 0 0 7px;
  color: #888;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.hatm-careers-form .formRequired {
  color: #dc3545;
  font-weight: 400;
}

.hatm-careers-form .form-control,
.hatm-careers-form .form-select {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 42px;
  margin: 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  outline: 0;
  background-color: #fff;
  color: #888;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  box-shadow: none;
}

.hatm-careers-form textarea.form-control {
  min-height: 85px;
  resize: vertical;
}

.hatm-careers-form .form-control::placeholder,
.hatm-careers-form .form-select::placeholder {
  color: #888;
  opacity: 1;
}

.hatm-careers-form .form-control:focus,
.hatm-careers-form .form-select:focus {
  border-color: #ccc;
  outline: 0;
  color: #888;
  box-shadow: none;
}

.hatm-careers-form .formError {
  display: block;
  margin-top: 6px;
  color: #dc3545;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.hatm-careers-form .rsform-block-captcha-v3 {
  margin: 0;
  color: #dc3545;
  font-size: 14px;
}

.hatm-careers-form .rsform-submit-button {
  width: auto !important;
  height: 48px;
  padding: 0 25px;
  border: 1px solid #23cf5f;
  border-radius: 5px;
  background: #23cf5f;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hatm-careers-form .rsform-submit-button:hover {
  border-color: #1fae51;
  background: #1fae51;
  color: #fff;
}

.hatm-careers-form .rsform-submit-button:focus {
  border-color: #23cf5f;
  outline: 0;
  background: #23cf5f;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(35, 207, 95, 0.5);
}

.hatm-careers-shortcode .rsform-error-message,
.hatm-careers-shortcode .alert {
  margin: 0 20px 20px;
}

.hatm-careers-induction {
  margin-top: 30px !important;
  margin-left: 0 !important;
}

.hatm-careers-induction > * {
  padding-left: 0 !important;
}

.hatm-careers-induction-image,
.hatm-careers-induction-image a,
.hatm-careers-induction-image picture,
.hatm-careers-induction-image img {
  display: block;
  width: 100%;
}

.hatm-careers-induction-image img {
  height: auto;
}

.hatm-careers-induction-content {
  box-sizing: border-box;
  padding: 50px !important;
  background: #006eb7;
  color: #fff;
}

.hatm-careers-induction-copy,
.hatm-careers-induction-copy h3,
.hatm-careers-induction-copy p {
  color: #fff;
}

.hatm-careers-induction-copy h3 {
  margin: 0 0 15px;
  padding: 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.hatm-careers-induction-copy h3 strong {
  font-weight: 700;
}

.hatm-careers-induction-copy p {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.6;
}

.hatm-careers-induction-copy p:last-of-type {
  margin-bottom: 0;
}

.hatm-careers-induction-button {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  border: 1px solid #20c0fc;
  border-radius: 0;
  background: #20c0fc;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
}

.hatm-careers-induction-button:hover,
.hatm-careers-induction-button:focus {
  border-color: #0b5ed7;
  background: #0b5ed7;
  color: #fff;
}

@media (min-width: 576px) {
  .hatm-careers-intro > .uk-container,
  .hatm-careers-intro > .uk-section > .uk-container,
  .hatm-careers-main > .uk-container,
  .hatm-careers-main > .uk-section > .uk-container {
    max-width: 540px;
  }
  .hatm-careers-induction > .hatm-careers-induction-media,
  .hatm-careers-induction > .hatm-careers-induction-content {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .hatm-careers-intro > .uk-container,
  .hatm-careers-intro > .uk-section > .uk-container,
  .hatm-careers-main > .uk-container,
  .hatm-careers-main > .uk-section > .uk-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .hatm-careers-intro > .uk-container,
  .hatm-careers-intro > .uk-section > .uk-container,
  .hatm-careers-main > .uk-container,
  .hatm-careers-main > .uk-section > .uk-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .hatm-careers-intro > .uk-container,
  .hatm-careers-intro > .uk-section > .uk-container,
  .hatm-careers-main > .uk-container,
  .hatm-careers-main > .uk-section > .uk-container {
    max-width: 1140px;
  }
}
@media (min-width: 1360px) {
  .hatm-careers-intro > .uk-container,
  .hatm-careers-intro > .uk-section > .uk-container,
  .hatm-careers-main > .uk-container,
  .hatm-careers-main > .uk-section > .uk-container {
    max-width: 1280px;
  }
}
@media (max-width: 991px) {
  .hatm-careers-title {
    font-size: 32px;
    line-height: 36px;
  }
  .hatm-careers-intro-copy {
    width: 85%;
  }
  .hatm-careers-induction-content {
    padding: 30px !important;
  }
  .hatm-careers-induction-copy h3 {
    font-size: 24px;
  }
  .hatm-careers-induction-copy p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .hatm-careers-intro {
    padding-top: 70px !important;
    padding-bottom: 30px !important;
  }
  .hatm-careers-eyebrow {
    margin-bottom: 10px !important;
  }
  .hatm-careers-title {
    margin: 15px 0 20px !important;
    font-size: 24px;
    line-height: 32px;
  }
  .hatm-careers-intro-copy {
    width: 100%;
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .hatm-careers-form {
    padding: 20px;
  }
  .hatm-careers-induction > * {
    width: 100% !important;
  }
}
@media (max-width: 575px) {
  .tm-header-mobile .uk-container-expand {
    padding-right: 5px;
    padding-left: 5px;
  }
  .hatm-footer {
    font-size: 16px;
  }
  .hatm-footer .hatm-footer-intro {
    margin-bottom: 30px !important;
  }
  .hatm-footer .hatm-accreditation img {
    max-width: 255px;
  }
  .hatm-home-hero .uk-slideshow-items {
    min-height: 420px !important;
  }
  .hatm-section-heading {
    font-size: 29px;
  }
  .hatm-service-title {
    font-size: 23px;
  }
  .hatm-home-faq .uk-accordion-title {
    padding: 17px 48px 17px 15px;
    font-size: 20px;
  }
  .hatm-home-faq .uk-accordion-content {
    padding: 15px;
  }
  .hatm-cta-heading {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -1px;
  }
  .hatm-cta-buttons .uk-button {
    width: 100%;
    height: auto;
    min-height: 68px;
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 1.5;
    white-space: normal;
  }
}
/* @end */
/* Onsite Traffic Management, rebuilt with native YOOtheme Pro elements */
.hatm-onsite-hero,
.hatm-onsite-main {
  font-family: "Roboto", sans-serif;
}

.hatm-onsite-hero > .uk-section > .uk-container,
.hatm-onsite-main > .uk-container {
  box-sizing: border-box;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.hatm-onsite-hero > .uk-section > .uk-container > .uk-grid-margin,
.hatm-onsite-main > .uk-container > .uk-grid-margin {
  margin-top: 0;
}

.hatm-onsite-hero > .uk-section {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
  background-position: left center;
  background-size: cover;
}

.hatm-onsite-hero-title {
  margin: 0 !important;
  padding-bottom: 12px;
  color: #101010;
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
}

.hatm-onsite-main {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  color: #707070;
}

.hatm-onsite-article-title {
  margin: 0 0 20px !important;
  color: #101010;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}

.hatm-onsite-copy {
  margin: 0 !important;
  color: #707070;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

.hatm-onsite-copy p {
  margin-top: 0;
  margin-bottom: 16px;
}

.hatm-onsite-copy p:last-child {
  margin-bottom: 0;
}

.hatm-onsite-copy h2 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #000;
  font-size: 28.13px;
  font-weight: 500;
  line-height: 1.2;
}

.hatm-onsite-copy h3 {
  margin: 40px 0 20px;
  color: #000;
  font-size: 25.16px;
  font-weight: 500;
  line-height: 1.2;
}

.hatm-onsite-copy a {
  color: #20c0fc;
}

.hatm-onsite-copy a:hover,
.hatm-onsite-copy a:focus {
  color: #101010;
}

.hatm-onsite-image {
  width: fit-content;
  max-width: 100%;
  margin-top: 30px !important;
  margin-bottom: 0 !important;
}

.hatm-onsite-copy.hatm-copy-classic p {
  margin-top: 30px;
  margin-bottom: 0;
}

.hatm-onsite-copy.hatm-copy-classic h3 {
  color: #101010;
  font-size: 28px;
}

.hatm-onsite-copy.hatm-copy-classic h2 {
  color: #101010;
  font-size: 32px;
  font-weight: 500;
}

.hatm-onsite-copy ul {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 0;
  list-style: none;
}

.hatm-onsite-copy ul li {
  position: relative;
  padding-left: 25px;
}

.hatm-onsite-copy ul li::before {
  position: absolute;
  top: 4px;
  left: 0;
  color: currentColor;
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  font-weight: 900;
}

.hatm-onsite-image,
.hatm-onsite-image picture,
.hatm-onsite-image img {
  display: block;
}

@media (min-width: 576px) {
  .hatm-onsite-hero > .uk-section > .uk-container,
  .hatm-onsite-main > .uk-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .hatm-onsite-hero > .uk-section > .uk-container,
  .hatm-onsite-main > .uk-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .hatm-onsite-hero > .uk-section > .uk-container,
  .hatm-onsite-main > .uk-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .hatm-onsite-hero > .uk-section > .uk-container,
  .hatm-onsite-main > .uk-container {
    max-width: 1140px;
  }
}
@media (min-width: 1360px) {
  .hatm-onsite-hero > .uk-section > .uk-container,
  .hatm-onsite-main > .uk-container {
    max-width: 1280px;
  }
}
@media (max-width: 991px) {
  .hatm-onsite-main {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .hatm-onsite-image {
    margin-top: 25.6px !important;
  }
}
@media (max-width: 767px) {
  .hatm-onsite-main {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
/* More Info: two-column glossary/download layouts from the original site */
.hatm-more-info-two-column {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.hatm-more-info-grid {
  margin-left: -60px !important;
}

.hatm-more-info-grid > * {
  width: 50% !important;
  padding-left: 60px !important;
}

.hatm-more-info-column-title {
  margin-top: 10px !important;
  margin-bottom: 30px !important;
  color: #101010;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hatm-more-info-title-spacer {
  visibility: hidden;
}

.hatm-more-info-intro {
  margin: 0 !important;
  color: #707070;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

.hatm-more-info-intro p {
  margin: 0;
}

.hatm-more-info-accordion {
  margin-top: 50px !important;
}

.hatm-more-info-accordion > .el-item,
.hatm-more-info-accordion > li {
  margin: 0 !important;
  border: 1px solid #e5e5e5;
  border-top-width: 0;
  background: #fff;
}

.hatm-more-info-accordion > .el-item:first-child,
.hatm-more-info-accordion > li:first-child {
  border-top-width: 1px;
}

.hatm-more-info-accordion > :nth-child(n+2) {
  margin-top: 0 !important;
}

.hatm-more-info-accordion .uk-accordion-title {
  position: relative;
  margin: 0;
  padding: 10px 34px 10px 15px;
  border: 0;
  background: #f9f9f9;
  color: #101010;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.hatm-more-info-accordion .uk-accordion-title::before,
.hatm-more-info-accordion [uk-accordion-icon] {
  display: none;
}

.hatm-more-info-accordion .uk-accordion-title::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  content: "";
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
}

.hatm-more-info-accordion .uk-open > .uk-accordion-title::after {
  transform: translateY(-65%) rotate(135deg);
}

.hatm-more-info-accordion .uk-open > .uk-accordion-title,
.hatm-more-info-accordion .uk-accordion-title:hover,
.hatm-more-info-accordion .uk-accordion-title:focus {
  background: #f9f9f9;
  color: #101010;
}

.hatm-more-info-accordion .uk-accordion-content {
  margin: 0;
  padding: 15px;
  border-top: 1px solid #e5e5e5;
  color: #707070;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.hatm-more-info-accordion .uk-accordion-content p {
  margin: 0;
}

.hatm-more-info-accordion .uk-accordion-content a {
  color: #20c0fc;
}

.hatm-more-info-accordion .uk-accordion-content a:hover,
.hatm-more-info-accordion .uk-accordion-content a:focus {
  color: #101010;
}

.hatm-pdf-icon {
  display: inline-block;
  width: 20px;
  margin-right: 15px;
  font-style: normal;
  text-align: center;
}

.hatm-pdf-icon::before {
  content: "\f1c1";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

@media (max-width: 991px) {
  .hatm-more-info-two-column {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .hatm-more-info-grid {
    margin-left: 0 !important;
  }
  .hatm-more-info-grid > * {
    width: 100% !important;
    padding-left: 0 !important;
  }
  .hatm-more-info-column-left {
    padding-right: 15px !important;
  }
  .hatm-more-info-column-title {
    margin-bottom: 25px !important;
    font-size: 40px;
    line-height: 40px;
  }
  .hatm-more-info-column-right .hatm-more-info-column-title {
    margin-bottom: 10px !important;
  }
}
@media (max-width: 767px) {
  .hatm-more-info-column-left {
    padding-right: 0 !important;
  }
  .hatm-more-info-column-title {
    font-size: 28px;
    line-height: 28px;
  }
  .hatm-more-info-intro,
  .hatm-more-info-accordion .uk-accordion-content {
    font-size: 14px;
    line-height: 20px;
  }
  .hatm-more-info-accordion {
    margin-top: 35px !important;
  }
  .hatm-more-info-accordion .uk-accordion-title {
    font-size: 16px;
  }
}
/* Contact article and RSForm Pro form, matched to the original Joomla contact page */
.hatm-contact-main {
  color: #707070;
  font-size: 20px;
  line-height: 1.6;
}

.hatm-contact-map-row,
.hatm-contact-map,
.hatm-contact-map iframe {
  width: 100%;
}

.hatm-contact-map {
  margin: 0 !important;
}

.hatm-contact-map iframe {
  display: block;
  height: 450px;
  border: 0;
}

.hatm-contact-grid {
  margin-top: 16px !important;
}

.hatm-contact-address,
.hatm-contact-address .contact-address {
  margin: 0 !important;
}

.hatm-contact-address dt {
  margin: 0;
  color: #707070;
  font-weight: 700;
}

.hatm-contact-address dd {
  margin: 0;
}

.hatm-contact-address dd + dt {
  margin-top: 16px;
}

.hatm-contact-shortcode,
.hatm-contact-shortcode form {
  width: 100%;
  margin: 0 !important;
}

.hatm-contact-shortcode .btn-more {
  margin: 0 0 10px;
}

.hatm-contact-shortcode .btn-more > a {
  display: inline-block;
  width: auto;
  padding: 10px 25px;
  border: 1px solid #0a58ca;
  border-radius: 5px;
  background-color: #20c0fc;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.hatm-contact-shortcode .btn-more > a:hover {
  background-color: #0b5ed7;
  color: #fff;
}

.hatm-contact-shortcode .btn-more > a:focus {
  border-color: #0a58ca;
  outline: 0;
  background-color: #0b5ed7;
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}

.hatm-contact-form {
  margin: 0;
  padding: 0;
  border: 0;
}

.hatm-contact-required {
  margin-bottom: 16px;
  font-size: 14px;
}

.hatm-contact-required strong,
.hatm-contact-form .formRequired {
  color: #dc3545;
}

.hatm-contact-form .rsform-block {
  margin-bottom: 16px;
}

.hatm-contact-form .formControlLabel {
  display: inline-block;
  margin-bottom: 8px;
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.hatm-contact-form .form-control {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  padding: 0 12px;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  background-color: #f9f9f9;
  color: #495057;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 48px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.hatm-contact-form textarea.form-control {
  height: auto;
  min-height: 234px;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1.5;
  resize: vertical;
}

.hatm-contact-form .form-control:focus {
  border-color: #80bdff;
  outline: 0;
  background-color: #fff;
  box-shadow: none;
}

.hatm-contact-form .formDescription {
  margin: 0;
}

.hatm-contact-form .formError {
  display: block;
  margin-top: 6px;
  color: #cf4d4d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.hatm-contact-form .rsform-block-captcha-v3 {
  margin: 0;
}

.hatm-contact-form .rsform-submit-button {
  height: 48px;
  padding: 0 25px;
  border: 0;
  border-radius: 5px;
  background: #20c0fc;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hatm-contact-form .rsform-submit-button:hover,
.hatm-contact-form .rsform-submit-button:focus {
  border-color: transparent;
  background: #20c0fc;
  color: #fff;
  opacity: 0.9;
}

.hatm-contact-shortcode .rsform-error-message,
.hatm-contact-shortcode .alert {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hatm-contact-grid > .hatm-contact-address-column {
    width: 33.333333%;
  }
  .hatm-contact-grid > .hatm-contact-form-column {
    width: 66.666667%;
  }
}
@media (max-width: 991px) {
  .hatm-contact-main {
    font-size: 16px;
    line-height: 1.6;
  }
}
/* TMP Request Form article and RSForm Pro form, matched to the original form page */
.hatm-tmp-main {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  color: #888;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.hatm-tmp-main > .uk-container,
.hatm-tmp-main > .uk-section > .uk-container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1320px;
  padding-right: 15px;
  padding-left: 15px;
}

.hatm-tmp-shortcode,
.hatm-tmp-shortcode form {
  width: 100%;
  max-width: 500px;
  margin: 0 !important;
}

.hatm-tmp-form {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 20px;
  border: 0;
  background: #fff;
}

.hatm-tmp-form .hatm-tmp-section-heading {
  margin: 0 0 10px;
}

.hatm-tmp-form .hatm-tmp-section-heading:not(:first-child) {
  margin-top: 10px;
}

.hatm-tmp-form .hatm-tmp-section-heading h1,
.hatm-tmp-form .hatm-tmp-section-heading h2 {
  margin: 0;
  color: #888;
  font-family: inherit;
  font-size: 22px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
}

.hatm-tmp-form .hatm-tmp-section-description {
  margin: 7px 0 0;
  color: #888;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.hatm-tmp-form .rsform-block {
  margin: 0 0 10px;
}

.hatm-tmp-form .formControlLabel {
  display: block;
  width: auto;
  margin: 0 0 5px;
  color: #888;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.hatm-tmp-form .formRequired {
  color: #d73e31;
  font-weight: 400;
}

.hatm-tmp-form .form-control,
.hatm-tmp-form .form-select {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 42px;
  margin: 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  outline: 0;
  background-color: #fff;
  color: #888;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  box-shadow: none;
}

.hatm-tmp-form textarea.form-control {
  min-height: 82px;
  resize: vertical;
}

.hatm-tmp-form input[type=file].form-control {
  height: auto;
  min-height: 68px;
  padding: 20px 10px;
}

.hatm-tmp-form .form-control:focus,
.hatm-tmp-form .form-select:focus {
  border-color: #ccc;
  outline: 0;
  color: #888;
  box-shadow: none;
}

.hatm-tmp-form .formDescription {
  margin: 5px 0 0;
  color: #888;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.hatm-tmp-form .rsfp-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.hatm-tmp-form .form-check {
  display: flex;
  align-items: flex-start;
  min-height: 22px;
  margin: 0;
  padding: 0;
}

.hatm-tmp-form .form-check + .form-check {
  margin-top: 2px;
}

.hatm-tmp-form .form-check-input {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin: 4px 8px 0 0;
}

.hatm-tmp-form .form-check-label {
  color: #888;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.hatm-tmp-form .input-group {
  display: flex !important;
  flex-wrap: nowrap;
  width: 100%;
}

.hatm-tmp-form .input-group > .form-control {
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  border-radius: 3px 0 0 3px;
}

.hatm-tmp-form .btnCal,
.hatm-tmp-form .rsfp-field-multiple-plus-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 0 3px 3px 0;
  background: #f5f5f5;
  color: #666;
  font-family: inherit;
  font-size: 14px;
  line-height: 20px;
}

.hatm-tmp-form .rsfp-field-multiple-plus-button {
  min-height: 34px;
  margin-top: 7px;
  padding: 6px 10px;
  border-radius: 3px;
}

.hatm-tmp-form .formError {
  display: block;
  margin-top: 5px;
  color: #d73e31;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.hatm-tmp-form .rsform-block-captcha-v3 {
  color: #d73e31;
  font-size: 14px;
}

.hatm-tmp-form .rsform-submit-button {
  width: auto !important;
  min-height: 42px;
  padding: 10px 15px;
  border: 0;
  border-radius: 3px;
  background: #444;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  text-transform: none;
}

.hatm-tmp-form .rsform-submit-button:hover,
.hatm-tmp-form .rsform-submit-button:focus {
  outline: 0;
  background: #444;
  color: #fff;
  opacity: 0.8;
}

.hatm-tmp-shortcode .rsform-error-message,
.hatm-tmp-shortcode .alert {
  max-width: 500px;
  margin: 0 0 20px;
}

@media (max-width: 767px) {
  .hatm-tmp-main {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .hatm-tmp-form {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .hatm-contact-grid {
    margin-left: 0 !important;
  }
  .hatm-contact-grid > * {
    width: 100% !important;
    padding-left: 0 !important;
  }
  .hatm-contact-form-column {
    margin-top: 16px;
  }
  .hatm-contact-shortcode .btn-more > a {
    box-sizing: border-box;
    max-width: 100%;
  }
}
/* Our Story: original 4/8 narrative and 6/6 services/testimonial layout */
.hatm-story-main {
  padding-top: 37px !important;
  padding-bottom: 0 !important;
}

.hatm-story-intro-grid,
.hatm-story-services-grid {
  align-items: flex-start;
}

@media (min-width: 992px) {
  .hatm-story-intro-grid > :first-child {
    width: 33.333333% !important;
  }
  .hatm-story-intro-grid > :last-child {
    width: 66.666667% !important;
  }
  .hatm-story-services-grid > * {
    width: 50% !important;
  }
}
.hatm-story-quote-column {
  padding-right: 65px !important;
}

.hatm-story-quote {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
  color: #101010;
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -1px;
}

.hatm-story-copy {
  margin: 0 0 30px !important;
  color: #707070;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
}

.hatm-story-copy p {
  margin-top: 0;
  margin-bottom: 16px;
}

.hatm-story-copy p:last-child {
  margin-bottom: 16px;
}

.hatm-story-author {
  margin: 0 !important;
  color: #101010;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.hatm-story-role {
  margin: 6px 0 0 !important;
  color: #101010;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hatm-story-services {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.hatm-story-services-column {
  padding-right: 45px !important;
}

.hatm-story-clients-column {
  padding-left: 45px !important;
}

.hatm-story-section-title {
  margin-top: 10px !important;
  margin-bottom: 30px !important;
  color: #101010;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hatm-story-services-intro {
  margin: 0 !important;
  color: #707070;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.hatm-story-services-intro p,
.hatm-story-testimonial p {
  margin: 0;
}

.hatm-story-accordion {
  margin-top: 50px !important;
}

.hatm-story-accordion > li {
  margin: 0 !important;
  border: 1px solid #e5e5e5;
  border-top-width: 0;
  background: #fff;
}

.hatm-story-accordion > :nth-child(n+2) {
  margin-top: 0 !important;
}

.hatm-story-accordion > li:first-child {
  border-top-width: 1px;
}

.hatm-story-accordion .uk-accordion-title {
  position: relative;
  margin: 0;
  padding: 10px 30px 10px 15px;
  background: #f9f9f9;
  color: #101010;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.hatm-story-accordion .uk-accordion-title::before {
  display: none;
}

.hatm-story-accordion [uk-accordion-icon] {
  display: none;
}

.hatm-story-accordion .uk-accordion-title::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  content: "";
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
}

.hatm-story-accordion .uk-open > .uk-accordion-title::after {
  transform: translateY(-65%) rotate(135deg);
}

.hatm-story-accordion .uk-open > .uk-accordion-title,
.hatm-story-accordion .uk-accordion-title:hover,
.hatm-story-accordion .uk-accordion-title:focus {
  color: #101010;
}

.hatm-story-accordion .uk-accordion-content {
  margin: 0;
  padding: 15px;
  border-top: 1px solid #e5e5e5;
  color: #707070;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.hatm-story-accordion .uk-accordion-content p {
  margin-top: 0;
  margin-bottom: 16px;
}

.hatm-story-accordion .uk-accordion-content p:last-child {
  margin-bottom: 0;
}

.hatm-story-accordion .uk-accordion-content a {
  color: #20c0fc;
}

.hatm-story-testimonial {
  margin: 0 0 35px !important;
  color: #707070;
  font-size: 28px;
  font-weight: 300;
  line-height: 38px;
}

.hatm-story-testimonial-dot {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  border-radius: 50%;
  background: #20c0fc;
  font-size: 0;
  line-height: 0;
}

@media (max-width: 991px) {
  .hatm-story-quote {
    margin-top: 10px !important;
    margin-bottom: 25px !important;
    font-size: 32px;
    line-height: 38px;
  }
  .hatm-story-copy {
    font-size: 20px;
  }
  .hatm-story-author {
    font-size: 20px;
    line-height: 20px;
  }
  .hatm-story-services-column {
    padding-right: 15px !important;
  }
  .hatm-story-clients-column {
    padding-left: 0 !important;
  }
  .hatm-story-section-title {
    margin-bottom: 25px !important;
    font-size: 40px;
    line-height: 40px;
  }
  .hatm-story-clients-column .hatm-story-section-title {
    margin-bottom: 10px !important;
  }
  .hatm-story-testimonial {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .hatm-story-quote-column,
  .hatm-story-services-column {
    padding-right: 0 !important;
  }
  .hatm-story-quote {
    margin-bottom: 15px !important;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
  }
  .hatm-story-copy {
    font-size: 18px;
    line-height: 1.6;
  }
  .hatm-story-author {
    font-size: 18px;
    line-height: 18px;
  }
  .hatm-story-section-title {
    margin-bottom: 25px !important;
    font-size: 28px;
    line-height: 28px;
  }
  .hatm-story-services-intro {
    font-size: 16px;
    line-height: 20px;
  }
  .hatm-story-accordion {
    margin-top: 35px !important;
  }
  .hatm-story-accordion .uk-accordion-title {
    font-size: 16px;
  }
  .hatm-story-accordion .uk-accordion-content {
    font-size: 14px;
    line-height: 20px;
  }
  .hatm-story-clients-column .hatm-story-section-title {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .hatm-story-testimonial {
    margin-top: 15px !important;
    margin-bottom: 10px !important;
    font-size: 20px;
    line-height: 28px;
  }
}
.hatm-home-faq-section .hatm-home-faq .el-item {
  padding-top: 0;
}