body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 2.4rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 3.84rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #8b0d19 !important;
}
.bg-success {
  background-color: #8b0d19 !important;
}
.bg-info {
  background-color: #262163 !important;
}
.bg-warning {
  background-color: #8b0d19 !important;
}
.bg-danger {
  background-color: #262163 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #8b0d19 !important;
  border-color: #8b0d19 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #45060c !important;
  border-color: #45060c !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #45060c !important;
  border-color: #45060c !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #262163 !important;
  border-color: #262163 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #100e2a !important;
  border-color: #100e2a !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #100e2a !important;
  border-color: #100e2a !important;
}
.btn-info,
.btn-info:active {
  background-color: #262163 !important;
  border-color: #262163 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #100e2a !important;
  border-color: #100e2a !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #100e2a !important;
  border-color: #100e2a !important;
}
.btn-success,
.btn-success:active {
  background-color: #8b0d19 !important;
  border-color: #8b0d19 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #45060c !important;
  border-color: #45060c !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #45060c !important;
  border-color: #45060c !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #8b0d19 !important;
  border-color: #8b0d19 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #45060c !important;
  border-color: #45060c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #45060c !important;
  border-color: #45060c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #262163 !important;
  border-color: #262163 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #100e2a !important;
  border-color: #100e2a !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #100e2a !important;
  border-color: #100e2a !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #2e0408;
  color: #2e0408;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #8b0d19;
  border-color: #8b0d19;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #8b0d19 !important;
  border-color: #8b0d19 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #090817;
  color: #090817;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #262163;
  border-color: #262163;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #262163 !important;
  border-color: #262163 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #090817;
  color: #090817;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #262163;
  border-color: #262163;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #262163 !important;
  border-color: #262163 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #2e0408;
  color: #2e0408;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #8b0d19;
  border-color: #8b0d19;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #8b0d19 !important;
  border-color: #8b0d19 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #2e0408;
  color: #2e0408;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #8b0d19;
  border-color: #8b0d19;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #8b0d19 !important;
  border-color: #8b0d19 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #090817;
  color: #090817;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #262163;
  border-color: #262163;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #262163 !important;
  border-color: #262163 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #8b0d19 !important;
}
.text-secondary {
  color: #262163 !important;
}
.text-success {
  color: #8b0d19 !important;
}
.text-info {
  color: #262163 !important;
}
.text-warning {
  color: #8b0d19 !important;
}
.text-danger {
  color: #262163 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #2e0408 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #090817 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #2e0408 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #090817 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #2e0408 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #090817 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #262163;
}
.alert-warning {
  background-color: #8b0d19;
}
.alert-danger {
  background-color: #262163;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #8b0d19;
  border-color: #8b0d19;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #8b0d19;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #eb2c3e;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #eb2c3e;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #4d43c0;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #eb2c3e;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #4d43c0;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #8b0d19;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #8b0d19;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #8b0d19;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #8b0d19;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #8b0d19;
  border-bottom-color: #8b0d19;
}
.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: #ffffff !important;
  background-color: #8b0d19 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #262163 !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%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  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='%238b0d19' %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.3;
}
.cid-tnCtGAfgG9 .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-tnCtGAfgG9 .collapsed {
  flex-direction: row!important;
}
.cid-tnCtGAfgG9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tnCtGAfgG9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tnCtGAfgG9 .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tnCtGAfgG9 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tnCtGAfgG9 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tnCtGAfgG9 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tnCtGAfgG9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tnCtGAfgG9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tnCtGAfgG9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tnCtGAfgG9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tnCtGAfgG9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tnCtGAfgG9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tnCtGAfgG9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tnCtGAfgG9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tnCtGAfgG9 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tnCtGAfgG9 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tnCtGAfgG9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tnCtGAfgG9 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tnCtGAfgG9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tnCtGAfgG9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tnCtGAfgG9 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #262163;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tnCtGAfgG9 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tnCtGAfgG9 .nav-item:focus,
.cid-tnCtGAfgG9 .nav-link:focus {
  outline: none;
}
.cid-tnCtGAfgG9 .text-white:hover,
.cid-tnCtGAfgG9 .text-white:active,
.cid-tnCtGAfgG9 .text-white:focus {
  color: white!important;
}
.cid-tnCtGAfgG9 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tnCtGAfgG9 .dropdown-item:hover {
  color: black!important;
}
.cid-tnCtGAfgG9 .dropdown-menu {
  background-color: white!important;
}
.cid-tnCtGAfgG9 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(53, 46, 137, 0.35);
  display: block;
}
.cid-tnCtGAfgG9 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #262163;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tnCtGAfgG9 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (max-width: 992px) {
  .cid-tnCtGAfgG9 .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-tnCtGAfgG9 .nav-item {
    position: relative;
  }
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tnCtGAfgG9 .navbar-caption {
  font-weight: 600!important;
}
.cid-tnCtGAfgG9 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tnCtGAfgG9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tnCtGAfgG9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tnCtGAfgG9 .dropdown-item.active,
.cid-tnCtGAfgG9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tnCtGAfgG9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tnCtGAfgG9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tnCtGAfgG9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tnCtGAfgG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tnCtGAfgG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tnCtGAfgG9 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tnCtGAfgG9 .navbar-buttons {
  text-align: center;
}
.cid-tnCtGAfgG9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnCtGAfgG9 .nav-link {
  font-weight: 600!important;
}
.cid-tnCtGAfgG9 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tnCtGAfgG9 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tnCtGAfgG9 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tnCtGAfgG9 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tnCtGAfgG9 .navbar {
    height: 77px;
  }
  .cid-tnCtGAfgG9 .navbar.opened {
    height: auto;
  }
  .cid-tnCtGAfgG9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tnCzrbXNAc {
  padding-top: 120px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/embroidery-experts-in-joburg-1.gif");
  overflow: hidden;
}
.cid-tnCzrbXNAc svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-tnCzrbXNAc #e2_shape {
  fill: #ffffff !important;
}
.cid-tnCzrbXNAc img {
  border-radius: 10px;
  margin: auto;
  box-shadow: 0 10px 55px 5px rgba(53, 46, 137, 0.35);
}
@media (max-width: 576px) {
  .cid-tnCzrbXNAc img {
    width: 90%!important;
  }
}
.cid-tnCzrbXNAc H1 {
  color: #ffffff;
}
.cid-tnCtMMRSzD {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #8b0d19;
  position: relative;
  overflow: hidden;
}
.cid-tnCtMMRSzD svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-tnCtMMRSzD #e1_ellipse {
  fill: #ffffff !important;
}
.cid-tnCtMMRSzD img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(53, 46, 137, 0.35);
}
@media (max-width: 576px) {
  .cid-tnCtMMRSzD img {
    width: 100%;
    left: 0;
  }
}
.cid-tnCtMMRSzD H1 {
  color: #262163;
}
.cid-tnCtMMRSzD .mbr-text,
.cid-tnCtMMRSzD .mbr-section-btn {
  color: #716c80;
}
.cid-to1TQwJI2T {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/cap-3d-embroidery-2000x1125.jpg");
}
.cid-to1TQwJI2T h2 {
  text-align: center;
}
.cid-to1TQwJI2T h3 {
  text-align: center;
  font-weight: 300;
}
.cid-to1TQwJI2T p {
  color: #767676;
}
.cid-to1TQwJI2T img {
  object-fit: cover;
}
.cid-to1TQwJI2T .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-to1TQwJI2T .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-to1TQwJI2T .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-to1TQwJI2T .mbr-section-subtitle {
  color: #efefef;
}
.cid-to1TQwJI2T .card-title {
  font-weight: 500;
}
.cid-to1TQwJI2T .card-img {
  text-align: inherit;
}
.cid-to1TQwJI2T .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-to1TQwJI2T .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-to1TQwJI2T .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-to1TQwJI2T .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-to1TQwJI2T .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-to1TQwJI2T .card:nth-child(1) {
    padding-bottom: 0 !important;
  }
}
.cid-to1TQwJI2T .mbr-section-title {
  color: #ffffff;
}
.cid-to1TQwJI2T .mbr-section-text {
  color: #ffffff;
}
.cid-to1TQwJI2T .mbr-crt-title {
  color: #ffffff;
}
.cid-tnCwZwNpAJ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tnCwZwNpAJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tnCwZwNpAJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnCwZwNpAJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tnCwZwNpAJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tnCwZwNpAJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #8b0d19;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #8b0d19, #262163);
}
.cid-tnCwZwNpAJ .icon-focus {
  display: none;
}
.cid-tnCwZwNpAJ .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tnCwZwNpAJ ul {
  font-size: 0;
}
.cid-tnCwZwNpAJ .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tnCwZwNpAJ .mbr-gallery-filter ul li .btn.active,
.cid-tnCwZwNpAJ .mbr-gallery-filter ul li.active .btn:not(.active) {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-tnCwZwNpAJ .mbr-gallery-filter ul li .btn.active:after,
.cid-tnCwZwNpAJ .mbr-gallery-filter ul li.active .btn:not(.active):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #8b0d19, #262163);
}
.cid-tnCwZwNpAJ .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-tnCwZwNpAJ .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-tnCwZwNpAJ .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tnCwZwNpAJ .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-tnCwZwNpAJ .btn:hover {
  background: transparent !important;
}
.cid-tnCwZwNpAJ .btn:hover:before {
  background: transparent !important;
}
.cid-tnCwZwNpAJ .btn:before {
  background-color: transparent !important;
}
.cid-tnCwZwNpAJ .btn:focus {
  box-shadow: none;
}
.cid-tnCwZwNpAJ .mbr-section-title {
  position: relative;
  z-index: 1;
  color: #8b0d19;
}
.cid-tnCtX7t4TA {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tnCtX7t4TA H1 {
  color: #8b0d19;
}
.cid-tnCtX7t4TA .mbr-text,
.cid-tnCtX7t4TA .mbr-section-btn {
  color: #767676;
}
.cid-tnCtX7t4TA .img-box {
  position: relative;
}
.cid-tnCtX7t4TA .card {
  display: flex;
  flex-direction: row;
  max-width: 350px;
}
.cid-tnCtX7t4TA .img1 {
  position: absolute;
  top: 0;
  left: 3rem;
  z-index: 1;
}
.cid-tnCtX7t4TA .img2 {
  position: absolute;
  bottom: 0;
  right: 3rem;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-tnCtX7t4TA .img-box {
    height: 500px;
  }
  .cid-tnCtX7t4TA .img1 {
    left: 1rem;
  }
  .cid-tnCtX7t4TA .img2 {
    right: 1rem;
  }
  .cid-tnCtX7t4TA img {
    width: 50%;
  }
}
.cid-tnCtX7t4TA img {
  width: 60%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(53, 46, 137, 0.35);
}
@media (max-width: 576px) {
  .cid-tnCtX7t4TA .card-text {
    display: flex;
    align-items: center;
  }
  .cid-tnCtX7t4TA .count {
    padding-right: 16px;
  }
  .cid-tnCtX7t4TA img {
    width: 60%;
  }
  .cid-tnCtX7t4TA .img-box {
    height: 300px;
  }
  .cid-tnCtX7t4TA .card {
    flex-direction: column;
    align-items: center;
    padding: 0!important;
  }
}
.cid-tnCtX7t4TA h3,
.cid-tnCtX7t4TA h4 {
  margin: 0;
  padding: 0;
}
.cid-tnCtX7t4TA H3 {
  color: #262163;
}
.cid-tnCtX7t4TA .count-title {
  color: #767676;
}
.cid-tnCwMUFbOT {
  background-image: url("../../../assets/images/embroidery-experts-in-joburg-12.jpg");
}
.cid-tnCwMUFbOT .text-content {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-tnCwMUFbOT .text-content .btn-bgr {
  z-index: 0;
}
.cid-tnCwMUFbOT .mbr-overlay {
  background: linear-gradient(90deg, #8b0d19, #262163);
}
.cid-tnCwMUFbOT H3 {
  color: #000000;
  font-weight: 300;
}
.cid-tnCwMUFbOT P {
  color: #767676;
}
.cid-tnCwMUFbOT H2 {
  color: #000000;
}
.cid-tnCwMUFbOT .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-tnCwMUFbOT .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-tnCwMUFbOT .text-content {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 50%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tnCwMUFbOT .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-tnCwMUFbOT .text-content {
    width: 100%;
  }
}
.cid-tnCwMUFbOT .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-tnCwMUFbOT .mbr-section-btn {
  margin-left: -0.8rem;
}
@media (max-width: 767px) {
  .cid-tnCwMUFbOT .mbr-text {
    text-align: center;
  }
}
.cid-tnCwMUFbOT .mbr-section-btn,
.cid-tnCwMUFbOT .mbr-section-title {
  color: #262163;
}
.cid-tnCwMUFbOT .mbr-section-subtitle {
  color: #8b0d19;
}
.cid-tnCx75sYbe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tnCx75sYbe .mbr-section-subtitle {
  color: #767676;
}
.cid-tnCx75sYbe H2 {
  color: #8b0d19;
}
.cid-tnCx89lVNg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #262163;
}
.cid-tnCx89lVNg .mbr-text {
  margin: 0;
}
.cid-tnCx89lVNg .text-element {
  padding: 2rem;
  background-color: #ffffff;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
}
.cid-tnCx89lVNg .row-element,
.cid-tnCx89lVNg .image-element {
  padding: 0;
}
.cid-tnCx89lVNg .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tnCx89lVNg .image-element .img-wrap {
  width: 100% !important;
}
.cid-tnCx89lVNg .image-element .img-wrap img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tnCx89lVNg .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tnCx89lVNg .carousel-item.active,
.cid-tnCx89lVNg .carousel-item-next,
.cid-tnCx89lVNg .carousel-item-prev {
  display: flex;
}
.cid-tnCx89lVNg .carousel-indicators {
  left: 50%;
  margin: 20px auto 0;
  align-items: center;
}
.cid-tnCx89lVNg .carousel-indicators .active {
  opacity: 1;
  border: 0;
  background-color: #8b0d19;
}
.cid-tnCx89lVNg .carousel-indicators li {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  transition: opacity .5s;
  background-color: #000000;
  font-size: 2rem;
  opacity: .5;
  border-width: 0px;
}
.cid-tnCx89lVNg .carousel-indicators li:hover {
  opacity: 1;
}
.cid-tnCx89lVNg .carousel-controls {
  display: none;
}
@media (max-width: 991px) {
  .cid-tnCx89lVNg .carousel-controls {
    display: block;
  }
  .cid-tnCx89lVNg .carousel-controls a {
    transition: opacity .5s;
    font-size: 2rem;
  }
  .cid-tnCx89lVNg .carousel-controls a span {
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    background: #444444;
    opacity: .9;
  }
  .cid-tnCx89lVNg .carousel-controls a:hover span {
    opacity: 1;
  }
  .cid-tnCx89lVNg .carousel-indicators {
    display: none;
  }
}
@media (max-width: 540px) {
  .cid-tnCx89lVNg .text-element {
    padding: 1rem;
  }
  .cid-tnCx89lVNg .carousel-controls {
    display: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tnCx89lVNg .image-element {
    min-width: 50%;
  }
  .cid-tnCx89lVNg .media-container-row {
    width: 100%;
  }
}
.cid-tnCx89lVNg .mbr-subtitle {
  color: #8b0d19;
}
.cid-tnCx89lVNg .mbr-title,
.cid-tnCx89lVNg .ornament {
  color: #262163;
}
.cid-tnCxayi8ux {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/embroidery-services-logo-digitizing-embroidery-masters-2.jpeg");
}
.cid-tnCxe1ryEd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #8b0d19;
}
.cid-tnCxe1ryEd .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tnCxe1ryEd .section-text {
  padding: 2rem 0;
}
.cid-tnCxe1ryEd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tnCxe1ryEd .inner-container {
    width: 100% !important;
  }
}
.cid-tnDnSKikkB {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/embroidery-experts-in-joburg-9.jpg");
}
.cid-tnDnSKikkB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tnDnSKikkB .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tnDnSKikkB .mbr-text {
  color: #767676;
}
.cid-tnDnSKikkB .mbr-author-desc {
  display: block;
  color: #767676;
}
.cid-tnDnSKikkB .mbr-author-name {
  color: #8b0d19;
}
.cid-tnDnSKikkB .mbr-testimonial .panel-item {
  background-color: #ffffff;
}
.cid-tnDnSKikkB .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2.4rem 2.4rem 0 2.4rem;
}
.cid-tnDnSKikkB .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-tnDnSKikkB .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tnDnSKikkB .mbr-testimonial .card-footer {
  padding-bottom: 2.4rem;
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-tnDnSKikkB .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-tnDnSKikkB H2 {
  color: #ffffff;
}
.cid-tnDeQRnHUa {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tnDeQRnHUa .title {
  margin-bottom: 2rem;
}
.cid-tnDeQRnHUa .mbr-section-subtitle {
  color: #232323;
}
.cid-tnDeQRnHUa a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tnDeQRnHUa a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-tnDeQRnHUa textarea.form-control {
  min-height: 188px;
}
.cid-tnDeQRnHUa H2 {
  color: #8b0d19;
}
.cid-to4Kvhkkh9 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #262163;
}
.cid-to4Kvhkkh9 .title {
  padding-bottom: 2.5rem;
}
.cid-to4Kvhkkh9 .mbr-text {
  color: #efefef;
  margin: 0;
  padding-top: 0.5rem;
}
.cid-to4Kvhkkh9 .iconfont-wrapper {
  display: flex;
  align-items: center;
  width: 72px;
  height: 72px;
}
@media (min-width: 992px) {
  .cid-to4Kvhkkh9 .iconfont-wrapper {
    margin-right: 2rem;
  }
}
.cid-to4Kvhkkh9 .iconfont-wrapper .mbr-iconfont {
  font-size: 72px;
}
.cid-to4Kvhkkh9 .wrapper {
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-to4Kvhkkh9 .wrapper .iconfont-wrapper {
    margin: auto;
  }
}
@media (max-width: 991px) {
  .cid-to4Kvhkkh9 .wrapper {
    flex-wrap: wrap;
  }
  .cid-to4Kvhkkh9 .wrapper .iconfont-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-to4Kvhkkh9 .wrapper .b-info {
  width: 100%;
}
.cid-to4Kvhkkh9 H4 {
  text-align: center;
  color: #ffffff;
}
.cid-to4Kvhkkh9 H6 {
  color: #ffffff;
}
.cid-to2cSw12ll {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-to2cSw12ll .mbr-row {
  margin-left: 0;
  margin-right: 0;
}
.cid-to2cSw12ll .mbr-section-title {
  padding-bottom: 1rem;
}
.cid-to2cSw12ll .google-map {
  height: 25rem;
  position: relative;
  width: 100%;
}
.cid-to2cSw12ll .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-to2cSw12ll .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-to2cSw12ll .google-map[data-state] {
  background: #e9e5dc;
}
.cid-to2cSw12ll .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-to2cSw12ll .map-placeholder {
  display: none;
}
.cid-to2cSw12ll .mbr-section-title,
.cid-to2cSw12ll .map-title {
  color: #29282d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-to2cSw12ll .map-title {
    margin-top: 3rem;
  }
}
.cid-tnDd0ZKY76 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
@media (max-width: 767px) {
  .cid-tnDd0ZKY76 .content {
    text-align: center;
  }
  .cid-tnDd0ZKY76 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tnDd0ZKY76 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tnDd0ZKY76 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tnDd0ZKY76 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tnDd0ZKY76 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tnDd0ZKY76 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tnDd0ZKY76 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tnDd0ZKY76 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tnDd0ZKY76 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tnDd0ZKY76 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tnDd0ZKY76 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tnDd0ZKY76 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tnDd0ZKY76 H5 {
  color: #ffffff;
}
.cid-tnDd0ZKY76 P {
  color: #262163;
}
.cid-tnCtGAfgG9 .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-tnCtGAfgG9 .collapsed {
  flex-direction: row!important;
}
.cid-tnCtGAfgG9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tnCtGAfgG9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tnCtGAfgG9 .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tnCtGAfgG9 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tnCtGAfgG9 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tnCtGAfgG9 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tnCtGAfgG9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tnCtGAfgG9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tnCtGAfgG9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tnCtGAfgG9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tnCtGAfgG9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tnCtGAfgG9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tnCtGAfgG9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tnCtGAfgG9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tnCtGAfgG9 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tnCtGAfgG9 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tnCtGAfgG9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tnCtGAfgG9 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tnCtGAfgG9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tnCtGAfgG9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tnCtGAfgG9 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #262163;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tnCtGAfgG9 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tnCtGAfgG9 .nav-item:focus,
.cid-tnCtGAfgG9 .nav-link:focus {
  outline: none;
}
.cid-tnCtGAfgG9 .text-white:hover,
.cid-tnCtGAfgG9 .text-white:active,
.cid-tnCtGAfgG9 .text-white:focus {
  color: white!important;
}
.cid-tnCtGAfgG9 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tnCtGAfgG9 .dropdown-item:hover {
  color: black!important;
}
.cid-tnCtGAfgG9 .dropdown-menu {
  background-color: white!important;
}
.cid-tnCtGAfgG9 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(53, 46, 137, 0.35);
  display: block;
}
.cid-tnCtGAfgG9 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #262163;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tnCtGAfgG9 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (max-width: 992px) {
  .cid-tnCtGAfgG9 .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-tnCtGAfgG9 .nav-item {
    position: relative;
  }
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tnCtGAfgG9 .navbar-caption {
  font-weight: 600!important;
}
.cid-tnCtGAfgG9 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tnCtGAfgG9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tnCtGAfgG9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tnCtGAfgG9 .dropdown-item.active,
.cid-tnCtGAfgG9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tnCtGAfgG9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tnCtGAfgG9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tnCtGAfgG9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tnCtGAfgG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tnCtGAfgG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tnCtGAfgG9 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tnCtGAfgG9 .navbar-buttons {
  text-align: center;
}
.cid-tnCtGAfgG9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnCtGAfgG9 .nav-link {
  font-weight: 600!important;
}
.cid-tnCtGAfgG9 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tnCtGAfgG9 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tnCtGAfgG9 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tnCtGAfgG9 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tnCtGAfgG9 .navbar {
    height: 77px;
  }
  .cid-tnCtGAfgG9 .navbar.opened {
    height: auto;
  }
  .cid-tnCtGAfgG9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tnDCQk18Nt {
  overflow-x: hidden !important;
}
.cid-tnDCQk18Nt,
.cid-tnDCQk18Nt .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 225px;
}
.cid-tnDCQk18Nt .mbr-section-title {
  color: #ffffff;
}
.cid-tnDCQk18Nt .mbr-section-title span {
  color: #8b0d19;
}
.cid-tnDCQk18Nt .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-tnDCQk18Nt .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 30s !important;
  animation-duration: 30s;
  background-image: url("../../../assets/images/embroidery-services-logo-digitizing-embroidery-masters-2.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-tnDCQk18Nt .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-tnDCQk18Nt .mbr-overlay {
  z-index: 1;
}
.cid-tnDCQk18Nt .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-to4NzP57zI {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-to4NzP57zI .title {
  margin-bottom: 2rem;
}
.cid-to4NzP57zI .mbr-section-subtitle {
  color: #767676;
}
.cid-to4NzP57zI a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-to4NzP57zI a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-to4NzP57zI textarea.form-control {
  min-height: 188px;
}
.cid-to4NzP57zI H2 {
  color: #8b0d19;
}
.cid-tnDNXuB1ug {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/embroidery-experts-in-joburg-9.jpg");
}
.cid-tnDNXuB1ug .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tnDNXuB1ug .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tnDNXuB1ug .mbr-text {
  color: #767676;
}
.cid-tnDNXuB1ug .mbr-author-desc {
  display: block;
  color: #767676;
}
.cid-tnDNXuB1ug .mbr-author-name {
  color: #8b0d19;
}
.cid-tnDNXuB1ug .mbr-testimonial .panel-item {
  background-color: #ffffff;
}
.cid-tnDNXuB1ug .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2.4rem 2.4rem 0 2.4rem;
}
.cid-tnDNXuB1ug .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-tnDNXuB1ug .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tnDNXuB1ug .mbr-testimonial .card-footer {
  padding-bottom: 2.4rem;
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-tnDNXuB1ug .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-tnDNXuB1ug H2 {
  color: #ffffff;
}
.cid-to4NoXUPPB {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #262163;
}
.cid-to4NoXUPPB .title {
  padding-bottom: 2.5rem;
}
.cid-to4NoXUPPB .mbr-text {
  color: #efefef;
  margin: 0;
  padding-top: 0.5rem;
}
.cid-to4NoXUPPB .iconfont-wrapper {
  display: flex;
  align-items: center;
  width: 72px;
  height: 72px;
}
@media (min-width: 992px) {
  .cid-to4NoXUPPB .iconfont-wrapper {
    margin-right: 2rem;
  }
}
.cid-to4NoXUPPB .iconfont-wrapper .mbr-iconfont {
  font-size: 72px;
}
.cid-to4NoXUPPB .wrapper {
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-to4NoXUPPB .wrapper .iconfont-wrapper {
    margin: auto;
  }
}
@media (max-width: 991px) {
  .cid-to4NoXUPPB .wrapper {
    flex-wrap: wrap;
  }
  .cid-to4NoXUPPB .wrapper .iconfont-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-to4NoXUPPB .wrapper .b-info {
  width: 100%;
}
.cid-to4NoXUPPB H4 {
  text-align: center;
  color: #ffffff;
}
.cid-to4NoXUPPB H6 {
  color: #ffffff;
}
.cid-to4NpLiT7A {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-to4NpLiT7A .mbr-row {
  margin-left: 0;
  margin-right: 0;
}
.cid-to4NpLiT7A .mbr-section-title {
  padding-bottom: 1rem;
}
.cid-to4NpLiT7A .google-map {
  height: 25rem;
  position: relative;
  width: 100%;
}
.cid-to4NpLiT7A .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-to4NpLiT7A .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-to4NpLiT7A .google-map[data-state] {
  background: #e9e5dc;
}
.cid-to4NpLiT7A .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-to4NpLiT7A .map-placeholder {
  display: none;
}
.cid-to4NpLiT7A .mbr-section-title,
.cid-to4NpLiT7A .map-title {
  color: #29282d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-to4NpLiT7A .map-title {
    margin-top: 3rem;
  }
}
.cid-tnDNYiKb60 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
@media (max-width: 767px) {
  .cid-tnDNYiKb60 .content {
    text-align: center;
  }
  .cid-tnDNYiKb60 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tnDNYiKb60 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tnDNYiKb60 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tnDNYiKb60 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tnDNYiKb60 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tnDNYiKb60 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tnDNYiKb60 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tnDNYiKb60 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tnDNYiKb60 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tnDNYiKb60 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tnDNYiKb60 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tnDNYiKb60 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tnDNYiKb60 H5 {
  color: #ffffff;
}
.cid-tnDNYiKb60 P {
  color: #262163;
}
.cid-tnCtGAfgG9 .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-tnCtGAfgG9 .collapsed {
  flex-direction: row!important;
}
.cid-tnCtGAfgG9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tnCtGAfgG9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tnCtGAfgG9 .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tnCtGAfgG9 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tnCtGAfgG9 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tnCtGAfgG9 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tnCtGAfgG9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tnCtGAfgG9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tnCtGAfgG9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tnCtGAfgG9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tnCtGAfgG9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tnCtGAfgG9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tnCtGAfgG9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tnCtGAfgG9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tnCtGAfgG9 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tnCtGAfgG9 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tnCtGAfgG9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tnCtGAfgG9 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tnCtGAfgG9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tnCtGAfgG9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tnCtGAfgG9 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #262163;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tnCtGAfgG9 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tnCtGAfgG9 .nav-item:focus,
.cid-tnCtGAfgG9 .nav-link:focus {
  outline: none;
}
.cid-tnCtGAfgG9 .text-white:hover,
.cid-tnCtGAfgG9 .text-white:active,
.cid-tnCtGAfgG9 .text-white:focus {
  color: white!important;
}
.cid-tnCtGAfgG9 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tnCtGAfgG9 .dropdown-item:hover {
  color: black!important;
}
.cid-tnCtGAfgG9 .dropdown-menu {
  background-color: white!important;
}
.cid-tnCtGAfgG9 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(53, 46, 137, 0.35);
  display: block;
}
.cid-tnCtGAfgG9 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #262163;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tnCtGAfgG9 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (max-width: 992px) {
  .cid-tnCtGAfgG9 .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-tnCtGAfgG9 .nav-item {
    position: relative;
  }
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tnCtGAfgG9 .navbar-caption {
  font-weight: 600!important;
}
.cid-tnCtGAfgG9 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tnCtGAfgG9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tnCtGAfgG9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tnCtGAfgG9 .dropdown-item.active,
.cid-tnCtGAfgG9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tnCtGAfgG9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tnCtGAfgG9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tnCtGAfgG9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tnCtGAfgG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tnCtGAfgG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tnCtGAfgG9 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tnCtGAfgG9 .navbar-buttons {
  text-align: center;
}
.cid-tnCtGAfgG9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnCtGAfgG9 .nav-link {
  font-weight: 600!important;
}
.cid-tnCtGAfgG9 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tnCtGAfgG9 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tnCtGAfgG9 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tnCtGAfgG9 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tnCtGAfgG9 .navbar {
    height: 77px;
  }
  .cid-tnCtGAfgG9 .navbar.opened {
    height: auto;
  }
  .cid-tnCtGAfgG9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tnDATGRsqR {
  background-image: url("../../../assets/images/embroidery-experts-in-joburg-10.jpg");
}
.cid-tnDAYDZzCv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tnDAYDZzCv .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tnDAYDZzCv input,
.cid-tnDAYDZzCv textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 0;
  min-height: 3rem;
  padding: 0rem!important;
  font-size: 1rem;
}
.cid-tnDAYDZzCv input:focus,
.cid-tnDAYDZzCv textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-tnDAYDZzCv .form-control,
.cid-tnDAYDZzCv .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #8b0d19;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tnDAYDZzCv .form-control:hover,
.cid-tnDAYDZzCv .field-input:hover,
.cid-tnDAYDZzCv .form-control:focus,
.cid-tnDAYDZzCv .field-input:focus {
  background-color: #efefef;
  border-color: #262163;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tnDAYDZzCv input::-webkit-input-placeholder,
.cid-tnDAYDZzCv textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-tnDAYDZzCv input:-moz-placeholder,
.cid-tnDAYDZzCv textarea:-moz-placeholder {
  color: #232323;
}
.cid-tnDAYDZzCv .jq-selectbox li,
.cid-tnDAYDZzCv .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tnDAYDZzCv .jq-selectbox li:hover,
.cid-tnDAYDZzCv .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-tnDAYDZzCv .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-tnDAYDZzCv .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #efefef;
}
.cid-tnDAYDZzCv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tnDAYDZzCv .mbr-form {
  max-width: 450px;
}
.cid-tnDAYDZzCv textarea {
  min-height: 150px;
}
.cid-tnDAYDZzCv .mbr-text {
  color: #232323;
}
.cid-tnDAYDZzCv .mbr-form .btn {
  width: 100%;
  justify-content: space-between;
}
.cid-tnDAYDZzCv .mbr-form .btn .mbr-iconfont {
  font-size: 1.5rem;
  order: 2;
}
.cid-tnDAYDZzCv H2 {
  color: #8b0d19;
}
.cid-to4NjRyit6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #262163;
}
.cid-to4NjRyit6 .title {
  padding-bottom: 2.5rem;
}
.cid-to4NjRyit6 .mbr-text {
  color: #efefef;
  margin: 0;
  padding-top: 0.5rem;
}
.cid-to4NjRyit6 .iconfont-wrapper {
  display: flex;
  align-items: center;
  width: 72px;
  height: 72px;
}
@media (min-width: 992px) {
  .cid-to4NjRyit6 .iconfont-wrapper {
    margin-right: 2rem;
  }
}
.cid-to4NjRyit6 .iconfont-wrapper .mbr-iconfont {
  font-size: 72px;
}
.cid-to4NjRyit6 .wrapper {
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-to4NjRyit6 .wrapper .iconfont-wrapper {
    margin: auto;
  }
}
@media (max-width: 991px) {
  .cid-to4NjRyit6 .wrapper {
    flex-wrap: wrap;
  }
  .cid-to4NjRyit6 .wrapper .iconfont-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-to4NjRyit6 .wrapper .b-info {
  width: 100%;
}
.cid-to4NjRyit6 H4 {
  text-align: center;
  color: #ffffff;
}
.cid-to4NjRyit6 H6 {
  color: #ffffff;
}
.cid-to4NkWBAeh {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-to4NkWBAeh .mbr-row {
  margin-left: 0;
  margin-right: 0;
}
.cid-to4NkWBAeh .mbr-section-title {
  padding-bottom: 1rem;
}
.cid-to4NkWBAeh .google-map {
  height: 25rem;
  position: relative;
  width: 100%;
}
.cid-to4NkWBAeh .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-to4NkWBAeh .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-to4NkWBAeh .google-map[data-state] {
  background: #e9e5dc;
}
.cid-to4NkWBAeh .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-to4NkWBAeh .map-placeholder {
  display: none;
}
.cid-to4NkWBAeh .mbr-section-title,
.cid-to4NkWBAeh .map-title {
  color: #29282d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-to4NkWBAeh .map-title {
    margin-top: 3rem;
  }
}
.cid-tnDNxE9l47 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
@media (max-width: 767px) {
  .cid-tnDNxE9l47 .content {
    text-align: center;
  }
  .cid-tnDNxE9l47 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tnDNxE9l47 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tnDNxE9l47 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tnDNxE9l47 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tnDNxE9l47 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tnDNxE9l47 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tnDNxE9l47 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tnDNxE9l47 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tnDNxE9l47 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tnDNxE9l47 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tnDNxE9l47 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tnDNxE9l47 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tnDNxE9l47 H5 {
  color: #ffffff;
}
.cid-tnDNxE9l47 P {
  color: #262163;
}
.cid-tnCtGAfgG9 .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-tnCtGAfgG9 .collapsed {
  flex-direction: row!important;
}
.cid-tnCtGAfgG9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tnCtGAfgG9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tnCtGAfgG9 .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tnCtGAfgG9 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tnCtGAfgG9 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tnCtGAfgG9 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tnCtGAfgG9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tnCtGAfgG9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tnCtGAfgG9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tnCtGAfgG9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tnCtGAfgG9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tnCtGAfgG9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tnCtGAfgG9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tnCtGAfgG9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tnCtGAfgG9 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tnCtGAfgG9 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tnCtGAfgG9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tnCtGAfgG9 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tnCtGAfgG9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tnCtGAfgG9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tnCtGAfgG9 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #262163;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tnCtGAfgG9 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tnCtGAfgG9 .nav-item:focus,
.cid-tnCtGAfgG9 .nav-link:focus {
  outline: none;
}
.cid-tnCtGAfgG9 .text-white:hover,
.cid-tnCtGAfgG9 .text-white:active,
.cid-tnCtGAfgG9 .text-white:focus {
  color: white!important;
}
.cid-tnCtGAfgG9 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tnCtGAfgG9 .dropdown-item:hover {
  color: black!important;
}
.cid-tnCtGAfgG9 .dropdown-menu {
  background-color: white!important;
}
.cid-tnCtGAfgG9 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(53, 46, 137, 0.35);
  display: block;
}
.cid-tnCtGAfgG9 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #262163;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tnCtGAfgG9 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (max-width: 992px) {
  .cid-tnCtGAfgG9 .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-tnCtGAfgG9 .nav-item {
    position: relative;
  }
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tnCtGAfgG9 .navbar-caption {
  font-weight: 600!important;
}
.cid-tnCtGAfgG9 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tnCtGAfgG9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tnCtGAfgG9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tnCtGAfgG9 .dropdown-item.active,
.cid-tnCtGAfgG9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tnCtGAfgG9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tnCtGAfgG9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tnCtGAfgG9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tnCtGAfgG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tnCtGAfgG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tnCtGAfgG9 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tnCtGAfgG9 .navbar-buttons {
  text-align: center;
}
.cid-tnCtGAfgG9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnCtGAfgG9 .nav-link {
  font-weight: 600!important;
}
.cid-tnCtGAfgG9 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tnCtGAfgG9 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tnCtGAfgG9 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tnCtGAfgG9 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tnCtGAfgG9 .navbar {
    height: 77px;
  }
  .cid-tnCtGAfgG9 .navbar.opened {
    height: auto;
  }
  .cid-tnCtGAfgG9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tnDz48FTNu {
  background-image: url("../../../assets/images/embroidery-services-logo-digitizing-embroidery-masters-1.jpg");
}
.cid-tnDzW1cYgK {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tnDzW1cYgK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tnDzW1cYgK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnDzW1cYgK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tnDzW1cYgK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tnDzW1cYgK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #8b0d19;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #8b0d19, #262163);
}
.cid-tnDzW1cYgK .icon-focus {
  display: none;
}
.cid-tnDzW1cYgK .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tnDzW1cYgK ul {
  font-size: 0;
}
.cid-tnDzW1cYgK .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tnDzW1cYgK .mbr-gallery-filter ul li .btn.active,
.cid-tnDzW1cYgK .mbr-gallery-filter ul li.active .btn:not(.active) {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-tnDzW1cYgK .mbr-gallery-filter ul li .btn.active:after,
.cid-tnDzW1cYgK .mbr-gallery-filter ul li.active .btn:not(.active):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #8b0d19, #262163);
}
.cid-tnDzW1cYgK .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-tnDzW1cYgK .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-tnDzW1cYgK .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tnDzW1cYgK .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-tnDzW1cYgK .btn:hover {
  background: transparent !important;
}
.cid-tnDzW1cYgK .btn:hover:before {
  background: transparent !important;
}
.cid-tnDzW1cYgK .btn:before {
  background-color: transparent !important;
}
.cid-tnDzW1cYgK .btn:focus {
  box-shadow: none;
}
.cid-tnDzW1cYgK .mbr-section-title {
  position: relative;
  z-index: 1;
  color: #8b0d19;
}
.cid-tnDNm5neh7 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/embroidery-experts-in-joburg-9.jpg");
}
.cid-tnDNm5neh7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tnDNm5neh7 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tnDNm5neh7 .mbr-text {
  color: #767676;
}
.cid-tnDNm5neh7 .mbr-author-desc {
  display: block;
  color: #767676;
}
.cid-tnDNm5neh7 .mbr-author-name {
  color: #8b0d19;
}
.cid-tnDNm5neh7 .mbr-testimonial .panel-item {
  background-color: #ffffff;
}
.cid-tnDNm5neh7 .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2.4rem 2.4rem 0 2.4rem;
}
.cid-tnDNm5neh7 .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-tnDNm5neh7 .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tnDNm5neh7 .mbr-testimonial .card-footer {
  padding-bottom: 2.4rem;
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-tnDNm5neh7 .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-tnDNm5neh7 H2 {
  color: #ffffff;
}
.cid-to4NcJSvOa {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #262163;
}
.cid-to4NcJSvOa .title {
  padding-bottom: 2.5rem;
}
.cid-to4NcJSvOa .mbr-text {
  color: #efefef;
  margin: 0;
  padding-top: 0.5rem;
}
.cid-to4NcJSvOa .iconfont-wrapper {
  display: flex;
  align-items: center;
  width: 72px;
  height: 72px;
}
@media (min-width: 992px) {
  .cid-to4NcJSvOa .iconfont-wrapper {
    margin-right: 2rem;
  }
}
.cid-to4NcJSvOa .iconfont-wrapper .mbr-iconfont {
  font-size: 72px;
}
.cid-to4NcJSvOa .wrapper {
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-to4NcJSvOa .wrapper .iconfont-wrapper {
    margin: auto;
  }
}
@media (max-width: 991px) {
  .cid-to4NcJSvOa .wrapper {
    flex-wrap: wrap;
  }
  .cid-to4NcJSvOa .wrapper .iconfont-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-to4NcJSvOa .wrapper .b-info {
  width: 100%;
}
.cid-to4NcJSvOa H4 {
  text-align: center;
  color: #ffffff;
}
.cid-to4NcJSvOa H6 {
  color: #ffffff;
}
.cid-to4NdlNrMv {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-to4NdlNrMv .mbr-row {
  margin-left: 0;
  margin-right: 0;
}
.cid-to4NdlNrMv .mbr-section-title {
  padding-bottom: 1rem;
}
.cid-to4NdlNrMv .google-map {
  height: 25rem;
  position: relative;
  width: 100%;
}
.cid-to4NdlNrMv .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-to4NdlNrMv .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-to4NdlNrMv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-to4NdlNrMv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-to4NdlNrMv .map-placeholder {
  display: none;
}
.cid-to4NdlNrMv .mbr-section-title,
.cid-to4NdlNrMv .map-title {
  color: #29282d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-to4NdlNrMv .map-title {
    margin-top: 3rem;
  }
}
.cid-tnDNnwiTMf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
@media (max-width: 767px) {
  .cid-tnDNnwiTMf .content {
    text-align: center;
  }
  .cid-tnDNnwiTMf .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tnDNnwiTMf .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tnDNnwiTMf .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tnDNnwiTMf .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tnDNnwiTMf .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tnDNnwiTMf .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tnDNnwiTMf .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tnDNnwiTMf .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tnDNnwiTMf .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tnDNnwiTMf .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tnDNnwiTMf .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tnDNnwiTMf .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tnDNnwiTMf H5 {
  color: #ffffff;
}
.cid-tnDNnwiTMf P {
  color: #262163;
}
.cid-tnCtGAfgG9 .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-tnCtGAfgG9 .collapsed {
  flex-direction: row!important;
}
.cid-tnCtGAfgG9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tnCtGAfgG9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tnCtGAfgG9 .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tnCtGAfgG9 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tnCtGAfgG9 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tnCtGAfgG9 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tnCtGAfgG9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tnCtGAfgG9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tnCtGAfgG9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tnCtGAfgG9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tnCtGAfgG9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tnCtGAfgG9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tnCtGAfgG9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tnCtGAfgG9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tnCtGAfgG9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tnCtGAfgG9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tnCtGAfgG9 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tnCtGAfgG9 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tnCtGAfgG9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tnCtGAfgG9 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tnCtGAfgG9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tnCtGAfgG9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tnCtGAfgG9 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #262163;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tnCtGAfgG9 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tnCtGAfgG9 .nav-item:focus,
.cid-tnCtGAfgG9 .nav-link:focus {
  outline: none;
}
.cid-tnCtGAfgG9 .text-white:hover,
.cid-tnCtGAfgG9 .text-white:active,
.cid-tnCtGAfgG9 .text-white:focus {
  color: white!important;
}
.cid-tnCtGAfgG9 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tnCtGAfgG9 .dropdown-item:hover {
  color: black!important;
}
.cid-tnCtGAfgG9 .dropdown-menu {
  background-color: white!important;
}
.cid-tnCtGAfgG9 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(53, 46, 137, 0.35);
  display: block;
}
.cid-tnCtGAfgG9 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #262163;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tnCtGAfgG9 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (max-width: 992px) {
  .cid-tnCtGAfgG9 .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-tnCtGAfgG9 .nav-item {
    position: relative;
  }
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tnCtGAfgG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tnCtGAfgG9 .navbar-caption {
  font-weight: 600!important;
}
.cid-tnCtGAfgG9 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tnCtGAfgG9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tnCtGAfgG9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tnCtGAfgG9 .dropdown-item.active,
.cid-tnCtGAfgG9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tnCtGAfgG9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tnCtGAfgG9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tnCtGAfgG9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tnCtGAfgG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tnCtGAfgG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tnCtGAfgG9 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tnCtGAfgG9 .navbar-buttons {
  text-align: center;
}
.cid-tnCtGAfgG9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tnCtGAfgG9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tnCtGAfgG9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnCtGAfgG9 .nav-link {
  font-weight: 600!important;
}
.cid-tnCtGAfgG9 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tnCtGAfgG9 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tnCtGAfgG9 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tnCtGAfgG9 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tnCtGAfgG9 .navbar {
    height: 77px;
  }
  .cid-tnCtGAfgG9 .navbar.opened {
    height: auto;
  }
  .cid-tnCtGAfgG9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tnDtR3vwfx {
  background-image: url("../../../assets/images/embroidery-experts-in-joburg-13.jpg");
}
.cid-tnDtR3vwfx .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tnDtR3vwfx .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tnDtR3vwfx .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tnDtR3vwfx .mbr-text {
    text-align: center;
  }
}
.cid-tnDw5kuVFn {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-tnDw5kuVFn .card-box {
  padding: 0 2rem;
}
.cid-tnDw5kuVFn .mbr-section-btn {
  padding-top: 1rem;
}
.cid-tnDw5kuVFn .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-tnDw5kuVFn h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-tnDw5kuVFn p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-tnDw5kuVFn .mbr-text {
  color: #767676;
}
.cid-tnDw5kuVFn .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tnDw5kuVFn .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tnDw5kuVFn .card-title {
  color: #8b0d19;
}
.cid-tnDMz4zWOj {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/embroidery-experts-in-joburg-9.jpg");
}
.cid-tnDMz4zWOj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tnDMz4zWOj .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tnDMz4zWOj .mbr-text {
  color: #767676;
}
.cid-tnDMz4zWOj .mbr-author-desc {
  display: block;
  color: #767676;
}
.cid-tnDMz4zWOj .mbr-author-name {
  color: #8b0d19;
}
.cid-tnDMz4zWOj .mbr-testimonial .panel-item {
  background-color: #ffffff;
}
.cid-tnDMz4zWOj .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2.4rem 2.4rem 0 2.4rem;
}
.cid-tnDMz4zWOj .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-tnDMz4zWOj .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tnDMz4zWOj .mbr-testimonial .card-footer {
  padding-bottom: 2.4rem;
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-tnDMz4zWOj .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-tnDMz4zWOj H2 {
  color: #ffffff;
}
.cid-to4N9ELg7o {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #262163;
}
.cid-to4N9ELg7o .title {
  padding-bottom: 2.5rem;
}
.cid-to4N9ELg7o .mbr-text {
  color: #efefef;
  margin: 0;
  padding-top: 0.5rem;
}
.cid-to4N9ELg7o .iconfont-wrapper {
  display: flex;
  align-items: center;
  width: 72px;
  height: 72px;
}
@media (min-width: 992px) {
  .cid-to4N9ELg7o .iconfont-wrapper {
    margin-right: 2rem;
  }
}
.cid-to4N9ELg7o .iconfont-wrapper .mbr-iconfont {
  font-size: 72px;
}
.cid-to4N9ELg7o .wrapper {
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-to4N9ELg7o .wrapper .iconfont-wrapper {
    margin: auto;
  }
}
@media (max-width: 991px) {
  .cid-to4N9ELg7o .wrapper {
    flex-wrap: wrap;
  }
  .cid-to4N9ELg7o .wrapper .iconfont-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-to4N9ELg7o .wrapper .b-info {
  width: 100%;
}
.cid-to4N9ELg7o H4 {
  text-align: center;
  color: #ffffff;
}
.cid-to4N9ELg7o H6 {
  color: #ffffff;
}
.cid-to4NaprE7P {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-to4NaprE7P .mbr-row {
  margin-left: 0;
  margin-right: 0;
}
.cid-to4NaprE7P .mbr-section-title {
  padding-bottom: 1rem;
}
.cid-to4NaprE7P .google-map {
  height: 25rem;
  position: relative;
  width: 100%;
}
.cid-to4NaprE7P .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-to4NaprE7P .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-to4NaprE7P .google-map[data-state] {
  background: #e9e5dc;
}
.cid-to4NaprE7P .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-to4NaprE7P .map-placeholder {
  display: none;
}
.cid-to4NaprE7P .mbr-section-title,
.cid-to4NaprE7P .map-title {
  color: #29282d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-to4NaprE7P .map-title {
    margin-top: 3rem;
  }
}
.cid-tnDMBuaXiL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
@media (max-width: 767px) {
  .cid-tnDMBuaXiL .content {
    text-align: center;
  }
  .cid-tnDMBuaXiL .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tnDMBuaXiL .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tnDMBuaXiL .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tnDMBuaXiL .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tnDMBuaXiL .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tnDMBuaXiL .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tnDMBuaXiL .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tnDMBuaXiL .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tnDMBuaXiL .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tnDMBuaXiL .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tnDMBuaXiL .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tnDMBuaXiL .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tnDMBuaXiL H5 {
  color: #ffffff;
}
.cid-tnDMBuaXiL P {
  color: #262163;
}
.cid-tnCN7CWOcC .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-tnCN7CWOcC .collapsed {
  flex-direction: row!important;
}
.cid-tnCN7CWOcC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tnCN7CWOcC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tnCN7CWOcC .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tnCN7CWOcC .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tnCN7CWOcC .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tnCN7CWOcC .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tnCN7CWOcC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tnCN7CWOcC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tnCN7CWOcC .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tnCN7CWOcC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tnCN7CWOcC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tnCN7CWOcC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tnCN7CWOcC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tnCN7CWOcC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tnCN7CWOcC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tnCN7CWOcC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tnCN7CWOcC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tnCN7CWOcC .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tnCN7CWOcC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tnCN7CWOcC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tnCN7CWOcC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tnCN7CWOcC .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tnCN7CWOcC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tnCN7CWOcC .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tnCN7CWOcC .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tnCN7CWOcC .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tnCN7CWOcC .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tnCN7CWOcC .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tnCN7CWOcC .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tnCN7CWOcC .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tnCN7CWOcC .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #262163;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tnCN7CWOcC .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tnCN7CWOcC .nav-item:focus,
.cid-tnCN7CWOcC .nav-link:focus {
  outline: none;
}
.cid-tnCN7CWOcC .text-white:hover,
.cid-tnCN7CWOcC .text-white:active,
.cid-tnCN7CWOcC .text-white:focus {
  color: white!important;
}
.cid-tnCN7CWOcC .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tnCN7CWOcC .dropdown-item:hover {
  color: black!important;
}
.cid-tnCN7CWOcC .dropdown-menu {
  background-color: white!important;
}
.cid-tnCN7CWOcC .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(53, 46, 137, 0.35);
  display: block;
}
.cid-tnCN7CWOcC .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #262163;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tnCN7CWOcC .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (max-width: 992px) {
  .cid-tnCN7CWOcC .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-tnCN7CWOcC .nav-item {
    position: relative;
  }
}
.cid-tnCN7CWOcC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tnCN7CWOcC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tnCN7CWOcC .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tnCN7CWOcC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tnCN7CWOcC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tnCN7CWOcC .navbar-caption {
  font-weight: 600!important;
}
.cid-tnCN7CWOcC .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tnCN7CWOcC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tnCN7CWOcC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tnCN7CWOcC .dropdown-item.active,
.cid-tnCN7CWOcC .dropdown-item:active {
  background-color: transparent;
}
.cid-tnCN7CWOcC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tnCN7CWOcC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tnCN7CWOcC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tnCN7CWOcC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tnCN7CWOcC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tnCN7CWOcC ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tnCN7CWOcC .navbar-buttons {
  text-align: center;
}
.cid-tnCN7CWOcC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tnCN7CWOcC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-tnCN7CWOcC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tnCN7CWOcC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tnCN7CWOcC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tnCN7CWOcC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tnCN7CWOcC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnCN7CWOcC nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tnCN7CWOcC nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tnCN7CWOcC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnCN7CWOcC .nav-link {
  font-weight: 600!important;
}
.cid-tnCN7CWOcC a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tnCN7CWOcC .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tnCN7CWOcC .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tnCN7CWOcC .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tnCN7CWOcC .navbar {
    height: 77px;
  }
  .cid-tnCN7CWOcC .navbar.opened {
    height: auto;
  }
  .cid-tnCN7CWOcC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tnDqixC5ie {
  overflow-x: hidden !important;
}
.cid-tnDqixC5ie .mbr-section-title {
  color: #ffffff;
}
.cid-tnDqixC5ie .mbr-section-title span {
  color: #8b0d19;
}
.cid-tnDqixC5ie .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-tnDqixC5ie .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 30s !important;
  animation-duration: 30s;
  background-image: url("../../../assets/images/embroidery-experts-in-joburg-12.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-tnDqixC5ie .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-tnDqixC5ie .mbr-overlay {
  z-index: 1;
}
.cid-tnDqixC5ie .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-tnDqVtvlTC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tnDqVtvlTC .mbr-section-title {
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #8b0d19;
}
.cid-tnDqVtvlTC .section-content-title {
  font-weight: 600;
  color: #262163;
  letter-spacing: 0.03em;
}
.cid-tnDqVtvlTC .section-content-text {
  letter-spacing: 0.03em;
}
.cid-tnDqVtvlTC .progressbar-title p {
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.cid-tnDqVtvlTC .progress {
  width: 100%;
  height: 25px;
}
.cid-tnDqVtvlTC .progress-bar {
  height: 25px;
  background-color: #262163;
}
.cid-tnDqVtvlTC .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-tnDqVtvlTC .progressbar-number {
  display: inline-block;
}
.cid-tnDqVtvlTC .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.cid-tnDqVtvlTC .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-tnDqVtvlTC .progress_value {
  position: relative;
}
.cid-tnDqVtvlTC progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-tnDqVtvlTC progress::-webkit-progress-value {
  background: #262163;
}
.cid-tnDqVtvlTC progress[value]::-moz-progress-bar {
  background: #262163;
}
.cid-tnDqVtvlTC progress::-ms-fill {
  background: #262163;
}
.cid-tnDqVtvlTC .progress1 .progressbar-number:before {
  content: '100';
}
.cid-tnDqVtvlTC .progress2 .progressbar-number:before {
  content: '100';
}
.cid-tnDqVtvlTC .progress3 .progressbar-number:before {
  content: '100';
}
.cid-tnDqVtvlTC .progress4 .progressbar-number:before {
  content: '28';
}
.cid-tnDqVtvlTC .progress5 .progressbar-number:before {
  content: '10';
}
.cid-tnDqVtvlTC .progress-bar-1 {
  width: 100%;
}
.cid-tnDqVtvlTC .progress-bar-2 {
  width: 100%;
}
.cid-tnDqVtvlTC .progress-bar-3 {
  width: 100%;
}
.cid-tnDqVtvlTC .progress-bar-4 {
  width: 28%;
}
.cid-tnDqVtvlTC .progress-bar-5 {
  width: 10%;
}
.cid-tnDqVtvlTC .progressbar-title p,
.cid-tnDqVtvlTC .progress_value {
  color: #8b0d19;
}
.cid-tnDr7OnkeF {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/embroidery-experts-in-joburg-8.jpg");
}
.cid-tnDr7OnkeF .card-box {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  margin: auto auto 1rem 2rem;
  height: fit-content;
  max-width: 300px;
}
.cid-tnDr7OnkeF .card-wrap {
  background-color: #262163;
  display: flex;
  height: 100%;
  min-height: 300px;
}
.cid-tnDr7OnkeF .card-wrap:hover h4,
.cid-tnDr7OnkeF .card-wrap:hover a {
  background-size: 100% 100%;
}
.cid-tnDr7OnkeF h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 0rem;
  top: -1rem;
}
.cid-tnDr7OnkeF h3:after {
  content: "";
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #ffffff;
  margin-left: 10px;
}
.cid-tnDr7OnkeF img {
  width: 100%;
}
.cid-tnDr7OnkeF h4 {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-tnDr7OnkeF h4 a {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px) !important;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-tnDr7OnkeF .card-title1,
.cid-tnDr7OnkeF .title-wrap1 {
  color: #ffffff;
}
.cid-tnDr7OnkeF .card-title,
.cid-tnDr7OnkeF .title-wrap {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tnDr7OnkeF .mdpb {
    padding-bottom: 2rem;
  }
  .cid-tnDr7OnkeF .card-box {
    margin: auto auto 0rem 1rem;
  }
}
.cid-tnDr7OnkeF H3 {
  color: #ffffff;
}
.cid-tnDMtH30LS {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/embroidery-experts-in-joburg-9.jpg");
}
.cid-tnDMtH30LS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tnDMtH30LS .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tnDMtH30LS .mbr-text {
  color: #767676;
}
.cid-tnDMtH30LS .mbr-author-desc {
  display: block;
  color: #767676;
}
.cid-tnDMtH30LS .mbr-author-name {
  color: #8b0d19;
}
.cid-tnDMtH30LS .mbr-testimonial .panel-item {
  background-color: #ffffff;
}
.cid-tnDMtH30LS .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2.4rem 2.4rem 0 2.4rem;
}
.cid-tnDMtH30LS .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-tnDMtH30LS .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tnDMtH30LS .mbr-testimonial .card-footer {
  padding-bottom: 2.4rem;
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-tnDMtH30LS .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-tnDMtH30LS H2 {
  color: #ffffff;
}
.cid-to4N35K2bC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #262163;
}
.cid-to4N35K2bC .title {
  padding-bottom: 2.5rem;
}
.cid-to4N35K2bC .mbr-text {
  color: #efefef;
  margin: 0;
  padding-top: 0.5rem;
}
.cid-to4N35K2bC .iconfont-wrapper {
  display: flex;
  align-items: center;
  width: 72px;
  height: 72px;
}
@media (min-width: 992px) {
  .cid-to4N35K2bC .iconfont-wrapper {
    margin-right: 2rem;
  }
}
.cid-to4N35K2bC .iconfont-wrapper .mbr-iconfont {
  font-size: 72px;
}
.cid-to4N35K2bC .wrapper {
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-to4N35K2bC .wrapper .iconfont-wrapper {
    margin: auto;
  }
}
@media (max-width: 991px) {
  .cid-to4N35K2bC .wrapper {
    flex-wrap: wrap;
  }
  .cid-to4N35K2bC .wrapper .iconfont-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-to4N35K2bC .wrapper .b-info {
  width: 100%;
}
.cid-to4N35K2bC H4 {
  text-align: center;
  color: #ffffff;
}
.cid-to4N35K2bC H6 {
  color: #ffffff;
}
.cid-to4N3QsXWY {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-to4N3QsXWY .mbr-row {
  margin-left: 0;
  margin-right: 0;
}
.cid-to4N3QsXWY .mbr-section-title {
  padding-bottom: 1rem;
}
.cid-to4N3QsXWY .google-map {
  height: 25rem;
  position: relative;
  width: 100%;
}
.cid-to4N3QsXWY .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-to4N3QsXWY .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-to4N3QsXWY .google-map[data-state] {
  background: #e9e5dc;
}
.cid-to4N3QsXWY .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-to4N3QsXWY .map-placeholder {
  display: none;
}
.cid-to4N3QsXWY .mbr-section-title,
.cid-to4N3QsXWY .map-title {
  color: #29282d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-to4N3QsXWY .map-title {
    margin-top: 3rem;
  }
}
.cid-tnDMigGUsR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
@media (max-width: 767px) {
  .cid-tnDMigGUsR .content {
    text-align: center;
  }
  .cid-tnDMigGUsR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tnDMigGUsR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tnDMigGUsR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tnDMigGUsR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tnDMigGUsR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tnDMigGUsR .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tnDMigGUsR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tnDMigGUsR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tnDMigGUsR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tnDMigGUsR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tnDMigGUsR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tnDMigGUsR .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tnDMigGUsR H5 {
  color: #ffffff;
}
.cid-tnDMigGUsR P {
  color: #262163;
}
