body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Unbounded', sans-serif;
  font-size: 4rem;
  line-height: 1.15;
}
.display-1 > .grid-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.63rem;
  line-height: 1.15;
}
.display-2 > .grid-iconfont {
  font-size: 3.2875rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-4 > .grid-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.1rem;
  line-height: 1.4;
}
.display-5 > .grid-iconfont {
  font-size: 2.625rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .grid-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.104rem;
    font-size: calc( 1.5705rem + (2.63 - 1.5705) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.5705rem + (2.63 - 1.5705) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.68rem;
    font-size: calc( 1.385rem + (2.1 - 1.385) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.385rem + (2.1 - 1.385) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #7ba389 !important;
}
.bg-success {
  background-color: #a6b1d8 !important;
}
.bg-info {
  background-color: #5189b8 !important;
}
.bg-warning {
  background-color: #f5db6e !important;
}
.bg-danger {
  background-color: #b63b07 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #7ba389 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #131313 !important;
  background-color: #7ba389 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #131313 !important;
  background-color: #52755e !important;
  border-color: #52755e !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #a6d8b5 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #131313 !important;
  background-color: #a6d8b5 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #131313 !important;
  background-color: #6abe83 !important;
  border-color: #6abe83 !important;
}
.btn-info,
.btn-info:active {
  background-color: #5189b8 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #131313 !important;
  background-color: #5189b8 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #131313 !important;
  background-color: #345c7f !important;
  border-color: #345c7f !important;
}
.btn-success,
.btn-success:active {
  background-color: #a6b1d8 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #131313 !important;
  background-color: #a6b1d8 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #131313 !important;
  background-color: #6a7cbe !important;
  border-color: #6a7cbe !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f5db6e !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #131313 !important;
  background-color: #f5db6e !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #131313 !important;
  background-color: #efc71d !important;
  border-color: #efc71d !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b63b07 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #131313 !important;
  background-color: #b63b07 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #131313 !important;
  background-color: #632004 !important;
  border-color: #632004 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #131313 !important;
  background-color: #ffffff !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #131313 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black,
.btn-black:active {
  background-color: #131313 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #131313 !important;
  background-color: #131313 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #131313 !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #7ba389;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #52755e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #7ba389 !important;
  border-color: #7ba389 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a6d8b5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #6abe83 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #275836 !important;
  background-color: #a6d8b5 !important;
  border-color: #a6d8b5 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #5189b8;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #345c7f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #5189b8 !important;
  border-color: #5189b8 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a6b1d8;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #6a7cbe !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #a6b1d8 !important;
  border-color: #a6b1d8 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f5db6e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #efc71d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #5e4d06 !important;
  background-color: #f5db6e !important;
  border-color: #f5db6e !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b63b07;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #632004 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b63b07 !important;
  border-color: #b63b07 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #131313;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #131313 !important;
  border-color: #131313 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #7ba389 !important;
}
.text-secondary {
  color: #a6d8b5 !important;
}
.text-success {
  color: #a6b1d8 !important;
}
.text-info {
  color: #5189b8 !important;
}
.text-warning {
  color: #f5db6e !important;
}
.text-danger {
  color: #b63b07 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #131313 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #4c6c57 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #5fb97a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #5f73b9 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2f5474 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #edc210 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #541b03 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #7ba389;
}
.nav-tabs .nav-link:not(.active) {
  color: #131313;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #5189b8;
}
.alert-warning {
  background-color: #f5db6e;
}
.alert-danger {
  background-color: #b63b07;
}
.grid-gallery-filter li.active .btn {
  background-color: #7ba389;
  border-color: #7ba389;
  color: #ffffff;
}
.grid-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #7ba389;
}
.grid-plan-header.bg-primary .grid-plan-subtitle,
.grid-plan-header.bg-primary .grid-plan-price-desc {
  color: #c6d7cc;
}
.grid-plan-header.bg-success .grid-plan-subtitle,
.grid-plan-header.bg-success .grid-plan-price-desc {
  color: #ffffff;
}
.grid-plan-header.bg-info .grid-plan-subtitle,
.grid-plan-header.bg-info .grid-plan-price-desc {
  color: #acc6dd;
}
.grid-plan-header.bg-warning .grid-plan-subtitle,
.grid-plan-header.bg-warning .grid-plan-price-desc {
  color: #ffffff;
}
.grid-plan-header.bg-danger .grid-plan-subtitle,
.grid-plan-header.bg-danger .grid-plan-price-desc {
  color: #f87a45;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .grid-iconfont {
  font-size: 1.625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #7ba389 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .grid-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #7ba389;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #7ba389;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #7ba389;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #7ba389;
  border-bottom-color: #7ba389;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #7ba389 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #a6d8b5 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%237ba389' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: .3s all;
  font-weight: 600 !important;
}
a:hover {
  background-image: none !important;
}
.container,
.container-small {
  max-width: 1440px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1600px) {
  .container,
  .container-small {
    max-width: 1320px;
  }
}
@media (max-width: 1399px) {
  .container,
  .container-small {
    max-width: 1140px;
  }
}
@media (max-width: 1199px) {
  .container,
  .container-small {
    max-width: 960px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 991px) {
  .container,
  .container-small {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container,
  .container-small {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .container,
  .container-small {
    max-width: 100%;
  }
}
.container,
.container-small {
  max-width: 1480px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  word-wrap: break-word;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1500px) {
  .container,
  .container-small {
    max-width: 1180px;
  }
}
@media (max-width: 1024px) {
  .container,
  .container-small {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .container,
  .container-small {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 767px) {
  .container,
  .container-small {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.container-fluid {
  max-width: 1724px;
  padding-left: 12px;
  padding-right: 12px;
}
.row {
  margin-left: -12px;
  margin-right: -12px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 12px;
  padding-right: 12px;
}
b,
strong {
  font-weight: 600 !important;
}
.grid-section-btn .btn {
  position: relative;
  min-width: 100px;
  min-height: 68px;
  padding: 20px 44px;
  border-radius: 0;
  font-weight: 600 !important;
  transition: all .3s;
}
@media (max-width: 1199px) {
  .grid-section-btn .btn {
    padding: 20px 30px;
  }
}
@media (max-width: 767px) {
  .grid-section-btn .btn {
    padding: 15px 20px;
  }
}
.grid-section-btn .btn-black {
  color: #FFFFFF !important;
  border: 2px solid #FFFFFF !important;
  box-shadow: 4px 4px 0 #FFFFFF !important;
}
.grid-section-btn .btn-black:hover {
  box-shadow: none !important;
}
.tTMhub-tBocOvocla {
  z-index: 1000;
  width: 100%;
}
.tTMhub-tBocOvocla nav.navbar {
  position: fixed;
}
.tTMhub-tBocOvocla .dropdown-item:before {
  font-family: pixel2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.tTMhub-tBocOvocla .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.tTMhub-tBocOvocla .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.tTMhub-tBocOvocla .dropdown-item:hover,
.tTMhub-tBocOvocla .dropdown-item:focus {
  background: #7ba389 !important;
  color: white !important;
}
.tTMhub-tBocOvocla .dropdown-item:hover span {
  color: white;
}
.tTMhub-tBocOvocla .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.tTMhub-tBocOvocla .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.tTMhub-tBocOvocla .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.tTMhub-tBocOvocla .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.tTMhub-tBocOvocla .nav-link {
  position: relative;
}
.tTMhub-tBocOvocla .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .tTMhub-tBocOvocla .container {
    flex-wrap: nowrap;
  }
}
.tTMhub-tBocOvocla .navbar-nav {
  margin: 0 auto;
}
.tTMhub-tBocOvocla .dropdown-menu,
.tTMhub-tBocOvocla .navbar.opened {
  background: #1f3f2b !important;
}
.tTMhub-tBocOvocla .nav-item:focus,
.tTMhub-tBocOvocla .nav-link:focus {
  outline: none;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item .grid-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item .grid-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.tTMhub-tBocOvocla .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.tTMhub-tBocOvocla .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.tTMhub-tBocOvocla .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #1f3f2b;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.tTMhub-tBocOvocla .navbar.opened {
  transition: all 0.3s;
}
.tTMhub-tBocOvocla .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.tTMhub-tBocOvocla .navbar .navbar-logo img {
  width: auto;
}
.tTMhub-tBocOvocla .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.tTMhub-tBocOvocla .navbar.collapsed {
  justify-content: center;
}
.tTMhub-tBocOvocla .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.tTMhub-tBocOvocla .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .tTMhub-tBocOvocla .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.tTMhub-tBocOvocla .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .tTMhub-tBocOvocla .navbar .nav-item .nav-link::before {
    display: none;
  }
  .tTMhub-tBocOvocla .navbar.opened .dropdown-menu {
    top: 0;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .tTMhub-tBocOvocla .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .tTMhub-tBocOvocla .navbar ul.navbar-nav li {
    margin: auto;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .tTMhub-tBocOvocla .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .tTMhub-tBocOvocla .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .tTMhub-tBocOvocla .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.tTMhub-tBocOvocla .navbar.navbar-short {
  min-height: 60px;
}
.tTMhub-tBocOvocla .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.tTMhub-tBocOvocla .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.tTMhub-tBocOvocla .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.tTMhub-tBocOvocla .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.tTMhub-tBocOvocla .navbar-brand .navbar-logo a {
  outline: none;
}
.tTMhub-tBocOvocla .dropdown-item.active,
.tTMhub-tBocOvocla .dropdown-item:active {
  background-color: transparent;
}
.tTMhub-tBocOvocla .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.tTMhub-tBocOvocla .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.tTMhub-tBocOvocla .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.tTMhub-tBocOvocla .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f3f2b;
}
.tTMhub-tBocOvocla .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.tTMhub-tBocOvocla .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.tTMhub-tBocOvocla ul.navbar-nav {
  flex-wrap: wrap;
}
.tTMhub-tBocOvocla .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.tTMhub-tBocOvocla button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.tTMhub-tBocOvocla a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .tTMhub-tBocOvocla .navbar {
    height: 70px;
  }
  .tTMhub-tBocOvocla .navbar.opened {
    height: auto;
  }
  .tTMhub-tBocOvocla .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.tTMhub-tBocOvocla .container,
.tTMhub-tBocOvocla .container-fluid {
  position: relative;
  min-height: 108px;
}
.tTMhub-tBocOvocla .navbar-short {
  background-color: #1f3f2b !important;
}
.tTMhub-tBocOvocla .navbar-short .container,
.tTMhub-tBocOvocla .navbar-short .container-fluid {
  min-height: 85px;
}
.tTMhub-tBocOvocla .navbar-short .container:before,
.tTMhub-tBocOvocla .navbar-short .container-fluid:before {
  display: none;
}
.tTMhub-tBocOvocla .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.tTMhub-tBocOvocla .grid-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.tTMhub-tBocOvocla .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .tTMhub-tBocOvocla .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .tTMhub-tBocOvocla .container,
  .tTMhub-tBocOvocla .container-fluid {
    min-height: 85px;
  }
  .tTMhub-tBocOvocla .navbar-brand {
    min-height: 85px;
  }
  .tTMhub-tBocOvocla .navbar-short .container,
  .tTMhub-tBocOvocla .navbar-short .container-fluid {
    min-height: 75px;
  }
  .tTMhub-tBocOvocla .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .tTMhub-tBocOvocla .navbar.opened {
    background: #1f3f2b !important;
  }
  .tTMhub-tBocOvocla .navbar.navbar-short {
    background-color: #1f3f2b !important;
  }
  .tTMhub-tBocOvocla .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .tTMhub-tBocOvocla .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .tTMhub-tBocOvocla .grid-section-btn {
    text-align: left;
  }
  .tTMhub-tBocOvocla .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .tTMhub-tBocOvocla .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #1f3f2b;
    z-index: 4;
    transition: 0.1s all;
  }
}
.tTMhub-uNKaDx7iWI {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #f5f9f4;
}
.tTMhub-uNKaDx7iWI .row {
  align-items: center;
}
.tTMhub-uNKaDx7iWI .image-wrapper img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .tTMhub-uNKaDx7iWI .image-wrapper {
    padding-top: 1.5rem;
  }
}
.tTMhub-uNKaDx7iWI .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .tTMhub-uNKaDx7iWI .text-wrapper {
    padding-right: 115px;
  }
}
.tTMhub-uNKaDx7iWI .label-text {
  width: 100%;
  margin-bottom: 12px;
  color: #111111;
}
.tTMhub-uNKaDx7iWI .grid-section-title {
  margin-bottom: 12px;
  text-align: center;
  color: #000000;
}
.tTMhub-uNKaDx7iWI .grid-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.tTMhub-uNKaDx7iWI .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.tTMhub-uNKaDx7iWI .btn-container {
  width: 100%;
}
.tTMhub-uNKaDx7iWI .grid-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .tTMhub-uNKaDx7iWI .grid-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .tTMhub-uNKaDx7iWI .grid-section-btn .btn {
    width: 100%;
  }
}
.tTMhub-uNKaDx7iWI .grid-text,
.tTMhub-uNKaDx7iWI .grid-section-btn {
  text-align: center;
  color: #000000;
}
.tTMhub-uNKbctyaE7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e2eee5;
}
.tTMhub-uNKbctyaE7 .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKbctyaE7 .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKbctyaE7 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .tTMhub-uNKbctyaE7 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKbctyaE7 .container {
    padding: 0;
  }
}
.tTMhub-uNKbctyaE7 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .tTMhub-uNKbctyaE7 .title-wrapper {
    padding: 0 16px;
  }
}
.tTMhub-uNKbctyaE7 .title-wrapper .grid-section-title {
  margin-bottom: 0;
}
.tTMhub-uNKbctyaE7 .title-wrapper .grid-text {
  margin: 30px 0 0 0;
}
.tTMhub-uNKbctyaE7 .grid-section-title {
  color: #000000;
  text-align: center;
}
.tTMhub-uNKbctyaE7 .grid-text {
  color: #000000;
  text-align: center;
}
.tTMhub-uNKbacacth {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #f5f9f4;
}
.tTMhub-uNKbacacth .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKbacacth .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .tTMhub-uNKbacacth .image-wrapper {
    margin-bottom: 1rem;
  }
}
.tTMhub-uNKbacacth .row {
  flex-direction: row-reverse;
}
.tTMhub-uNKbacacth .row {
  align-items: center;
}
@media (max-width: 991px) {
  .tTMhub-uNKbacacth .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .tTMhub-uNKbacacth .text-wrapper {
    padding: 0 2rem;
  }
}
.tTMhub-uNKbacacth .grid-section-title {
  color: #000000;
  text-align: left;
}
.tTMhub-uNKbacacth .grid-text,
.tTMhub-uNKbacacth .grid-section-btn {
  color: #000000;
  text-align: left;
}
.tTMhub-uNKbW7o4EE {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #e2eee5;
}
.tTMhub-uNKbW7o4EE .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKbW7o4EE .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKbW7o4EE .container,
.tTMhub-uNKbW7o4EE .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .tTMhub-uNKbW7o4EE .container,
  .tTMhub-uNKbW7o4EE .container-fluid {
    padding: 0 20px;
  }
}
.tTMhub-uNKbW7o4EE .row {
  position: relative;
  justify-content: center;
  padding: 100px 4px;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background-color: #f5f9f4;
}
@media (max-width: 992px) {
  .tTMhub-uNKbW7o4EE .row {
    padding: 85px 0;
    margin: 0;
  }
}
.tTMhub-uNKbW7o4EE .row .card {
  padding: 0 22px;
}
.tTMhub-uNKbW7o4EE .title-wrapper {
  margin-bottom: 85px;
}
@media (max-width: 992px) {
  .tTMhub-uNKbW7o4EE .title-wrapper {
    margin-bottom: 50px;
  }
}
.tTMhub-uNKbW7o4EE .title-wrapper .grid-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .tTMhub-uNKbW7o4EE .card {
    margin-bottom: 20px;
  }
  .tTMhub-uNKbW7o4EE .card:first-child {
    margin-bottom: 0;
  }
}
.tTMhub-uNKbW7o4EE .card .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  background-color: #e2eee5;
  padding: 50px 16px;
}
@media (max-width: 992px) {
  .tTMhub-uNKbW7o4EE .card .card-wrapper {
    padding: 20px 8px;
  }
}
.tTMhub-uNKbW7o4EE .card .card-wrapper .price-wrap .grid-price {
  padding: 50px 20px;
  border: 1px solid #3d4045;
  margin-bottom: 25px;
  border-radius: 10px;
}
.tTMhub-uNKbW7o4EE .card .card-wrapper .price-wrap .grid-desc {
  margin-bottom: 20px;
}
.tTMhub-uNKbW7o4EE .card .card-wrapper .price-wrap .grid-text {
  margin-bottom: 20px;
}
.tTMhub-uNKbW7o4EE .grid-section-title {
  color: #000000;
  text-align: center;
}
.tTMhub-uNKbW7o4EE .grid-price {
  color: #ef5311;
  text-align: center;
}
.tTMhub-uNKbW7o4EE .grid-desc {
  color: #3d4045;
  text-align: center;
}
.tTMhub-uNKbW7o4EE .grid-text {
  color: #000000;
  text-align: center;
}
.tTMhub-uNKbW7o4EE .grid-desc,
.tTMhub-uNKbW7o4EE .grid-section-btn {
  text-align: center;
  color: #000000;
}
.tTMhub-uNKvkBnsqa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f9f4;
}
.tTMhub-uNKvkBnsqa .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKvkBnsqa .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKvkBnsqa .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKvkBnsqa .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKvkBnsqa .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKvkBnsqa .container {
    padding: 0 16px;
  }
}
.tTMhub-uNKvkBnsqa .title-wrapper .grid-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .tTMhub-uNKvkBnsqa .title-wrapper .grid-section-title {
    margin-bottom: 48px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKvkBnsqa .image-wrapper {
    margin-bottom: 32px;
  }
}
.tTMhub-uNKvkBnsqa .image-wrapper img {
  height: 610px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .tTMhub-uNKvkBnsqa .image-wrapper img {
    height: 350px;
  }
}
.tTMhub-uNKvkBnsqa .content-wrapper {
  margin-left: 82px;
}
@media (max-width: 992px) {
  .tTMhub-uNKvkBnsqa .content-wrapper {
    margin: 0;
  }
}
.tTMhub-uNKvkBnsqa .desc-wrapper {
  margin-bottom: 24px;
}
.tTMhub-uNKvkBnsqa .desc-wrapper .grid-desc {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 16px;
}
.tTMhub-uNKvkBnsqa .desc-wrapper .grid-desc::before {
  content: '';
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #ffd751, #f27120);
}
.tTMhub-uNKvkBnsqa .dragArea.row .grid-section-title {
  margin-bottom: 32px !important;
}
@media (max-width: 992px) {
  .tTMhub-uNKvkBnsqa .dragArea.row .grid-section-title {
    margin-bottom: 16px !important;
  }
}
.tTMhub-uNKvkBnsqa .dragArea.row .grid-text {
  margin-bottom: 32px !important;
}
@media (max-width: 992px) {
  .tTMhub-uNKvkBnsqa .dragArea.row .grid-text {
    margin-bottom: 16px !important;
  }
}
.tTMhub-uNKvkBnsqa .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.tTMhub-uNKvkBnsqa .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 16px;
}
.tTMhub-uNKvkBnsqa .dragArea.row .form-group .form-control {
  padding: 16px 0;
  border: none !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
  border-bottom: 1px solid #c1c1c1 !important;
}
.tTMhub-uNKvkBnsqa .dragArea.row .form-group .form-control:hover,
.tTMhub-uNKvkBnsqa .dragArea.row .form-group .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #c1c1c1 !important;
}
.tTMhub-uNKvkBnsqa .dragArea.row .form-group .form-control::placeholder {
  color: #7ba389;
  opacity: .7;
}
.tTMhub-uNKvkBnsqa .dragArea.row .form-group textarea {
  min-height: 100px;
}
.tTMhub-uNKvkBnsqa .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.tTMhub-uNKvkBnsqa .dragArea.row .form-group .form-check .form-check-input {
  background-color: #5189b8;
  border-color: #7ba389;
  border-radius: 0;
}
.tTMhub-uNKvkBnsqa .dragArea.row .form-group .form-check .form-check-input:focus {
  background-color: #7ba389;
}
.tTMhub-uNKvkBnsqa .dragArea.row .grid-section-btn {
  width: 100%;
  margin-top: 16px;
}
.tTMhub-uNKvkBnsqa .dragArea.row .grid-section-btn .btn {
  width: 100%;
}
.tTMhub-uNKvkBnsqa .grid-section-title {
  color: #1c1c1c;
}
.tTMhub-uNKvkBnsqa .grid-desc {
  color: #1c1c1c;
}
.tTMhub-uNKvkBnsqa .grid-text {
  color: #1c1c1c;
}
.tTMhub-uNKvkBnsqa H5 {
  text-align: center;
}
.tTMhub-uNKvkBnsqa P {
  text-align: center;
}
.tTMhub-uNKcXV3zvb {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #e2eee5;
}
.tTMhub-uNKcXV3zvb .item:focus,
.tTMhub-uNKcXV3zvb span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .tTMhub-uNKcXV3zvb .align-right {
    text-align: center;
  }
}
.tTMhub-uNKcXV3zvb .card-wrapper {
  background: #f5f9f4;
  padding: 4rem 3rem;
  padding-bottom: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .tTMhub-uNKcXV3zvb .card-wrapper {
    padding: 1rem 0rem;
  }
}
.tTMhub-uNKcXV3zvb .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .tTMhub-uNKcXV3zvb .item {
    margin-bottom: 1rem;
  }
}
.tTMhub-uNKcXV3zvb .grid-card-title {
  background: #fed9e1;
  width: fit-content;
  border-radius: 1rem;
  padding: 6px 10px;
}
.tTMhub-uNKcXV3zvb .item-content {
  margin-top: 2rem;
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .tTMhub-uNKcXV3zvb .item-content {
    padding: 2rem 1.5rem;
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .tTMhub-uNKcXV3zvb .item-content {
    padding: 1rem 1rem;
    padding-top: 0rem;
    margin-top: 1rem;
  }
}
.tTMhub-uNKcXV3zvb .item-wrapper {
  position: relative;
  background: #e2eee5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-flow: column nowrap;
}
.tTMhub-uNKcXV3zvb .item-wrapper .item-footer {
  margin-top: auto;
}
.tTMhub-uNKcXV3zvb .grid-section-title {
  color: #000000;
  text-align: center;
}
.tTMhub-uNKcXV3zvb .grid-text,
.tTMhub-uNKcXV3zvb .item .grid-section-btn {
  text-align: center;
}
.tTMhub-uNKcXV3zvb .grid-number {
  color: #f0466a;
}
.tTMhub-uNKcXV3zvb .grid-section-subtitle,
.tTMhub-uNKcXV3zvb .grid-section-head .grid-section-btn {
  text-align: left;
  color: #ffffff;
}
.tTMhub-uNKcXV3zvb .grid-text {
  text-align: left;
}
.tTMhub-uNKcXV3zvb .grid-text,
.tTMhub-uNKcXV3zvb .grid-card-btn {
  text-align: left;
}
.tTMhub-uNKcXV3zvb .grid-text,
.tTMhub-uNKcXV3zvb .grid-section-btn {
  text-align: left;
}
.tTMhub-uNKcXV3zvb .grid-text,
.tTMhub-uNKcXV3zvb .item-footer .grid-section-btn {
  text-align: left;
}
.tTMhub-uNKcXV3zvb .card-text,
.tTMhub-uNKcXV3zvb .item .grid-section-btn {
  text-align: center;
  color: #000000;
}
.tTMhub-uNKcXV3zvb .card-title {
  text-align: left;
  color: #ffffff;
}
.tTMhub-uNKlAuwDQd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #264432;
}
.tTMhub-uNKlAuwDQd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #264432;
  border-radius: 52px 52px 0 0 !important;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd::before {
    border-radius: 35px 35px 0 0 !important;
  }
}
.tTMhub-uNKlAuwDQd .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKlAuwDQd .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKlAuwDQd .items-wrap {
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
  padding-bottom: 150px;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
    padding-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
    padding-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .social-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .social-wrapper {
    margin-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper .grid-section-subtitle {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .social-wrapper .grid-section-subtitle {
    margin-bottom: 24px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap {
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:hover,
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:focus {
  color: #bba9ff;
}
.tTMhub-uNKlAuwDQd .contacts-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper {
    margin-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-section-subtitle {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper .grid-section-subtitle {
    margin-bottom: 12px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link {
  transition: all 0.3s ease-in-out;
  margin: 22px 0 0 0;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link {
    margin-top: 12px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link:hover,
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link:focus {
  color: #bba9ff;
}
.tTMhub-uNKlAuwDQd .grid-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.tTMhub-uNKlAuwDQd .grid-section-title {
  color: #ffffff;
}
.tTMhub-uNKlAuwDQd .grid-section-subtitle {
  color: #ffffff;
}
.tTMhub-uNKlAuwDQd .list {
  color: #000000;
}
.tTMhub-uNKlAuwDQd .grid-link {
  color: #000000;
}
.tTMhub-uNKlAuwDQd .list,
.tTMhub-uNKlAuwDQd .item-wrap {
  color: #ffffff;
}
.tTMhub-uNKiahYVtB {
  z-index: 1000;
  width: 100%;
}
.tTMhub-uNKiahYVtB nav.navbar {
  position: fixed;
}
.tTMhub-uNKiahYVtB .dropdown-item:before {
  font-family: pixel2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.tTMhub-uNKiahYVtB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.tTMhub-uNKiahYVtB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.tTMhub-uNKiahYVtB .dropdown-item:hover,
.tTMhub-uNKiahYVtB .dropdown-item:focus {
  background: #7ba389 !important;
  color: white !important;
}
.tTMhub-uNKiahYVtB .dropdown-item:hover span {
  color: white;
}
.tTMhub-uNKiahYVtB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.tTMhub-uNKiahYVtB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.tTMhub-uNKiahYVtB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.tTMhub-uNKiahYVtB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.tTMhub-uNKiahYVtB .nav-link {
  position: relative;
}
.tTMhub-uNKiahYVtB .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .tTMhub-uNKiahYVtB .container {
    flex-wrap: nowrap;
  }
}
.tTMhub-uNKiahYVtB .navbar-nav {
  margin: 0 auto;
}
.tTMhub-uNKiahYVtB .dropdown-menu,
.tTMhub-uNKiahYVtB .navbar.opened {
  background: #1f3f2b !important;
}
.tTMhub-uNKiahYVtB .nav-item:focus,
.tTMhub-uNKiahYVtB .nav-link:focus {
  outline: none;
}
.tTMhub-uNKiahYVtB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.tTMhub-uNKiahYVtB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.tTMhub-uNKiahYVtB .dropdown .dropdown-menu .dropdown-item .grid-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.tTMhub-uNKiahYVtB .dropdown .dropdown-menu .dropdown-item .grid-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.tTMhub-uNKiahYVtB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.tTMhub-uNKiahYVtB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.tTMhub-uNKiahYVtB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #1f3f2b;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.tTMhub-uNKiahYVtB .navbar.opened {
  transition: all 0.3s;
}
.tTMhub-uNKiahYVtB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.tTMhub-uNKiahYVtB .navbar .navbar-logo img {
  width: auto;
}
.tTMhub-uNKiahYVtB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.tTMhub-uNKiahYVtB .navbar.collapsed {
  justify-content: center;
}
.tTMhub-uNKiahYVtB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.tTMhub-uNKiahYVtB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .tTMhub-uNKiahYVtB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.tTMhub-uNKiahYVtB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.tTMhub-uNKiahYVtB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.tTMhub-uNKiahYVtB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.tTMhub-uNKiahYVtB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.tTMhub-uNKiahYVtB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .tTMhub-uNKiahYVtB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .tTMhub-uNKiahYVtB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .tTMhub-uNKiahYVtB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .tTMhub-uNKiahYVtB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .tTMhub-uNKiahYVtB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .tTMhub-uNKiahYVtB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .tTMhub-uNKiahYVtB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .tTMhub-uNKiahYVtB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .tTMhub-uNKiahYVtB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .tTMhub-uNKiahYVtB .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .tTMhub-uNKiahYVtB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.tTMhub-uNKiahYVtB .navbar.navbar-short {
  min-height: 60px;
}
.tTMhub-uNKiahYVtB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.tTMhub-uNKiahYVtB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.tTMhub-uNKiahYVtB .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.tTMhub-uNKiahYVtB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.tTMhub-uNKiahYVtB .navbar-brand .navbar-logo a {
  outline: none;
}
.tTMhub-uNKiahYVtB .dropdown-item.active,
.tTMhub-uNKiahYVtB .dropdown-item:active {
  background-color: transparent;
}
.tTMhub-uNKiahYVtB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.tTMhub-uNKiahYVtB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.tTMhub-uNKiahYVtB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.tTMhub-uNKiahYVtB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f3f2b;
}
.tTMhub-uNKiahYVtB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.tTMhub-uNKiahYVtB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.tTMhub-uNKiahYVtB ul.navbar-nav {
  flex-wrap: wrap;
}
.tTMhub-uNKiahYVtB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.tTMhub-uNKiahYVtB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.tTMhub-uNKiahYVtB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.tTMhub-uNKiahYVtB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.tTMhub-uNKiahYVtB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.tTMhub-uNKiahYVtB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.tTMhub-uNKiahYVtB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.tTMhub-uNKiahYVtB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.tTMhub-uNKiahYVtB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.tTMhub-uNKiahYVtB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.tTMhub-uNKiahYVtB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.tTMhub-uNKiahYVtB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.tTMhub-uNKiahYVtB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .tTMhub-uNKiahYVtB .navbar {
    height: 70px;
  }
  .tTMhub-uNKiahYVtB .navbar.opened {
    height: auto;
  }
  .tTMhub-uNKiahYVtB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.tTMhub-uNKiahYVtB .container,
.tTMhub-uNKiahYVtB .container-fluid {
  position: relative;
  min-height: 108px;
}
.tTMhub-uNKiahYVtB .navbar-short {
  background-color: #1f3f2b !important;
}
.tTMhub-uNKiahYVtB .navbar-short .container,
.tTMhub-uNKiahYVtB .navbar-short .container-fluid {
  min-height: 85px;
}
.tTMhub-uNKiahYVtB .navbar-short .container:before,
.tTMhub-uNKiahYVtB .navbar-short .container-fluid:before {
  display: none;
}
.tTMhub-uNKiahYVtB .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.tTMhub-uNKiahYVtB .grid-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.tTMhub-uNKiahYVtB .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .tTMhub-uNKiahYVtB .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .tTMhub-uNKiahYVtB .container,
  .tTMhub-uNKiahYVtB .container-fluid {
    min-height: 85px;
  }
  .tTMhub-uNKiahYVtB .navbar-brand {
    min-height: 85px;
  }
  .tTMhub-uNKiahYVtB .navbar-short .container,
  .tTMhub-uNKiahYVtB .navbar-short .container-fluid {
    min-height: 75px;
  }
  .tTMhub-uNKiahYVtB .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .tTMhub-uNKiahYVtB .navbar.opened {
    background: #1f3f2b !important;
  }
  .tTMhub-uNKiahYVtB .navbar.navbar-short {
    background-color: #1f3f2b !important;
  }
  .tTMhub-uNKiahYVtB .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .tTMhub-uNKiahYVtB .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .tTMhub-uNKiahYVtB .grid-section-btn {
    text-align: left;
  }
  .tTMhub-uNKiahYVtB .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .tTMhub-uNKiahYVtB .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #1f3f2b;
    z-index: 4;
    transition: 0.1s all;
  }
}
.tTMhub-uNKiaiskae {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #f5f9f4;
}
.tTMhub-uNKiaiskae .wrapper {
  background: #e2eee5;
}
.tTMhub-uNKiaiskae .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKiaiskae .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKiaiskae .grid-section-title {
  text-align: center;
}
.tTMhub-uNKlAuwDQd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #264432;
}
.tTMhub-uNKlAuwDQd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #264432;
  border-radius: 52px 52px 0 0 !important;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd::before {
    border-radius: 35px 35px 0 0 !important;
  }
}
.tTMhub-uNKlAuwDQd .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKlAuwDQd .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKlAuwDQd .items-wrap {
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
  padding-bottom: 150px;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
    padding-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
    padding-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .social-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .social-wrapper {
    margin-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper .grid-section-subtitle {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .social-wrapper .grid-section-subtitle {
    margin-bottom: 24px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap {
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:hover,
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:focus {
  color: #bba9ff;
}
.tTMhub-uNKlAuwDQd .contacts-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper {
    margin-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-section-subtitle {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper .grid-section-subtitle {
    margin-bottom: 12px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link {
  transition: all 0.3s ease-in-out;
  margin: 22px 0 0 0;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link {
    margin-top: 12px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link:hover,
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link:focus {
  color: #bba9ff;
}
.tTMhub-uNKlAuwDQd .grid-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.tTMhub-uNKlAuwDQd .grid-section-title {
  color: #ffffff;
}
.tTMhub-uNKlAuwDQd .grid-section-subtitle {
  color: #ffffff;
}
.tTMhub-uNKlAuwDQd .list {
  color: #000000;
}
.tTMhub-uNKlAuwDQd .grid-link {
  color: #000000;
}
.tTMhub-uNKlAuwDQd .list,
.tTMhub-uNKlAuwDQd .item-wrap {
  color: #ffffff;
}
.tTMhub-tBocOvocla {
  z-index: 1000;
  width: 100%;
}
.tTMhub-tBocOvocla nav.navbar {
  position: fixed;
}
.tTMhub-tBocOvocla .dropdown-item:before {
  font-family: pixel2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.tTMhub-tBocOvocla .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.tTMhub-tBocOvocla .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.tTMhub-tBocOvocla .dropdown-item:hover,
.tTMhub-tBocOvocla .dropdown-item:focus {
  background: #7ba389 !important;
  color: white !important;
}
.tTMhub-tBocOvocla .dropdown-item:hover span {
  color: white;
}
.tTMhub-tBocOvocla .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.tTMhub-tBocOvocla .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.tTMhub-tBocOvocla .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.tTMhub-tBocOvocla .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.tTMhub-tBocOvocla .nav-link {
  position: relative;
}
.tTMhub-tBocOvocla .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .tTMhub-tBocOvocla .container {
    flex-wrap: nowrap;
  }
}
.tTMhub-tBocOvocla .navbar-nav {
  margin: 0 auto;
}
.tTMhub-tBocOvocla .dropdown-menu,
.tTMhub-tBocOvocla .navbar.opened {
  background: #1f3f2b !important;
}
.tTMhub-tBocOvocla .nav-item:focus,
.tTMhub-tBocOvocla .nav-link:focus {
  outline: none;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item .grid-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item .grid-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.tTMhub-tBocOvocla .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.tTMhub-tBocOvocla .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.tTMhub-tBocOvocla .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #1f3f2b;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.tTMhub-tBocOvocla .navbar.opened {
  transition: all 0.3s;
}
.tTMhub-tBocOvocla .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.tTMhub-tBocOvocla .navbar .navbar-logo img {
  width: auto;
}
.tTMhub-tBocOvocla .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.tTMhub-tBocOvocla .navbar.collapsed {
  justify-content: center;
}
.tTMhub-tBocOvocla .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.tTMhub-tBocOvocla .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .tTMhub-tBocOvocla .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.tTMhub-tBocOvocla .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .tTMhub-tBocOvocla .navbar .nav-item .nav-link::before {
    display: none;
  }
  .tTMhub-tBocOvocla .navbar.opened .dropdown-menu {
    top: 0;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .tTMhub-tBocOvocla .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .tTMhub-tBocOvocla .navbar ul.navbar-nav li {
    margin: auto;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .tTMhub-tBocOvocla .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .tTMhub-tBocOvocla .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .tTMhub-tBocOvocla .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.tTMhub-tBocOvocla .navbar.navbar-short {
  min-height: 60px;
}
.tTMhub-tBocOvocla .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.tTMhub-tBocOvocla .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.tTMhub-tBocOvocla .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.tTMhub-tBocOvocla .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.tTMhub-tBocOvocla .navbar-brand .navbar-logo a {
  outline: none;
}
.tTMhub-tBocOvocla .dropdown-item.active,
.tTMhub-tBocOvocla .dropdown-item:active {
  background-color: transparent;
}
.tTMhub-tBocOvocla .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.tTMhub-tBocOvocla .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.tTMhub-tBocOvocla .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.tTMhub-tBocOvocla .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f3f2b;
}
.tTMhub-tBocOvocla .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.tTMhub-tBocOvocla .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.tTMhub-tBocOvocla ul.navbar-nav {
  flex-wrap: wrap;
}
.tTMhub-tBocOvocla .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.tTMhub-tBocOvocla button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.tTMhub-tBocOvocla a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .tTMhub-tBocOvocla .navbar {
    height: 70px;
  }
  .tTMhub-tBocOvocla .navbar.opened {
    height: auto;
  }
  .tTMhub-tBocOvocla .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.tTMhub-tBocOvocla .container,
.tTMhub-tBocOvocla .container-fluid {
  position: relative;
  min-height: 108px;
}
.tTMhub-tBocOvocla .navbar-short {
  background-color: #1f3f2b !important;
}
.tTMhub-tBocOvocla .navbar-short .container,
.tTMhub-tBocOvocla .navbar-short .container-fluid {
  min-height: 85px;
}
.tTMhub-tBocOvocla .navbar-short .container:before,
.tTMhub-tBocOvocla .navbar-short .container-fluid:before {
  display: none;
}
.tTMhub-tBocOvocla .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.tTMhub-tBocOvocla .grid-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.tTMhub-tBocOvocla .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .tTMhub-tBocOvocla .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .tTMhub-tBocOvocla .container,
  .tTMhub-tBocOvocla .container-fluid {
    min-height: 85px;
  }
  .tTMhub-tBocOvocla .navbar-brand {
    min-height: 85px;
  }
  .tTMhub-tBocOvocla .navbar-short .container,
  .tTMhub-tBocOvocla .navbar-short .container-fluid {
    min-height: 75px;
  }
  .tTMhub-tBocOvocla .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .tTMhub-tBocOvocla .navbar.opened {
    background: #1f3f2b !important;
  }
  .tTMhub-tBocOvocla .navbar.navbar-short {
    background-color: #1f3f2b !important;
  }
  .tTMhub-tBocOvocla .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .tTMhub-tBocOvocla .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .tTMhub-tBocOvocla .grid-section-btn {
    text-align: left;
  }
  .tTMhub-tBocOvocla .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .tTMhub-tBocOvocla .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #1f3f2b;
    z-index: 4;
    transition: 0.1s all;
  }
}
.tTMhub-uNKdOxKwnF {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #f5f9f4;
}
.tTMhub-uNKdOxKwnF .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKdOxKwnF .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKdOxKwnF .container-fluid {
  padding: 0 22px;
}
@media (max-width: 992px) {
  .tTMhub-uNKdOxKwnF .container-fluid {
    padding: 0 16px;
  }
}
.tTMhub-uNKdOxKwnF .container-fluid .row {
  padding: 0;
}
.tTMhub-uNKdOxKwnF .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tTMhub-uNKdOxKwnF .image-wrapper img {
  width: 450px;
  height: 450px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .tTMhub-uNKdOxKwnF .image-wrapper img {
    width: 250px;
    height: 250px;
    margin-bottom: 32px;
  }
}
.tTMhub-uNKdOxKwnF .title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-left: 115px;
  border-left: 2px solid #3b8153;
}
@media (max-width: 992px) {
  .tTMhub-uNKdOxKwnF .title-wrapper {
    padding: 0;
    border: none;
  }
}
.tTMhub-uNKdOxKwnF .title-wrapper .grid-section-title {
  margin-bottom: 32px;
  width: 100%;
}
.tTMhub-uNKdOxKwnF .title-wrapper .grid-text {
  margin-bottom: 32px;
  width: 100%;
}
.tTMhub-uNKdOxKwnF .title-wrapper .grid-section-btn {
  width: 100%;
}
.tTMhub-uNKdOxKwnF .grid-section-title {
  color: #495DFF;
}
.tTMhub-uNKdOxKwnF .grid-text {
  color: #000000;
  text-align: center;
}
.tTMhub-uNKdOxKwnF .grid-section-title,
.tTMhub-uNKdOxKwnF .grid-section-btn {
  color: #000000;
  text-align: center;
}
.tTMhub-uNKe0xOrxy {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #f5f9f4;
}
.tTMhub-uNKe0xOrxy .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKe0xOrxy .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKe0xOrxy .row {
  justify-content: center;
}
.tTMhub-uNKe0xOrxy .title-wrapper {
  padding: 71px;
  background-color: #e2eee5;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .tTMhub-uNKe0xOrxy .title-wrapper {
    padding: 50px 25px;
  }
}
.tTMhub-uNKe0xOrxy .title-wrapper .grid-section-title {
  margin-bottom: 0;
}
.tTMhub-uNKe0xOrxy .text-wrapper .grid-text {
  margin-bottom: 25px;
}
.tTMhub-uNKe0xOrxy .grid-section-title {
  color: #ffffff;
  text-align: center;
}
.tTMhub-uNKe0xOrxy .grid-text {
  color: #747474;
}
.tTMhub-uNKe0xOrxy .grid-text,
.tTMhub-uNKe0xOrxy .grid-section-btn {
  text-align: center;
  color: #000000;
}
.tTMhub-uNKe0xOrxy .grid-section-title,
.tTMhub-uNKe0xOrxy .grid-iconfont {
  color: #000000;
}
.tTMhub-uNKea0PDW8 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #f5f9f4;
}
.tTMhub-uNKea0PDW8 .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKea0PDW8 .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .tTMhub-uNKea0PDW8 .card {
    padding: 0;
  }
  .tTMhub-uNKea0PDW8 .container-fluid {
    padding: 0 16px;
  }
}
.tTMhub-uNKea0PDW8 .card:first-child {
  background-color: #e2eee5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.tTMhub-uNKea0PDW8 .card:first-child .title-wrapper {
  padding: 84px 0;
  width: 80%;
}
@media (max-width: 992px) {
  .tTMhub-uNKea0PDW8 .card:first-child .title-wrapper {
    padding: 64px 0;
  }
}
@media (max-width: 768px) {
  .tTMhub-uNKea0PDW8 .card:first-child .title-wrapper {
    padding: 56px 0;
    width: 90%;
  }
}
.tTMhub-uNKea0PDW8 .card:first-child .title-wrapper .grid-section-subtitle {
  margin: 10px 0 0 0;
}
.tTMhub-uNKea0PDW8 .card:first-child .title-wrapper .grid-section-title {
  margin: 32px 0;
}
.tTMhub-uNKea0PDW8 .card:first-child .title-wrapper .grid-section-btn {
  margin: 14px 0;
}
@media (max-width: 768px) {
  .tTMhub-uNKea0PDW8 .card:first-child .title-wrapper .grid-section-btn {
    margin: 10px 0;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKea0PDW8 .card:last-child {
    padding: 0;
  }
}
.tTMhub-uNKea0PDW8 .card:last-child .image-wrapper {
  height: 100%;
}
.tTMhub-uNKea0PDW8 .card:last-child .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tTMhub-uNKea0PDW8 .grid-section-title {
  color: #ffe4c1;
}
.tTMhub-uNKea0PDW8 .grid-section-subtitle {
  color: #000000;
  text-align: center;
}
.tTMhub-uNKea0PDW8 .grid-section-title,
.tTMhub-uNKea0PDW8 .grid-section-btn {
  text-align: center;
  color: #000000;
}
.tTMhub-uNKeNxI8EF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e2eee5;
}
.tTMhub-uNKeNxI8EF .grid-section-title {
  color: #000000;
  text-align: center;
}
.tTMhub-uNKeNxI8EF .grid-section-subtitle {
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .tTMhub-uNKeNxI8EF .align-left {
    text-align: center;
  }
}
.tTMhub-uNKeNxI8EF .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKeNxI8EF .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKlAuwDQd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #264432;
}
.tTMhub-uNKlAuwDQd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #264432;
  border-radius: 52px 52px 0 0 !important;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd::before {
    border-radius: 35px 35px 0 0 !important;
  }
}
.tTMhub-uNKlAuwDQd .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKlAuwDQd .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKlAuwDQd .items-wrap {
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
  padding-bottom: 150px;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
    padding-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
    padding-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .social-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .social-wrapper {
    margin-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper .grid-section-subtitle {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .social-wrapper .grid-section-subtitle {
    margin-bottom: 24px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap {
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:hover,
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:focus {
  color: #bba9ff;
}
.tTMhub-uNKlAuwDQd .contacts-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper {
    margin-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-section-subtitle {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper .grid-section-subtitle {
    margin-bottom: 12px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link {
  transition: all 0.3s ease-in-out;
  margin: 22px 0 0 0;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link {
    margin-top: 12px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link:hover,
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link:focus {
  color: #bba9ff;
}
.tTMhub-uNKlAuwDQd .grid-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.tTMhub-uNKlAuwDQd .grid-section-title {
  color: #ffffff;
}
.tTMhub-uNKlAuwDQd .grid-section-subtitle {
  color: #ffffff;
}
.tTMhub-uNKlAuwDQd .list {
  color: #000000;
}
.tTMhub-uNKlAuwDQd .grid-link {
  color: #000000;
}
.tTMhub-uNKlAuwDQd .list,
.tTMhub-uNKlAuwDQd .item-wrap {
  color: #ffffff;
}
.tTMhub-tBocOvocla {
  z-index: 1000;
  width: 100%;
}
.tTMhub-tBocOvocla nav.navbar {
  position: fixed;
}
.tTMhub-tBocOvocla .dropdown-item:before {
  font-family: pixel2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.tTMhub-tBocOvocla .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.tTMhub-tBocOvocla .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.tTMhub-tBocOvocla .dropdown-item:hover,
.tTMhub-tBocOvocla .dropdown-item:focus {
  background: #7ba389 !important;
  color: white !important;
}
.tTMhub-tBocOvocla .dropdown-item:hover span {
  color: white;
}
.tTMhub-tBocOvocla .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.tTMhub-tBocOvocla .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.tTMhub-tBocOvocla .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.tTMhub-tBocOvocla .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.tTMhub-tBocOvocla .nav-link {
  position: relative;
}
.tTMhub-tBocOvocla .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .tTMhub-tBocOvocla .container {
    flex-wrap: nowrap;
  }
}
.tTMhub-tBocOvocla .navbar-nav {
  margin: 0 auto;
}
.tTMhub-tBocOvocla .dropdown-menu,
.tTMhub-tBocOvocla .navbar.opened {
  background: #1f3f2b !important;
}
.tTMhub-tBocOvocla .nav-item:focus,
.tTMhub-tBocOvocla .nav-link:focus {
  outline: none;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item .grid-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item .grid-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.tTMhub-tBocOvocla .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.tTMhub-tBocOvocla .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.tTMhub-tBocOvocla .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #1f3f2b;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.tTMhub-tBocOvocla .navbar.opened {
  transition: all 0.3s;
}
.tTMhub-tBocOvocla .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.tTMhub-tBocOvocla .navbar .navbar-logo img {
  width: auto;
}
.tTMhub-tBocOvocla .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.tTMhub-tBocOvocla .navbar.collapsed {
  justify-content: center;
}
.tTMhub-tBocOvocla .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.tTMhub-tBocOvocla .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .tTMhub-tBocOvocla .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.tTMhub-tBocOvocla .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .tTMhub-tBocOvocla .navbar .nav-item .nav-link::before {
    display: none;
  }
  .tTMhub-tBocOvocla .navbar.opened .dropdown-menu {
    top: 0;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .tTMhub-tBocOvocla .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .tTMhub-tBocOvocla .navbar ul.navbar-nav li {
    margin: auto;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .tTMhub-tBocOvocla .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .tTMhub-tBocOvocla .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .tTMhub-tBocOvocla .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.tTMhub-tBocOvocla .navbar.navbar-short {
  min-height: 60px;
}
.tTMhub-tBocOvocla .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.tTMhub-tBocOvocla .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.tTMhub-tBocOvocla .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.tTMhub-tBocOvocla .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.tTMhub-tBocOvocla .navbar-brand .navbar-logo a {
  outline: none;
}
.tTMhub-tBocOvocla .dropdown-item.active,
.tTMhub-tBocOvocla .dropdown-item:active {
  background-color: transparent;
}
.tTMhub-tBocOvocla .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.tTMhub-tBocOvocla .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.tTMhub-tBocOvocla .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.tTMhub-tBocOvocla .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f3f2b;
}
.tTMhub-tBocOvocla .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.tTMhub-tBocOvocla .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.tTMhub-tBocOvocla ul.navbar-nav {
  flex-wrap: wrap;
}
.tTMhub-tBocOvocla .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.tTMhub-tBocOvocla button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.tTMhub-tBocOvocla a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .tTMhub-tBocOvocla .navbar {
    height: 70px;
  }
  .tTMhub-tBocOvocla .navbar.opened {
    height: auto;
  }
  .tTMhub-tBocOvocla .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.tTMhub-tBocOvocla .container,
.tTMhub-tBocOvocla .container-fluid {
  position: relative;
  min-height: 108px;
}
.tTMhub-tBocOvocla .navbar-short {
  background-color: #1f3f2b !important;
}
.tTMhub-tBocOvocla .navbar-short .container,
.tTMhub-tBocOvocla .navbar-short .container-fluid {
  min-height: 85px;
}
.tTMhub-tBocOvocla .navbar-short .container:before,
.tTMhub-tBocOvocla .navbar-short .container-fluid:before {
  display: none;
}
.tTMhub-tBocOvocla .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.tTMhub-tBocOvocla .grid-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.tTMhub-tBocOvocla .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .tTMhub-tBocOvocla .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .tTMhub-tBocOvocla .container,
  .tTMhub-tBocOvocla .container-fluid {
    min-height: 85px;
  }
  .tTMhub-tBocOvocla .navbar-brand {
    min-height: 85px;
  }
  .tTMhub-tBocOvocla .navbar-short .container,
  .tTMhub-tBocOvocla .navbar-short .container-fluid {
    min-height: 75px;
  }
  .tTMhub-tBocOvocla .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .tTMhub-tBocOvocla .navbar.opened {
    background: #1f3f2b !important;
  }
  .tTMhub-tBocOvocla .navbar.navbar-short {
    background-color: #1f3f2b !important;
  }
  .tTMhub-tBocOvocla .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .tTMhub-tBocOvocla .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .tTMhub-tBocOvocla .grid-section-btn {
    text-align: left;
  }
  .tTMhub-tBocOvocla .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .tTMhub-tBocOvocla .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #1f3f2b;
    z-index: 4;
    transition: 0.1s all;
  }
}
.tTMhub-uNKwqulBJT {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #f5f9f4;
}
.tTMhub-uNKwqulBJT .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKwqulBJT .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKwqulBJT .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKwqulBJT .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKwqulBJT .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKwqulBJT .container {
    padding: 0 16px;
  }
}
.tTMhub-uNKwqulBJT .title-wrapper .grid-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .tTMhub-uNKwqulBJT .title-wrapper .grid-section-title {
    margin-bottom: 48px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKwqulBJT .image-wrapper {
    margin-bottom: 32px;
  }
}
.tTMhub-uNKwqulBJT .image-wrapper img {
  height: 610px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .tTMhub-uNKwqulBJT .image-wrapper img {
    height: 350px;
  }
}
.tTMhub-uNKwqulBJT .content-wrapper {
  margin-left: 82px;
}
@media (max-width: 992px) {
  .tTMhub-uNKwqulBJT .content-wrapper {
    margin: 0;
  }
}
.tTMhub-uNKwqulBJT .desc-wrapper {
  margin-bottom: 24px;
}
.tTMhub-uNKwqulBJT .desc-wrapper .grid-desc {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 16px;
}
.tTMhub-uNKwqulBJT .desc-wrapper .grid-desc::before {
  content: '';
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #ffd751, #f27120);
}
.tTMhub-uNKwqulBJT .dragArea.row .grid-section-title {
  margin-bottom: 32px !important;
}
@media (max-width: 992px) {
  .tTMhub-uNKwqulBJT .dragArea.row .grid-section-title {
    margin-bottom: 16px !important;
  }
}
.tTMhub-uNKwqulBJT .dragArea.row .grid-text {
  margin-bottom: 32px !important;
}
@media (max-width: 992px) {
  .tTMhub-uNKwqulBJT .dragArea.row .grid-text {
    margin-bottom: 16px !important;
  }
}
.tTMhub-uNKwqulBJT .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.tTMhub-uNKwqulBJT .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 16px;
}
.tTMhub-uNKwqulBJT .dragArea.row .form-group .form-control {
  padding: 16px 0;
  border: none !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
  border-bottom: 1px solid #c1c1c1 !important;
}
.tTMhub-uNKwqulBJT .dragArea.row .form-group .form-control:hover,
.tTMhub-uNKwqulBJT .dragArea.row .form-group .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #c1c1c1 !important;
}
.tTMhub-uNKwqulBJT .dragArea.row .form-group .form-control::placeholder {
  color: #7ba389;
  opacity: .7;
}
.tTMhub-uNKwqulBJT .dragArea.row .form-group textarea {
  min-height: 100px;
}
.tTMhub-uNKwqulBJT .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.tTMhub-uNKwqulBJT .dragArea.row .form-group .form-check .form-check-input {
  background-color: #5189b8;
  border-color: #7ba389;
  border-radius: 0;
}
.tTMhub-uNKwqulBJT .dragArea.row .form-group .form-check .form-check-input:focus {
  background-color: #7ba389;
}
.tTMhub-uNKwqulBJT .dragArea.row .grid-section-btn {
  width: 100%;
  margin-top: 16px;
}
.tTMhub-uNKwqulBJT .dragArea.row .grid-section-btn .btn {
  width: 100%;
}
.tTMhub-uNKwqulBJT .grid-section-title {
  color: #1c1c1c;
}
.tTMhub-uNKwqulBJT .grid-desc {
  color: #1c1c1c;
}
.tTMhub-uNKwqulBJT .grid-text {
  color: #1c1c1c;
}
.tTMhub-uNKwqulBJT H5 {
  text-align: center;
}
.tTMhub-uNKwqulBJT P {
  text-align: center;
}
.tTMhub-uNKhjgX8vW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e2eee5;
}
.tTMhub-uNKhjgX8vW .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKhjgX8vW .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKhjgX8vW .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .tTMhub-uNKhjgX8vW .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKhjgX8vW .container {
    padding: 0 30px;
  }
}
.tTMhub-uNKhjgX8vW .card-wrapper {
  overflow: hidden;
  padding: 50px;
  border-radius: 3em;
  background-color: #f5f9f4;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .tTMhub-uNKhjgX8vW .card-wrapper {
    padding: 30px 20px;
    display: block;
  }
}
.tTMhub-uNKhjgX8vW .card-wrapper .card-wrap {
  width: 30%;
}
@media (max-width: 1300px) {
  .tTMhub-uNKhjgX8vW .card-wrapper .card-wrap {
    width: 45%;
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKhjgX8vW .card-wrapper .card-wrap {
    width: 100%;
  }
}
.tTMhub-uNKhjgX8vW .card-wrapper .card-wrap .number-wrapper {
  margin-bottom: 20px;
}
.tTMhub-uNKhjgX8vW .card-wrapper .card-wrap .number-wrapper .number-wrap {
  display: inline-flex;
  align-items: center;
}
.tTMhub-uNKhjgX8vW .card-wrapper .card-wrap .number-wrapper .number-wrap .grid-iconfont {
  display: block;
  font-size: 32px;
  color: #3b8153;
}
.tTMhub-uNKhjgX8vW .card-wrapper .card-wrap .grid-card-title {
  margin-bottom: 0;
  text-decoration: underline;
  transition: all .3s ease;
}
.tTMhub-uNKhjgX8vW .card-wrapper .card-wrap .grid-card-title:hover,
.tTMhub-uNKhjgX8vW .card-wrapper .card-wrap .grid-card-title:focus {
  text-decoration-color: transparent;
}
.tTMhub-uNKhjgX8vW .grid-card-title {
  color: #2B2B2B;
}
.tTMhub-uNKhjgX8vW .grid-card-title,
.tTMhub-uNKhjgX8vW .number-wrapper {
  text-align: center;
}
.tTMhub-uNKlAuwDQd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #264432;
}
.tTMhub-uNKlAuwDQd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #264432;
  border-radius: 52px 52px 0 0 !important;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd::before {
    border-radius: 35px 35px 0 0 !important;
  }
}
.tTMhub-uNKlAuwDQd .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKlAuwDQd .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKlAuwDQd .items-wrap {
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
  padding-bottom: 150px;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
    padding-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
    padding-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .social-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .social-wrapper {
    margin-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper .grid-section-subtitle {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .social-wrapper .grid-section-subtitle {
    margin-bottom: 24px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap {
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:hover,
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:focus {
  color: #bba9ff;
}
.tTMhub-uNKlAuwDQd .contacts-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper {
    margin-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-section-subtitle {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper .grid-section-subtitle {
    margin-bottom: 12px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link {
  transition: all 0.3s ease-in-out;
  margin: 22px 0 0 0;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link {
    margin-top: 12px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link:hover,
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link:focus {
  color: #bba9ff;
}
.tTMhub-uNKlAuwDQd .grid-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.tTMhub-uNKlAuwDQd .grid-section-title {
  color: #ffffff;
}
.tTMhub-uNKlAuwDQd .grid-section-subtitle {
  color: #ffffff;
}
.tTMhub-uNKlAuwDQd .list {
  color: #000000;
}
.tTMhub-uNKlAuwDQd .grid-link {
  color: #000000;
}
.tTMhub-uNKlAuwDQd .list,
.tTMhub-uNKlAuwDQd .item-wrap {
  color: #ffffff;
}
.tTMhub-tBocOvocla {
  z-index: 1000;
  width: 100%;
}
.tTMhub-tBocOvocla nav.navbar {
  position: fixed;
}
.tTMhub-tBocOvocla .dropdown-item:before {
  font-family: pixel2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.tTMhub-tBocOvocla .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.tTMhub-tBocOvocla .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.tTMhub-tBocOvocla .dropdown-item:hover,
.tTMhub-tBocOvocla .dropdown-item:focus {
  background: #7ba389 !important;
  color: white !important;
}
.tTMhub-tBocOvocla .dropdown-item:hover span {
  color: white;
}
.tTMhub-tBocOvocla .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.tTMhub-tBocOvocla .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.tTMhub-tBocOvocla .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.tTMhub-tBocOvocla .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.tTMhub-tBocOvocla .nav-link {
  position: relative;
}
.tTMhub-tBocOvocla .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .tTMhub-tBocOvocla .container {
    flex-wrap: nowrap;
  }
}
.tTMhub-tBocOvocla .navbar-nav {
  margin: 0 auto;
}
.tTMhub-tBocOvocla .dropdown-menu,
.tTMhub-tBocOvocla .navbar.opened {
  background: #1f3f2b !important;
}
.tTMhub-tBocOvocla .nav-item:focus,
.tTMhub-tBocOvocla .nav-link:focus {
  outline: none;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item .grid-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item .grid-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.tTMhub-tBocOvocla .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.tTMhub-tBocOvocla .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.tTMhub-tBocOvocla .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #1f3f2b;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.tTMhub-tBocOvocla .navbar.opened {
  transition: all 0.3s;
}
.tTMhub-tBocOvocla .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.tTMhub-tBocOvocla .navbar .navbar-logo img {
  width: auto;
}
.tTMhub-tBocOvocla .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.tTMhub-tBocOvocla .navbar.collapsed {
  justify-content: center;
}
.tTMhub-tBocOvocla .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.tTMhub-tBocOvocla .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .tTMhub-tBocOvocla .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.tTMhub-tBocOvocla .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .tTMhub-tBocOvocla .navbar .nav-item .nav-link::before {
    display: none;
  }
  .tTMhub-tBocOvocla .navbar.opened .dropdown-menu {
    top: 0;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .tTMhub-tBocOvocla .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .tTMhub-tBocOvocla .navbar ul.navbar-nav li {
    margin: auto;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .tTMhub-tBocOvocla .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .tTMhub-tBocOvocla .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .tTMhub-tBocOvocla .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.tTMhub-tBocOvocla .navbar.navbar-short {
  min-height: 60px;
}
.tTMhub-tBocOvocla .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.tTMhub-tBocOvocla .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.tTMhub-tBocOvocla .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.tTMhub-tBocOvocla .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.tTMhub-tBocOvocla .navbar-brand .navbar-logo a {
  outline: none;
}
.tTMhub-tBocOvocla .dropdown-item.active,
.tTMhub-tBocOvocla .dropdown-item:active {
  background-color: transparent;
}
.tTMhub-tBocOvocla .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.tTMhub-tBocOvocla .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.tTMhub-tBocOvocla .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.tTMhub-tBocOvocla .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f3f2b;
}
.tTMhub-tBocOvocla .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.tTMhub-tBocOvocla .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.tTMhub-tBocOvocla ul.navbar-nav {
  flex-wrap: wrap;
}
.tTMhub-tBocOvocla .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.tTMhub-tBocOvocla button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.tTMhub-tBocOvocla a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .tTMhub-tBocOvocla .navbar {
    height: 70px;
  }
  .tTMhub-tBocOvocla .navbar.opened {
    height: auto;
  }
  .tTMhub-tBocOvocla .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.tTMhub-tBocOvocla .container,
.tTMhub-tBocOvocla .container-fluid {
  position: relative;
  min-height: 108px;
}
.tTMhub-tBocOvocla .navbar-short {
  background-color: #1f3f2b !important;
}
.tTMhub-tBocOvocla .navbar-short .container,
.tTMhub-tBocOvocla .navbar-short .container-fluid {
  min-height: 85px;
}
.tTMhub-tBocOvocla .navbar-short .container:before,
.tTMhub-tBocOvocla .navbar-short .container-fluid:before {
  display: none;
}
.tTMhub-tBocOvocla .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.tTMhub-tBocOvocla .grid-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.tTMhub-tBocOvocla .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .tTMhub-tBocOvocla .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .tTMhub-tBocOvocla .container,
  .tTMhub-tBocOvocla .container-fluid {
    min-height: 85px;
  }
  .tTMhub-tBocOvocla .navbar-brand {
    min-height: 85px;
  }
  .tTMhub-tBocOvocla .navbar-short .container,
  .tTMhub-tBocOvocla .navbar-short .container-fluid {
    min-height: 75px;
  }
  .tTMhub-tBocOvocla .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .tTMhub-tBocOvocla .navbar.opened {
    background: #1f3f2b !important;
  }
  .tTMhub-tBocOvocla .navbar.navbar-short {
    background-color: #1f3f2b !important;
  }
  .tTMhub-tBocOvocla .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .tTMhub-tBocOvocla .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .tTMhub-tBocOvocla .grid-section-btn {
    text-align: left;
  }
  .tTMhub-tBocOvocla .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .tTMhub-tBocOvocla .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #1f3f2b;
    z-index: 4;
    transition: 0.1s all;
  }
}
.tTMhub-uNKhRsV07S {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #f5f9f4;
}
.tTMhub-uNKhRsV07S .wrapper {
  background: #e2eee5;
}
.tTMhub-uNKhRsV07S .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKhRsV07S .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKhRsV07S .grid-section-title {
  text-align: center;
}
.tTMhub-uNKlAuwDQd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #264432;
}
.tTMhub-uNKlAuwDQd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #264432;
  border-radius: 52px 52px 0 0 !important;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd::before {
    border-radius: 35px 35px 0 0 !important;
  }
}
.tTMhub-uNKlAuwDQd .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKlAuwDQd .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKlAuwDQd .items-wrap {
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
  padding-bottom: 150px;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
    padding-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
    padding-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .social-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .social-wrapper {
    margin-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper .grid-section-subtitle {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .social-wrapper .grid-section-subtitle {
    margin-bottom: 24px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap {
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:hover,
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:focus {
  color: #bba9ff;
}
.tTMhub-uNKlAuwDQd .contacts-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper {
    margin-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-section-subtitle {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper .grid-section-subtitle {
    margin-bottom: 12px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link {
  transition: all 0.3s ease-in-out;
  margin: 22px 0 0 0;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link {
    margin-top: 12px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link:hover,
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link:focus {
  color: #bba9ff;
}
.tTMhub-uNKlAuwDQd .grid-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.tTMhub-uNKlAuwDQd .grid-section-title {
  color: #ffffff;
}
.tTMhub-uNKlAuwDQd .grid-section-subtitle {
  color: #ffffff;
}
.tTMhub-uNKlAuwDQd .list {
  color: #000000;
}
.tTMhub-uNKlAuwDQd .grid-link {
  color: #000000;
}
.tTMhub-uNKlAuwDQd .list,
.tTMhub-uNKlAuwDQd .item-wrap {
  color: #ffffff;
}
.tTMhub-uNKi9sswjc {
  z-index: 1000;
  width: 100%;
}
.tTMhub-uNKi9sswjc nav.navbar {
  position: fixed;
}
.tTMhub-uNKi9sswjc .dropdown-item:before {
  font-family: pixel2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.tTMhub-uNKi9sswjc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.tTMhub-uNKi9sswjc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.tTMhub-uNKi9sswjc .dropdown-item:hover,
.tTMhub-uNKi9sswjc .dropdown-item:focus {
  background: #7ba389 !important;
  color: white !important;
}
.tTMhub-uNKi9sswjc .dropdown-item:hover span {
  color: white;
}
.tTMhub-uNKi9sswjc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.tTMhub-uNKi9sswjc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.tTMhub-uNKi9sswjc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.tTMhub-uNKi9sswjc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.tTMhub-uNKi9sswjc .nav-link {
  position: relative;
}
.tTMhub-uNKi9sswjc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .tTMhub-uNKi9sswjc .container {
    flex-wrap: nowrap;
  }
}
.tTMhub-uNKi9sswjc .navbar-nav {
  margin: 0 auto;
}
.tTMhub-uNKi9sswjc .dropdown-menu,
.tTMhub-uNKi9sswjc .navbar.opened {
  background: #1f3f2b !important;
}
.tTMhub-uNKi9sswjc .nav-item:focus,
.tTMhub-uNKi9sswjc .nav-link:focus {
  outline: none;
}
.tTMhub-uNKi9sswjc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.tTMhub-uNKi9sswjc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.tTMhub-uNKi9sswjc .dropdown .dropdown-menu .dropdown-item .grid-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.tTMhub-uNKi9sswjc .dropdown .dropdown-menu .dropdown-item .grid-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.tTMhub-uNKi9sswjc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.tTMhub-uNKi9sswjc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.tTMhub-uNKi9sswjc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #1f3f2b;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.tTMhub-uNKi9sswjc .navbar.opened {
  transition: all 0.3s;
}
.tTMhub-uNKi9sswjc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.tTMhub-uNKi9sswjc .navbar .navbar-logo img {
  width: auto;
}
.tTMhub-uNKi9sswjc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.tTMhub-uNKi9sswjc .navbar.collapsed {
  justify-content: center;
}
.tTMhub-uNKi9sswjc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.tTMhub-uNKi9sswjc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .tTMhub-uNKi9sswjc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.tTMhub-uNKi9sswjc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.tTMhub-uNKi9sswjc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.tTMhub-uNKi9sswjc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.tTMhub-uNKi9sswjc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.tTMhub-uNKi9sswjc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .tTMhub-uNKi9sswjc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .tTMhub-uNKi9sswjc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .tTMhub-uNKi9sswjc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .tTMhub-uNKi9sswjc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .tTMhub-uNKi9sswjc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .tTMhub-uNKi9sswjc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .tTMhub-uNKi9sswjc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .tTMhub-uNKi9sswjc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .tTMhub-uNKi9sswjc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .tTMhub-uNKi9sswjc .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .tTMhub-uNKi9sswjc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.tTMhub-uNKi9sswjc .navbar.navbar-short {
  min-height: 60px;
}
.tTMhub-uNKi9sswjc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.tTMhub-uNKi9sswjc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.tTMhub-uNKi9sswjc .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.tTMhub-uNKi9sswjc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.tTMhub-uNKi9sswjc .navbar-brand .navbar-logo a {
  outline: none;
}
.tTMhub-uNKi9sswjc .dropdown-item.active,
.tTMhub-uNKi9sswjc .dropdown-item:active {
  background-color: transparent;
}
.tTMhub-uNKi9sswjc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.tTMhub-uNKi9sswjc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.tTMhub-uNKi9sswjc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.tTMhub-uNKi9sswjc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f3f2b;
}
.tTMhub-uNKi9sswjc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.tTMhub-uNKi9sswjc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.tTMhub-uNKi9sswjc ul.navbar-nav {
  flex-wrap: wrap;
}
.tTMhub-uNKi9sswjc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.tTMhub-uNKi9sswjc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.tTMhub-uNKi9sswjc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.tTMhub-uNKi9sswjc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.tTMhub-uNKi9sswjc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.tTMhub-uNKi9sswjc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.tTMhub-uNKi9sswjc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.tTMhub-uNKi9sswjc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.tTMhub-uNKi9sswjc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.tTMhub-uNKi9sswjc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.tTMhub-uNKi9sswjc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.tTMhub-uNKi9sswjc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.tTMhub-uNKi9sswjc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .tTMhub-uNKi9sswjc .navbar {
    height: 70px;
  }
  .tTMhub-uNKi9sswjc .navbar.opened {
    height: auto;
  }
  .tTMhub-uNKi9sswjc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.tTMhub-uNKi9sswjc .container,
.tTMhub-uNKi9sswjc .container-fluid {
  position: relative;
  min-height: 108px;
}
.tTMhub-uNKi9sswjc .navbar-short {
  background-color: #1f3f2b !important;
}
.tTMhub-uNKi9sswjc .navbar-short .container,
.tTMhub-uNKi9sswjc .navbar-short .container-fluid {
  min-height: 85px;
}
.tTMhub-uNKi9sswjc .navbar-short .container:before,
.tTMhub-uNKi9sswjc .navbar-short .container-fluid:before {
  display: none;
}
.tTMhub-uNKi9sswjc .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.tTMhub-uNKi9sswjc .grid-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.tTMhub-uNKi9sswjc .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .tTMhub-uNKi9sswjc .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .tTMhub-uNKi9sswjc .container,
  .tTMhub-uNKi9sswjc .container-fluid {
    min-height: 85px;
  }
  .tTMhub-uNKi9sswjc .navbar-brand {
    min-height: 85px;
  }
  .tTMhub-uNKi9sswjc .navbar-short .container,
  .tTMhub-uNKi9sswjc .navbar-short .container-fluid {
    min-height: 75px;
  }
  .tTMhub-uNKi9sswjc .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .tTMhub-uNKi9sswjc .navbar.opened {
    background: #1f3f2b !important;
  }
  .tTMhub-uNKi9sswjc .navbar.navbar-short {
    background-color: #1f3f2b !important;
  }
  .tTMhub-uNKi9sswjc .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .tTMhub-uNKi9sswjc .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .tTMhub-uNKi9sswjc .grid-section-btn {
    text-align: left;
  }
  .tTMhub-uNKi9sswjc .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .tTMhub-uNKi9sswjc .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #1f3f2b;
    z-index: 4;
    transition: 0.1s all;
  }
}
.tTMhub-uNKi9t5co9 {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #f5f9f4;
}
.tTMhub-uNKi9t5co9 .wrapper {
  background: #e2eee5;
}
.tTMhub-uNKi9t5co9 .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKi9t5co9 .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKi9t5co9 .grid-section-title {
  text-align: center;
}
.tTMhub-uNKlAuwDQd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #264432;
}
.tTMhub-uNKlAuwDQd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #264432;
  border-radius: 52px 52px 0 0 !important;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd::before {
    border-radius: 35px 35px 0 0 !important;
  }
}
.tTMhub-uNKlAuwDQd .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKlAuwDQd .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKlAuwDQd .items-wrap {
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
  padding-bottom: 150px;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
    padding-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
    padding-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .social-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .social-wrapper {
    margin-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper .grid-section-subtitle {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .social-wrapper .grid-section-subtitle {
    margin-bottom: 24px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap {
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:hover,
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:focus {
  color: #bba9ff;
}
.tTMhub-uNKlAuwDQd .contacts-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper {
    margin-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-section-subtitle {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper .grid-section-subtitle {
    margin-bottom: 12px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link {
  transition: all 0.3s ease-in-out;
  margin: 22px 0 0 0;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link {
    margin-top: 12px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link:hover,
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link:focus {
  color: #bba9ff;
}
.tTMhub-uNKlAuwDQd .grid-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.tTMhub-uNKlAuwDQd .grid-section-title {
  color: #ffffff;
}
.tTMhub-uNKlAuwDQd .grid-section-subtitle {
  color: #ffffff;
}
.tTMhub-uNKlAuwDQd .list {
  color: #000000;
}
.tTMhub-uNKlAuwDQd .grid-link {
  color: #000000;
}
.tTMhub-uNKlAuwDQd .list,
.tTMhub-uNKlAuwDQd .item-wrap {
  color: #ffffff;
}
.tTMhub-uNKi9PNdz3 {
  z-index: 1000;
  width: 100%;
}
.tTMhub-uNKi9PNdz3 nav.navbar {
  position: fixed;
}
.tTMhub-uNKi9PNdz3 .dropdown-item:before {
  font-family: pixel2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.tTMhub-uNKi9PNdz3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.tTMhub-uNKi9PNdz3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.tTMhub-uNKi9PNdz3 .dropdown-item:hover,
.tTMhub-uNKi9PNdz3 .dropdown-item:focus {
  background: #7ba389 !important;
  color: white !important;
}
.tTMhub-uNKi9PNdz3 .dropdown-item:hover span {
  color: white;
}
.tTMhub-uNKi9PNdz3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.tTMhub-uNKi9PNdz3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.tTMhub-uNKi9PNdz3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.tTMhub-uNKi9PNdz3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.tTMhub-uNKi9PNdz3 .nav-link {
  position: relative;
}
.tTMhub-uNKi9PNdz3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .tTMhub-uNKi9PNdz3 .container {
    flex-wrap: nowrap;
  }
}
.tTMhub-uNKi9PNdz3 .navbar-nav {
  margin: 0 auto;
}
.tTMhub-uNKi9PNdz3 .dropdown-menu,
.tTMhub-uNKi9PNdz3 .navbar.opened {
  background: #1f3f2b !important;
}
.tTMhub-uNKi9PNdz3 .nav-item:focus,
.tTMhub-uNKi9PNdz3 .nav-link:focus {
  outline: none;
}
.tTMhub-uNKi9PNdz3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.tTMhub-uNKi9PNdz3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.tTMhub-uNKi9PNdz3 .dropdown .dropdown-menu .dropdown-item .grid-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.tTMhub-uNKi9PNdz3 .dropdown .dropdown-menu .dropdown-item .grid-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.tTMhub-uNKi9PNdz3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.tTMhub-uNKi9PNdz3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.tTMhub-uNKi9PNdz3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #1f3f2b;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.tTMhub-uNKi9PNdz3 .navbar.opened {
  transition: all 0.3s;
}
.tTMhub-uNKi9PNdz3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.tTMhub-uNKi9PNdz3 .navbar .navbar-logo img {
  width: auto;
}
.tTMhub-uNKi9PNdz3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.tTMhub-uNKi9PNdz3 .navbar.collapsed {
  justify-content: center;
}
.tTMhub-uNKi9PNdz3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.tTMhub-uNKi9PNdz3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .tTMhub-uNKi9PNdz3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.tTMhub-uNKi9PNdz3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.tTMhub-uNKi9PNdz3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.tTMhub-uNKi9PNdz3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.tTMhub-uNKi9PNdz3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.tTMhub-uNKi9PNdz3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .tTMhub-uNKi9PNdz3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .tTMhub-uNKi9PNdz3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .tTMhub-uNKi9PNdz3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .tTMhub-uNKi9PNdz3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .tTMhub-uNKi9PNdz3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .tTMhub-uNKi9PNdz3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .tTMhub-uNKi9PNdz3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .tTMhub-uNKi9PNdz3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .tTMhub-uNKi9PNdz3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .tTMhub-uNKi9PNdz3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .tTMhub-uNKi9PNdz3 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.tTMhub-uNKi9PNdz3 .navbar.navbar-short {
  min-height: 60px;
}
.tTMhub-uNKi9PNdz3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.tTMhub-uNKi9PNdz3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.tTMhub-uNKi9PNdz3 .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.tTMhub-uNKi9PNdz3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.tTMhub-uNKi9PNdz3 .navbar-brand .navbar-logo a {
  outline: none;
}
.tTMhub-uNKi9PNdz3 .dropdown-item.active,
.tTMhub-uNKi9PNdz3 .dropdown-item:active {
  background-color: transparent;
}
.tTMhub-uNKi9PNdz3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.tTMhub-uNKi9PNdz3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.tTMhub-uNKi9PNdz3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.tTMhub-uNKi9PNdz3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f3f2b;
}
.tTMhub-uNKi9PNdz3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.tTMhub-uNKi9PNdz3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.tTMhub-uNKi9PNdz3 ul.navbar-nav {
  flex-wrap: wrap;
}
.tTMhub-uNKi9PNdz3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.tTMhub-uNKi9PNdz3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.tTMhub-uNKi9PNdz3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.tTMhub-uNKi9PNdz3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.tTMhub-uNKi9PNdz3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.tTMhub-uNKi9PNdz3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.tTMhub-uNKi9PNdz3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.tTMhub-uNKi9PNdz3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.tTMhub-uNKi9PNdz3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.tTMhub-uNKi9PNdz3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.tTMhub-uNKi9PNdz3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.tTMhub-uNKi9PNdz3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.tTMhub-uNKi9PNdz3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .tTMhub-uNKi9PNdz3 .navbar {
    height: 70px;
  }
  .tTMhub-uNKi9PNdz3 .navbar.opened {
    height: auto;
  }
  .tTMhub-uNKi9PNdz3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.tTMhub-uNKi9PNdz3 .container,
.tTMhub-uNKi9PNdz3 .container-fluid {
  position: relative;
  min-height: 108px;
}
.tTMhub-uNKi9PNdz3 .navbar-short {
  background-color: #1f3f2b !important;
}
.tTMhub-uNKi9PNdz3 .navbar-short .container,
.tTMhub-uNKi9PNdz3 .navbar-short .container-fluid {
  min-height: 85px;
}
.tTMhub-uNKi9PNdz3 .navbar-short .container:before,
.tTMhub-uNKi9PNdz3 .navbar-short .container-fluid:before {
  display: none;
}
.tTMhub-uNKi9PNdz3 .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.tTMhub-uNKi9PNdz3 .grid-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.tTMhub-uNKi9PNdz3 .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .tTMhub-uNKi9PNdz3 .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .tTMhub-uNKi9PNdz3 .container,
  .tTMhub-uNKi9PNdz3 .container-fluid {
    min-height: 85px;
  }
  .tTMhub-uNKi9PNdz3 .navbar-brand {
    min-height: 85px;
  }
  .tTMhub-uNKi9PNdz3 .navbar-short .container,
  .tTMhub-uNKi9PNdz3 .navbar-short .container-fluid {
    min-height: 75px;
  }
  .tTMhub-uNKi9PNdz3 .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .tTMhub-uNKi9PNdz3 .navbar.opened {
    background: #1f3f2b !important;
  }
  .tTMhub-uNKi9PNdz3 .navbar.navbar-short {
    background-color: #1f3f2b !important;
  }
  .tTMhub-uNKi9PNdz3 .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .tTMhub-uNKi9PNdz3 .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .tTMhub-uNKi9PNdz3 .grid-section-btn {
    text-align: left;
  }
  .tTMhub-uNKi9PNdz3 .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .tTMhub-uNKi9PNdz3 .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #1f3f2b;
    z-index: 4;
    transition: 0.1s all;
  }
}
.tTMhub-uNKi9Qf4cZ {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #f5f9f4;
}
.tTMhub-uNKi9Qf4cZ .wrapper {
  background: #e2eee5;
}
.tTMhub-uNKi9Qf4cZ .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKi9Qf4cZ .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKi9Qf4cZ .grid-section-title {
  text-align: center;
}
.tTMhub-uNKlAuwDQd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #264432;
}
.tTMhub-uNKlAuwDQd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #264432;
  border-radius: 52px 52px 0 0 !important;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd::before {
    border-radius: 35px 35px 0 0 !important;
  }
}
.tTMhub-uNKlAuwDQd .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKlAuwDQd .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKlAuwDQd .items-wrap {
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
  padding-bottom: 150px;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
    padding-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
    padding-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .social-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .social-wrapper {
    margin-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper .grid-section-subtitle {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .social-wrapper .grid-section-subtitle {
    margin-bottom: 24px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap {
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:hover,
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:focus {
  color: #bba9ff;
}
.tTMhub-uNKlAuwDQd .contacts-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper {
    margin-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-section-subtitle {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper .grid-section-subtitle {
    margin-bottom: 12px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link {
  transition: all 0.3s ease-in-out;
  margin: 22px 0 0 0;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link {
    margin-top: 12px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link:hover,
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link:focus {
  color: #bba9ff;
}
.tTMhub-uNKlAuwDQd .grid-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.tTMhub-uNKlAuwDQd .grid-section-title {
  color: #ffffff;
}
.tTMhub-uNKlAuwDQd .grid-section-subtitle {
  color: #ffffff;
}
.tTMhub-uNKlAuwDQd .list {
  color: #000000;
}
.tTMhub-uNKlAuwDQd .grid-link {
  color: #000000;
}
.tTMhub-uNKlAuwDQd .list,
.tTMhub-uNKlAuwDQd .item-wrap {
  color: #ffffff;
}
.tTMhub-tBocOvocla {
  z-index: 1000;
  width: 100%;
}
.tTMhub-tBocOvocla nav.navbar {
  position: fixed;
}
.tTMhub-tBocOvocla .dropdown-item:before {
  font-family: pixel2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.tTMhub-tBocOvocla .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.tTMhub-tBocOvocla .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.tTMhub-tBocOvocla .dropdown-item:hover,
.tTMhub-tBocOvocla .dropdown-item:focus {
  background: #7ba389 !important;
  color: white !important;
}
.tTMhub-tBocOvocla .dropdown-item:hover span {
  color: white;
}
.tTMhub-tBocOvocla .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.tTMhub-tBocOvocla .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.tTMhub-tBocOvocla .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.tTMhub-tBocOvocla .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.tTMhub-tBocOvocla .nav-link {
  position: relative;
}
.tTMhub-tBocOvocla .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .tTMhub-tBocOvocla .container {
    flex-wrap: nowrap;
  }
}
.tTMhub-tBocOvocla .navbar-nav {
  margin: 0 auto;
}
.tTMhub-tBocOvocla .dropdown-menu,
.tTMhub-tBocOvocla .navbar.opened {
  background: #1f3f2b !important;
}
.tTMhub-tBocOvocla .nav-item:focus,
.tTMhub-tBocOvocla .nav-link:focus {
  outline: none;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item .grid-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.tTMhub-tBocOvocla .dropdown .dropdown-menu .dropdown-item .grid-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.tTMhub-tBocOvocla .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.tTMhub-tBocOvocla .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.tTMhub-tBocOvocla .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #1f3f2b;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.tTMhub-tBocOvocla .navbar.opened {
  transition: all 0.3s;
}
.tTMhub-tBocOvocla .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.tTMhub-tBocOvocla .navbar .navbar-logo img {
  width: auto;
}
.tTMhub-tBocOvocla .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.tTMhub-tBocOvocla .navbar.collapsed {
  justify-content: center;
}
.tTMhub-tBocOvocla .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.tTMhub-tBocOvocla .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .tTMhub-tBocOvocla .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.tTMhub-tBocOvocla .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.tTMhub-tBocOvocla .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .tTMhub-tBocOvocla .navbar .nav-item .nav-link::before {
    display: none;
  }
  .tTMhub-tBocOvocla .navbar.opened .dropdown-menu {
    top: 0;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .tTMhub-tBocOvocla .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .tTMhub-tBocOvocla .navbar ul.navbar-nav li {
    margin: auto;
  }
  .tTMhub-tBocOvocla .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .tTMhub-tBocOvocla .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .tTMhub-tBocOvocla .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .tTMhub-tBocOvocla .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.tTMhub-tBocOvocla .navbar.navbar-short {
  min-height: 60px;
}
.tTMhub-tBocOvocla .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.tTMhub-tBocOvocla .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.tTMhub-tBocOvocla .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.tTMhub-tBocOvocla .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.tTMhub-tBocOvocla .navbar-brand .navbar-logo a {
  outline: none;
}
.tTMhub-tBocOvocla .dropdown-item.active,
.tTMhub-tBocOvocla .dropdown-item:active {
  background-color: transparent;
}
.tTMhub-tBocOvocla .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.tTMhub-tBocOvocla .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.tTMhub-tBocOvocla .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.tTMhub-tBocOvocla .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f3f2b;
}
.tTMhub-tBocOvocla .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.tTMhub-tBocOvocla .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.tTMhub-tBocOvocla ul.navbar-nav {
  flex-wrap: wrap;
}
.tTMhub-tBocOvocla .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.tTMhub-tBocOvocla button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.tTMhub-tBocOvocla button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.tTMhub-tBocOvocla nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.tTMhub-tBocOvocla .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.tTMhub-tBocOvocla a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .tTMhub-tBocOvocla .navbar {
    height: 70px;
  }
  .tTMhub-tBocOvocla .navbar.opened {
    height: auto;
  }
  .tTMhub-tBocOvocla .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.tTMhub-tBocOvocla .container,
.tTMhub-tBocOvocla .container-fluid {
  position: relative;
  min-height: 108px;
}
.tTMhub-tBocOvocla .navbar-short {
  background-color: #1f3f2b !important;
}
.tTMhub-tBocOvocla .navbar-short .container,
.tTMhub-tBocOvocla .navbar-short .container-fluid {
  min-height: 85px;
}
.tTMhub-tBocOvocla .navbar-short .container:before,
.tTMhub-tBocOvocla .navbar-short .container-fluid:before {
  display: none;
}
.tTMhub-tBocOvocla .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.tTMhub-tBocOvocla .grid-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.tTMhub-tBocOvocla .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .tTMhub-tBocOvocla .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .tTMhub-tBocOvocla .container,
  .tTMhub-tBocOvocla .container-fluid {
    min-height: 85px;
  }
  .tTMhub-tBocOvocla .navbar-brand {
    min-height: 85px;
  }
  .tTMhub-tBocOvocla .navbar-short .container,
  .tTMhub-tBocOvocla .navbar-short .container-fluid {
    min-height: 75px;
  }
  .tTMhub-tBocOvocla .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .tTMhub-tBocOvocla .navbar.opened {
    background: #1f3f2b !important;
  }
  .tTMhub-tBocOvocla .navbar.navbar-short {
    background-color: #1f3f2b !important;
  }
  .tTMhub-tBocOvocla .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .tTMhub-tBocOvocla .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .tTMhub-tBocOvocla .grid-section-btn {
    text-align: left;
  }
  .tTMhub-tBocOvocla .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .tTMhub-tBocOvocla .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #1f3f2b;
    z-index: 4;
    transition: 0.1s all;
  }
}
.tTMhub-uNKfaqH1Zn {
  display: flex;
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-color: #e2eee5;
}
.tTMhub-uNKfaqH1Zn .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKfaqH1Zn .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.tTMhub-uNKfaqH1Zn .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKfaqH1Zn h1 {
  max-width: 800px;
}
.tTMhub-uNKfaqH1Zn p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .tTMhub-uNKfaqH1Zn {
    align-items: center;
  }
  .tTMhub-uNKfaqH1Zn .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .tTMhub-uNKfaqH1Zn .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .tTMhub-uNKfaqH1Zn {
    -webkit-align-items: center;
    align-items: center;
  }
  .tTMhub-uNKfaqH1Zn .grid-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .tTMhub-uNKfaqH1Zn .content-wrap {
    width: 100%;
  }
}
.tTMhub-uNKfaqH1Zn .grid-section-subtitle,
.tTMhub-uNKfaqH1Zn .line {
  color: #291f1e;
}
.tTMhub-uNKfaqH1Zn .grid-text,
.tTMhub-uNKfaqH1Zn .grid-section-btn {
  text-align: center;
  color: #000000;
}
.tTMhub-uNKfaqH1Zn .grid-section-title {
  color: #000000;
  text-align: center;
}
.tTMhub-uNKg193nmH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #f5f9f4;
}
.tTMhub-uNKg193nmH .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKg193nmH .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKg193nmH .card {
  justify-content: center;
}
.tTMhub-uNKg193nmH .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKg193nmH .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKg193nmH .content-wrapper {
    padding: 0;
  }
}
.tTMhub-uNKg193nmH .content-wrapper .grid-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .tTMhub-uNKg193nmH .content-wrapper .grid-section-title {
    margin-bottom: 32px;
  }
}
.tTMhub-uNKg193nmH .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 90px;
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKg193nmH .items-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKg193nmH .items-wrapper {
    padding: 0;
    display: block;
  }
}
.tTMhub-uNKg193nmH .items-wrapper .item {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .tTMhub-uNKg193nmH .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.tTMhub-uNKg193nmH .items-wrapper .item:hover .item-wrapper .item-img img,
.tTMhub-uNKg193nmH .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: scale(1.05);
}
.tTMhub-uNKg193nmH .items-wrapper .item .item-wrapper {
  transition: all .3s ease;
  height: 100%;
  overflow: hidden;
}
.tTMhub-uNKg193nmH .items-wrapper .item .item-wrapper .item-img {
  position: relative;
  overflow: hidden;
}
.tTMhub-uNKg193nmH .items-wrapper .item .item-wrapper .item-img img {
  height: 500px;
  object-fit: cover;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .tTMhub-uNKg193nmH .items-wrapper .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.tTMhub-uNKg193nmH .items-wrapper .item .item-wrapper .card-box {
  padding: 32px;
  background-color: #e2eee5;
  border-top: 2px solid #3b8153;
}
@media (max-width: 992px) {
  .tTMhub-uNKg193nmH .items-wrapper .item .item-wrapper .card-box {
    padding: 20px;
  }
}
.tTMhub-uNKg193nmH .items-wrapper .item .item-wrapper .card-box .tag-wrapper {
  margin-bottom: 32px;
}
.tTMhub-uNKg193nmH .items-wrapper .item .item-wrapper .card-box .tag-wrapper .item-price {
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 0;
  border: 2px solid #3b8153;
}
.tTMhub-uNKg193nmH .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
.tTMhub-uNKg193nmH .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 32px;
}
.tTMhub-uNKg193nmH .items-wrapper .item .item-wrapper .card-box .grid-section-btn .btn {
  margin-bottom: 0;
}
.tTMhub-uNKg193nmH .grid-section-title {
  color: #ffffff;
}
.tTMhub-uNKg193nmH .item-title {
  color: #2C2625;
}
.tTMhub-uNKg193nmH .item-price {
  color: #2C2625;
}
.tTMhub-uNKg193nmH .item-text {
  color: #000000;
}
.tTMhub-uNKg193nmH .item-title,
.tTMhub-uNKg193nmH .grid-section-btn {
  text-align: center;
  color: #000000;
}
.tTMhub-uNKg193nmH .grid-section-title,
.tTMhub-uNKg193nmH .grid-section-btn {
  text-align: center;
  color: #000000;
}
.tTMhub-uNKg193nmH .item-price,
.tTMhub-uNKg193nmH .tag-wrapper {
  color: #ef5311;
}
.tTMhub-uNKgHM6jdn {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #e2eee5;
}
.tTMhub-uNKgHM6jdn .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKgHM6jdn .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKgHM6jdn .row {
  justify-content: space-between;
}
.tTMhub-uNKgHM6jdn .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .tTMhub-uNKgHM6jdn .content-wrapper {
    padding: 0;
  }
}
.tTMhub-uNKgHM6jdn .content-wrapper .grid-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .tTMhub-uNKgHM6jdn .content-wrapper .grid-section-title {
    margin-bottom: 20px;
  }
}
.tTMhub-uNKgHM6jdn .content-wrapper .grid-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .tTMhub-uNKgHM6jdn .content-wrapper .grid-text {
    margin-bottom: 20px;
  }
}
.tTMhub-uNKgHM6jdn .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.tTMhub-uNKgHM6jdn .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.tTMhub-uNKgHM6jdn .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.tTMhub-uNKgHM6jdn .content-wrapper .logo-wrapper .logo-wrap .grid-desc {
  margin-bottom: 0;
}
.tTMhub-uNKgHM6jdn .grid-section-title {
  color: #000000;
}
.tTMhub-uNKgHM6jdn .grid-desc {
  color: #000000;
}
.tTMhub-uNKgHM6jdn .grid-text {
  color: #000000;
}
.tTMhub-uNKgJYkvXm {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #f5f9f4;
}
.tTMhub-uNKgJYkvXm img {
  object-fit: cover;
}
.tTMhub-uNKgJYkvXm .grid-section-subtitle {
  text-align: center;
  color: #000000;
}
.tTMhub-uNKgJYkvXm .grid-text,
.tTMhub-uNKgJYkvXm .grid-section-btn {
  text-align: center;
  color: #000000;
}
.tTMhub-uNKlAuwDQd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #264432;
}
.tTMhub-uNKlAuwDQd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #264432;
  border-radius: 52px 52px 0 0 !important;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd::before {
    border-radius: 35px 35px 0 0 !important;
  }
}
.tTMhub-uNKlAuwDQd .grid-fallback-image.disabled {
  display: none;
}
.tTMhub-uNKlAuwDQd .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.tTMhub-uNKlAuwDQd .items-wrap {
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
  padding-bottom: 150px;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
    padding-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .title-wrapper .grid-section-title {
    padding-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .social-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .social-wrapper {
    margin-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper .grid-section-subtitle {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .social-wrapper .grid-section-subtitle {
    margin-bottom: 24px;
  }
}
.tTMhub-uNKlAuwDQd .social-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap {
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:hover,
.tTMhub-uNKlAuwDQd .social-wrapper .list .item-wrap:focus {
  color: #bba9ff;
}
.tTMhub-uNKlAuwDQd .contacts-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 1440px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper {
    margin-bottom: 32px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-section-subtitle {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper .grid-section-subtitle {
    margin-bottom: 12px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link {
  transition: all 0.3s ease-in-out;
  margin: 22px 0 0 0;
}
@media (max-width: 992px) {
  .tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link {
    margin-top: 12px;
  }
}
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link:hover,
.tTMhub-uNKlAuwDQd .contacts-wrapper .grid-link:focus {
  color: #bba9ff;
}
.tTMhub-uNKlAuwDQd .grid-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.tTMhub-uNKlAuwDQd .grid-section-title {
  color: #ffffff;
}
.tTMhub-uNKlAuwDQd .grid-section-subtitle {
  color: #ffffff;
}
.tTMhub-uNKlAuwDQd .list {
  color: #000000;
}
.tTMhub-uNKlAuwDQd .grid-link {
  color: #000000;
}
.tTMhub-uNKlAuwDQd .list,
.tTMhub-uNKlAuwDQd .item-wrap {
  color: #ffffff;
}

/* Base Cookie Banner */
.cookie-banner {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: #424a4d;
    padding: 15px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cookie-banner.show {
    visibility: visible;
    opacity: 1;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner a {
    color: #424a4d;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    all: unset;
    padding: 18px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    line-height: 1;
    display: inline-block;
}

.cookie-btn.Accept {
    background-color: #28a745 !important;
}

.cookie-btn.ignore {
    background-color: #dc3545 !important;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
        font-size: 13px;
    }
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    .cookie-btn {
        width: 100%;
        padding: 10px 0;
    }
}
/* Finish Cookie Banner */
/* Main container for the cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 400px;
  width: calc(100% - 40px);
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  padding: 20px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(100%);
  animation: slideIn 0.5s forwards;
  z-index: 1000;
}

/* Slide in animation */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header section: icon and message */
.cookie-banner .banner-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.cookie-banner .banner-header img {
  width: 50px;
  height: 50px;
  margin-right: 12px;
}

.cookie-banner .banner-header p {
  font-size: 16px;
  color: #333;
  margin: 0;
}

/* Buttons section */
.cookie-banner .banner-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.cookie-banner .banner-buttons button {
  border: none;
  border-radius: 4px;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  width: 100%;
}

.cookie-banner .banner-buttons button:hover {
  transform: scale(1.03);
}

/* Accept button design */
.cookie-banner .banner-buttons button#cookieAcceptBtn {
  background-color: #4caf50;
  color: #fff;
}

/* Reject button design */
.cookie-banner .banner-buttons button#cookieRejectBtn {
  background-color: #fff;
  color: #f44336;
  border: 2px solid #f44336;
}

.cookie-banner .banner-buttons button#cookieRejectBtn:hover {
  background-color: #ffe6e6;
}

/* Footer section with policy links */
.cookie-banner .banner-footer {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.cookie-banner .banner-footer a {
  color: #007bff;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: border-bottom 0.3s;
}

.cookie-banner .banner-footer a:hover {
  border-bottom: 1px dashed #007bff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cookie-banner {
    max-width: 90%;
    padding: 15px;
    bottom: 15px;
    right: 15px;
  }
  .cookie-banner .banner-buttons button {
    font-size: 15px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    max-width: 100%;
    bottom: 10px;
    right: 10px;
    padding: 10px;
  }
  .cookie-banner .banner-header img {
    width: 40px;
    height: 40px;
  }
  .cookie-banner .banner-buttons button {
    font-size: 14px;
    padding: 8px;
  }
}

/* logoanimations */
@keyframes colorChange {
    0% {
        color: red;
    }
    50% {
        color: blue;
    }
    100% {
        color: green;
    }
}

.navbar-brand {
    animation: colorChange 3s alternate;
}
/* endlogoanimations */

/* mainanimations */
/* Style 11: hue-rotate filter */
a, button, .btn {
  transition: filter 0.3s ease;
}
a:active, button:active, .btn:active {
  filter: hue-rotate(90deg);
}
/* endmainanimations */
