:root {
  --ug-green: #3a9e3a;
  --ug-gray: #70727b;
  --ug-tan: #b9afa1;
  --ug-line: #e0dede;
  --ug-soft: #f9f9f9;
  --ug-body: "Lato", Arial, Helvetica, sans-serif;
  --ug-display: "Libre Baskerville", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  overflow-x: hidden;
}

body {
  background: #fff;
  color: var(--ug-gray);
  font-family: var(--ug-body);
  font-size: 17px;
  line-height: 30px;
  margin: 0;
  overflow-x: hidden;
}

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

a:hover,
a:focus {
  color: var(--ug-green);
}

.screen-reader-text {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.ug-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  height: 167px;
  position: relative;
  z-index: 10;
}

.ug-header-inner {
  align-items: center;
  display: flex;
  height: 167px;
  justify-content: space-between;
  padding: 0 180px 0 89px;
}

.ug-logo-link {
  display: block;
}

.ug-logo {
  display: block;
  height: auto;
  width: 489px;
}

.ug-menu-toggle {
  display: none;
}

.ug-header-tools {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 23px;
  justify-content: center;
  min-width: 918px;
  padding-top: 2px;
}

.ug-search {
  display: flex;
  height: 33px;
  width: 204px;
}

.ug-search input {
  border: 1px solid #d7d7d7;
  border-radius: 0;
  color: #777;
  font-family: var(--ug-body);
  font-size: 13px;
  height: 33px;
  padding: 0 12px;
  width: 171px;
}

.ug-search button {
  background: #000;
  border: 0;
  border-radius: 0;
  color: transparent;
  cursor: pointer;
  font-size: 0;
  height: 33px;
  padding: 0;
  position: relative;
  width: 33px;
}

.ug-search button::before {
  border: 2px solid #fff;
  border-radius: 50%;
  content: "";
  height: 12px;
  left: 10px;
  position: absolute;
  top: 8px;
  width: 12px;
}

.ug-search button::after {
  background: #fff;
  content: "";
  height: 2px;
  left: 20px;
  position: absolute;
  top: 20px;
  transform: rotate(45deg);
  transform-origin: left center;
  width: 7px;
}

.ug-menu,
.ug-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ug-menu {
  align-items: center;
  display: flex;
  gap: 35px;
}

.ug-menu-item {
  position: relative;
}

.ug-menu a {
  color: var(--ug-gray);
  display: block;
  font-family: var(--ug-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  white-space: nowrap;
}

.ug-menu .has-children > a::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: 3px;
}

.ug-menu a:hover,
.ug-menu a:focus {
  color: var(--ug-green);
}

.ug-submenu {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  display: none;
  left: 0;
  min-width: 245px;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  z-index: 20;
}

.ug-submenu .ug-submenu {
  left: 100%;
  top: 0;
}

.has-children:hover > .ug-submenu,
.has-children:focus-within > .ug-submenu {
  display: block;
}

.ug-submenu a {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  padding: 9px 16px;
  text-transform: none;
}

.ug-button,
.wpcf7-submit,
input[type="submit"] {
  background: var(--ug-tan);
  border: 2px solid var(--ug-tan);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: var(--ug-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 17px;
  min-width: 147px;
  padding: 13px 29px;
  text-align: center;
  text-transform: uppercase;
}

.ug-button:hover,
.ug-button:focus,
.wpcf7-submit:hover,
input[type="submit"]:hover {
  background: var(--ug-green);
  border-color: var(--ug-green);
  color: #fff;
}

.ug-button-outline {
  background: transparent;
  color: var(--ug-tan);
}

.ug-hero-slider {
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.ug-hero-slides,
.ug-hero-slide {
  height: 100%;
}

.ug-hero-slide {
  background-position: center center;
  background-size: cover;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity .6s ease;
  z-index: 1;
}

.ug-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.ug-hero-content {
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 1250px;
}

.ug-hero-content-center {
  text-align: center;
}

.ug-hero-content-left {
  text-align: left;
}

.ug-hero-content h1 {
  color: #6f727b;
  font-family: var(--ug-display);
  font-style: normal;
  font-weight: 400;
  display: block;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0 0 55px;
}

.ug-hero-content h1 em {
  font-style: italic;
}

.ug-hero-content .ug-button {
  padding-bottom: 11px;
  padding-top: 11px;
  width: var(--ug-hero-button-width, 211px);
}

.ug-hero-slide-one .ug-hero-content {
  top: 352px;
}

.ug-hero-slide-one h1 {
  font-size: 58px;
  margin-left: auto;
  margin-right: auto;
  width: 553px;
}

.ug-hero-slide-two .ug-hero-content {
  top: 354px;
}

.ug-hero-slide-two h1 {
  font-size: 76px;
  width: 547px;
}

.ug-hero-slide-two {
  --ug-hero-button-width: 215px;
}

.ug-hero-slide-three .ug-hero-content {
  top: 389px;
}

.ug-hero-slide-three h1 {
  font-size: 85px;
  margin-left: auto;
  margin-right: auto;
  width: 463px;
}

.ug-hero-arrow {
  align-items: center;
  background: rgba(0, 0, 0, .5);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  height: 63px;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  padding: 0 0 7px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity .2s ease;
  width: 63px;
  z-index: 4;
}

.ug-hero-slider:hover .ug-hero-arrow,
.ug-hero-slider:focus-within .ug-hero-arrow {
  opacity: .8;
}

.ug-hero-arrow:hover,
.ug-hero-arrow:focus {
  opacity: 1;
}

.ug-hero-arrow-prev {
  left: 0;
}

.ug-hero-arrow-next {
  right: 0;
}

.ug-innovation {
  background: #fff;
  height: 437px;
  padding-top: 94px;
  text-align: center;
}

.ug-leaf {
  background-image: url("../images/live-leaf-icon.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30px 35px;
  height: 35px;
  margin: 0 auto 30px;
  width: 30px;
}

.ug-innovation h2,
.ug-questions h2 {
  color: var(--ug-tan);
  font-family: var(--ug-display);
  font-size: 40px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 56px;
  margin: 0;
}

.ug-innovation h2 {
  margin-bottom: 80px;
}

.ug-categories {
  background: var(--ug-soft);
  height: 724px;
  overflow: hidden;
  padding-top: 280px;
  position: relative;
}

.ug-curve {
  background: #fff;
  border-radius: 0 0 50% 50%;
  height: 128px;
  left: -5%;
  position: absolute;
  right: -5%;
  top: -64px;
}

.ug-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 304px);
  justify-content: center;
  margin: 0 auto;
  max-width: 1216px;
}

.ug-category {
  align-items: flex-start;
  color: #6f727b;
  display: flex;
  flex-direction: column;
  font-family: var(--ug-display);
  font-size: 18px;
  font-style: italic;
  line-height: 30px;
  padding-left: 23px;
  text-align: center;
}

.ug-category span {
  display: block;
  width: 225px;
}

.ug-category img {
  display: block;
  height: 225px;
  margin-top: 28px;
  width: 225px;
}

.ug-questions {
  background-color: #fff;
  background-image: url("/wp-content/uploads/2021/10/questions-bg.jpg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 1045px;
  padding-top: 149px;
}

.ug-question-panel {
  margin: 0 auto;
  transform: translateX(18px);
  width: 743px;
}

.ug-questions h2 {
  font-size: 36px;
  line-height: 50px;
  margin-bottom: 31px;
  position: relative;
  text-align: center;
}

.ug-questions h2::before,
.ug-questions h2::after {
  border-top: 1px solid var(--ug-line);
  content: "";
  position: absolute;
  top: 50%;
  width: 240px;
}

.ug-questions h2::before {
  right: calc(50% + 108px);
}

.ug-questions h2::after {
  left: calc(50% + 108px);
}

.wpcf7-form p {
  margin: 0 0 20px;
}

.wpcf7-form label {
  color: var(--ug-gray);
  display: inline;
  font-family: var(--ug-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
}

.wpcf7-form input:not([type="submit"]),
.wpcf7-form select,
.wpcf7-form textarea,
.ug-content input,
.ug-content select,
.ug-content textarea {
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 0;
  color: var(--ug-gray);
  font-family: var(--ug-body);
  font-size: 13px;
  padding: 8px 15px;
  width: 100%;
}

.wpcf7-form input:not([type="submit"]),
.wpcf7-form select {
  height: 55px;
}

.wpcf7-form textarea {
  height: 150px;
  min-height: 150px;
}

.ug-testing-site .grecaptcha-badge,
.ug-testing-site .grecaptcha-logo,
.ug-testing-site .grecaptcha-error,
.ug-testing-site .grecaptcha-badge iframe[src*="recaptcha"],
.ug-testing-site .wpcf7-form iframe[src*="recaptcha"],
.ug-testing-site .wpcf7-form .g-recaptcha,
.ug-testing-site .wpcf7-form .wpcf7-recaptcha {
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden;
  visibility: hidden;
}

.ug-testing-site .grecaptcha-badge,
.ug-testing-site .grecaptcha-logo,
.ug-testing-site .grecaptcha-error,
.ug-testing-site .grecaptcha-badge iframe[src*="recaptcha"] {
  width: 0 !important;
}

.ug-footer {
  background: #fff;
  color: #8a8d95;
  font-size: 17px;
  height: 241px;
  line-height: 30px;
  padding: 74px 5% 0;
}

.ug-footer-inner {
  align-items: flex-start;
  display: grid;
  grid-template-columns: repeat(3, 530px);
  justify-content: space-between;
  margin: 0 auto;
  max-width: none;
}

.ug-footer p {
  margin: 0;
}

.ug-inner-hero {
  background-image: url("/wp-content/uploads/2021/08/slide4.jpg");
  background-position: center top;
  background-size: cover;
  height: 184px;
}

.ug-page-title {
  padding: 92px 30px 34px;
  text-align: center;
}

.ug-page-title h1 {
  color: #6f727b;
  font-family: var(--ug-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.ug-page {
  margin: 0 auto;
  max-width: 1170px;
  padding: 18px 30px 92px;
}

.ug-content,
.ug-shortcode-wrap,
.ug-contact-layout {
  color: var(--ug-gray);
}

.ug-content img {
  height: auto;
  max-width: 100%;
}

.ug-admin-app-page .ug-page {
  max-width: 1600px;
}

.ug-admin-page {
  color: var(--ug-gray);
  overflow-x: auto;
}

.ug-admin-page fieldset {
  align-items: center;
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0 0 18px;
  min-width: 0;
  padding: 0;
}

.ug-admin-page fieldset + br,
.ug-admin-page fieldset + br + br {
  display: none;
}

.ug-admin-page label,
body.ug-admin-app-page .ui-dialog label {
  color: #747474;
  font-family: var(--ug-body);
  font-size: 13px;
  font-weight: 700;
}

.ug-admin-page input[type="text"],
.ug-admin-page select,
body.ug-admin-app-page .ui-dialog input[type="text"],
body.ug-admin-app-page .ui-dialog select,
body.ug-admin-app-page .ui-dialog textarea {
  background: #fff;
  border: 1px solid #d2d2d2;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  color: #747474;
  font-family: var(--ug-body);
  font-size: 13px;
  min-height: 34px;
  padding: 8px 15px;
}

.ug-admin-page input[type="text"] {
  width: 180px;
}

.ug-admin-page select {
  min-width: 300px;
}

.ug-admin-page input[type="file"],
body.ug-admin-app-page .ui-dialog input[type="file"] {
  color: #747474;
  font-family: var(--ug-body);
  font-size: 13px;
}

.ug-admin-page input[type="submit"] {
  background: #b9afa1;
  border: 0;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  font-family: var(--ug-body);
  font-size: 13px;
  line-height: 20px;
  padding: 8px 18px;
  width: auto;
}

.ug-admin-page input[type="submit"]:hover,
.ug-admin-page input[type="submit"]:focus {
  background: #a69c8f;
}

.ug-admin-page .table {
  border-collapse: collapse;
  font-size: 13px;
  margin: 18px 0;
  width: 100%;
}

.ug-admin-page .table th,
.ug-admin-page .table td {
  border-bottom: 1px solid #e5e5e5;
  color: #747474;
  padding: 8px 10px;
  text-align: left;
}

.ug-admin-page .table th {
  font-weight: 700;
}

body.page-id-9 .ug-inner-hero {
  background-image: url("/wp-content/uploads/2016/08/Slide3.jpg");
  background-position: center center;
  height: 250px;
}

body.page-id-9 .ug-page-title {
  display: none;
}

body.page-id-9 .ug-page {
  margin: 0;
  max-width: none;
  padding: 0;
}

body.ug-hero-slide4 .ug-inner-hero {
  background-image: url("/wp-content/uploads/2021/08/slide4.jpg");
  background-position: center top;
  background-size: cover;
  height: 250px;
}

body.ug-hero-slide3 .ug-inner-hero {
  background-image: url("/wp-content/uploads/2016/08/Slide3.jpg");
  background-position: center top;
  background-size: cover;
  height: 250px;
}

body.ug-page-fullwidth .ug-page {
  margin: 0;
  max-width: none;
}

body.ug-page-flush .ug-page {
  padding: 0;
}

body.page-id-1344 .ug-page {
  padding: 100px 30px 708px;
}

body.page-id-1351 .ug-page {
  padding: 100px 30px 814px;
}

body.page-id-1355 .ug-page {
  padding: 100px 30px 856px;
}

body.page-id-1364 .ug-page {
  padding: 100px 30px 819px;
}

body.page-id-1610 .ug-page {
  padding: 100px 30px 99px;
}

.ug-investor-doc-inner {
  color: #747474;
  margin: 0 auto;
  max-width: 1170px;
}

.ug-investor-doc-inner h2 {
  color: #6f727b;
  font-family: var(--ug-display);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52.8px;
  margin: 0 0 26px;
}

.ug-investor-doc-table {
  color: #747474;
  font-size: 17px;
  line-height: 30px;
}

.ug-investor-doc-table .sec-filter {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
  text-align: left;
}

.ug-investor-doc-table #frmFilter {
  line-height: 30px;
  margin: 0;
  padding: 0;
  text-align: left;
}

.ug-investor-doc-table #frmFilter select {
  color: #747474;
  font-size: 13px;
  height: 27px;
  line-height: normal;
  padding: 3px;
}

.ug-investor-doc-table table.table {
  border-collapse: collapse;
  color: #747474;
  font-size: 17px;
  line-height: 30px;
  margin: 0 0 20px;
  text-align: center;
  width: 100%;
}

.ug-investor-doc-table table.table th {
  border-bottom: 2px solid #e5e4e3;
  color: #747474;
  font-weight: 700;
  line-height: 26.1538px;
  padding: 20px;
  text-align: center;
  vertical-align: bottom;
}

.ug-investor-doc-table table.table td {
  border-top: 1px solid #e5e4e3;
  color: #747474;
  line-height: 26.1538px;
  padding: 10px 20px;
  text-align: center;
  vertical-align: top;
}

body.page-id-1364 .ug-investor-doc-inner h2 {
  margin-bottom: 25px;
}

body.page-id-1364 .ug-investor-doc-table table.table {
  table-layout: fixed;
}

body.page-id-1364 .ug-investor-doc-table table.table th:first-child,
body.page-id-1364 .ug-investor-doc-table table.table td:first-child {
  width: 190px;
}

body.page-id-1364 .ug-investor-doc-table table.table th:nth-child(2),
body.page-id-1364 .ug-investor-doc-table table.table td:nth-child(2) {
  width: 803px;
}

body.page-id-1364 .ug-investor-doc-table table.table th:nth-child(3),
body.page-id-1364 .ug-investor-doc-table table.table td:nth-child(3) {
  width: 177px;
}

.ug-investor-subscribe-content {
  color: #747474;
  font-size: 17px;
  line-height: 30px;
}

.ug-investor-subscribe-content h2 {
  color: #6f727b;
  font-family: var(--ug-display);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52.8px;
  margin: 0 0 48px !important;
  text-align: center;
}

.ug-investor-subscribe-content .wpcf7,
.ug-investor-subscribe-content .wpcf7-form,
.ug-account-page .ug-contact-section .wpcf7,
.ug-account-page .ug-contact-section .wpcf7-form {
  margin: 0;
}

.ug-investor-subscribe-content .wpcf7-form p,
.ug-account-page .ug-contact-section .wpcf7-form p {
  margin: 0 0 20px;
}

.ug-investor-subscribe-content .wpcf7-form label,
.ug-account-page .ug-contact-section .wpcf7-form label {
  color: #747474;
  display: block;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
}

.ug-investor-subscribe-content .wpcf7-form-control-wrap,
.ug-account-page .ug-contact-section .wpcf7-form-control-wrap {
  display: block;
}

.ug-investor-subscribe-content input[type="text"],
.ug-investor-subscribe-content input[type="email"],
.ug-account-page .ug-contact-section .wpcf7-form input:not([type="submit"]),
.ug-account-page .ug-contact-section .wpcf7-form textarea {
  background: #fff;
  border: 1px solid #d2d2d2;
  box-shadow: none;
  box-sizing: border-box;
  color: #747474;
  display: block;
  font-family: var(--ug-body);
  font-size: 13px;
  line-height: normal;
  margin: 0;
  padding: 0 15px;
  width: 100%;
}

body.page-id-1315 .ug-inner-hero {
  background-image: url("/wp-content/uploads/2018/06/ptb_cta-new.jpg");
  background-position: center top;
  background-size: cover;
  height: 250px;
  position: relative;
}

body.page-id-1315 .ug-inner-hero::after {
  color: #fff;
  content: "Register";
  display: block;
  font-family: var(--ug-display);
  font-size: 52px;
  font-weight: 400;
  left: 50%;
  line-height: 72.8px;
  position: absolute;
  top: 88px;
  transform: translateX(-50%);
  width: 1170px;
}

body.page-id-1307 .ug-page,
body.page-id-1315 .ug-page {
  padding: 100px 30px;
}

.ug-account-page {
  color: #747474;
  font-size: 17px;
  line-height: 30px;
  margin: 0 auto;
  max-width: 1216.8px;
}

.ug-account-inner {
  display: flex;
  justify-content: center;
  margin: 0;
}

.ug-account-column {
  box-sizing: border-box;
  padding-left: 23.36px;
  padding-right: 23.36px;
}

.ug-login-column {
  flex: 0 0 60%;
  max-width: 60%;
}

.ug-register-column {
  flex: 0 0 66.666%;
  max-width: 66.666%;
}

.ug-login-column h2 {
  color: #6f727b;
  font-family: var(--ug-display);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52.8px;
  margin: 0 0 25px;
  text-align: left;
}

.ug-login-intro p {
  margin: 0 0 20px;
}

.ug-login-button,
.ug-login-page form#login button,
.ug-account-page .ug-contact-section .wpcf7-submit,
.ug-register-page form#register input[type="submit"],
.ug-investor-subscribe-content input[type="submit"] {
  -webkit-appearance: none;
  align-items: center;
  appearance: none;
  background: #b9afa1;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--ug-body);
  font-size: 14px;
  font-weight: 400;
  height: 43px;
  justify-content: center;
  line-height: 17px;
  margin: 0;
  min-width: 0;
  padding: 13px 29px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  width: auto;
}

.ug-login-button:hover,
.ug-login-button:focus,
.ug-login-page form#login button:hover,
.ug-login-page form#login button:focus,
.ug-account-page .ug-contact-section .wpcf7-submit:hover,
.ug-account-page .ug-contact-section .wpcf7-submit:focus,
.ug-register-page form#register input[type="submit"]:hover,
.ug-register-page form#register input[type="submit"]:focus,
.ug-investor-subscribe-content input[type="submit"]:hover {
  background: #a69c8f;
  color: #fff;
  text-decoration: none;
}

.ug-login-register {
  margin-left: 0;
  vertical-align: baseline;
  width: 186px;
}

.ug-login-register-wrap {
  margin: 0 0 20px;
}

.ug-account-page form {
  color: #747474;
  margin: 0;
  padding: 0;
}

.ug-account-page form fieldset {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.ug-account-page form .required-field {
  margin: 0;
}

.ug-account-page form label {
  color: #747474;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
}

.ug-login-page form#login label {
  display: block;
  margin-bottom: 5px;
}

.ug-login-page form#login input[type="text"],
.ug-login-page form#login input[type="password"],
.ug-register-page form#register input[type="text"],
.ug-register-page form#register input[type="email"],
.ug-register-page form#register input[type="password"] {
  background: #fff;
  border: 1px solid #d2d2d2;
  box-shadow: none;
  box-sizing: border-box;
  color: #747474;
  display: block;
  font-family: var(--ug-body);
  font-size: 13px;
  height: 25px;
  line-height: normal;
  padding: 3.25px;
  width: 100%;
}

.ug-login-page form#login input[type="text"],
.ug-login-page form#login input[type="password"] {
  margin: 0;
}

.ug-login-page form#login br {
  display: block;
  line-height: 30px;
}

.ug-login-page form#login fieldset:last-child {
  font-size: 0;
  text-align: center;
}

.ug-login-page form#login button[value="ug_login"] {
  width: 111px;
}

.ug-login-page form#login button[value="ug_password_reset_start"] {
  margin-left: 3px;
  width: 226px;
}

.ug-register-page form#register .required-field {
  min-height: 60px;
}

.ug-register-page form#register label {
  display: inline;
}

.ug-register-page form#register input[type="text"],
.ug-register-page form#register input[type="email"],
.ug-register-page form#register input[type="password"] {
  margin: 4px 0 0;
}

.ug-register-page form#register fieldset:last-child {
  font-size: 0;
  text-align: center;
}

.ug-register-page form#register input[type="submit"] {
  width: 139px;
}

.ug-account-page .ug-contact-section {
  background-color: #fff;
  background-image: url("/wp-content/uploads/2021/10/questions-bg.jpg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
  height: 966px;
  margin: 60px 0 0 calc(50% - 50vw);
  padding: 149px 30px 0;
  width: 100vw;
}

.ug-register-page .ug-contact-section {
  margin-top: 50px;
}

.ug-account-page .ug-contact-panel {
  box-sizing: border-box;
  margin: 0 0 0 calc(50% - 353px);
  width: 743px;
}

.ug-account-page .ug-contact-heading {
  color: #a79c8e;
  font-family: var(--ug-display);
  font-size: 50px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 70px;
  margin: 0 0 31px;
  position: relative;
  text-align: center;
}

.ug-account-page .ug-contact-heading::before,
.ug-account-page .ug-contact-heading::after {
  border-top: 1px solid #e0dede;
  content: "";
  position: absolute;
  top: 50%;
  width: 240px;
}

.ug-account-page .ug-contact-heading::before {
  right: calc(50% + 119px);
}

.ug-account-page .ug-contact-heading::after {
  left: calc(50% + 119px);
}

.ug-investor-subscribe-content input[type="text"],
.ug-investor-subscribe-content input[type="email"],
.ug-account-page .ug-contact-section .wpcf7-form input:not([type="submit"]) {
  height: 55px;
}

.ug-account-page .ug-contact-section .wpcf7-form textarea {
  height: 150px;
  line-height: 20px;
  min-height: 150px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.ug-account-page .ug-contact-section .wpcf7-recaptcha {
  display: block;
  height: 78px !important;
  min-height: 78px !important;
  overflow: visible;
  visibility: visible;
}

.ug-account-page .ug-contact-section .wpcf7-form .g-recaptcha,
.ug-account-page .ug-contact-section .wpcf7-form iframe[src*="recaptcha"] {
  height: 78px !important;
  min-height: 78px !important;
  visibility: visible;
}

.ug-account-page .ug-contact-section .wpcf7-submit,
.ug-investor-subscribe-content input[type="submit"] {
  width: 123px;
}

.ug-investor-subscribe-content .wpcf7-spinner,
.ug-account-page .ug-contact-section .wpcf7-spinner {
  display: none;
}

body.page-id-1329 .ug-page {
  max-width: 1230px;
  padding: 100px 30px 92px;
}

body.page-id-1329 .ug-shortcode-wrap {
  text-align: center;
}

body.page-id-1329 .ug-shortcode-wrap h2.fusion-responsive-typography-calculated {
  color: #6f727b;
  font-family: var(--ug-display);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52.8px;
  margin: 0 0 48px;
  text-align: center;
}

body.page-id-1329 .ug-shortcode-wrap table.table {
  border-collapse: collapse;
  color: #747474;
  font-size: 17px;
  line-height: 30px;
  margin: 0 0 20px;
  table-layout: auto;
  width: 100%;
}

body.page-id-1329 .ug-shortcode-wrap table.table th,
body.page-id-1329 .ug-shortcode-wrap table.table td {
  border-top: 1px solid #e5e4e3;
  color: #747474;
  font-weight: 400;
  line-height: 26.1538px;
  text-align: center;
  vertical-align: middle;
}

body.page-id-1329 .ug-shortcode-wrap table.table th[scope="row"] {
  font-style: italic;
  padding: 20px;
  width: 63.5897%;
}

body.page-id-1329 .ug-shortcode-wrap table.table td:last-child {
  font-style: normal;
  padding: 10px 20px;
  width: 36.4103%;
}

body.page-id-1329 .ug-shortcode-wrap table.table a {
  color: var(--ug-tan);
  font-size: 17px;
  line-height: 26.1538px;
}

body.page-id-1329 .ug-shortcode-wrap table.table a:hover,
body.page-id-1329 .ug-shortcode-wrap table.table a:focus {
  color: var(--ug-green);
}

.ug-orders-page,
.ug-faq-page {
  color: #747474;
  font-size: 17px;
  line-height: 30px;
}

.ug-orders-inner {
  margin: 0 auto;
  max-width: 1217px;
  padding: 0 23px;
}

.ug-orders-page p {
  margin: 0 0 20px;
}

.ug-orders-page h2,
.ug-faq-page h2 {
  color: #6f727b;
  font-family: var(--ug-display);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52.8px;
}

.ug-orders-page h2 {
  margin: 0 0 26px;
}

.ug-orders-page h3,
.ug-faq-page h3 {
  color: #328440;
  font-family: var(--ug-display);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin: 25px 0;
}

.ug-orders-intro h3 {
  margin-top: 54px;
}

.ug-orders-intro {
  padding: 90px 0 40px;
}

.ug-orders-ashland {
  display: grid;
  gap: 42px;
  grid-template-columns: 364px 364px;
  justify-content: center;
  margin-top: 15px;
}

.ug-orders-regions {
  background: var(--ug-soft);
  margin-top: 20px;
  min-height: 536px;
  padding: 40px 70px 0;
}

.ug-orders-regions-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-evenly;
  margin: 0 auto;
  max-width: 1851px;
}

.ug-orders-region {
  color: #4a4e57;
  min-height: 441px;
  padding: 20px 0 5px;
  width: 392px;
}

.ug-orders-region h2 {
  color: #212934;
  font-size: 24px;
  line-height: 26.4px;
  margin: 0 0 16px;
}

.ug-orders-details {
  padding: 335px 0 0;
}

.ug-orders-details .ug-orders-inner {
  min-height: 512px;
}

.ug-orders-questions,
.ug-faq-questions {
  background: #fff;
  min-height: 966px;
  padding: 149px 30px 0;
}

.ug-orders-question-panel,
.ug-faq-question-panel {
  margin: 0 auto;
  width: 743px;
}

.ug-orders-questions .ug-contact-heading,
.ug-faq-questions .ug-contact-heading {
  color: #a79c8e;
  font-family: var(--ug-display);
  font-size: 50px;
  font-style: italic;
  font-weight: 400;
  line-height: 70px;
  margin: 0 0 31px;
  text-align: center;
}

.ug-orders-questions .wpcf7-form input:not([type="submit"]),
.ug-orders-questions .wpcf7-form select,
.ug-orders-questions .wpcf7-form textarea,
.ug-faq-questions .wpcf7-form input:not([type="submit"]),
.ug-faq-questions .wpcf7-form select,
.ug-faq-questions .wpcf7-form textarea {
  border-color: #d2d2d2;
}

.ug-orders-questions .wpcf7-submit,
.ug-faq-questions .wpcf7-submit {
  border: 0;
  min-width: 123px;
}

.ug-faq-content {
  padding: 60px 0 98px;
}

.ug-faq-inner {
  margin: 0 auto;
  max-width: 1255px;
}

.ug-faq-page h2 {
  margin: 20px 0 50px;
}

.ug-faq-item summary {
  color: #747474;
  cursor: pointer;
  display: block;
  font-size: 17px;
  list-style: none;
  line-height: 30px;
  margin: 0;
  padding: 8.5px 34px 8.5px 8.5px;
  position: relative;
}

.ug-faq-item summary::-webkit-details-marker {
  display: none;
}

.ug-faq-item summary::marker {
  content: "";
}

.ug-faq-item summary::after {
  color: #747474;
  content: "+";
  display: block;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  position: absolute;
  right: 8.5px;
  top: 8.5px;
}

.ug-faq-item[open] summary::after {
  content: "-";
}

.ug-faq-accordion strong {
  font-weight: 700;
}

.ug-faq-answer {
  color: #747474;
  font-size: 17px;
  line-height: 30px;
  padding: 0 8.5px 17px;
}

.ug-faq-answer p {
  margin: 0 0 17px;
}

.ug-faq-answer p:last-child {
  margin-bottom: 0;
}

.ug-faq-answer a {
  color: #3a9e3a;
  text-decoration: none;
}

.ug-faq-answer a:hover {
  text-decoration: underline;
}

.ug-faq-questions {
  background-image: url("/wp-content/uploads/2021/10/questions-bg.jpg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.ug-certification-row {
  align-items: flex-start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 270px;
  margin: 0 auto;
  max-width: 1217px;
}

.ug-certification-row:nth-of-type(2) {
  height: 310px;
}

.ug-certification-image,
.ug-certification-content {
  padding: 20px 23px;
}

.ug-certification-image {
  text-align: center;
}

.ug-certification-image img {
  display: inline-block;
  height: 150px;
  width: 150px;
}

.ug-certification-content {
  color: #747474;
  font-size: 17px;
  line-height: 30px;
  text-align: center;
}

.ug-certification-content h3 {
  color: #328440;
  font-family: var(--ug-display);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin: 25px 0;
}

.ug-certification-row:nth-of-type(4) .ug-certification-content h3 {
  font-size: 29px;
}

.ug-certification-content p {
  margin: 0 0 20px;
}

.ug-certification-content a {
  color: var(--ug-tan);
  font-size: 17px;
  line-height: 30px;
}

.ug-certification-content a:hover,
.ug-certification-content a:focus {
  color: var(--ug-green);
}

.ug-certification-detail {
  color: #747474;
  font-size: 17px;
  line-height: 30px;
}

.ug-certification-separator {
  border: 0;
  border-top: 1px solid var(--ug-tan);
  height: 1px;
  margin: 20px auto;
  max-width: 1170px;
}

.ug-about-intro {
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: 1120px;
}

.ug-about-intro-copy {
  padding: 90px 120px 80px;
}

.ug-about-intro h2 {
  align-items: center;
  color: var(--ug-gray);
  display: flex;
  font-family: var(--ug-display);
  font-size: 48px;
  font-weight: 400;
  gap: 34px;
  line-height: 52.8px;
  margin: 0 0 54px;
}

.ug-about-intro h2::after {
  border-top: 1px solid var(--ug-line);
  content: "";
  flex: 1;
}

.ug-about-intro p {
  color: var(--ug-gray);
  font-size: 18px;
  line-height: 30px;
  margin: 0 0 20px;
}

.ug-about-tagline {
  color: #258435;
  font-family: var(--ug-display);
  font-size: 31px !important;
  line-height: 1.2 !important;
  margin-top: 30px !important;
  text-align: center;
}

.ug-about-tagline span {
  font-family: var(--ug-body);
}

.ug-about-intro-image {
  background-image: url("/wp-content/uploads/2018/06/avada-spa-about-top-image-new.jpg");
  background-position: right bottom;
  background-size: cover;
}

.ug-about-staff {
  background: var(--ug-soft);
  padding: 112px 0 130px;
}

.ug-about-staff-inner {
  align-items: center;
  display: grid;
  grid-template-columns: 60% 40%;
  margin: 0 auto;
  max-width: 1217px;
}

.ug-about-people-column {
  padding: 0 23px;
}

.ug-about-people-column h3 {
  color: #328440;
  font-family: var(--ug-display);
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
  line-height: 30px;
  margin: 25px 0;
}

.ug-about-people-column p {
  color: #747474;
  font-size: 17px;
  line-height: 30px;
  margin: 0 0 20px;
}

.ug-about-people-column strong {
  font-weight: 700;
}

.ug-shortcode-wrap {
  text-align: center;
}

body.page-id-1319 .ug-page,
body.page-id-1583 .ug-page {
  max-width: 1230px;
  padding-top: 100px;
}

.ug-shortcode-wrap h2.fusion-responsive-typography-calculated {
  color: var(--ug-gray);
  font-family: var(--ug-display);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52.8px;
  margin: 0 0 48px;
  text-align: center;
}

.ug-shortcode-wrap h3 {
  color: #328440;
  font-family: var(--ug-display);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin: 60px 0 30px;
  text-align: center;
}

.ug-shortcode-wrap .product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 17px 0;
  padding: 0;
}

.ug-shortcode-wrap .product-grid.vertical {
  align-items: center;
  flex-direction: column;
}

.ug-shortcode-wrap .product-grid li {
  padding: 8.5px;
  width: calc(100% / 6);
}

.ug-shortcode-wrap .product-grid.vertical li {
  max-width: 100%;
  width: 12em;
}

.ug-shortcode-wrap .product-grid a {
  align-items: normal;
  background: #e3e3e3;
  border-radius: .5em;
  color: var(--ug-gray);
  display: flex;
  flex-direction: column;
  font-family: var(--ug-body);
  font-size: 17px;
  height: 3.5em;
  justify-content: center;
  line-height: 30px;
  padding: 0 1em;
  text-align: center;
  text-decoration: none;
}

.ug-shortcode-wrap .product-grid a:hover,
.ug-shortcode-wrap .product-grid a:focus {
  background: #e3e3e3;
  color: var(--ug-gray);
}

.ug-shortcode-wrap .product-grid a span {
  display: block;
}

.ug-shortcode-wrap .product-columns {
  display: flex;
}

.ug-shortcode-wrap .product-columns .product-col {
  flex: 1;
}

.ug-notice {
  border: 1px solid var(--ug-line);
  padding: 24px;
  text-align: center;
}

.ug-contact-layout {
  display: grid;
  gap: 48px;
  grid-template-columns: 2fr 1fr;
}

@media (max-width: 1500px) {
  .ug-header-inner {
    padding: 0 48px;
  }

  .ug-logo {
    width: 375px;
  }

  .ug-header-tools {
    min-width: 795px;
  }

  .ug-menu {
    gap: 22px;
  }

  .ug-menu a {
    font-size: 14px;
  }

  .ug-footer-inner {
    gap: 36px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1170px;
  }

  .ug-orders-regions-grid {
    gap: 30px;
    grid-template-columns: repeat(2, minmax(0, 392px));
    justify-content: center;
  }

  .ug-orders-region {
    width: auto;
  }
}

@media (max-width: 1199px) {
  .ug-header {
    height: auto;
  }

  .ug-header-inner {
    align-items: center;
    display: grid;
    gap: 14px 18px;
    grid-template-columns: 1fr auto;
    height: auto;
    padding: 16px;
  }

  .ug-logo {
    width: 245px;
  }

  .ug-menu-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: block;
    height: 36px;
    padding: 0;
    position: relative;
    width: 36px;
  }

  .ug-menu-toggle::before,
  .ug-menu-toggle::after {
    background: #6f727b;
    content: "";
    height: 2px;
    left: 8px;
    position: absolute;
    width: 20px;
  }

  .ug-menu-toggle::before {
    box-shadow: 0 6px 0 #6f727b;
    top: 11px;
  }

  .ug-menu-toggle::after {
    top: 23px;
  }

  .ug-header-tools {
    align-items: stretch;
    grid-column: 1 / -1;
    gap: 16px;
    min-width: 0;
    width: 100%;
  }

  .ug-search {
    width: 204px;
  }

  .ug-nav {
    display: none;
  }

  .ug-header.is-nav-open .ug-nav {
    display: block;
  }

  .ug-menu {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .ug-menu a {
    line-height: 22px;
    white-space: normal;
  }

  .ug-menu-item,
  .ug-submenu,
  .ug-submenu-item {
    max-width: 100%;
    width: 100%;
  }

  .ug-submenu {
    box-shadow: none;
    display: block;
    min-width: 0;
    padding: 6px 0 0 16px;
    position: static;
  }

  .ug-hero-slider {
    height: auto;
    min-height: 560px;
  }

  .ug-hero-content {
    left: 50%;
    max-width: calc(100vw - 40px);
    width: calc(100vw - 40px);
  }

  .ug-hero-content h1,
  .ug-hero-slide-one h1,
  .ug-hero-slide-two h1,
  .ug-hero-slide-three h1 {
    font-size: 42px;
    letter-spacing: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .ug-categories {
    height: auto;
    padding: 160px 20px 80px;
  }

  .ug-curve {
    left: 0;
    right: 0;
  }

  .ug-category-grid {
    gap: 64px;
    grid-template-columns: minmax(0, 225px);
    max-width: 100%;
  }

  .ug-category {
    align-items: center;
    padding-left: 0;
  }

  .ug-questions {
    height: auto;
    padding: 90px 20px 120px;
  }

  .ug-question-panel {
    transform: none;
    width: min(743px, 100%);
  }

  .ug-questions h2::before,
  .ug-questions h2::after,
  .ug-account-page .ug-contact-heading::before,
  .ug-account-page .ug-contact-heading::after {
    display: none;
  }

  .ug-footer {
    height: auto;
    padding: 40px 20px;
  }

  .ug-footer-inner {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .ug-account-page .ug-contact-section {
    height: auto;
    margin-left: calc(50% - 50vw);
    padding: 90px 20px 120px;
  }

  .ug-account-page .ug-contact-panel {
    margin: 0 auto;
    width: min(743px, 100%);
  }

  .ug-contact-layout {
    grid-template-columns: 1fr;
  }

  .ug-investor-doc-table {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ug-investor-doc-table table.table {
    min-width: 640px;
  }

  body.page-id-1364 .ug-investor-doc-table table.table {
    min-width: 900px;
  }

  .ug-shortcode-wrap .product-columns {
    flex-wrap: wrap;
  }

  .ug-shortcode-wrap .product-columns .product-col {
    flex: 1 1 50%;
  }

  .ug-orders-ashland {
    grid-template-columns: repeat(2, minmax(0, 364px));
  }

  .ug-orders-regions {
    padding-left: 30px;
    padding-right: 30px;
  }

  .ug-orders-regions-grid {
    gap: 30px;
    grid-template-columns: repeat(2, minmax(0, 392px));
    justify-content: center;
  }

  .ug-orders-region {
    width: auto;
  }

  .ug-orders-question-panel,
  .ug-faq-question-panel {
    width: min(743px, 100%);
  }

  .ug-about-intro,
  .ug-about-staff-inner {
    grid-template-columns: 1fr;
  }

  .ug-about-intro {
    min-height: 0;
  }

  .ug-about-intro-copy {
    padding: 60px 30px;
  }

  .ug-about-intro-image {
    min-height: 520px;
  }

  .ug-about-staff {
    padding: 70px 30px;
  }

  .ug-about-people-column {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .ug-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ug-hero-content h1,
  .ug-hero-slide-one h1,
  .ug-hero-slide-two h1,
  .ug-hero-slide-three h1 {
    font-size: 34px;
  }

  .ug-shortcode-wrap .product-columns .product-col {
    flex-basis: 100%;
  }

  .ug-orders-inner {
    padding: 0 20px;
  }

  .ug-orders-ashland,
  .ug-orders-regions-grid {
    grid-template-columns: 1fr;
  }

  .ug-orders-regions,
  .ug-orders-questions,
  .ug-faq-questions {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ug-orders-page h2,
  .ug-faq-page h2,
  .ug-investor-doc-inner h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .ug-account-page .ug-contact-heading,
  .ug-orders-questions .ug-contact-heading,
  .ug-faq-questions .ug-contact-heading {
    font-size: 40px;
    line-height: 50px;
  }
}
